statsample-sem 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data.tar.gz.sig +0 -0
- data/History.txt +3 -0
- data/Manifest.txt +18 -0
- data/README.txt +56 -0
- data/Rakefile +16 -0
- data/bin/statsample_sem +3 -0
- data/example/normal_vs_saturated.rb +36 -0
- data/lib/statsample/sem.rb +46 -0
- data/lib/statsample/sem/model.rb +244 -0
- data/lib/statsample/sem/openmxengine.rb +144 -0
- data/lib/statsample/sem/semjfoxengine.rb +197 -0
- data/spec/fixtures/demo_open_mx.csv +501 -0
- data/spec/fixtures/demo_open_mx.ds +0 -0
- data/spec/spec.opts +3 -0
- data/spec/spec_helper.rb +10 -0
- data/spec/statsample_sem_model_spec.rb +158 -0
- data/spec/statsample_sem_openmxengine_spec.rb +142 -0
- data/spec/statsample_sem_semjfoxengine_spec.rb +116 -0
- data/spec/statsample_sem_spec.rb +36 -0
- metadata +171 -0
- metadata.gz.sig +0 -0
@@ -0,0 +1,197 @@
|
|
1
|
+
require 'rserve'
|
2
|
+
require 'tempfile'
|
3
|
+
module Statsample
|
4
|
+
class SEM
|
5
|
+
# SEM using J.Fox 'sem' R library.
|
6
|
+
# Documentation for methods extracted from [http://davidakenny.net/cm/fit.htm]
|
7
|
+
#
|
8
|
+
class SemJFoxEngine
|
9
|
+
include DirtyMemoize
|
10
|
+
include Summarizable
|
11
|
+
attr_accessor :summarizable
|
12
|
+
attr_accessor :name
|
13
|
+
attr_reader :r_summary
|
14
|
+
def initialize(model,opts=Hash.new)
|
15
|
+
@model=model
|
16
|
+
defaults = {
|
17
|
+
:name=>_("SEM analysis using J.Fox sem package")
|
18
|
+
}
|
19
|
+
@opts=defaults.merge defaults
|
20
|
+
@name=@opts[:name]
|
21
|
+
end
|
22
|
+
def r
|
23
|
+
@r||=Rserve::Connection.new
|
24
|
+
end
|
25
|
+
def r_sempaths
|
26
|
+
@model.paths.values.map {|path|
|
27
|
+
sign=(path[:arrow]==1) ? " ->" : "<->"
|
28
|
+
label= path[:label] ? path[:label] : "NA"
|
29
|
+
|
30
|
+
label_and_value=(path[:free]) ? "'#{label}', NA" : "NA, #{path[:value]}"
|
31
|
+
"'#{path[:from]} #{sign} #{path[:to]}', #{label_and_value}"
|
32
|
+
}.join(",\n")
|
33
|
+
end
|
34
|
+
def r_semdata
|
35
|
+
type=case @model.data_type
|
36
|
+
when :raw
|
37
|
+
raise "Not implemented"
|
38
|
+
when :covariance
|
39
|
+
'cov'
|
40
|
+
when :correlation
|
41
|
+
raise "not implemented"
|
42
|
+
end
|
43
|
+
end
|
44
|
+
def r_query
|
45
|
+
<<-EOF
|
46
|
+
library(sem);
|
47
|
+
sem.model<-matrix(c(
|
48
|
+
#{r_sempaths}
|
49
|
+
),
|
50
|
+
ncol=3,byrow=TRUE)
|
51
|
+
sem.object<-sem(sem.model,data, obs.variables=manifests, N=#{@model.cases});
|
52
|
+
sem.summary<-summary(sem.object)
|
53
|
+
EOF
|
54
|
+
end
|
55
|
+
def compute
|
56
|
+
raise "Insuficient information" unless @model.complete?
|
57
|
+
r.assign 'manifests', @model.manifests
|
58
|
+
r.assign 'data', @model.data_type==:raw ? @model.ds : @model.matrix
|
59
|
+
if @model.matrix
|
60
|
+
r.assign 'vn', @model.variables
|
61
|
+
# We should assing names to fields on matrix
|
62
|
+
r.void_eval('dimnames(data)<-list(vn,vn)')
|
63
|
+
end
|
64
|
+
r.void_eval r_query
|
65
|
+
@r_summary=@r.eval('sem.summary').to_ruby
|
66
|
+
end
|
67
|
+
def graphviz
|
68
|
+
require 'tmpdir'
|
69
|
+
out=""
|
70
|
+
compute if @r_summary.nil?
|
71
|
+
Dir.mktmpdir {|dir|
|
72
|
+
filename=dir+="/model_#{Time.new.to_s}"
|
73
|
+
r.void_eval("path.diagram(sem.object,output.type='dot',file='#{filename}')")
|
74
|
+
|
75
|
+
file=File.open(filename+".dot","r") do |fp|
|
76
|
+
out=fp.read
|
77
|
+
end
|
78
|
+
}
|
79
|
+
out
|
80
|
+
end
|
81
|
+
# Chi-Square.
|
82
|
+
#
|
83
|
+
# For models with about 75 to 200 cases, this is a reasonable measure of fit. But for models with more cases, the chi square is almost always statistically significant. Chi square is also affected by the size of the correlations in the model: the larger the correlations, the poorer the fit.
|
84
|
+
def chi_square
|
85
|
+
@r_summary["chisq"]
|
86
|
+
end
|
87
|
+
# Degrees of freedom for Chi-Square
|
88
|
+
def df
|
89
|
+
@r_summary["df"]
|
90
|
+
end
|
91
|
+
# Chi-Square for null model
|
92
|
+
def chi_square_null
|
93
|
+
@r_summary["chisqNull"]
|
94
|
+
end
|
95
|
+
def df_null
|
96
|
+
@r_summary["dfNull"]
|
97
|
+
end
|
98
|
+
# Lisrel measure. Don't trust!
|
99
|
+
def goodness_of_fit
|
100
|
+
@r_summary["GFI"]
|
101
|
+
end
|
102
|
+
# Lisrel measure. Don't trust!
|
103
|
+
|
104
|
+
def adjusted_goodness_of_fit
|
105
|
+
@r_summary["AGFI"]
|
106
|
+
end
|
107
|
+
|
108
|
+
# Root Mean Square Error of Approximation (RMSEA)
|
109
|
+
#
|
110
|
+
# This measure is based on the non-centrality parameter. Its formula can be shown to equal:
|
111
|
+
#
|
112
|
+
# √[([χ2/df] - 1)/(N - 1)]
|
113
|
+
#
|
114
|
+
# where N the sample size and df the degrees of freedom of the model. (If χ2 is less than df, then RMSEA is set to zero.) Good models have an RMSEA of .05 or less. Models whose RMSEA is .10 or more have poor fit.
|
115
|
+
#
|
116
|
+
def rmsea
|
117
|
+
@r_summary["RMSEA"][0]
|
118
|
+
end
|
119
|
+
def rmsea_confidence_interval
|
120
|
+
@r_summary["RMSEA"][1..2]
|
121
|
+
end
|
122
|
+
def rmsea_alpha
|
123
|
+
@r_summary["RMSEA"][3]
|
124
|
+
end
|
125
|
+
# ==Bentler-Bonett Index or Normed Fit Index (NFI).
|
126
|
+
#
|
127
|
+
# Define the null model as a model in which all of the correlations or covariances are zero. The null model is referred to as the "Independence Model" in AMOS. Its formula is:
|
128
|
+
#
|
129
|
+
# [χ2(Null Model) - χ2(Proposed Model)]/ [χ2(Null Model)]
|
130
|
+
#
|
131
|
+
# A value between .90 and .95 is acceptable, and above .95 is good. A disadvantage of this measure is that it cannot be smaller if more parameters are added to the model. Thus, the more parameters added to the model, the larger the index. It is for this reason that this measure is not recommended, but rather NNFI and CFI is used.
|
132
|
+
def nfi
|
133
|
+
@r_summary["NFI"]
|
134
|
+
end
|
135
|
+
|
136
|
+
# == Tucker Lewis Index or Non-normed Fit Index (NNFI).
|
137
|
+
#
|
138
|
+
# A problem with the Bentler-Bonett NFI index is that there is no penalty for adding parameters. The Tucker-Lewis index does have such a penalty. Let χ2/df be the ratio of chi square to its degrees of freedom
|
139
|
+
#
|
140
|
+
# [χ2/df(Null Model) - χ2/df(Proposed Model)]/[χ2/df(Null Model) - 1]
|
141
|
+
#
|
142
|
+
# If the index is greater than one, it is set at one. It is interpreted as the Bentler-Bonett index. Note than for a given model, a lower chi square to df ratio (as long as it is not less than one) implies a better fitting model.
|
143
|
+
def nnfi
|
144
|
+
@r_summary["NNFI"]
|
145
|
+
|
146
|
+
end
|
147
|
+
|
148
|
+
# ==Comparative Fit Index (CFI).
|
149
|
+
#
|
150
|
+
# This measure is directly based on the non-centrality measure. Let d = χ2 - df where df are the degrees of freedom of the model. The Comparative Fit Index equals
|
151
|
+
#
|
152
|
+
# [d(Null Model) - d(Proposed Model)]/d(Null Model)
|
153
|
+
#
|
154
|
+
# If the index is greater than one, it is set at one and if less than zero, it is set to zero. It is interpreted as the previous indexes. If the CFI is less than one, then the CFI is always greater than the TLI. CFI pays a penalty of one for every parameter estimated. Note that the CFI depends on the average size of the correlations in the data. If the average correlation between variables is not high, then the CFI will not be very high.
|
155
|
+
|
156
|
+
def cfi
|
157
|
+
@r_summary["CFI"]
|
158
|
+
|
159
|
+
end
|
160
|
+
def srmr
|
161
|
+
@r_summary["SRMR"]
|
162
|
+
|
163
|
+
end
|
164
|
+
|
165
|
+
# == Bayesian Information Criterion (BIC) and Adjusted BIC
|
166
|
+
#
|
167
|
+
# the AIC pays a penalty of 2 for each parameter estimated. The BIC and adjusted BIC increases the penalty as sample size increases
|
168
|
+
# χ2 + [k(k - 1)/2 - df]ln(N)
|
169
|
+
#
|
170
|
+
# where ln(N) is the natural logarithm of the number of cases in the sample. The adjusted BIC replaces ln(N) with ln[(N + 2)/24]. The BIC places a high value on parsimony (perhaps too high). The adjusted BIC, while placing a penalty for adding parameters based on sample, does not place as high a penalty as the BIC. Like the AIC, these measures are not absolute measues and are used to compare the fit of two or more models estimated from the same data set.
|
171
|
+
def bic
|
172
|
+
@r_summary["BIC"]
|
173
|
+
|
174
|
+
end
|
175
|
+
def normalized_residual
|
176
|
+
@r_summary["norm.res"]
|
177
|
+
end
|
178
|
+
def iterations
|
179
|
+
@r_summary['iterations']
|
180
|
+
end
|
181
|
+
def coefficients
|
182
|
+
est=Hash.new
|
183
|
+
coeffs=@r_summary['coeff']
|
184
|
+
coeffs[4].each_with_index do |v,i|
|
185
|
+
v=~/(.+) (<---|<-->) (.+)/
|
186
|
+
f1=$1
|
187
|
+
f2=$3
|
188
|
+
key=[f1,f2].sort
|
189
|
+
est[key]={:estimate=>coeffs[0][i], :se=>coeffs[1][i], :z=>coeffs[2][i], :p=>coeffs[3][i], :label=>@model.get_label(key)}
|
190
|
+
end
|
191
|
+
est
|
192
|
+
end
|
193
|
+
dirty_memoize :chi_square, :df, :chi_square_null, :df_null, :goodness_of_fit, :adjusted_goodness_of_fit, :rmsea, :nfi, :nnfi, :cfi, :srmr, :bic, :normalized_residual, :coefficients, :iterations
|
194
|
+
|
195
|
+
end
|
196
|
+
end
|
197
|
+
end
|
@@ -0,0 +1,501 @@
|
|
1
|
+
"x1","x2","x3","x4","x5"
|
2
|
+
"-0.108683164409546","-0.46693772975625","-0.177839880762702","-0.0809311270799724","-0.0706502632421525"
|
3
|
+
"-0.146476455140147","-0.278261933914428","-0.273882552759143","-0.154120073740771","0.0927172929965773"
|
4
|
+
"-0.63991396261508","-0.929529404173182","-1.40796342851054","-1.58897409009195","-1.99346164353484"
|
5
|
+
"0.0215034008848086","-0.255225297233252","0.097330512750661","-0.117444883991671","-0.380906486398538"
|
6
|
+
"0.952966440493194","0.597227273291486","0.572503844210202","0.5887552204865","0.668756605285301"
|
7
|
+
"0.149603299444215","-0.261564535643201","0.00636319643572501","0.10036340208831","0.0517643520258174"
|
8
|
+
"0.094685520004387","-0.198722426709561","0.0343073617995774","-0.0666918232314126","-0.142841023041911"
|
9
|
+
"0.201354022303967","0.457700630887712","0.355699813989436","0.738353544756476","0.70399758331024"
|
10
|
+
"-0.0429344799962703","-0.2058433329275","0.119398580883457","0.10749876917853","0.238597538845942"
|
11
|
+
"0.110203804092168","0.441956116076597","0.666673877685811","0.77792431233428","0.525470176655249"
|
12
|
+
"-0.808199430910172","-0.615450185465819","-0.558298131283182","-0.692452274628168","-0.411260481743824"
|
13
|
+
"0.0613619184130945","0.0888865135144419","0.0390803871227845","0.207651271286392","0.0303814169019715"
|
14
|
+
"-0.542696164722991","-0.885919228777551","-0.834440844089096","-1.18001608069979","-1.20539277374578"
|
15
|
+
"-0.466925765770382","-0.863552473278563","-0.521241149188504","-0.759869771063744","-0.684398824879069"
|
16
|
+
"-0.565951342703581","-0.573234619237315","-0.941301321787045","-0.666406863559699","-0.703326740621698"
|
17
|
+
"-0.262921312687672","-0.735903915776482","-0.543722501829866","-0.568074776547282","-0.760655645944224"
|
18
|
+
"0.0271383354751332","-0.229295950536229","-0.628210351842887","0.0192447858956673","-0.163948206923447"
|
19
|
+
"-0.370837423793886","0.128642575301605","-0.0408149472617953","-0.173680721369114","0.0475717503640772"
|
20
|
+
"0.422698653319101","0.420187618346158","0.770977956057272","1.00835384953386","1.20814029897581"
|
21
|
+
"0.37026145392442","0.750984641424364","0.410456382174761","0.215933679660849","0.763646379601586"
|
22
|
+
"-0.216053071254668","-0.343824866500442","-0.446485527933138","-0.723576499577768","-0.511532632858399"
|
23
|
+
"-0.208205486794799","-0.147015374746757","-0.322251575051368","-0.757176610345732","-0.212296721495375"
|
24
|
+
"-0.907586179032982","-0.493544776842211","-0.542964155112004","-1.27050203515564","-0.802451956920194"
|
25
|
+
"-0.480169383009389","-0.415250751653204","-0.523842209627618","-0.906855186486256","-1.05997178555297"
|
26
|
+
"-0.400856716510108","-0.564684368000436","-0.353576254852632","-0.99915823917677","-0.938658952179723"
|
27
|
+
"-1.33062946660047","-1.26782294268071","-1.79782947775648","-1.37397811331363","-1.70500925599151"
|
28
|
+
"-0.147464239764684","-0.472353320312816","0.155461389790327","0.0718371613764258","-0.027443522530771"
|
29
|
+
"0.451052061867057","0.618618320335739","0.288373051675536","0.93716007285249","0.5138018139038"
|
30
|
+
"0.663713441843013","0.661944867905933","1.04667606297819","1.23373785004258","1.31365581055082"
|
31
|
+
"-0.119701341458801","-0.212480892136893","-0.232441403458663","-0.467274308111082","-0.223507206574933"
|
32
|
+
"0.401565577457159","0.269674876937645","0.195622847177098","0.367785860562329","0.532904425279511"
|
33
|
+
"0.219884438655177","-0.368798624681987","0.23399322327605","-0.0868317770201504","-0.168192867597468"
|
34
|
+
"0.428726008027843","0.631184809668835","0.979769183941421","1.02494619903225","0.671900675392338"
|
35
|
+
"0.410397140556353","0.337771272014626","0.15246526749577","0.465701447467932","0.103577925981529"
|
36
|
+
"-0.0145241631366546","-0.268579374311397","-0.13802160735536","0.123780177620064","-0.135793387597778"
|
37
|
+
"-0.0894371874463414","-0.120545227167461","-0.386843429316031","-0.074995757216124","-0.693765382973076"
|
38
|
+
"-0.481013208330633","-0.831428616000728","-0.72728436031248","-0.940180560824055","-0.961595892206187"
|
39
|
+
"-0.0836971999862898","-0.157333376005071","-0.372314959134426","-0.0442423683320781","-0.135050069837911"
|
40
|
+
"-0.251569437967436","-0.229333218037078","-0.141454124965061","-0.12530332625805","0.096746218694645"
|
41
|
+
"0.732067907888666","0.646542326793932","1.05391165712292","0.67369587542497","0.977537855877806"
|
42
|
+
"-0.331560343467049","-0.339944236599295","-0.37301819108031","-0.34819971156917","-0.301128395250208"
|
43
|
+
"0.423410921940743","0.0680458985630679","-0.110135824907553","0.400675866686233","0.337153076582191"
|
44
|
+
"-0.0364679645348935","0.0413112385149308","-0.126399569666877","-0.164856233757358","0.33207849975486"
|
45
|
+
"0.972240862562514","1.04601331010723","0.847978898872187","1.35284171593763","0.977126350867748"
|
46
|
+
"-0.385658953954588","-0.430003442822116","-0.454651096200624","-0.595878360367782","-0.948017431623067"
|
47
|
+
"-0.327742082256649","-0.408188189752359","-0.548872808792835","-0.548120730735661","-1.16245730731043"
|
48
|
+
"0.263438078629277","0.528939751364005","0.492474642223743","0.379033890859135","0.557543111030202"
|
49
|
+
"-0.777912456845047","-0.782965842316371","-0.209943666843414","-1.13129679979058","-1.38927000465914"
|
50
|
+
"-0.443271879950828","-0.263249502761377","-0.669247730836433","-0.428271430635513","-0.79810510044301"
|
51
|
+
"0.78298498721845","1.07757637339244","0.87768631355536","1.62399853368219","1.54416894424464"
|
52
|
+
"0.259815356609688","0.427779385940236","0.311393317923982","0.544091904609923","0.618002612831572"
|
53
|
+
"-0.146259555160744","-0.372313442484815","-0.281260948916804","-0.793844723908492","-0.455321950809729"
|
54
|
+
"-0.303452036454507","-0.269809866195967","-0.484554911407471","-0.665845493693041","-0.810910218265429"
|
55
|
+
"1.22352882553811","0.757554911384736","0.945539542615056","0.798086644951955","1.25272739168135"
|
56
|
+
"-0.743854888855107","-1.15109261468844","-1.02655976226545","-1.85012429669694","-1.51376865571774"
|
57
|
+
"0.343800363557758","0.187385093233913","-0.0496998640511688","0.319438989909375","0.238743061446976"
|
58
|
+
"0.0675787379332232","-0.262781132480597","-0.269999819269294","-0.277749435820439","-0.0282426512220847"
|
59
|
+
"0.356858464344756","0.266798939492407","0.167709286390772","-0.218225942868513","0.501072407459391"
|
60
|
+
"0.324658766987491","1.01624654503904","1.13635533747159","1.41054817912022","1.60293410056363"
|
61
|
+
"0.638498554587084","0.780993843490719","1.0477599961751","1.03619712067321","1.28320462912477"
|
62
|
+
"-0.00856708978761845","0.094341497179048","-0.181383426437472","-0.184176138677856","0.0420351736543899"
|
63
|
+
"0.577108321017956","0.60133264994711","1.06744982134455","1.36783474688162","1.85435671356346"
|
64
|
+
"-0.324624921979293","-0.70651274347492","-0.483317876327898","-0.52365236130468","-0.878217059157189"
|
65
|
+
"0.374994678908002","0.261518638719309","0.493278103551109","0.46294908486296","0.839780175401629"
|
66
|
+
"0.0784041704187705","-0.117206789290716","-0.528652444448742","-0.36371070775632","-0.177005115688739"
|
67
|
+
"-0.315813939100257","0.109011084787065","-0.521227397301489","-0.533206976563979","-0.253821131296427"
|
68
|
+
"0.0643590963328869","-0.725167751774555","-0.600230246882865","-1.00551872465757","-1.3065854572208"
|
69
|
+
"0.288905404955122","0.261805969530402","0.0208731430457163","0.195418929437644","0.5150843943975"
|
70
|
+
"-0.196550391137042","-0.70572763988879","-0.419660670096536","-0.0580626906382293","-0.883307644050385"
|
71
|
+
"-0.0882864980115085","-0.10161990606814","0.214068590017405","0.340726348850944","0.175750744446279"
|
72
|
+
"0.178247527966443","0.9615442416263","0.64760242359321","0.367085067766947","0.834729197061662"
|
73
|
+
"-0.79180919717622","-0.203361377158304","-0.677657947443825","-1.09710208978049","-0.750460509962274"
|
74
|
+
"0.93177372042742","0.73606516192118","1.19517728100067","1.23492536237351","1.42826061026912"
|
75
|
+
"-0.223219251423109","-0.223316529402184","-0.209486701631903","-0.153069120801972","-0.437186094685634"
|
76
|
+
"0.356674000152098","0.710298480860806","0.821651028856224","0.90978618947541","0.9143037028594"
|
77
|
+
"0.151502804255619","0.793960015754954","0.358400727786312","0.493353925507683","0.438295948117899"
|
78
|
+
"0.707342302028877","0.91092310147462","0.956077531005234","1.3887189706106","1.32395143376223"
|
79
|
+
"-0.0153783875426064","0.107377556847883","-0.0317147143194347","-0.0665573142279563","0.259656863686783"
|
80
|
+
"-0.0700282889027138","-0.37822913578412","-0.178875531430239","-0.823438367980408","-1.01395330536961"
|
81
|
+
"-0.0296558017299796","0.00371459851354028","-0.361764155810496","-0.08865168760525","-0.208360001121603"
|
82
|
+
"0.0481353548945946","-0.093633545742033","-0.452795665769562","-0.0831636820228959","-0.186726768965312"
|
83
|
+
"-0.112722131428782","-0.604875198940037","-0.841949906364114","-0.847134051708935","-1.03821147621869"
|
84
|
+
"0.76464679345602","0.342941131502416","0.395422800019529","0.754388629850587","0.640683408161775"
|
85
|
+
"0.254752267993975","-0.188980254259035","0.216019009009444","0.426438615565129","0.230960920018101"
|
86
|
+
"0.392099627356041","0.127226950719958","0.370140903005774","0.294058567096729","0.724537039072306"
|
87
|
+
"0.0995391907245766","0.576100912368207","0.358186505416094","0.448752133705484","0.640452613335477"
|
88
|
+
"-0.111869083113821","-0.0372953901021376","-0.0818467123791871","-0.155561873375824","-0.11053501409545"
|
89
|
+
"0.00381707943271171","0.166142500693479","-0.306583028585697","0.010350408028446","-0.242250346309052"
|
90
|
+
"-0.372664262331747","-0.706582966891325","-0.471425439988504","-1.00286316472147","-0.683345694607581"
|
91
|
+
"0.186053920890245","0.442458523746293","0.731474872775445","0.594265123733778","0.476072419086073"
|
92
|
+
"-0.654806403505315","-0.397560815749391","-0.372564023124267","-0.364026658630894","-0.818445254265578"
|
93
|
+
"-0.118260763820732","-0.0664012994028354","0.15884141262723","0.0197931649048876","-0.112596188854862"
|
94
|
+
"-1.17794067518717","-1.3759266100946","-1.56584360644955","-2.00877793675154","-2.37279025749037"
|
95
|
+
"-0.25601646510664","-0.247130366720946","-0.09769951839734","0.0646711335712896","-0.598593243622943"
|
96
|
+
"-0.3110668536058","-0.590656877166885","-0.177013782282392","-0.346379595214133","-0.620564138920163"
|
97
|
+
"-0.198891754674109","0.135937089943131","0.00564356184922293","0.256151799931474","0.377907431879705"
|
98
|
+
"0.184318227113993","-0.022592923778967","0.131621362227017","0.307603055838148","0.19584499000448"
|
99
|
+
"-0.452930899795088","-0.690872468889331","-0.679082763712899","-0.915952984430164","-0.943067158693183"
|
100
|
+
"-0.386629591937884","-0.959013502505845","-1.09799657592964","-0.957515959983393","-1.14922039684665"
|
101
|
+
"0.484420100690242","0.626641940060026","0.697600592310066","0.412721542250322","0.934911304875235"
|
102
|
+
"0.0306315615953257","0.353023554847361","0.130905897132216","0.0444411054460574","0.272831914060158"
|
103
|
+
"0.0997848471832687","-0.000957432101237103","0.268646244376231","-0.275943597671019","-0.0534184548854038"
|
104
|
+
"-0.81199024691332","-0.68206195721457","-0.900538491140611","-0.780942453609027","-1.09278426279596"
|
105
|
+
"-0.213350095384495","0.0952183457285717","-0.0202130247984212","-0.290939487318535","0.125895795944671"
|
106
|
+
"0.378834609994722","0.519699712104106","0.787556796565234","0.310662926684273","0.736639078068796"
|
107
|
+
"-0.348454494007238","-0.228679473115701","0.384999757674106","-0.0393275241890709","0.117501218807194"
|
108
|
+
"0.431622245269288","0.39760281025729","0.5218470066284","0.18085948206869","0.46955009997313"
|
109
|
+
"0.392813490388881","0.513080089815819","0.476249611351901","1.04438824404714","0.88204830719048"
|
110
|
+
"0.0697378131858115","0.41452746836863","0.0726913819493255","0.137619178009883","0.265156441529322"
|
111
|
+
"0.728500196304935","0.274401029151419","0.728280014725796","0.946395708110546","1.36589337126668"
|
112
|
+
"-1.54286057104003","-2.16854663056116","-2.29231557817616","-2.47505809018732","-2.62251944665597"
|
113
|
+
"-0.355807819316977","-0.633138857405115","-0.681179670780945","-0.858569646248489","-0.915735237062529"
|
114
|
+
"-0.494853335491341","-0.104976978899146","-0.0517688500246885","-0.0956579792827698","-0.358911420530053"
|
115
|
+
"-0.0698163715131916","0.350258891311102","0.215834396515509","0.220932343424257","0.526474846015199"
|
116
|
+
"0.394060847840127","0.630941505521226","0.570427799979705","0.869283670972596","0.91177761326065"
|
117
|
+
"0.388415222442141","0.225289290203959","0.250469037356693","0.720755919459449","0.551342463788793"
|
118
|
+
"-0.459392389752063","-0.464789427968051","0.197168650070892","-0.279212517200733","-0.226651124442395"
|
119
|
+
"-0.128347062372493","-0.343887285192114","-0.309465960549566","-0.390789006654643","-0.723846896365456"
|
120
|
+
"-0.0078265877536532","0.348782087260908","-0.0778828593097616","-0.0593561863731198","0.328562370270688"
|
121
|
+
"-0.42047018511492","-0.840169720288994","-0.637762617225393","-0.65162202691819","-0.517994370113568"
|
122
|
+
"-0.133497077846228","0.282896895468079","0.0363316985679568","0.251668068689778","0.153158117587377"
|
123
|
+
"-0.45372625911963","-0.180509478972168","-0.577751537284339","-0.638814319784448","-0.865046005780628"
|
124
|
+
"0.7732146595225","0.946558426660208","1.30755133404589","1.60010050055226","1.41688956650536"
|
125
|
+
"0.330811677404007","0.05649617008322","-0.0964481004252432","0.081318542952695","-0.014531967301006"
|
126
|
+
"-0.0263514122589374","0.336820057371408","-0.0538626169104683","0.154457220188397","0.160018924364765"
|
127
|
+
"-0.34398070619382","-0.436473600176501","-0.632359644546789","-0.490938091830843","-0.601481819317737"
|
128
|
+
"-0.382696800224724","-0.133724122252454","-0.454713370779921","-0.31832966636401","-0.316597309133485"
|
129
|
+
"0.385336334729415","0.416097709633397","0.402529746487894","0.596096465357087","0.451063434391158"
|
130
|
+
"0.288405990086303","0.662345241148166","0.460368826596427","0.834084693567605","0.842711314065283"
|
131
|
+
"0.180281378293926","0.458320721244475","0.208288451344732","0.0748088515478021","0.218880999368332"
|
132
|
+
"0.0852867129629492","0.325679911190424","0.085737418571082","0.668692970715484","0.506616435256479"
|
133
|
+
"-0.642610400374666","-1.16701394594642","-0.869021417011135","-0.938321596153952","-1.31249933703256"
|
134
|
+
"0.295137398722656","-0.331862306007822","-0.216003222495837","-0.848226975234972","-0.352776563588342"
|
135
|
+
"1.09812673925358","1.72494997126837","1.82549299074535","2.45029659878545","2.17986122422767"
|
136
|
+
"0.421431351905371","-0.219378304205816","-0.0533183782720796","0.102914391308178","-0.334912200066451"
|
137
|
+
"-0.142327056751802","0.132914902599815","-0.164038466900716","0.0439470964410855","0.248251338811293"
|
138
|
+
"-0.516087337210631","-0.417336680986412","-0.550229820690458","-0.820296569500246","-1.21931474642154"
|
139
|
+
"0.497866018763577","0.902142443200365","0.655963072689051","0.823782149889493","1.29325244232781"
|
140
|
+
"0.5316501884294","0.541154730640403","0.797885019683932","0.527300535871364","0.99793192542001"
|
141
|
+
"0.0875075232564866","0.0748089018463476","0.190288057144644","-0.390533420480581","-0.0216808048504231"
|
142
|
+
"0.379821240294982","0.534322670284231","0.572869686072043","1.2719310830472","1.23306689052296"
|
143
|
+
"-0.1559719481027","0.072540908914765","-0.0642216930132285","-0.290349044662014","-0.148365737828612"
|
144
|
+
"0.451120771444181","0.937121658755466","0.800669030404394","1.31462318901427","1.50196260079476"
|
145
|
+
"-0.119763009971802","0.488192861669007","0.217240869568277","0.40472839901818","0.073236730698917"
|
146
|
+
"-0.267378784451491","-0.225307311608549","-0.491187740293708","-0.885083251817103","-0.389970045111896"
|
147
|
+
"-0.210617308994754","-0.337196382089893","-0.083643820626169","-0.581138105215746","-0.69997108281561"
|
148
|
+
"-0.777411977096848","-0.841570865077524","-1.24680890514667","-0.865353295622781","-1.51983505711364"
|
149
|
+
"0.427689515805562","0.232294651788162","0.404376767090465","0.573623006686173","0.482228874431365"
|
150
|
+
"-0.798997059019796","-0.571560118197183","-0.909385757112449","-1.09678048485352","-1.38301403896569"
|
151
|
+
"-0.573715014429204","-0.601941467257802","-1.05208717992184","-1.4946275716383","-1.62094459318604"
|
152
|
+
"-0.0435457749507875","0.0465337827912543","0.184594406373981","-0.295687422491829","0.322797552654745"
|
153
|
+
"0.132373094000403","-0.340113024341808","-0.0688714298305289","0.0388844740320297","0.509526935156303"
|
154
|
+
"0.236047392067524","0.259544952930668","0.0961803708061235","0.545484498532516","0.455032491618166"
|
155
|
+
"-0.281736084240441","-0.0867700331075003","-0.193735571607888","0.0675146641117878","-0.105345928316305"
|
156
|
+
"-1.16385714368858","-1.15978024962321","-1.4209440179997","-1.16387687365182","-1.44925990400241"
|
157
|
+
"-0.513716113828648","-0.332059426934572","-0.827235902851405","-0.906762625269947","-1.38334063998009"
|
158
|
+
"-0.348477555030515","-0.818547634737075","-0.825170502437802","-0.778341694409128","-1.02595871401547"
|
159
|
+
"-0.566774506836709","-0.584248383989701","-0.873524016039722","-0.659946414007126","-0.798024356461162"
|
160
|
+
"-0.613218913680997","-0.769126485942148","-0.421947512340675","-1.01985066541206","-0.988180922773264"
|
161
|
+
"-0.315040427995427","-0.578366589995955","-1.11411188577426","-0.736055984796842","-0.796222513672295"
|
162
|
+
"-0.431333631517333","-0.55542127099564","-0.944110877283534","-0.740470845183029","-0.850243959322304"
|
163
|
+
"0.0329316565595904","-0.203819691829661","-0.586096167891803","-0.58684227091421","0.0057392999952014"
|
164
|
+
"-0.446330456454742","-0.609176861965627","-0.61274233613677","-0.724543132595172","-0.891218549324398"
|
165
|
+
"-0.772799703485057","-0.458515153121254","-0.197165295760929","-0.297460016465388","-0.793617186958867"
|
166
|
+
"-0.448566085283814","-0.448523910118232","-0.463359177895072","-0.305302664569453","-0.893795666796028"
|
167
|
+
"0.659939850707448","0.634843611499121","0.468224095144668","0.28846428118016","0.354197157526841"
|
168
|
+
"-0.330875092051199","0.157352360917171","-0.236860680484582","0.0444120983849069","0.185713791111359"
|
169
|
+
"0.410319142664035","0.0949985653724464","0.0940856832098215","0.540186689175012","0.405613292633348"
|
170
|
+
"-0.0230232134809089","0.281746127015572","0.0357837346227742","0.371683252846197","0.406424634901222"
|
171
|
+
"0.210857276541674","0.332845532876044","0.577667133688546","1.14672451141023","1.26663545955953"
|
172
|
+
"-0.157002780230585","-0.0156803122275312","0.217143478403269","-0.291376943352736","-0.38874700949523"
|
173
|
+
"-0.181347897111999","-0.536805660001625","-0.078194733872283","-0.574634062350735","-0.528026686411774"
|
174
|
+
"-0.314209019753563","-0.379419060371045","-0.367749079363645","-0.78222616977337","-0.629241742347595"
|
175
|
+
"-0.43726236966742","-0.152056863424959","-0.693833009453688","-0.717533845726435","-0.330946515463342"
|
176
|
+
"0.0954145746032072","0.0144560296909125","-0.0396888117448868","0.562504511377285","0.685751565391218"
|
177
|
+
"0.183590180488064","0.153972629964403","0.334788889265617","-0.0863741494542298","0.209850442722569"
|
178
|
+
"-0.580016728630014","-0.479759122026188","-0.853895186575151","-0.648804487233387","-0.859799182657347"
|
179
|
+
"-0.643181270636864","-0.501478465009406","-0.952506600859978","-0.816245205691514","-0.550235652879823"
|
180
|
+
"0.0704296596234325","0.261081012851074","0.714439945491719","0.586219359154386","0.885885085339296"
|
181
|
+
"0.567344207412554","0.0351320662105355","0.171033449016102","0.655344265062985","0.199396762364485"
|
182
|
+
"0.73539436377578","0.264869688645784","0.325358654009881","0.715852026730945","0.863149988776444"
|
183
|
+
"-0.242787970915646","0.112908756431624","0.127018964361019","0.38985364432572","0.111379860020522"
|
184
|
+
"0.0849430780795427","-0.311833354961795","-0.650317997897838","-0.303452597106857","-0.575214698973757"
|
185
|
+
"0.469898739953272","0.834366372949013","0.508137730294379","1.25893989218586","1.05016682915835"
|
186
|
+
"-1.16974572547053","-1.19484695222041","-1.40991391215146","-1.7529896696785","-2.25259751003405"
|
187
|
+
"-0.101742317050747","-0.305531533080489","-0.300211182615032","-0.442602531799944","-0.739308802325423"
|
188
|
+
"-0.103611847247901","-0.096359196614468","0.0525287750140229","-0.148429292677645","-0.0246485420412325"
|
189
|
+
"-0.225182527675126","-0.530612651843024","-0.206937296208781","-0.14279708414816","-0.707553611030146"
|
190
|
+
"-0.414764463342321","0.0839804577489174","-0.153510066242971","-0.488108702479657","-0.56917077282162"
|
191
|
+
"-0.0478900272322076","-0.823460419374635","-0.610031296990299","-0.189534594058132","-1.07853455191241"
|
192
|
+
"-0.0813573749544736","0.130481921936992","0.109573482932397","0.0697048667913486","0.0546001313854592"
|
193
|
+
"0.423525056217575","0.310286494917786","0.0808744774806027","0.279048872430224","0.102874614692565"
|
194
|
+
"0.50564967590191","0.56217483048431","0.446749137040578","0.978010992026638","0.690673607421919"
|
195
|
+
"-0.0254881924270147","-0.219609728319262","0.0727916610695052","0.092958502885684","0.353890991189121"
|
196
|
+
"-0.0120362066898181","-0.408515374846221","-0.531430567784818","-0.923774378369406","-0.830332721075044"
|
197
|
+
"-0.829831279278604","-0.937926826483568","-1.4692270058295","-1.2483690231642","-1.55269413961602"
|
198
|
+
"-0.67891679135954","-0.709393059202506","-0.881238021399964","-0.74431543116377","-1.05162747612596"
|
199
|
+
"-0.00484253953787822","-0.434944162974448","-0.669397118646674","-0.677301980222676","-1.16759301191513"
|
200
|
+
"0.360764956473974","0.0302110362215301","-0.026191329493962","-0.240996149041935","0.172574881430209"
|
201
|
+
"0.500766704486756","0.86211147394656","0.97439594747948","0.624879811482784","0.969791229415573"
|
202
|
+
"-0.727818992810092","-0.610897341778909","-0.377935697312431","-0.478017889094107","-0.653395927082718"
|
203
|
+
"0.361965403929412","0.294732150998751","0.530044075978555","0.5893742721198","0.912614162580745"
|
204
|
+
"0.309832000480639","0.500869739147932","0.303530127344243","0.255642144085206","0.185192797960497"
|
205
|
+
"-0.362937171321889","-0.809296844755024","-0.697163080268711","-0.366286239629717","-0.458559282661292"
|
206
|
+
"-0.0327755049769143","0.0762827836737929","-0.0280536693983409","0.094348360225080","-0.40386558789873"
|
207
|
+
"0.0296146777708299","0.0328113172407485","-0.231275620191973","-0.0834705192907919","-0.138863683159756"
|
208
|
+
"0.286831773931649","0.312234192443664","0.141730943798241","0.410010089541935","0.586112980140837"
|
209
|
+
"-0.102008230605553","0.0789148122266679","-0.220463350805678","-0.307360286290184","-0.120795846047896"
|
210
|
+
"0.153941213041444","0.141311903059046","0.225315272262717","-0.0764720791407798","-0.150239392526115"
|
211
|
+
"0.0773957112365184","0.138175964407441","0.400895247935108","0.288232612362028","0.65481318301302"
|
212
|
+
"-0.335185976170252","-0.581610357273845","-0.532063325909436","-0.322643672319219","-0.78455312202009"
|
213
|
+
"-0.394774717512936","-0.479247539117598","-0.269126270360659","-0.661053112953841","-1.24447163335437"
|
214
|
+
"0.779971277553567","0.543504327629612","1.20382458549143","1.16621331572521","1.09803201339916"
|
215
|
+
"0.363084253062801","0.754808507976564","0.325433417201424","0.969815891524278","0.830094221195098"
|
216
|
+
"-0.231423575028908","-0.290018956664488","-0.138491244517914","-1.014403581723","-0.694405801016221"
|
217
|
+
"-0.630630721120574","-0.0317502552722154","-0.0061929113169355","-0.0397155808125956","-0.164725330190814"
|
218
|
+
"-0.177645313024914","0.184286800816092","0.231110889734747","0.273387658174949","0.019655331368663"
|
219
|
+
"-0.358789928586899","-0.494402471997711","-0.606392916109663","-0.596149273416014","-0.885358503082087"
|
220
|
+
"0.473760677203649","0.558769269871447","0.442723754517575","0.64807518847343","0.698971488799094"
|
221
|
+
"-0.257103983810263","-1.0092905826677","-1.25332535517073","-1.15230712633712","-0.98545312291406"
|
222
|
+
"-0.18251730442193","-0.256361552881118","0.112443025343097","-0.0725807788691205","-0.0478410243972116"
|
223
|
+
"0.303949745681213","0.226212719420626","0.681364797113517","0.774233180935058","0.671984994502913"
|
224
|
+
"0.10530235711721","0.560771254601033","0.417016394070028","0.58137762176892","0.650878359956276"
|
225
|
+
"0.276738471434762","0.311997455481288","0.194221577265281","0.138169010988977","0.329703240662547"
|
226
|
+
"0.562617380132356","0.745254595326468","0.776141206184858","0.997911559831318","1.29827539821415"
|
227
|
+
"-0.229914920748879","-0.0441203244787145","-0.171921509288177","-0.290567446601137","0.0450181064109122"
|
228
|
+
"0.0184655168728491","-0.198034547785186","-0.0537110378895863","-0.478401594158616","-0.214752382465412"
|
229
|
+
"0.87418911313304","0.599658974146618","0.72091644770978","0.743874140502674","0.620442307964711"
|
230
|
+
"-0.437545814660152","-0.563649790112581","-0.669358111971039","-0.823231139716573","-1.25539224997257"
|
231
|
+
"0.858885619592223","0.85958129576363","0.699428029067643","0.995053256260344","0.94616322714583"
|
232
|
+
"-0.106931440007226","-0.0106943693050061","0.2804623530837","-0.196855626871176","-0.0324868015162415"
|
233
|
+
"1.07758017696084","1.06239000519204","1.43424646152914","1.56742602283638","1.97081974897889"
|
234
|
+
"-0.393155908545886","-0.564391919618322","-0.571938120318645","-0.416361937911991","-0.347536086497562"
|
235
|
+
"-0.0280332978313305","0.1248198876816","0.439743434059462","0.300405412322881","0.255774512210023"
|
236
|
+
"-0.219748848117536","-0.179884388204117","-0.202976604365662","-0.647535322865127","-0.95059985234467"
|
237
|
+
"0.885489083555662","0.997825152263348","0.701882342628716","1.17991398144295","0.933644488627514"
|
238
|
+
"0.54235297559334","0.232310311386294","0.774672915371843","0.285360998054731","0.675624400130626"
|
239
|
+
"-0.285070966192457","0.137859758955175","0.255187989210719","-0.123295587486081","-0.430389837413708"
|
240
|
+
"-0.0740774912327456","-0.395150450253714","-0.106983085022446","-0.525611948921349","-0.267931041817671"
|
241
|
+
"0.601323427021629","0.521146388984007","0.287721057224702","0.70231376893076","0.88308343869069"
|
242
|
+
"-0.15172492785848","-0.542472028855141","-0.785969598201658","-0.859720381161695","-0.630186756497968"
|
243
|
+
"0.360698503870303","-0.0357438470002164","0.116557381717518","0.0652609233642003","-0.112707759949732"
|
244
|
+
"-0.10238807999908","-0.169818986613278","-0.0962933935250479","-0.260610452593045","-0.448155594507137"
|
245
|
+
"-0.0494983462800435","0.00250909749800245","0.069663040274198","-0.0237798072470981","0.0841454794042978"
|
246
|
+
"0.059231292157505","0.45453194568178","0.501289491905515","0.69916305436906","0.68570617016835"
|
247
|
+
"0.239650612049605","0.121913355714792","-0.354573989311569","-0.261533209427831","-0.287235542189313"
|
248
|
+
"0.202358600397173","0.630515596855864","0.856663887241599","0.89301855097151","1.07248972534638"
|
249
|
+
"-0.117190940664424","-0.277848422569608","-0.211114152954917","-0.231195420027322","-0.454757741556824"
|
250
|
+
"0.0435990377901754","0.715289305685358","0.6085530143343","0.96450342661369","0.746005728920602"
|
251
|
+
"-0.445881823398084","-0.587207156910603","-0.880686058997659","-1.03172333580647","-1.59984612050972"
|
252
|
+
"0.591454632560053","0.575148491404205","0.34679719186165","1.08012212392992","0.549837966497116"
|
253
|
+
"-0.56635281515443","-0.708521161711244","-1.10529230992808","-0.735990053269508","-1.44211180409816"
|
254
|
+
"-0.384847483575196","-0.337732622431459","-0.163526676185498","-0.47280385413996","-0.349601510681117"
|
255
|
+
"0.405988843113228","0.492318446412255","0.284296490838489","0.746129163019804","1.06569279320949"
|
256
|
+
"0.260367911041058","0.372892777367448","0.761927917023301","0.549633166283067","1.04684905019892"
|
257
|
+
"0.833826099052769","0.887617532207454","0.560201108629972","1.2194166241261","1.55066172555013"
|
258
|
+
"-0.222672310091577","-0.603009657469747","-0.476864502377682","-0.385931887596818","-0.589388122402188"
|
259
|
+
"0.109913363857388","0.275881024863049","0.834831284087288","0.515411518418337","0.280452824710879"
|
260
|
+
"0.30146642528178","0.345432745652589","0.495176354604774","0.391182692696667","0.359186902369809"
|
261
|
+
"-0.0530169413460304","-0.455359119099695","-0.338414173644765","-0.237145610533552","-0.289889135886628"
|
262
|
+
"0.284900926347867","0.363629065432941","0.00499739696283552","0.578680348312546","0.636628884493642"
|
263
|
+
"0.286052192023053","-0.00896399265967535","0.190215054520752","0.471703205185859","0.197984042982744"
|
264
|
+
"0.012684609330853","0.0877966096664036","-0.0706025802030124","-0.637721768614107","-0.385245490476273"
|
265
|
+
"0.487691745682615","0.960193317903836","1.472307588091","1.43014593131092","1.52971137572591"
|
266
|
+
"0.528331846440872","1.02280670690657","1.00903870554788","1.17026175251857","1.0711808743814"
|
267
|
+
"0.305645451298786","0.265547126577592","0.209258031410155","0.549251639598698","0.70397388768269"
|
268
|
+
"-0.567373295903339","-0.385925685237301","-0.41982073881227","-0.19460821990617","-0.319130386161378"
|
269
|
+
"0.390593467773566","0.690775903793844","0.316918053788798","0.482641941864502","1.10953991883104"
|
270
|
+
"0.209496534933243","0.115665307840565","0.327218000301114","0.591487483247104","0.496020657965917"
|
271
|
+
"0.225420103152818","0.867467330018573","0.521014224520629","1.05533996681084","1.27265358043294"
|
272
|
+
"0.196639863568942","0.168031396959485","-0.554647998260994","-0.271239343780162","0.221236861232628"
|
273
|
+
"0.681456936622975","0.242055364056352","0.841798917743656","0.40441306261465","0.577674299099776"
|
274
|
+
"0.122957370988759","0.390851810041093","0.137974025808767","0.338633278354641","0.380921166334895"
|
275
|
+
"-0.00552916831146074","-0.160782194187712","-0.332770646122875","-0.219987196803749","0.0533537843607718"
|
276
|
+
"0.271501715532921","-0.304638307387274","-0.0196946518286797","0.198046457431468","-0.00674212988815201"
|
277
|
+
"-0.49535308978369","0.123969174838821","-0.243429260339264","-0.106850150719456","-0.454516624097897"
|
278
|
+
"-0.481899181518009","-0.0566666530541051","-0.0442332960135549","-0.256731916099506","-0.400619213594886"
|
279
|
+
"-0.12279245343427","-0.78651778334008","-0.478797281829527","-0.28873518890741","-0.400322496745229"
|
280
|
+
"-0.976680192187536","-1.17422598121359","-1.10022987411936","-1.43107073063184","-1.52262663662309"
|
281
|
+
"0.9359668312814","0.80559488392332","1.09306147190982","0.363992476130634","0.95155910661598"
|
282
|
+
"-0.178063946821189","-0.0393694816499089","-0.324523529805202","-0.307212208890538","-0.341881044357377"
|
283
|
+
"0.242080568037358","-0.0664002076013956","0.0140520483965806","-0.267572102003754","0.0489277605787777"
|
284
|
+
"-0.963798491241729","-0.98340724671611","-1.18999869970002","-1.50952163191126","-1.61124617446575"
|
285
|
+
"0.590481778397917","0.325951374187037","0.273452632715541","0.327338659281978","0.690810546156933"
|
286
|
+
"-0.385008858122503","-0.728725690509375","-0.857977372016708","-0.887159162571642","-1.15975823677412"
|
287
|
+
"0.0823251099155277","0.20305018386017","0.0751113759967338","0.161433134498758","0.138687314563695"
|
288
|
+
"-0.394086191053397","-0.00335575777210917","-0.705248988168448","-0.228452207859942","-0.472226841738211"
|
289
|
+
"-0.724579493080663","-0.930245309467344","-0.854930340858886","-1.64431158543864","-1.90783116088099"
|
290
|
+
"0.0622953646109514","-0.276228241403866","-0.160974849009522","-0.000477105965286495","-0.341512793078975"
|
291
|
+
"-0.49477299362584","-0.642312973885754","-1.08297577463162","-0.890359525156499","-1.02383675108716"
|
292
|
+
"-0.703097096482789","-1.27184641186495","-1.41183232167196","-1.34605970833021","-1.41552175815306"
|
293
|
+
"0.070516756809305","-0.0149046411902687","-0.392660653885464","-0.618132892545576","-0.47518282275969"
|
294
|
+
"0.0418785004796672","-0.0584134961330514","-0.173005952822346","0.114681858544244","-0.352488379596363"
|
295
|
+
"-0.097260797706931","-0.130663325595506","0.0294863864845971","-0.245477384155738","-0.32033038097468"
|
296
|
+
"0.14306620651536","-0.120274888855801","0.182088891482471","0.0530574158512658","0.10042031486612"
|
297
|
+
"0.345692735884783","-0.0781239027491476","0.348089565205434","-0.492211399269883","-0.30126535351522"
|
298
|
+
"0.462243109624768","0.11218497817603","0.480011767581699","0.453007581694613","0.55046464574779"
|
299
|
+
"0.207078368869949","0.59418727990382","0.895768774805128","0.952683725511219","0.669695354259735"
|
300
|
+
"-0.99574009514645","-1.00949085123166","-1.39192283288607","-2.19545326742591","-2.06932546465084"
|
301
|
+
"-0.196990718775248","-0.147297746241122","-0.368427941487098","-0.386451057759411","-0.339731496677869"
|
302
|
+
"0.0823761998718862","0.296532757414872","-0.0086754868194682","-0.110238544630609","0.213165362734226"
|
303
|
+
"-0.0404981922843559","0.121703605918752","0.341527311597472","0.43222167184341","0.28143991027369"
|
304
|
+
"0.418213275196006","0.368928396527602","0.433167026253443","0.583569562856161","0.470194458224003"
|
305
|
+
"-0.978012229625555","-1.67527551822899","-2.03201722231939","-2.40289264328092","-2.31997624520657"
|
306
|
+
"0.0772846897362775","-0.090385307642081","0.209105051569897","-0.179160233476367","-0.407508667225725"
|
307
|
+
"-0.0184867001092294","-0.0654359012227674","-0.16072320638798","-0.0732376335175188","-0.0776288498705182"
|
308
|
+
"0.286329660283549","0.353132093239803","0.0118057755338885","0.391471122000379","0.448458777491818"
|
309
|
+
"-0.138345567812855","0.202771294421953","0.27267636377816","-0.333901660190216","0.26180178561261"
|
310
|
+
"0.383335275869873","0.148306662541166","0.176911699757778","0.386959529436039","0.552658552979528"
|
311
|
+
"0.25098250526227","0.274586157451415","0.076804152409591","0.208513471640954","0.788495438940632"
|
312
|
+
"0.308211158887876","0.577442378766532","0.719287170121767","0.8789956498397","1.3982554143208"
|
313
|
+
"-0.499044393977624","-0.514308835615672","-0.637340810772596","-0.706731116841003","-0.825851530451212"
|
314
|
+
"-0.616786140878126","-0.0974092097186827","-0.532120902029112","-0.627482429261176","-0.555100272711436"
|
315
|
+
"2.76394719315905e-05","0.373724202311186","-0.0243585421392882","0.280412553715988","-0.18945842178466"
|
316
|
+
"-0.469204973151391","-0.0965950417466544","-0.248146004382512","-0.39085405591422","-0.227496220329352"
|
317
|
+
"-0.455702385661877","-0.0105454060968962","-0.015219339714514","-0.193308305832799","-0.401981057918585"
|
318
|
+
"-0.486973084046753","-0.929317665319921","-0.906362667529252","-1.12296716732639","-1.14082186212392"
|
319
|
+
"-0.195952168171615","0.114887739509695","-0.440282038878091","-0.0830616081800932","-0.176146980229587"
|
320
|
+
"-0.395854369733313","-0.760829656562035","-0.70485849241687","-1.22190260024454","-0.61412851575748"
|
321
|
+
"0.359177648427679","0.579976472409187","0.651246541991344","1.29125743234332","1.49044701057974"
|
322
|
+
"0.442929262588272","0.0456981167392712","0.208727665604141","0.165648876123723","0.358325908913652"
|
323
|
+
"-0.283467532113479","-0.526943961170768","0.010186979286002","-0.283311392600533","-0.694063588685567"
|
324
|
+
"-0.350508602153908","0.0368233245073235","-0.140786903117574","-0.420090962665504","-0.354489267703816"
|
325
|
+
"-0.161513017183497","-0.510077872839227","-0.405390374738842","-0.678317767816605","-0.718989601658554"
|
326
|
+
"0.0633469008930572","0.0251644989154826","-0.0970394727690973","0.171372676378457","0.443464192571814"
|
327
|
+
"-0.148235915532884","0.243195978519581","-0.106654248200753","-0.364268434216201","-0.580223864045743"
|
328
|
+
"0.221498356242911","-0.115811749391401","0.0593056746095711","0.134723164113999","0.621025216218063"
|
329
|
+
"-0.441716373390422","-0.097279413593928","-0.322501315070692","-0.567533124697989","-0.885535491524977"
|
330
|
+
"-0.00281309163760395","0.0099822541836123","0.0964431504779372","0.115245809676571","-0.193412775573354"
|
331
|
+
"-0.132792174888485","-0.152369524165032","-0.191625142024773","-0.441212549339979","-0.295312357842656"
|
332
|
+
"-0.215669585626902","-0.176784540601854","-0.165625644854147","-0.316874110103257","-0.518697562500534"
|
333
|
+
"0.0813390390359557","0.0253288075373889","0.127747302414285","0.08074901176281","-0.12830407027172"
|
334
|
+
"0.0944735932977058","0.303889168870499","0.154775045528192","0.451977684408315","0.22790853440854"
|
335
|
+
"0.548742326754992","0.642808822713228","0.461243447892841","1.08446402702381","1.00418548271137"
|
336
|
+
"0.359574349960177","-0.105252301004655","0.110440588619468","0.241257082180951","0.217372276587855"
|
337
|
+
"0.266927644631022","0.405045528227244","0.676094823924266","0.766259694499249","0.915543630512706"
|
338
|
+
"0.456426633366489","1.21166086992532","0.78367577031269","1.29404005891112","1.056502877879"
|
339
|
+
"-0.715793284355572","-0.89723773091336","-0.913203724261812","-1.21120208241309","-1.59076046129516"
|
340
|
+
"-0.452948277203325","-0.0341459375098556","0.0397802744803422","-0.170854524953259","-0.167771368990381"
|
341
|
+
"0.893564925657569","0.642733375358407","0.711790081461283","1.05515830956618","1.39588606286517"
|
342
|
+
"-0.186683822294416","-0.304126871103859","-0.0405859543319783","-0.0831144201633399","-0.305664061447082"
|
343
|
+
"-0.443195545920839","-0.288297782047077","-0.399333750338085","-0.374336439311988","-0.930406397248696"
|
344
|
+
"-0.253167583193116","-0.336758601588836","0.0269696511033459","-0.134569809767101","-0.136022897826747"
|
345
|
+
"-0.285108916863522","-0.365339783996562","-0.71359312520034","-0.656085178578738","-0.78060675937622"
|
346
|
+
"-0.313134794236822","-0.551398865705131","-0.421408577635458","-0.419865607097904","-0.688672024700982"
|
347
|
+
"0.0315240120401603","0.342948330443109","0.242618711413","0.39595746446708","0.648093337956602"
|
348
|
+
"-0.0606978588556586","0.189262679160088","0.442376501064484","0.475523643939704","0.555656341644351"
|
349
|
+
"-0.435355641028398","-0.46690392028741","-0.0698287281505479","-0.110100213458003","-0.300336508760207"
|
350
|
+
"-0.384799247283024","-0.789230632625748","-1.28003806205487","-1.00043033312124","-1.36042025964299"
|
351
|
+
"-0.643090504891391","-0.800368040073788","-0.948475077693105","-0.82933614778674","-1.55459142849745"
|
352
|
+
"-0.719793791641216","-0.527152724859207","-0.324290191365537","-0.693696472075173","-0.520954844154967"
|
353
|
+
"-0.818444870501631","-0.87196577973046","-1.16478904440556","-1.44684598383271","-1.00663531906056"
|
354
|
+
"0.00205086825059933","-0.307477035888654","-0.226259258295438","-0.23911937818408","-0.529912690918378"
|
355
|
+
"0.606369750812744","0.650766264070226","1.02473974892685","1.33563729274076","1.36068110838778"
|
356
|
+
"-0.795511596091982","-0.559128683747975","-0.556658233638278","-0.676103578887254","-0.648505945165047"
|
357
|
+
"-0.0220777330651639","0.246676042486625","0.119067235129183","0.166410414634833","0.266980772472092"
|
358
|
+
"-0.0429316713496038","0.0394652568449967","0.0879458516028228","0.0758746394374603","-0.227495773792968"
|
359
|
+
"-0.471002595016537","-0.803381639862891","-0.55272495564373","-0.182268576303873","-0.999062793050672"
|
360
|
+
"-0.573902687554777","-0.301519203657052","-0.391510893399998","-0.71627788445526","-0.873015886780537"
|
361
|
+
"0.82371496994491","0.759166599330293","0.682791165066529","0.814620452672077","0.835661216961065"
|
362
|
+
"0.150436972637935","0.233612668270565","0.136799889945983","0.418992663804818","0.0758649186994517"
|
363
|
+
"-0.0214568398846325","-0.242939668660135","-0.0712473995647205","-0.137356040190682","-0.419659585578516"
|
364
|
+
"-0.542065593925325","-0.728465673954495","-0.449783243340696","-0.695501755164414","-0.622965155444948"
|
365
|
+
"0.224995706123427","-0.0133468680898055","0.0381926735962296","0.589023424823283","0.645211136703075"
|
366
|
+
"-0.194375092508775","-0.449835682180769","-0.287744822357567","-0.457509222008469","-0.603138892252932"
|
367
|
+
"0.148013937342876","0.295204158971237","0.264154131457807","0.403030011888533","0.748203259298618"
|
368
|
+
"0.379191595225479","0.883947621477734","0.460317341380879","0.562164774062608","0.83255963990573"
|
369
|
+
"-0.358070306066256","0.00918576362876233","-0.0808487363832648","-0.262449757050429","-0.121532445863584"
|
370
|
+
"-0.767198657561736","-0.0938996716801048","-0.27591972863374","-0.381564383583831","-0.638805367537095"
|
371
|
+
"0.187902928605669","0.44106667344332","0.501189465021827","0.505837646961571","0.54218212197707"
|
372
|
+
"0.634225295920729","0.778518771725644","0.836666710309935","1.04807603376538","1.01085046790731"
|
373
|
+
"0.066075855520234","0.505310028616317","0.266762458179106","0.00344209190250044","0.672651333527626"
|
374
|
+
"0.0702726725415756","-0.144177408932001","0.0949130879336407","0.116235063995946","0.334544935823663"
|
375
|
+
"0.0723050858116931","0.237397509366221","-0.0239150217345583","0.304815514107119","0.0461997249677154"
|
376
|
+
"0.527466072132127","0.479348395719643","0.85042279533299","0.709637864736878","0.826567698797116"
|
377
|
+
"0.40307688940433","0.2614630039731","0.38006278096214","0.314732680016054","0.192689185623625"
|
378
|
+
"-0.389539696092428","-1.03487589639198","-0.285271224907994","-1.02287081531395","-1.14409171983909"
|
379
|
+
"-1.3367043343856","-1.06673339692813","-1.18851458348135","-1.5692222061049","-1.52825280574389"
|
380
|
+
"0.239945226222552","0.0560318006252413","0.56605423132588","0.714003347191653","0.835412774062654"
|
381
|
+
"-0.524389197299949","-1.06340180750842","-0.834325023821605","-1.02660675055514","-1.04121825227433"
|
382
|
+
"0.780495905381585","1.01532195653792","1.24062598303225","0.933358840255053","1.0613728171764"
|
383
|
+
"-0.0408700343760088","-0.219538722277762","-0.00800048893006433","0.749623266670325","-0.0710850478937969"
|
384
|
+
"0.60812687355976","0.486365950877185","0.935359611149696","1.33799928112592","0.865751877133194"
|
385
|
+
"-0.365793559726003","-0.0666617535534876","-0.594201872344157","-0.777847927754463","-0.712930196538097"
|
386
|
+
"-0.240122751459908","-0.141488499953653","-0.956714293260367","-0.938953532466098","-0.909012150292942"
|
387
|
+
"0.2344087324106","0.0349901692797309","0.252724547576726","0.872948098390987","0.775082972399417"
|
388
|
+
"0.602211736318244","0.66047753726297","0.399377302289307","0.971180683828454","0.793580918124531"
|
389
|
+
"-0.84464596790752","-0.542351538340499","-1.42877928206224","-1.09649859852156","-1.43372880095874"
|
390
|
+
"-0.782224626569108","-0.411130128231495","-0.610696563452491","-1.18657372644725","-0.95206642422142"
|
391
|
+
"-0.165661432719338","-0.405683997463949","-0.249243908937162","-0.593005486108717","-0.913412765085418"
|
392
|
+
"-0.183252422865545","0.110236385421291","0.0863316443233062","-0.0162260988081583","0.239784349222169"
|
393
|
+
"0.125281953666585","-0.472522436756688","-0.473276584384853","-0.306670217024841","-0.40549505588993"
|
394
|
+
"-0.262356931538092","-0.350621394406902","-0.235718284040515","-0.522484030466949","-0.788419179155919"
|
395
|
+
"-0.650877520979629","-0.716971861582111","-0.772787463643632","-0.963714887911686","-1.13815457482577"
|
396
|
+
"0.12650584699501","0.245310699213307","0.0701998522247183","0.208321273916843","0.398950093743926"
|
397
|
+
"-0.432073764913708","-0.403339763842037","-0.452456911574584","-0.339680210380438","-0.590998028684035"
|
398
|
+
"-0.707023067864321","-0.65536787796278","-1.31477508229621","-1.08506721422616","-0.934495779499524"
|
399
|
+
"-0.156585096690959","-0.130366867900922","-0.30785347921561","-0.161551551787858","-0.350467522984353"
|
400
|
+
"-0.39141675373317","-0.402866462080241","-0.193194351123382","-0.517485764121727","-0.520720602330171"
|
401
|
+
"-0.10946712171556","-0.0135820330209225","0.0912136753551917","0.353816774374139","0.225288366213531"
|
402
|
+
"-0.394136294809889","-0.460967703346888","-0.578826662448757","-0.611172909512674","-1.13407883209775"
|
403
|
+
"-0.0267947885188782","0.247839874917601","-0.70969157761125","-0.505982265928687","0.0140152585014214"
|
404
|
+
"0.101996815047228","0.0159630209182868","0.308021694060623","0.108492366944685","0.305065131761895"
|
405
|
+
"0.0125803150159726","0.467164027372909","0.234472152735206","0.315694395724478","0.24194274980495"
|
406
|
+
"-0.253491660559427","-0.212750543344032","-0.286191755317747","-0.465390527064229","-0.134644636375825"
|
407
|
+
"-0.178227235753918","-0.79755127537972","-0.798456025680729","-0.935102334213545","-1.04460234077507"
|
408
|
+
"0.443240308434618","0.130748021295296","0.258268772106581","0.462862965887881","0.487675187800124"
|
409
|
+
"-0.0756298780188385","-0.540762282326859","-0.137626865936086","-0.61061127424404","-0.405374839265841"
|
410
|
+
"-0.313602294272483","-0.344865018381666","-0.139024086085883","-0.485573865428876","-0.331466787212222"
|
411
|
+
"0.0455753410748152","0.278572618148796","0.256651115325941","0.26078717588239","0.166347473653946"
|
412
|
+
"-0.585630756262077","-0.361024107775606","-0.583318660436693","-0.899980422894154","-1.06653140567311"
|
413
|
+
"0.752382680569222","0.80796137616538","0.867525653953236","1.01829674694541","1.12504836214929"
|
414
|
+
"0.358467224530288","0.608330638712659","1.05591330131837","0.927244487373235","1.1208332729672"
|
415
|
+
"-0.00910177350993102","-0.0928162365430887","-0.0311781159104518","-0.516178107149445","-0.075588629540748"
|
416
|
+
"-0.620664094425962","-0.513804327263671","-0.79855471258618","-0.896231529922323","-0.861429655333131"
|
417
|
+
"-0.507339075603571","-0.40543045714936","-0.758058027583789","-0.925477212594992","-0.529995392592658"
|
418
|
+
"0.130783615267403","-0.165593414992936","0.465939624701559","-0.021927420561928","0.353057056938236"
|
419
|
+
"0.396209254575852","0.22671679703672","0.43886085502736","0.772006572249433","0.725006436505802"
|
420
|
+
"0.298208211834549","-0.0403566699768244","0.286906101254115","0.14036205685834","-0.192636349647011"
|
421
|
+
"0.0314922158887584","-0.153220582167023","-0.0474703077466615","-0.374652872468763","-0.318638344756878"
|
422
|
+
"-0.163017434696942","-0.772101328384057","-0.358253639826632","-0.766041148504062","-0.466984137416448"
|
423
|
+
"0.440108125301857","0.36535577364834","0.428486963128314","0.860173517045746","0.986812760052812"
|
424
|
+
"-0.116864568980149","0.515927794323006","0.286617426489215","0.192955120017865","0.328099869179061"
|
425
|
+
"0.0916364852746045","-0.115195340335768","0.265460803157947","0.317346907211833","0.16403274545634"
|
426
|
+
"-0.625116467270535","-0.608383373946971","-0.462852253785362","-0.677794311861132","-1.01133170762529"
|
427
|
+
"0.24810698935929","0.140693403849194","0.279090100089357","0.61987402643004","0.184581725506559"
|
428
|
+
"0.314759510434095","0.037080947965326","0.323089238391289","0.590465715638633","0.439215092485815"
|
429
|
+
"0.647327807086197","0.949039593082552","0.613039884774342","0.641825559843882","1.08535586147617"
|
430
|
+
"0.238441821847122","0.488209968253243","0.425853769638589","0.407168666197003","0.652134050311514"
|
431
|
+
"-0.00558035844536015","0.278538015005576","0.653176058427942","0.795832058081388","0.254245929233293"
|
432
|
+
"-0.768800155916855","-1.30875343690486","-1.30743536270027","-1.06837158397528","-1.53768125124813"
|
433
|
+
"-0.358613462242455","-0.923939200953892","-0.629942210036108","-0.615425628733111","-0.838217550510816"
|
434
|
+
"-0.587932586045789","-0.965664374876052","-1.18368978385808","-1.10119493231025","-0.958442795197012"
|
435
|
+
"-0.416576043697915","-0.423162105968758","-0.939203275276875","-0.367934524684367","-0.483530524373526"
|
436
|
+
"0.0835033655174355","0.61003996525717","0.985247106321547","0.661336259928859","0.890071909871733"
|
437
|
+
"0.159741767340844","0.297620041983422","-0.172513860577892","0.189647150388589","-0.0855245804063294"
|
438
|
+
"-0.89268797067991","-1.05502948371177","-1.1108484997709","-1.40701498054055","-1.49710308641524"
|
439
|
+
"-0.767516919476789","-1.29389590134997","-1.06083563599948","-1.42332249734598","-1.73106901506499"
|
440
|
+
"-0.326319715781332","-0.301635625009498","-0.00333104018355806","-0.253449074668905","-0.39997767890354"
|
441
|
+
"0.79780307126468","0.509092094958107","0.653037527864848","0.913924112164216","0.936968335503793"
|
442
|
+
"-0.0098900716433216","-0.1036444258598","0.0319366663923091","-0.169205363919427","-0.205218131427098"
|
443
|
+
"0.280490006848998","0.0284551588252187","0.986435405648918","0.893080116151394","0.518495310327539"
|
444
|
+
"-0.705112628905473","-0.711482806615878","-1.17785680712416","-1.42731486811256","-1.53035089073445"
|
445
|
+
"-0.371028135520417","-0.162372452074526","-0.416966678481557","-0.224284396949059","-0.4448039220738"
|
446
|
+
"0.171940543739702","0.0311063356856167","0.831805312624588","0.512392210915328","0.53272572302316"
|
447
|
+
"0.189903471950471","0.603204945086947","0.332438109552449","0.706609092406413","0.70119218729793"
|
448
|
+
"0.816941028035352","1.06638867447785","1.59868969989584","1.54875396023616","1.92128241434118"
|
449
|
+
"0.315913760418182","0.216375574373651","0.315362691172645","0.263032555866997","0.512318268643247"
|
450
|
+
"-0.414320096186745","-0.21993642085732","-0.527377638177069","-0.375713040171891","-1.04797409791786"
|
451
|
+
"-0.341644394374596","-0.225319629335888","-0.42993932255373","-0.551014427906709","-0.566290179762056"
|
452
|
+
"-0.25595398649926","-0.431853951676307","-0.0899102077080944","0.171818535064814","-0.0125724871242103"
|
453
|
+
"0.183892118371668","0.126048304128334","0.501066047852707","0.374722972434586","0.161877108352173"
|
454
|
+
"0.405933171509468","0.569310710612855","0.356965457232719","0.523935236716209","0.8179962388366"
|
455
|
+
"0.212729826823027","0.344991756637823","0.69058596043179","0.365546726179631","0.418645338911452"
|
456
|
+
"-0.529017504777876","-1.01674868461335","-1.05466132387313","-1.60783744517398","-1.82114292807787"
|
457
|
+
"-0.611419312492647","-0.708731317555534","-0.587453784526102","-0.530530237734553","-0.549454159530211"
|
458
|
+
"0.387998367192472","0.0919927292456985","-0.0400210013566992","-0.079860526149682","-0.147161147809369"
|
459
|
+
"-0.327600114282023","0.492372977848857","0.146484210038603","0.503030242599943","0.398520009579228"
|
460
|
+
"0.645718512547486","0.598966314824908","1.10305515983756","1.35910366535776","1.98107048461997"
|
461
|
+
"0.822953609883734","0.908777910792182","0.951466362840351","1.47352168012614","1.43101948290723"
|
462
|
+
"0.289014206780207","0.52997447886469","0.609578126878809","0.464777584565101","0.627218485164528"
|
463
|
+
"-0.0948546709046379","0.166839292275245","0.461801481689583","0.51860493846498","0.580392019193104"
|
464
|
+
"-0.293251490315532","-0.00684639102627418","0.0774309806629855","-0.249075281864449","-0.15514276268223"
|
465
|
+
"-0.76860410672142","-0.612579333916159","-0.111859579738472","-0.288575775387422","-0.926272693495458"
|
466
|
+
"0.27819386713631","-0.397050876202037","-0.163087210814414","-0.29279415545054","-0.775301689379572"
|
467
|
+
"-0.443668367806431","-0.72652291951722","-0.79256556318876","-1.51287687671043","-1.53239377677968"
|
468
|
+
"-0.0240003194110826","0.405129095535288","0.180799424091784","0.339195447654842","0.254338234614793"
|
469
|
+
"-0.597753357093993","-0.66079022114004","-0.769910271777671","-1.21591749677452","-1.48263530837194"
|
470
|
+
"0.135515723028225","0.91501138692184","0.297935677077871","0.488090882012262","0.63922939079865"
|
471
|
+
"0.166970259985218","0.0995053420136669","-0.113018267172427","0.195777517963747","0.435625288378641"
|
472
|
+
"0.370024968746191","0.212529373174804","0.446020925379817","0.495336773039585","0.183304933760194"
|
473
|
+
"-0.787915993074182","-0.67922262354507","-0.95619574011871","-0.989622914628023","-1.02703605062711"
|
474
|
+
"0.991763082226936","0.968015905446118","1.05318050230961","1.16158043578088","1.26375440483943"
|
475
|
+
"-0.079125786359809","0.0307648126932678","0.00405361087920802","-0.573771359574702","-0.366179436917773"
|
476
|
+
"-0.267080784792257","0.225728124950261","-0.340705369436311","-0.396910939598522","-0.204442281244112"
|
477
|
+
"0.163630172772236","0.642292804890168","0.626621310072534","0.377872730922214","0.518716087433238"
|
478
|
+
"0.284189599223496","0.397055497249428","0.225171144274848","0.424645846045032","0.680809890479486"
|
479
|
+
"-0.581948940621437","-0.0758297409035468","-0.548629959327937","-0.57448232507167","-0.458659034261417"
|
480
|
+
"0.225557547582916","0.307830793355067","0.257702708900942","0.313846298944163","0.300343721332091"
|
481
|
+
"-0.156326935716027","-0.279223128390528","0.0789755419657517","-0.16000360870038","-0.0966095056305526"
|
482
|
+
"0.048258935191339","-0.0759977215268225","0.00581189078126029","0.0409375520134505","-0.191347852510258"
|
483
|
+
"0.114765983563815","-0.0220363161803263","0.0318343141713092","0.0269198621939946","0.0331612641745168"
|
484
|
+
"-0.629733376601097","-0.689416440973054","-1.11280309424143","-0.820320787493561","-1.44169428101588"
|
485
|
+
"-0.272675774490893","-0.871186675735181","-1.06524541732723","-0.686943340583614","-0.79747122715865"
|
486
|
+
"-0.0111833971698529","-0.51975585992677","-0.621772181961503","-0.91531241906609","-0.565305471365763"
|
487
|
+
"0.849564468032554","1.09418833547372","1.28873415879459","1.05137238132835","1.4473757264485"
|
488
|
+
"0.135293551664053","0.761258966670238","0.763743218209966","0.668371468480933","0.877494932434619"
|
489
|
+
"-0.709493735349342","-0.78304357103141","-0.919961931853146","-0.766317687799396","-1.08106896827099"
|
490
|
+
"-0.0643395124965858","-0.275796883434849","-0.131649096871532","-0.50994670272195","-0.523495007639356"
|
491
|
+
"-0.68622870861831","-0.802084501825012","-0.99068597758257","-1.37524265395544","-1.3904050630558"
|
492
|
+
"0.111399232420262","0.336886313022245","0.198770987104141","0.0451494182283985","0.242276897009801"
|
493
|
+
"-0.120622492796169","0.0270436314715935","0.0823474840979534","0.544561593138121","0.490952250176741"
|
494
|
+
"-0.279559817966639","-0.335152306288943","-0.297807173157396","-0.122047121110906","0.0034632359748335"
|
495
|
+
"-0.157302976215162","-0.9083641304616","-0.660436905702847","-0.698020419551187","-1.11188720722121"
|
496
|
+
"-0.0130452427838452","0.0684946040481074","0.0283535484027129","0.29464329291639","0.165120749496401"
|
497
|
+
"-0.00556289262069154","-0.0556325084017261","-0.199195531910035","0.138241040842156","0.0181431634249178"
|
498
|
+
"-0.0410580660451049","0.254749472479922","-0.205165635668271","-0.199347135827578","-0.0334011628458293"
|
499
|
+
"0.0056262971972209","-0.0487925944510207","-0.127605989827702","-0.246449906320265","-0.466054071310238"
|
500
|
+
"0.0450805955301612","0.132836921132853","-0.0298754524328836","0.134974781529754","-0.263083696387347"
|
501
|
+
"-0.236190426903362","-0.150739595978231","0.100648470217098","0.233228900491342","-0.0927599043796008"
|