diff --git a/analysis/intents.go b/analysis/intents.go index 1916a82..19dd179 100644 --- a/analysis/intents.go +++ b/analysis/intents.go @@ -24,10 +24,10 @@ type Document struct { } // SerializeIntents returns a list of intents retrieved from `res/intents.json` -func SerializeIntents() []Intent { +func SerializeIntents(intentsPath string) []Intent { var intents []Intent - err := json.Unmarshal(util.ReadFile("res/intents.json"), &intents) + err := json.Unmarshal(util.ReadFile(intentsPath), &intents) if err != nil { panic(err) } @@ -54,9 +54,9 @@ func SerializeModulesIntents() []Intent { // Organize intents with an array of all words, an array with a representative word of each tag // and an array of Documents which contains a word list associated with a tag -func Organize() (words, classes []string, documents []Document) { +func Organize(intentsPath string) (words, classes []string, documents []Document) { // Append the modules intents to the intents from res/intents.json - intents := append(SerializeIntents(), SerializeModulesIntents()...) + intents := append(SerializeIntents(intentsPath), SerializeModulesIntents()...) for _, intent := range intents { for _, pattern := range intent.Patterns { diff --git a/analysis/sentence.go b/analysis/sentence.go index 0e564a0..f9b0f72 100644 --- a/analysis/sentence.go +++ b/analysis/sentence.go @@ -37,8 +37,8 @@ func NewSentence(content string) (sentence Sentence) { } // PredictTag classifies the sentence with the model -func (sentence Sentence) PredictTag(neuralNetwork network.Network) string { - words, classes, _ := Organize() +func (sentence Sentence) PredictTag(neuralNetwork network.Network, intentsPath string) string { + words, classes, _ := Organize(intentsPath) // Predict with the model predict := neuralNetwork.Predict(sentence.WordsBag(words)) @@ -61,13 +61,13 @@ func (sentence Sentence) PredictTag(neuralNetwork network.Network) string { // RandomizeResponse takes the entry message, the response tag and the token and returns a random // message from res/intents.json where the triggers are applied -func RandomizeResponse(entry string, tag string, token string) (string, string) { +func RandomizeResponse(intentsPath, entry, tag, token string) (string, string) { if tag == DontUnderstand { return DontUnderstand, util.GetMessage(tag) } // Append the modules intents to the intents from res/intents.json - intents := append(SerializeIntents(), SerializeModulesIntents()...) + intents := append(SerializeIntents(intentsPath), SerializeModulesIntents()...) for _, intent := range intents { if intent.Tag != tag { @@ -97,16 +97,16 @@ func RandomizeResponse(entry string, tag string, token string) (string, string) } // Calculate send the sentence content to the neural network and returns a response with the matching tag -func (sentence Sentence) Calculate(cache gocache.Cache, neuralNetwork network.Network, token string) (string, string) { +func (sentence Sentence) Calculate(cache gocache.Cache, neuralNetwork network.Network, intentsPath, token string) (string, string) { tag, found := cache.Get(sentence.Content) // Predict tag with the neural network if the sentence isn't in the cache if !found { - tag = sentence.PredictTag(neuralNetwork) + tag = sentence.PredictTag(neuralNetwork, intentsPath) cache.Set(sentence.Content, tag, gocache.DefaultExpiration) } - return RandomizeResponse(sentence.Content, tag.(string), token) + return RandomizeResponse(intentsPath, sentence.Content, tag.(string), token) } // LogResults print in the console the sentence and its tags sorted by prediction diff --git a/main.go b/main.go index aebac54..45eb9df 100644 --- a/main.go +++ b/main.go @@ -1,18 +1,29 @@ package main import ( + "flag" + "fmt" "os" + "github.com/gookit/color" + + "github.com/olivia-ai/olivia/network" + "github.com/olivia-ai/olivia/server" "github.com/olivia-ai/olivia/training" ) -var ( - // Initialize the neural network by training it - neuralNetwork = training.CreateNeuralNetwork() -) +var neuralNetwork network.Network func main() { + intentsPath := flag.String("intents", "res/intents.json", "The path for intents file.") + flag.Parse() + + magenta := color.FgMagenta.Render + fmt.Printf("Using %s as intents file.\n", magenta(*intentsPath)) + + neuralNetwork = training.CreateNeuralNetwork(*intentsPath) + port := "8080" // Get port from environment variables if there is if os.Getenv("PORT") != "" { @@ -20,5 +31,5 @@ func main() { } // Serves the server - server.Serve(neuralNetwork, port) + server.Serve(neuralNetwork, port, *intentsPath) } diff --git a/res/training.json b/res/training.json index 033c7c1..6e11116 100755 --- a/res/training.json +++ b/res/training.json @@ -1 +1 @@ -{"Layers":[[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0],[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0],[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0],[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0],[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0],[0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]],[[0.7209555990344017,0.3552037358552958,0.6133264314480129,0.6235709508692667,0.30480041052872364,0.6826847940581701,0.5663937714328021,0.6251771850141865,0.2552224238277188,0.5191637275223135,0.7057848731949162,0.39141649538932693,0.44450312316036616,0.6336600993084931,0.4536324646705767,0.7376888914149293,0.6026970840621114,0.48456520149321997,0.3803367215560802,0.30962082994525625,0.3252860441679003,0.7132727754291099,0.6032335636605498,0.6574909734565263,0.4391759239430852,0.698451863167042,0.3586853390827759,0.5985336149958954,0.6976453448491416,0.3482823420198976,0.6771439210159015,0.5391552020147368,0.3845399869232371,0.513578935158911,0.6884460197029695,0.3938366441860973,0.3472724432312794,0.32131309152934373,0.22734241639697805,0.7296879762386176,0.4128728704877333,0.4213827269157862,0.5156371381712268,0.409871819302504,0.6045113625984277,0.3705892660454737,0.6445238595720266,0.39846993339053266,0.3378719253217976,0.35107304237939774],[0.0002082100206143871,0.21278309092025927,0.8195975885954204,0.5704461890124899,0.7506762928827563,0.20469786926319827,0.12984141257077744,0.44076498642833256,0.000023092700654682966,0.46954824225356984,0.0011759274793765634,0.0006531963106470827,0.42386713490119804,0.0002193302853878725,0.08984602750594972,0.3296034772477605,0.2776106340997984,0.019171561508193918,0.2899027440346849,0.005701832491441558,0.9424294156790191,0.00020609484154930947,0.6348842777298518,0.0023705946144535485,0.0000015405839585855881,0.007611839316741823,0.5387999361373109,0.8947655780977157,0.3607119932944693,0.5810963198878106,0.06383302485075247,0.05647878199230155,0.00031668687814126456,0.0011606648963979195,0.06074122895049649,0.9150336450312528,0.00019288706185888803,0.002910935035032472,0.3835102436100023,0.8156893687481895,0.033083948423832686,0.0012461962340926185,0.00019430221752508766,0.0008220746056624448,0.3323193890816509,0.266258002934076,6.000318370150025e-10,0.7239178875087547,0.008698970702214655,0.047591998932775215],[0.00008582968088236612,0.16186554916808915,0.5225063508812845,0.5946623793612945,0.7686193839874828,0.28497560375202563,0.08068395493468071,0.5392720563342567,0.00040350912203455203,0.43194626386699697,6.966365711121073e-7,0.0020754989881145696,0.4771216995593243,0.00011414533970724114,0.8371762720735719,0.2823674498312391,0.6442515139017178,0.01197834263323454,0.423550227365096,0.03900476048283602,0.557535148059888,0.0007969063443724626,0.8882088158844166,0.0003560073092256922,1.7180069038051243e-7,0.01223675674908257,0.5806603141989989,0.7542441641358291,0.49070461454273656,0.6744987241513075,0.26755509694536544,0.10037979664566198,0.0002147064154670355,0.0010539866835884283,0.015237535371099445,0.781822654484681,0.00016630431107741257,0.009342855983180777,0.5842301697473219,0.5104410950828486,0.15997877020195436,0.0003556109881467759,0.000002553651844562984,0.009872241411299427,0.16186409114729478,0.2912572488342298,6.467335093792326e-11,0.6358900335818848,0.0008776774599206183,0.0916620256928744],[0.000006013478082971282,0.5362064153994236,0.8441015879902969,0.9851588015858979,0.49633348674424654,0.35582918719506906,0.21216159652648978,0.4902034394833222,0.000007175624881645072,0.17339338923042344,0.00016930003410589033,0.02435525629507474,0.4228971313055358,0.0016113574065512643,0.005784492046757911,0.016308638010616335,0.6964406565663743,0.01264960035036509,0.3493675071167754,0.002444297300181648,0.761889614816167,0.001575757892590636,0.8083356477458232,0.003690360691810138,0.00005120479042843904,0.00013090851714257619,0.281467694696011,0.7567761828977226,0.05833158750795911,0.3932807331533875,0.12088191954673597,0.0042063857558528785,0.0010414234109704852,0.00017643524980220818,0.0023758678822222152,0.4880290725216259,0.000988408529177256,0.006834652719456206,0.4262993255563587,0.2001363047553396,0.1380807350971669,0.00006510565118356532,0.000047050684387584594,0.00025255478315656775,0.4692362119841961,0.24086206216728373,2.4507623315468465e-9,0.8658243430232603,0.001893316234546392,0.13325209339842503],[0.547023220565482,0.5988005683922988,0.4203900664792171,0.18640610451240702,0.5603266454535427,0.5792364105961739,0.5333587837757521,0.7755072471765879,0.7645786613862314,0.7293975824554005,0.6379944385417969,0.5692017867539185,0.16598947443505752,0.1644566705771164,0.17485921540039528,0.765038042495492,0.03783464924247217,0.42616911629643406,0.5768263957905524,0.08287908397040056,0.7427650311919486,0.5716451036285919,0.20576026234454586,0.5347283240361372,0.3765191835870004,0.40463322755306297,0.286367333356521,0.032900475457404675,0.7307869340922137,0.5442206550715246,0.7962144254967215,0.49194696193849147,0.6797103194658761,0.7660023944871376,0.6180224924311362,0.5379648363940499,0.8009266121740058,0.48649362334076957,0.35302507193774835,0.3208594539539446,0.7625160285851499,0.1921778235580374,0.7748497314048131,0.004303411079725798,0.1535535462007824,0.2067814222656123,0.1495348469503556,0.09646968901273932,0.34020351780769525,0.6028032503227257],[0.8786461198577818,0.002196220921383518,0.14332944870511125,0.3840827587992278,0.5261134551624828,0.4832912515896955,0.26488402707942366,0.03158953099602747,0.49560687371086454,0.35304598384516184,0.4170673760907443,0.3937153394498715,0.2690241335645073,0.7666779208097733,0.9296148253390585,0.691528749329826,0.009247128981593074,0.13203064486862512,0.6387145374059221,0.06399420748636427,0.8898592555945622,0.5822531225640369,0.2819936958149615,0.4807983146686686,0.8131844928115385,0.26422784312791275,0.5787429976043207,0.7802731068927801,0.8544351542845842,0.12320084405868906,0.7809551741576317,0.17962699030242302,0.6667328170795621,0.5284636656191298,0.8095645546673037,0.5275287907697316,0.7919781517170944,0.35751827636794575,0.1814484383509048,0.29022410685407063,0.8657778271347589,0.01433667427308982,0.018715410969024602,0.000004180634120714961,0.44459805646932604,0.6656684601215848,0.7707075024066479,0.5476109852006407,0.7402807212648812,0.05928512486880409],[0.8103326715135761,0.3781126400705377,0.5244203357139454,0.10410497621554815,0.6669123129320771,0.8629477741714052,0.45458018268582434,0.04995791587204763,0.45235655588296236,0.19724956701756574,0.6746733439941404,0.419903077831865,0.05915837921700389,0.3636019956012741,0.4643276213085707,0.42274465150098,0.035089970599820636,0.09259905720103428,0.5590342699175046,0.9377565604319728,0.5540788686097722,0.3350346466454361,0.8575000118931589,0.9643319792795546,0.2891795489559636,0.4983264426898854,0.004548074061268954,0.0336919525604946,0.9504073580503246,0.858928191505086,0.18109699731700074,0.487008482000333,0.9550733697194277,0.6889607849747056,0.7035027464440329,0.588238327202317,0.7954097258792597,0.4424799812601399,0.3827555699195503,0.9159712773513797,0.5412723720830183,0.20223766072282018,0.03270380145350476,0.00010598344999396759,0.03856028865938997,0.2576160566864793,0.7529233072462737,0.6935978551634224,0.47368840171528037,0.29614240725410745],[0.4234198308689889,0.29987827563506453,0.5141389649601075,0.6257224143382875,0.6353250012150072,0.2678530383612199,0.6613419919191507,0.6535887587896841,0.32766147848342286,0.7468237288326405,0.6848280454662308,0.5315211479400996,0.18590386011271484,0.27925804659651504,0.3220560264380659,0.8210690344933671,0.3310376434816238,0.8602322411700947,0.8309984904501733,0.06041086284890909,0.49572490009473497,0.8594985130117682,0.5885485094962194,0.16220878568899058,0.5891792392251028,0.1953906882831076,0.021597672102009528,0.0692535422303847,0.680665222080366,0.2499011370525145,0.5872917994801798,0.21675628097444483,0.7062717089256105,0.543796914884337,0.7551534568012254,0.6890288454642606,0.5899168404082086,0.20601137495053268,0.20567411846142736,0.20278041860329876,0.5707979830280475,0.3023103923971628,0.03310558229618331,0.03790930565265341,0.36332063071625015,0.0417900938920261,0.2635554501039985,0.03615487759218797,0.4601648132424745,0.8319579097558575],[0.4653767853172252,0.9102546879106956,0.6100303574151907,0.34948623942709883,0.0003103964936175498,0.32029158195826635,0.0000069809811804942315,0.3258537286395061,0.6934967786965326,0.8101694193877045,0.002268767494827738,0.0008238720292465223,0.00006246869767690798,0.06296696176999428,0.12512808531622818,0.7646374412280519,0.049070214116895744,0.4271980593210522,0.6683518122317048,0.005112025219940809,0.9143113248765848,0.47211412603576003,0.08276239599775745,0.6409154315072119,0.003484752180742911,0.000041358766946595634,0.6516773807028764,0.31373739975076353,0.00004415413141519703,0.7993830967272967,0.8503397470476824,0.9023112802166818,0.8219378996095276,0.7840924432055323,0.00000244594862870158,0.00027846232632781144,0.0003943975589280937,0.00395039343349435,0.17566278641961475,0.011250494039993366,0.000016367840481760328,0.38814018468676204,0.7020043856809601,0.001950728324272071,0.8891423889347296,0.6338120751838777,0.27562552773472826,0.35531331046670644,0.0367752081645798,0.0019462947832653765],[0.5580064095425662,0.9328509609858138,0.46877770828214776,0.5883682069408438,0.00044897324405433916,0.31639875166138115,0.00003134548116212343,0.634018408925038,0.5987958150483003,0.7310263063484195,0.018059867733702585,0.00442438842576919,0.00007411913837575564,0.11008684155413778,0.517288239499948,0.7268092624253479,0.03660114533094204,0.33599722012993255,0.5130715411772913,0.007562168379662111,0.7993230722867958,0.8235900826637944,0.15763826583451843,0.9291908126880714,0.010653483769688265,0.0000493539275848405,0.6141701359574233,0.5641305799884176,0.000014326947650225684,0.8267447876585869,0.6677072619500517,0.8206375253424356,0.9157354499727555,0.9027809077517976,0.000003171154260172119,0.0006377699069304648,0.00675448975790844,0.004662354216016163,0.26365656910820423,0.0008952891874697535,0.000019048668520727513,0.49733618015295433,0.6738814252256077,0.0005021140805331279,0.7465278445406208,0.6832425653851232,0.32860549758477126,0.2645600008486507,0.01854040942672683,0.0074873033081765674],[0.5183725428628754,0.002512452833294637,0.7988345595350927,0.9417336042832277,0.7222788051781632,0.0013845834296188706,0.5789649748342596,0.00008634485053655076,0.00003258002342633961,0.00005621728933149132,0.37142538916800527,0.11304975119118378,0.000013045901619770968,0.3123026103036796,0.6945269980315045,0.3938780107388849,0.532670965512156,0.0024852844260738888,0.00007500740878965413,0.23084256153506313,0.8898801742408117,0.12306212017752646,0.8151988842538314,0.0012890342644398948,0.000004604989919108698,0.3314989709955071,0.6980184183062335,0.9171581891310422,0.7164272101549133,0.2896511812161292,0.14713458656056158,0.0003323985260467554,4.1420918577127015e-8,0.3158190852592493,0.000023804048191202813,0.9303278328973623,0.0005708638047576188,0.12949879660386857,0.0012233587999543566,0.7329557782304491,2.1473321255506053e-7,0.0000056986775408768515,0.34520220380761946,0.000029107923541202207,0.3618749052637203,0.000014609538061600107,1.256498426421583e-13,0.5377096860408194,0.5164210930466886,0.21064086910858093],[0.4597169166951116,0.18432690537735774,0.9809903296229212,0.6152288391271429,0.6372296758494399,0.15402791018667705,0.2547189416666854,0.0008448267749708633,0.030788331113568893,0.03247894376568911,0.43431737425435524,0.3197825963835332,0.00043016888540707625,0.33169703173988896,0.42574807280824606,0.6109123372383833,0.6311971104111102,0.09803373634898989,0.07661168257915084,0.3179876819043876,0.9053810578008243,0.18307430176740655,0.4161964367436548,0.11413476184594554,0.000590070533149325,0.22049511858786514,0.1850312054430532,0.0009228939456664634,0.526656194563873,0.6317736169626719,0.47403426150079225,0.0017808599043489433,5.884113804274221e-7,0.25273277067764727,0.00006130168627079735,0.34375472070464924,0.023366597685409125,0.053249003935710824,0.0016819621479151287,0.7425438312859068,0.00014508434246566352,0.00005843212518922497,0.5386604996913898,0.35650427828997405,0.4883500748498862,0.12102194426074264,4.989294824760127e-7,0.2710345079403189,0.2393540625179064,0.3525705646784416],[0.5585734482777824,0.00015140264640773512,0.825570703962794,0.8896420427500996,0.561276396362344,0.025054937881008835,0.2528178235591314,0.012688796826514291,0.0007129491409344823,0.16132760129270643,0.03290215631473086,0.004091153575297803,0.020292198737858893,0.03730195392348073,0.5398868295071498,0.0012836130471132327,0.7086055214087627,0.05940049628142802,0.001928180241938361,0.0003581945583406089,0.9198710391024292,0.00009124035946401652,0.7958879587269333,0.09829515622014996,0.0005087572986686857,0.4839611841688518,0.7591237572868426,0.8053368941049822,0.6699659077379188,0.0014368424117554104,0.0004431591647793158,0.27895257647678473,3.2776884270402717e-7,0.009233231335618973,0.2961290849197224,0.8425666054123796,0.18323154992828283,0.34579136500131047,0.008714471855750637,0.15568760027983344,0.000001879632018738684,0.05298670456066268,0.00017866986304326915,0.1076656817712798,0.6229365440082006,0.019784918825619346,6.777071146212524e-11,0.22960529334248533,0.15666687821081027,0.00045721712708180845],[0.9892488333590036,0.04720359902494371,0.4538461354293974,0.0018032105859192822,0.8131301221474051,0.25885139299817167,0.2695711953744965,0.3152000348272706,0.8262679445790717,0.0004346811571249947,0.5499958337868813,0.0015670465319489642,0.45420892237323207,0.3531716362654946,0.35248330718578175,0.13791440448583236,0.7109252925471499,0.0008425123673671302,0.042567453632101626,0.12450180703005573,0.4079614104221016,0.18370936992628933,0.3304106180647886,0.22712349052624375,0.0006015594606376077,0.018580778409950243,0.5394299288434331,0.045449891528759515,0.31215539841775913,0.602526661271901,0.6086721158933804,0.9072250692732817,0.14964441758704014,0.03466181691719888,0.195770006650702,0.7574408261893406,0.4844709128515017,0.1758656376937634,0.7253388280897957,0.9666119755362677,0.0019761966887101223,0.7930809580381185,0.11020899181442138,0.31482180678887767,0.4377379252115496,0.8542146091135006,0.11737295569842608,0.21857709463689787,0.001534894678983013,0.36854703344092504],[0.9260977376426429,0.5237438307298636,0.2585197566909563,0.0004280902591098291,0.645201334196789,0.06823439488117698,0.3533072343798346,0.41229792030239726,0.8482594342596101,0.005389907725164582,0.8029108613478282,0.0013526169115144061,0.3646464360548793,0.22851927363069752,0.31668155961238975,0.13346475332008328,0.9504067012820453,0.12366582171894916,0.03530940015496641,0.08328170640020399,0.1094668248935221,0.3265189126250774,0.28204986724530984,0.07609481046922666,0.003473364218871154,0.18484403809538522,0.3996825701411187,0.07791308021184357,0.14008762302738342,0.38754175080246117,0.8812614931324126,0.8857615485471507,0.23377750593738109,0.06543933337166047,0.29928653859764204,0.4540179339500458,0.6024475902897591,0.027870004893969257,0.4652123514252292,0.9430425873546754,0.0000945349257226051,0.6182460469787083,0.1514185002033922,0.4231384634229899,0.9003183552557853,0.7238549746261151,0.026356724140142746,0.15191633764171006,0.045619685309748484,0.2335159104164365],[0.7936208013774585,0.17464409005351253,0.08077823999102493,0.2957949838618198,0.38963724216777035,0.854482775262862,0.40800742128388356,0.5905681162633316,0.6334440411361307,0.05570088990559875,0.8586511648214371,0.36182330237763505,0.4365056051668386,0.5928407275127842,0.45583345293147454,0.0039442872695202935,0.4088170138249151,0.006565586453667013,0.08458931482451096,0.8747295327469448,0.5188887692531232,0.5009356584385494,0.600515473762519,0.9296348305531694,0.03485155903630511,0.2561637434762349,0.37673278137914235,0.5158618129163203,0.8235576016239897,0.8398265853546618,0.41809906803626445,0.7448377809022974,0.8451016508601602,0.5214628896049953,0.8021096090281788,0.06886625078650883,0.8642136817201341,0.6461605262145046,0.7623795619064454,0.8227502325153079,0.5253635230272268,0.5833328942417297,0.27439314360102607,0.3142153296772812,0.31519143385747717,0.567138969753188,0.5885433526804157,0.8411592458722165,0.2031755029892525,0.18109203238954127],[0.5085335885322184,0.3775554505215351,0.11562756015327627,0.00448405768246325,0.8300694920616315,0.748356146017463,0.8906385940330366,0.5126738031829926,0.8532788265741853,0.2090958031452949,0.8275322388622643,0.009462928604093784,0.2900072603121178,0.7101964546577185,0.7538937986625188,0.4581621834069436,0.8318282605758256,0.10292990418373568,0.27025351004552284,0.6163582695043086,0.0249425869722234,0.6774087017068583,0.4601588730919498,0.8746675854065876,0.20234548976270042,0.17049202207100606,0.5010690621450947,0.3657568589239152,0.8699534245048784,0.42045470675790036,0.6467347305551707,0.6735807683527614,0.8850160140558947,0.8249903785103168,0.8259023451691306,0.1261057995244085,0.7670321402091083,0.5477236490437548,0.7569481910851091,0.6044867785254701,0.006572196977876326,0.4283098610813849,0.7608821849936385,0.6507764611662896,0.7069013724642653,0.30232497463352276,0.6213501409414975,0.48296830759420367,0.6475292150692415,0.7115834417527795],[0.9720318580141534,0.027167276306548097,0.29083968045990266,0.0006635202735645319,0.5022247332720612,0.10811763724087704,0.17980470546822042,0.3560107408454409,0.6147597025114695,0.0014592395845192357,0.36575508665481643,0.0024853551189437085,0.7898877116134182,0.532595079888236,0.29626762756660946,0.019521898489119012,0.5486977283282196,0.0005244809646588616,0.15082139558668692,0.07949867250341489,0.5073628393757513,0.17485700018710276,0.30119982674261575,0.18970947150348613,0.002435769475196082,0.19657444478272923,0.2246768517094001,0.016213590611384398,0.14040081637343704,0.7600111328835866,0.6862812182470414,0.9442616401253102,0.316189319630217,0.10140436836573075,0.14415051519972014,0.41054010758395426,0.3082995810189239,0.2763079111247901,0.5835384761586128,0.9712632433145865,0.0008192732446727602,0.6811776070307916,0.13121039276820898,0.3070564090426035,0.5728310432071831,0.3403143949421585,0.05835589607244735,0.16028243426263505,0.0010183081680464983,0.283833011791379],[0.954736724977312,0.012115238473219294,0.4715404019514349,0.00009201466640613327,0.6653485170848402,0.10003327575437748,0.366789826896724,0.25063230354687877,0.3941742544343089,0.0015509644383023336,0.5364057176462678,0.0008478800620475193,0.9210089754604011,0.47329290231559545,0.548884204636452,0.13922609000147526,0.5667354573736149,0.0008051359100399815,0.16713446089948025,0.03576328817125057,0.24076939557212781,0.50446993496499,0.3224210128854121,0.13564586993762448,0.009260525745122808,0.013216810996204928,0.45860313048446255,0.06536919589227554,0.1582460920681086,0.5575707221308828,0.9261244706078879,0.9525314932620577,0.15416010641513858,0.007645592438418737,0.23134918428016168,0.7909221189897434,0.09843852072296679,0.027549746793831584,0.5160615740073119,0.8563805379851102,0.00007763411790865258,0.29904358383000446,0.13690448562325105,0.8812126940453292,0.7657068950103466,0.2553317604077849,0.03631481031415197,0.0799866268730268,0.006321889803062858,0.18381430369249677],[0.6029482046334375,0.060818140903729286,0.19721376000108762,0.008675075134499582,0.8334851728466848,0.6406640759068036,0.5748652653261357,0.7087392471593617,0.3493953846585329,0.6130415631379988,0.8659754892280107,0.1623644971238785,0.7238224457755178,0.4466295161646869,0.7322317515747359,0.14375013593863722,0.47788794774691196,0.004940104311535877,0.262656177063319,0.5019768496838637,0.05293439092434705,0.5819232980633151,0.6660176514328067,0.8264819712439523,0.35673520729991665,0.3811557964316889,0.3619515761911367,0.9265903525376654,0.6657118313685969,0.8222452763005805,0.8138617529955918,0.7297050479910742,0.6834582581091821,0.043071015584204925,0.9198735422831262,0.7389783014281038,0.20571681776807546,0.28600881654621063,0.7719269944606622,0.3867355921436716,0.05369622342504606,0.08140871293444774,0.5304870200732874,0.5075837228355288,0.25702831790217273,0.11686852480506926,0.7095396012678932,0.6725111373152745,0.1659475590654339,0.1257075445528086],[0.8927234487817196,0.3512523385671658,0.7049973366247465,0.028838119730556912,0.7793548848058478,0.00000207687821340604,0.003256893594078717,0.01441849377212687,0.07858273894930441,0.4217256352715425,0.03907411905660213,0.1241104467522776,0.901650355027931,0.4269488625928296,0.0035788275921574274,0.014135280384893218,0.9158235199320279,0.29273487047689534,0.4883795062993219,0.000019303991667853457,0.38680374582965255,0.26256409133221664,0.016846466734635263,1.2093498048794865e-7,0.24881353510358356,0.1714192395500843,0.6781971052104565,0.0000065682146701577016,0.000011985687412767916,0.24128488456838396,0.9739036304807845,0.9462390168118013,0.022370149642186848,0.11169339370919035,0.00011653917555157099,0.7443894454028106,0.5782540220952223,0.011371575450729435,0.5562814824063147,0.9326806660824537,0.11525779732496488,0.7200800559445784,0.5956404309345615,0.14956682099405053,0.8618107257079812,0.9288343204654051,0.14023727147999804,0.003094387322793063,0.00010533182098333157,0.3691953592819231],[0.9702353212989683,0.5238371741379964,0.45934731713442584,0.1336254174746987,0.6697118669185959,0.0000030647582240027134,0.0006206700411805535,0.011129205559162962,0.3355711631408151,0.5199743150458035,0.004820004553080221,0.21755965682810502,0.7885537191318287,0.4631164890149224,0.17443951003449787,0.01367718665845843,0.8568712832766882,0.17588614131001562,0.544564978805195,0.000005817404072751617,0.3235239684647068,0.10858119054766324,0.030580011149323922,2.434907039627563e-7,0.37314111534619193,0.2010282905454731,0.7821189612742067,0.0000029318418746167167,2.5833563244338156e-8,0.09435508710131303,0.8595549927506816,0.9792576640630369,0.00006345652238461462,0.0709913988004018,0.00004523206153579118,0.6092218085597774,0.10707304621724084,0.014579976424524752,0.15588033790701605,0.9493888351508674,0.13218659053476953,0.6481087004592055,0.7107437318534549,0.8089970119533383,0.7626971471608639,0.6509046080812234,0.18960731137759618,4.3021823687973446e-7,0.00008561454123524497,0.5152507886504923],[0.3260530658153156,0.3141622161501895,0.26345558361766797,0.791218662878089,0.4454705022088132,0.041002127170918265,0.09179919829702342,0.18795197602478284,0.7558690939424686,0.9382385143111343,0.25427835230237184,0.7471525960325316,0.4149615724316307,0.6189902377796339,0.5821344633232288,0.16018727094085675,0.6261744339975334,0.7526656856055041,0.715714466613457,0.06501436232275726,0.28239071039000974,0.4109577034916332,0.6360941667065352,0.043901575257272854,0.8264871081611829,0.7199272313706867,0.5752306037965956,0.02122937023708598,0.0006100858019954549,0.19045363260167109,0.7527320810952702,0.5985154687243023,0.07685280336310935,0.3997628307091537,0.08606273292397112,0.13893918432803032,0.42533000019820694,0.26985515180580083,0.6864504584853585,0.5194319278571882,0.750356191873591,0.7223553644458999,0.7099834650127596,0.42347864587485373,0.6532377042626956,0.33110137079676516,0.4339279162362482,0.0011782125830446214,0.181134706490205,0.3981912869457924],[0.36799140484902093,0.5862640940475274,0.5329979785457697,0.6287241857642132,0.000165604603646636,0.9466846041918755,0.0014565830800132985,0.0014962279841600956,0.40697507494627283,0.007207445069862404,0.012994634391497756,0.001506027475686009,0.24824841548753895,0.0005834941786703893,0.0018865020117540398,0.16911894657762272,0.7079894275677969,0.17834736260156786,0.2713808791452604,8.15433089308157e-7,0.7301622849142686,0.0000612956695996982,0.008376198397913098,0.4324675777133872,0.12110842186080668,0.0002800075990621673,0.422160780734602,0.6671873548507622,0.023249232046642806,0.4449361531273032,0.291044924052445,0.7374475024069502,0.000018798087625061228,0.2579030235444282,0.000010765853615080416,0.7594112465023448,0.000026515023573249553,0.0015127017134260446,1.9234146714233157e-7,0.5123995165121831,1.643154367362381e-7,0.00009186816717843613,0.6571089192868884,0.027503848509003174,0.36532452306711105,0.14323556042074537,0.00019341555913573096,0.0030963652127627976,0.000004142995847043972,0.000004797215629897361],[0.5905800900206188,0.49619698305738164,0.5723653798867807,0.23866792007608384,0.00017481111589868445,0.436286708302977,0.00023791115629532658,0.0035690599881496453,0.39299455775522,0.0008608521166421339,0.19151496492167852,0.0000011100043071225426,0.6010946953146054,0.00006408068968379466,0.0027447912121668283,0.15809752125475304,0.7582563523083453,0.5196919738457306,0.3495403728923702,2.0970465594445712e-7,0.8012747306212676,0.000002030647821478144,0.00004926939204180823,0.5930730497592012,0.29490449260621254,0.00002932944974090888,0.4703384127150256,0.5981362270068198,0.001035591211695474,0.5824867446318845,0.9008987759026122,0.46496887216363303,2.8611526767105058e-8,0.1621760869316045,0.0000018304229494830222,0.8711873809760283,3.714323627980302e-7,0.00007567566038457521,1.322933781246672e-8,0.6515576208774304,1.087259138469345e-8,0.00007270258588867354,0.3904083249069688,0.001042276451721883,0.6150330733309485,0.09552740345695085,5.516343679158462e-7,0.000011996422226363917,0.0000024456613735130497,5.987465398074073e-7],[0.2238424480395197,0.3104519756328603,0.8865283728163129,0.7973400720170077,0.0025985700059784345,0.7809073822219617,0.0005572562318611808,0.00545707872577453,0.3015270179053706,0.002218347350865535,0.08600501611569975,0.022143447188153954,0.5736788955149735,0.0011428224949638958,0.03870256353444701,0.015512766263261106,0.8409294499205148,0.3160268784946179,0.7750487956395942,0.0000013130329763202798,0.9080337685018476,0.00007752464227951452,0.000824244178556397,0.7959678717867775,0.2204587717249453,0.0027521675532750636,0.22065716655931458,0.6711248307983735,0.0008264792628360391,0.3335589238573314,0.08027991002061288,0.24889624327144713,4.0857288304136495e-7,0.1300016097522591,0.00008156273413469978,0.8329164088153862,0.000019409985494573943,0.0004041412275268064,3.006843501987879e-8,0.2554616302789474,0.00011835609940800561,0.00004308059917982149,0.3729712191500169,0.0029815625195696352,0.562013439377137,0.04895639464949403,0.00013244652832535648,0.0003131032357952822,0.000003176342573443005,0.000009871447853567138],[0.0229157163396198,0.5898650835813303,0.9077677445348021,0.9713210414928346,0.18229433299292935,0.0001851544637472856,0.20649422234120135,0.7260635457750804,0.1843354563352755,0.06908131653311779,0.3276248172950242,0.3545024313092853,0.005673196815791308,0.02808647793945029,0.0010933448917399787,2.585702788220603e-7,0.44924031501377387,0.0016327507317721644,0.3332864153506688,0.0000020144408482376305,0.8407427859958453,2.587361610553328e-8,0.9109538486062454,0.03042278545928066,0.004586193430167227,0.00001727052393915357,0.016072009520978783,0.8635805866620752,0.31798044763967187,0.4061775445163052,0.44907056128697287,0.1808709309451537,0.000045789011588461356,0.11403716720362932,0.00007225912545747618,0.19103424702941083,0.0058491140903853605,0.0000035008668138847035,0.07292775975776071,0.22424422843760128,0.0000038415581818443525,0.3046277126530397,0.0011116061352534335,0.21910710387629995,0.7907958150537042,0.000005900019753160162,0.00130666426623041,0.5981995696874548,0.000002447699136119608,0.31728917390302525],[0.007606032507433008,0.4497972786637802,0.8592401288396526,0.9859245069769571,0.2675914540190701,0.001793984811751047,0.2889248316498561,0.5178725022057759,0.1377603807436353,0.1421980540359497,0.20030363398421275,0.3108007566758882,0.018400132795449213,0.01722172933674169,0.012871860740711212,0.00000318568859568308,0.7125449975516032,0.0035866315090325065,0.32139828228301426,0.000006195704453654654,0.8524235029994691,0.0000013526238893370659,0.9594771106041206,0.12063816662709044,0.00042029363530994503,0.00005144461128484596,0.0005481756227664472,0.6076368048850529,0.35181330041977255,0.4940772051545567,0.40357171403036446,0.01964117939674659,0.000028812604768949093,0.06330933883300695,0.00009731956208775445,0.16132480190007048,0.012817425196236285,0.00006248127519801413,0.05189224787789682,0.20399374884982016,0.000023615218418209443,0.22092589969851642,0.00014588000834990522,0.32082142282495163,0.7671207982093267,0.00006749254981912272,0.00010787756756968031,0.6976469135175405,0.000004236688204933806,0.32818171506500116],[0.0009537778179565814,0.6104743585435385,0.978663802306081,0.9879427032893026,0.0010843641786633747,0.000032355146257082194,0.2729662571176051,0.4130983185973873,0.00005382323131027759,0.0000888623417151074,0.2693259968552446,0.003048171010041542,0.1433682790961351,0.0002559990553089687,0.05054329361217133,0.2403136756474404,0.8168801206537989,0.024096157087519294,0.00011279434902738846,0.00028679074144011274,0.8733249783228021,0.006498486644240492,0.8580149518075711,0.000001612958323887486,0.007794024511824505,0.00014765851474358733,0.2224303077436662,0.7280112552559855,0.00010700107022219363,0.3894852929250631,0.0017613600633933596,0.0014401438296323661,0.14025314089404423,0.04824740133731199,0.24020728148211054,0.5121324932753766,0.006674725425523315,0.2586453742843346,0.0006373953578679944,0.028138031211265055,0.37967343697520023,0.23057256907479345,0.1257164033825809,0.44578064381553617,0.692442244565485,0.004179377548222459,5.556413274600447e-9,0.7511900215584513,0.004300446035354605,0.00012235600711038073],[0.0005387045932288384,0.8113203394367412,0.9020848898233219,0.9682993452489492,0.0019825957857742826,0.0002941836844257464,0.19629281031334816,0.3774228200421636,0.00011436326711175261,0.00009059815757768014,0.3190563362623791,0.005801510170277873,0.2321109704305131,0.003014864890614567,0.015014240964629316,0.17808175891566047,0.7967498966593244,0.0552238067058952,0.004079135386199397,0.0005288780119008949,0.7700510324391696,0.07236381133281568,0.6949685641454213,0.00023690543651977067,0.0011156711354976907,0.0008269348715236464,0.29351190917992676,0.42985811103287336,0.004022525610807078,0.29486050544306824,0.19742357123495352,0.0038945617610651817,0.1646954073343478,0.004130705355880829,0.16865245459855516,0.6929632648295376,0.08093955809397604,0.11326966281809751,0.004241881136535112,0.0956597642850337,0.3445786824393029,0.2132869016016967,0.16384091675966153,0.3258213727952489,0.8125610165999104,0.07148425984651323,3.3994402299572216e-7,0.7833346126587626,0.006052907354520006,0.001485976503224465],[0.412528194410037,0.5022225943352887,0.89070694176881,0.5078432644599045,0.029192890955779177,0.4643605625211664,0.00035707943334753207,0.6162400355075304,0.2888443548094825,0.1675128624217669,0.015052032870452911,0.020996208899784808,0.6824344299796221,0.013930593239520625,0.13560045240165816,0.08358108613653985,0.013520709981580527,0.4640192973243705,0.7564541997999579,0.025436387716415744,0.7854172709962438,0.012363016172307964,0.011617552538654416,0.012577297038160972,0.010675004105865409,0.5338654757245137,0.003637178316779731,0.6837096134325331,0.03823060339149511,0.6053272045326411,0.3382528425935076,0.4117698425569565,0.0002583050006468672,0.023702228846701836,0.5031682165859174,0.034970164741962136,0.3098416185055101,0.5377114234618086,0.0007829394672307458,0.5534467237360018,0.12395195590413059,0.20158962912298775,0.36783618280926994,0.38877527061382,0.7790456361694876,0.034655711451809144,0.00029081477328261017,0.3794201371119395,0.255922182452728,0.15878180038000847],[0.39815817247968305,0.4082678724578862,0.9303392211402347,0.5725941184318484,0.011359449902682502,0.33391763053598045,0.000003069160716238978,0.48491723924388497,0.6057671428261258,0.4854882965000767,0.0044967019634996235,0.006627896391956918,0.7285835834577984,0.060342572194619505,0.062356206598682504,0.015585351447629398,0.000047208294857860715,0.5904746136256738,0.7487170958020137,0.013737681983940953,0.9396313572482297,0.006101570492131734,0.00005988387449024742,0.001178105269607101,0.005552340182218879,0.6284227057094425,0.0002722592528025331,0.6850151708670024,0.021127802958817735,0.7439575716792152,0.6444160967786252,0.5231779124949469,0.00007364414047349681,0.018976142692323117,0.4178465902110551,0.03068575410045642,0.39489994666884515,0.5492167417140684,0.00010268237300183298,0.4485884732342909,0.255891073246114,0.23768605426915865,0.45026676226098195,0.5550335769157122,0.7101111948210628,0.017999119789972363,0.000017892057987977898,0.2811035565572557,0.4657442854075372,0.17833456046417306],[0.5962355706396157,0.5548754863582397,0.5740163981701446,0.6010133499805115,0.03223569111851766,0.5757674772674868,0.007613121564738283,0.6578109797181123,0.8289174336355836,0.7665718358399282,0.07098360342634523,0.28751584264647895,0.6510457929150963,0.1787627708784254,0.3809756334138458,0.362932266380605,0.0010459022547124718,0.8477560807225152,0.34935152669306535,0.5962797510766625,0.26640502493393015,0.8211916705461396,0.008689718355019275,0.11860106596431612,0.6257390872421149,0.7934943968601784,0.005600244647263049,0.7594812829317611,0.11791889938105386,0.5777013653873218,0.6254240491572142,0.550561104447868,0.14973425646901842,0.4085254273723157,0.8519230665381288,0.009471415087891621,0.9400453368953355,0.7022941778727471,0.04689682527039057,0.720187907782507,0.8493820851759543,0.8841356252046991,0.7404822777840689,0.8038216204622108,0.5794710348100932,0.2383840675233746,0.08769415064209989,0.5731417749717646,0.9073890092513912,0.7312731914904197],[0.2793191464061238,0.7127675225466378,0.30029126620221314,0.5354356248335544,0.8049550663064527,0.40144602939675206,0.1356976773834786,0.6539931036204517,0.30304479593856193,0.43500113716410976,0.0606763781749736,0.531347231956268,0.36973187547314224,0.5909456519265609,0.16432659957612195,0.7019350920000451,0.5717870405018322,0.75864451296745,0.5144336150049448,0.5248541690213786,0.23724567785946063,0.0963254823066619,0.28128515902514023,0.6250419270222521,0.5156086477115158,0.839250667691327,0.7420968533433461,0.27942279138537723,0.3573386178834697,0.31133914043983435,0.2980692726281023,0.7029581827825397,0.6976745692593731,0.6904455850397,0.4086683559596767,0.007533471068089975,0.22053973430997265,0.5886857488781805,0.4281589174738136,0.648408534592021,0.6627371262040008,0.2733850183669386,0.09807452692686339,0.5373975293376183,0.0012276948090490574,0.4238522964393379,0.1314958965193727,0.6818789607296739,0.2019577435392093,0.43574855454424904],[0.8903805549410431,0.5805073026237325,0.43796854314939415,0.3054269747048804,0.7282003882088486,0.8732355789533224,0.0004985303946099021,0.6167310125450953,0.059780565725991976,0.23068522795670143,0.761586756142295,0.41523653302225244,0.4127648761609367,0.8250658675084886,0.008222403607461007,0.45189359296028164,0.6250203722234663,0.08319335074972269,0.05640549108500255,0.8869726764973496,0.00894175642764375,0.0002650972170670834,0.7536346513577493,0.9471520253760809,0.27816074261250984,0.6409686156621301,0.5583681685370356,0.4925874492199403,0.902327522542866,0.8648114763795485,0.0033601938970013617,0.7187247421015064,0.811452485549285,0.8029606909469778,0.9206266189850462,0.01661136286273926,0.8694669091543706,0.7347847452085696,0.6301438437891291,0.8675399985094997,0.7279417861472157,0.5020713153171483,0.09166753665970717,0.3013646256555334,0.0002114425380183906,0.5404115881155217,0.7275431662494776,0.7244744047040867,0.01681282207921745,0.5244620450736236],[0.09286433643937081,0.834993024635928,0.4855610907171821,0.42039842956370754,0.6475775514465248,0.5054783819642521,0.06754035032952324,0.3300995041587785,0.46741789686404644,0.5570431957538214,0.16679068777475006,0.1589350429952242,0.33960405299999746,0.8192006333413492,0.14096627011255483,0.6706738431579364,0.6441329844014055,0.3965510203067642,0.20630599166867544,0.5099515487314117,0.7155971888654001,0.02520608104550767,0.21629509394663543,0.8062736082967592,0.3881883179190743,0.6443198074264641,0.6798955224390563,0.3020527144349286,0.8562066679799009,0.7248525010390691,0.011135975820469131,0.2179196706024198,0.4897078782313583,0.7089108152825864,0.17754175395082988,0.015171751431730964,0.6768420482432902,0.7971293030579746,0.24450129404252124,0.05241797294668283,0.5000294335314729,0.5159194824331403,0.21647301693575266,0.1692734853774265,0.22548670181282435,0.3509335782352282,0.5361401287367665,0.4356558376242266,0.029836768972653884,0.5571121963966164],[0.1976450073596714,0.5734363020454715,0.670271422821192,0.011978731520692513,0.06581523486750489,0.23202240905094113,0.03357631830514628,0.05432255187993869,0.7525653949760767,0.000044458735689117604,0.007926487962796155,0.29001915661819083,0.16100407251546578,0.00860432293848816,0.34818586844688076,0.17992554216217163,0.3393390757880578,0.000060521756403443826,0.5083416506959113,9.361435985671421e-7,0.46058170027419026,0.3227996923823657,0.3061565138155501,0.0009439895786727248,0.000008458183061121472,0.12191278859888094,0.016851334540636514,0.001007353560394139,0.7212965348664188,0.6881711825950158,0.41885489739630183,0.09340909452553327,0.18949398615010282,0.3537918519065712,0.00009546699365020937,0.7764759950748148,0.007234327997554189,0.6988597175767276,0.0037401923788445337,0.9580579146026559,0.0000021188782727959887,0.13384642412659514,0.023371207730298427,0.5436262945527374,0.6410393894081884,0.4308499051105062,0.0002600854300047567,0.8123714405694509,3.0616535581042183e-7,0.1382810161715078],[0.06323397595857867,0.6110214237022156,0.22891087148825628,0.9154055160289158,0.001501358597048182,0.0875220328798527,0.005044622537021564,0.49003262275773163,0.0034416914311969898,0.6867802222098545,0.26488573161003326,2.4021916350084137e-7,0.23366870963885972,0.00011346935433651006,0.5508519100150228,0.572114041480054,0.0042878080706087885,0.28393002644653487,0.21507792024523426,1.282337158166809e-7,0.8325799496135944,0.00001068151370888745,0.5054666303488287,0.17196692261964916,0.0018444076397940783,0.00006193807640634562,0.04685496837327042,0.9793477849293335,0.4542727986910245,0.9391732054775983,0.566318015260823,0.4425775271407746,0.28985977277665165,0.566029169503879,0.000053356710268366314,0.4282455344220742,0.21220800008026636,1.0690057068491563e-7,0.3286067852177779,0.756056366422511,5.012033128798726e-7,0.0035321513218315764,0.25820447399570373,0.4136321897059025,0.06458332794157344,0.28691230337466367,3.3248686201910984e-8,0.13520322167816315,0.15499580442829713,4.882661193819467e-7],[0.0000012392042329864978,0.35510112986551173,0.9013742659463336,0.2333765745054487,0.000006904586394359767,0.8702350191715337,0.3789283233952781,0.29531599669779385,0.6191259706354924,0.000008842969667381845,0.000008815288866400768,0.0020080016926359696,0.28556308959769516,0.07887727562422275,0.47079537073776556,0.0332679281840643,0.7713497722315578,0.3822717430864325,0.826021440480058,0.3653802521082553,0.8896002985637396,2.0408391184950614e-7,0.5935374884258782,0.278865800979102,0.3086378356574418,0.002011305025662019,0.3352238220865224,0.00007990081669074215,0.2883242656413897,0.09244056405975486,0.2644412558305468,0.23906409421114033,1.8736210818842964e-10,0.6078378117714247,0.23680047842628227,0.7175288922596794,0.0016251879192308526,0.08703007678135237,0.0004880404572558068,0.08105484569068522,0.32499319501943397,0.16169929276084385,0.8630693327375916,0.00031218103410762636,0.4603971484382419,0.3154605919612,0.14099985756238778,0.00037669718724651316,0.2888597032123363,0.011011157227483576],[0.001851275686451344,0.7614528178956705,0.04591331564373799,0.07073693898294836,0.0001884014621050994,0.5875408683733524,0.8694595264553004,0.7396231771380234,0.7957969767874583,0.0016363683596089008,0.002155548444188928,0.07350769861527105,0.2603464153992991,0.7243209690995654,0.7592666816794971,0.8451997884637633,0.4521425894920229,0.7673622603048097,0.2582267299772364,0.9655638302833938,0.7104216330148898,0.005959515534917399,0.9107192981887152,0.205442252446188,0.668198123849162,0.17147484761891332,0.9340663614231047,0.002014899900839377,0.8462753789980365,0.27008426005787417,0.571850675957907,0.6441519454357117,0.0007885859255052451,0.6948609594553672,0.871873384289769,0.7820342371622215,0.27258389453701465,0.7695426472217531,0.5660838690184465,0.5051953189019629,0.8871485136672362,0.7922756963618541,0.823164646105392,0.48954370423921767,0.6704297310895123,0.5420686886532212,0.9017593245533503,0.04678917750845298,0.8485118147101673,0.6467562876400818],[0.00007182659794910507,0.8668198438736402,0.10679273053972717,0.1262358526068066,0.000012245599850858157,0.7216661340590266,0.9814833568200407,0.8459231951208737,0.6692247654199276,0.00029153605937499234,0.0008327045240663042,0.09862205843946596,0.5636465889991334,0.8681533768630729,0.7110275957767027,0.9008914625331951,0.49797850433019625,0.6540708878730591,0.7910652979340592,0.9928524998241927,0.5311936977970696,0.0007931630362623199,0.9194090876177652,0.21683710488223523,0.6887927419027927,0.10942561209237284,0.9556787806784148,0.002765340118058398,0.982820369571697,0.5563109034614192,0.6782250549692745,0.6344051747589289,0.00000384086316252323,0.9010385367104707,0.9770801807699661,0.2622837753434673,0.6089896394528758,0.2738730072243618,0.28729449877975266,0.8125521040143517,0.7948224843290249,0.793238440283468,0.5522166612847702,0.25513587099118396,0.4694707161858748,0.5665449780001566,0.9533932333248897,0.18273117519245208,0.8639604422904831,0.9592199797348097],[0.39888686577927646,0.0006214305722225684,0.09687805503640645,0.6363209751140263,0.2513732053368124,0.0006057313295785536,0.00007872573068643782,0.1841784520077723,0.4328319159299054,0.013857593126273125,0.022738415073774682,0.0010842749835846914,0.17632010491890213,0.00013121981097617827,0.7450521771806552,0.5642181224109537,0.4877816173314525,0.028734997101964335,0.0019868079482045766,0.0000018849310487624647,0.8299000740378644,0.0000534651969571045,0.39992232006108447,0.1871644688183994,0.00012800923544369067,0.001075880429797772,0.6450889912800529,0.8271881622963649,0.8016532938280856,0.7401437183586699,0.4882055360951324,0.001085510880680901,0.000058231753135352726,0.014538530606748718,0.3556450459969902,0.8269717446433748,0.5326132717893972,0.0011674325951399308,0.023181227510295842,0.8460648932878501,0.00046521834334197,0.38930105961953093,0.00011347943515034099,0.0002768326268992502,0.7638915484645049,0.0012799748722387603,0.0013392949713939622,0.75704324325527,0.01851921258180542,0.000012807964426499473],[0.33047595421262216,0.000442996401151522,0.8192319363496471,0.8285554987970616,0.5498013551183927,0.0002011838793238699,0.00001034796532813167,0.023691604942578194,0.2478681853486918,0.00023794711159819365,0.02271753665526291,0.0006421348095130331,0.5811786231842663,0.00001408659135398196,0.7219064994806995,0.36564086385991484,0.6861796609585524,0.12094038079870442,0.00020731652030286758,3.47973298494422e-7,0.6681422982345208,0.0000050753097952542755,0.6755892220257473,0.057291102722469366,0.000026662718282438055,0.0007750993528504985,0.42945650025492443,0.8670150777089525,0.7339077675049224,0.8152452068248482,0.4394343657088156,0.00014139106877384183,0.000016540103186611962,0.018523177252549924,0.04938580379754397,0.36331744656728665,0.4891934966368214,0.004971507240333892,0.009472358937275927,0.7279884814420917,0.00004128739529149904,0.41483328846130424,0.000011122028056491105,0.002851243489540559,0.714703372654711,0.0012896780579924056,0.0010644402769261832,0.6167169021974533,0.004486943199287603,0.000012741144522723037],[0.4560220978032371,0.604092745495458,0.23712485088031604,0.00025211877796812196,0.00002945919850256524,0.7149440476256805,0.00000393924771897612,5.152587963314045e-8,0.004375774916958421,0.7208077808388479,0.1071384334281157,0.0005491751427419441,8.670046214778504e-8,0.000030068202038949374,0.11644762159783646,0.007510005343097082,0.7990286784560175,0.14097445105281853,0.9239128979539067,0.00009236312123328162,0.8492038479754962,0.09163447482480318,0.03765466394561463,0.20605262815613581,2.5566675167882457e-7,0.3961301929428893,0.6072228033881262,0.9400777729167962,5.356881786227276e-8,0.5231545119788,0.035912730746430116,0.0003101443499405331,0.5533591622212682,0.4030127463413985,0.000001823430988521435,0.5313795541347723,0.1550628963521608,2.2835033918498154e-11,0.2416645512450333,0.000007000726241841534,1.5316418718009694e-9,0.5679953332062482,0.000003999210342911909,0.44726718965396806,0.7767364099723438,0.4172146271597737,0.006669803903114405,0.4408519667841775,0.000011024146212009786,0.5356466231162859],[0.30984800234091087,0.052110613192338735,0.7440731454750164,0.000030740230279673646,0.00008657264494667636,0.5207117846059861,0.000024972708784182832,3.5954025242740273e-11,0.00032556987796785835,0.2015220452966549,0.35318240169069653,0.004659016099229545,0.000010479329496914014,7.366904702060053e-7,0.06294922302185497,0.0014915126584903442,0.9800061676345525,0.010891582209894978,0.9789149076781907,0.00007122997665820595,0.6993786154487794,0.1617204077740061,0.2772289962980663,0.008147044541900633,6.544515529141857e-8,0.9843526116014214,0.40645624798738994,0.9845779309377742,3.730503889197513e-8,0.281424310448537,0.00416889041384957,6.474759783215046e-7,0.35667014558273713,0.1256951302141043,2.1692472562744717e-8,0.9682770463659799,0.07090821024578665,5.693783507449721e-12,0.4936202743027694,0.0000010186825404241287,7.17086512249456e-8,0.33329276432990323,1.1599600059945545e-8,0.38904777448996697,0.22023486990953925,0.2517926126647979,0.00642394029383205,0.5850507282712109,2.691428725051508e-8,0.6522940761700534],[0.00017986322461312483,0.9256286736859907,0.834717832381707,0.00008990168764560291,0.0000875549947327287,0.2686447433761583,0.0000019795716816023113,0.311284445126478,0.0007687861563922247,0.49292949538069597,0.000999540620449593,0.18741604926871547,2.1853193886133666e-7,0.17219728891276434,0.0010234105769112932,0.018277708731761523,0.7928703232971102,0.000053607044081457875,0.8404115836000473,0.00009281924475853783,0.914479912291056,0.42083036179174066,0.0008723271719891385,0.0007874811057537655,0.007384699921023225,0.4554045735882773,0.6759239609406062,0.9052320104350151,0.17291504978006333,0.014498852420879968,0.7644074635203245,0.6455597477681041,0.6958293638828654,0.01203132325255828,0.0012346912939451323,0.6728648596624947,0.28316576700234997,3.8028240349864165e-11,0.0024602640886162036,0.000023472726148530206,0.000006319508496586137,0.18561674698322064,0.7235408996518236,0.34772255270114466,0.8573557847435084,0.0017070194770736234,0.00012567447210846578,0.03975877237328336,0.4847184071368814,0.5162156067485847],[0.0001337367372911825,0.706998116718999,0.8283666862055237,0.0009699049317760956,0.16520449134201662,0.036825762141497506,0.00542517751681916,0.853505672736984,0.0006152600359827213,0.20886761654359906,0.005771360149561685,0.47344825738214846,0.000016546267375048165,0.19104438281701536,0.0005116582037406665,0.05705677242500099,0.7971736169453091,0.00011650218298325316,0.9625766968320201,0.0017288636296126046,0.8072496687827796,0.4554149601685017,0.10759618039040054,0.000027839449148377828,0.2374019809972972,0.9634738666550038,0.2737738039421321,0.8103583141861128,0.8638224538411319,0.00030671626540655574,0.5258565521644109,0.3995230436130852,0.8009286702305958,0.006272352181920218,0.5565236297053374,0.9869909560601473,0.8097639372554415,1.1484801247234934e-9,0.07711601321837885,0.0005915566978560683,0.02410377945372763,0.4284671776876431,0.4112825955255711,0.6236226480840579,0.5421142083368214,0.000578521931036069,0.000017151015241392213,0.17322356311378392,0.5738376578852913,0.9816462067420548],[0.0000036203074453843968,0.4739747316734287,0.9452600584764156,0.0006286399653114234,0.000499096439893249,0.258877598795683,0.00002957632029674675,0.1842002231616103,0.0004896326031550884,0.014894377776845082,0.005194137712094248,0.49948472744974687,0.0004602322237144315,0.12137222138554801,0.005644478063440009,0.005519200006860614,0.9396583480171689,4.963108247269746e-7,0.9459329369665197,0.00005465458823482925,0.9026999540340253,0.5020545253968672,0.008422810269502798,0.000002216266582255115,0.017956139497973568,0.9874977570517328,0.5131089383802482,0.9424326369025988,0.279388156402323,0.011372766128413472,0.23604764648763482,0.10037133553354652,0.2699497802090591,0.001154135659158832,0.0010039255697912074,0.9783811933644497,0.25906356158948574,2.5286778278698563e-10,0.0031751208097478985,0.00011708734873425756,0.014422477496412348,0.20382732544899101,0.3754105553425893,0.3233405467525149,0.27348407615384335,0.0006507182391143858,0.0004945053920839184,0.0521355193277171,0.2962887572515745,0.8116821155677142],[0.013030693889851482,0.0019980676325715573,0.4894267713249578,0.7832266437752612,0.00004138882244321669,0.2956012590355115,0.032111394397125216,0.000002394828802328244,0.14982823865074063,0.9887547322537762,0.000021951058477448128,0.7717815141004725,0.6588608426945614,0.6237980144697101,0.8763179078376552,0.7114594399890234,0.7444536080080413,0.000026862315439655453,0.961209206701089,0.000004002046307877449,0.48063037191789926,0.13969215436592905,0.8309048888080319,0.9631498552022795,2.098903587541087e-8,0.15164855609864325,0.2915477691514551,0.713637332515708,0.0000039706357069839,0.00004245637713780028,0.9364752879028467,0.00009196106550890267,0.8144064287031166,0.9601519387373442,0.9931529974621065,0.5002548920152733,0.7466498466821565,0.03610910340949538,0.0021555234279752437,0.8832739415106315,0.20055211237188617,0.07770722685255128,0.2596577866066101,4.7043153943847806e-8,0.9303528698801029,0.040425187137844334,0.9573794698072656,0.7604098805044484,0.8275233806351658,0.6041856675135898],[0.000025606783580102895,0.0008001401896359535,0.870217287491823,0.03289133683205175,1.8061079784620854e-8,0.007554127080230776,0.0052568727817798745,4.7910510439717545e-11,0.0035516290151252866,0.39298094483467805,0.00001196104633798042,0.4552166700137155,0.35348140150670593,0.11717771228396753,0.23927016483908822,0.5222174039803933,0.9691261385325417,7.415896199565943e-9,0.9707298615144271,1.725389767508931e-9,0.6129730677659337,0.5442859737343074,0.7369235879244473,0.21935671674406917,1.3862835733377138e-11,0.9838099031747777,0.6566138149717341,0.9142468574952929,1.3731371626825959e-8,1.3567637632181068e-7,0.4445420839781594,1.5241090615471687e-7,0.7565674929601545,0.43410993278011045,0.21567821276484342,0.9928519097230275,0.4626977381442874,1.171713623252899e-9,0.000021915356319952462,0.17627632200233603,0.00034365103930628457,0.0011454957761766677,0.009451803771852575,3.758104486074889e-9,0.19162333801759587,0.005013904804132054,0.3500202418321705,0.6187357502859491,0.005951797336442092,0.4794679843659342],[0.000055546041856082185,0.0013554896772396783,0.7808415174032695,0.08387806403033646,2.9321029659974854e-7,0.013689012618427077,0.005418039722519993,5.2418867840153155e-9,0.0037247663649725544,0.32914971942303056,0.000042383240337731085,0.20889809280623806,0.3276659908930199,0.07530053880475014,0.3038454023933902,0.37760215192029156,0.9561087192943831,1.5055096849509486e-7,0.9347231592121118,2.9085571668647374e-8,0.4887419099211676,0.5519809612501991,0.6805494550877359,0.1782245132792299,6.067072462628193e-10,0.985922869581031,0.46364532331095987,0.9432863846168914,6.521062442610826e-7,0.0000035465830329860543,0.29152017724470497,9.599408379070028e-7,0.6568426123204781,0.23007037105223158,0.06278787510987341,0.9552054149708477,0.4085150358227286,3.3828961360301387e-9,0.000035961294996237605,0.2078368020696398,0.003415774172968899,0.001672920238224899,0.014838235195585357,2.1254881889398692e-8,0.23531856358220504,0.005701106296115256,0.4637221756646408,0.7584792855747172,0.02078271550289269,0.37561361649921676],[0.001668984312433924,0.16445124625184177,0.5893835817474328,0.13690890568632044,0.0000019892479286379587,0.20326050796801545,0.0008247071656059853,5.089083060948262e-7,0.09072037072846302,0.8166051452738198,0.000014852336253475892,0.08863726086312605,0.005434114670310331,0.31180615622589125,0.30842038013416445,0.4282548450921134,0.6453565387040751,0.00006307109504634398,0.7268335908316075,8.490970516285025e-7,0.38731523181706873,0.17792826094228828,0.3023531093800465,0.5024763286897117,8.446216986802004e-9,0.09665941341567,0.7763651130772934,0.9440069628326342,0.000001505144389350297,0.0001786845030099003,0.625315026733121,0.001336204035109344,0.7899117390062673,0.786803437265567,0.22942631251934886,0.6665049122534483,0.4651930911290854,1.91286157933576e-8,0.0000671068087184461,0.17193164542123243,0.000009228677084606336,0.018998164984036538,0.2130804585095362,1.9214984267755046e-7,0.6121111553449781,0.042094201498901605,0.10180364465276183,0.5357293219065027,0.1668725228078184,0.14123689988295182],[0.000001310134228197145,0.16183910664819903,0.8822646344774638,0.000283136817153593,0.19101659183895284,0.0026077047735552305,0.11685265892990894,0.000004059284386245952,0.009563427651887871,0.00013073081930831015,0.14300305249293088,0.5716345861582226,0.06975393584538225,0.3303411900131439,0.426671241711909,0.060437765167503585,0.9068070430894055,0.19470948728702286,0.9275506833810363,0.00105845981722959,0.9326404075803658,0.1944646182761748,0.3232240078416122,0.0001812152767671689,0.25865175840875676,0.856849432791047,0.41787890734765765,0.9870018554749529,0.14294220742580313,0.052060657236389064,0.000007293496002355825,0.0047982212108974775,0.43659205663001327,0.000016851058209710342,3.682750309606736e-9,0.9735590099943167,0.000041869534104290324,0.0000016292111457464265,0.022236925741987948,0.24550715744111876,0.0017025773672089694,0.26039374069546,0.011742849355886108,0.3574286685132286,0.000015344941377473343,0.0008025535575435251,0.5169824143848306,0.5136399609707376,0.000007147154628714713,0.1124804900929595],[0.01708462980443495,0.7026575892224816,0.14409096621177842,0.13253600713006228,0.7762071627152954,0.02866724500353545,0.5718615955780006,0.049100287770415633,0.20453225077217527,0.1431881953713138,0.013654310167273828,0.6344453280976768,0.34716388259695413,0.7094516125375965,0.4159090729082171,0.10778736188318223,0.2773656829312077,0.5607771985713738,0.15387466090503454,0.413445973976351,0.48416704117892395,0.7118662898556671,0.6131372612410056,0.05740322298292786,0.7892420169979419,0.41175716469331153,0.5162452852856124,0.5207815875231919,0.6032840846193596,0.08287827871043739,0.013033337307525705,0.5187005026780717,0.48034534527876355,0.304990007908167,0.11428775172928533,0.8069595259044073,0.04800711590770311,0.6544476876646209,0.06335595032184065,0.6088172491013386,0.07723657925503151,0.545954843139245,0.23566597540098386,0.3501087608396476,0.3203300620557766,0.048928320279165105,0.7141631203823843,0.745241752842434,0.32313734083872536,0.39491012611944626],[0.2134504288618793,0.3159673662315956,0.6758705221743744,0.0007888386454130206,0.386969307036627,0.000048303454341837266,0.13240015800286814,0.0001900761410293801,0.08474917751926385,1.2164901433037152e-10,0.10757930336503022,8.36521024372318e-7,0.39961846079900065,0.01592048403420586,0.14544767898160055,0.10695723698269488,0.9298080529263548,0.5568521844740464,0.7516175913615624,0.5534763271978472,0.8636882821272996,0.6707926415638853,0.03714844463675337,0.5930248971304283,0.00006333650198421872,0.6787692748435694,0.000005268876408931426,0.6974998614807753,8.474220977079029e-8,5.2179170795773326e-9,0.16062941265258512,0.0504451644162644,0.000005445939906967212,4.792571328296446e-7,0.23583905198131622,0.9062140493651635,0.0018883062455158676,3.682535439068454e-9,0.0032361714478284656,0.18261480947392275,0.0000023727133081651326,0.16564060751442788,0.6337826804439977,0.5260039987622492,0.9458738477925934,0.6171230817048028,0.05828738985560834,0.01222179886884558,0.012008480296519863,0.9464051893743916],[0.06306302237609844,0.17599083638891388,0.6083917895366853,0.002524929544253488,0.20779760630690253,0.0000241388505078494,0.16496028802619475,0.0011585755499615449,0.270824700643922,8.506068279408448e-11,0.19321199248178134,1.4907896241953976e-7,0.19433726795429584,0.06903723180831127,0.2610707414730774,0.14192525988010013,0.9773168405627307,0.6781888134825135,0.8099271531455219,0.6088447655468505,0.5166151652287398,0.7847976365779632,0.1950299253449356,0.5428092849048247,0.00004618660505266229,0.4625089607998336,0.000007482744036483982,0.7329358789369156,2.3272988235534622e-7,9.239040364165062e-9,0.16526181874528928,0.09672947096371612,0.0000012118182526032784,1.112284244531678e-8,0.22994607645771123,0.9584042347834745,0.010549096869297806,2.4441804748550053e-8,0.002105896616425002,0.27768862146262346,5.21673801577559e-7,0.24909795424427902,0.5054815620310731,0.6455912910211302,0.9104267195859944,0.4636109599128704,0.001122636515148788,0.056752945794013465,0.0309434834498301,0.8501021327663334],[1.9897976572049742e-8,0.7026603511060523,0.996273564584151,0.5697592579211991,0.000015712180649321895,0.5577576684643275,3.478213225194875e-7,0.0004084082530712983,1.5942036125613812e-7,2.2628232314912246e-15,0.5182662176336661,0.242967517108003,0.012137411082739056,0.3585685414989803,0.00014754319705935108,7.487832520381898e-10,0.9766081817752283,0.5206501943739814,0.9277978033046055,0.00009934960428705002,0.9663095094825811,0.33736532481469744,0.661212661983044,0.7475578359187283,0.0009773011934378875,0.004752991334369585,1.4749399407397197e-9,0.9066238826165083,3.1437827394387775e-14,3.3430658132385885e-13,0.0000041432335235140755,9.250079692467706e-8,1.1005754610953816e-8,3.107026371854922e-11,1.952900529659773e-7,0.8188442664651364,1.5777967281074622e-7,6.507135898141765e-12,2.4137836889890326e-10,2.173799751229399e-8,0.03506769851963984,1.8917272314250323e-8,0.5241487353924619,0.3073045586454241,0.9271435684618234,0.23361609227127286,0.3200966058419694,0.3221643440692897,8.019557534516607e-7,0.01946013222231616],[0.000007005945663903297,0.6553109861269504,0.9557506669154988,0.49839494629789394,0.00006147208287333528,0.21708344888384298,0.0005125267438786004,0.0003438035028349224,0.000021851390455736548,2.6346773459363477e-10,0.9502150191859778,0.30311032861253373,0.030406311755170796,0.3916097335449635,0.003584969812010664,0.0000029589885931496343,0.9617503123706399,0.04868323092646861,0.9589083866405074,0.003153659902866217,0.7243868451131972,0.8314371646268807,0.9335419961320053,0.27513811503373864,0.0016785236880485419,0.6490936970153935,0.0000031079205167800134,0.8422153523147135,1.0943837240978131e-10,1.5397476937444078e-8,0.00020682753387821267,0.0000041248286484187905,0.0033046122992739396,4.120199226641956e-8,0.0000033453493846457516,0.4366147753277873,0.0008947756260968939,7.22538903052913e-11,0.000017684373825119716,0.0000015027772850750644,0.30852062313520623,0.0013113064622202548,0.19089344529161634,0.21053699404858692,0.5399145472616119,0.24148600435745027,0.9385221349528882,0.8611748791438073,0.00008157713628660657,0.9339690097397855],[0.00011325158135189696,0.8164150210886815,0.7228688215921397,0.4890744230576462,0.0021064978374669484,0.4457602751478837,0.005781162486076253,0.022723525151312728,0.00008490979879724578,3.1924137783104595e-7,0.9442306856806367,0.964478317921242,0.038569879781090305,0.9198677557705495,0.010236464102082786,0.000008749489726009879,0.9582726021956076,0.09897026047297232,0.7348004653314668,0.012726409546764142,0.6052806064445767,0.9770273943470447,0.6318708123298485,0.338123897001461,0.013212755701016788,0.7145494371100338,0.00007564069079789312,0.7523263560113691,6.859786498677523e-9,0.0000022149986622949487,0.0013151374607639093,0.000023355999820860255,0.15365512171977916,0.0000018689268783683769,0.0004250495819551572,0.47686214022605755,0.002815705327853364,1.0323293117624184e-7,0.0001932738740620393,0.0001760526543334546,0.8133711627630513,0.0002059144578406284,0.4418840201944598,0.34910388758483446,0.6113285044387209,0.4540355542262816,0.9730889405984048,0.9562375816632298,0.0006228167314060269,0.7172909284546738],[0.00424754176369272,0.7024860788182316,0.5987513531762358,0.5483470679344118,0.0015708989429664639,0.191842002397072,0.00016191120449701615,0.00010249576882168123,0.000015530916145349584,9.192530911608955e-12,0.6366249184533859,0.14582668309375563,0.07078970593779181,0.49725483226590605,0.0009601564990169951,0.000001688031929714603,0.963564679625008,0.057793186895091914,0.1686858873313386,0.9834676913538953,0.4346631485745797,0.7834953174210996,0.5178932846045914,0.6040521020782296,0.0005247868596392469,0.09487183485006483,1.0858990989232127e-7,0.40093862977037154,2.24651045091525e-11,9.093527369751088e-11,0.20307600769063588,0.0000074431765003943015,0.000008926971894562087,1.1798151144472322e-9,0.000011078866959428775,0.9781327196405406,0.00013015670460522346,1.603052612413641e-10,0.00000963572270635599,0.00020448835204285164,0.002799646406319863,0.13287956822201824,0.8719473659858397,0.9739233682302265,0.9276334303535358,0.6666670081028223,0.4250975127715841,0.6530569594415226,0.003643747276451186,0.997312260147332],[0.6522963752730618,0.7964328467494456,0.33907003165321287,0.00033302676422115976,0.5611741231185299,0.16576827123355767,0.000008971770825382764,0.6709915641717245,0.0005960613086003305,6.637395946717617e-8,0.3096853534100191,0.002233495548141607,0.9124595689821187,0.003609601160718303,0.0008850631153926465,0.5159321233190225,0.8248001562817772,0.8882738635694524,0.6197909547875909,0.8765624925042587,0.3009860741460849,0.0069992422332947335,0.06669279844514019,0.004237923073117636,0.3186953123789905,0.011340540634445086,0.00003065243467029247,0.3614107079038437,0.04826571117671612,0.009859662099736185,0.7301143288061231,0.009031045422478984,0.00983882784475365,0.00011071927721028842,0.05345703964968843,0.8471777444798492,0.00003218298745965559,1.6432829091246628e-7,0.2797663598072953,0.6552715640789976,0.004659365659229521,0.3033658055555586,0.18323664342245644,0.6247829267043107,0.5493786835766041,0.0009693289349312962,0.4511722989623426,0.4792502331295161,0.32584323853267205,0.6440785808503338],[0.9327662011372209,0.7665008740474754,0.004252277506654163,0.00009076487608214173,0.7867513573041331,0.6124935717705073,8.937920363809931e-7,0.6148041656802383,0.0009535757825736246,0.0013293185584495673,0.5698181224696296,0.062140671886957086,0.8808958547169777,0.00015767780457118032,0.0007297575427265317,0.9831470177601828,0.7732538994279263,0.37689639380364276,0.5489234262784922,0.7982159802253932,0.1183543809097978,0.0005890053313484299,0.0013593481728603981,0.000012496304877930927,0.3681040343532325,0.003113993567339456,0.004640410145978156,0.1557086227564191,0.9443544277074144,0.8876606620919236,0.9546346327935693,0.10676700681394757,0.38694539627614655,0.023611372489198798,0.656186110029958,0.9294473379386254,0.000022308166128404043,0.000006376876962181342,0.6126700473841018,0.9957015433007679,0.11779845074737837,0.7430861438668147,0.08739598032583867,0.7378092582327967,0.7585744300169229,0.0005129069311394521,0.22478168457276831,0.3826561116388167,0.7934767932380897,0.12916771479476968],[0.694796922522683,0.5471828188570061,0.02794592913639055,0.00014219741792080958,0.4942253623821042,0.5227811357535599,1.2597029256684163e-7,0.2664186849814035,0.0004846146025824319,7.847368580547963e-8,0.8547306154039864,0.0051477651302145695,0.8800574749806521,0.0010167231258299584,0.00004718554219607331,0.9486163104939379,0.8162886633735281,0.8458673543560057,0.7092363545677737,0.8518772448447391,0.3792529843592292,0.0011429031013930875,0.014050697044888205,0.00023557143482096313,0.33800098318835514,0.0005503717400966412,0.000017735433981828483,0.38492105702427837,0.22665061327402977,0.02655238098485775,0.18851927974544014,0.027636388294076858,0.08757180638536363,0.000030518984385846736,0.07063411834104581,0.9723868334193905,0.000004067316012549148,4.06324153050733e-8,0.2821374563730281,0.9646843977185939,0.033603095643577434,0.6531087882327187,0.1314900647328144,0.9434890447743096,0.934422079540222,0.0004728221956882532,0.8591948792419487,0.37548394775624694,0.4121695060693682,0.3165052234454285],[0.6778997887303438,0.12374409113184802,0.0022482084527611725,0.8449834385528693,0.0015493508066697409,0.028632378715953487,0.6884877369035078,0.3356608686133756,0.4985592779510362,0.7418610252393697,0.08649975629164744,0.599982596416419,0.6223028015882655,0.6469866371346231,0.727206838812245,0.7516784003887738,0.5012089171495763,0.012507925002812196,0.0015024003589056013,0.6708461638420313,0.33032861172590716,0.009674432367861766,0.00013491680356119098,0.3230261980339109,0.1482386185311226,0.5914194084082041,0.5995125197006421,0.7724382137458529,0.00024539467839621964,0.7017479615469219,0.8871102103716492,0.47949224930172335,0.3602676511307025,0.24673566696616842,0.0028558789202386653,0.5968230662337544,0.7442091110884843,0.4971810536347957,0.002979968315716627,0.7888847526108169,0.0006713194968075486,0.12489369079269315,0.015509979733591228,0.507448707489954,0.42198902154796253,0.6674696677054962,0.6941622095555274,0.6499095219786949,0.3090864310548719,0.5722353548903376],[0.9364765835768736,0.04607011300022428,2.2107123373198248e-7,0.6359714430277285,1.2576516693623282e-8,0.09277936405572401,0.5085487678466408,2.832605388410154e-7,0.3763151879756425,0.39780396644685134,0.23002551916640554,0.07019855336487922,0.7968209721570655,0.13761274892490696,0.0019616304397386615,0.9306708436673053,0.670566718858139,0.0000246650220216869,0.0000011949059549514113,0.2237056276593603,0.8730951423807258,0.00025999318292902103,6.287597933981039e-8,0.004018014941742284,0.0000038457461956271655,0.4586841362054021,0.48883669781291994,0.5613924384012167,0.0000026150386398218465,0.18651044906700676,0.8325252328184753,0.4607232508059317,0.019194332500968476,0.0005554047557092791,8.876185225315465e-8,0.8811320634217468,0.017170528611830365,0.02800164368277134,0.00004675775502976769,0.9556398406776832,2.4269003255806102e-11,0.24588737566896768,0.7392146415740939,0.751313510232248,0.4664128108468029,0.8138917121749429,0.5336244865659698,0.4309435226250446,0.003382288840438352,0.006315673900318532],[0.5425870052571499,0.034351036219266384,0.0002153714387308461,0.387962902900089,0.0020966118713187883,0.6095431787520843,0.00016261105802067405,4.983389499813405e-10,0.283850988736242,0.002375173506295441,0.0000044751590279803895,0.0000025738700468612165,0.6768775012344518,4.357445898370733e-7,0.000004209876249629292,0.4724144950760874,0.2136367720852815,4.915332550556856e-10,0.33536177465839995,1.0260587457998906e-8,0.9469578588330623,0.0000030335180886383636,0.5418393619888477,0.000005582275439625327,2.119838145960212e-9,0.834102977537376,0.000009909609464111212,0.39061302631068995,0.022270586078067558,0.8246181690744401,0.08911616354289804,0.04233271029221661,1.278001476101866e-9,0.1333818723725668,0.10924546335361161,0.9114369028663893,0.0000037512013898372925,0.7875349911374631,0.055707665711125474,0.8558654555972903,0.000005207113104920305,0.2741682215644252,0.535773156500468,0.3322529960895653,0.7933135691716077,0.000010177251266468233,0.02284444345394698,0.5791476620297966,0.0027381255728792363,3.7925028547221757e-7],[0.5881701728372417,0.05488988147111533,0.019513576988482658,0.40752120626658733,0.6619484240190818,0.8668907679158889,0.000004190845553694238,0.0028098861612232125,0.5202778439300139,0.4528697363572447,0.00003801319342791348,0.011107235364233626,0.20707437148220492,0.000011537853737743464,0.12555671569473364,0.0025396986136725142,0.5986338307428983,0.00004565882389198715,0.8441288928814317,0.003361574466939023,0.7093413284820258,0.4895384639164516,0.8955229249587825,0.1299631462023677,0.0000022832685770156037,0.7588350377522016,0.00013352870263570372,0.5258136659049601,0.00002265876893112961,0.8602858266307976,0.4953253805840533,0.49076585298533393,0.00001541140745962053,0.8983513908511388,0.025012719007854702,0.396434265973788,0.0002222683263294425,0.2817224133651424,0.6937206471882912,0.0842500884749198,0.4170175789572935,0.6407789869571756,0.024898149353010365,0.006702948687545686,0.7506925730860009,0.00008726838273739125,0.8806541496236481,0.1604747928937516,0.5036791020019128,0.0002475928312818462],[0.0000764281984421495,0.00023805661039667865,0.9720485081870692,0.6544991929259004,0.2880596243322193,0.8369867857275057,3.835655189506129e-8,0.09043468638818566,0.011703714402786551,0.00011493407176001126,0.00012444582263110944,0.3231985404331687,0.43951081376977497,0.0000018686937702375947,0.36583318552044136,0.000006624384580886445,0.8949914602341253,0.000021856508214478048,0.8686018966976113,0.001767331562228626,0.8356102651773698,0.3042628239956875,0.30726094199756365,0.706024077464387,0.0000010467463172112389,0.03069953789059351,0.008292621995412617,0.5532242070042139,9.49220901812933e-9,0.2092285663740357,0.4256618816038702,0.4317363766393656,2.6213558493490494e-9,0.42009509939082595,0.000002373019439140867,0.9134083141544155,0.0000018504205642137627,0.10909119416243095,0.0000013062809417103387,0.05018186811578884,0.35095331753809506,0.0032542118016457965,0.44640651031194223,0.0018715915328354176,0.6641133069888162,0.000005254925273131069,0.297930973143643,0.0000040686873888960136,0.0000023218907176233373,0.000008156836374723879],[0.006701949674845551,0.9186568938139651,0.7997658952961866,0.9448016243921966,0.0000020806886557316174,0.8247553072198903,0.1432029858894063,0.00022802122745939392,0.0651286073663217,0.4902661062908478,0.7395928545447014,0.05573240341830314,0.7987483090619819,0.00015301392016510583,0.00011368266648110404,0.002692555947763129,0.963901630199322,0.00012868708250520582,0.8493493259896617,0.19010515857936658,0.8897557091739385,0.8368293907030501,0.839569830675489,0.37525872622885,0.017044991818577236,0.33544663285628185,0.07107846998999376,0.053895388472429466,0.047944983613374216,0.3135006745198595,0.05956198134918595,0.08958343839133179,0.4748892588462796,0.18250473365638226,0.0001457133141689091,0.000002846348586728755,0.05309633029673604,0.03909146672776241,0.000016793839978862985,0.34577379053284585,0.9768786305023839,0.22851712051648723,0.018560471953424428,0.1706892123750268,0.09932881550832906,0.023273227516348145,0.973484342950888,0.8531314522935307,0.05288154853454943,0.013051613962690771],[0.028293649413813484,0.9766452589819244,0.6159626714901849,0.988279337438816,0.000021439170145365654,0.9075266822041839,0.7685251821884144,0.006982374346978421,0.2013987836268242,0.5728981288443639,0.6778082096953787,0.009404705689958631,0.27576793328697796,0.0009094557609568337,0.000002270240790269134,0.0003380063849303972,0.8047964752761646,0.0011752193759472416,0.8645616652098211,0.8377779337519409,0.7547708267872758,0.9262229118602338,0.9658579038663866,0.7854760980000439,0.48466690737260815,0.048433890980842956,0.03284372955000157,0.00006919683065233985,0.8234018319234669,0.28097263269504436,0.10498579383502063,0.23734173446592668,0.9012007662568323,0.6042149536484029,0.42286420086377563,5.653377351340456e-8,0.25790947082569526,0.7243840925715298,0.00006826864925057434,0.8207059550494331,0.9888604082093663,0.5822328289051047,0.16175364802514589,0.8911984682776994,0.36810558426077067,0.06930183103908613,0.9512884532461882,0.917919961883446,0.5239230183863383,0.0697893742057518]],[[1.4806736666309564e-8,2.1920676646339625e-7,1.0927345151902935e-10,7.3387224007709146e-9,6.556109699169158e-9,3.53844646728987e-10,2.3946980982702613e-9,8.050353015443053e-10,6.384492233835215e-8,5.9029067877478165e-9,3.030745028057903e-8,0.000001084169801173809,2.6631502014805735e-8,0.0000011499919412513804,0.0000021777082120370866,1.4947498346317422e-8,3.031353712496216e-7,4.4148531538911306e-8,7.661864837309677e-8,3.186058394593218e-7,2.6670727950470205e-7,0.00007501837535621489,0.000012704995005092217,0.0000911958867212499,1.2297936164448186e-8,0.0000014876018638709966,3.5783440777004434e-7,5.803319461132343e-8,2.2733542892052818e-7,4.765186139266052e-8,0.000004534396255007677,3.551237182110398e-8,3.503558183991438e-7,0.000004241537808763817,1.3141003313884196e-7,0.0000010273375545775496,6.282302698534297e-7,8.180523542875935e-8],[0.0000032650109276936527,0.0000022195204619229183,0.0000035295008432918507,0.000011010712644876658,0.000034932019462698255,8.707555979398895e-7,0.00001563651750652609,0.000017140175659335255,0.000005208253860899185,0.000013189250639162027,0.00002689707833987111,0.00014690923827026758,0.00011083499724945626,0.0001384275603932727,0.00004713573009156035,0.000047927950696052905,0.0000044715148967121016,0.0000019795155187237223,0.000041510850135625797,0.00007806357643827374,0.00009231167830336234,0.000005156178866315207,0.000013997324396914653,0.000018348121747194165,0.8937471970855754,0.00001652681329412844,0.00014248671104175045,0.00007221615533230518,0.000005920342344122811,4.252313434627787e-7,0.000014712770525243725,0.00004617626344580415,0.00005690765019382543,0.000004854528831208139,0.00035402228765915865,0.000005987144120906209,0.0000018904898190668192,0.00021096283048070922],[0.000002707894641035531,0.000002775970570826577,8.852594028140053e-7,0.000019815818295526275,0.00006330210327180079,8.249535408211538e-7,0.000011145793960970849,0.000002855105459180547,0.000008643750840418899,0.000017322250636535504,0.000011203727537530035,0.00035132481952234655,0.00002795937438470843,0.00013771146865002487,0.00002770063825000937,0.000021865202898378842,0.000004946895216129385,3.593832679650746e-7,0.00003233240037041232,0.00008747600173223999,0.000058114209243718936,0.00004228227467487318,0.00006438715473394712,0.000012754269015707089,0.8939784571124176,0.000004730964344265276,0.00008855847996669736,0.000005494604035300536,0.0000015658267518225008,1.3913207411198885e-7,0.000004080485370439887,0.0000063699573374937335,0.00007807227212834722,0.0000022550358042309303,0.00029413433327656074,3.2600358452057127e-7,0.000021547687214781594,0.000060697506862380035],[0.000015095259081571423,0.000016425547480409497,0.000004118607639817538,0.00007972658789213995,0.00002202910465760504,0.0000025768912981315627,0.00002373443795747457,0.00009586639726312221,0.000006611723423208136,0.00010572505528240191,0.000020253817267842384,0.00014961017129086108,0.00002779981731922843,0.00002769418737104769,0.00005444762523528779,0.00015325761255841695,0.000008608744952217798,0.00001614281523591428,0.0000718001162450306,0.00009603588056955702,0.00009871868993941934,0.000002872406219799621,0.00004126006925952949,4.962949983555166e-7,0.8754750018823089,0.00001595428391228447,0.00007430298220174452,0.000749838273618624,0.000005150625290619199,0.00006800512496129787,0.0000036010031015311253,0.00006871552944626201,0.00007301760984678277,0.00005678365354066039,0.00003597400142551853,0.00003441214207090632,0.000007932403938369769,0.0008049636410580341],[2.0750951342035182e-7,4.008805066461589e-7,3.991906963998876e-9,1.4347950860032553e-8,2.9765035202397696e-8,5.506080974816164e-9,1.5489047342614768e-7,2.295803990458731e-8,9.646050622476244e-7,2.595131548406448e-7,0.000002454038738332101,0.000009358894278207453,9.705084956888376e-8,0.000022252213933662817,0.0000018957792833769464,1.983095725632586e-8,0.00001990646950707454,0.000008739243350725827,0.000004928091407352341,0.0000017480584814779632,0.0000011568148220049156,0.00017454500796607205,0.00014436953541214345,0.9176581649802439,7.439040003242719e-7,0.000014320581659980042,0.0000017479508951857542,2.5510974428825895e-7,1.760838336141887e-7,2.103487527711654e-9,2.4421074095929427e-7,2.5986829272427552e-8,0.000002937178303314845,0.000003169474671242227,7.275276047540549e-8,0.00009552624529636943,0.00008684491296337672,0.000001082604070250791],[6.599954493614e-8,0.000004375231834672965,1.3267723878285368e-9,5.613881444123888e-8,5.970970334572833e-8,4.035831878365396e-9,2.2369182877954598e-8,1.5614984599237134e-8,8.532912477260277e-8,2.7313648659148363e-8,5.404296696658224e-7,0.000004248619084574791,1.7409123660711987e-8,0.000030139292137759734,0.0000027892793863540192,8.859251660682413e-8,5.697626777021916e-7,3.582997065685282e-7,2.553649487725028e-7,0.00013530828991034703,0.00005265765216418484,0.00010265636859758209,0.00003910100506972101,0.9141813375296964,3.078429571413443e-7,0.00000441389289172273,0.00008224549395585212,8.889841223999645e-8,1.3189185731713386e-7,1.8939160475129744e-7,0.000003869975700556074,5.104451670653001e-8,0.0000023039378874943534,0.000004933389543442579,0.00014546752576015382,0.000020048171719340202,0.000009100893306705784,7.388299083715365e-9],[1.7042284225844344e-7,0.0000025045325018885155,8.16219434343172e-10,6.775537901180809e-8,2.5635630159681685e-8,2.9326850890055324e-9,4.78141808094316e-8,7.116151632985183e-9,1.5350682953079573e-7,5.1413397549876626e-8,0.0000023799031512893883,0.000003695421188378978,6.385262680087353e-9,0.000034509573630780366,0.0000045866225935395985,1.0156632321259309e-7,1.1806512158849499e-9,5.982530693257868e-10,0.00002118991501208427,0.000005483769704440966,5.220129743561533e-7,0.00043723107025380115,0.0003284068916950389,0.9014355148086074,0.0000011673902807669703,0.0000011920011811920003,0.000012004197712287012,6.012516591841077e-9,6.277162064912174e-8,2.179210990484151e-8,3.7663994136320684e-7,0.0000010773227592914171,8.845320997762946e-7,0.00027514322798935514,0.000002944242685199942,3.334518568945973e-7,0.00006306920745512133,7.830321499679878e-8],[4.1760403858719396e-7,0.0000044547035003755535,1.3857970672795531e-8,1.0727298405252228e-7,3.0410001365637237e-7,1.6277947192110551e-9,1.0832865256891538e-7,7.886854132677363e-8,0.0000015346151058345152,8.892878132585093e-7,2.1946487855144327e-7,0.000019269371488662943,2.8208846502137485e-8,0.00007639583375326356,0.00003970871192547335,6.527018687463426e-8,0.00002597488783587595,0.000007795370917380141,8.794202208165132e-7,0.00009223841219562124,0.00000462324497862698,0.000028949654958688172,0.000025455353203922564,0.9305713729857079,0.0000066013986140917644,0.0000036949358556058858,0.000006296510939786151,0.0000018195137188164772,0.000004715635240551861,3.78145696125947e-8,1.5031727676345698e-7,5.314021068447479e-9,0.0000012430281724834217,0.000008544471757841692,1.5851484983722872e-7,0.000006007669553138119,0.000007811997884213971,0.0000050497059470261265],[6.929211695010443e-7,4.317521462100166e-7,3.223024807973838e-7,4.958099345142454e-7,0.0000010028850111309283,6.266014158822902e-7,4.487190373271151e-7,4.6956701076947596e-7,0.000003747519315336781,0.000005248037899620707,0.000002949505664893608,0.00006613686421488789,0.00014203539398395567,0.000002482703975196735,0.000001096434759732564,0.00007038794264840178,0.00009047285164924243,0.000006147202272967889,0.000004042748939887456,0.000045532025690861856,2.598014127895222e-7,0.000025575442261918014,0.00011882699616162692,0.00016166220606274496,8.830240440522554e-7,0.9084936610132587,1.3683004399921193e-7,0.0000023656523407169393,0.0000015480602901111976,7.143678833256121e-8,0.000008226245447556696,2.845706271244141e-7,0.000021221688335241408,0.00003587324110027098,0.0000011976616173777887,0.00007457514113375602,0.00004960199474328013,0.000015091671663419022],[3.406165091484099e-7,1.9670847446850347e-7,8.933708156405385e-8,9.204974863129419e-8,6.002638708785353e-7,5.170647989897673e-8,1.2975400014986912e-7,1.0630655945807719e-7,0.000002163543241129578,0.000002611401675283314,7.791554837611905e-7,0.00023297391822535868,0.00007348450216395562,0.000001895836242285224,0.00000102599518782186,0.00001533706640680769,0.0000469558473737019,2.7130316711081393e-7,0.0000015915162782944531,0.000013520600688016452,1.0516138112410125e-7,0.00008135342540927827,0.000050645969205711815,0.00004445069847871894,5.180792760796121e-7,0.909099882445833,1.1344293602843111e-7,0.000009122767749878934,0.000006043773971305893,4.539158865757244e-8,0.0000068053760544399665,1.6566539389215438e-7,0.00009879611954932309,0.00004152001822736744,0.00000520189976489626,0.000051324432097514865,0.000021576246949585145,0.000005681364955727804],[0.000002315217624471712,0.000006675189435246101,7.068054906438238e-8,3.471718286206815e-7,0.00001635692274543493,6.076061878867756e-7,0.0000017486955107434613,0.000006302311699006604,1.0515558845170928e-7,0.000006336566254681318,0.0000012694885479173847,0.000013709647663502448,0.000009724284744367911,0.8672883763190403,3.6301473579441424e-7,4.467329869659903e-7,1.5504655397762956e-7,0.000004880312333375232,0.000015318972079278364,0.000036465575647627314,0.0007380903361314309,0.000007627471055561242,0.0000068328617545824455,0.00009019849595664269,0.0002257181619214419,0.0000012670404788377395,0.00030726863674166176,0.000031789020987943,0.0000029062286561754303,2.7473041272358693e-7,0.00005542886208327217,0.000016341929680507093,0.000007302803978573868,3.8840030336327904e-7,0.00023791092747085758,2.40340284464477e-7,0.000023469778314637022,0.00003563446953147041],[0.000014192287123949078,0.0000056815460237497075,8.350421731131163e-7,0.0000022729881796538083,0.0000071706350187805165,0.000002636217086034947,0.00000465969432269265,0.00005396414856838522,0.000013679871327069809,0.000057069736540129016,0.0000024107166722592175,0.00004118185319595223,0.00000622066741519937,0.9053085792022243,0.000019387598592401648,0.0000019062324402716416,0.000007182372147393362,0.000024931906218976547,0.000122594937611588,0.000004145115067911444,0.00014064049194670753,0.000028340303349931786,0.000029072366325354384,0.00018146849306848234,0.000036225765709092336,0.000022607023750671957,0.00006615673592323851,0.00009203705553084987,0.000027393670843386938,0.000007716811211112278,0.00003745147247361615,0.000046541474769070304,0.00003055088651526041,0.000019832431507773248,0.00010404691483703342,0.000009322927034364007,0.00007380235651289338,0.00013509703426048799],[0.000016107010784250758,0.000049633955348090415,0.0000032922195995079437,0.000015018580474562109,0.00007320320745228493,0.000009901544451802396,0.000005804004427927521,0.000008618990296643685,8.241870279425482e-7,0.000006389705713304912,0.000023040815064055104,0.000014383540608638258,0.00005571948021357597,0.0010610957566653675,5.616506141523346e-7,0.00012615675820363745,0.000005129645683226635,0.00011030862268907323,0.000015874928492714423,0.00005639711083662719,0.8674088438198245,0.00002004811706003757,0.0000198767417512428,0.0001204370164324092,0.0003290896242139524,0.0000016849285163980875,0.00023825171054168642,0.00018392841745601778,0.00004273036652534152,0.000008284164141455623,0.000056383017849812596,0.00003501555193643777,0.0002112081411872994,0.00001361075413907812,0.0005258955524729069,0.000010352633915141469,0.000035282094582377654,0.0001983835342936717],[0.000001411475674488114,0.000002298258916745828,5.580245915675705e-8,9.874755144588074e-7,0.000004967071153547569,1.278353173125571e-7,0.000005486283822412601,8.434429025598421e-7,0.0000015474931810481974,6.015184511988762e-7,0.0000010522254654953804,0.0000029905433576252827,0.000027408930319431517,0.000006353826609839402,0.000015496232720115136,0.000025277511967260553,0.00039250041150673553,1.1808611078706403e-7,0.0001032410113075846,1.4357266542914634e-7,0.00004301718644813781,0.9237671231364711,0.000035496356705242153,0.00007569061666933906,0.000030636136065333835,0.000022255800522007728,0.0000030136922532289935,2.438254283944965e-7,0.00004116931715352891,5.649009063224652e-8,0.00004128027810192645,0.0000028277223836302912,0.000028919412699931692,4.513697043156233e-7,0.0001235284511846144,7.777840733594382e-7,0.000011125307907885296,0.0000026905254662180785],[0.00000310238830736259,0.000006906493680451287,2.3184153620383253e-8,7.354307707167652e-7,0.000023939652940552645,2.8136325437436746e-7,0.000008530844241956833,3.5483208245461364e-7,0.0000052647447207936895,7.157839458304332e-7,0.00000194011774353359,0.000009391098125147234,0.000011150021047419084,0.00001835348143920328,0.00016789930488775746,0.00005369572311782558,0.00047320746352977843,0.0000022502580520945545,0.00004880150137611115,1.7411204674617636e-7,0.000025737457144184843,0.921311487296741,0.000014773277828553656,0.000008383824492618323,4.4940985024149474e-7,0.00008008874535369465,2.838251071493074e-7,0.000013320018633385653,0.00006240703712994474,7.929621114200781e-8,0.00026344160675011456,0.0000017611389079794974,0.000014578633305258936,0.0000011686361659009628,0.00008712708496755981,0.00001734131723420528,0.0000039415804964756895,0.00002807014477157779],[1.1902843997846642e-7,0.0000033145761830100417,5.157641244309854e-10,6.3788283126701085e-9,2.874357776105917e-8,7.562711806581268e-9,7.760065372535359e-8,3.0292470473468764e-9,9.539787996679957e-8,4.259076187471866e-9,0.0000018962178120220446,0.0000014789795733726198,6.342917205230707e-9,0.000001755901932086651,0.0000014594177680570274,4.48869376766261e-7,1.523185653639939e-8,7.391433581442811e-10,0.0000021328369786401814,7.117070703473925e-8,2.6934862172935496e-7,0.919477533296375,0.00040912890484257525,0.0004360826537640077,1.2366757368680172e-7,0.0000047917418634848,1.0514305716328679e-7,3.335543630323991e-8,1.6823183905335697e-8,2.2243393247978926e-8,0.0000029973415007515544,6.606509912323096e-8,5.150253490546853e-7,0.00005948333614339375,0.000017237027108493497,0.000005500516112099435,0.000009498810846951981,3.8350268899544194e-8],[2.8391186894950517e-8,2.2707946502969333e-7,9.402375248530707e-11,3.509646487493691e-10,3.546831742248241e-8,1.1184760568752302e-9,4.527656721517972e-9,2.30590609041641e-10,1.1994305881068494e-8,2.9767354401310343e-9,5.968060330344925e-8,0.0000010901252913394157,7.697153269848472e-10,0.000004403748543061936,0.0000018249335451916754,3.2958635800549966e-8,1.4242693409117755e-7,1.1865923599879863e-8,1.7498521612023497e-7,6.125161325684585e-7,4.991902771404606e-8,0.9258109415715328,0.000019854375764786786,0.0001436538519804237,4.358372259102159e-9,0.000005317765469207858,3.198980228294347e-7,2.6183407830115227e-9,0.0000017109580724552874,4.6288148390734745e-9,0.0000012510382055081304,9.453518053994517e-9,2.7701628365358755e-7,7.512626410412056e-7,1.0519999199060213e-7,7.677999697639997e-8,0.00001340019347375889,5.462070706791536e-8],[8.077151495961197e-7,0.000008149367742254179,4.899576053242638e-7,0.000003969505195863757,0.0000207612006531393,0.0000017255444910110055,0.00010342647090026019,0.000009784688785895705,0.000006564310023983156,0.00001278102695477564,0.0000029903727679206916,0.000009754986098246229,0.00004950266875186018,0.00006179696390129112,0.00009961441460947427,0.00005694506135320686,0.0004024416096445586,9.638886322070998e-7,0.00011103699109876874,4.35559563670234e-7,0.000012890883812250008,0.9101680035785639,0.000013290983339137195,0.00004856980942302968,0.000010677283795338537,0.00007659240274984851,0.000005570527310374985,0.0000027019477177929487,0.000051738837011514554,1.132210741697135e-7,0.00019753274104310125,0.00003250769231788839,0.0000850107001240096,0.000009740640782080361,0.00013143694909068334,0.00012763949325482457,0.000007086413999528505,0.000021924407579373493],[0.0000023643741929936494,0.000001861345675833061,4.3483167865115847e-8,0.0000013054158294432368,0.000007455820148125834,0.000002570098016393017,0.000015119268426402798,0.0000016718267191046042,0.000004447538580819295,0.0000020368521869039264,6.699904204268749e-7,0.000011570741345661096,0.00003549567013682551,0.000031672459931198044,0.00008101428393262686,0.000004881831673553172,0.0005897837892061154,0.0000012243223037593373,0.00010046786290483407,5.517387752176551e-7,0.000020831905008247428,0.9133393179878494,0.0000016783337230859782,0.000012713175806054825,0.0000030553977631737934,0.000027517928976380892,0.00001064516373176654,9.726718150670255e-7,0.000028603184969505252,1.0176639815878752e-7,0.0001828530360111004,0.000008631935486390196,0.00007654546139934537,5.366104473045213e-7,0.00001861519613304176,0.000009633710048896167,0.0000012101330477809042,0.00001076669002755404],[3.6693957575219876e-9,1.2046318462306366e-7,4.5676869750381253e-10,3.33258372375257e-8,6.721912232192287e-8,2.966444136429785e-9,2.832516683303631e-8,5.260488824103905e-9,3.309081308898544e-7,2.7681939395989683e-9,2.1121139123012563e-7,0.0000011278324073968777,2.2563323715490658e-8,2.68239454556433e-7,0.000045729227911392465,1.1585742303036203e-7,1.6129262306125003e-7,6.552331564356453e-9,2.3931825177328365e-7,0.0000012960237469988218,5.227380158887975e-7,0.9408153603460544,0.000004735248468052815,0.00003978346429053135,0.00001219372042383815,5.763930615729201e-7,0.000007524969149770831,9.388865418876615e-9,3.651131709342715e-7,2.3412238387990993e-8,0.000003384621706203003,2.050205140107431e-7,0.000003812290487310759,0.0000012384147289365306,0.0000019116526647060838,1.574801397199176e-7,1.689013290959607e-7,2.3940434000905167e-7],[2.6826116878767626e-7,0.0000014362906044694482,2.1431989338137768e-7,0.0000010842921073699728,0.0000033026036138916375,2.952516955668077e-7,0.000009097511081007957,2.466467124163191e-7,0.0000020464702217146875,0.0000023258262242731394,1.0600585800524499e-7,5.109321450816351e-7,0.00016821926644185997,0.000003055485936113458,0.000013782514321433608,0.00000698659535942465,0.8918024810516119,0.000008455612209854593,9.730947109902242e-7,0.0000023672355433282704,0.000003866897167552636,0.0004998349401941218,0.000003693648862921712,0.0000014622008520184603,0.0000056045157418238205,0.000037530373803389604,7.299860671831358e-7,2.072217293459685e-7,0.000032580706738728,9.605409903437863e-8,0.000021203190107313067,4.1809083017847344e-7,0.000024033284164460678,5.430526158506027e-7,9.590003430896994e-7,0.000018446929265199982,0.000005585583082927076,9.292321069526688e-7],[6.553438214480955e-7,5.899464962036874e-7,8.34251869877243e-8,5.901953130766222e-7,0.000002743240190486548,7.796549650038752e-7,0.000022385196470638163,2.0988255713185877e-7,0.000006414680112316855,4.360339028750181e-7,2.9143900918530585e-7,8.120079454038291e-7,0.00027907165433118476,0.0000017494233866726323,0.00007082178184063748,0.000008657345738630352,0.88840703861088,0.000021821470227508464,0.000006927608601322891,9.44444756717003e-7,0.0000047133916712715465,0.0005031433021588456,0.000007814829008826401,3.061973793988384e-7,0.0000018717414508062676,0.000012032479534246688,0.000014813832536340715,5.467486317754422e-7,0.000022810545441110457,6.298871265975213e-8,0.00019379848170056801,0.0000015232856895048642,0.000011968220014203985,6.70649005632855e-7,0.0000010283219149775832,0.000035676659391657245,0.000010005301062387929,0.0000014782825083471162],[1.0655782749771906e-7,6.757622699401039e-7,2.0915925729861556e-8,2.0477898585308953e-7,4.184998046174885e-7,3.139820392611303e-8,6.776009941051136e-7,2.6717529860666324e-9,7.677341893493512e-7,2.5402874844260655e-7,1.8178815123463335e-7,0.00000886284456125156,1.019608185794956e-7,4.6816157265584476e-7,7.738503613737618e-7,2.678494258960286e-7,0.9397754285616701,5.275425083047423e-7,4.299423953866225e-8,0.00000443682590508624,0.00000545498106461516,0.000010246993607997127,0.0001553686660185323,0.000034294887641451404,3.958204577865411e-7,0.000046635076966485245,0.00005467697118358949,8.427508279557668e-7,0.000001346928528508837,2.3077476596176816e-7,0.00002344629973369729,5.994539434036889e-8,0.000035265128582952834,0.000014539102744114141,3.133420873492598e-7,0.00015731097623466784,0.00006378548993069688,0.000006033951702284204],[0.000056132200500937444,0.000025149684463902514,0.0000033552346788146283,0.000023227522889136188,0.000020647268900856884,0.000036293502579336885,0.000016250922555188576,0.00004468892737386266,0.000057171175087991725,0.000031969396188131054,0.00005477106889846133,0.00014953823866682041,0.8927861146463473,0.00004612572074934821,0.00010260296812852902,0.00012315207012861878,0.00015293725849128484,0.0003251121781601342,0.00004616011120369002,0.00003096174520628966,0.000014733554949720613,0.00011597096508653219,0.00009073174862116515,0.000014124528003789334,0.0001155432137032725,0.00029935708441483616,0.00001541756055165828,0.000046392837395177904,0.00004766330870794325,0.00004711197026539629,0.0002700136035844316,0.0001886870729154689,0.0004676364823843887,0.000029264827296597838,0.000016229403072690893,0.00023179587281054527,0.00039991796846483286,0.00002609706122015389],[0.000002864206901913745,0.0000025894691090281948,0.000003734753926758183,0.000028162942580450153,0.00002643081370291876,0.000007557858979008286,0.000018496996366425784,0.000004113224984070737,0.000010710137064728886,0.00003209290645758849,0.00001952545904053956,0.00003067591706145659,0.8811762773161663,0.000018388907087832775,0.00009444049377593625,0.000034672036986540156,0.00022498456044635552,0.000059093749641479044,0.000006257261202468795,0.000013977286993758226,0.00001276210487690859,0.00006450682979601521,0.000005062901026755183,0.000007256908102467781,0.000008150594726760142,0.000152262959045223,0.000008400967441307082,0.00001450277993772737,0.00017234893372247888,0.00000594712326868077,0.00015948538103596974,0.0000644947677733602,0.00023143963616105277,0.000015169887232551942,0.00010060409887651756,0.00006897518401753853,0.00011467426479894293,0.000006196900185376968],[0.0000458655785797271,0.000017139378785912328,0.0000011800705486301565,0.000053245072148848605,0.00003820751650936885,0.000009135685200114026,0.00007284267384438963,0.00007785037777334246,0.00003274480435809811,0.00007145428345197094,0.00003783820016118916,0.00003763718177124808,0.8854015980323227,0.000020650507378367355,0.00003418868399225211,0.00020436672009914854,0.00006609021952305017,0.00004031748988339679,0.0000066416000445778686,0.000022443956338191342,0.00016376456736634168,0.000005667218077489141,0.000012375891817453721,0.000034725497472858484,0.00007228220162929114,0.00003639252751792115,0.00003215183533823968,0.00005226459447915507,0.00017393428429075288,0.00022318635920753145,0.00001584095454973469,0.00009788641441494219,0.0005348797016740777,0.0001201054154544852,0.00003197691477003767,0.00008265357966411262,0.0002837306540474712,0.000027750492989297765],[0.000022837263390234257,0.00003999935628520932,0.0000015109926384671412,0.000022609110584992728,0.000013515755237278688,0.000003014229899736489,0.00000413643118080121,0.000036135992451873645,0.000059840872663080154,0.0000605599310277259,0.000009912961415745856,0.0003265450593578492,0.000024566215179640424,0.0001036169926549913,0.000019428683542860952,0.000013118022182774378,0.000011781754503161632,0.0000642202960255503,0.00012919428841595552,0.000009928440238278428,0.00009487591626764914,0.00002876909461526298,0.000005360636434508383,9.91973278277849e-7,0.000601582505531515,0.00007486607760484754,0.000009682243701099976,0.0007885705733394803,0.0000320563154621753,0.00032918992710695427,0.000025565213941702658,0.000007645057020810972,0.000060980520574228705,0.000033835942704891976,0.0000754373857533314,0.00010109808794863576,0.00004466287573554183,0.8727000734416138],[0.00001356243781654115,0.00005197041979855353,0.000014821212715184828,0.00002992691345768954,0.00004320457991672673,0.000002182155070464888,0.000011764970774140546,0.00003884983291162029,0.000019758289504099827,0.0001006433378918645,0.000004115634540237081,0.00012230602697318712,0.000005044765453748484,0.00015458864608174577,0.00002158438860968999,0.00005088110455989519,0.000006378237725046969,0.00014831541895318388,0.00004088638331914834,0.000008377178100946164,0.000052507968100175956,0.000021201032529233595,0.000021080031204827237,8.152997293493286e-7,0.00041358410287280304,0.00011546534456244423,0.000019638273821316384,0.0009711938258057043,0.000012771984745802548,0.00025116682185739024,0.0000061320328495358,0.000040685141193404144,0.00014817512973181837,0.00011326494883857717,0.00013127844630061322,0.00003066632016306192,0.000008724467878514791,0.8730903471782995],[0.00006479421765820882,0.000010844475629308506,0.0000011281307825498856,0.000008008973256363705,0.000050584076269385666,0.000006600941089044191,0.00004102249948160394,0.00004573888085841808,0.00003097551279584701,0.00004098263482346559,0.000046709084541163556,0.00004408203124055094,0.000018426651477084698,0.000040291110301773436,0.000011635925280140843,0.000015721884201818328,0.000002252352063944775,0.000026603760885927377,0.0000308443806883424,0.000050276300904645606,0.00028116916108027114,0.000004073147781370636,0.000029130271019208507,9.845512436862455e-7,0.00025154660015889064,0.00003552263191336322,0.00005224146432280679,0.867473630564936,0.00001225694771742617,0.0006384293013033988,0.000024826561610801408,0.00006579015972016981,0.000021421427130842167,0.00032580473809262024,0.00021669832772263758,0.0000450734741850656,0.0000722376853024092,0.0007592069910804612],[0.00008348902692957959,0.000012620350980660411,0.0000017282726162627168,0.000008285194148304282,0.00007360213216547924,0.0000018691782313398294,0.0000786725770464413,0.00009849926960434992,0.000020657518419011196,0.00006694914927967433,0.000057960906581193655,0.00009989365631554477,0.00009053611014856708,0.00009624240970927598,0.000051837331798996236,0.000023569712390816027,0.000004637568681081613,0.00007229083197730754,0.00004137411611994625,0.00005149329444017487,0.00024153155424806673,0.000002265870240300188,0.00002239332225040444,0.0000018342332636942034,0.0003664162426061045,0.0000688047105890262,0.000007988853549593952,0.8812434282352688,0.000023457795900976746,0.00045234298046684617,0.000022241070142701288,0.00010497987364052071,0.00004916682179690583,0.00013330661423871225,0.00019869340339543433,0.00009174719642892948,0.00006413098056718973,0.0007811706774946266],[0.0000046948343550920646,0.00001049050231885963,0.000002302696340848253,0.000014795498667664856,0.000008372984438570652,0.0000019815106019976733,0.000013087150354461344,0.000023005061071001213,0.0001233266347681484,0.000013226275058909773,0.000001910536034910389,0.00004596368853772971,0.0003053264579276507,0.00000880009887428925,0.0001604137161129734,0.000006142545201623271,0.000020476767097694608,0.0001193429559548906,0.00019761307823148148,0.000001713371903971405,0.00003384692659824902,0.000045843114057389545,0.00004957057897035887,0.00002780656049548313,0.00003370320300146203,0.00007405366399296664,0.0000028597174947608275,0.00011751250275641286,0.00009562263701739712,0.0000011543994464542655,0.000020868229736329038,0.00019000345453192344,0.00002827422431402261,0.00010068318507391436,0.00006057220484530127,0.9017287668383153,0.000028639520668631604,0.00014643532524393502],[0.00000205243691610312,0.000010793374083909704,2.8967580017642716e-7,0.000004429577436860559,0.000003815721294759663,2.5298461410876463e-7,0.000012406408659398677,0.000026435839077877112,0.00002546671725467382,0.00001660462316900684,8.541883178176255e-7,0.00009900426659927413,0.00006690480021722714,0.0000011833351641317041,0.00000912537913069425,0.000011336854882194568,0.00007513490912277965,0.00010150862375577437,0.000007510424165034069,9.4085357739123e-7,0.000015101507453527563,0.00000501563374907848,0.000003440498626769373,0.000028708236112125874,0.00000201630200431545,0.00003788381605721437,8.065278839423428e-7,0.0000415354945266459,0.0001402713278711654,1.4129505956004603e-7,0.00003143030210548906,0.00009199082464182082,0.00003503970038867491,0.00002734214424852423,0.000030207207000757075,0.909836687662646,0.000059681835378908125,0.00003700987595545976],[1.0651320711688223e-7,9.900705165677503e-7,6.444283241851808e-10,5.668399064126921e-9,2.1552238429983808e-8,4.3874970165604807e-10,2.0435209082597008e-7,3.6568759048355864e-9,0.0000028434462400698974,3.64753952950841e-8,1.1439383920074437e-8,0.0000023668194521880885,4.8767017481943785e-8,3.045464214227751e-8,0.000007246499243562372,3.341485607735978e-8,0.000007816600383151234,0.0000010602364374489988,1.496296225261073e-7,2.0513642338556593e-8,4.1701373795765094e-8,0.0000022948773677518815,0.000048779076571872935,0.00004607462578862288,5.518916154437823e-9,0.0000019285805599958223,2.943259733454632e-8,0.000005092469278798218,0.000015866523988676586,3.3950812363039246e-9,0.00000663614715327667,2.4468991031786864e-7,5.764183321093517e-7,0.000029952938183897625,1.2800787027908385e-7,0.9234067362952505,0.00003269380199549405,2.685068167633935e-8],[1.3745769017553167e-7,0.0000039181164429540504,1.212811788489492e-8,6.532696182453586e-8,0.0000013990206198494214,5.36405402360039e-8,4.697298488057817e-7,1.1876260738859271e-8,0.000005033141204470609,1.990011680223764e-7,2.3434202079547915e-7,0.000009775534398849673,5.976318461160271e-7,0.000004325974868369969,0.00004572130250778848,2.8144894693495863e-7,0.00011697366490199638,4.6273016167057954e-7,8.181016285492561e-7,0.000005669486086113268,0.0000012914639400326602,0.000003943831404702873,0.9190322400318824,0.00012592956267598712,0.00005426938456723204,0.000005755538356357001,0.00011203086089925821,0.0000013218112296485674,0.0000010819471318172662,6.569681543009436e-8,0.000002002313298851653,2.0894721777033876e-8,0.0000018694346998061848,0.000008761402053010296,7.77039659188933e-8,0.000050595825679377544,0.000010599393542208812,1.3791206561605492e-7],[1.0816364281507498e-7,0.00001009614119940985,2.2262645027781157e-10,5.229746996386557e-9,1.3094297657127115e-8,1.0146367062531948e-9,1.3340181305265781e-8,2.1184829227835258e-10,1.6925557676045092e-7,2.1835010434042517e-9,6.305285322376288e-7,4.060488287957194e-7,2.6885799158081236e-9,7.401648329329294e-7,0.000017157252550477908,1.2908657191386165e-7,2.1802962282611333e-8,9.27176666519403e-10,7.561050937938809e-8,3.771245308822199e-7,1.8096358421045844e-7,0.000496921413301882,0.8993601153145909,0.0001702779754852302,0.0000028827250998706013,0.0000010540878821798002,3.6235634961669845e-7,3.7896493817230866e-8,8.646036255449684e-9,4.930716059388561e-8,3.3612697427425404e-7,9.325808673996327e-8,2.907262212127559e-7,0.000017782163553615364,5.924508361827802e-7,0.0000010927246919529521,5.471832605216347e-7,2.573838065829482e-8],[6.24121577717104e-7,0.000012483412537707102,5.5005316320910254e-8,5.127614508506915e-8,6.53020978588508e-7,3.090245655557835e-8,5.166822379260871e-7,4.041201816207128e-9,2.4658132933907865e-7,5.056171073204231e-8,0.000002366819280355915,0.0000030035448359354414,7.807047781948028e-7,0.000012536539844123045,0.0000022486488433946523,0.0000024384135960190354,0.000007173016289972606,2.9311536350855454e-7,3.299297896128107e-7,6.504204669351639e-7,0.000009001000260463005,9.684837544399632e-7,0.9201009430164905,0.00017111907908187222,0.00001534255797225379,0.000022007234670487027,0.00003156388236945934,7.809836007198063e-7,5.890175187785018e-8,4.8164389942679665e-8,0.000007837714053416979,3.9657832911004916e-7,4.941143313121262e-7,0.0000621967183254225,0.000005106065279725097,0.000021753637811192746,0.00007365660297532282,3.891694852658306e-7],[0.000048826208954186104,0.00001896993605723746,9.779822310667697e-7,0.0000062787044623907405,0.0000056135184497755315,0.0000022717396099631686,0.000004596703243570651,0.00003125625526488739,0.000051170647371710146,0.000018178300456970425,0.00002629903905858927,0.00005246985974732628,0.00010795381323206917,0.00007788351192793642,0.0000525304780673701,0.000011032587831699197,0.000005028064422120625,0.000009614076844795202,0.8829083896490285,0.000031370537826132235,0.000010262339496847155,0.00017441962375216682,0.000017161410141080377,0.00016427102262937083,0.0001680372946336147,0.00006136584322664622,0.00006468708658267751,0.00005980491083909982,0.000003102251679502215,0.000004743594867512343,0.000023961686858948525,0.0005731921070248221,0.000020629883360619524,0.00008191474848046931,0.0001781546588232858,0.00010027284834179378,0.00009858185875226903,0.00022046985098121078],[0.000012500448387811825,0.000004392409274441059,0.0000011074738284800838,0.0000031731083642630664,0.000005930977626122482,0.000002800657549369927,0.000016760918906053275,0.000024328008915560423,0.000004892877295409391,0.00003380308910641944,0.00001642316035573924,0.8765171726135117,0.0005764873705762136,0.00037541422577807486,0.00005149388160776546,0.000016342578104529268,0.000005935914675038211,0.000019175543499367143,0.00008285661325809899,0.00005499297282338928,0.0000062169139928947705,0.000028255081267114254,0.00007532292015992903,0.00012851546018844356,0.00042702118897574204,0.00025445866895597356,0.000007329018525736539,0.00010598689478580861,0.0000029822763600670774,2.956487581127742e-8,0.00028819743694642,0.00010261861422772394,0.00006735178703376256,0.000053025967875039705,0.00047751464049702625,0.00032829782605947193,0.000022927358524228944,0.0005570545607219285],[0.000005865630694644756,0.000009618194582568203,6.330846329278702e-7,0.000020950601268860653,0.000018724873656402342,0.0000064485266007072625,0.000013639813291156483,0.000004011862135922475,0.000003422672137694088,0.00001662175089088757,0.000007933316110569172,0.00003980735661182454,0.0004645607188823208,0.00009863844870320095,0.000010931734077124314,0.0000031959617312844262,0.00008916613904792695,0.00006741756624711384,0.000050066510257861034,0.000009111878358319682,0.00006574487130446876,0.000020284941252225326,0.000004635651253927892,0.0001035416114273685,0.000017538425327523595,0.0002355240416484785,0.00004721571552844101,0.00007458310192018216,0.0000834543963995597,0.00014866445570471993,3.099778487462383e-7,0.00000962911382915897,0.00027648858151973035,0.00018444230124450373,7.16009191603678e-7,0.00006680397890888813,0.8871920973329434,0.000005845327809708304],[3.5651402215426785e-8,4.6682339901972326e-7,6.062850590842188e-10,2.1155384132472514e-9,1.9018297900060518e-7,4.717287289239383e-9,8.993632303310176e-8,1.1090282265975467e-10,2.6156593567479565e-9,5.2467667811811405e-8,6.390822519137058e-8,8.358491290956306e-7,7.026424567452935e-9,0.0000014095738517141266,0.000013079132601924712,2.425712905872132e-10,3.1015579001142964e-7,3.5057684277520936e-7,2.2970585163036443e-8,8.110541052359656e-8,1.76688906383587e-7,0.000005361750777491445,0.000039000809179012355,0.00004735361957383284,9.036335347720246e-8,9.182779908555446e-7,0.000007782496602963371,6.506904339064217e-7,2.3007821904755916e-7,7.658865108902211e-9,3.0583482213814456e-7,1.0906989937675235e-7,6.098744898645883e-8,0.000001365585748440129,2.087149603320157e-8,7.983181156877255e-7,0.934017623398359,1.068444693344998e-8],[1.1526815117989417e-8,4.92993458799647e-7,1.1122690075044729e-10,1.7148247448176135e-9,6.492596994860423e-8,3.3030830471992194e-10,1.0124188360268564e-8,1.4316948255569488e-10,3.822096067810785e-9,4.238542641902347e-8,8.745811025662352e-9,9.874626233839229e-7,2.9292056868475085e-9,5.875658840082162e-7,0.00002876005949878801,8.505832270861336e-11,2.0917525649320372e-7,1.3265356862624805e-8,8.298801674216828e-9,1.7701133970156852e-7,3.0797796885572486e-8,0.000003930108672296198,0.00009401251133756386,0.00003433253647925986,1.686063684747222e-7,2.3715114237089377e-7,0.0000010464795351542,1.2128257143788479e-8,1.604951444249488e-7,2.8853741114707323e-10,3.3012331319067833e-7,1.5976696112514917e-8,8.351230093413136e-9,0.00000432427002563908,9.478819530806736e-9,0.0000015526606948226925,0.9468893421047538,2.5767480092169936e-8],[0.0000033224408028953995,0.00003082623087312105,4.6988545471316506e-7,4.79420440242369e-7,0.000004058083762341472,0.0000013475631674125575,0.000009027867555513374,0.000007077881193904038,0.000001836825428866438,0.0000020396565907526332,0.00002434863249483943,0.0001325968982806566,0.00010368033107209622,0.00027957485183468866,0.00005351524853635584,0.000012971973065603239,1.581936312919551e-7,0.000004989207555632135,0.00011503709750655738,0.00007122397249804377,0.00011904290507721928,0.00008128079295692108,0.000005880764666332234,0.0000370884655045666,0.00024390712773584997,0.000020003457973797403,0.000054425900966135656,0.00006981574648713813,0.000013118655146436276,3.3714472498471086e-8,0.00015468113550719655,0.00012207043456948107,0.000034101764963775433,0.0000030852722705053974,0.8915274819334071,0.000020888962157004904,0.000003165960212687987,0.00007659931910484895],[0.000002796983174178095,0.000002990086455673646,3.1756819041247773e-7,0.000005217866077634669,0.000003197259898575398,9.191385507323734e-7,0.000005316318095806164,0.000026249698358413398,0.0000015224298245427927,0.000008970109967725844,0.000006226520427913623,0.000059240878497676706,0.00007417266976957995,0.0004668371308119195,0.000007257783497291688,0.0000042494541399810856,9.33710663191144e-7,3.8351435485612155e-7,0.00003417741062169616,0.000025414562017631867,0.00018539973286589332,0.000023324468471792895,0.000011047335422056982,0.0000037126502391758043,0.00032366085431266274,0.000007761012090410032,0.00004806763429608585,0.00008502876498556404,0.000004246584044218946,7.283743969962103e-8,0.000022879673299490775,0.000020820060890075646,0.00006656397978228645,0.0000035902978899688054,0.8794193999215523,0.000009281967706330072,0.0000014948710745339113,0.00011825815351290058],[0.000008366606695676239,0.000008002949920496374,0.0000026284056875765297,5.571875654739952e-7,0.00000936889522211404,0.000014624356940753172,0.000025091143068450296,0.0000010852446883213994,0.000016273190812011826,0.0000017421651574489124,0.000009846571292915622,0.00003376275085364109,0.00016320757857954274,9.203351463885228e-7,0.00003005774507656175,0.8858282450377165,0.00005197826789084379,0.0005782047915379929,0.000015483261644233864,0.00005871857743648846,0.0000274181780182705,0.000003301796960433228,0.00013696237355544335,0.000007393808895344823,0.00027133863977956476,0.00010137037386372999,0.000020357988008595675,0.000023154137857399808,0.000010063664055828797,0.00001809674441043882,0.000010986985079778592,0.00003145439633845218,0.00002985734939737848,0.0000094574039339613,0.000012805678817222813,0.00001589576852046612,0.000003571911564225275,0.000015523605848430686],[0.000009457499783619058,0.000051737875412739704,0.0000023406409162340507,0.000003954387053557043,0.00004638659127336406,0.0000030708263258793324,0.0000692730576714349,0.000008400041562906412,0.00005528727981890877,0.000004008889433397659,0.000007399987524963138,0.000004139490514561637,0.00011377329821705094,0.000007666146950665628,0.00006602350518139078,0.8814696875996092,0.0000119362882539964,0.0005279189075652855,0.00002993668843582018,0.00032087752247821516,0.00006718658126281328,0.00007434256687160482,0.00003178709275256465,0.000005762307109427251,0.00021362091950639524,0.000005090584543718164,0.00030072252290740207,0.00001643733854407808,0.00016188646241643563,0.0000959934273889052,0.00003779146689145673,0.00013567653059139468,0.00003693071255088378,0.000011104852441805351,0.000001504787928637051,0.000014923393595482057,0.0000032284909771061793,0.00000870067081537726],[5.178134551429933e-7,0.0000029631928209851544,0.000011736399624890687,0.0000037582426080971147,0.00003900294357293479,0.00000225784359096398,0.000013971449068709226,0.0000012294815211794205,0.000020685990588013674,0.0000056205370120012085,0.000005666464440869002,0.000003250853191767187,0.00005198697446191441,0.000001964440187947925,0.0000120690306778951,0.000045676967646526574,0.0004033101034689146,0.8799974324038209,0.000004468557946693244,0.00017262443624193187,0.0000016194902062759383,0.000007852161275322475,0.0000036823143169739512,0.0000020261098291489803,0.000014476933355841727,0.00011323517787909399,0.000019614399596255494,0.000024854810500916737,0.00008420135009951205,0.000010077277370458158,0.000010566519727244818,4.766614331293932e-7,0.000006558568446549089,0.000003659987499109123,1.510240606225691e-7,0.00013590648948362546,0.0000045786614684694065,0.00002730256187525822],[2.2643604711359926e-7,0.00005233360204536781,5.813449279652386e-7,7.994040839403402e-8,0.0000037386554991555618,9.409955636483204e-8,0.0000032691867589929115,6.02564870768121e-7,0.000005639341852528261,3.9811367035286533e-7,3.7477850218580286e-7,0.000004706919897443294,1.5742447746772765e-7,0.000001162893671625681,0.000044304199128430414,0.000005723787712520253,0.000010478207831430304,0.9453080648472076,0.000006820938513860068,0.000051328427045446816,0.000006917888524359633,0.0000015278290996997746,0.000009819657734619741,0.00008023693349889291,5.668260278875248e-7,7.919917439337861e-7,0.000022904444786563686,0.0000027046895927165074,0.000012908362941240456,0.0000013000218420797264,8.288561317482985e-7,4.467420353338328e-7,8.368246077420997e-8,5.419578663509436e-7,6.876190065093329e-8,0.00023840371135733677,0.0000010879136343801254,0.00006081187680548299],[0.0000076917399604129,0.00007404757258358947,0.000005019168959312524,0.000007839831108889725,0.00003476790689838197,0.000004453599678891689,0.00006499422596334574,0.000014037139523546411,0.00002072124782705743,0.00000840456096212729,0.000025407242209803008,0.000002226123078181961,0.00009046026188290415,0.00013289759619259674,0.000017199061726792405,0.0004480210614445298,0.000038810508235398146,0.8834552094028072,0.000057945525149601195,0.00036297548554997086,0.00006817698922554208,0.0000016265966576489622,0.00002630320262091321,0.000019529943215568894,0.000015041867794243481,0.0000054303368908734105,0.00024746587256578394,0.000037222993018948886,0.0005718316265911948,0.00021854262717101533,0.00001636955780508605,0.000004690396430691028,0.00003537969644845469,0.0000013814083185466438,0.0000010920344144470047,0.00013644425469779868,0.000022279930003409828,0.000017561056286211203],[2.054841829909025e-8,0.0000014175731695066686,1.142288249117215e-9,2.2934425287047123e-8,3.3391483340300975e-8,2.2245554382224848e-9,2.635752140877737e-8,2.605917004470376e-9,1.6872832610416058e-8,0.0000011083022464320335,4.068553954431454e-8,0.000003761271251276674,1.5362990573208767e-9,3.385601985051826e-7,5.8762066560501946e-8,1.9027026494255137e-8,1.7084526623512677e-7,2.8803956982191242e-8,7.638151654296917e-9,0.9625925050370527,1.999303136287279e-8,1.6576805951236124e-7,1.3156288553603845e-7,0.000038355646865586765,1.0000856983361447e-7,3.360098912448411e-7,3.7787564028221063e-7,2.0032605653373146e-8,3.336762119709702e-7,2.9634923474490555e-7,0.000018014852299010492,4.926248459323627e-8,0.000029302469449416,0.0000017379786957541497,0.0000022088710531663556,5.348939802054011e-7,0.000004010184709915467,2.2046395985790662e-7],[0.0000030855523937311137,0.000014511495209115682,5.374206519154003e-7,0.000011601748040444687,0.000014166189008798121,1.1998626199005056e-7,0.0000056634227278155265,2.462076050859027e-7,0.00003254816057234651,0.000006034931674079997,0.000004176555833844856,0.0000020752996940972193,0.00000284503307117459,0.000010338616516726366,0.000006289898873656294,0.0000871201735919198,0.0000043062290995576155,0.00017694013728664052,0.00002666522976160726,0.898903286924039,0.0000196342340732837,9.649876160113395e-7,0.00004712155730457916,0.00013607866421957914,0.000028338298836348142,0.000007100406664869217,0.00035507293285067404,0.000001605507333648141,0.00002345511407859944,0.000036191427258564296,0.000022588543857449047,0.000006221191261070367,0.00012646395061803416,0.000003939618074943425,0.000003112589071513571,5.717780478795183e-7,0.0000026436106451631436,5.078552355742694e-7],[0.000003461497949483149,0.000018098956713941127,0.0000012898553443039393,0.000014375483239936873,0.00002457113134972145,6.121465932873578e-7,0.000007432351593532382,6.095133581469036e-7,0.000029495223643053608,0.000005519952818183224,0.000022807288501145764,0.0000010477740285042819,0.0000048132997075957065,0.0000030571087702950887,0.000012182522072355212,0.0002468627993854439,0.000003341091977991939,0.0002088696852119189,0.00004918399612819098,0.8905800099716253,0.000020876360690952845,0.000001963697053845798,0.00001071485744133248,0.0000646725499258731,0.00010265836324797532,0.000011463264312052624,0.00047032084167380285,0.000022966200873637592,0.00005271813047554656,0.0001132837239119032,0.00007698732256719957,0.00003190387122768112,0.00014512665376786437,0.000007985820680483641,0.000012236420869236459,0.0000010957743037806074,0.0000054396043285315776,0.000001085479080944494],[0.00001515285004057961,0.00002201846059429914,0.0000023420262018164502,0.000010362394373547342,0.000011979725794409656,0.0000039567974508725174,0.000008930001781708166,0.0000011610068645354283,0.00003760574223367093,0.00005459835829602703,0.000011449339228082287,0.00004785525891116072,0.00005393316121202313,0.0000076624452484355,0.000004718421604039855,0.0007630145367363429,0.000047645210314974314,0.00040113818753250287,0.000024528214931010282,0.922876491532298,0.00003475919324891186,0.0000076532181638289,0.00007205662589080516,0.00014744735686221107,0.00006767213263408338,0.00020863003429120075,0.00004989964530845286,0.00006389566231755697,0.000009215483040918561,0.000028483632421548227,0.000026328255041089518,0.0000032005164160417324,0.00009076678979974,0.000019475544847491243,0.0001267917633131777,0.000017230230016646293,0.000007736462083835874,0.00002946540917552698],[0.0000059704750404823835,0.00009423752564797111,0.000002061315880505133,0.00003409782018548274,0.00002108771910332691,0.00000906820261403099,0.000008505467878369387,0.000015822452271269845,0.00002507011281738408,0.0000039152983286220655,0.00001561975683889861,0.000006826800206020131,0.000051284769943164217,0.00012668282126373703,0.00004429539851058233,0.00042429783233419345,0.0000776946496986255,0.0006818296434934819,0.00023215198484496797,0.0009508928576878701,0.00020710402501713236,0.000006829408578270544,0.00009174114078657046,0.00004116279477417797,0.00005952668121138818,0.000004375207314989365,0.867279228123973,0.000026970831608412806,0.0001899693786740454,0.00025069143355678736,0.00004159663437966629,0.000012024972254804068,0.00019258037228069626,0.000004199399361640294,0.000015538626414024316,0.000008491897452076201,0.000010465685606328438,0.000043438768029760164],[2.9063055313345067e-7,0.000016697566364121176,2.931589910073187e-7,2.604820938973457e-7,0.000016492891528115025,2.9003740444264494e-7,1.7323715269257633e-7,1.5916522638342456e-7,4.327218328844408e-7,1.3449315331576836e-7,0.00000210599554862869,0.0000014476919342425704,3.988899588378368e-7,0.0000593346782336983,0.00008091816182518596,1.6669808720555856e-7,0.00008131546653938106,0.000012012109297630192,0.00003271425049390225,0.000014548275829030884,0.000018349959174537603,0.00007091776634721001,0.00023366255682630044,0.0000778981703062124,0.00004212697342597233,0.0000038981582248880195,0.9113143762427778,0.000004361269318192633,0.000036350333925077194,0.0000071039542247524685,0.000027787794312723418,0.0000022403475441429314,0.0000032225470221178614,0.000011430600092262796,7.744723720189136e-7,0.000004315051415576677,0.0001013432316500755,0.0000039661346217113325],[0.00000743839769307337,0.0000029999128324817727,0.000007180630455136323,0.000007499912294243232,0.000029475154952267873,5.518760606363226e-7,0.00002982710504755075,4.906108963637751e-7,0.0000573676044127103,0.000002203905791754762,0.000006291619080529113,2.4052680516244493e-7,0.000052875079053094506,0.000024132543513646313,0.00003774552373485574,0.0001769624768195702,0.000039111739687775304,0.0004983957073653251,0.000011490861489547744,0.000003940761808472318,0.00001864675256791455,0.00000889592766184638,0.000001809473301755375,0.000002103878036993108,0.000004516802054720418,0.000011166530304797085,0.00003507619912175807,0.000008091527896292163,0.8901608830420558,0.0009129186586679887,0.000018228313711290935,0.000002134394655697888,0.000057754275232822654,0.000004545845756884959,3.212307242463907e-7,0.00006970641530216503,0.00007419152301443785,0.000005161069978628606],[0.0000421652810885296,0.000028808807682582246,0.0000013959258025965158,0.000015506912017830855,0.00008740785227280537,0.0000012423339067940486,0.00002280113824517949,4.5647293103073253e-7,0.00003884000764371872,0.00000735246946080386,0.000004971133298828835,0.0000025458501171115007,0.0001103342640701371,0.000016527370784888818,0.00019881115581571332,0.00025757459390974495,0.00005353645166495668,0.00030109704228067495,0.000022238379960458915,0.000018902816729825402,0.000009136820205892222,0.00002623412609558986,9.694864773544858e-7,0.000004579053460697798,0.0000042733656887861665,0.000012700664403675249,0.0001648605822375391,0.000009933996780803674,0.8874011677823456,0.0008968074670394861,0.00002740432744636954,0.0000016861640735945007,0.0001447543455867267,0.000005245962876713813,0.0000015603661966222587,0.00004745018556027296,0.00007483539688433052,0.000015637532022412148],[0.000006012500690824531,0.000003859562070202489,5.31751007634343e-7,0.000008197445395349105,0.000007206744577602494,0.0000011299866255517855,0.000002302976351399326,0.0000047969959447877064,0.000006606855146002699,0.000005364466990410217,0.000021460144961176476,0.000002320236709943607,0.00028852610718466186,0.0000069068847109262726,0.000013356461663540574,0.00010896506393692972,0.000005117710073786311,0.000040237914763954344,0.0000030004359670770696,0.00002693361800373344,0.000022591905523906852,3.948235377727933e-7,2.0261029256087516e-7,3.5505538281955354e-7,0.000008892701524862231,0.00006537314394905846,0.00004941358570084791,0.00016166560686382584,0.0001537335021986816,0.8694116162837509,2.510813466409498e-7,0.0000047110057031253765,0.000082355450654132,0.00005066603062410357,5.818716838400688e-7,0.0000032749465017873847,0.00004993123490912124,0.0002923336233495219],[0.00009755558498011383,0.000011469796431375654,5.74365964973716e-7,0.000004372713862706398,9.022643459115885e-7,6.997651639254744e-8,0.000002943520895745673,0.0000032535191917823557,0.000005647215257302471,0.000007585050530520589,0.00000503206628662989,3.1206403540722965e-7,3.2460174561538147e-7,0.000011065774753110184,0.0000052476391780696295,0.00010125709665048867,0.000009165706526008796,0.000009208325164262319,0.00000602181050293402,0.00019652838112082827,7.450350496330066e-7,0.0000041196007087069286,0.000006961250780241275,0.000005365912097038571,0.00000513145211922071,0.0000052816828936157475,0.00011761549112260383,0.000019191726520867318,0.0001546693374903172,0.8913190406662465,0.000006564531405315953,0.0000029908408161144363,0.000043485799518898164,0.0004354621648768157,3.443128724954779e-7,6.176090849388518e-7,0.000004050622485194858,0.00012986465884218148],[0.00003709433668487911,0.000023364309349580144,2.309123831067007e-7,0.0000010025315359283584,3.0166799043588865e-7,7.151240013893709e-8,0.0000010621950622417833,8.038175758287953e-8,0.000009539950943677487,4.304467849911807e-7,0.0000028360290326453585,2.140300860478656e-7,1.2313183567595662e-8,0.000023301639581723296,0.000004545661707766482,0.00000467435943802328,0.000009080723496089242,0.000017064123049951306,0.0000034280166719267583,0.00003256353472879008,2.505835058146045e-7,0.0000013762757675468338,0.000012891292516340628,0.000003003687416196083,0.0000020591615287061806,0.000009315412019080485,0.00009537751639367259,0.00007402500672234097,0.000005814810532787598,0.9676692257637578,0.000009861462618549984,0.0000015867049319451668,0.000021626956507491897,0.00019741637105781266,5.5299444505384736e-8,5.787459811808301e-7,0.000006531683806514794,0.000040238660881660185],[0.00011692780636789612,0.000022151288453427758,7.270601308056009e-7,0.0000012529203082887752,0.000013558437843642186,5.429478026787102e-7,0.000011974094461685074,5.386507172760592e-7,0.000007189805044139398,0.0000058999043590927834,0.000009628294972347354,9.008691618559526e-7,6.474316335750698e-7,0.00011533285301754793,0.00007853311996248759,0.00003231401773419677,0.000022824914663840562,0.000059390994086514385,0.00001819116073552704,0.0000033912347662015256,4.211601348414944e-7,0.00009104294878466806,0.000001999411645529162,2.469695852214835e-8,0.0000042256847623428235,0.000029236113510313558,0.000020894054280622023,0.00042855543388667096,0.0007153479254872958,0.8984944310568093,0.00008202413725658443,0.0000018379010322997389,0.000008617538576149269,0.000044856541891243336,2.9264836064451493e-8,8.543526941045492e-7,0.00003435745343200801,0.00003255332979715308],[0.000015162699794744475,0.000013844521592617032,3.5236448646741325e-7,9.739622961908633e-7,0.000005525850652878087,0.0000020664310109595103,0.00001407934763383096,0.0000035207656670272595,0.00005956053236576612,0.00003935578803683425,0.000001643284943748557,0.000009193185042279501,0.000031911537827977805,0.000026884432799164392,0.9080506310992436,0.00004849185621330207,0.000058918219435541034,0.00003433375534037491,0.000004836150405894941,0.0000015319583524645578,7.388251465622754e-7,0.000012579876023317442,0.000014714800172679186,0.000002701386470073754,0.00013048402539188686,0.0000031687467197450646,0.000059089544184358704,0.0000110184344389078,0.0002726314486732947,0.00001081565797524884,0.0001159429377746275,0.000001224731834741394,0.0000031146918949030058,0.0000036186380641435653,0.000010352259427108919,0.00008276226054644606,0.00001948765749715992,0.000019319931413315296],[8.944400192090264e-8,8.914130131410393e-7,2.7013703113850967e-9,7.222158579210004e-8,1.8717710410149447e-7,1.0598699451718397e-7,0.0000011267017812113628,2.8747547283921734e-7,1.5868570778930306e-7,6.96303486074855e-7,9.557293598286849e-8,0.000018555988044285444,0.0000015346937353818496,0.000008324967459669826,0.9261918636946382,4.632932409063697e-7,2.1622646606920666e-7,0.0000013865803425128656,0.0000012693559399867299,1.323902470712375e-8,2.382351654496794e-8,0.0002995280703245758,0.000010806341150131498,0.000012260708402715856,0.000011219320796480546,3.600140219713483e-7,9.23338409905054e-7,0.000001141498289488482,0.0000014850655498149101,1.155033553700213e-9,0.000002013608992885665,0.000007637495581007316,2.7940715047853663e-7,3.277884390528826e-7,0.00009338209810113009,0.000015345146437577355,7.496139408022506e-7,0.000001442860471973761],[0.0000013310152051129707,0.000012220031463684051,1.1119640282975397e-7,2.579526903013256e-7,7.952281802644936e-7,6.360308892552233e-7,0.000008072104992400158,0.0000011387413668619936,0.0000033152451393831752,0.000002904740723912232,5.285353149684846e-7,0.000009725670123230136,0.000006020783989876606,0.000009661212913592386,0.9307015004072525,0.000009103206559246357,0.000014999390672367139,0.0000017027068155548312,0.000001898938944424877,1.0279167700796909e-7,1.9851627152476e-7,0.000022529459638845984,0.000011208395091068504,0.0000016285415928889033,0.0000013491521543122284,0.0000012433630111328588,0.0001228540127035954,0.0000072473780671314794,0.00016472702801388167,0.00001593681289411966,0.00012279203636595212,0.000020864049218360706,4.341391091766669e-7,0.0000012695707240586123,0.000012728858849502185,0.00001321156335123107,0.0000184741406862238,0.0000031933956375292177],[4.6221684124583966e-7,0.000006063643627137033,5.3147034492564446e-8,1.0026374420636543e-8,0.0000011494022137090655,3.966507266867388e-9,0.0000010347524938775161,7.574879201723675e-9,0.000005850275105453754,6.548494330583013e-7,1.7330671838508083e-7,0.0000013402415098434653,5.352022221537435e-7,0.00003857863305056569,0.0000013868986207662523,5.190460005866139e-7,0.00001468732847087713,5.1741704729189554e-8,8.646796542252645e-7,0.00007930929140015159,3.4306264089876797e-7,0.00013608387303505864,0.00003623328536083143,0.000009281597666739832,5.641497636935483e-7,0.0000019236217814308647,0.000003877321512415422,4.2030675015215205e-7,5.254436672895737e-7,1.2605665356645282e-8,0.9137240858633334,2.747218599967986e-7,3.507755629749168e-7,2.775716353138485e-7,0.00004685831208466735,0.00001838648919493848,0.0000011106307639684059,9.085096061497654e-8],[0.000007770616085407664,0.000004482958832763641,6.97503320691918e-8,1.877449415039551e-7,0.000005307139997178155,2.1363563383004632e-7,0.000024225967117510993,0.000005667823796570116,0.000013280157135275071,0.000004982686121565704,0.0000023682284988884485,0.00003770901817923485,0.00016305068039856622,0.00014856967650323435,0.0000954541867373116,0.00001190909652248325,0.00026897154535863765,0.0000014890963939075878,0.0000032453189226495408,0.00004507372581641537,0.000005078180454847468,0.00010507792156008368,8.821789733509976e-7,8.576495806657493e-7,0.000002542468659219324,0.000020250467966841013,0.0000058405293316028715,0.00002226056511436719,0.00000594796141191911,6.690956452139512e-8,0.8846165576117607,0.00015651977001649253,0.0000014542450875363173,0.0000029318210736982606,0.00007163717345188151,0.00002024954438851454,0.000004891912596093989,7.710537460751413e-8],[0.000010328081385646867,0.000014607984952718831,0.0000031504687620547536,0.000004618422196858947,0.000005602463363401888,0.000007246974272559413,0.00007693279286025511,0.000018993300341611772,0.0000076136786867519955,0.00006615896051353785,0.000038452879067087654,0.00006402586938809385,0.0001966988854133808,0.00022647350934308012,0.00004152390538214362,0.00005761472200783471,0.000004267022303617121,0.0000031260528299320885,0.0003468196370550853,0.000016320165899791093,0.000044309927594191154,0.000014311729280772816,0.000021015895739762136,0.00001732525588158659,0.00005813434163808941,0.000007544220536171805,0.000015641915450880592,0.00005428871141679209,0.000011866202919378125,0.000002454667656528828,0.0005978220582369141,0.8797715297457048,0.00016955422016441075,0.00003104929852132333,0.0001694474682055103,0.00044706978413062396,0.0000577224544927261,0.0000015836555092422153],[0.0000011663103837582652,0.0000031067217553707113,2.693342387933741e-7,0.000001351389341948569,0.000002573931202820113,2.408709992642345e-7,0.000004492383187023371,6.417142916664678e-7,0.0000014718901370885585,6.293404597922192e-7,5.529983046446383e-7,0.000008507064265926685,0.0000032579641030552383,0.0000021101081490699892,0.0000025234641303160853,0.00025604123849273596,0.000026955344661664062,3.9930316209796774e-7,0.000011198633360657322,0.000011876106328615483,0.000007950134268622911,0.00011349393579102877,0.000011461689712641748,0.00009276654304259898,0.000040968180721429004,0.00013305730893127621,9.216031270312689e-7,2.6520539989942604e-8,0.000001922797715135729,0.0000012843692072592153,0.0000012895832961444315,0.00026677595956396834,0.9045876935433486,0.00006666060578921313,0.000004183409912156321,0.000011206974820054563,0.00011409992166607374,0.00002496273163190495],[0.000004448054678376361,0.000005521071194708926,0.000006204493927283167,0.0000482244363526799,0.0000073627970684983866,0.000009837496353902418,0.000005423587226734629,0.000021134584285315143,0.000008297643321348457,0.000029755699958994932,0.000008686900692374228,0.0000023388302560234387,0.0010841197405669263,0.00001246043310304405,0.00001478829923070633,0.000009388426145045636,0.000018178086382272786,0.00007059313019231423,0.000031055107937055324,0.00031128809069947766,0.00006984478627578994,0.000005236064266601144,5.684818850276696e-7,0.00007697039728923575,0.000177193360552643,0.000028249379887133794,0.000012027225574561184,0.00004394673595244568,0.000027118496985668622,0.0004150471003868582,0.0000015882424989251109,0.00003243464415644292,0.8682388535221383,0.00003499273423046029,0.0000041507605700495515,0.000012625717073347735,0.00012973041755322054,0.000018683808731092884],[0.00007408850943490096,0.0000086236723945881,1.1242553149073715e-7,0.000019149287592781305,2.2408082753346814e-7,6.511024766535627e-7,0.0000010568421721168383,0.000003073209044841143,0.000003090667731284694,0.000006629965058749183,0.00003094936195059263,0.000015991755748581497,6.094890663606296e-7,7.785229365349426e-7,0.000053288751272925206,0.000009528281052775444,0.000025228416657876752,1.9999953137850164e-8,0.000010387911631674059,0.000013578768242419835,1.315683979522576e-7,0.0000024364210821989826,0.00015709351461966442,0.000020548165162821293,0.00012800346539907452,0.000028326388089673282,0.000007947885275445761,0.00017414771492660548,1.5160649682517708e-7,0.0008245415669552682,0.000004742313111758031,0.00001207644627547343,0.0002560441931633703,0.9019430517158016,1.5259784830713148e-7,0.0000044066279814343255,0.00009455815371633465,0.0000027056601463287494],[4.424162418354948e-7,0.0000013068069018296936,1.4168091901186037e-9,1.0585932351275548e-8,2.7360998520392534e-9,5.095818443638639e-9,1.9902614538983054e-8,1.7145624455086264e-8,9.278797905742142e-8,1.9472939864996662e-8,0.0000028881730976876614,0.000008850551081971728,1.0771673921637625e-9,3.8064145304668806e-7,0.000006208227359501105,4.077126327495263e-9,1.509348981023831e-8,3.5590911030159715e-9,0.0000020190355788671844,1.7052514360171086e-7,5.9239526469368525e-8,0.000008622468439759272,0.000027102635409913927,0.00008269604712138613,7.295221952258276e-8,0.0000012052954391058755,0.0000013456587937217178,0.000009869249282924105,7.767021964632218e-9,0.000003440758460233874,9.264796367032948e-8,2.785624855267892e-7,0.0000011242433407238405,0.9127431864346809,1.5753475382093382e-9,8.449790736639404e-7,0.00015582718232391062,2.3694260386144182e-7]]],"Weights":[[[-2.324286730856003,1.0581062921567335,0.2302395453346693,-0.43772208307063815,-2.3279600424972227,0.6142421671716429,0.26059481163920395,-0.3881301724974704,-0.6517663007673772,-2.1096483433338977,-1.400068632947459,0.3325209631059971,-0.21565457236541452,0.3079002352330579,0.13438009860296263,0.03471178806386907,-0.038594973969571886,0.014947872168537893,0.5004073242857194,1.3311648183539346,-0.1909663290217784,-2.082540546936172,0.42673926202762613,0.2729065102455381,-0.10717632774784454,-0.9361834375453637,0.7429847248164679,-2.1228227053333684,1.4455167499609596,0.2147867642541653,0.1261725826368123,-0.1971812411906942,-3.4714717648030553,0.42376205989699367,2.2722233859896783,-0.8776329421913736,0.6053765928568952,-0.8601618094892698,1.0054922528341956,-0.6160404887155673,0.1152721683296656,0.7305197610934151,0.39397042867049936,-0.9935859026015555,-0.32636056723589996,0.6005753634993158,0.9154372399836639,-0.44051526264702817,1.8218950328601036,0.6003997626710872],[0.7259730486125325,0.26739242618272346,0.9904422080215509,-0.14319584079834433,1.024967768531365,-0.7615969067474899,-3.181776064627173,0.2732379372126289,-1.6017303743206703,0.16286426149515773,0.62651680441793,0.48396512787778456,0.8359063113935626,0.43535655109444227,-2.2422266977071854,0.3603610529956983,0.8754137856199637,0.8229470591522922,0.015913049324384223,0.866534656507236,-2.065027108135975,-3.3196516696884735,0.7589244338444111,0.8684939438568945,0.11989147818066989,0.7281097683621316,0.9746213210438777,0.33930402170208684,0.35785928976080467,0.1196707328916046,-1.6308086238131412,-0.29058302883391074,-0.6315529831646003,1.0284651730769674,0.7372478798812733,-1.8922115409882048,0.38195807392665493,0.46799789671336106,-1.0158890930247706,0.30623514113503236,0.3301214692907661,0.18432238446171084,-0.8853448240576501,0.030235847112106373,-3.545298238133136,-0.4378417287125702,0.25835378357309585,-0.7125893165033905,-1.527627251732446,0.41261958269367605],[-0.18148370382673265,0.51662916336328,-0.05166235556742086,-0.9405830697478126,0.5949686242164611,1.7355592862430413,-3.8981089159534092,0.900418890238997,-1.8944604108943244,-0.008864873025001404,0.2812129371716611,0.19656608952777377,-0.5650724011314631,-2.047983771995099,-2.5397958076542704,1.0651591839321293,0.2942485117190079,0.21018747044730696,1.009297517222708,1.0258807898577889,-0.3055062653670803,-1.1470784931495934,-1.0990917758550895,-1.2887587945764447,0.21177457398532204,-0.954045962122771,-1.4673862682195444,-0.6972947991149754,2.291578742538209,1.8050517570976812,0.6453503886443378,-1.3708123785601047,1.245876112560616,1.0916262388176639,0.5744478207478971,-0.3686707812501266,-1.0947959438283832,-2.7859973177965602,0.48131322965104456,0.6823883070190082,0.11217734306594453,0.35990022813822997,-0.6236142145073198,-0.3145572850028639,-0.4914904732134283,-1.929976703865218,0.5644939938868666,1.1836099955952148,0.38618070300262747,0.08179472147606791],[-1.6192259977091692,-1.9111867574693653,-0.386293196147656,0.9780755165378687,0.5920785859682113,-3.9415465288207443,0.6622250356555357,0.18746557040574421,-2.701682548940768,0.13026224388778973,-1.1294909473426915,-2.043781764787943,-1.1722691363625524,-2.584343732297769,0.9044206208937132,-0.2714685641526692,0.20344303618901305,-0.5163921368027679,-3.0273774267395392,-2.821057860937209,0.0458739491097606,-3.2908600983037335,0.8286013278472699,-1.6116688939690362,-3.154025474638421,-2.713417358969851,1.2576143974164982,1.9822667612418563,1.105956014496941,0.46087467115717873,-1.130778256580801,-1.2636594972364787,-1.1066075753463698,-1.0291578037917881,-0.2940205681476582,0.1687127044595167,0.2563928949834535,-2.706164846531605,1.517589016406029,0.7398893737020599,-3.0827840879269632,-0.780853517539247,-4.5787858550571245,-1.9896863595649597,-0.20673258705044806,-1.7979048784975193,-7.065390915888835,1.4204482164302292,-1.0867395701930969,-2.5436727518622564],[3.934750494189403,-0.8281329944707929,-1.2152785239456496,-2.0544063152313243,-1.3251445252928726,1.8456674171522125,-1.6108784264447695,-6.7824624513909635,-1.2879740617396067,1.9010671178135188,1.7478347186401357,-1.7923474472380647,-4.164104191324417,-5.427654043760985,0.4158371903476119,-1.9514019571475905,0.4050468689801944,1.853485990864181,0.7788348799299697,0.3767395401070952,-0.02751401066191046,-1.3683912768175057,-0.3521326332104642,-0.3425560141666915,-4.120263011951344,0.5756173615111085,0.3861781078522477,0.7928866321617383,-5.19469932079303,2.83847455666284,-1.2838783046537798,-3.1121066881871906,0.25006945387883917,2.1579024102969364,-4.172092284928684,0.3630017854495942,0.7143499603943907,-3.360536033818373,3.315642236548702,-3.658166710678818,-5.515961550501512,1.9481127786566463,-7.485742582988402,2.482179151117935,0.5497707621785944,1.7940796304068138,-0.7262097122680755,-0.31057482232126654,-5.905016695796271,0.6908835409352253],[-0.23323201580494715,1.3018210718648893,0.9040161050636781,1.24716739923166,0.0744487391745955,0.504320974398985,0.35425029923407236,0.5281302967799917,0.36170739393482443,0.17947490842929573,1.0697993922764482,-0.3068927263766573,-0.11142788911149602,-0.26434973226483705,-0.9474184972442029,0.6819872811134656,-0.034778881998616465,1.1251017081860757,0.9830681663746634,-2.657098709531478,0.6528659024929284,-1.6329862197915197,-1.9810105251296706,0.6113537593757585,1.8735569511096528,-0.16852961673040154,0.016503641528811265,0.5821571776131768,0.6765297299768782,0.8713917712479902,0.6697269939810557,-1.1079075497750623,-1.869192413604826,0.39702085532000597,0.21650462665823655,-0.28740581664505377,-2.5073326246029604,0.6194446556616907,-2.179800814603892,-0.4233363181334911,-0.6422796639276781,-0.6480426575253234,0.5562690731443304,-1.4486950261369274,-0.4558952476255814,-0.4756242121581026,-0.8666376725936362,-1.5808173018637077,-1.1524042180618461,-1.4897397163623403],[-0.2866995035269588,-0.548618843015097,0.7590590551643515,0.024513403054187047,-0.5189662062505661,-2.9216322560713,-1.772365073269771,-1.1358922543989693,-1.092578435417206,1.956688299474581,-0.2690031161389945,0.8096756627575635,0.9650914727808493,-0.19429609725451316,-0.7606269603854081,-1.2733057411385271,0.9188206481968968,0.5498469993953361,1.3793626252290725,-1.5866404377325103,-0.8071800543027415,0.5259657466952564,-0.12058776160618215,-3.40597716015549,1.870550784865895,0.5267045356205474,0.2718244926614721,-2.4257150533774072,-1.931525238924146,0.5624442282555998,-0.006149849498326681,-0.4101961209929808,-0.06489440442565617,0.050146601669993865,-2.9661321766477506,-0.46000021285251413,0.8574742033836253,-0.08890030229842759,-0.058984090395127524,0.41628149109187296,1.9140940083837992,0.0710715326291827,0.7680032869629138,-0.5576924226827675,0.037486037188840825,0.9018512001272975,0.16786372546050826,-0.7507724348415928,-1.5310018517899358,-0.32211947505743016],[-0.5868059180879662,0.9050558139644109,-0.2048617807158731,-0.1751036158075288,-1.3130174524264566,-1.8831631923318781,1.4958900756659363,-0.7377594718860419,-0.896479793161452,-1.8310750387955446,1.390343434865745,-1.1795596757834204,1.3784221139174127,0.4179311758126835,0.19571723102906832,2.239407638636502,0.5429172917136984,-0.04163962636896804,-0.7015166269336964,1.0280527211360173,-0.3752467900341044,1.9880402555995058,-0.5329354114397892,-0.8948611508839943,0.2648727734107306,1.1138581337248596,0.4909076035048362,-0.5343470161429713,-0.24167997853257503,1.1739488865635441,0.5246064134414682,-0.8212945606209308,2.64512329010342,-0.1487410116651306,1.8455885697279866,0.07178540174413738,0.7743872843222279,1.9281579923541972,-0.9056491009050202,-0.3448677155883666,2.369835261824811,1.9981643889329646,2.4224515376730604,0.6410458271220065,0.48268262250642263,0.9925703221420435,-0.86922912623946,-0.043113612969109025,0.8565230009869277,-0.4622660642814646],[-0.2683009493387214,-0.992822276523455,-2.670099631230877,0.6215165166824608,-1.4958380577362365,-0.5515155821018279,-0.42578085503279234,-0.019383537362750072,-0.32568796182232473,0.8396721286458702,-0.8356615531543292,0.2615767790807702,0.8518721699397142,-0.4603368481431752,-0.13217478891822365,0.3685482334416131,-0.6489451382567004,-1.0867354971725949,-2.4971439375790716,0.6003004932144159,-0.8735476917098829,-2.0066469528055113,-2.9492210006828365,0.5629804220711324,-0.298041739066298,-0.06504333318296945,0.8643328781500598,0.09167829894223038,-2.6518437346581125,0.29445711763826526,0.6856821251041287,0.3396644719242468,-0.19349476396221635,-0.6482553956507173,-1.7631462293112365,0.8182433366425647,0.47053745871270575,-0.059608513501332124,-2.0653012693956847,0.4641980779630889,-1.974844978976986,0.15852463901282307,-0.8237446042385788,0.3695350606783202,0.215225790145648,-0.4854462844480639,0.006169883491390254,0.4536817682729001,-0.8314289117810705,-0.47524691659878776],[0.35807438504134875,-0.6850056709455171,0.9888689172551272,0.3257276628904589,0.6136452740782714,-0.33361827621847323,0.7556135577679163,-1.5580336488223165,-0.36879985304187507,0.39015897705686575,0.26024597412897493,1.213951951698992,-2.0016841446082116,0.9585048212969249,0.429806311734888,-0.020112149138222242,-0.6463976564742119,-0.01311285129214568,0.3212135585782728,0.9671801727800504,0.2479408005498844,0.7857620977001237,0.760474921787072,0.6276202679393005,-1.613788676106439,-0.20073919651475372,-0.24973482857743898,-0.9429660865834163,0.49002317449141464,0.41406598896841823,-0.09172647232771063,-0.3957279166289635,-2.1095711283691223,0.0608678885659945,-1.4195068724763593,-0.39198162141977083,-1.1897554564242885,-0.3668864408020114,-1.273242681408418,0.23653629104444945,-1.602189814116232,-1.9004239746368725,0.24439766753366668,0.738873833065683,0.2741140602377036,-0.35136144758361926,-0.595201650066172,0.2767801910925985,0.7045789305611916,0.14021026812135395],[-1.3216018833269638,0.6075585781727003,0.4741808059064951,0.5936380863847162,-0.33513350630658034,0.34388595973973124,-1.0316719054144892,-0.47196601009643324,-0.4696797174009581,-0.37450580871219397,-1.4689600888344205,-1.1169510216334975,-0.776572213794225,0.8175942775183869,-0.9018404672731821,-0.24972100958909152,0.6689470602251141,-0.34426482086056376,-0.7701541856543499,-0.7132790170954469,0.44666686228420693,-1.3747926756420485,-1.22610376559025,0.6931056896840487,-0.4978523709637868,0.342942468039571,-0.44541178864698683,-0.42715105277828214,0.9989249563606046,0.8794322989619568,-2.280838688302998,-0.7071164370592095,-0.13336878098351218,-0.015105711325214276,-0.901899297540906,-1.7404417696292582,0.2699441897105216,0.6163100973214627,-0.8416460870218488,-1.6000665407960923,-0.24783186290434073,0.22133927051893956,-0.6731445789014467,-0.6176347080738327,0.1447381876483822,-0.21713309364709205,-0.714796509367149,-0.7918493912099769,-1.5226873300059227,-0.012826618149874099],[-2.1862311394147937,0.39428048080891187,-0.2951786275202503,-0.7907927558238758,0.34860226730504085,-1.7647820766403812,-0.19079753441253644,-0.9335836926744078,-0.5973656108348013,-1.4826275089538592,-1.853413946218301,0.30610454713308555,0.4070878638418166,0.8004121754849735,-0.10649444978232232,-1.042950501516779,-0.3068737405956173,-0.1338157538362271,-1.1635407211710889,-0.9279713746954864,-0.742655542473509,0.23941484480870834,0.6281987775711639,-1.2582705770380216,1.0257967116799047,0.12436610865391816,0.2457606225643708,0.06147268800680377,0.36701123058134627,-1.6668262240653982,-2.25035586454458,-0.28743984475710355,-0.3346844864672525,-0.8299281611928773,-1.1313154834801216,0.9239140555160374,-1.3843731270449249,0.3749054889065767,-0.9388938331079059,1.101204258632972,-1.3516159954344202,0.39319730200526387,-1.0615460947932938,-0.29602644955782303,0.3777074303653541,-1.863102072950282,0.15172522569273822,0.684169605693906,-0.2216737122222765,-0.4295779014293466],[-1.9932962205673568,-3.165828563312527,0.8877305699374466,0.7407859825811667,2.4132154426337973,-0.8595415758323802,-3.6322031624565008,1.067504890643787,-0.7051905779572896,0.08805609956560563,-2.4091767051855855,1.2299630069162577,-0.23055155559108914,-2.4841134603840374,1.1281573619865783,-2.0108352864279473,0.6358666753347362,-3.6149078688320455,0.5029796564714916,1.3350682153478435,-0.6299811841485874,2.639335102433508,1.3501590901350586,0.42254235752923897,-4.314176147218738,0.15260958062515825,-0.8639502186006291,0.06944351065872491,-4.084990539932174,0.9615101521720323,1.560109230047762,1.9404316975043254,-2.1673714767700587,1.7945133515019291,-1.544439742364707,0.6813374042121246,-0.5485939892928225,1.9442065449665435,-0.45402562898151744,0.2739069226220223,2.2784115325814756,1.6087794002982447,0.47973699411285525,0.10122573691432776,-0.278476058140452,-4.0439744761023855,1.4392046183146845,-2.94210699648291,-1.069688197829587,-0.9096688799224005],[-1.9888459431004308,-0.7417381048821416,1.0867380005564902,-0.15726037990470437,-1.9161467468717057,2.0281981652019154,-2.1886569572587984,-0.5913414264271822,0.09798607104165565,-3.0233923115188537,-0.8662709146626425,0.35095522733346646,0.6067417262240222,-1.876451221726589,-1.173659206769705,-2.9416134651140564,0.993798419356116,1.4673631839062788,0.6581269277555044,-1.2579559489392753,-0.5500725127989353,-1.904991479380714,-1.3671258626619813,2.3207942838529383,2.848240039720381,-1.7166888478220501,-0.11851727192656036,0.03608741247775114,-3.6619293793407897,-2.1950379001890656,-0.6427596998540932,0.49548347822522637,-5.30342367637605,0.30458335019477434,-2.1911444547273375,0.5878100405177518,-3.459914686469515,-1.8009108838946584,-5.849286616782686,-1.6896210566442713,-0.19132435905137232,-3.6873114717356166,1.480195595346103,-1.317484990159765,0.6302444865120677,-0.31729047940301136,1.0789371694760044,-3.5010393062931024,-3.235214607086878,-3.557368391969042],[-3.398674494028262,1.8452441073808394,0.848256077152511,-1.5854673795706826,0.741486249332996,0.9117849824263047,-1.97562163336846,6.861882244532333,-2.265293326070588,0.7566109986166154,-1.0963187708709794,2.348218209566488,-2.397012926963697,1.068031708270604,-2.8528632223991797,-1.3262972431196902,-0.09678431928056504,-4.3249534492594375,0.21044771132126977,-0.6104334525566159,0.7233621818317519,-0.04273911254553075,-2.2843290527578803,-5.137744116689096,4.2225104346811495,1.0274497013753074,0.6272973885542669,-0.3362975503220424,4.830336226947678,0.44389987050027985,2.794978244827286,4.167287275325912,0.7065894049926544,-1.0114298460032194,1.6913333968159907,0.8507537262140256,1.3932282540167193,-3.748743326547744,-0.6288120912154529,-1.884264377578201,1.1211917568311431,0.988441097839189,3.0409104883473534,2.3659133035218973,1.806581541555611,-2.9131987727975632,-3.517924661956895,-1.4789506096638152,3.4347626252029753,0.782697792579591],[-1.350866533827463,-1.7948635309922858,-0.17898825297854723,3.3255253664655093,-4.233129729536835,-0.6183516181742198,1.472660191447121,-5.4743880699731315,1.0727583556341203,2.518663735812509,-4.810140537613762,1.2444919906826668,3.824121810632734,1.1456114367572667,0.8631824469186526,1.7776963904398724,-0.5968568822473841,-4.88327499401724,-0.24395656120551723,-5.723713983545058,-1.213509609070639,-0.2358859409394581,0.5993494632230052,1.566061194030975,-7.661053099500135,0.5193034752927436,1.1650991305674032,0.5669219422951522,-4.415056844628185,-5.0369261700343415,2.2396033809798763,-3.9319946018990115,1.2876304022948817,2.8858627447019187,5.930425480304846,0.929479256803341,2.0097081935661016,-0.1703038329760948,-3.7071135142969314,3.952669841037173,1.1249698906747327,-2.4738558032344766,0.8348469309153675,-9.024228042449414,1.4233699923890981,-0.9285696536584548,2.09102174755306,0.8745376782309676,1.5528381898821386,-0.10313837074579124],[-0.25254843687300543,1.0468253883874032,-0.1632255459776783,-0.6480414302945777,-1.023591869120402,0.7877825761867602,-0.09689331493638795,1.1723994509756717,-0.44593879756603494,1.0798030085196324,1.3588422114859915,-3.048073200031894,1.2156305894537411,-1.0669169843340838,0.8199044725246335,-0.07327792491368107,-2.112254245072336,0.26055333285787075,0.6715525289584666,-2.1998444811569264,0.023176957359297347,0.22547478503140386,0.4588400160092878,0.9514102555309313,0.5506155829832629,-0.9839262753731806,-1.9268346965063314,0.8956093586779975,0.8373615963421916,0.45676549659913523,0.2410339393146347,0.3440759148326929,2.9235809069335637,1.1781245334002828,-1.0283573789928162,-0.4951850140667166,1.4231148581771125,-3.556028534077818,2.3564416787163673,-0.5510058414810506,-0.21999923698367627,-1.0514796023611956,2.3104440110292255,2.15948876238621,-0.5649370552081056,1.1562490997856696,-1.1764297536598833,-0.5126294347845428,2.2390031647322624,-2.1508073139496853],[-0.6445342350113115,-1.2458306395129803,-1.7357166798003556,1.2834272136731395,-2.3321774497017906,-1.0747871622298797,1.777626352722807,-0.8643680632960551,0.7335613751947735,1.1224428480905124,0.643958377676483,1.1835938686036174,-0.019493439067118052,1.3022990994439794,0.5503513232436924,-0.3305787516588788,-0.2097064248033264,-0.3401533044488358,-1.9998736266656199,2.597211602172311,0.5267039706631514,0.16672518327341493,-3.297353582504534,-0.0769288966781064,-2.0901130943973256,1.5639344744497876,0.8014756177781077,0.7650844946685785,-2.21205171082384,-0.474783416970636,-0.7078342755321962,-0.7181838062246944,0.0007146176055743347,-1.8345797839804254,-1.8109023499110992,0.4099677181852102,0.4372371884057727,0.5714714984018607,-1.0452308997501625,0.826714551986783,-2.3248502694276687,0.0040585453998302655,-1.1163855704754553,-0.6970411126237148,0.44636176495633734,0.8248549931187434,0.5245654630253784,0.7436946599519321,0.8371930647722148,0.2306151623487623],[0.7418389553249173,0.7782930095283487,0.5199385990840204,0.4419901215546528,0.8793239025639559,-1.9127923115311396,-1.640199694065154,0.1126886652577757,0.26860718332524136,0.775013235661439,-0.10087833999649393,1.0217705043885923,-1.0604035543288004,-0.1777630589419946,-1.2197325457099952,-1.6581993898564322,0.6675266390006684,0.8973809650054106,0.023667667846306095,-2.9729035090733076,-0.1450117762645253,-0.5718871706703711,0.47169937633645453,-2.4760923632923557,-0.4675945311948836,-0.23538716550733618,-0.098423133268049,-1.935195920280235,-1.4528664254547985,-0.14952500609307443,0.6006913420108435,0.3417847340811042,0.44154568148943624,0.1957137795854284,-0.6754332977218472,-0.36391637746137906,1.0842554768563275,-0.6737479308248102,0.25155482897155856,0.293188292650118,-0.06472721309257977,0.10112465323928581,0.5076841189543402,-1.2078486310724443,-0.21559667284411824,0.8925105814448333,0.8046148337914588,-0.09338779453311835,-1.3216211152007746,0.04256848000848243],[0.3444236832713324,0.4725313418872858,-0.8838376438213569,-0.8423320719875306,0.8959284224864088,-0.42394259369769216,-0.07119719751209652,0.23648749938131317,-0.9040384363450594,-0.763973495859084,0.36140932482075344,0.47453532021678824,0.23280720662489668,-0.6292295246088282,-0.8589233600875118,-0.10481473630206582,0.9282940976196853,0.5782232562385637,0.25363172874025125,0.134665347279948,-0.6697257418693432,0.031742179109531414,-0.12961148331679404,-0.6152754685475174,0.7566575446686918,0.262665026742955,-0.6623860665175177,-0.7048025833428969,-0.6663883562752845,0.11435710650018126,0.8134676089686326,-0.13485200276723147,-0.5650504666556925,-0.4547538452664072,1.0342418356435932,0.5727822358584711,-0.8709353907556143,-1.0644990685095177,-0.3520168682770327,1.0494774327442629,0.022834101637126885,-0.7545370565889581,0.890037182639336,-0.4153153290212276,-0.3891083221650487,0.31514896717047985,0.15177479710269776,0.3131742826440724,0.7201213206293896,-0.055161822676582095],[-1.074319872700534,0.47089191615209736,-0.25313136886318816,0.4308576368060786,-0.7758540509033967,1.7574087356546888,-1.0118064898578916,-0.5821824394201962,-1.2123336718923905,-3.644849858591956,0.6679017187629981,1.5430080275781535,-0.8460296215220068,3.170614609161495,-0.5999225671516579,-2.7517105328841036,-0.4299448578783009,1.50024943457324,0.4907723900709873,0.35406459156191344,0.22044910324942052,0.7062707174817091,0.38803408290051683,0.9548758042931894,-0.06831972538547416,-0.21482130649984213,-2.137657668180292,0.6758471572842287,-2.729135476576323,-4.773846711029169,-2.1612245954899487,-2.252164664796834,0.049197669957322394,-3.776354337884418,-0.9118041489093428,-0.2653097138238073,-0.29464174058768106,-1.8539551845060198,-1.3887937870021425,-2.346769632662482,2.1703523549388404,-2.1642564147343553,-0.3611829943399125,1.46734138417197,1.0044425944838227,1.336491078771565,0.6823630731725226,1.4347824658329869,0.33427788621110244,0.8460159887586346],[0.11783174787592192,0.1061044278993464,-0.9433607256389671,-3.1157632920078693,0.6852607323012895,0.8209280684430801,1.114015282901048,0.4275621126432128,0.8647495026992216,-0.5397251580336835,0.8668373609235329,-2.6051235310281826,-0.6734544083535006,0.11438129350692393,0.863366374548429,0.3008170312224711,0.9538977991590035,-2.0415759645524822,-1.1148800961637613,0.3482869672665118,-1.962948471128092,1.0228018850944913,0.5078737412201951,1.763644748394177,-1.2072160375286818,-0.4828933166861949,0.22940135788435084,0.6083580635067772,1.1243548785317568,0.26758082789625703,0.5895758494893667,0.40968490825062537,1.2058897002313524,0.8506044981194447,0.9470574883550573,-0.4001674185712672,0.9748930760612834,-0.22998314600100958,0.02656010787018946,-0.2747183170197976,-2.719872983307477,0.04113540302937922,0.5305288084900049,0.569270400697045,1.0126636732546628,-0.027319888352347672,-0.39937411417417756,0.3200469530578035,0.8974837521713656,-0.0447372247158449],[-0.08705831155083742,-0.12943847835337205,-0.3663521796517182,0.13101177968397018,-1.2384797842960313,0.8082164062818775,0.2114149974584905,-1.2297213770627895,0.25921360705315977,0.41414943615983973,-0.5664581224644349,-1.8204744402511017,0.24933145508256888,-1.6566031604791223,-2.2570394729859347,-1.6255512764460873,-0.733857659605093,-0.6139067702159423,0.5416846686924613,-0.7187751791257773,-0.5895401641350009,0.7714195859520415,0.6935790538838785,0.791547025552144,0.14445428674218525,-0.766654996780937,0.05315258115414352,-2.18653961002796,0.567164734478283,0.924302184119351,-0.8121094837825773,-0.975471965310748,-0.21925486253734341,0.5482908093159146,0.1112271569895336,-3.046017515915411,-0.0787580199558775,0.652290510494802,-1.3853461680807588,0.1906396890665589,-0.21503655524130802,-1.0229466975339758,-1.152419559739526,-0.42569718175394194,0.2862537827968999,-0.9624517916375638,0.4158887603832092,0.1488644437657259,-0.07379993125490497,-1.3990990193225412],[2.153370937692414,0.29362224601388726,0.396389884060476,-0.5148020837944742,0.7430058056689286,-1.5505378033020345,0.8319803410928531,0.7842925392247339,2.94816432901635,1.17096008943933,1.1260990425653314,1.4057791006633464,-1.8213638656802624,1.227868408890952,-1.251203728981212,-4.3200411352433425,-0.6696345626272705,-2.0675148948386513,0.8445008558330084,-2.5979392794445615,0.4064152668371712,-4.857827939826295,0.23417201913559973,1.3008580157338143,1.0930280028427095,-1.2360766510553636,-0.47522131166663634,0.9397090849214652,1.7414018397083044,1.3988998065048415,0.5215604325472029,2.0762059299572906,-2.3339061254576703,0.9795309663618544,-1.1825036107777533,-0.1363585724068166,-0.8345201025620541,-3.610443000508631,1.1260929182695139,-0.1841146424905623,-4.029338507703268,1.6778629965954504,-0.16298050072746065,0.9378258702779199,0.9185745881215305,-4.049970813551071,3.0217679333230425,-1.193792484399245,-3.6058326935837144,1.590832036545392],[-0.8525594073056918,-0.7606600401636586,-0.10065101072953019,-0.8005419433868833,-2.5142430310410333,-0.055535704470048124,0.2380735727836157,-3.408518159943473,0.14054657232758286,0.9346994233170327,-0.25376174956943176,-0.8630361880615691,0.13515210788240978,-1.58099158978495,-0.7553944914004871,0.7196049563629782,0.3855271568846825,-1.524361834927106,0.8593775473051086,-2.2161223407798025,0.2620777211643156,-1.2156515980282796,0.47140237628004417,-1.751512612999899,-1.2904651689533797,0.6415318540400908,1.6060113797375644,0.38486490635871606,0.6616810838052618,0.5671919278410963,0.07152892326155827,-1.3624683098292218,0.5563560450414994,-0.1056733025148529,-2.85109871336555,-0.09174792367277762,0.03972948926128471,-2.408166414471285,-0.06116228794048997,-0.43767930841041003,-1.0679159026065275,0.6968470420467329,-1.5046379347110457,-1.418036860434988,-1.4638424700156745,-0.34013442094338847,-0.6095469905662593,0.5658843369952807,-0.9345113298730648,0.38368884064185316],[1.0951621821833297,-1.2876185120927537,-0.7781787279897437,-0.9598127158143777,0.47841961198752764,1.875838239481718,-0.8075350894374347,-0.4628270713815053,0.0023285852061418395,-1.2871072515433202,0.8963086663148717,-1.2045250470417657,-0.8859126341532432,0.5691079957677049,-0.10126386619919149,-1.7179739965559453,-1.1827670853889074,-3.0120279352532613,-1.186159450664654,1.3805955881752776,-0.582610434563303,-0.93992339351183,0.899339052150329,2.8972723286202715,-1.928935950375145,0.09512298119240188,-1.091472256688726,-0.2750967983130598,2.312843280432844,1.154482608588364,-1.3690616067118253,0.656922034729464,1.5872844813344364,0.32146247527411265,0.7923193951818389,-1.320043519444436,1.3920669853820742,1.2447229608309252,0.9254310042451422,0.9362107783098476,-0.36493783946678204,0.23734968444116866,-0.733028079277907,-1.4203184579814587,-1.501068671478066,-0.10459399316591853,0.4762211480520679,1.1942793265147764,-0.741170661879621,-0.19718279662179206],[-0.18610584887046874,0.33615805823699363,-0.5991808915664129,0.31359996429697606,0.7313037793200552,0.15536334910776506,-1.0347748900486522,-0.030483073390338476,-0.3664859771273379,0.3425504752201965,-1.5941918842951737,0.8101832296194323,-0.193188455799097,0.28529858970459787,-0.4684287179009716,0.3424342680825451,-0.4346429169585506,0.9446470843332397,-0.5596889838696181,0.3171226457418631,0.22676524829873673,-1.7932669697903687,-0.004745545561941693,-0.0210510615357261,-0.8274288724023731,0.9026392425574398,0.3010734885119812,0.08623402011392266,-0.34104314976028954,-0.6910840293752047,-0.7761994870786284,0.2992428115849687,-0.198627177709038,-0.07885238011836711,-0.47838350170044885,-2.3438424472610784,0.1364664481349111,0.02574537167528042,0.5342227991925425,-0.22802507764348545,0.3210290635191824,-0.5238662195674141,-1.1676866359984055,0.2887010573164094,-3.3468557283412963,-0.7424507886548732,-0.8035686209075675,0.8968356673866456,-1.2444322090791942,0.1463617901767261],[-0.4025163609768645,-2.1265602406507664,-0.11635561359196325,-2.55274896851086,0.6475289182716911,1.3239069418783904,1.0317786561132456,0.5215980996579778,-0.16242198315826462,-0.42104726772268153,1.129738501235327,-0.6788585642403765,0.6791403218263959,-0.40405002881129576,0.9658114919130876,-0.11134409707339553,-0.8572764637282568,-3.119332976061722,-0.44321239078331415,0.02631281613251448,-1.2772839378666418,0.9094957607790745,1.1075600542466033,2.36798183675462,-0.2654499254260476,-0.8414419090991445,-0.0215378483545732,1.6313340701490846,1.113283577826395,0.921372269781183,0.5371621563233251,0.9597544278076003,0.7163826933122291,-1.6322988106981224,1.6281444947024901,0.6307451736822097,-0.34395311803097595,-0.3473373783494224,0.3284998451808279,-0.3196933213919346,-2.457478680782495,-0.8119209874190211,-0.035920337297223034,0.5112272298296237,-0.26671205317441105,-0.8850020258556811,0.2446947559892208,1.0806161430685621,-0.1180080221711701,-0.7943066601422802],[-0.03885556206427364,0.3435345279900442,-0.5667365378915717,-0.16853571337859632,0.373830986072302,0.2630604356903932,-2.727481118932311,-0.23147419370134975,-1.9267208161194669,-0.23546800246699723,0.926074342089162,0.7521872496621689,-0.0209363786388086,0.0775673005954773,-0.2457786188209083,0.31727677535611354,-0.8561825063914298,-0.3981464488770482,0.13546843285696786,0.4836275225951734,0.6019953992090267,-1.6379958133020849,-0.12518294470456523,-2.3167054474002415,0.49069820757917776,-0.4385077816911476,-0.14240873783458846,0.5905404066715346,1.0679789963660684,-0.01931848548431715,0.568232851039802,-0.14010929302433844,0.7387323285846831,-0.8634272445344551,-0.40670656657248333,0.9363313622685401,-1.3215400937327673,-0.8346184556600252,0.4294738494586817,0.5596827414089809,0.9937719362209376,0.13864899151923477,-0.3966127141756884,-0.07013873692768094,0.4207785056162511,-0.926765679853021,0.0686142838690633,0.6113186383036951,1.0324801954968603,0.42615563893767705],[0.8834049152376333,-0.5105995849309374,0.34408125354414626,-0.8609857643546543,-0.46749869533216326,0.8009602247641054,0.5947371454198409,0.7267298312252733,0.7541006211102611,0.8708262289192717,0.8334061546254157,-0.4088167840609067,-0.8685998984356245,-1.197884507295132,-0.9476643029853977,0.8378618569708052,-1.1102551670390355,0.223903753926146,0.6746547524310035,-0.9055717827585333,0.8048163817486462,0.8938655610595316,-0.33381799226267084,0.7016188072102371,-0.09853075298936517,-0.6340837762567462,-1.2865256250113382,-1.6833430641882996,0.09639803649331403,0.8785893822135765,0.5657017006932628,0.2805207412383538,0.7993113920996973,0.5386926140062207,-0.5472504853027726,0.26773465707574284,0.3849596801636873,-0.44772823545585466,0.6446403303824804,-0.8478831556729693,0.7711086260405734,-0.4060343926179985,0.9143794569724827,-2.796767446554097,-0.3159785548751563,-0.07473714301005999,-1.1351153627488895,-1.3313526521202352,0.1287169318895438,0.6730723129316069],[2.3102477634805054,1.5817693541680105,0.08711395135886763,0.09672098580653318,-0.7884584689872693,-0.33095988773160334,0.9684418683174824,-0.8672105624855032,1.1306943856604006,1.0101014838028488,1.0167352774465983,-0.2898922014035057,-0.02113218917222013,0.15540210149970354,0.013473442215226138,1.3002173643146384,-0.23171827225584504,0.6979965299075507,-0.0940317916228379,-1.8392252126509374,0.21114089546239387,-1.5761831407008107,-2.9346650382562753,0.7458504848502728,1.8153864656747711,-0.6000073447177048,1.5702519757518802,-0.019417776571924887,1.862217493492556,1.62547486250649,0.10811170961714515,1.017651446643584,-0.6719687708165731,0.28796640558027464,0.7637694791744338,0.8836713875892321,0.3264466217815917,-1.1762123469522887,-1.898816476781335,1.0667451183011225,-1.5969950600254128,-0.960826497242595,1.2618416407578366,0.23132738608632325,0.15019814809429285,0.08392518488476122,-1.9123381967148494,-0.7584337018196512,-1.4495866182379824,-1.3534103988246466],[0.9862239956849393,-3.0969840170550955,0.709297484226362,0.003006834178330482,0.25243587646961074,-2.5845748982331616,-4.135062033609049,-0.8460138262771632,1.092244625629925,-3.365745889267271,-0.31037532056508116,-0.9198268008290104,1.1031448598640543,-1.5120595364374187,0.1258800408461112,0.1983086122905659,0.2733236397501459,0.7437009939939726,-3.0327367297157255,-3.143533131347489,-0.5305698337648748,-1.557223237613026,0.18922471298798485,0.9655177100772577,-1.3611594815271064,-0.6457788695203918,0.022200162226035637,-0.7165866025020072,-0.5571060146703539,0.8789807944587815,-0.11845255165349632,-3.0396589875186075,-1.0807991381173538,-0.9651576058296022,-0.3059318622669956,-0.7393573487106835,2.0866936029536123,-1.3544896884361495,-1.2082399342541266,-0.1682536635813504,-1.3154847138361996,1.0828936227036716,-3.234906049371568,-0.954803660550854,0.26127373662060555,-0.64756898792173,3.4470476164314117,-0.05184086057526379,0.6529763744581324,-2.9022107487456674],[2.0962190365726667,-2.829171979794008,0.8849981272051491,0.5701204497099754,-0.0957270814322757,-0.19636266669287425,1.644159005600219,-2.2028163258388984,-3.0123969283741365,-1.536977557066578,1.1888591429824917,1.234395334221702,-3.06142010961186,2.4935853067516125,0.502837973371615,-1.8498095762325872,-0.04883481110878026,-0.3480784589738175,-2.408536438542618,1.279562090383701,0.7163866916347712,0.8884146172438344,0.30222195006297464,0.3389481598586818,-0.49343546336236105,2.4990830703498204,0.7055268486690693,-0.4755797871330071,0.5734978178347474,-2.938392318953823,-2.757374396469634,-0.44730440610381184,-4.7641579074058225,0.05142836586903072,-0.7893969383085399,0.38601550589403216,-0.2869785104102366,1.9640665713866388,-1.7700184056122332,-0.2920180636770479,-3.7339152919326213,-1.5497679738554508,-0.13881282774766682,-0.8792852614401946,-0.4066598083501057,-1.3173354013391156,-5.675234222292485,-0.35457172178815605,2.083959143437276,0.34462035095591115],[0.7289705125042878,-0.9180767322472827,-2.249074956680774,0.560528318645128,-2.122650315198759,-1.847990400501866,0.6726803584142439,-1.136605129214774,0.1284849234902773,-0.10012116893513569,-0.608522797875221,-0.39049801806695017,-0.5204886965616639,1.0176184722003576,0.7794960467536078,0.29041703768619836,-0.37591403552543107,-2.0717494843183966,-2.4535974556537004,-0.4952820524738546,0.4980934987083834,-0.5306249939449857,-2.731046887914073,-0.3595831746522519,-0.3239146594945086,0.20868119530491427,-0.4638612204110466,0.7454237322414136,-2.937793779664627,0.5177165502103156,0.6011427884404661,-0.14713358328733814,0.45650014897906016,-0.28824807369235306,-1.577174747262116,0.2881535214370038,-0.24081219718328561,0.4263145345933578,-2.183299432305605,0.7354116568180984,-2.6395991084560064,-0.8989086574705263,-1.7084171962286534,0.592191359647713,-0.6014818236678611,0.40127302095908757,-0.2240851596918313,0.46164397041241073,-0.3435648974590344,0.15488453869460675],[-0.2280000242701332,-0.10603067538915997,0.40961241762269485,-0.6804127826929266,-1.2642625911934957,-0.18609332556496458,-1.1438898472651233,-0.7565054863145827,-0.12571164907376428,-0.03339753443803217,-1.1557278626739684,-1.3703414369969849,-0.7591612448613716,-0.21209735048581282,-0.9428167121509674,-0.31182346861808113,0.2749141211811377,0.6709093219378791,0.3730431137414482,-0.9117399129320476,0.6929902010990598,0.11565060336577747,-1.0072135975606322,-0.9983300722080709,0.29970876617560743,-1.534486336909971,-0.8536003809556159,-0.5176914597817766,-0.7455532896512832,0.13496332033207695,0.6155158044197017,0.0749856196737146,-0.5163806598491538,0.5176479832649826,-1.1285137923857542,-2.008239174138181,-1.9409797604278078,0.28870008633068117,1.3450016602053947,0.42077950739773573,-0.9926959296893754,-0.36869331549619183,0.5542910811850381,-0.8322883914373311,0.446425417708177,0.9074705588616722,0.30527963742168046,0.48354076860332673,-0.8960298454001497,-0.8584101950050144],[-0.15984613130470202,-0.7545813015235957,-3.911908564782984,0.8226015341318309,-3.1216998007042585,-0.3124046823360341,0.7968964217150554,-5.122333749323999,0.5189671305544111,-0.5379138095061001,-1.144070134739754,-1.7223528017446301,1.0810107463057597,-0.5912424297292536,-2.7972479895544673,0.5559076789866477,-0.862633662980977,-4.702585596413376,-1.513294173643996,-0.9428864303989258,0.7675024588097533,-2.1491294749128675,-2.2370542332916923,-1.7123010650236539,-2.5912082672880086,1.36511445125435,-0.28487901196898985,0.002951495397875384,-1.599398819362315,-0.47149270511834657,-0.8917089487423783,-0.5514475595933102,-2.550054332274796,-1.0503294763461297,-0.03565874469800475,1.0318797137384192,-0.9430913957639717,1.4934407504435907,-0.8578400778662687,0.23312696129792404,-2.3825730279721187,0.027073297430088517,1.3804030995563477,1.42007899892861,1.0886459744489274,-1.13673521712497,1.682269381901384,0.724252280000764,0.16777484998034595,-1.2232149699323753],[0.843243153112927,0.052150455568773624,-0.06586502958069963,0.19642000635248982,1.164944875157114,-0.7402904845441046,0.5641977935835315,-0.8767832890544915,-0.012317807817896593,-1.9958357084606102,-0.7346565325783618,-0.9714214674444831,0.7372345292513262,-0.8994345148822378,0.39623628017089546,-0.09101234338891111,0.2115227512278537,0.3226106264158298,0.3514061095830153,-0.17780224316419416,0.8856423869218973,0.10320914944731018,-0.4991776062141472,1.3340237713409915,-0.44135614751859675,0.6871792595805956,-0.3935475555820019,-0.13799480073179737,-2.277742317679546,-2.2334320055123746,0.045316006771215105,0.16976338217657913,-0.5662600677450137,0.047233752926230034,0.4361603141805582,0.7222982487185773,-1.0639065750973014,-2.008458040167307,-0.07609808943534255,0.9650079311807801,-1.1077902987204264,0.267462281443396,0.9440046292244963,0.6056052358899253,0.3448435602756787,0.3484566326245953,0.8799822883669932,-0.9488691394855271,0.33243614970314744,0.43747082916378355],[0.4098386817377917,0.6518108833861612,0.6119480135203458,-1.5322260884956864,0.5345638116034799,0.5029931939144611,-0.5736511811236886,0.4273344436144168,0.5570784567364633,-2.576268403790505,0.7344699811016747,1.5403490147851577,0.2855342776292254,-0.40474992382400726,1.5064322073329197,0.5415200234737136,-0.8048172724464946,-1.7146368800607894,0.2922923496948218,-1.2917238582914503,-1.0732389687205812,1.2158078680894426,0.13115790975408906,-1.3244568606369083,-1.2755455631711907,-0.692861837356707,-0.39779847319398676,-0.9487198103912139,0.17529635336585267,0.07657710464731843,0.513686444081342,-0.1907033369937349,2.7381249499777405,0.38461070049648666,-2.2378557908884873,-0.4071175486744248,-0.9124785102435296,1.0637989582127312,-0.6176579167656537,0.5030419597641484,-0.528592915161215,-0.27115375333309805,-0.37746080800280596,0.5343861529813196,-0.3304119250935454,0.6228785278222133,-0.5201454692480834,0.9365686385887918,-3.448963625723686,1.1628642747468632],[-0.41077432774188266,-0.1767070015007345,0.6883049792543029,0.7855809229339789,-2.50912975360992,-2.349271321968467,1.621663144553365,0.32075576533313604,-1.527287787894758,-2.1116485431161607,0.8503719420895446,-1.840413937574794,-0.15805182161991407,-1.4827487039875036,0.0982256159957178,3.3239050193088047,0.6730778193951563,-0.03690806786563112,-3.3734422966700923,0.6957356469402494,-0.4014523844083661,1.5162102505822657,-0.6613405263664343,-4.376719655876432,0.8403793198692544,-0.3970864261435307,1.0918851346730791,-0.04454843438378375,-2.6845825416860576,0.13649283475702098,-1.8590840840066227,-0.024458772944133303,2.5230882091185,1.4587345333066835,2.2599710541136098,0.048280809220721796,-0.04255879151445106,1.9020124761996975,-1.7212938058611416,-0.34821445598426204,1.8738128543383272,1.232831039256533,2.1291987001188177,0.7692542726150652,-0.39978692526933907,-0.8487333383479474,-2.069796416650069,-0.2701592552590483,0.5938209259636449,-2.300935387801381],[-1.8664577503131683,-0.3743658439916862,0.7620028941334183,0.6013843001305961,-1.5523351835408046,1.14236579148605,2.053312588913739,0.7396171252068054,0.7998883054414809,-0.20000918190245337,-1.8234814267568635,-1.132086172320312,0.08412872930561038,1.1088949213174657,0.5273706730500782,-0.04869743026011378,0.7216713414938133,-0.21647967498606738,0.26919398929768634,1.1515356724591157,0.8793195049859782,-2.253504143803734,0.20599726133109247,-0.4855419108239741,0.5500249510514825,-1.1072639898494516,-0.3813545699475524,-1.6548785257523244,0.11061003263648742,-0.1136251635973334,-0.8179658818872098,0.09599614629130952,-1.0391389350167792,1.143170841527444,0.7426253258377113,-0.8902629860822695,0.029393055584594617,0.7677027453952197,0.22083429473619184,-0.9200398744297816,1.7166143864784766,0.6482879350488324,0.8544526177737916,-1.4327244496217653,-0.20458373735081772,0.17753061852865581,0.4481418240269584,-0.7402647873902906,2.0078843004858102,1.5601194212366232],[1.0449192647578605,0.6033230512112621,0.5916011003927931,-0.10381047023132249,-0.8469802549154043,0.18001304303021234,-0.227649673740832,-2.058396900970898,0.4349163642909154,-0.15567643833225245,-0.5048647521031127,0.6327194727867708,-0.9386663764759389,-0.26099302690144055,-0.17944392185872413,1.3216125523616082,-0.712033670070084,0.8316188617625533,0.8040911106632436,0.5486359970225327,0.7866805555498787,0.18948826688205414,0.8174658247986828,-0.3063540321445595,0.407811127278829,-0.01677184824577772,-2.6580162278886346,-1.8986015029115357,0.004349313597982716,-0.16017146954989245,-0.5696985066757303,-0.6797892099676998,0.9853548917691826,-0.4723049791057301,-0.5927584897929374,0.34778163967049397,0.3562668158912005,-1.0169843721644636,-1.1558418269528117,0.7101356771159975,0.22564375561471678,-1.05920509269153,-1.6159185569205543,-4.086465586843502,-0.5460634207475882,0.3624658658913223,0.4786930423245032,-0.4867056739921459,-0.21759360074862555,-0.3765368593551019],[-1.5034608549804767,0.6154552897885619,1.122364242269289,-0.24865692518471533,-0.15748894854638953,-1.3626879332647306,-2.0269996666604575,-1.180087773797616,-2.8592543909832413,-9.89994800119124,1.3497437673351653,-2.3086605718898614,-0.43225714451014935,0.05437983251433926,-1.227363344796343,-1.6114618272404564,0.5283242144213677,2.2011577682814774,1.3627558600992309,1.3078908681381016,0.40352512670904234,0.6763321794749901,0.6441753816325936,1.4775030336597506,-1.2883231585132127,-0.8204027179907757,-6.6234834850252575,0.7739123179897784,-5.919670673201191,-7.830943130169731,-2.039140418701496,-2.439314209848954,-3.5619185904909783,-6.1927896191740315,-0.019136674141429534,0.0841328407045984,-2.283591158928608,-5.2453106331099875,-1.813528319516895,-3.0192592162584693,-1.309689491853445,-1.4299945325020103,0.9246941617881516,1.0472139339428732,1.347955502411844,0.5063045687493478,1.2433788758034419,0.11211490681627148,-0.31927917101439046,1.1127005829126575],[0.8017515939349616,0.48460590416829075,0.5056938377053527,0.20849352516497632,0.4980600799697124,-0.04094307500351541,-0.7053311213533526,0.6709593961636734,0.10200545839818295,0.1534346572096314,-0.39197523996320893,-0.78815769473425,0.6848206748610559,1.0041549960231893,-0.5570742609670206,-0.26546536398920945,-1.4910266693928869,0.14828682975427013,-0.6013736224016989,-0.06757545301562602,0.8151626646082949,0.25604824580565805,-2.0734710762903297,-0.9685377289407981,0.7527938398829207,-0.21206952719380714,-0.35091702429532445,-0.1867891633825286,-0.4338945683555815,-0.5201596820201277,0.773042849088698,-0.7350659831046028,-0.10243219059708793,-0.4488263702750842,0.08400409029405317,-0.3825286003513053,0.5316267042598373,0.02420110348601075,-0.1714710931340532,-0.672701352830261,1.4552085992183474,-0.2833165668636187,0.2645033386029281,1.1342975846664884,0.08323377952040963,-0.17934358460672545,-0.9716893418263871,-0.2661846869673609,0.6741960568623232,0.20589247150743034],[0.04451517931810758,-1.3944609556626886,-1.1167045604530061,-0.4849592907981959,1.0277009031543693,0.20563328985358717,-2.5401467577813803,-3.311451224910794,-0.8787898262212612,0.31185705827040644,-2.950441677098631,-1.4754492226775875,0.767906507826645,-4.145620040907266,-1.062017317900009,-0.5332598156984835,0.17430292969226807,-3.8814623757911186,0.702562660513168,-2.7569452908708074,0.28108332430264354,-1.4789746433490791,1.2453673421645541,-1.8468256204453992,-4.028159379794686,1.3077117735261412,-3.3374457215146727,-0.30430356220522653,-1.9892156850580751,0.4335949617011295,0.34095750069054614,-0.2835576946161252,-4.574296070878528,0.653318247050002,0.2866126008245585,-0.23240102771590232,-2.3173469778304376,-0.0019979566887009595,1.205678597029855,0.9135991238077874,0.49874956900639555,0.11398285949211097,-0.24627656624552222,-1.02657530271553,0.08809645827135737,-2.9195136603313023,0.7829991961690161,-0.11102259585081174,-0.43584631012802544,-3.2622403598344096],[0.34377250227965284,0.48098311862184784,-0.19080693714318123,0.8667402975314363,-1.2801421905747623,-0.25151397946602805,-0.14740806603582657,-1.3022052618212379,0.7076270321829006,1.7087195489566869,-0.7746988812308734,-1.9381160912991369,0.2750660590534478,-2.5917353993370615,-2.9119102403631425,-0.12076525934183757,0.5380769198842394,-2.508302684762668,0.9352462677972998,0.6952303162135024,-0.09024266246849168,0.6794206340846557,0.704566155815285,0.589360169637387,-0.49513611404392277,-0.5580110348802115,-0.3910123806919625,-2.6070809146848593,1.9370134759724122,0.814530751009808,-0.4613113201400623,1.7944348918339088,-0.21349173826642576,1.20210659144337,0.5445912660189891,-4.520794251616082,1.193391368857417,1.1062039721167434,-1.1387999097277532,1.826646619634012,0.4538130416599452,0.050898861443526885,-0.23113142589311653,1.1229988200942678,-1.3437452394781937,0.28919327358312563,-0.45702400005862553,0.8615011313349488,1.9177750093926347,-1.487766453764629],[0.6097010791746134,-0.26016987773221445,0.1693740094435689,0.18572508788904682,0.9201528564392052,-0.7310335646345789,0.8322497755000665,-2.7212885709879813,-1.7889100699852374,-2.582047538770051,1.6381348077037141,1.5522863792023238,-4.039957625048941,1.7902566095548453,0.3320950254956108,1.4852276673802922,0.4573205000054966,-0.749060715190051,-1.490771965498407,2.422239953290379,-0.6066531106122891,2.8500915581841,0.0034514202992758604,-1.2362498061292613,-1.0232504366340271,0.061959081440233536,0.12138905451274373,0.5472587694602175,0.12519794814609583,0.4113552871902,1.0819337400005697,-2.367082235362455,-1.8894379979397755,1.2632235526579074,-3.7421326456358375,0.27820635572487357,-1.6564992751314616,-0.2738569407092182,-1.5082374315938865,0.7150587444627193,-2.333681259333014,-4.135744241410223,2.5576545017861507,-2.9971302650114175,0.5492753474604309,-2.8330226946507575,-4.496290503821421,0.011812711469165838,1.2062010785823147,1.9189732605646148],[-0.7366530172077602,0.3714830116298582,-1.4182732191314245,-0.4587994920023174,-3.185608026105865,-0.04216746829325402,0.7130266968413976,-0.2940589940173737,0.6508026543794518,-2.2241123648234957,-2.1516625434532406,-1.4875313800259988,-0.21681094195491174,0.8258823096391551,-0.0435422920145896,0.09902432891338635,0.7407607392807622,0.5838450338355927,-0.42871294553992606,-0.08065001694946287,1.0595248931543921,-1.2934677365991292,0.6097332274189344,-0.6238159145876429,0.30543872892581325,-0.6440665679063365,0.6659601136002673,-1.9868597966444888,0.2696415715618278,-0.5707741998710407,-0.02779574476382904,-0.345079434484242,-2.4701757582252832,-0.6971814461838503,0.7335954462566037,-0.48122991708465607,0.009905213687949586,0.5980702949497632,-0.47724869189539376,0.5615915663609914,0.35459288429376096,-0.20836927306095865,-0.1656564256351257,0.4005257656924506,0.5737491198801161,0.04800532002538197,-0.021620638938945315,-0.5462578891234625,-0.08720063058396829,0.6351163803064968],[-0.21115533140955076,0.7372053379760553,-0.5409740266097042,0.754921194066649,-2.707859628763843,0.406223956022188,0.9879594939254343,-2.251093371819779,0.5543851932656094,1.1930634700674503,0.6660056630425143,-1.9433508734389953,0.39280704147964146,-2.885191852628943,-1.7231928309017381,-0.5898928479144361,0.6639629366450961,-1.973181989404911,-0.4521552800668952,1.6043823863930817,0.9858569408884638,0.43040756346851744,-0.5314011183600426,0.7580291822948909,-1.1948675268788649,0.5610827464168544,0.4034698730370207,-1.5095674898655018,3.0124195927004145,0.1226079834021783,0.6151284517151938,0.2432046114184813,-0.37429863516606693,0.5942738080489549,0.36713601155716413,-4.645575099822315,-0.38512070056290065,1.2603470453291121,-2.5272127109708795,1.5031166436541372,0.9278894840959893,1.1472338168894747,-1.3373960879034423,-0.2269680181728964,-0.4538081270044765,-0.5175550542882258,0.5886006054734665,-0.3122537028357825,0.6741060520523695,-0.7912652192997824],[-2.8727052031799247,0.19073035568384294,0.6759777146163882,-0.21524826687476442,3.4550206282963973,-1.4765963019860657,2.4811595623569582,-0.06257991641582251,0.5178696936854907,-1.641066761510603,0.947344816261931,1.2424441475142856,0.9045670980677101,1.4915906364608864,1.2501336600543305,0.545777094907645,-0.5557210472928916,3.646812041603096,-0.8243685072702899,1.3983273019360773,0.7894179485711538,-0.8998587944967004,0.8320401241155612,-2.048913531526629,4.200413532572899,-1.2221505339755319,0.17621624589266788,0.5914771778153928,3.7795599294161892,1.913721825431044,-4.280410638488674,1.6540096202760817,0.8449475360978429,-3.1544991266898563,-4.3986734285062346,0.8284346344163291,-3.3904314696559443,1.881222738439909,0.8362561057158525,2.55386059487957,0.3892399721700188,0.9419323627524406,0.17723340930586626,2.577140637471891,-3.847623008565648,-1.099752843268675,1.840357904488409,0.013756500716521894,-2.4877518714839892,-1.6539637104400453],[-3.1347645656482634,0.9746511770420614,-0.7608652668579646,0.6586854925220446,1.5845160225265096,2.1796218159907577,0.4641455864953015,-0.08963434232877232,-3.2846700527440946,1.4556740893119773,-2.4713332168187634,-0.12537728633311226,1.3563847503095567,-0.12938477413371263,-0.7881435425173522,0.6708075899273027,-0.55369014291171,-0.6690019430844809,0.661442161863884,1.7219353890556215,0.8155495296500654,0.8617444772678825,-0.26933592366098874,-0.03304670268240008,-1.2602932176616233,-0.26368415847473103,1.5014579895715203,1.0730826390508614,1.119761218382265,-0.047993355238333195,0.3799105469759742,-0.6296911439735319,-0.8292104461890389,-1.7922847826917434,-0.2951304607353486,-0.15477531386731228,-0.8698715266386883,0.9658017153359171,1.9614293536662144,0.7112596441461351,1.3279882596089734,-3.2287505449054894,-1.9834798899785668,-2.8517483769972096,0.15673903717567045,1.2945371920687498,-3.2335662216859076,-0.215908792230363,0.25199918803249954,1.7956623594207117],[0.4428896790027818,0.6715975213719774,0.680840009258612,0.4603748071286192,0.856506193548837,-2.463318611899666,-1.7995312883760373,-1.5184985954562442,-1.0388096249044843,1.3541316999549307,-0.9175021384840802,1.5130183518410238,0.4516861768681993,0.6161821958163378,-0.16223180531663714,-1.5187996304783926,-0.24360287776087203,0.8637757238817472,-0.052264303931474,-2.34197366188381,-0.15864868326926113,-0.8064686175669765,0.5219828833057629,-3.6863778724127187,1.2926796908416425,0.3976139772845434,0.2825449720249473,-3.018577492954073,-3.7872739868648133,0.2225302256855053,-0.7361113141699964,0.25033748131434636,-2.2088289974514144,0.8074055237850418,-2.7255658362776587,-0.5554317531564237,-0.692474688591932,-1.1666606494864167,-0.7127045951677609,0.7271963896786944,1.4837265661894294,0.0636129188725684,-0.0007568219476018488,-0.8576567959928892,-0.6436365834850168,0.7006698725654366,0.658232212547888,-2.705864769785117,-1.1958108761881614,-0.5860090314834014],[-0.11936762568020462,0.5397695562895762,-0.2310702961345818,-0.49955007997210726,0.016748978069788662,0.1829940125933864,-1.6137209254709286,1.0000633999330957,0.17159291783455738,-0.8192818367876881,-0.494205112696354,0.604655490709683,0.3444369619809838,-0.653980521618161,0.48891338012736746,-0.11276603090766144,-0.8559456444757311,0.9566021779423318,-0.5713746350894616,0.2805275161698472,-0.4710566361137096,-0.7374644825070008,0.604140223208898,-0.08649333299056629,1.0293161321010351,-0.06454042898038206,-0.20569545273463413,0.8299272766447705,1.0680814990488745,-0.009045298217205113,0.6413869403502941,-0.30018087098339047,0.27770119713487407,-0.3288044711762315,-0.04174834668214949,0.19038840165841173,-0.5116483102276088,-0.8047204496776572,1.0471748092366249,0.23804995623470443,0.5899824705231277,-0.1555023898528551,-0.25349134869138473,-0.36502820912362827,-0.6935675311672717,-1.707445973939563,0.14819958440735756,0.47181006191234065,1.088383333322574,0.46716710885904095],[-1.271443596554378,-0.7033093366116278,0.34472375478487016,0.09482736477366023,-1.1831183134729908,-0.19876657696374248,0.8365766300310338,0.6636706153457105,-0.47519668506693274,-0.6548379280122579,-0.5776470471792656,-0.3854482240370235,0.007060412057485372,0.37760460864290885,0.027967717579195233,0.7628803488354635,-0.4525304306983698,-0.7250494112719962,0.9961316259446074,0.7794019874292692,-0.5931812277819047,0.3206365483216906,0.43114918561968546,-0.6610235380871364,0.08618698048397237,0.11075367717571814,0.3460431870408554,0.7665301647916072,0.8192189845235991,0.49063199045252076,-0.13515692620902064,1.0346589372348463,-1.8035936653322413,0.9779833600822061,0.5722205057431716,-0.6237780247580781,0.06565341552479263,-1.1210730417191128,-0.1388972934666795,0.6762729965494954,0.15121674618910486,-0.36257459576767437,-0.41930440746033754,-0.13873661025249676,0.37181183375004606,-0.3050508011043034,0.47220271113507173,-0.30273131782133034,-0.7962475604695131,0.7024316886768729],[1.7264397993352438,-1.1831133527732736,-1.1311597831452072,-0.11614769379774878,0.0653094376473616,-0.5200369913586252,-2.8421121451925035,0.6577739112324261,1.6673500909571366,0.23038047898319533,0.5433538867928634,-0.3518774458967702,0.049315911690852046,-1.2886318864841857,0.29944021981240426,0.31505474054731514,0.3067341297103711,0.007637351431982063,-1.6972456663320648,-1.5201876503251979,0.07388754090538205,-0.6539174013969938,-0.1794253941860556,1.634833688615546,-0.8743887997588711,0.09692239558005841,1.0565310951579037,0.0219170294471686,0.7228595681113548,0.6731125350803516,0.7679003613225195,-1.3012382098084736,0.1328632451845503,-0.8818668510572848,0.6321070995949888,0.2102761875594404,1.2182447832720682,-1.0013900047245285,-0.38879961957145526,0.4428421782975588,-0.2567222605540826,1.7572363124638284,-0.727589534677424,-0.2725470757221088,-0.08284705792029975,-1.105273409894516,3.043500179534361,0.6526614110950345,0.6301305090665207,-0.9143444703226321],[0.9663323863370263,0.40669735424401415,0.8010176861698901,0.19227906757315016,-1.8086240057121208,-0.43289942169593687,-4.248639940569958,1.4122711971425237,0.623304548117874,1.2693156579234335,-1.3087728099759601,-0.0605589866831784,1.2464647348221745,-0.4066479788943102,-0.3941223296416042,-0.3523318885995433,-3.9739163657928134,1.7894331793807718,0.22955027486876972,1.3883708543097153,-0.5038660706050002,0.7501341695575073,-3.075914352881507,-0.924085229453668,-0.28628122137488154,1.1092672823762328,-3.2289197856299205,1.1075467751963173,-1.804699468840269,0.1728108184239432,0.16289789992007925,1.2225481920064323,-0.817000194478967,-1.0213608277299677,2.002750887529931,-2.8287164400852154,2.8846551990071005,0.513779644045551,-2.5952744572743573,0.2986552612814249,1.9621182443529497,1.357273565102639,1.312316298272879,0.47563331797788044,1.0945821342004975,-0.650669452242535,-1.0286335409732723,0.720526385147269,1.9738475215056046,0.666500899518765],[-1.5154213594526937,-0.17490233498091737,0.7101758408816005,-3.0134004089011515,-1.7870124799665865,-0.8150934950263589,-2.0963687667375703,-3.9860670791005544,-1.5777805425127773,2.138588740612619,-1.937039359337791,1.0146597482315975,-2.781817371364039,-1.401986340826095,-1.1296657633888136,0.05390258341035685,0.5806572751242286,-3.910990911733747,1.2185869097029516,-3.3999423560651287,-0.13974986749441437,-1.1888510169064423,-0.2838965306763682,-3.397068541787532,-3.343220993935521,0.6717186124611918,2.5216174851476167,0.4479023332197992,1.4096697394969882,0.10047468771880091,-0.7806246419458106,-1.510121064090332,2.137827249188087,1.168990647731504,-0.6698794361286547,1.66261421309137,0.2720451757719399,-4.324380029245918,-0.1818132499944061,-0.6591610032961638,-2.8377599029582474,0.7141581251464727,-1.6482313958285555,-0.3373843483629138,-0.6027125631304087,-1.916507721373983,-2.456740988568612,0.2090831584598909,-0.9587355788784199,0.8086080159306466],[0.9174332362747497,-2.2546753096212626,-0.7080205094360633,-0.03297702278103635,-0.5147190263782444,-0.9626776123100441,-2.018200852640286,-0.4997861005359856,0.4947894150418055,-0.8545936914493377,-0.044819232978943586,-0.5839624825836132,-0.32206035018984863,-0.2284573623109378,1.4659305198529518,1.4754481179115424,-0.25009627129064643,-0.4425853016156225,-0.8345737271624629,-1.8079503800408379,0.5068719679506326,0.5064712874370046,-0.609963987405966,0.3653133133508767,0.35947188999761415,-0.6217273265453923,0.7366988529298704,0.8476150284031715,1.0684025523930238,-1.0329252307641417,1.0274142782917697,-1.7825020971150765,-0.6124704941737248,0.33773611858884833,1.1006165596649975,-0.4979551554170351,1.3746765215054604,-0.7317832907026938,-0.6101319763488305,-0.44350606196952325,0.6108383601740786,-0.20162171102649581,-1.4369451910190385,-3.826403587517154,0.547325587101953,-0.40776249453911595,3.0162413071653438,0.019404326534710442,0.965635173790529,-2.028804031251759],[0.8031835761399525,0.3553748075291585,-0.6985069369183801,-2.0482603444512235,-0.3443763663381851,0.5541297574148557,-2.726964095436182,1.3106749937813267,-2.607430222701173,-0.8281603488294891,-0.8419550740098236,0.8242381335174096,0.012950802417400107,-1.347250665439697,-1.6334961396737804,0.8974137544243572,0.47732004238468856,0.2299380204459378,0.8060630585944719,0.611660816788604,-0.3179939340543813,-1.1698763487691646,-0.5782063583481543,-1.7334497240754156,1.5208933316897104,-1.6829507584863463,-0.5671648720108687,-0.2954446468723796,1.620508956758486,1.0083229935325704,-0.6587557311068368,-1.0705751355954756,1.1379313945055118,-0.7337478096976879,-0.5941338140699536,1.0133540860278925,-2.5181033615259962,-3.0507788499791015,0.053030044842451655,0.9166598973224793,1.0659577103175453,-0.0685641754779346,-0.5634858497835951,0.1788652312270631,-0.5215735924813685,-2.6611430378448993,1.1785550854996476,1.0622915060357154,1.0347527920036146,-0.790176703371091],[0.986404650930192,0.5221155885636289,0.980477761890848,0.014354035243585505,0.007008982775698082,1.2234601174834998,0.17774136831004658,0.8372524804276983,0.8059439073654759,-0.5590651303996801,0.09189705523810696,-0.3530176503052855,-0.6450597923657119,-0.20997944539414043,0.7047440293503616,0.9487263050686061,0.39394662435940564,-0.08969826205058767,-0.2583227900885615,-0.24628441851333013,-0.016886240217201393,0.24692503992869863,0.30826896685902955,0.9300870126652949,-1.5927213451831288,-0.7243332699939443,0.7251727547778124,0.8611726965663696,1.1351407546063597,0.8764584658604825,-0.438985563459937,0.10784464505662018,0.478274543052357,-0.5359354448161143,0.6076939204692436,0.6380213769967511,0.3876736376053366,0.8256393198174056,0.5199417611743546,0.5087948977568667,-0.4665564936995017,0.8594682583701594,0.04656522456381877,-0.16995353437451663,0.20668096702696764,0.6180307813804765,0.3398123927066421,1.2098542568559296,-0.2788068631869592,-0.7028793771612641],[-1.14191496270377,-0.9339988772110205,-0.5089349078642412,-0.3213623777350691,-2.116938095176659,-1.049863711229662,0.39219938833588414,-3.976327903334513,-0.4006015631921714,1.667958210769569,-1.264312539126505,0.1903220507584652,0.5190392997033391,-0.1116501347025316,0.808432222559833,1.3407931896190322,0.9313005182347799,-2.812219743364705,0.632079284115854,-3.151989643198431,0.6131963089385697,-0.24544656360937944,1.0975336640473845,0.19186541528073167,-3.096851788035057,-0.9455395630987086,-0.8384637192257742,-0.6666220599113326,-2.1806153249865288,-2.6891751682617584,1.2261262229887826,-2.03679627676085,0.44344067698239364,0.7678952433330933,1.2421973845929641,0.7078108473241009,0.0029351544834732993,-1.6763471781984651,-0.5700691343896944,0.9718371912408702,-0.7461644899396919,0.06814470751838811,0.5149085474672206,-3.6832182404632294,0.01721382442758586,0.2247624853214382,0.3642665239271694,-0.07734232714563069,0.3936009812359567,-0.16121581891427025],[-0.0970806684781609,0.7781383027027658,-0.6796074956017865,-0.4110612216384407,-0.964589800349635,0.4702587772266783,-1.929321144419612,-0.6004546269079868,0.4294889661715153,0.7456332834577313,0.2251254530011347,0.550080203053441,-0.49686647201014084,1.0425932933253048,0.15550100848630072,-1.1171394100400658,-2.252503198274288,0.8820929037532379,0.8459515325384304,0.011220229457508814,0.1595799364980157,-0.580712539774618,-2.107966727837207,-0.9578837340375044,-0.7547394464172327,1.2862289973307115,-1.2139478959237886,0.0011054587491830946,-0.056207516998519634,0.8666197055068865,-0.5054777164331814,0.8640120143147773,-0.15049743829305048,-0.9628918059516594,0.9071445938786963,0.11339626734119088,-0.11824702833782084,0.9999529934601686,-1.5462283599222817,-0.6343067064548162,0.3937220316886588,-0.0035672100144611904,-0.5445721598783936,0.38095147032818794,-0.27272988698939316,-0.3770039823282465,-0.1287369879477688,-0.06154664219516059,0.08747588260012887,1.1569250327951086],[-3.9773841532885386,0.9383054165803371,-0.2160524955431042,-0.9791962955894667,-3.627744539735149,-0.36947177476771,1.3512214840503234,1.0291324079117095,1.0805002148575125,-2.7072943040256363,-2.552857507567735,-0.8942385517913235,-0.1547635761002968,1.005159683427723,1.2324265243989536,0.7834091960912932,-0.16387065907689177,0.4259332412320007,0.1576675141029409,2.839157905920559,-0.27881614259874216,-3.066881035922404,1.0658396734346325,-0.5651994496422087,0.602186571208087,-0.5068903077689803,1.1051949830325256,-3.275728563915694,1.437387376992821,-0.3890365950744578,-0.16209727397416313,-0.049194603491968934,-3.4962105566702864,0.978261880266651,0.5967012746315745,0.82188532400583,-0.6148637738845906,0.12881925103798272,-0.18771807280502065,0.5194517613935795,1.639841223102514,1.5849857416364024,0.7236653138457181,-0.9256193992358681,0.22072019658308348,0.30012317630115837,2.3769436038749587,-0.9145819164815412,1.2877911145632175,0.26813950930025876],[-0.4827287277889326,0.6836486839231819,-1.0336802148814401,-1.186055680540388,0.23765669354502508,0.9618912725216697,-1.9930457458618627,0.5690921011874224,-0.35192262898768434,0.26334665478255637,-0.04383332598410462,-0.4395091679634087,0.8142437902958141,-1.2576329206003891,-0.8288919116965566,0.6822358423991509,-0.7209033630657937,-0.1417693561667516,0.01873658035787056,-0.01098950615691585,-0.49572238461924817,-0.73234449359471,-0.2992577459640089,-1.9069919796357546,-0.41142519096794944,-0.8050475937377171,-0.4793737484234065,0.5508433065866476,1.0970651029244745,0.8156173174787081,-0.5879080141248334,0.3084244319724832,1.0445028348768668,0.13431164833216622,0.9624416669482786,-0.3250751634520127,-1.6636424662619922,-1.1535205332508252,0.26036966368835357,0.7364991714503004,0.3635501272897039,0.5936606495840789,0.5884885147930473,0.44777166377856703,0.7342534427911523,-1.0072659073790775,0.22759728171982765,0.14859820594980896,0.4237024320338169,-0.9202803322028936],[0.1324459868313877,-0.2638009397152155,-0.06575686815042922,0.6762255058338087,0.989090937808947,-1.5519737907380686,-0.2875664715322328,-0.49872407018198583,0.5059070669377156,-1.641394665605719,-0.3722115146892622,-1.8710633112241195,-0.6173273860575781,0.16834284462397187,0.23556353784968817,-0.07793579081552313,0.03099493517512081,-0.44221539488928135,0.7837203730052539,0.6232898565479001,-0.5860411819718958,0.7257934377748897,0.6724442142426668,0.2146123491519428,-0.46892554479598636,-0.1874088101645244,-1.312348934650994,0.6317660346020776,-2.155897144828183,-2.0392086695865332,0.27869272763295944,0.48716591334567466,-2.118952265330411,-1.973664153605935,0.12719045998200904,0.4347063043161486,0.457885604036238,-0.7219521887487425,-1.000681057915633,1.1836861732436685,-1.8309680682270695,1.0736647987961927,0.633214536366036,0.47592931966580065,0.76627873054834,0.0527528400288216,-1.624353145432235,0.20271643493312633,0.3750997223750981,-0.21601499040347186],[0.5033516441577472,0.282633032618763,0.7325292059491738,0.5487270441684156,-0.3635964889004697,-0.3382899386180644,1.7263704540304856,-0.584046579361958,0.4175480751690824,-0.6585903453997518,0.4683168165860141,-0.27439371006293956,-2.1337816281709006,0.5205087986321463,0.729847778501849,0.8790071436127789,0.4451436741627761,0.3633312792702704,-1.0997676878581324,0.3860807730232419,0.1814016471155044,0.5548941772891033,-0.8578846782887833,-0.24978795113830524,-0.1977282564560445,-0.21690361256978283,0.8556419519224278,-1.9173059675194901,1.0041114473543604,0.4356218895591782,-0.23121959450758517,-1.865437056508565,-1.3767674051050158,0.7841629318645216,-1.6864304882163255,-0.6263274445788409,0.7460531946856479,-0.09471179808468631,0.42079090934643715,-0.8032761130243395,-1.571069318119023,-1.4598209807600286,0.8410285130791421,-0.11709682605408643,0.31888900303544093,-0.45101376506662133,-2.4919888527642953,-0.06825735357756009,0.8548854168084147,0.4258137553976605],[0.9620709050128758,1.0848541190264525,-1.212904649606898,0.8450521832933137,-4.533520964766177,0.8386603237586878,-1.7279366109294452,-0.45953724315154215,-0.3773762573292525,2.0361386782799924,1.556127114491141,-2.8426709465378117,-1.9196356834496358,-1.1697790304650024,-0.7686325044129902,1.8764469184945214,-1.1456446844651327,1.269403791618015,-1.351231126881322,-3.1631960147869953,0.5951190764415419,-2.2071690147123832,-2.5336908495960997,1.296770540641774,0.7480567097465463,-3.392433329532357,0.787103133302239,1.030460902037415,-1.5451094570289285,1.7370122862297175,1.2480656997954998,1.9019330854920353,2.036791873486767,0.923211990475229,-4.924392263610983,-1.3349061304712817,-0.7816303542793496,-4.686635446399326,-2.4737966773435875,-0.1750401120164111,-5.781780396331236,-1.6910562898424253,1.612608854247467,-0.8684947202059247,-0.783925090153275,0.8597815383180212,-1.297295559614504,-0.7500455760890354,-0.8299435208075153,-3.470904970453669],[0.3974234055356803,-0.7662258677417717,-0.7231193454346512,0.01506131679617062,0.36227502467432393,-0.4677633983123439,0.23324620055035328,1.052148771714492,-0.6670160798259426,0.8375194875531172,0.35682283005351784,-0.3275575245626032,-1.7677600375715405,-0.3069625276922713,-1.5162598647690855,0.38074674557978233,-0.026400620530121648,0.3697363600426013,0.5390495241983786,-0.48360738484979754,0.15765982842436374,0.3157475376845827,-0.06195131056417064,-0.30648181347200304,0.6203143285926945,-0.27989861666361265,-1.3250128912118884,0.1014277658926315,0.919740074930765,-1.1960223407778345,-0.21878575279668339,-0.38474186280745276,0.8809013780388121,-0.21254104572091145,-0.404916204203603,0.3638770919920417,0.03334680536781282,-1.840044793135158,0.29583865379181423,-1.0881810766187472,0.7419027247804934,-0.3806436794757033,-0.9415292090980671,-1.372554615935406,-0.3137893464520195,-1.723209460649627,-1.905155516299106,-0.8393737922371927,-0.19763742065699813,0.6774183004907609],[0.4445471110597029,0.39512442682474597,0.23766691146812577,-0.45416824408517203,1.1008241708977151,-0.651937281731282,-0.04051828533916224,-1.6467682739376668,-1.1264335890866286,0.4537091668497194,0.888625950531245,1.003119193792836,-1.2492270855972747,1.5122692710943215,-0.7443734494161857,1.174617352945268,0.7855733837796203,0.3325021706330854,-1.2020244104659408,2.0215185143934824,0.27566492226579703,1.36138094793237,0.5271756757366904,0.39904345506397676,0.03700837224288351,1.5808387744417305,0.15061903802265672,-1.924040964128706,-0.72824122431579,-0.44425780422538586,1.1195560004444145,-1.836724845397189,-2.0276230672822795,0.003779962666879939,-1.4697238001038029,-0.5156633574631972,-0.14395288151790817,-0.7333702962807961,-1.2993380364135352,0.9330936080613352,-0.1865530159305339,-2.1106566343351405,0.48994054945763194,0.34000943969591796,-0.6914115664407195,0.6664220522984712,-1.1145464870815003,-0.38226053627444834,0.19483499541874472,0.9007546987513639],[0.2634791036480749,-0.2756973145528931,-0.11286408286064728,-1.8435685090981013,-0.5015460499816273,0.1277457978004883,-0.23817510484391446,0.9549835243059615,0.5692478599510986,-1.5411072989670986,-0.44461699669704974,0.9984515728372189,-1.32262516530929,0.11612183361777448,1.206793231334256,-1.2245172421059771,-0.7683697405689048,-0.43652113744618726,1.1403200525004316,-1.38574452096628,-0.5845754885283022,1.6609653249955783,-0.0660885255034081,-0.7632103796798891,-0.9210785975004336,0.31046886834961257,-0.8085898941469293,-2.407466450913154,0.9864358471036891,0.17364228016188576,0.8894745671075133,0.05346480688902402,2.453381339836354,0.19202806524682278,-1.5456990672156532,-0.21256314786163538,0.7619116209430983,-0.5329624225993062,0.29872188355513296,0.6982655119734031,-1.1089291294413455,0.35019662635703674,-0.4857381376107482,1.0341201075269815,0.7349901977855998,1.4132370925430882,-0.3377871416179939,0.38891643434229023,-2.463954887836071,1.767548462539403],[-1.1390867525922745,-1.0951360383872677,0.6037641774029027,-0.6399162515670301,-0.6868594848568333,-0.3489478208628449,-0.22549624324384568,-1.105396439824248,-0.743145093601162,0.8526033680218956,-0.5984173670499372,0.16195749563397757,-0.5276483950610552,0.4310507674508896,0.5031167154752624,0.5543135640832815,0.8849894856099241,0.41885733664784036,0.9218753607917558,-0.8966590164653518,-0.6438131464284303,-1.3462034397148686,-0.4240410257637889,-0.46789917299953276,-1.2773302448914832,-0.015176532758082192,-0.02766629760710644,0.6075087850692897,0.40498085046977644,-1.1347935622674437,-0.47219621548786345,-0.11297879723382406,0.20578983200622517,-0.618522350070336,-0.03546472956043824,-0.217948227554432,0.8115708435876005,0.30245237326693364,-1.313780003740387,-0.9313984665268954,0.43095968983667443,-0.39699357803730523,-0.6832212280359746,-0.34912096971274553,0.06449090578943346,-0.7821237953944945,-0.24712510046629474,0.031531393604581154,0.09233049336212434,-0.10198549284314738],[-2.79255700469736,1.6024652915999475,0.28185207760222286,-0.6856606820980351,1.0165919069480192,1.5178439048935501,1.3625352020381416,0.9323883844861509,-3.197233806357842,1.3619527751719516,-0.9155313585496796,-0.40507165045255283,1.563763371695266,-0.49841483482593757,-1.2339010794597187,0.17659158350594026,-0.7350195589881464,-0.9677827156115806,1.85255224275336,1.2858035854369965,0.7282851930620672,-0.4420022817059298,-0.5023162795127505,-1.515423076934411,-2.6766451102458317,0.6123835693528416,0.5451347302768027,-0.28094214351317126,-0.7391553957395275,0.41450173720321565,-0.014255522443603546,-0.13060109951517107,0.09665174446446566,-2.0145304099571417,0.7144015973904191,0.39204531053913927,-2.4420785200484407,-0.8840461712894244,0.9300006650908182,0.5306308195264868,2.876426482718739,-1.56240641306561,-1.6693079617771147,-2.161127081615832,-0.5306556912899254,1.474315473194821,-3.8001403277670316,0.7315481240928465,-0.7282040803966261,0.7488105357151805],[1.377209767451184,0.35926039012667815,-0.028268324347904734,0.14360511956074498,1.3261687200707,-0.5492552102331375,1.33476152909766,0.3459774752526439,2.762969082131028,1.966380307067639,0.2508901760422736,1.1532173825912573,-1.3175839473101358,1.3053229662316976,-0.07999514778915283,-3.110791816398227,-0.7568625307149579,-1.2618311000661953,0.8625139855428223,-1.9408145904303966,0.5645319675756849,-2.7884580636308782,0.4898303739893182,1.679416691964191,-0.33462415002418405,-0.3201408925724149,-2.3196054473947783,0.6399393897169132,1.7038342919911145,0.9696459874821448,0.47327566143189087,0.957276069201257,-2.081067184810152,1.7515268555014245,-1.8972164652643306,-1.1877965709891143,0.21584351131249638,-1.1541141165943674,1.0651190775718415,0.2509682481587737,-3.2343846716449716,1.7422999210979093,-1.2407566558177978,0.5490197077817477,0.5372941088475394,-2.225124638189172,2.061074428798326,-0.9662631892112096,-2.5852642967455113,2.5638564918360074],[-0.5790539466166629,0.9740979568360076,0.8787284607235926,0.47709331394677446,-0.1038644941781599,-0.9007885241538912,-0.32526575912859246,-0.11044972609981027,0.030649716606581435,-0.1185716464739918,-0.8831490349286238,0.3804587129903364,-1.808585613378804,-0.6269298667857963,-0.2189102180690879,0.9895317430546943,0.635729439728493,-0.5291948346230201,0.6671802542415713,-0.19361916294975,-0.34668066964472066,0.8524336243772506,0.815763660613679,0.3135567818963343,-0.20172246849629474,-0.8534012094655257,0.12755840307153585,0.11253977701303443,-1.1273508136550887,-0.4829836581586688,-0.30909114047973796,-0.4858304391755245,0.5059201756685096,0.7387584929753753,-1.6577483269215763,-1.3077488831689836,0.10366796280424305,-0.15554261619141904,0.9401873962724252,-1.4776415694048217,-1.541846564280706,0.522035291962111,0.7393658578606476,-0.6490535727617552,0.3740470380881993,0.7399962147863145,0.947380516376815,-0.1829798363243487,-0.9152346315035269,0.4982419904672498],[-0.022140094236415653,-0.3792780033672652,0.15130802156319612,1.1946196811601244,-0.07015470307196979,2.36080407989912,-2.25065933808164,-1.0791119536288607,-1.96099473748809,-0.42714396873738564,-0.0868360835888039,1.9960433152119872,-0.9379340360332549,0.416651194072055,-1.1290716038282715,-1.586924317280186,-0.44085026778022485,0.1598487334571603,-0.17350201332375953,0.9247129196687328,-0.5773902571996908,0.9039638226962163,0.23150178981768926,1.1605558597831556,0.8579970705691984,0.38889037627588624,-0.7351324516634351,-0.5973509790064333,-0.09618593094523957,-0.7745505118351393,0.8590064736317576,-1.8360656201126977,-0.20454521293435468,-0.6338108061665344,-0.5826283972479257,0.9145209384719037,-1.1135920312347805,-0.04272192797254397,-1.290510581074669,-0.42660325909990365,2.135706983383606,0.19322117876027364,0.3274501179760939,-0.1776019014298704,-0.7052302602108907,-0.39380137816694555,0.1529178723387742,0.534221251942248,0.3312754930021837,0.9096824025583647],[-1.8093701458018725,-1.152128281031551,0.9999307011582066,0.4149216131157147,-0.9245158409600222,-0.7648284655706082,-3.8393153800013993,-1.9055183271421317,-1.6385273101654327,-2.8175575502743895,-3.450449549524235,-3.9375771252800122,-0.5848529100304272,-4.2881029544778215,-1.4731894367713565,-1.6728974514252346,-0.09959659883399608,-2.651447859274267,0.0038964787547915913,-5.679871186638353,1.5704289354657335,-5.129734195604147,-0.11827566511099401,-2.609168954548534,-5.241726211252778,-2.477340556425143,-1.9211060866117469,-0.5596894470623838,-0.6110736261326662,-0.1271630638444586,-0.4929702605209297,-1.8428879658633577,-7.693453163848349,-1.7090120990865891,-3.1201342734072464,0.8789679365379754,-3.900887171375166,-1.3440045251249868,-3.5177215499522836,0.08673988681364772,-4.555101697822398,-2.520284798075477,-1.5930506720728537,-1.977297950450326,-0.1374343919992897,-2.1315555196217604,-7.876381624002838,-1.5679057981110578,-3.6522829299679325,-3.6684978011196994],[-0.18255588095878902,0.5198267218179731,0.893974564955447,0.682236653535377,-0.8774195010934479,-0.867855383522635,-2.8903438803673986,0.725069129922577,0.7895283787535954,-1.1821714981763554,-1.2420315417861751,-1.2597753071866946,-2.7903802086834,0.7924254983641837,0.8454297741558809,0.9498139232125045,-1.5620083374714262,-0.7400730224321243,0.5163721225800703,-0.12570240682036782,-0.29118724508748056,1.1920089107889336,0.5032376313616022,0.6704784873499944,-1.5323564442441573,-2.3532610533325067,0.4155841594018871,-0.9937601873764208,-2.894191050305229,-0.44827238241892076,0.3896867775026648,0.7661913195655586,1.0751081361859243,-0.6525281366627168,-2.633265070549008,-2.718722813127984,-1.2930188261594215,1.1827218257745973,0.22074097389399766,-1.237928103214195,-1.8395576230898982,0.07871963225546542,1.102283970182705,-1.783354756770644,0.4621420143665829,-0.0741690163336497,-0.14956064183299483,-0.0860058312734416,-0.3176734759230155,-0.9509282574429244],[-2.990945585067511,2.63506119029164,1.6127373844133628,2.304039105223901,-2.969063829526123,0.32969984651729234,0.46567507523051227,1.126237252136088,-2.797504671923636,-2.852785578473547,2.1016672229908293,3.0675764073998733,-1.0960092939855364,1.4348509350282121,-3.8068007924266545,-5.175070701009291,0.7650856142387852,-0.784487884514516,0.23608240246546433,-0.3371310897714316,-0.19537518753871222,0.44313375454042414,1.7641133115308911,-1.425160341005115,1.0560410486278942,-2.8671736955339195,-2.317272648342799,-1.2756018899170607,-4.227371985106071,-1.9201047500712431,-0.8340486840094602,-2.2465759825713194,2.2121896198795503,-2.462465034698205,-2.1501656065069157,-1.3521603519929415,-1.304576264267455,-2.0270472523881247,-2.3884145134584864,-2.998275343127145,3.31927685475749,-0.6427770343993938,0.6831638779093864,1.7501543361379146,1.1724594736155673,-0.8059663615896214,1.946792077641665,1.987080778545948,-2.3185036882235535,1.3340114449851128],[-2.744956098003781,0.7366676282662652,-0.5632349092667834,-0.7668597888776223,0.9149802182224893,1.1039088956244303,-0.07632293860503467,0.8195528317741514,-1.5687527395868868,-0.04547058125902131,-2.8411126897872205,0.07084489090256331,1.1913276030283755,-0.820021526247943,0.7014689642484272,0.4547875086780163,0.8002923082293881,-0.9765686362632353,1.1178331955840628,1.3922237734511977,-0.22339274214247537,-0.41631744103367413,0.0970723568127971,-0.7492446129819668,-1.794660239365212,0.581710969263305,-0.07880746917748842,-0.5908832436251651,0.34466224442268545,0.514745943910907,0.8635129559171166,0.3574270715496685,0.2981653435658333,-0.9700935915481723,0.08367535197582204,-0.7359491217960071,-1.1807494151142384,0.09302322491792696,1.1864392856180002,-0.3232064439926187,2.231079894485268,-1.9396660432751467,-2.0079003870745735,0.1133458438618284,-0.7252696390875749,0.7360975133875985,-2.5477926794978547,-0.034781152839379874,-1.4209564310679526,1.5474356601428507],[0.6858090708688527,-0.6164234535991323,0.9800693387599823,-1.6213349147257292,0.8864849194012046,-2.1486965281300843,-1.1306438571788697,0.5546323591899353,-1.059401299830409,-0.30376095371219847,-1.357465406992163,0.12596042386018078,-0.1650669170089205,1.5584679642665422,-0.22839271611126016,-1.939359879919109,0.3956194848926097,-1.860596788508483,0.07676460337681842,-3.4349517475517617,0.2890609412676278,0.7760334633445612,0.26886781213868516,-3.9249524615997515,-0.93504889669493,-0.8370019910348249,0.7808604168817088,-3.4423208339094016,-3.0042300141126748,0.061653392151883986,0.5890673674339262,0.9302470125970178,-0.010867824051370758,-0.11316754495181863,-1.5519146582669212,0.46805073735533337,1.0052748153395077,-0.393081467701964,0.9123788104847519,-0.034562411636210606,-0.4767500798193746,0.46421118639219944,0.23162088542959722,0.5138646380641676,0.3560782798811998,0.8829277979517542,-0.36675570451522777,-1.029944226155946,-2.6460413785068226,0.7731213533943053],[-2.0000843093697713,-0.2638291619670616,-0.5403156013009788,-0.7920442790789927,0.7568627818425753,1.1223531111144172,-0.07387279580095513,0.16157330782588794,-1.1833072746344626,1.1814230863664974,-3.4448489967754146,-0.6091050268717887,-0.36805332815146746,-0.006367585555742749,0.5861162493552278,0.8733442014890951,-0.20142028198087458,0.08219916364809492,0.936802938899888,2.3219451637181137,0.07579223588238115,0.7352281365017711,0.9029632194045246,-1.2424088853709798,-2.3105783207346966,0.9484731284136426,1.188818570263179,0.21475715231436213,-0.5181436711955734,-0.06673506972527639,-0.07023618817414372,0.3647953981933662,0.6272379747887439,-0.8680687686424045,-0.5434539980667292,0.536096645255593,-1.987850828803984,-0.22622242243340163,0.7340035272034255,-0.2519977214931432,1.6055564515054088,-0.844876941551653,-1.8757318147813615,-0.7965097799638058,-0.4704231914899576,1.5294146468358678,-3.4243152500659324,0.23347052145387773,-0.8967823127435643,0.6828969225191682],[0.7156775066184639,0.000005834397003008293,-1.8426188398180465,-0.6793684099825364,-1.8055561692764008,-0.026702245366182074,0.5844729564431752,-4.172964640033757,1.1938635086710256,-1.037179207780282,-1.2333127537828832,-0.2413448545586488,0.22174323751544567,-0.3043471232910487,-2.277652007962282,1.2843663931484501,1.1438517411313494,-3.3157826068475242,-1.492815703494047,-3.751558360049978,-0.16264515903716872,-0.7528511398818154,-1.043749211778795,-2.065254391613256,-2.64524328049295,0.3532437198323614,-0.8992689390511398,-0.739625134578634,0.8255782647625705,-0.010001779810228558,-0.9097460267708423,-0.47777727589148294,-0.032661544952276446,0.1673499986583502,-1.1667509138674022,0.016661026582532105,-1.6224723426320309,1.0104681441342793,-1.8808514129722809,0.9016067787850341,-4.737093349951045,-0.221665400220854,-0.04898766873596359,0.55593817450146,-0.45708136792142706,-0.13698122856926956,0.2742701202942816,1.0866957879852313,-3.607655657331121,-1.3887670058547823],[0.9021593137215862,-2.020507286450567,-1.1432377182602322,0.7056741004941876,0.2879181397111744,-0.013125788141787616,-0.3003371186138203,-1.1463296991338445,-0.23996353599098458,-0.09373414388185372,-0.901495899755296,0.5075945347669537,0.17943166035149233,0.44722509834056495,0.7384722175811002,-0.20808567694110158,-1.8605740353607496,-0.8507212132630888,1.06542312330934,-0.8650046046004252,0.9166045256818871,0.2818367579732718,0.42475296883503,-0.8756513401713837,0.6255240361362775,0.4778319281732955,-0.8275573495158323,-0.31477023940361526,0.9110758482477789,0.4494088355188647,0.44294714210198594,0.019054342209722443,0.5582612229714182,-0.22917186628696387,-0.6668804653887317,-0.262687891008447,-0.3394450470043942,-0.06410721755740333,-0.9939329677815152,-1.0464794593089193,0.757073363057317,-2.265415232447732,-0.9091982605666926,-4.240166990792439,0.24532141136014696,0.85028863091153,-0.662623982536217,0.5420115690684639,0.8755874992452783,0.24912550488344823],[2.0026566509420434,-0.9877159845696216,-1.5344689353663177,-3.5520015865809973,-0.6360509671137579,-3.1589646586471365,-0.49046740856861815,-1.9628292922346273,0.875959771499382,-4.371635992519781,-0.2854710163581736,-5.026388113047113,1.9881139696448982,-2.083659471778501,-1.217579726328926,0.3992445848905905,1.0972821913525819,-1.4106498669305587,-1.6427918012129654,-0.5884419394264055,-0.41924376855632917,-1.4306523604512638,-3.2097992564740596,-2.3455292232131035,-2.5825919620144004,-1.4792401659161734,-0.7000735139199579,-0.9573470358855998,-2.139188975605015,-0.9116732213173109,1.7254285029579493,1.0365917335510109,-4.037572768630416,-2.97058448696238,-1.8495221151200638,1.0826058506170726,-2.6396372189066892,-2.449603924239175,-1.2555717818109462,2.167485293391985,-5.4091759288659755,0.6166177924118351,-1.5651333181270144,0.517339413856438,0.8439089979269678,-0.5869829885725928,-3.065768583975037,-3.0063595645759977,-2.841270423362864,-0.7742767045853894],[-0.8150734548230087,-1.2448056670704108,-0.3256981156425474,-0.8533853614973187,-0.41284400162918505,0.8429855855745414,0.7365303487079241,-1.4799322589053623,-0.5072092633469797,-0.6191591473040522,0.019895718873217998,0.16123970351611397,-0.7538310559555221,0.7840151503092888,-0.20711332233907817,-0.613618146057559,0.32731603721052716,-0.5088075985920081,0.6540829917458673,-0.7439073134809571,0.8663503652496175,-0.03356347128268692,0.8443475037291639,0.9943726860692468,-0.32285433116354534,0.6110602350584858,-0.03270175772902125,0.4677937783144566,-1.4598034369040243,-0.9451251052043467,0.34443800028866733,-0.5046547751281959,0.828895606357578,-0.13405383667080187,-0.5914461881432668,-0.2741606339821197,0.8151377653609723,0.15732943510226619,-0.01929417133134365,0.17473915958828007,-0.5910956305394262,-0.37410393135950387,-0.561270708171635,-0.8901316955500637,-0.2175753422124129,0.7374383148683729,-0.32409867464989217,0.05623911648419192,-0.5397524613555335,0.787664794058825],[-0.4871065540266504,-0.1569501622413639,-0.47927926356567374,-0.8590125804117502,-1.4675095651670764,0.6908182868403221,-4.814186511326576,-0.5456063797360367,-0.26721743608764126,0.0881503819308121,-3.5570939419180885,-0.6445861413767684,-2.765589335580476,-1.308283915680644,-0.09956816139877196,-2.0271261399261906,-0.6609192125435063,-1.7519538596701691,1.0619240465074666,-1.1742371146230197,0.6969499083424598,1.1939611733891613,-0.18795656064555208,0.17096239113404407,-4.113248340950191,-2.2511530974360756,-0.5646349143810693,-0.2407891164704232,-4.320388248378828,0.3932102845752738,-0.2316391197830912,-0.9258389989720592,-1.432281868270122,0.5035409552810222,-2.1676394735817976,-1.2409602560797641,-2.2470050945231095,-1.8775614642569631,-0.8982990520069768,-2.919512944760327,-1.231779097664633,1.0735742713862897,-2.0420161114525497,-2.4238315229303136,1.4488563745804222,-1.4891108845467533,0.5255817124545752,-0.42305952375668837,-0.7067249282877077,-0.8990683993813834],[-2.1573444407648106,-1.3863992632849564,0.17127013141666161,0.04380162263076757,-2.490303039020696,0.5135005685990819,-3.694408812686815,-1.508003376749885,-2.365040965177192,-2.221968380625646,-0.08459630442431496,0.3250139988545414,0.7298403736387772,-1.2658021075901835,0.07208902163615671,-2.414915627924109,0.8362150413063322,-2.2730925961028063,0.03532163676015529,-2.5435839542288883,0.8624543199860956,1.0939919956980582,-1.1805863584723395,0.4921355158468884,-2.3438529122542886,0.2724134170711129,-1.5462437485370244,1.0637249681411856,-6.161380300585663,-0.9898088661201259,-1.9480529385609504,-1.756600836220753,-1.773411485465249,-1.5911826364187371,-5.290663249131031,-0.4876516634532593,-3.6696628484539175,-3.058198100349022,-3.890155464660828,-1.8796997897100975,-0.33799957222006793,-2.780876439402526,-1.1963295286552151,-2.1045477116819526,-0.5419402746666494,-1.624096721632801,1.3247304108398994,-1.3461581058080936,-3.728276475679703,-2.972714255917661],[0.8981745728105389,0.3414703318635241,-1.6831475563118363,0.4105674866205023,-0.11435587274740454,0.5652098940418726,-2.267182685910845,-3.3524922839482336,0.48058988971132394,-1.0708588675864281,-2.692935646579813,-2.5569183819378356,-0.5507553314777768,-4.131139643271442,-2.3689609042493562,-1.1304496261024455,-0.5545575107660257,-3.843801556645485,0.576532480393781,-2.5686123038868343,0.823958245270532,-1.3986956600284612,1.4455323821075203,-1.6638614781661856,-3.237020125034634,1.1931580399102601,-3.2556816553620522,0.5395104171051174,-1.0849217536525237,0.8009576383480044,-0.35144984114827665,0.004350367755578764,-3.7376449681842687,0.45112261448468755,0.2735264578994854,0.7307032275999147,-2.0014083737351775,0.28765212384419614,0.5496781935448581,0.5963412683211908,-0.03210683467884127,0.3402982593210801,-0.6888479362483513,-1.0642410217781983,-0.04700768024484995,-2.8492540120042835,1.450706681953007,-0.8493517580319567,0.9358624378329097,-3.8801924394590634],[0.35587504011658094,0.11483896857634728,-0.09015209724527236,1.3491542917265196,0.13611810162017274,-3.634788679737018,-1.7215144861191278,-1.0106052949639637,0.5570264398355514,1.6957420997915706,-1.4326478034257961,0.710385803745866,-0.18976680177941585,-0.596757620363527,0.3338839190435926,-1.1938332638383473,-0.30349921044184425,0.6382804970945583,0.5686680239991739,-3.0195176708673954,0.15616839567528626,0.396449179339634,0.14955947577012826,-2.5220327306179597,1.2419691862341702,0.7133459206368008,0.6509678234073586,-3.5039815489703066,-5.363612649079365,-0.8762663026079245,0.13143776088101425,1.0173562459038328,-2.1855088686197526,0.34972966458104565,-2.585209595053245,-0.9397333349061838,0.3103133927428207,-0.20550258073802774,0.19444418387041257,0.27951843345081,0.7057260622684286,0.04420114818111928,0.977497579518785,0.6946523313910149,0.29566977322493626,-0.012017560163815532,0.5648442931608897,-4.739717639023528,-1.5174450504001529,0.16168561462499495],[-3.67835741981551,-0.4380457124336991,0.8433809539983428,-2.6454118571911835,-1.7060967706242978,-2.079830925624491,-1.3081917092941586,-3.3467774255469864,-1.909137593586516,-5.876291756875782,-1.208144830752243,-2.6837874018966423,-2.9832268016976538,0.11351872065595174,-0.5717485319187112,-2.010813615981528,1.606781516936052,-0.5970816897174757,0.3927810598527149,-1.2773264077901154,0.2507196805727698,1.1411198983166542,0.025228515743031654,0.12133731349768039,-3.20318300709668,2.4125027712561757,-3.189012647372028,1.1398007126510987,-5.10222088073544,-6.035893114861388,-2.120095143080309,-3.4227834652333944,-2.457684584977981,-5.17069822766608,-1.2147779809615535,1.2391224109399948,-0.1641179749034795,-8.894502878735894,-1.7216065429580436,-3.4166162794844497,-3.221986633420734,-1.9087476054475592,-0.609377292824693,-0.8729805899149242,-0.36228474732186156,-0.13909496978620206,-1.2813435665706325,0.4773230387938082,-1.582014955503737,1.843744105192263],[-0.19865100098237784,-0.6978205002474633,-0.819607329519681,-0.3942901430076924,-0.4285304785791211,0.014152880771883725,-1.6558874467872682,-0.293311885066225,0.4976620844362835,-0.5548675920871422,0.751858226302322,0.19749082212063734,-0.7793940027963747,-0.7392845988276927,-1.1974562446653207,0.4223643291193769,0.026893698674096803,0.7236542954864623,-0.23599055248596615,-0.6143905991309087,0.8844948833055802,-1.25269712863372,0.05599550016707482,-0.6640157146740615,1.0314278842635451,-1.4991101946703937,-0.29658002229821295,0.12758604310409152,-0.049579390749872124,1.4339270153610326,-0.582560111257792,-0.23437074312943038,-0.16358523183365511,-0.1446368267837439,-0.34376783797937877,0.8854896168683353,-0.34224210697641194,-1.4164943457916646,0.9478748227601174,0.5677841023197686,0.16322378812299457,-0.1120412242333183,-0.11973138111954067,0.12622552309600443,0.7080241759309751,-1.0686844993868458,0.8144117977083293,-0.46439059687891293,-0.5705085881484179,0.7855413671889456],[-0.832997193122287,-0.629424565442291,-2.377187664578685,1.7865422704540646,-2.781556135397979,1.8120454113798432,-1.1725722810141501,-0.9666274758898579,-2.4629501221691954,1.0757440794411623,-0.07799519475565786,4.269071286416588,0.33756482655092773,0.6861210560846684,0.32315084461622134,-1.6422892002635325,0.27700694221790156,-1.9209660273115108,-3.065677007189987,2.636222133599071,0.3674953056702732,-1.0408249396287632,-1.0940549574607596,0.4454439268044149,-1.468411555104835,0.21388513054015845,0.02700519337503328,0.46172548391981855,-2.887842638808899,-0.9630389167863092,0.9953255065855712,-2.1661115657293895,-0.40697107511703856,-1.6070237972951982,-4.08056885386679,0.9188317093919339,-0.004901475342533971,-0.5501808360042112,-1.551711547331497,-1.1985546605186521,-0.9530525753257258,0.11927839446413785,0.5448144176428548,0.20195745191853043,-0.9191575414064369,1.317774906629071,1.4660311243734587,0.5970734637964887,1.159379077374858,1.3269126608453945],[-0.23914597582392086,-0.052372317273979785,0.48050222768652,-0.088996961727872,-0.4970202337587911,-0.23321748803407286,0.5385732709907184,-0.07527334549088864,-0.33741597256003586,-0.39257995342465374,-0.4237692128427248,0.7028925620150461,0.1851270776693934,-1.1030833205140615,0.16517307871562475,0.7467359398538345,-0.7900170448223165,0.8901182919136718,0.22287335088342547,-1.0482393713108844,-0.5513591057784758,0.8541842423335404,0.8122056275116356,-0.41931358001963775,0.44716558320353844,-0.8377087121222064,-1.0409396761547918,-1.4900221421687045,-0.4884573167659089,0.5967418511503546,0.17069379754589994,-0.9720986636998105,-0.44063777220884237,-0.22570338096768386,0.7700991078800777,-0.2576473351269608,0.1070838183489977,0.1358689515720412,-0.7380432690509059,-0.7290766868368788,-0.11566877426199261,0.553641928797927,-1.6886198601421325,-1.4571302310133407,-0.35955022790819663,-0.5152326887659778,0.7002731542593371,-1.353343305214057,0.057880761516601084,0.19512730806765832]],[[-0.49566956434378545,-0.4935531670000457,-1.6392236732046823,-1.718415175454468,-0.9870754935458138,-1.2586907411858645,-0.7486501187744407,-0.42082023101196,-0.0862841038437861,-1.5134608891208112,-1.0210167398896448,-1.0337541792449478,0.7468782909530723,0.5161971549236437,-0.6399340228182441,1.4556834660683482,-0.7377206678367036,-1.7410345277165793,-0.8908345461478903,-1.421546256076052,1.2551142225289484,1.0892987545671222,-0.9298180422828198,1.0177087128919515,-2.361648548342317,-0.2622856815206263,-2.049258729786706,-1.4226774120307792,-0.9537372787449986,-1.5403672385055562,0.13442016057102835,-0.17059304861862076,-0.8843437339957635,-1.4907792631973837,0.5171837604582836,0.1395980339190791,-2.329265555471017,-1.191825278450493],[-0.06900590857589688,-1.1329168120831528,-1.599149575884536,-0.39972070266984,-0.6413791993294042,-0.1682858315616731,-1.1490211656515779,-0.9481603432850366,-1.0887580070325225,-1.5840743508109132,-0.612702312313071,0.6019197183680437,0.5520490375869952,-1.4278857041254152,0.6059966228927258,-1.1540782565929892,-0.4207940252256727,-0.18355202393190623,-0.0719012447759604,-2.2835985888947783,-2.340362076047279,-2.7715334624133563,0.807326813047261,-1.6263669926890183,-0.19704635578237245,-0.47452835488908013,-1.1470922538066337,0.6410127400903864,-1.4265872886187698,-0.10413343653243484,-1.6246158820778673,-1.2238910014437672,-2.463398913530067,-0.5217376854925895,-2.340645111574262,-0.44016819603728585,-0.5065494537412428,0.17298369735472302],[-0.5469098330635219,-1.528240867266708,-1.581868462334179,0.17656752218643154,-2.075121024368141,-1.565576493671689,-1.990818788270835,-0.1566469101663221,-0.5733847455982793,-0.3002467069745963,-1.7542758804273657,-2.1784840853996768,-0.3316653533678128,-0.7247705292131452,-2.0188416817201786,-1.7528606457776972,-1.1264358786667046,-0.4323853053297218,0.16606115289055637,-1.2866715965557578,-0.05115368100894592,-2.160395939959372,-1.004713720536933,-1.1511422719680426,-1.5880193915790797,-0.19611176491800072,-1.506454499056519,0.1933111960498637,-0.9335494422885062,-0.2614284788578919,-2.85894715307869,-2.395175361041165,-1.5151672445642332,-0.752539851741945,-1.9644857010669738,0.13648715735308825,-1.3839996215768098,0.1816658403687915],[0.00613042808111273,-0.009195964528902601,-1.4793185464829202,-0.9426663180718916,-1.0490915113679686,-1.6209678254895774,-0.6062821947204923,0.11931146071056291,-1.711079838993142,-0.24051951423966883,-0.9044849342940617,0.601853906140863,-0.39125711529143975,0.0017440570007834191,-1.8746385339056069,-1.9088471064255619,-0.5705938235135775,-2.1436755495933597,-1.9807900092337125,-1.2618731855304222,-0.025102586510662727,-2.3519288001288015,-0.550159033776208,-1.405632120013217,-0.1664605646350953,-0.48702226978037483,-1.957716518730912,1.106408595837346,-1.650200607033839,-0.7530457627111328,1.0093450340941235,-0.493704556443349,-0.5426141814120544,-0.09169932985454239,-0.2780801962502993,-0.07479178042504216,-1.4692987706242806,0.6607065058733501],[-1.2956671672994613,-1.3745880250263824,-0.7893841659706693,-0.8125833579183426,-0.016776621751958515,-0.9355263763667462,-1.3748206930560554,-1.128637139058639,-1.2427259453868327,-1.3901133263758592,-0.9599484076717023,-1.1285071833447422,-1.8987493244298648,1.0019458695814365,0.2884913500484963,-1.3320244720200114,0.39070210846207465,-1.5601145467915314,-1.2676946793309591,-2.367354294460615,0.5774480470572814,-0.2896569073573938,0.6941139846180939,0.16506175264632394,2.43478794638177,-1.2826102319615305,0.9117249034433428,-2.0321544000818537,0.30381523597045984,-1.6874907182315868,-2.6213353189704276,-1.6444064652543775,0.7592728625343659,-2.0693441291647074,-0.33387895276954765,-1.7682102325688336,-2.311290392255125,0.1926708157980759],[-0.5336953093785836,-0.34226609755368936,-1.4125852087636184,-1.1665466626034222,-1.429962023257105,-0.4588394027746898,-1.7057311575321954,-0.8047719860790464,-0.5155198299985428,-1.2861347555147566,-0.03502357153849602,-1.3047990459455865,0.4861427377261629,-1.5870299692975878,0.01035841071332015,1.1291690394276193,-2.3981998918722476,-1.0062230209609606,-0.741702329003772,-1.5365043035684305,-1.031714851215696,-0.1998610160079069,-0.1250224370850235,-0.3918139737906214,0.7604122062101129,-1.1791781114674902,-1.8975249858330723,-2.378482829274141,-2.438225184312124,0.7954039064883912,-1.5895992494444555,0.646997849144245,0.037181140382398135,0.2540012880441306,-2.028081669495246,-0.6698309950180562,0.40182567658256996,-2.2232592329022562],[-0.25158711093549535,-1.0456737991076048,-0.9728555943454777,-1.1550731860359347,0.39063888212341263,-0.9232272079973708,-0.9725464967219538,-0.3692539596125666,-0.3858636290686876,-0.5837355451389837,-0.6150955523314132,-0.6627872518701627,-0.6724930698323828,1.4924347095532353,-1.395590695544777,-1.185090571089714,-1.213434818972032,-1.4956705575066418,-0.43283986491057375,-0.5549220786353991,0.3193161409388376,1.4933049390109325,-1.431667526159675,0.9812405707351312,0.32866402862477834,-1.3611841987577284,0.4889132851077384,0.2584865488094082,0.6762510495500993,-1.3389303449575138,1.3979747026186553,-0.8321513292626809,-1.5847910573083015,-0.20421627960042943,-1.5686021535413168,-1.4438852499745884,1.3189879563923033,0.4507981202987754],[-1.422055706040153,-0.07179156028930177,0.06556918522521385,-1.475587345350819,-0.04346943260080002,-1.7143409871909197,-0.8738184588010085,-1.0334598924746177,0.023893443229077584,-0.11592551199564584,-0.5277648688200531,0.6296401245931101,-1.2154718371662485,-1.5820750064646423,1.0396585171576005,-1.959326194368834,-0.9345890689660337,0.9587957933057462,-0.3941676435910782,-1.9783823687580513,-1.2427415636810917,1.2298188844845668,0.21912993182861568,-1.0753907901877524,0.8046969810662294,0.007501484477309575,-1.1604285744891445,-0.08711417448025624,-1.2782543335529968,-1.1526327345940552,-0.9441486426046801,-1.9205145905658543,-0.5369475733225685,-1.3603734263523837,-0.9936340412872433,0.7418587331832932,-0.015478294778542089,1.0490335330545744],[-0.0025557279176826966,-1.0744029384908176,-1.6651290280213769,-0.3091584799088877,-0.3931353508699344,-1.2507903325998109,-0.2330587366727082,-1.4621459947496382,-0.1213611025294606,-1.092074590481235,0.06829026720115977,-0.8933028925460119,0.9187850731526103,-1.3563550699516957,-1.482406337467375,-1.0955795181856305,-0.6921183208164963,-1.7042660517612749,0.7659904863508828,-1.0554723439244202,-1.1514417061640154,1.1840178526186689,-1.1663465473086072,0.20232741229876972,-1.8970268491404232,0.6459791124892742,-0.7341181840918255,-1.2598750481680532,0.35140334261489703,-1.6456215693644363,-0.3047453640045134,-0.3307262256540256,-0.45428516575013905,-0.740320114667467,0.3492445691045997,0.5534252829127212,0.93108108788907,-0.004269936342454034],[-1.0448999212896009,-1.1190623132855277,-0.11761693243624446,0.08497280738775773,-1.236516107268111,-0.6160280893738365,-0.5734416785411618,-1.1188857055541888,-0.5025967971964914,-0.9083363312838303,-0.4672318860011439,0.45576311373231315,-0.7414605018156469,-1.7242038890235678,-1.4797478857669895,0.6241229145722452,2.4649266281691884,-0.4080124630380827,-1.8454839306029835,1.1297466587459655,-0.2078554657913447,-1.4105005314909471,0.21261628882092592,0.06616507767622326,0.8315288777080206,-0.516715006810467,-1.2343022848804428,-1.881055437846095,-2.085371247496772,-2.374520311732317,0.32253386433316944,-1.3373505974698137,-0.5201677138194972,1.1914767124214733,-2.008481388016725,-0.1995183942939989,-2.003066951166843,-0.36043804520455464],[0.15973883750981635,-0.4849708233494545,-1.4053823770758451,-0.829787866317644,-1.3796210291349988,-0.7155764735135035,0.1187109151270877,-0.38501245314778176,-0.619165652467177,-0.02526236128917852,-0.4880780400344502,0.02805025639194004,-0.7936134466900964,1.0209030188814934,0.0785488199841434,-0.24584575654116866,-0.6049661135805329,-1.417882541553017,-0.8313543847035877,-2.0689069753091798,-0.9350700967122108,2.9944123039845834,-0.7545390792874225,0.4082089658513643,-2.2112962314314433,-1.1814639190039644,-1.4236740914713308,0.6540926951650446,-1.1443038384671054,1.107748204583208,-0.42146365190189566,-1.1361733386672381,-1.5358952647446562,-0.0660508612369223,-0.515988845401563,-1.2231707636110454,-1.4609247617035215,0.5490273327465621],[-1.4623289530759807,0.09298795771371562,0.00860751429358665,-1.1436912826637702,0.3749706278008208,-0.9377944275492411,-1.2022433976730562,-1.0106235413788116,0.27853692115910345,-0.5121607880624892,-0.7237022944081838,-1.458738855602219,-1.5454601324024229,0.9469329902369743,-0.5625461547486738,-1.1949443837997042,0.6301655370874799,0.6227286603821023,-0.28653373164788376,0.15066409441917133,-0.3655598191280773,-1.597564851955846,-0.4655835902021834,0.3230870704098967,-0.715334644980102,-1.3725013624224418,1.8515012824749832,-1.1440962191659239,-2.0996927106577674,0.8194063505717262,0.6389523562302104,-1.5813037259723777,-0.1218890768671133,-1.4979089032691801,-0.49790477504838343,-0.908847418942349,-1.101811874790929,0.9910968354345812],[-1.3085006650637008,-1.1209863984302175,-1.5996622064934432,0.1668754821784289,-0.3759239209278116,-0.03931203687672127,-0.029368154230037236,-0.19267375622286256,0.23408034725644614,-0.22033804150558112,-1.1064464226792645,-0.49131416125212535,0.35430116241522375,-2.585267027391953,1.1809877739329087,-2.1059863406101056,0.23471358826789793,-2.29136112442234,-1.2201616467718965,-0.33318050552688283,-1.444386734159798,-0.5132575964088981,-0.2891803943866362,-1.5469471063967766,0.7206443836255886,-1.900404496064672,-0.9963436407119802,-0.7938911852350816,-1.0518734650394828,-1.8221566281432455,0.5188301445433098,-0.16054538216383724,-0.26204615611598536,-0.2898978717642662,-0.1817794470950719,1.1894894879877629,-0.7425074254138582,-1.8878253305964527],[-0.09048950545410456,0.2780413500855498,-1.5442821352378857,0.14626147245188126,-0.8778586211002157,-0.2701622811699381,-0.7469669409200447,-0.4669669587064259,-1.3224579711176643,-0.8177272079612212,-0.8234405939221877,-1.055739042504368,-1.145756480624485,0.5572075546581938,-0.7512484730518925,-1.827443018097756,0.8996250862218304,0.06732850022101226,-0.980904914405414,0.19549323634411228,-0.014562371968387028,1.1009478993594441,0.9258184270846699,-0.0269426268249431,-1.0268323498128475,-0.3104719077977836,1.1492184448254963,-1.1869830298737483,-0.7958290309534362,1.7415327570090535,0.4134549807784928,-0.9174199234339658,-1.694754590319214,-1.1635076388413956,-1.2409683442917583,-0.612962288523969,-0.11005906262884799,-0.5184835558329649],[-0.8456887135125977,-0.746111829810805,-1.1707703431455263,-0.05873675608075944,-0.42928983139161764,0.11103922196483894,-1.3263546384943643,-1.1402122235581902,-0.9018838739957278,-0.8081184714036502,-0.778524716160019,0.318617183134232,-1.442710805417951,0.302977178760782,-1.28571901339163,-0.8941388669357104,-0.684141858820488,-1.9227110550599087,0.22544895186807665,-0.4103049139557946,0.23991604520646553,1.4157905653440725,-1.3331790044483005,-0.000011301780161613915,-0.7882448150615484,-0.17362108507957685,0.1332168773781764,-0.7109689307005747,-0.2274179639845072,-1.2174826576596596,-0.26564473595980453,-1.519475341530134,0.7111522067718721,-1.6911230128728876,1.2197991001742914,-0.8061556491596301,1.0003189350291812,-1.3107756229679712],[-0.5360849169175607,-1.080731648688929,-1.1620894824978605,-1.5940465314125518,-1.298335928893959,-1.2983368072017163,-1.2301347140900105,-0.32808403044012524,-0.3515081822315519,0.09532616550266193,-0.6992805546648092,-0.3066976939356908,-0.9270006832870419,1.1717392858602744,0.9639776677709498,-1.4732452462723973,-1.9794569407689562,-1.632588338593254,-1.0224754329304369,1.0637373496422577,-1.8385306528641412,-2.623349487316514,0.743333273278647,0.9232945275941632,-0.3390912568831594,0.6376303934172926,-1.004363557841092,0.36381573509278536,-0.5920818225849107,-2.2664206424902216,0.020296966254651168,0.3894597506184875,-2.064890844628437,-1.525032558949362,0.4593429778357943,-1.5923013353480027,-0.968613935009003,-2.6553573622773556],[-1.5324856244653593,-0.4278396421951404,-0.5752778449694936,-1.4715017403092616,-0.46817344527967264,-1.2568244227014458,-1.0101445753100786,-1.7825216501024188,-1.5634206684901422,-1.7182182809535185,-1.3481658431688512,-2.9520549879352305,-0.03535386702456698,-1.0277464254290098,-0.91094377665643,0.12761882369623123,-0.027026036939214286,-0.00042317916649815346,-2.216233073010075,-0.396851104294751,-1.3823519794864865,-0.7457759651895607,-0.28531659232669315,-3.3008050521430654,-1.5786787324843683,-2.2680253280339766,-1.1877296689430354,-0.2398768711627418,-1.1556133176050805,-0.6134695458274257,-0.48353730062764755,-2.1801998991833123,0.09383962440420454,-0.9986849564397221,-0.6537927878592306,-3.4705053835494284,-0.6850729637587674,-1.7381145117201635],[-0.8179465800552275,-0.18403756018405334,-0.5237176064887721,-0.44051947981927125,0.14999883019743404,-0.8626802964739759,-0.9297279124520486,-1.1055987994411312,-0.3606741380352946,0.009894486999695891,-1.2138059412316622,-0.008102311855118801,1.1117947149457417,-0.6335541858468762,0.2819603655922468,0.3101086314356372,0.5472455656833394,-1.2737473006470958,-1.4859007902412322,-1.2666795813338172,0.051500353077533784,-2.096877707033757,-0.22429071307011852,-0.26836865551029393,-0.6702854660390112,0.1499779479816466,1.3296728083885738,-0.3654328346029615,1.917669704304177,0.4722936464587659,-1.347291337322488,-1.7460387165346616,-1.1848590650214792,-0.968933279205177,-0.44178616852229796,0.9279785539929839,0.3500806744584071,-0.8937087589472319],[-0.7442195770089371,-0.6484193965385707,-0.7193813254862739,-0.17162563104078757,-1.3073310207092128,-0.9180785226373774,-0.9396634050023037,-0.34116344414848565,-0.5670000091150651,-0.2037576585204905,-1.2530601010788378,-0.7011504075685834,-0.9372461755368217,-2.0724540863881042,-0.07892249871023374,-0.46148934878269476,0.09392639843519436,-0.9423816800933331,0.1635476562475461,0.33264400827512497,-2.116641473037006,-1.792797951380792,-1.8483338889097005,0.6894367200574859,-0.09405917034832399,-0.6532698697863379,-0.6636438360644581,-2.842957408046719,0.17490780389414598,-1.1034305481620574,-2.9272588885455,-0.8603381751565986,-0.28792156117514567,-0.7344630340887571,-2.4289698832136684,-0.4461722784159992,-0.1367112053703605,-0.514047939357038],[0.12674065915362487,-0.13844441921599535,-0.3485096982321938,0.4741436485139843,-0.21652985539478933,0.40620656411704664,0.263939250582475,-1.2872930473931679,0.5849095332772648,-0.48560229124431764,0.18451111092859948,-1.443703882779207,-1.1589937282839726,0.959133711558738,1.779409952250683,-0.7773941058503407,-1.387986096265076,-1.0822678700206414,-1.5147921870536132,-1.5178516762543393,-1.040403348087562,0.0975689904914085,0.6390060044899606,-0.8265030907353474,-0.013805023005884121,-0.271047640775595,-0.3738557070455487,-0.9273151584122018,0.8646000103572127,-0.2552772756227838,1.3305113132128317,-0.9565551901768969,-0.37927741655011465,0.9185353780290133,-1.3027519212645,-0.1627044693872538,1.7299425778866118,-1.3364326318807176],[-1.1101202091276043,-1.7032967340460756,-0.613019848637257,-1.5095446628046283,-1.428712340196137,-0.07581617624712783,-0.3775139155980293,-0.08609538578330389,-1.977084430948787,-1.1959112754731218,-0.5974647035368299,-1.0983683817139287,-1.2831991145251345,0.2952727244662382,-2.039408468127366,-0.40714756847546396,-1.817341983873725,-0.0015802509579293867,-1.751542161391309,-2.392750038128962,0.2006647407764355,-2.1855831125656304,-2.360512422951254,-0.10066341950360277,-1.4194675184867334,-0.7026559896904447,-0.16932445134752558,-1.122629319892937,-1.5271926119427701,-1.8162358923029884,-0.919794521383831,-0.9371716437475193,-0.56743330926433,-0.10098898457504173,-0.7786125367303676,-0.7654684343818126,-0.17559064109794292,-1.343254479234874],[0.12337436464888704,-0.7842744554611877,-0.2376216569277983,-0.9824938372602677,-0.9082185017041767,-0.7372779894597145,-1.571466190778861,-0.062387055647212676,-0.5304263721363567,-1.5043362873769932,-0.02822880594852417,-1.2705720993316925,-1.790132091246193,0.1305061668133249,-1.388132899425889,-1.1982451938449692,-0.3818241347637719,-0.4594680407766917,0.5553735889900255,-0.5641456360605611,-1.165909544897864,1.3158213177222764,-2.011444866882012,0.9959525138546859,-0.9822154562615931,1.1128843341831316,-0.579780322465214,-0.3368009545849553,0.8892544446422378,0.7805732062839653,-1.217394933911174,-1.336122894682201,1.0900238903220947,1.5210336775098767,-1.30707678153052,-0.4738259673608038,-1.4602796967393175,-1.9626437136165404],[-1.098429888009286,-1.0579523807481557,-1.1245041076826439,0.00719960167569414,-0.35835062626214736,-1.9481567375267177,-1.2548974117663552,-1.803512461960551,-0.5856565880542982,-0.3461429595310171,-0.638584784896938,0.1279489650291689,-2.8619474536111165,-0.7513615031465187,-2.184679020314605,-1.5280629518970004,-1.9010042379484349,-2.7622688233605057,-0.6155364903460173,0.965361602776192,-0.00806483088473128,-1.1958853965056089,-1.7425213035247964,-1.4898711767835902,-0.18078087569577983,-1.1964283380160587,-0.7651243069402017,-1.5236085273414322,-1.2986353730863507,0.6433889631649905,-3.003978174124987,0.39956857312775923,0.1617075435892763,0.21917351603529753,-1.477934834836651,-2.8277810518968094,0.482996109295806,0.1890406977341471],[-0.9586111105259542,-0.8420664548717133,-0.904980445358993,-0.4100732432279249,-0.9016601308135577,-0.5645958421351359,-0.5191026015628485,-1.6148939101825865,-0.40345845183037893,-1.1114543674984259,0.2482613248728059,-0.6574414445396148,0.8847804138764699,-0.9542464612590629,-1.4808106024911487,-0.6911495181282782,-2.0280682164300625,-2.0420166226383585,-1.3104905001979694,0.45381563851659634,-0.4004499187297264,0.886427710056704,0.4866170161467417,-0.10604989584850216,-1.389475143528385,0.1879185081879256,-1.1241641271045741,-1.8723924499330802,1.4182518907527857,1.171722959895253,-0.7848645251280431,-1.7128733349465093,0.442479872227038,0.7560671889480899,-0.3594470131850467,-1.1282115480891544,-0.9437011682303841,-0.5825225626320963],[-1.2597542147961869,0.4261677736014197,0.03886628368215287,0.08056757578019987,-0.6984189593570932,-0.8282632997887833,-0.2604314579831688,-1.3849051150044984,0.2532288805344019,-0.2560882671453247,-0.9644010114587253,-0.05940421702001955,1.0990067197468982,-0.682238881163363,1.1293745815972451,-1.2219362441797024,1.5739497753865854,0.7077734395822319,-1.1489733686206842,-1.4623534604704076,0.2584015713793119,-0.742825804937632,0.8678648972755334,1.4062952619591724,-1.2276907893331643,-0.318692893305608,2.156269108696316,0.17665308678443195,-0.7597256972540071,0.014115886778873647,-0.7558807936031199,-0.8868370954102802,-1.246561809217742,-0.0830095490809116,-0.6413535457185412,0.1258795888085836,0.5049674573259761,-0.30591061371055617],[-1.1629246570177212,-0.3749366683604414,-0.8306440870769302,-0.25289856010473044,-0.5406470880097765,-0.8117608408943652,0.11968179349658893,-1.5905922290949188,0.1398468731385968,-1.1145913860545824,-0.6357285196516052,-1.4985337991028806,-1.4152914511186574,-0.3758936334490796,-1.3138445996177575,0.3963614328241754,-0.3386736433778135,0.1916417797855858,-0.7501094222660902,-0.4495321074055192,0.23747778797582905,-1.1705474133980174,1.3037670405710458,-0.5136344756741661,-1.461170463129947,-1.6879777614082214,-0.8451717590953648,-1.4462276586876126,0.8308715607872483,-1.0482215442796052,0.8154718897234484,1.3814321137215337,-0.17642341969170316,-0.8395625074154646,-1.4469504347936133,0.5955376958119698,-1.255530953798058,-1.8470048336826457],[-0.6239242218533362,-0.778666459518473,-0.6758406050479222,-1.4019363389014645,0.12188343285844849,-0.22167438488897243,-0.7915908102217434,-1.1641194551975051,-1.0550165161016964,-1.3506212840544036,-0.04213849969045708,-2.1479522915465603,0.8960973160324367,-0.576104158744378,-1.9198536172621672,0.19949996182099544,0.3775026290745857,-0.25280667188680134,-1.8161916008780954,0.12153760715792843,0.8850121714355192,-0.8339559029426057,1.399291947943493,-2.0745303321850326,0.2225323394577593,-0.5926822825490029,0.1520926134247435,-0.17647414413882556,-2.0592053738044513,-2.2003719934448105,-0.4346817162898478,-1.8003316078889515,-1.648534854984188,-1.1531542303163558,-0.025470830610112478,-2.178150520773106,-0.04175247253523717,-2.1653867273826184],[-1.6165830814155329,-1.0044078649215669,-1.6281563129895524,-1.4780377831420404,-0.2260888467501568,-1.4792474387352366,-1.257927428123744,-1.4455435306681141,-0.9870399271048466,-1.9965211942565386,-1.192031535982423,0.07768149675738413,0.5183530995072276,-1.9211445147702062,-0.9912282472672128,0.16178719171516714,-2.8207851652626084,0.10419480291345126,-2.5727311914046607,-0.11128585089672685,-1.6226962255837707,-1.4432571078470753,-1.4007070947729106,-2.5053269735969033,-0.20618524084259693,-1.503560784753483,-0.08951416045114922,-1.0160018977146636,0.7293341311383956,-1.1126369527264466,-0.13804105573400385,-0.8931191895057634,-0.9833724876244584,-2.9122252464433536,0.3892181645108027,0.27075152163307453,-2.742884281414509,-0.38201281529146797],[-1.338449336208602,0.03575461852063426,-0.4643094834757593,-0.6573847744864333,-0.991233572460006,-0.26300674143033426,-1.5142483560148954,-0.08450300465110172,-1.405274436755783,-1.6010801164546793,-0.13490133393450673,0.30856082800731005,-1.0319390635642611,0.9452964476735046,0.2527179591578271,-1.7659275380422104,-2.1794842384926874,0.8406997193740477,0.8942848730499747,-1.7630329713674633,0.9597905187106271,-0.3336261859417089,0.5296159926922129,1.8404772150651405,0.010593477711568438,-1.4897383245771274,0.42869278776332714,-1.6873034310644512,-1.6637117159689572,-2.0616953321175915,-1.9144519425366393,-0.43638973660505903,-2.2430776634223393,0.0338916566586438,1.5599368987816167,-1.1212306467734787,-0.07732743974261241,0.9327571276016602],[-1.388275956551999,-1.231770938474623,-0.4662708308492444,-0.9171363160129152,-1.3931265808804136,-1.7811871836623896,-0.7409237838605905,-0.9653818521281112,-0.5883638852034515,-0.4881477164293598,-1.4723556747778288,-0.742332097367804,0.3003267739674377,-0.25270676636173056,-1.3892281904361985,0.2855228627769387,-1.6085396913032333,-2.3052287935602673,0.1620667717758776,-2.7462305304981585,-2.2795714983353657,-0.7184995315404891,-0.35876343022646534,-1.225305874022708,0.021386680573950004,-0.04104561606563122,-1.6343214809535704,-0.7629577997890887,-2.5629711287801635,-3.1423256517303435,-1.1525183240579482,0.3092284600447025,0.023411989099474076,-0.8024056969233053,1.0617062745776857,-0.7277235707583661,-1.320209697855481,-0.11455838516822273],[-1.6209392497632555,-1.0956486271220198,-1.029850702744297,-0.5070827894824834,-1.8493130966490474,-0.2697601803784435,-0.5873334343816785,-0.7445706494909086,-0.6273876929066465,-0.43529710168834773,-1.394798931069951,-0.47310805900124847,-0.6624617762067376,-0.7046695823711198,-0.22956661588213717,-1.1302343204748109,-0.06693957334470169,0.4628017569493124,-0.6053472278118028,0.5686062795562841,-2.0449243301024747,0.45319198273266786,-2.324060511233011,-0.5047375397541949,-1.2013207473018517,0.14870453275076836,-2.2586934986037717,-2.0461965564233413,-1.0238468616915521,-1.6939458466007038,0.7975255897248211,-1.2958719074907519,0.38729953209431317,-1.0859289191920847,-0.15507571253684674,-0.6177815760105909,-0.6207507819322772,-0.006290607390652737],[-1.2129489835364973,-0.8368126254965196,-0.34412100064064366,-0.19845119262112673,-0.07557444300745964,-0.5057876895343655,-0.8662744987195674,-0.3027552729832807,0.07180252342820424,-0.6963065019350088,-1.0641350330646224,-0.4798554682218974,0.06555793080399756,-1.5556594648386604,-0.6709208181165169,-1.6012259536131714,1.4535416958739948,0.14607356867546364,-0.8926472510254578,-1.705284519392574,-0.508072229443178,1.9534074286363332,-0.061236217788651515,-0.6303713333230087,-0.9285007614040169,0.42588572914718026,-0.5709300932073853,-1.1791537421471123,-0.1393882689562646,-1.6486707878026445,-0.24407187682881132,-1.0302363680275883,0.6703187595457589,-0.3699508141509176,-1.8723842157882107,-0.1989069385178573,0.04187960880461112,-0.6807437616251305],[-1.1995361438133165,0.49103278729915845,-0.093488858301169,-1.1546159704327066,0.16190580398945864,-1.3020527460922733,-0.5464307543215693,-0.8790978272123334,0.16643607557996637,-0.3273774957788628,-0.04109002388390637,0.5332926982530739,-1.6017513604518872,-1.4273607768747723,0.07983696035318871,0.08331947864010063,-1.2095604289653041,0.18302739717940184,0.19563455187190634,1.6848296687739681,-1.444865793229582,0.6620061604943417,0.7640062762387299,1.4304877322404967,-0.7770041350915046,1.322924143557019,0.627131110135618,0.3792809882059356,-1.7060073492788415,-1.0324590434924317,-0.3232287269732101,-1.620787906221674,-1.60500901295926,-0.10122047800944171,-1.1445274815584152,-0.985015428101966,-2.097687480938533,-1.103281254725765],[-0.5049135880432437,-0.9904595288475854,-1.6019182242791004,-1.297728499708226,-0.7688674598115237,-0.33853005840138684,-0.8456624568989987,-1.3918504115246855,-1.1359507651962812,0.006027712994565615,-1.5212856443104585,1.2143278217324562,-0.044499675277143914,0.26187899232919326,-1.317543566714659,0.2574985147880148,-0.7514800120300937,-1.2107400834600612,0.04884787020673478,1.230773088843483,-0.9755091954428008,-1.4886891527778876,0.8797366318319403,0.3999231147596509,-1.657385183319997,-0.14528695865817834,-1.0230380274848543,-0.5002597430313713,-1.6239519980441361,-1.7923900193574624,-1.227831492589598,-0.4645526581518165,1.6967872978451952,-0.24078904427488892,-0.8693902360348025,-1.1312660728924617,1.0958922143685481,-0.14201715077065125],[-0.08436576464340614,0.33703479618939675,-1.793118068204257,0.22033788885335484,0.0883055214682585,-0.4445761300099412,-0.13395739800806752,-0.19993501877569222,-0.9577274497985986,-0.7349255416598018,0.24346861238931825,-1.0356354273159865,-0.9688728249382778,-1.926646973766247,-0.21334626913119678,-1.1485639270454606,-1.506994442026586,-0.03360712257746176,-1.088722047881002,0.8118399397955393,1.1721137928072836,0.2396316530159305,0.08870680230557822,0.82669267120904,-0.7394294143568697,-1.218408589140056,-1.4275138626714394,0.9319106653366772,1.216723893562112,-1.0843402434195795,-1.5917865458138705,0.06757870407848669,-0.9967306259536882,-0.08343134542934968,-0.39067732236740993,1.3770409202468967,0.6106411576352043,-1.2763290208557452],[-1.3043970758464618,-1.5028565453332268,-1.8479082360382348,-0.7283882591773556,-0.6724072310397637,-1.7505045708426619,-0.26809024761404115,-1.7314688175738442,-1.8377884149284993,-1.2520575916883214,-0.7622421577296634,-1.6166824808773126,0.32029773841699166,-1.6150112728564336,-0.574258264102389,-1.272599941120282,-1.9515766487291566,0.040512482787458406,0.14752473160678162,-0.05765476218033317,-0.5933055762564075,-2.0976224915010815,-3.2039470337162883,-0.1671414525048699,-0.08658416216863142,-3.067630891365283,0.32904494301935877,-0.26112183658237875,-1.076453428387267,-0.44976326912027703,-1.2474762898313314,-0.11611035915925585,-1.015989950606678,-3.179036584683873,-2.000889398981977,-3.1913646314526747,-1.4741859242589956,-2.04632245368957],[0.49970325240514124,0.17493038361007515,-0.2069428921560741,-1.4857329684398548,-1.1697007611309713,-1.3314907960174862,0.07827793225757992,-1.3032889092131463,-0.45028458887813366,-0.8273097414520743,0.21817357935167472,0.1447235862938319,-1.7250819737231573,-1.0328847064234468,-1.4546348265093354,-0.5387189379552435,-0.26663621696567036,0.5191029018231291,-0.8622472070544156,1.0928354051681897,0.5573408324347643,-0.04786144963265836,-0.5562309678461335,1.3665728012540639,-1.7047961839317263,-1.4005501407750152,-1.4688610236544288,-0.4105733236790017,-0.866612754838467,-1.1608583667590775,0.08260525662531201,-0.981055794938072,-1.2162809636349634,-0.8807106353601554,1.5807091085081757,1.0710500221512527,-0.8362019024256079,-0.9927075109926574],[-1.328193438327774,-0.1401090090100905,0.1949272314757392,-1.0554196058561207,-0.16867858397399058,-1.0304728036118957,-0.7743837232111668,-0.5296059396916408,-1.2235948417888687,-0.9602964048830113,0.2491038097023252,-1.6304462414065828,-0.9414931869467105,-0.06930854929899062,-1.4174495099197209,-1.6055783046460015,-0.49949486887028444,-1.6914151604862653,1.7038394807614752,-0.7625079035261276,0.7152461495228506,0.014068504364244264,1.4403685420738421,0.06325278135234601,-0.6386110539056858,-0.00933692983779447,0.2624900959036955,0.8314704262370294,-0.9598453454186753,-1.356616236065971,0.02090756379385542,0.9453481064628141,0.2452250859134838,0.02894774144483425,-0.7604686818781377,1.2796401535604338,-0.0658898708403418,-1.5392539046531086],[-0.4196723863067876,-0.9154745616730047,-0.7958983411322432,-0.6585294412229419,-0.11163870982026604,0.07202426762113667,0.2667061381863394,-0.01634928245495437,-1.290825315469993,-0.7444639137475195,-0.40769034010603245,0.748464472674373,-1.6843650141525655,-1.0333799960478394,0.48712618676242786,1.4907225915034952,0.4405894957571076,-0.9300457767057664,-0.6667370127232789,-1.356840059037993,-0.9067506644636983,2.560831790374895,0.156482285386747,-0.2528915727441748,1.3936787979221692,0.6840780347729535,-0.6816623436491123,-1.372559822637614,-0.8207701670437988,-0.9789520082064874,-1.3354936773987358,-0.5835543572688903,-0.5835648532558099,-1.234059541528845,-0.9817481442112694,-1.372586634303925,-0.24567814887030529,-0.42525206049964803],[-0.3706806581156114,-0.7157015538071901,-1.3315150491702203,-1.0502625123375062,-1.46980437966729,-0.9997417576980139,-0.8338090135575583,-0.4243348968712131,-1.4734847450528956,-0.47192272248225087,-0.6597984576947293,0.34839564894158814,0.10294413575459216,0.23364981199867327,-0.34792669236723334,-2.630346923310036,-0.2678691699794315,-2.618165480654685,0.566400176390544,-0.4328381157962535,-2.087062832546928,-0.22876543876398422,-1.4177902170698164,-1.0797608279187152,-1.031467103045578,-1.879964867936651,-0.12235608941033073,-2.0976457606885086,-0.5410046430561543,-2.8121247483661858,0.21693970981531857,-0.11346168094199374,-1.222165513097138,-0.031384932000662516,-0.4632733246944272,-0.9856668449316761,-1.4833379435192897,-1.3947039694484837],[0.25051555057985103,-0.5978689313209603,-0.9755517539739588,-0.2566433684200362,-1.2234738819085722,-0.38607237182678356,-0.42488212255098395,-0.9869823612725376,0.007296828252116982,-0.6465475462491591,0.18375255869310037,-0.8604256807303383,-1.424556841246911,-1.0858898870074316,-0.6540026600654827,-1.6127779659319328,0.1577379563338698,-0.722854753483713,-1.1070858434933097,-0.6907693972425297,-1.1096272247757184,-1.7397992958481525,1.2129808425362996,1.9949787011833686,0.6792323946958372,-0.6669143355445427,-0.5064735209414085,1.89100517719795,-1.4883783650673756,-0.11114737424484188,-1.4332497203071026,-0.7201660516023295,1.0061519072651117,1.3049750663616824,-0.867543969486413,0.6248532026437108,1.0569858256676914,-1.3085996987971324],[-1.5878371204572392,-0.5943160916589665,-1.7246744471425204,-1.4500086011715556,-0.3393601604323173,-0.2076836862258496,-0.012843860647368078,-0.5670006850914525,-1.6530486587861635,-0.7494386856145571,-1.676266095351518,-0.9949349874517072,-1.4660835083521295,-2.282244757263706,0.10380439977528653,0.4246495805574435,0.4413990449173263,-0.23842666158776873,-0.7484548543914243,-1.52409390393573,-0.2751933200693978,-0.9040341664366864,-0.21172343459955287,-1.7865471355142564,-1.9332557886445276,0.10235092142948357,-0.26473694524254565,0.3296694665933517,0.3428601760855862,-1.598369006202298,-0.7551721914378683,-0.30067093386932814,-0.4766371743368877,-0.34629243589648623,0.7737791619492074,0.35774547978749754,0.089323564063701,0.48843644568277],[-1.1839863055423192,-1.0779364893879273,-0.16612407177426483,-1.0915826885493254,-0.36096877744589206,-1.2665536562199906,-0.3190058274599072,-0.6881998087298145,-0.9466231432746998,-0.10862083422890784,-0.5441782816808225,0.246014064141434,-0.25201904467582215,1.1589114749916387,-1.5073900978143218,-2.6134742423551143,1.3444128256521617,0.9293525806068972,-1.444469638668688,-1.0519122342282687,-1.7112176675961643,-0.8746260729068247,-1.360497927951797,-1.7480183142402268,-1.9402276706494919,0.4660909432000346,-0.8124338998870931,-0.1331451232686787,-0.06987272607487104,-0.013743670275340793,-1.1142199071424739,0.5358920927201443,-0.6991910017901313,-1.2221249751053727,-1.8483907752190643,0.02157219106483231,1.1196645062106665,-1.551977058128498],[0.2600423321457506,-0.9203500396534153,-1.3167963236033897,-1.5292610146838252,-1.030040976708918,-0.8066866564678706,-0.22619142092680006,-0.7021834599080597,-0.022275040704678357,-1.5614982266479114,-0.6932314373191043,0.924962785182812,-2.0626870899796828,-1.441408452904983,0.5349026815334564,0.9571251563609833,-0.6920504205227626,0.575099664057939,-0.017446476644967856,-2.942861351131617,-0.23789503219473557,0.16251624413827934,-0.6656105581359876,-3.334302742372518,-2.096067767469946,-2.064030516755977,0.23582864601936632,0.6390324858252997,-0.5471309728624187,0.18054427636968637,-0.14182360133336783,-0.07377917187658907,-1.7349944444717065,-0.2440084751906585,-1.624365092586885,0.7035464555055153,-1.6591550708211802,0.05394932742944919],[-1.662753169445038,-1.4691975228547591,-0.5042224823255474,-1.6214204837609367,-0.7011755590808345,-0.9901256614862658,-1.4419071776328023,-1.6100212446144648,-0.986837974609704,-0.7639051104780604,-1.4808944938605135,-2.3004698262189067,-1.7661675478760896,-1.6814400154006854,-0.6546570292291528,-0.9509828338717655,-0.7784140948354749,-0.574456778905222,-1.2305430185926067,-1.329307348760729,-0.39598411574623565,-0.4955040383332588,-3.2411136662345137,-2.274361413457711,-2.0671674891625598,0.07021633702769983,-3.1243051671804385,-0.16163518582293063,0.367406475285714,0.3723096506595631,-1.2988218318361544,-0.2976592966487215,-0.6127818130484101,-1.7192828997451655,-0.2484159659822595,-0.3370491288214956,-1.6974646985996642,0.46151926576224256],[-0.3740757146421802,-0.29679795929933855,-0.0513449992155216,-0.059981186421368494,0.3360449592981174,-1.6635572689631333,-0.3770445721716754,-1.5332687409876697,0.22806901673565538,-0.3129199381714839,-0.3704936807429007,-0.05637056790144043,-0.4542673259421072,-1.2847543146518168,-1.4932325134887232,0.7829841551402476,0.38429316928819285,-1.4041974106737682,0.35231659386148967,-0.8798221340680764,-0.578970804955314,-0.4696835548984281,0.012560781218270539,-0.7713577102867145,0.9748892650133485,1.0337788869364903,-1.2369343885574196,-0.7611844516026333,0.13914595617699826,0.6480120380762866,0.9441173033475689,-1.3085514813514767,-1.7317201564862088,-0.614033703560778,-1.5429341544545536,-0.8502590341361549,0.2048767634049352,-2.0262675361049944],[-0.3272248386204096,0.09724250218335674,0.16857520897555217,-0.7105782404660225,-1.2031178201200068,-1.2169905815575996,-1.02652533665432,-1.1350799406948047,-1.3414946478909278,-0.5520725597303839,0.0002574351184754416,-1.0099124968185917,-1.5436722568580834,-1.8908862572320586,0.5037187594000009,-1.3679578847843181,-0.01661646066231498,-2.084496972827248,-0.9222746055547724,0.4896965834101976,-1.4995751389043706,-0.6869513218428992,-0.3623848490400298,-0.4820044010097664,-2.2273957343873727,0.4954861868984952,1.455209682686561,-1.548457648783965,-1.1359957814442363,1.278354399761572,1.716179123707632,-0.3097681996688175,1.0608904661345269,0.6563875554991523,0.09682380437667717,-1.3934470799512875,0.5294647919333685,-0.31892486569110934],[-0.3966456366765939,-0.964121853763817,-1.6984332774330069,-1.5957520862967096,-1.8632404145583756,-0.7452396180033823,-1.2345256046922226,-0.5083330521996108,-0.5210206141785394,-0.6845455473685867,-1.1925021579206914,-1.4573142905158867,-3.05650540659182,-0.991096276158146,0.06499298201952498,-0.07931289622670115,-2.7178113176293257,-2.341456281833388,0.3267535372849111,0.4400928167849111,-1.787108783682417,-0.6698255189495084,-0.6923274699826667,-1.9725515925556296,1.017971606235761,-0.8902343444725402,-0.1989681078176023,0.15034449477250655,-1.8266713916029498,0.6470927339236966,-0.6113569611904349,-0.28852277044121727,-2.4346079859709904,0.038678970383466786,0.41505190870203434,-1.3755060888037263,-1.954525502972872,-1.0618786377171434],[-0.44488797542554065,0.2333065971711833,0.11519945749269414,-0.9476524700870157,0.30610741486492815,-0.7829960818879926,-0.0027569628784692925,0.1382158466763549,-1.4014594815735582,0.286530978712425,-1.3772992859442645,0.41827446119898437,-1.4366895123473278,1.2018506350438365,0.14208967405650663,-1.668910737464707,-1.4131831444544143,1.934130139910112,-1.6044082408317737,0.0330132624665395,0.13638898845254288,-0.9832588050645963,-1.4563380944230113,0.3386637922193043,-0.8417440473526496,-0.8702477621450906,-0.9781776813933148,-0.46983242322475194,-0.5207631407003127,-0.726986061736178,-0.26970511143199993,-0.16376806413703415,-0.5459258417320761,0.2722113137811008,-0.7060231107884665,1.10716768430688,0.9638361503585909,-1.5767432951203983],[0.293923952916656,0.018187162810562714,-0.5798467440261587,-1.4334055982482685,-0.5581164653281532,-1.6096196469776562,-0.169167786045985,-0.9457347902384009,0.22872654899338501,0.004299309972421815,-1.2596934425232784,-1.64419556942462,-1.9883475444933751,0.4533812793349452,-0.6587732551521913,1.0615293219933502,-0.08983794194413999,0.6390535624194165,-0.7506602686996522,-0.030019141607654187,-1.5534697164870197,-1.0168465326872578,0.3515247768486638,-0.7482029385070659,-0.11607928994601953,-1.087000045974961,-0.8343561722404141,-2.140964461682343,0.5764837330691173,-0.06784668172057222,-0.45129213461283324,-1.483474515440471,-1.607592115042258,-1.4462763582044014,-1.6968165035225575,-0.4452559446821298,-0.5991136118301575,0.8031775847401997]]],"Biases":[[[0.9492066405068174,-0.596242868682051,0.46131646382130176,0.5047329721862642,-0.8245418127415318,0.7661376305761695,0.2671527307559125,0.5115816846426154,-1.0709502030555806,0.07669247840353767,0.8749992552844068,-0.4413619346124578,-0.22290590565117538,0.5479510968592949,-0.18600456991998188,1.0339909427097116,0.41671572017318187,-0.06175881633253127,-0.4881192615078949,-0.8018925488406528,-0.7295839007809042,0.9113325947130834,0.41895667182402063,0.6521330231479991,-0.2445071957141883,0.8399366004999328,-0.5810747158015375,0.39935888247219387,0.8361101885357025,-0.6265979497604794,0.7406771887295109,0.15694215132339132,-0.47032219620711957,0.05432910007148347,0.7928642976422262,-0.4312132991335292,-0.631050213523281,-0.7477439036060308,-1.2233786564849447,0.9930400776411201,-0.3521016454248794,-0.3170997345641289,0.06256895716423665,-0.3644952937526814,0.42429840947732256,-0.5296896890380111,0.5950537105186184,-0.4118444742914488,-0.6727920989973611,-0.6143258645676821],[-2.255601893281775,0.15261921571265066,0.6181339170482677,-0.4236646262953339,0.41806779136658617,1.8313440919194535,-0.08780653466438516,0.5476063924137291,-3.138527220914987,1.2033845603990898,-1.2490496237627957,-0.9465488947485343,-0.1135595829305468,-1.0538509358681774,-0.5128464906617807,1.057795417624813,-0.3251716246717519,0.2006531612940845,0.27507226567945436,2.053875946051102,0.45086119996991586,0.37562859244190006,0.3452190086168813,-0.30598012875433206,-2.310950682805647,-0.29203513571225387,0.273869358061415,0.9987361382090659,-0.3280022227693543,-0.4209378315601498,-1.0475191259600953,0.4213947371051959,0.646128693398958,-2.004900599697532,-0.03871508621928187,0.9369795293545624,-2.466640009947671,-0.9021502085372888,0.5954564930373334,0.13015097938915318,1.3863958474897868,-1.8228676777085646,-0.7047569787493808,-0.9747456015547004,0.17710926029259585,1.441453235276719,-2.4921255321697147,0.3798890980022031,0.731413037759153,2.4670311591979353],[-1.1894232960117375,0.9460640893007962,0.5799992845616313,0.5491804021189393,-0.13887389033495287,1.5601999006486569,0.8941958463641413,0.8943390785396439,-0.7226379993557706,1.2774279724752284,-3.311099100883019,0.3441430038487236,0.8422706233623252,-1.3790880614303829,0.9185500585574496,-0.3165141277334338,-0.1088532456465316,-0.3503949105815663,0.6606287099304141,1.5824743574673812,-1.237537861770488,0.9677074262062271,0.36221292587012077,-1.727711878224781,-3.075940391099638,-0.7304249484834245,-0.12103478060827781,0.07492641192938942,-0.3585867878303134,-0.05311907869867012,-0.17659085601422753,0.1913132737505009,-0.5713668221415529,-2.277788657522252,-0.29470515565951066,0.42849152221619585,-1.888430410154126,-0.4803879503025673,0.41985293770879234,-0.20965464243616777,2.142863394864039,-1.8556361798274075,-2.8225148447172357,0.042041183242254976,-0.10456342051937335,0.7746625038096342,-2.5477914163355644,0.5063379307275168,0.019407917273913968,1.688329621486583],[-2.4671949531170863,-0.40131773100984064,0.22355863964673092,-0.16032586948374394,1.702318746079347,1.6035402081293717,0.9353249176015664,0.6422585892997802,-1.4224289491678024,2.5226408351865395,-3.7340622623109763,-0.6511910685377076,1.185855018553253,-0.8620851626236092,0.016939710421492414,2.3490118420690753,0.5151635569172976,0.2639304542207696,1.50413582505754,1.1045744376109414,-1.0734099133811414,0.6642741420043098,-0.7658713495768303,0.08071100182839468,-1.2796224062137447,-0.6192651346508024,0.5421133610104394,-0.08497259433286757,-0.16878107415247695,1.200843997337343,0.09378162809507415,0.515878356830542,0.5509566943717944,-1.6494604344593384,-0.1805628806212301,0.411362162622263,-1.0994834899853256,0.1325234053892832,2.1301516478110663,0.07494376445089995,1.159297616336931,-2.4667682020918082,-2.492085555084671,-3.2150514322305512,-1.1082423184065822,2.2929304839615656,-3.5983200186685966,0.24081783173003046,0.5379967451679114,1.2099913524710806],[-0.6947545275998644,0.9110695473386746,-0.665253592436258,-0.6125479260182177,0.7099865292794575,-0.48132065266771945,-0.46110349620482244,0.5129440712630505,0.4238474525226749,0.12074208530839771,-0.26673616318971305,0.6874119915850875,-0.7457217450964417,-0.4275505651035019,-0.6039085500633377,0.34264008629141646,-2.1257058217531064,-0.5214022250379284,-0.36489591173408964,-1.4982848152823747,0.2555734268873433,-0.6052992595563741,-1.0168556439534615,-0.5624814791958433,-0.40581824571176894,0.2478871821550396,0.3734326366181128,-1.697471237642646,0.9022207762858685,-0.7012434013570583,0.7970984919704267,-0.31273567925649376,-0.04687052344886223,0.6471817992374751,1.0284136114545424,-0.11558245879894884,1.0071361026641734,0.39368958245967917,-1.2504087933390402,0.09805824887634813,0.39541477089768506,-1.0298864552543214,0.321521618911327,-2.64726715244481,-1.391019047318435,-1.269699370316524,-0.6031386202983863,-0.905728150248837,-0.7911043387235808,-0.25591320320122407],[0.16007876614427075,-1.8436359264486724,0.06335062149481539,-1.144951636447586,0.33134983420960623,0.90894351126691,1.297801794735829,-1.776714467847562,-0.27239883641709917,0.3426509300594589,0.6114913030772162,-0.3553535053709435,-0.8569506634835032,0.9708792432586527,0.3763849428357495,-0.4600863637221387,-2.56348170026016,-0.5898158402727167,0.33893982413250257,-0.009874109162109287,0.6658277742752126,-0.4562784664617139,-0.7493826152186092,0.433493493370256,0.485840548820316,-0.8802133298722263,0.4084738983152423,0.7344138262262732,-0.2096594506332754,-1.378945656088161,-0.19912006072929797,0.2445710528604808,0.747654143391798,0.005413640276292841,1.0134471545152972,0.870869677713224,0.3016592167103787,0.2097386211390558,0.09750008113196876,0.5956896513188725,0.49622016833096794,-1.763457009496783,-1.6133717664034606,-4.3184728604606475,-1.0151684425571832,0.24613246758787505,-1.1413068679473628,-0.37039320365517975,-0.7937945562631458,-0.984603136162731],[-0.6879082128545765,0.18672861873678856,0.284336751863462,-1.0888002823693548,1.0628134354868652,-0.215859173476534,0.8530032756589025,-0.4241013418876123,-0.6283986659492498,0.039209582161000595,0.33795495174082857,0.24863429506854975,-0.941977564449538,-0.8678792788186958,0.1377754311264494,0.08484506653704264,-1.4193187560071368,-0.10189637256405351,0.6193119541694119,0.783205658342601,0.01309481680477329,0.06493413684937828,0.07787439971271833,0.7062628064989348,0.6217527272255702,-0.08504538718612736,-1.63900448627275,-1.182525359424924,0.6358556216664439,0.8121051431527317,0.4298272548942556,-0.02911059591274977,0.4841180704074882,0.9461078598097072,0.6644729196150406,1.3289493460332191,-0.3904857572372213,-0.45884177607507615,-0.2474576949091935,0.7424798754638384,0.3047600657209192,-0.5505117803331917,-1.0380667954718348,-3.645337574282881,-1.1690768124290536,-1.3162681017385562,0.1593503972173417,0.1094202426526674,0.8534205582876075,-0.2920159524697004],[-0.46702762675800463,-0.02927938242497097,0.29918805962617134,0.5878447603478172,0.6898753473420868,-0.3045619089495905,-0.10253915228346559,-0.34202370943258065,0.28565108407726947,0.6368036809372607,0.842995783729955,-0.24908301227868254,0.10578415187383897,0.4619009285112325,0.6067476619501986,0.39612444245541956,0.11292197053204943,0.5573655690394027,0.8307974560951954,-1.2124269981535263,0.3765984610013081,0.6411992424774224,-0.39228609320245056,-0.9160892223566349,-0.7069064775637498,-0.29774841993173284,-1.4473828604670493,-1.2096182355882554,0.3255478165292698,-0.4998591376184327,0.40087294762174186,0.07217020903370988,0.43708125445807344,0.6138822131507438,0.7611064189483902,0.68935322177914,0.22319098738398083,0.3550380920243545,-0.9089962249636281,0.4482513245479797,-0.341126308630899,-1.0093182859778191,-0.7442383172422388,-0.40422726245884055,0.11235911504459957,-0.8939653900111407,0.17731220030945277,-1.0904016568679418,-0.019922509153392977,0.7270217565557846],[-0.20312330443295348,0.9750486409477768,0.8360367562099903,-0.6091617365625746,0.06536300084255087,-1.2279620361959345,-1.2959572499035958,0.30958146761249644,0.7972952932035657,0.5423913645485324,-1.6875209718278001,-0.9832973007316527,-1.4460160206284083,-0.8023735704454368,-0.9791519934138123,0.6909634267560745,0.12947009894949743,0.258421509696748,0.10063181230030187,0.10384095704441904,0.6735785194009993,-0.40611103657233266,0.8202306312185561,-0.560541758405963,-1.0580282002139068,-0.561850964078553,0.8419685099659688,-0.060924162600273245,-0.5225378580336776,-0.4344703431647311,-0.28436093473174545,0.4059024400993441,0.36629499468233595,-0.0021962049793941693,-2.0672644770068365,-0.883120906334607,-1.5751226138415506,-0.43720688621375403,0.2603395802118385,-0.5643273244750743,-1.1743626797909197,0.45231908047741726,-0.370306912094495,-0.3296304516963963,0.5085120790712677,0.344633645407697,-0.35027047310138854,0.17980568133681082,-0.5150911158736018,-0.060567811494520604],[0.5197205447949607,0.2095021991049216,-0.20557098807893756,-0.7881458597565528,-0.725783662809421,-0.5312061898453396,-0.6126763351093438,0.9400191747128575,0.2248657745611051,0.17628994863557632,0.13030928699810207,-1.049615331830925,-0.22557181835700407,0.22271295438165223,0.3108616457218484,-0.8101725879378102,-0.537545177488425,1.0706344755944812,-0.8419472150042642,-0.2202517014811527,0.727867849662695,0.5096278770714655,-0.27326046527154774,0.12255715591616789,0.568112856572936,-1.0661951640206557,-0.30073530280736105,0.3494916711938265,-1.2663144465657192,0.363763793716293,-0.39918869168893467,0.2642177848221027,0.2002279408744301,0.7155294803502784,-1.278366610599892,-0.7545569308961435,-0.7727841291666833,0.1734561961204174,1.1841181129124148,-1.2073453577943647,-0.4735306225429016,0.0060717140364162725,-0.6864494439040496,-1.8714463991816994,-0.420941397078335,0.7322158007935905,-0.7406049878675086,0.4196898809232698,-1.1995116419349223,-0.06437147456759092],[0.7961993015452457,0.16867673177537706,-0.2889834331370486,0.6338542449553417,0.46380498696553596,-0.947199188852655,1.0192075210847105,-2.7149173877903476,-1.1902617977303882,-2.979909587932721,1.226839819948189,1.1347162830346773,-2.3885236986045992,1.799228492426897,0.5552054510600589,1.8779079001509837,-0.3814617984161801,-1.7299006206979017,-2.575059303196954,3.5955672502901317,0.36348125438763,2.718341231177352,0.4681528833543695,-1.5344326126188215,-2.375927886489922,1.9283025333255386,0.6744552479398295,0.9100907719771608,-0.2667703476047916,1.2962466566143716,1.541935141534107,-2.087909370919734,-1.5458231181239301,0.6504651411018147,-2.699946669852722,0.8798336160997653,-1.8798168085804603,0.454562187814629,-1.4265426099325038,-0.23999884036139021,-1.6483868994263793,-3.0886201908406448,3.112798716555745,-2.601071189396772,-0.36568431090548886,-3.0540028469078844,-4.591980117266674,0.641342310567974,1.5145702815458248,2.627510193159783],[0.34191467656092184,-0.32792632195055366,0.9846190491120469,-0.36586255157817443,0.13700311592733339,0.38532141481178245,0.32424899455770206,-1.3811669385506562,-0.7331345932096187,-0.7618654412138034,1.5690031631732646,1.2401286101818798,-1.7813566397833724,0.5963004447231511,0.7586883913237882,0.09053390626900411,0.05263306219521381,-0.25053818909307474,-0.5126182180969421,1.5420566529176436,-0.01693808265086957,0.9320409176182978,-0.6498974635630924,-0.2168917832519291,-0.41844346423338735,0.051361197073126114,-0.31804540945220466,-1.643070446464466,-0.048093803824875,0.26156619818564875,-0.40759614704127156,-0.38809870708022365,-1.1384241540787992,-0.22388885375149428,-2.003846469135552,0.008398248344041345,0.7557385141780798,-0.3390839595949189,-0.7165994852346353,0.6061387410454143,-0.923136371615994,-1.7563999088769822,0.17263522861595773,0.4249423657937324,0.18923475908975929,0.2847206343095221,-2.4326819560201054,0.7522632503234912,0.7417594859564761,1.5939600571159909],[1.5677515812590646,-2.9029293051342937,0.05591979810859925,0.1239723640015549,0.6745081954341646,1.2414274673219692,0.4492914702877546,-0.4333967447558751,0.10721951970852718,2.57588978785759,0.01031987793966463,-0.7478651998594568,0.9415243043352087,1.1281672821560476,0.22581790307864663,-2.8626164549160893,0.8336094124378405,0.7537035944021224,-0.8172311725789518,-0.7127090442147873,0.1079065611206804,-1.7697422996062393,0.34824174276613934,1.6655771967939912,1.3061565609802732,2.6274975634162208,1.1058463718256788,0.4729927624606892,-0.3603493380914216,-3.9391887553472826,-3.3400153930466936,2.60418875001893,-1.3667382504979122,-1.9889285423603567,3.3377522567415947,0.2437540917647716,2.436867800134756,1.448512087787007,-0.9638665995220748,-2.2252823276656395,-1.8126315776786535,1.967634181584143,-2.3191427548500076,2.731459599751026,1.2528579539104,1.3439437532923968,-2.7978842363968175,-0.7085119672826589,0.9718230708300373,-1.8223446422276532],[-0.248100927407401,-0.6352887388088507,0.1669580552695193,-0.19758652386168649,0.7346160672471731,1.156415800184445,1.2541057528372235,0.2578522185048755,0.9345739438297807,-1.2188936639240977,0.8553845640893587,0.000976041044367285,-0.475753613297513,-0.4390638615253445,0.23435097126926113,0.47664165741062015,0.1958009772902968,-0.7053064962547101,-0.10265587029361134,0.9386096596872898,0.3572802718440584,-0.1437982075730572,1.0269949417318385,1.2184969432770372,-0.3760852787696779,-1.021419636045139,0.4435604862239932,0.7689622666797216,0.9053731477154813,-0.764917189286758,-0.06471476189887859,-0.4513913199296677,0.2454889045125313,-0.028614783212864016,0.5884787028454364,0.27006527524109253,-0.207514552269328,-0.7722901850864068,-0.1310791351827876,-0.21232869584656577,0.49281734800421295,-0.8340492294806652,-0.06863283667395913,-0.21860421404455552,-0.1559472527700762,0.9586652484792068,0.5989445302736903,0.3581925001037804,0.029531887435488794,0.3627624032131807],[-0.3340910181085636,0.19836535906777514,0.9042146641535613,-1.5299735598950082,-0.3305217436306151,1.6366963768256628,0.4121185286985499,1.0681045575784804,-0.2883021901507844,-1.0814746132672897,0.9240995893098913,0.005380562276535561,-0.8095094287402801,0.9303501030156822,0.8048816339938688,-0.9125275887469857,0.23432765197319208,0.5966803076856804,-0.5736539766448255,0.8144871745487277,0.4310051937853446,0.25576560406096166,1.2959099147770683,0.5613474494382504,-1.4017496980844901,0.7136536210767873,0.16230738163392647,-0.18686075046862524,0.6531381313084033,0.335960210989788,-0.9112649525222448,0.26009846264463155,1.2030346308276003,-0.7346868289621721,0.7272003154927973,-0.50297148437376,0.9961625667685448,-0.1986035171803483,0.8380810664951858,0.6208523321470177,-1.0726705427174028,-0.2767676352327115,-1.1965982132472273,-0.18866398774039417,0.55979087535582,0.6854571745433309,-0.9487936976324436,1.0600510757474946,0.2246848604256353,-0.41211827795812095],[0.2517283381959056,-0.2654460553289478,-1.6536410488176658,0.09240977820826647,-0.9272569193911472,-0.1056363574866854,0.4353263542445301,0.8291415045270801,0.5446918836411824,-1.5433395947613315,0.9078232352708019,0.6370658242010943,0.6305564641386255,-0.19338666229853327,-0.07586397850055783,-3.8135609247532893,0.8139091515968832,-2.0072982749019697,-1.1954053938467455,0.562844007150487,0.6582014850027185,0.9436660316347214,-0.49172567446539656,-0.3161788634594814,-1.392248092142423,-1.1611270435236178,0.5880330409380526,0.3385653470331431,-0.7722042542319911,0.5024557460947189,1.0384798027780209,0.41434491996217804,0.10940334588412026,-0.23555812780799526,0.6072125764958,-1.2841931803165771,0.45867060864456005,-0.6425183417305352,0.2403389374613108,0.5988820385026625,0.46647908785879066,0.09912074563200443,-0.23941836009748757,0.6398332853712014,0.7251095185252863,0.374781633252896,-0.1182742194174625,0.4725995145608295,-0.6253936358769728,-1.311783540975879],[-0.08369407885236191,-0.6060415284268316,-1.0911432228618478,-2.2869694765591766,0.9008591137149298,0.2689361172110961,0.9832653952638734,-0.37685603847971133,0.8958028627593333,-0.7906591507146117,0.7014003778691763,-2.045741848607707,-0.22189437761169928,0.7819570713889419,0.2561219774337268,-0.46856052283187344,0.6447424870479239,-0.12350982452547737,0.12154334094739655,0.1258323099601749,-1.7029712205845138,-0.28091329070398585,-0.6675768219195661,0.17922963906656264,-0.16448293982268847,-1.099250906398104,-0.22512510278755632,-1.158821654936873,0.7761921373014373,-0.5884878860086243,0.015141115561924807,0.3147404618826575,0.8349231735845319,0.6999262733822721,0.6098026755477326,-1.5356706642858213,0.21673512498150493,0.42146062675909673,1.1094600774166818,0.6989138986625196,-2.2984402347015402,-0.32988562432335045,0.6269933410574685,0.05318357533977502,-0.13228168367994947,-0.8089310125232821,0.8946569479185246,-0.38820009052613524,-0.28928757900604735,0.9478240932643885],[-0.2353054005214742,-0.686441026991022,0.44126889207766523,-1.1841381915518001,-0.7199545724597407,1.321708571778771,0.9109751714836355,1.2783028581034162,0.6484771180453831,-0.5658753083765388,0.19615652580778306,0.1101014603336061,0.3871142852620761,0.08664899856546807,0.6821013705648997,-0.6584141848808553,-0.11472422733617459,-1.2693022138980867,1.0240134400385719,0.19361997943412065,0.7422467484312656,0.042954084290949934,1.200001486691447,1.9213103002271277,-0.568477016254274,0.8132758589237036,-0.22793139902191456,0.5692056754117311,1.0186108004305325,0.84827776703005,-0.1626437659271523,0.20597391096077908,1.6898161620657866,0.5805725920766007,0.8278808511688588,-0.5923461212330564,-0.5657855472611115,0.6351122846883928,-0.24492172068439824,0.4512868527651682,-0.8554094404903952,-0.5589897737065951,0.1762416116225018,-0.4248027179678131,0.5944925850689232,-0.8532443004139989,0.17523614652862932,1.1858963333991024,-0.6601113968159741,-0.7271891371312039],[0.7629902631994603,-0.6704023357913359,0.5567936407936732,-1.567385087445274,-0.21074152212534594,1.786899343498813,0.04331922083538439,-0.20864400719283185,-0.0839358029953754,-1.370881940905566,0.6590789545175118,-1.4926368752971753,-0.046051825501827105,0.8223113747974408,0.6763243902568201,-0.17027332932032313,-0.3670810775378454,-0.733114370741684,0.4031660206682723,0.7026659518640966,0.2590008178122992,-0.23699664746570462,1.0907034429357256,2.0505648826525675,-0.8896000008838643,-1.155276702969428,-0.2252164529912773,0.10823334693383396,2.358799077280226,0.15995628286297447,-0.32303102535199024,0.07246352118588026,1.6297195231513857,-0.1499001365969351,0.5725836775237985,-0.8509090766259134,-0.23638051715128747,-0.37380280560797047,0.07896153437903516,-0.02768190606835591,-1.120021237028161,-1.120764374606452,-0.4718090946604974,0.46153318949594646,0.2509513113375492,-0.481317865966147,-0.09070948636161226,0.5131588983316062,0.5479246855626334,-0.695253857803125],[0.8202809187890644,-0.6105607783685056,-1.2874446465559837,-2.185839400994015,0.9630026373072884,-0.7456593575560772,-0.7300491053906811,0.36767065988953146,-0.459275936554639,0.8811627152228495,0.7360954040620442,-0.9618806907915979,0.2843618285533967,0.1897517269733347,0.04016371073115445,-1.673141508405477,0.7687705254645223,-2.186083509284527,-0.5889960441413753,-0.018405376194543143,-1.6070311942620845,-0.5788220251492965,-0.417332023383513,-0.80708523923543,-0.3241127319592523,0.3567965646764264,-0.5453658960466256,0.9041221272996866,-0.4244300878834162,0.6102618271339147,0.9381386975463266,0.033372203243939205,0.053327771389309206,-1.4685800928997839,0.8124856037431947,0.4099198446041331,-1.0069863802819583,-0.5675105983806267,0.8907243561760455,-0.14136162064228674,-0.41174228184782824,-1.6114379936260381,0.1580198831641278,-0.4808900119715457,-0.7947596126785931,-1.137422476358177,0.6484543088542151,-0.361051518093609,-1.4966164278268788,-1.1451501426540713],[-1.0247384194860265,0.7609263203779665,0.14661158263610313,1.190037921006115,0.6511192608933067,-2.942556819347403,-0.6900431812408969,-1.7933196341256274,-1.4543481363322417,1.628001924796918,-1.1896190683832413,1.1149133886033367,0.48796290583192,0.6029399522582293,-2.20280282497813,0.22677510919891333,-0.6923408292779965,0.9418804094899971,0.11650655826595883,-2.272241723307641,0.6216070672192581,-0.332143650168358,-1.4768045213439251,-3.7754614579182184,1.0097344562096568,0.4493227260912913,0.4913104688504557,-3.172683090408818,-2.803974695774408,-0.7085474289341439,0.710478788058676,0.9695198538614164,-0.10561434176642222,0.7643322510741819,-2.0141642769325947,0.34216933327839305,0.008242795348769288,-0.8598680674878869,0.37670627020794795,-0.2137772639582724,1.9984342425699118,-0.3081664182317502,0.4451577034182409,-1.0036655840529598,0.8085347303772442,0.478613116959076,0.6467250594755016,-0.8946021445906235,-0.8183548846725606,-0.2549639328081245],[-0.0030142116023773166,0.9131239809979599,-0.19925879095171012,1.4945305376436204,-0.536176080997918,-1.2897703313809323,-2.241933048912746,-0.5496900725875185,-0.01786902163348134,1.7054629499067822,-1.3370623828000947,1.3970789500368535,-0.768736870441865,0.35796440520769685,-0.28016417454286857,-0.02550627114948389,0.8437437823882039,0.2247185973945172,1.2283576969445305,-2.6697655941837213,-0.6049606997201084,-1.0406778328571336,-1.1869622926601469,-2.7492945405625773,0.4642272041011179,-0.17459763153129923,0.2637579350474852,-1.8176498627233457,-3.1772856380185592,-0.7578262070591596,0.10177648325541419,0.620085499597451,-1.2223136561383952,-0.6449424277335064,-1.2914469587633792,0.3885508054578413,-0.10446980296612986,0.0014297616166258319,-0.8277522334473765,-0.2079914598835968,1.8147111438312478,-0.5779069357355829,1.2557705703775393,0.5753065640789391,0.31550337572027026,-0.3615792358091778,0.7568840030200735,-3.17708659962118,-1.1650020683356868,0.4865008512367203],[-1.0819662685713352,-0.8955706371948144,-0.9379326535626181,-0.01686739404353754,-0.3551070721504312,0.48252377054560575,-0.5703474508422735,-0.4527677027542658,0.573137183525779,1.0249821352702428,0.3567249414535265,0.3730974786276812,-0.15372481205304173,1.0820221245459387,-0.00234215954151479,-0.46300208736824433,0.8193389037322016,0.47459973445304804,0.35463414144344535,0.35359470676917326,-1.0888020418649555,-0.7564568731353143,0.40889200304443735,-0.558877929594824,0.3189632316212005,0.23075476135886244,-0.3477432374249031,-0.32693016432137506,-2.0376880306200955,-0.5707989814043383,0.9817991609112845,-0.6180728807294414,-0.30038788178693265,-0.7561830758128179,0.22252414447542068,-0.8843954862227238,-0.6112440167193304,-0.7898550156542107,0.5891324986329096,-0.20175155322646124,0.3947868195984833,0.9119740575390053,-0.08219383702151574,-1.0031616215373513,0.33763179007652727,-0.6911903779547633,-0.830687291043869,-2.0028602028005316,0.008766446076877375,-0.5746927467479465],[1.579624264801785,1.1575489310331146,1.1010388330165344,0.10340243661606517,0.47399782359091375,0.8014130709769216,0.6412316943437877,0.6260509699936766,0.3475695001855739,-0.08341681425122977,-0.3362328390744838,0.17386495609453342,0.5680276202849804,0.1927879115789385,-0.5780095125514154,-0.13818674978138465,-0.006769724992384093,1.702878891022213,1.1943955886021682,-0.1669641410752832,-0.4573842455880113,0.29500576686434843,0.2888919458082326,0.7850680008982931,2.3086973918497375,-0.9471947548998554,1.8378797401479603,0.9282574609620647,1.2545747788075943,0.3740381068279994,-0.09290424117442789,0.9559925276740506,0.11100989458059775,-0.7430295343738303,-0.03669846335789062,1.0009215253618016,-0.7728679881910624,0.3287385455836136,-1.7423371204401992,0.9259227403360525,-0.35617789427278707,-1.1747461417821847,-0.8003291690551698,0.04179930882848313,0.19586861810993347,-0.06262677457815272,-0.7300061995209641,-1.042130306055063,-1.0689905390747325,-0.16193191884063113],[1.4330845019100447,0.47969481846306156,0.048197202014328436,0.04212426506736887,-0.7158438977327845,0.296367501751446,-0.4512492498748767,-1.2407815900505759,0.24550833801491462,0.940245664503125,0.5360687557929689,-1.9485718684439315,0.43108921465888295,0.027039001049323406,-0.31482233146890615,-0.01561998877174512,0.33208322107846233,0.27903770132595124,0.7278711947296141,-2.0310016873753467,-0.4548170752298876,-0.8016203913490028,-0.7082560912237847,1.1024634861840923,1.4827827576161863,-1.202656589809501,1.8173042722371693,0.26603636514878276,0.40902503961843967,0.9584602638856802,-0.30024012485529145,-0.6235672479419317,-0.5026059889176538,1.4126551405510834,-1.3422731872469473,0.9844264236512146,-1.5164966274449772,0.17273182601419376,-2.8646514583172022,0.6596652657926516,-1.7573587094984133,-1.598983474753764,-0.9364857021176948,-1.7706719689888535,0.3716198636315071,0.4037328073809618,-2.383233564757372,-0.9247225570070879,-1.210076826250344,-1.3676392840284202],[2.401899683151513,0.9004891707811195,-0.2892924789657662,0.9715680935833941,0.16923206502961924,-0.17494837903838553,1.2620112906667644,-0.3332959485380587,1.9348509443635906,0.9440447732688456,1.021162029296379,-0.23632127004924916,-0.4337200050778745,0.5018434545856613,-0.6510918495992951,1.578751564225426,0.16646136355744587,1.987089389254479,0.6337292286637882,-2.2225332322199685,0.1959084690375181,-1.9479203596130528,-1.4995662301971484,0.4116700202662748,1.6589577414461298,-1.3709871829569014,0.7537743024863287,0.19257174579520606,1.474656902196199,0.994402772803987,0.5371212186996145,0.9818461928349711,0.7316619827764776,0.8067004514619156,0.4241159743173632,-0.2563586468226101,-0.1456854134099158,-0.43401608876784753,-2.16380974762149,1.3461436762061836,-2.360273634074706,-0.10309550925131561,-0.472148221216292,-0.6443184980168554,0.1482695687535449,1.022387618972649,-1.5441468580968771,-0.8951275306882894,-0.5944163499013346,0.026136696407830694],[0.5134208529460899,0.4980392710453928,-0.33608612729738735,0.3402591915010952,1.0576154223227343,-2.6669220192962015,0.5332465398814571,0.7822643443821974,2.7023042600010685,1.768233176363987,0.6332268429651026,0.9086971426440418,-0.49181795123601674,0.665748759828263,-1.1906462932818833,-3.7286201978954066,-0.40303809227109866,-0.39601226044563537,1.2495393707739155,-1.6791674645111156,-0.16357778702483222,-4.634753565567947,-0.3832735478878705,0.8834719079527532,0.8665744596704253,-1.672483795498879,-0.658487844854402,0.758668647849514,1.2280193259309755,-0.19229667616092674,1.731810055505395,1.7664595390001199,-1.0696433824464768,2.1709533942902053,-2.7883556144618478,-1.0024655844220267,0.6479918636298245,-2.8748368335956505,0.7198919959609357,1.1146587452525394,-4.121681216887001,1.4406954028226187,-1.1491839664359123,0.00812676907145155,-0.4171380199603289,-3.255151385767827,3.334242296705204,-0.24786180895819193,-2.257000773108751,2.5210692679580466],[0.17115347145039803,-0.13249634707694666,-0.38911353466276577,0.4085032306086559,0.9684552753442468,-1.3955900274810407,0.47604214997484606,0.3173585092560327,2.5407280407828203,1.7765481697376735,0.8429853699048377,0.964186746425941,0.1938894113095224,0.08806117475188058,0.11580848893158056,-2.4266103740422937,0.795707208963228,-0.41278975572856236,1.1775312851693795,-1.2127734125855483,-0.23172285710642318,-2.7475442745484657,0.20025212662869454,1.9801807495997572,-0.09980179000430345,-1.4968808886656286,-2.2079967319992484,-0.3495253998782165,1.4175771716132426,0.5930548677017062,1.593916731920411,0.48555708022092764,-1.7857304838363295,0.7547878430144448,-1.7758763021497932,-0.15612748386549838,0.3891776160756841,-2.4492504190754705,0.4181292235619629,0.5591601459170484,-3.1006019873946724,0.9413366150428986,-2.103150939097357,0.9178108259998704,-0.17346219191628065,-2.6428744465017604,1.7995003093357123,-0.03724238241540559,-2.728933955840004,1.5978821858499368],[-0.12380951959012454,1.0542674467631328,0.9111032530038122,-0.07666246719847306,-1.0150456835547352,-3.61275864356725,0.11012742148106404,-0.08011194899356731,-1.1647492316534536,-1.6766038136775894,0.629856461720003,-1.0359642906865845,1.2235917642792413,-1.34973631612732,1.34428432757825,2.644571132158993,-0.04665853480669294,0.2879242593363181,-2.928990674529987,-0.01414640976629465,0.9112075061204303,1.4315840293684343,-0.014198679853356449,-3.314721138435758,1.652757946954223,-0.3654425765180154,0.6373197554036821,0.8821288328927658,-2.725492576252714,1.000424030268642,-2.023024806868487,-1.163988888244179,2.2515938532738287,0.7599372466468368,2.15280596009341,0.30473840288982657,-0.01110077709313159,3.1221829720322503,-1.2476419874791398,-1.0222311631861665,1.953861529587504,1.5060033148990557,1.4200977481870416,1.2298421441130083,0.3830563717760434,0.11075527817149633,-3.943536146886735,-0.4644947634727476,1.0189784494608436,-1.829358812233945],[-0.5194567053948328,0.9818103441043617,0.19909463921646306,-0.10272867391606097,-1.6068451892986515,-1.8711736415882685,-0.19410234286640024,0.829073469531683,-1.0418219282616545,-1.937830154991781,0.32981795196771485,-1.050476458380814,0.27827957463012654,-0.7815162675212898,-0.0037756576089644192,3.3506309158303327,-0.045745776581824646,1.1544135812211003,-2.0088675779643737,0.26578368010807674,0.1629184774100813,3.438486996881805,-1.1180517894028945,-1.8067532245681919,0.2776550179085907,-0.15288386455899564,1.611468603506606,0.1049415139088388,-1.5376450992272144,-0.45944901006438255,0.5307152272197565,0.6301460524120444,2.3190491409994722,-0.13579188871530984,2.123524061192915,1.0467038991678141,1.7450340466904257,2.091289084719499,-0.16430139250354014,0.27010591583245713,1.3058178678258692,0.6405255453383812,1.4362981629009217,0.8486383404136917,0.15576252108262018,1.178746388137588,-1.0302749427048938,-0.5113038018710867,1.099857919952029,-1.1697708909685955],[0.4895140586071949,0.7543213626864557,0.29703419467526637,-0.5758250491758683,-0.7710627308111612,1.0549279686841968,0.15076016521216826,0.9668664209955133,0.1142194243090952,-0.0551157401332197,0.5781466014944507,0.15594248986362197,0.10337030760240251,0.43511156306722265,0.014989376947239504,-0.3694269975432311,-0.2164067845565698,0.7178426623642357,0.8998902195317443,0.6456912747791875,0.23095692009267502,-0.0010057297628231843,-1.2493625930880041,-0.8299506678729246,0.9988894881137437,1.5037428919847906,-0.4628774044705065,0.2230152211305886,-0.809365283714507,0.3820643354805677,-0.34101751408734104,0.2636860370065169,0.24934219848532194,-0.987825618575938,1.1300564218318931,-1.3679152526643066,0.21537212159332006,0.9813575890898981,-1.0386759203838922,-0.17078836693057942,0.6374565573186063,-0.2133773894838062,-0.26077650752667975,1.0492014012306023,0.30296570328012107,-0.5447972968264362,0.7624820106587112,0.355369241584444,0.6111632090970652,1.3346767577660779],[-0.27477848716903663,-0.8884438161930446,0.9648770983727983,-0.11218996735497527,-1.2666112626177943,0.07789319167701322,-1.9714957605637644,0.362393008136255,0.9132822541640245,0.5911108307056234,-0.47383205890535574,-0.7736042493327456,0.13788209111644623,-0.09747486513961699,-0.4416218951599973,-0.7378816217009927,-2.143850900595781,0.19756269481977826,0.613757126416693,0.07407576093518975,0.70371234884504,-0.3888245020569544,-2.3474155884724888,-1.2829933879895832,0.34198506523913746,0.8193699396967782,-1.493592721527013,0.4147428855842047,-0.9299360604082716,0.6745330614528506,0.6570906223352073,0.5841718865757379,-0.7528093432343816,0.1966768668056118,-0.20538494589961542,-1.2339095108542744,0.17609090792449864,0.00357729769298958,-1.3530719436473735,0.7152374350556934,-0.3233827496830131,0.28448723992664693,0.36121026895225855,0.20744536276515566,0.12827251642990006,-0.660696809755618,-0.9256942444302748,0.23611655348707283,0.7795256181315634,0.11150743226808948],[-0.5765281568645946,-0.18630766353603215,-0.5027605741890532,0.217410121928957,-1.5932903108209133,0.7383216080042919,-0.6215998088648159,-0.7587168472197172,0.9546697203054804,-0.08026162634635628,-1.2629046656706602,-0.8469207263426095,-0.6228254544703145,-1.1181044157509845,-0.09128688791749927,-0.21032787067109984,-2.88791254905846,-0.07232419235107036,-0.8514411365916431,-0.998383101312729,-0.5090731997690161,0.7743079255419536,-1.6609727034712587,-1.081659639136471,0.8002615301691346,0.23685165038549197,-1.950409224743435,0.04229099043624151,-0.2075874389640426,0.1405335191308241,0.3497374100216135,-1.0196101498809966,-0.9196866462166536,0.6512962912576866,-0.2529866216606013,-1.8212439601759756,-0.13231575584539548,0.344466904140714,-0.4164987219167214,0.6467386210516611,-0.2323553824736696,0.6749165836644831,-0.2638395915981201,0.9347197164651314,-0.7739798155166532,-0.5108898486596886,-1.3134865542178389,-0.425845205658436,0.3083159080997677,0.3345909315825915],[-0.7617355243027897,0.572705339839851,-0.2467303713203977,-0.17161943559005183,0.6862527170710626,-0.554806944559388,-0.816718277110605,0.6671211732771939,-0.46635452596524596,-0.6040255484291374,-1.1454137153131152,-0.6846296288640045,-0.3401787854726555,0.08257743636769604,-1.1579532411783295,0.5140953952618547,0.7237888914435997,0.20061532438404103,0.617439488947599,-0.2176239645314904,-1.3946050187414951,-0.4454693813936187,-0.933350172875892,0.5320555779307018,0.8898837563581602,0.7500239793750431,0.7558221623638269,-1.0335605734834183,-0.2458909721542841,-0.10278209744674228,-0.08030931514600088,0.562181666902109,1.034875916167657,0.8810556523317088,0.10891044574485328,-2.536994939915758,-1.3989902816298565,0.332789612675746,-0.8235894950446492,0.8400761380273178,0.35448668943027395,-0.4536493935239991,-1.0511175880646304,-0.13883104918312159,-3.3545328295931185,0.43547176812567856,-1.0842280435979654,-0.13441543922652066,-0.12967085480915333,-0.4047964003732796],[0.2734989531629755,1.3450823490220343,-0.461674212899152,0.2814219666351006,-0.517876185097644,0.8156336250761558,-3.6140361895180826,0.6652850430113062,-1.156030879346585,-0.08020309042792226,-0.36142686366847016,0.3782008006035613,-0.30254084482612287,0.5465891583799457,-2.449145745066106,1.1645902403446742,0.8182658459662069,-0.21064829674589214,-1.646883613455148,-0.1869456576388546,-2.060403724124197,-3.9755737468348085,-0.5401713739482592,-0.8797260469924162,0.8554411507134526,-0.24366206157924847,0.35139290621694375,-0.09385959900557979,-0.4473448237336894,0.5816879197742645,-2.692520516679174,0.571805688826906,0.5037442945071131,0.05497486448089125,0.9213242103810672,-0.86866236881209,0.12222845211694189,-0.693685043381559,0.6232920425270344,0.6369349747958444,1.0190213861776602,-0.41338676023826887,-0.6750692575161225,0.5492745562630874,-3.414978909741736,0.7044354391471822,0.2476182074106346,0.48507589374164745,-1.7998597890770949,-0.11751042475578084],[-0.9575504493590087,1.0138770449730439,-0.5319525057644175,-0.9147761029255046,0.9435414693378803,-0.3219715549082772,-1.5934287720991969,-0.23576904082546968,0.33916635903394804,0.6036763384115534,-0.13958513727085528,-0.5492222890485745,0.11151302795160604,0.6933468049305695,-0.9054470776973629,0.960955334740126,-0.0755989672956044,-0.07559196592798048,-0.5771833582500944,0.7530904694570385,0.47605897866262764,-2.2803481311040015,-0.06128513757142553,0.732870648069985,0.04291842215963079,0.25122073854549865,1.1987034966561125,-0.41039097176744144,0.7852097508031354,0.0892285746169719,-2.2055372133811546,-0.5707145098180298,0.09219447791555878,0.9052057435896567,-0.6311926043499859,-2.432590249066398,0.4693525262500956,0.7521379903024298,-0.28651138035182855,-1.2945974368179711,0.2479495970303681,-0.15763981049919104,-0.6131950148551522,-0.9731502650432702,-1.378711832187932,-0.3978049928426172,0.8596095654536346,0.5330376772309037,-1.9590355156670356,0.2422767946248493],[-0.9807037609332869,1.071894033205066,1.053017124409435,-0.7723301258559424,0.04423135308124853,-1.0361348773098453,0.7068873837058123,1.8392029130682481,0.43067905630630143,-2.04879216633817,-0.43567783281561323,0.7448303818002407,-0.25057563245743375,0.13422918706705117,0.4105930010099705,-0.44532375081131026,-0.13730903250297163,-1.5940586403806816,0.08967652151521967,-1.7725980928733593,0.09202960102007282,2.2648770213214426,0.2788055360434778,-0.20236040952529225,-1.5967740649648985,0.5320498288413493,-0.03956709730095729,-2.2439199199650455,-0.4253348712262487,0.6785287026658282,-0.32792064285944833,0.185201177155607,1.0813069465757283,0.3626104233660788,-1.1861944695151159,0.9692986483903607,0.7522692205737485,0.6445736665665316,0.13263796983821172,0.9389643448749097,-2.134904514661088,0.7955381471686164,-1.227364521046579,0.027803564316543117,0.76981572952748,-0.04596327721903502,0.20580382985576423,0.6212183511320278,-1.826283095456251,0.2972108206927543],[0.023481882830117384,1.3832432846691523,-0.45197855717206015,0.7914902081626748,-0.6103322737920789,0.7356587209098752,-0.2824547873865821,0.9653157573765547,-0.5048196916468252,0.35646284157925395,0.6442437480840574,-3.369610872190401,1.2734169116360068,0.025278414020461708,0.7216101997861206,0.43167865870060035,-2.2936300966037555,0.7128328030406,2.4085754767256025,-2.005441661393596,-0.6305755917509377,-1.044696796273892,1.3863925635885603,0.4009060981991016,0.8033283883318507,-0.12219597936434064,-1.2094867723802876,0.510416668628029,0.029444148497513898,0.20948013815987784,0.4014931513787455,0.6298306829266147,2.943622768995564,0.9025016711008133,-0.4715529676072657,0.493397569947487,1.6913426031024736,-3.758533221402216,1.402994408009383,1.0305954364638812,-0.8665880837826376,0.40136445785733926,1.1934618339842313,2.327020160812687,-0.9800066480953272,1.0030019564064936,0.19624730306506802,-0.44558295611342086,1.6340193120661837,-2.6985219274758845],[-1.6346951693819747,-0.32487037107794164,-0.6502703067886471,-0.631469516296302,-1.5346154141229449,-0.7474675459343414,1.868744022988172,0.2465368711717413,0.7977590893861985,-0.7779772684401398,-1.5458861259950762,-0.9281795548237177,-0.6526311075475876,1.2848992290911214,0.6357197102057366,0.47575979242238187,-0.1974590440451069,0.47976631496990035,-0.03160357448731374,1.0638813394320754,0.6567713736220818,-0.9670829893495313,0.16543400574656114,0.11611493796346345,0.541955710902041,0.5374089687319037,-0.1118537544389449,-1.8576127502382918,0.37595223660890764,0.3258827875966112,0.9666092585135266,0.33996674797677806,-1.3942798671673913,-0.7025334430764277,0.5294271717996274,0.41146957012225605,0.9203906659745551,0.7581060538698867,0.7037756002225917,0.19140936358921948,0.5437797503974956,1.598164349530319,-0.01821297584825215,-1.4249023790610205,-0.3413299122461714,0.5959043931765141,1.2499115790208957,-0.719385071042033,0.8689984698465336,0.2994335018016989],[-1.5759901553739262,-0.14912733651501736,-1.3996736405849077,-1.1374281654598628,-1.7633944501564434,0.7654479238265479,-0.16805971703189299,0.3089375220567834,-0.3710734809870048,-1.4822315299390392,-1.4330321633385024,-0.15224566072234352,-0.6725943184957619,-0.8650446289035838,-0.040220915251759325,0.8150041827898362,-0.7689075399290652,0.18369824447975114,-0.7841602016627355,0.5750968645810185,0.11672393445337496,-0.7564399704580747,0.6468764646045071,-0.16360531879995815,-0.20757861018697749,-0.4242537249336349,0.879743629757684,-0.9425804687175584,-0.0013469612322192593,-0.034384323196431255,0.47929889733572695,0.9877048496488724,-1.1780939722060255,0.5418637897619504,0.5873285307410072,0.9369051149507149,-0.37659367666633986,0.47884100291255627,0.9308577415644769,-1.0602613042123423,0.0675056205224902,-0.03791877308702382,0.9799282527987189,0.4832623516736977,-0.08434001041325793,-0.17945496872558522,-0.13839564454758774,-1.5533443670450826,0.5223858878064324,-0.2984445686864052],[-1.2314163784500032,0.208543009922467,-1.064566385946083,-0.1537679757918765,-0.9859007138620763,0.9489049168555296,0.808975475120822,0.6923635017642141,0.10034099741521836,-0.44416233823456724,-0.4077629091658442,0.2220675071143353,0.8361436275060087,-0.6318177375086529,-0.4508520033276397,0.5271435374673931,-0.09385070227280408,0.33730512504089294,0.10586522384301232,0.06474474849084774,0.12837585881495717,-1.0164355142906965,-0.09911607444172951,0.2929380808783316,-0.09215465208596824,-0.12023502140750403,0.21077529079580146,0.731058428603228,0.07493727886846152,0.4805952729612218,0.9445041619495556,0.1079584838282236,-1.228357848815811,0.5259916590238496,-0.42217390042250885,0.12662335842641637,0.376995749790198,0.279284906180126,-1.110188670186867,0.3254032858610672,-0.9066797568853902,-0.4000040200541273,-0.32304393431947426,0.5860105524927329,-0.9621898155494989,-0.3758846204705083,-0.7246812089342266,0.7061343912039812,-0.37765668195397056,0.951840830037777],[0.37461778005637847,-0.8817610386378555,-1.006861777949136,-0.6844409780482847,-0.3094550354571177,-1.219378507815365,-1.4120584385074364,0.07177444165696949,1.9077641164622805,-0.953458931630328,0.32070727200160626,0.09143994854220788,0.48838562831510157,-0.5489695305675772,-0.12420657920340186,0.412162238307345,-0.20936755830191184,0.08230438880469695,-0.6639368484849156,-1.352550353764755,-0.6121431567550234,-1.2683857654170965,-0.3267250661437262,0.7521497988461369,-0.052611531661866155,-1.1179766421756863,-0.5322170590249425,-0.7262805382011526,-0.889484837112927,1.0728167544425675,-0.2187527315642423,-0.634330674540318,-0.4713535438544438,-0.934006984645264,1.0871146088663288,0.8043139482874654,1.182211536778603,-0.9684375227842184,-0.7418942194134236,0.8780995572147442,-0.38876869428917543,1.2952725855111678,-0.747404186861217,-0.12588562521456922,1.0538230368129418,-1.2171377350141037,2.267759301589742,0.6119287486470392,-0.8269969103739149,-2.1101114971147474],[1.7363389681605281,-1.5612067616545426,0.18821745583673666,0.17942025178526907,0.2798695005665134,-1.2201401488494337,-4.166557918258748,-1.1545911684737065,2.1379507336189087,-2.290182958083644,1.1286772603433528,-0.4488842606893003,0.9815908163560884,-2.785766870936021,1.3968270134872645,1.1950937538193684,0.4051487592733831,0.44058398402856247,-2.424838833254316,-3.2266775616836094,-0.38593814654784203,-2.213300384656059,-0.1659756901307965,0.4547079383179149,-0.7753064568376477,-1.3252071547879885,0.35722256844611894,1.1688299000570344,1.0767640022897798,0.2717670298813759,1.4987431009870122,-2.717633117656897,-1.1288462122259857,-0.26670811819934565,0.7626414161895853,-0.8693175168287812,1.5145679274902006,0.10561074920979384,-1.4414873321361565,0.3260652159034976,-1.1415415154997548,1.8742246342589202,-1.99982920799859,-0.9353567811451,1.0012313989065036,-2.0750427627539727,4.650483751107776,0.6749346564745786,-1.3160404455743673,-2.1562800319536075],[0.6076965774585709,0.9357248453646009,0.18539805529265466,-0.5581791113485086,0.38680941185509776,0.4392971923425575,-0.8869548231667224,-1.6607310078958588,-0.007800383084892266,0.6608188370352804,1.2780065192718912,-0.557811631131037,-1.6464331526331526,-1.2178276765397513,0.12726876753754432,-0.8249885431697627,0.594312855032679,1.3299166901874644,0.395843268210528,-0.65172805929336,0.3528455357437288,0.1354909419590281,0.09153151790053445,0.8016687465899895,-1.1475320918816447,1.5621319855488451,0.49440209445122374,-0.4173463607410554,-1.9895504734483338,1.0594056401719156,-0.1219184595922287,-1.0092454004490097,-0.3204696297357491,0.02412465145753748,-0.0660074103843036,-0.5631886227451374,0.5109269140343916,-1.359109331440127,0.8162980661536988,-1.0409926144690769,-1.7076579756903107,0.1376355316527162,-2.2566511025400966,1.8087934652227264,0.997043224466184,0.5566342138721543,0.23253544169504764,0.5595686117674903,-1.432975877236998,1.1695665157161905],[3.4681021355612014,0.6872711665892989,0.6583502730489322,-1.9199486858932988,0.46835975182824463,0.6741867127750664,-2.125927862610817,-5.016951577452415,-1.030221226923296,1.7470962782119308,1.130627831991121,-1.3647837973883232,-2.4019394981709112,-4.5581819211309185,-0.7315264794258979,-0.9028481796077925,0.07790716165102332,1.943227308908321,0.5529764218679832,-0.4892900563997048,-0.36364720931839845,-0.10770072312181503,0.3617360551447975,0.07574470228680545,-2.2410682092153507,-0.4321038659250173,-0.15718521463272697,0.3272339607353294,-2.7171877123660053,2.582153296968506,0.5851943430589036,-3.0861031321411954,0.6969971294707282,1.6010913459844116,-3.4477888368805516,0.7331389206381244,0.2348348862919927,-3.8458626923407975,2.5135750212244385,-3.7456762823094336,-3.469030804557381,0.6371763523694529,-5.827976470411849,1.7994537434932678,1.1567111012661098,1.1366797910610786,-1.2921680868907253,0.7479846763851586,-4.322053504135395,-0.12507182552744547],[-0.5056450574647149,0.36120266858511607,0.9098106634795546,-2.0584638956762857,-0.5905023607809462,-0.5478486510720914,-1.2103228478521235,0.6819846435879746,-0.7731234698334246,0.8285190535647452,-0.6647449351973951,1.3412783070825371,-2.489051322227147,1.1283648517262763,-1.4611124084384954,-0.5497387568523997,1.0582240511295864,-0.5182003518483063,0.1287850483752254,0.34037160856601667,0.24320322980017267,0.7843124643491107,-1.7788288213853083,-0.2001409757109404,0.7881523019558503,1.3530583563327319,0.5527319639372672,0.2156823054262825,3.1626056411707495,-0.8577848023116902,0.26631216390186924,0.389101143113598,-0.1637264579297477,-0.8217529933729818,0.5896569070548292,-0.4554528158189069,0.5986678505927919,-0.46086891988852924,-0.10069567267391567,-1.6050532101066706,-0.019748529285052448,-0.6551166332101835,0.6081996414102837,1.507712773250709,0.286983943476166,-0.7731671368341764,-0.9539668022184256,-1.218704514030402,0.581510943263459,0.999808637900992],[-0.7244737241030048,0.41477877332816315,-0.10459791705223859,0.2918762047125243,0.7693452295540153,-0.8131338328092961,-0.06432880201133483,1.1811789711003862,-0.9736225654040348,0.8118078517912615,-1.26437928870125,-0.45784000491822463,-1.0795163338279974,-0.9158398428080129,-1.5068045550471383,0.09750223295055567,-0.6955317163218165,-0.5941943474424515,0.8864549531873298,-0.5872509866953454,0.4402454451814351,-0.404092412698053,0.4894147844191079,-1.769071510743186,0.5366030147223296,-0.5592550907399165,0.3895513661555676,0.09950682406154769,-0.21011742698378055,-1.4017397939130165,0.428045845547919,0.7429062947419376,0.12447524341125984,0.16036673163060045,0.8253053353043164,0.21264863083043148,-0.08602522702306965,-1.7771553705573657,-0.24579935161982575,-0.3839385560618549,0.49566445742251236,0.29868428542642644,-0.20043831186866082,0.7219594698572112,-0.3589379787578604,-0.7624444879276137,-1.8122713037980582,0.06896690898239041,-0.39884849828219937,-0.133073519213132],[-0.9265908643877494,0.8105680048230998,0.376434455715664,0.6296969467269203,0.15395707778244636,0.4733641370997832,-1.5919895807107014,3.8993381788130015,0.35534036996010043,0.07659592017976319,-0.675155963311434,-0.14312945762507007,-0.3862544050379475,1.087730294868266,0.06616591016990758,-0.2154689211719506,-0.5669029325921855,-1.8855824656850786,0.14543162637908288,0.23298577735799192,0.26872672371624634,0.2203479813057713,-1.5161722127220862,-3.3468318390619793,1.9565077655068521,-0.656350194844137,0.03277791532613914,0.09551327971296286,3.4144155536743335,1.4490397077458543,0.8077938093340049,1.6915809807415723,-0.1645540123167319,-0.05325539515044337,1.4322530184766615,0.6392449857998139,1.077936503947449,0.3358363881200433,0.7343202119233213,-0.7750524786499722,2.1200303945931633,0.9276348812016705,1.4085913596749697,1.6285741759116952,0.18718150992670612,-0.40375028528427664,-1.070632078325178,-1.327546888533426,2.903742119323744,0.614952872243766],[0.6067169601584078,-0.9878204068577763,0.8468371421776241,0.632720948133077,-1.1751774368353858,-0.38497386306236125,-0.9676132449255995,-0.3605453643339132,-0.8905338383178082,-0.031717639437445426,-0.5166045792640617,0.10497295633682718,0.3621295441381966,-0.43504287763667465,0.0899645317485808,-0.129576113952765,0.18341662445191337,-0.9873604449039909,0.1840040278398438,-0.7381936773187745,-0.396691132405154,-1.1507109389791579,-0.33717905492178435,0.8079869510455693,-1.207927811206727,0.3597762072569963,-0.5895112095896706,0.17830249071794496,-0.4656973733091145,-0.6541812509799402,-0.4156381322447441,-1.7817898561921066,0.1454257078416318,-0.22270496829659195,0.59900128376186,0.09679858163828889,-0.3115230703966992,-0.020002437775449442,0.37099203077001325,0.7754708023991301,-0.36973758625960473,-0.3706801180652531,0.8890045981422872,-0.5016699693287261,-0.14423330588173575,-0.9294337149601053,0.7022175576242143,0.6930216390440186,0.7758833991880488,0.9006795911206708],[0.12383647299843736,-1.641053389064428,0.9666285716855657,0.030288042475229333,-2.9817833385789627,-0.7729035419929027,-0.24691208230800193,-2.061604196256531,-0.5975352157170152,0.4035509683263152,-1.7758480448733749,0.5927211489107689,-0.04688051304019946,1.0818677856398773,-0.4435798759767879,0.6226602989854565,-0.2971397676159329,-2.718618228324121,0.6072905145731399,-1.8651341724745285,-0.17536183719908052,0.8283325438108889,0.30100854659367293,1.5077626624907283,-4.063182574937499,0.5351023753070339,0.929232447008449,-0.5699649156395945,-2.315660180803939,-1.7288565333991945,1.0887660764721496,-1.675920927114879,0.9397937179607876,1.7797035023829741,1.5627646768216896,0.9741091507740964,1.3598760103947058,-0.03290008926154591,-0.5963808552077815,-0.07313300757509388,-0.888683515513576,-1.0864416176651273,-1.043232251182053,-1.958955335637248,0.09069978665490486,-0.5668727467669241,-0.05133737112179527,-0.21914219927169926,0.13900671700490444,0.11885321157204942],[-0.2436935893824298,-2.0473652134778124,-0.1746105889221184,0.6992418722351076,-2.311590406143422,-1.222067020795282,0.17564709125721015,-1.3428302135830052,-0.9503652560344676,1.7942749759665135,-1.7750323830855748,-0.368922401823967,0.3571693956007044,0.481668393107003,0.6924845867813358,1.3747869314862629,0.2688318385227944,-2.5201619719438764,0.3995024919354741,-2.1923345331800865,-0.06703221793339643,0.6139544883316016,1.124800555156907,1.4406239702382886,-3.3811995549718965,-0.2684435286432964,-0.7031473815057191,-0.7918592430132699,-0.6357504822207072,-1.1545608618766245,1.6496280615147454,-1.8724249443497565,0.8985376105055671,1.6047868776951546,1.3928462387105214,-0.1919771443776613,1.1421904225036257,-0.6489823901931407,-0.6711803150857678,1.1024722775866282,0.664762627922323,-0.6390355319873845,-0.07186932627472901,-3.9095016578904764,0.36889092450381095,-0.2129741289066103,0.7865126450987765,0.3636901385883239,1.7980682426086834,-0.46839671683369916],[-0.324188692999335,-0.1455669265829135,0.6790330955242856,0.5060428385001732,0.5995175833436822,0.6177581103652091,1.374366268844122,-0.6786212754041024,0.7538827305339758,0.5882643954544345,-1.1610469740459202,1.581504076715851,1.4165376488137487,1.8292302822160047,0.8989179518700765,0.04091895568091229,0.8146719740372812,0.20271276156173554,-0.09948794196116949,0.7593243816116513,-0.6481408340983231,-0.23362232354821807,1.5448484452659277,0.2518424982316421,-1.0168984495095381,-0.19484448877798097,0.524435975893378,-0.11939057844042758,0.5664854718221952,0.21241186657592487,0.1568597879318807,1.2722196476164154,-0.24788958814541998,0.9948557747437304,1.8347102874620742,-0.5629301203208814,0.7715468597517691,2.1813032567297976,-0.6265289022602653,1.6456617811865715,0.35515052091957056,0.341695366586309,0.5457128400637553,-1.9380709226706532,-0.6671088896943813,0.48866224891476645,0.2414338573958882,-0.24467747866415004,0.916624313739716,0.015705142704765963],[-2.468991821073972,0.9246695891616257,-0.2861010209522224,-1.5384962936759925,3.599216577120243,-2.0331178723832655,2.3571579185110485,-0.10255384238215898,0.5533432109643304,-2.276200688783442,0.745629047202299,1.2532290452222903,1.4050093042097362,1.937028366706433,0.8391405945903995,0.36264471073142585,-0.5782024065912806,3.239020532115881,0.8679615555209738,1.1887663472055663,0.6030545893767499,-0.3520073760707032,-0.6031828564972129,-2.0316217703718706,4.927320667943136,-0.9866509025925004,0.09992449127975477,0.7020952027270723,3.621625481065627,1.5424325482904302,-2.7708658331940397,1.0632638139145194,0.4369605360336941,-2.138017604616414,-4.994513185388287,0.45527131021525524,-3.16847260680067,3.476611693618035,1.2349682833134443,2.7165760955513463,0.7025139897562696,1.2927634251106823,0.34864429478241626,1.5692668541379295,-4.266306281442026,-2.0073224140339065,1.2504990274466623,0.13468445514412972,-2.157498875889906,-0.47501371429952266],[-1.8661126661718768,0.46570484857026995,-1.4865406641001857,-1.0879268879241295,0.8950963891298651,-1.7581318441175033,0.4802480126159824,-2.0299600135535245,-0.7608390260739284,-0.3064309710918357,-2.4265377101882626,0.24523072184642233,-1.0386170402685282,0.09230999084919993,-0.2330955563708829,-1.0705935712964596,-0.6506927775549408,0.37813262530827874,-0.5409884016217518,0.5782334453515153,0.6793025261935355,0.6650506100911708,-0.16767989941146122,-1.5402675669204597,0.29456582586071584,-0.48107218701579785,-0.1807566014256101,0.021701578615731878,0.05215652782349696,-0.7370409681344826,-2.0767699146693213,0.3622767633342006,0.25602533559562535,0.006280953734813897,-0.916357232070636,0.5064595804635955,-1.6028351850281606,0.2637421238066474,-1.754640663920669,-0.658860963928316,-1.1288837213030394,-0.20885769209986244,-0.11504335981021704,-0.32253472349459933,-1.1299628171764668,-1.1041309840992044,0.7639648733526597,0.3892240153944526,-0.5177172366032134,0.0028591127635439998],[1.0316673451101548,-0.014210738191145227,0.36944723224916876,-0.8945092506656416,0.8746221862592191,-2.596185174697077,1.3815592309792113,-1.2014179489781152,1.52524791167383,-0.6861696900669214,-1.237180760723544,-3.00375579229733,0.283080339427979,-1.3089046850925699,0.8496940195250655,1.1918378352843504,-0.8601660941966824,-0.2876403950536688,0.6431069152953124,0.950406286681459,0.7256241872898446,0.22176337242662045,-0.21540438331206463,-0.2108505233869186,-2.151531130742939,-0.05191751342162401,-1.2475709524892653,0.01704938569256681,-0.8448290830560271,-2.0592260645064533,0.7349386688975155,1.7206361718794863,-1.49719874031761,-0.264189511680962,1.4716476133561058,-0.8598988800458774,-0.11893199892208577,-0.8217888640593276,-0.863318146887143,1.804650886219066,-1.9028316763222584,0.8378182546660594,0.8542910138216384,-1.1930680643081146,0.6863684195893953,0.34867166974117353,-0.5585633844225552,-1.0264462714591696,0.00006737733877109306,0.25157973654061666],[0.348234198331768,-0.4696423760943091,0.0750377954797115,-0.20916913423223638,0.17229340109822094,-2.4782065137485163,2.4914507393891596,0.2290138063656384,2.3960827280044343,-1.3983857826523778,-0.9131893545099761,-3.828890175113258,0.6226272985210006,-0.8541552607970103,1.7407172854974224,1.50157602391973,0.4998052668822884,0.9942499221054937,0.5530714143126495,0.3770464569119423,0.41752528355163443,0.18125393096364759,0.450299052566542,0.7037339367671162,-2.43975087574864,-0.07569723432491346,0.022015080286770735,-0.5785625922351881,0.04359054801132334,-1.682109668204386,0.5355272074618165,2.1042360534227176,-1.4472592169109488,-2.0065284666707615,1.747630598522524,0.29670387496491657,0.0883508541995992,-0.21560121204505406,-0.3695181371557012,2.128748130239092,-2.694402701547157,0.5450305448806159,0.6385290394244048,-0.5677862427267939,-0.277002137184703,0.02120658280056281,-2.06286564136556,-0.5964154885021492,0.9233043187703971,-0.23075067173401492],[-2.5300035080530803,0.856901514002279,0.005279714018210647,0.1385781842706909,-0.12158937012323373,-0.18939340259775306,-1.2678726417134873,0.18483874504826253,-2.967908649776725,-3.385369706224018,1.5632462914466092,2.506993035307243,0.2065425716115558,2.075409685201554,-0.04064715135970492,-2.4340883350897253,-0.46896413284609784,1.2199874331253384,-0.6263934016628459,0.21714691021433002,0.7941391033941542,2.2988197020631467,0.5131395211583019,-0.24668715019378318,1.3113860357557299,0.06729415411800842,-2.4813550086555476,0.4190108396481964,-2.67798221129118,-4.853920378513277,-2.15573814719708,-2.731204838253042,0.20365666783639463,-3.5968512999114695,-0.5509533493597809,0.8236253479070773,-0.584674250221611,-1.5341922526036118,-1.575148623588409,-2.3807026174345856,0.8116950363675569,-2.6489421379389655,0.7685570069713753,1.1948504674661793,-0.5698250285907295,1.987204312027676,2.1281957064663044,1.6599589576982665,0.4650823423595617,1.1423728929913421],[-0.6860766749666756,-0.02294415471298549,-0.5764449308026796,1.3403497610465656,0.14032966949956113,1.3721098704588774,-1.2497934663775407,0.34205307003450514,-0.9408331010570348,-2.1407959106920327,1.0440668409263976,1.6303635081216399,0.18427386341352522,0.8034934136964828,0.6618043245171643,-2.238003264736272,-0.8973140710473791,0.005353776022088578,0.26367298757748237,-0.6897600590717855,-0.6170743645595687,-0.5430790934281098,0.9180824956912825,0.11698916586328927,0.6816225031626585,0.9761862040386815,-0.6115524420726001,-0.41189638481753854,-2.1866967782190003,-1.7795042274013229,-1.613610171631834,-1.1707391502768936,-0.6846570392868068,-1.4819703641050892,-1.082093850557767,0.35339234300336897,0.3641763652513047,-1.717609666203095,-1.0679443299866493,-1.6566641986603423,1.8112701092707137,-0.5698706026553171,0.2582714907988968,0.2765052982995933,0.007651158147870932,1.2584381732893315,0.10161844196558194,0.028837622433076613,-0.5312943270632483,0.9478883584942279],[0.4707580627453722,-0.2617943032991519,-0.5316826500440777,0.6653362991989621,0.8847694840670145,-0.3146516330940951,0.4725765778509391,0.31286963284592595,-0.18578080322739096,0.40255103969197975,0.9909095797859693,0.5750977269936484,0.7466679077465928,-0.3834010394173036,1.1937964254276785,0.8108187873064039,-0.5724570560378217,-0.6325293790420334,-0.38947273493907436,-0.681956355863377,-0.04100512798003592,0.3339536982650985,-0.3269270360192747,-0.1995788194224728,-0.5106147028316742,1.051997118789279,0.36313224099178815,0.21208992116563452,0.08890748780387439,0.5850397921854569,-0.38254433073024674,-0.8516563473508423,0.8285429348838992,0.26530979720787606,0.770289557385778,0.2005994938419826,0.43421140759191756,0.8119246534657948,1.1897781305609412,0.9473322450732612,-0.48041138242527626,-0.23664924238308593,0.3601694152688448,-0.447632587552627,-0.4306687612062251,0.7331396593212436,0.7636213621660268,0.21802851832763728,-0.8062393302226799,-0.06483229721507423],[0.5923970725994165,0.2547628364826318,0.7137530021198709,0.4822181865824161,-0.28815957292977146,2.9531130031035175,-2.2217165627428295,-0.4008825108061107,-0.45236991400183585,0.5766617733900102,-0.1253507437843038,1.760914550526145,0.429219851357944,0.09824862241017987,0.050159687427330506,-1.4956823471395144,-0.8010469264625386,-0.31957016714777464,0.16025563033945034,0.9743541227134983,-0.3921824952963833,-0.2359220326295535,1.537172323160619,-0.5604088657799569,-0.01324017898996147,-0.6037818267753813,-0.7918211927437969,-0.4404655183350886,0.28706262560260726,-0.4120288203083092,-0.27766394770553515,-1.3908755936316346,-0.4847094417767794,0.4058942804052618,-2.0770112092429565,-0.24340405729294834,-0.8302041535836008,-0.6141635541066153,-0.45190118119649797,-1.7516656723944408,2.502220577785958,-0.16445993106214704,0.03545654938957668,0.07267584431303432,0.062118480975000764,0.393705467106565,-0.01951879711120211,0.6772025638017787,-0.7482144577805052,-0.05786704697297092],[-0.3723794844767261,0.324634041122861,0.7259030646096951,-0.7179026100102496,0.7721272183782555,0.43304917633498846,-0.8651575010463293,0.6444329556951425,-1.110978455141706,-0.6000699153574113,-0.8109162116146147,-0.3923624456931737,0.9958708326900954,0.45795273527103847,-0.8996445053304608,-0.5738395901856155,0.007984520296591396,-0.11400613626499183,-0.47528896856724434,-0.6772450677485438,0.267668811192514,-1.1461900309421789,1.000144354820907,-1.4827070012787065,0.34915697733490497,0.5332140615718076,-0.8289642193285316,-0.22299961844958774,0.09712595803121701,1.3288921087605918,0.6809330252386245,-0.5537242121596808,0.32645150738596157,0.025898279397218116,-0.9438448948714148,-0.28917539075159293,-1.2962644078741643,-1.2849882970144504,0.5419611835385091,-0.34303145116490946,-0.4134578135869722,-0.1537780106811257,0.5864596165699842,-0.5539335333813946,-0.2870722636617307,-0.5586926110319893,-0.26479420225639994,0.09348633012797454,-0.07581349928175637,0.4959017595618528],[0.1827825841390691,-0.19534503536023243,-0.6871465870648401,-0.56937893880118,0.1834960467764905,0.5260725101349756,-2.0205273342743286,-0.3548180768789834,-0.14572488349322482,-0.6770025693148151,-0.11632805146688051,0.5041712367331189,-0.4611658636629949,-1.466610074470916,0.10239737596570264,0.8097156358847234,0.006717589029522175,0.4294744499827184,-0.38408367493613066,-0.28122173454933735,-0.4019101357602624,-1.3502808138078866,-1.1582401412018604,-1.0833544332912888,-0.5263656739560093,-0.6716031839496874,-1.349508105921353,-0.1770058588725393,-0.44005542902708283,-0.7452920285755757,0.5407641003592738,-0.7528658592083539,-0.024589855251067393,0.07444328932493877,0.9255751320026614,-0.3330968514079942,-0.6018809690056599,-0.623807558481737,0.8419514741974022,-0.6670013371001445,0.8374392861221228,0.176344710448847,-0.675532384053406,0.6906481147112484,0.5481111366443555,-0.7779177611758178,-0.36328190473273325,-0.7909225831160569,0.5900444861582039,0.12360747304258042],[0.42198184478149087,-0.6398114906388744,0.033158177423288096,-0.3197685284211432,0.33689087918398986,1.0840466367117179,-0.3682652069024489,-0.12535221574192237,0.6344947290501358,-0.7249042472126398,-0.36543335055591125,0.5400440048023665,0.9753259126633408,0.4537110909013322,-1.0710140414087237,0.7434509673761528,0.6444195544116899,0.28817710605713476,-0.5618609833068423,-0.46583687174178806,-0.844269186030694,-0.07872765830846618,0.36043426943164036,0.4246870911706658,0.3553310475407616,0.17493908090107613,-0.6634576163553354,-0.5615079480373438,0.8039859896975518,0.09729115994959545,-0.5303078144907721,0.34956909483727105,1.2523836312194785,-0.7178830096528529,-0.900611695331306,0.2532931812803087,-0.5489708149377677,-0.0823755819070156,-0.03684523024924363,0.6962358449317781,0.6612280867750158,0.5345047635253787,-0.1324529286536142,0.882430492352324,-0.3851673784804697,0.018196034384501503,0.7773362172279118,-0.15594440332867823,0.49893811651467246,-0.6913378390631776],[0.283467197367993,-0.04654352103483361,-1.1761962957738232,0.5137402332343929,-2.8498803449664285,-1.1246608143476007,0.5461592979661299,0.47329723809841984,0.19144013418689687,0.31611286663490784,-0.9129576950774918,0.5343138326885629,0.16795050798197694,0.04853810529227573,0.3331758325956993,0.448618623584872,1.0296948518034512,-1.2103210462927843,-1.5484462872953428,0.6069961773384157,-0.33124498170725836,-2.0912752313046243,-3.230449424912746,-0.9432963939411437,-1.1265267575468227,0.22619838101244563,0.002962694237789957,0.38502820273549726,-2.7227597722342365,0.043461746907980214,0.7747322819856775,-0.27460793738476824,-0.8372080384344637,-0.1795951473856786,-2.5151946889812162,-0.7141516672811227,0.8382365266093192,-0.37798192602520464,-1.5642574918679384,0.11860632720636309,-2.6911497517157157,-1.2064984549708209,-1.6184782901853667,-0.9319293859209347,0.07164246957698021,0.7809361302101299,1.03756607592953,-0.2966842121484375,0.3706000243543921,0.6113395945254658],[0.6476884137559523,-0.4977332056726114,-2.7099753077604145,0.05166813866345992,-2.9808730168778,-0.3580084211511571,0.2661789736353165,-1.5282379836873776,-0.9872434801108251,1.2977797118900185,-0.6674035093893383,1.7964481992380248,-0.32276113204151136,0.3253470560437371,-0.04440567717616928,0.4539424957706119,0.41059325315991796,-0.18936615478755534,-2.5717584404685363,1.968448240192913,0.25367499606470606,-0.8406933734955557,-3.166399478684809,-1.0551420759609407,-1.8390276094472833,1.2098545759114765,0.22397688998008924,-0.3164350870468761,-3.296215732425565,-0.3788680635386959,0.14410037656869804,0.8175640390160819,1.0559939394894122,-1.1233023059533642,-2.3695135411568105,-0.12184547181465613,1.5072544325335195,1.0639489116440022,-0.9054812770740073,0.31470053939737963,-2.853295618117387,0.025025542980370716,0.23457082587576553,-0.024148210611650633,-0.3533041216613592,0.3337866247152507,0.5506293044655178,0.3266863060050627,-0.5712919958533222,0.24125071512301485],[0.481610778064566,-0.3764738199680671,-0.8884821836128391,-0.9396461059688831,-1.2269070384129264,0.7784846085194851,-1.4587112858397229,-3.5549804221125667,-0.6015422412316028,-0.8886544132995221,-0.8457544329956642,-2.936454976837675,-0.1955934415918031,-1.185756940951527,-2.3990054387667663,1.385878641990395,-1.1045084597286712,-3.03841152282978,1.0390852603765086,-2.695082159622524,-0.3981599262357373,-1.7963993793230395,0.8759291026898137,-2.198496987725572,-2.2285688314392997,-0.12689780834737646,-1.8236142944949862,0.6164201080292364,0.6770654584252841,0.9220599144982609,-0.019557073480643814,0.03237978749077282,-1.8898582445662313,-0.38383147696300346,1.6639332834581473,-0.09450376836416649,-1.7082243861211766,-0.135428044334827,1.6707382182960269,-0.9500480327637779,-0.9573544137693015,1.2870193695359757,1.3400972801395414,1.394084451505722,0.8097967544843776,-2.321305781464431,-0.06980170137050216,1.0366075274838822,0.6944078005365436,-1.3621565105390399],[-0.09917710564465923,-1.6360316390381437,-0.6378069390892412,0.5591822746328066,1.2261537028236789,0.4120814245345557,-2.7610878957255487,1.3377524214198158,0.7465732619398678,0.4817690377917515,-0.9770679835124011,0.18796457890328652,1.2057867382276874,-1.7848221609995705,1.5897165205635226,-2.2823313501801703,1.4409497529424435,-0.5170502231716522,-0.6517434171029648,0.8078161232224279,-0.909804273446556,1.6418568776518478,-0.3545030120181996,1.438440055552632,-1.611472426140843,0.8965865062197138,-1.763298273340687,0.10892880986609291,-3.300415285565859,0.18990308907911488,0.22343243774795343,1.1681055374965645,-1.336164259769878,0.5710576215555748,-2.0555395551110047,0.3223133418943853,-1.8456424896742096,0.6559734282346477,-0.03948598794321429,-0.9763811330335258,0.4301077067097518,-0.949108621151989,-0.6906078362613848,-0.48383438501692333,-0.38763572255190926,-2.0885564996007604,-0.7606481910622458,-0.2712657481456201,0.22142547419674422,-0.26197614823035476],[-1.530225658977967,-1.8966697563056014,0.403265733167328,-0.40337346535402124,2.012923505992576,0.7186483236283143,-3.721756128244093,0.6290193244271955,0.17469650700327422,-1.09617479950693,-2.1810221689949736,1.2925337379659416,-0.7643252619582496,-3.275799276890933,0.8964676780053158,-2.884484628560085,-0.22351103852559967,-3.658904824937704,0.6883285325689524,1.8098273076759837,0.3730927154798753,2.4743184890322434,0.502872768005587,0.24984827044074656,-4.718307672608928,0.3166793703631786,-0.33424455297609734,-0.39585997435442477,-3.95342062267995,1.0209179841378047,1.2241007155184678,0.8888033523830964,-2.8219143481976148,0.8787150209464183,-0.8049632960918479,0.6955154807617919,-1.6210370666889091,2.158849068650045,0.16286413257902754,0.2680572793122338,2.1911626687154753,1.6551476445029378,0.6142469619842267,-0.98098786248076,1.0092851363586528,-4.039422322183751,3.1763395232531946,-3.054975844006869,-1.2876642072389728,-0.6083966775405641],[0.8695999721856351,0.7180462744527191,0.4332563070772125,-0.32891881734197065,-1.1211978349437917,0.6065288160815127,0.36117080807939334,-1.0422608650250218,1.0959417574429398,1.1993310220098157,-0.6107624628478533,-1.4779351236200997,0.941633282200598,-1.8959586192982067,0.04322340416079687,1.6664712971871734,0.09587387063969811,0.10542886764098544,0.11563424366253479,1.347897653603474,0.2634770798471163,0.20352152944396468,0.42693652172945973,0.8274262088453447,0.21357374991001432,1.266504402495599,-0.3251922654190584,1.0783521911763265,1.7890694885959175,0.6217792229288613,-0.2025727025819066,1.0092738341021563,-0.5078713443195902,0.8634715723195433,0.546476547126959,-1.6715414458481197,1.2451494052621397,1.924885724935304,-0.98873672597957,1.3482227769319202,0.4485412355513314,0.3119704062739461,-0.3816551452340296,-0.704351114017728,0.42617210696324204,-0.7383440020773433,0.8095942475357829,0.0033212498160663214,1.5040407452731759,-0.7916602995056343],[-0.5910295474893428,0.009512320471354554,-0.04215763506575636,0.37789969640729987,-2.5547240558564908,0.991176591583915,-0.31763925942011645,-1.3005766319671939,-0.10129593766047941,-0.16946152032267597,-0.6827985012662801,-2.022730902880641,-0.7867474461852051,-1.3030748552644442,-2.2966790501672536,-0.4808276240994401,0.18327887774299564,-0.8652452064932156,0.5928481312487975,0.39808046025131283,1.0135220615476415,0.20568516858844604,0.7116282094216818,0.5840928283320561,0.42815669822889224,0.6528476132726492,-1.1309366654822104,-1.9996963924909266,0.2503416012929113,-0.8809783164213697,-0.6506735105472533,0.01709941647778754,0.8054938258230181,0.5408525924019673,0.8161846686909346,-3.123880340202417,-0.4817989916963512,-0.02548076597369104,-2.1522183389147354,0.9990101141521838,0.00010476175191861145,0.7995372006096575,0.39254564884865334,-0.11744621850543181,-0.2015123956470626,-0.6006837621117946,0.4776437871785969,-0.27077729728751726,-0.10381224714879407,-0.24581002628096804]],[[0.2933816289334392,-0.17005985095659903,-0.4594999804463534,0.9310581445439506,-0.5420596285126861,0.1603652972178003,-0.6841176313438323,-0.48373263714239195,0.36967633515608905,-0.5681993291255292,-0.05158064576209616,0.9380137116755548,0.02394735683974711,-0.4923182454511983,0.8497045953340623,0.9691625034723046,-0.11282096106484295,0.9029400595826647,0.8671919694130755,-0.531759286843467,0.16638188423718026,-0.5494341169779361,-0.1761790153229421,0.3884343538299834,-0.5154630407855822,0.7060051294801677,0.5768560424222492,-0.15852678030876985,-0.19772044505799014,-0.1561333128200986,0.8414110396588801,0.17510568621744427,0.4525221891821954,0.8019888068713883,0.6287999335932721,-0.6765655159441906,-0.8723996018030693,0.6226547627842723],[-0.8880651524866028,-0.5195098355486131,0.8197131403968412,-0.5248183632153134,0.580645163425448,-0.9194090968275608,0.5239307713040826,-0.594727153862035,0.18779742822469928,-0.46327527384438816,0.3672615080244957,-0.14500291361183612,-0.1441153635201279,0.06991078839580084,-0.33654723166986195,0.6033293497313067,0.1777864775778858,-0.688690125509608,-0.5508989057378056,0.4176714256475485,-0.015130308701188196,0.39585827991854466,-0.5647272523953862,0.49437024170838917,2.921559853016671,0.7874863132826557,-0.93974057137581,0.5249005580238432,0.3272878295373604,-0.33047744294626086,0.8819829018839055,-0.14049185581847512,0.8426245351547703,-0.7288705549105956,0.49740316900370196,0.40127278810385225,-0.202863655617322,0.24953336750379215],[0.024109950653681295,-0.6162361601178188,-0.2613317133228627,-0.20988888611577128,0.8081824995316826,-0.9238055690746048,0.9706189122971736,-0.7063383635801515,0.7436128266321707,0.5228042509406438,-0.038351695176453066,0.3030379570531881,0.2762718157700572,0.5782399200646344,-0.7473215372672595,-0.48822216549718955,-0.44785565845055736,-0.9910302689874967,-0.5349144976231879,0.3391483765830238,0.08261517575775532,-0.4559515073114085,0.03611760815135397,0.2805783030938296,2.1840280107489365,-0.4336945209084856,-0.8558256149036644,-0.6521149742556185,0.12199953077805067,-0.8934114929045055,0.2790563571894745,-0.7184562538922683,-0.979432959780713,-0.6266170724078945,-0.5935296444555812,-0.46372731387603827,-0.14479002943632618,-0.2778244132876987],[-0.9017210793539842,-0.13733816981953095,0.2848659133257905,0.7653026176344605,-0.841770627995944,-0.4401058600939319,0.42563703312923185,0.590660811847169,-1.0195833173642428,0.6270200102317316,0.029141553546362668,0.1675077470372956,-0.959531381918969,-0.427977063890589,-0.4122511460365533,0.022947181506215112,0.09138227194743341,0.5250047881441613,0.6668214611895865,0.6802164125058586,0.3559299338324626,-0.6608912805411948,-0.3635096681110544,-0.8443764178574338,3.247894855983381,-0.8793137859964205,0.5902048836231923,-0.24966132863779866,-0.25127669631751165,-0.9268701285375385,-0.9894213492510219,0.44181183427526866,-0.43284940353545054,-0.2850709370272977,-0.6083439378633763,0.6849301741766628,-0.980354151846445,-1.1309952341311844],[0.7190538957381012,-0.33588136169421107,-0.8865761129796841,0.19441103194036805,-0.9936843490006908,0.7637751415486183,0.20101221308115258,0.5803048942768038,0.4461869396166102,0.3579742572022522,0.9173681064008796,-0.5045334151890251,-0.9473545144908883,-0.7740065911274879,0.3235721495069578,-0.4625200605742526,0.728475514253858,0.7622981920921956,0.592354855248071,-0.29373570753587824,0.8893601479265777,0.35180663192562994,-0.6790691027670781,2.002756479110963,-0.42198482583088615,-0.8676117240026415,0.8963223005643784,0.013137933601431982,0.642065740067756,0.20362794339992632,0.4392123992883933,-0.7784343619205921,0.5516914065170663,-0.6809144149570715,-0.41990188496855674,0.5245151241149043,0.2637710944737906,0.7582550176155173],[-0.8011056361935093,0.028137550491001223,-0.8898935620527855,0.6212597269994771,0.052618834043076185,-0.9650167168638712,-0.7942658448917795,0.3607181481154686,0.021309623160990752,-0.05741499676669412,-0.8550746623002129,0.2815866184666146,-0.7574325614784133,0.8484147196044352,0.7985918020740909,0.6437043318080583,0.9516732302971715,0.4153611924075374,-0.1602414652991227,-0.6659109968706756,0.19261453090234024,-0.6754777491392143,0.6139425205098162,0.9358263442930758,-0.5500777520035508,-0.9516138037625964,0.7770128033102506,-0.5528253880626609,-0.10382873487147666,0.9489411452579635,-0.9565209953414925,-0.700666547549552,0.17013100948199805,0.2856036693841428,0.7140825192146667,0.46106585993224214,-0.829814957500415,0.06708833955869778],[-0.6607549849003841,0.2498569479195724,-0.4756198232652907,0.24327388279731882,0.31725048652863386,-0.0943287241385028,-0.02864604985167045,0.4386829495721838,-0.5261902242676763,0.03988434262651708,0.056573991063019684,0.6321539578978813,-0.07984081126078145,-0.7854663988910008,-0.128647370646969,0.36046502031207855,-0.7777263024619046,-0.01986472664177207,0.07148766080141562,-0.026032620282980173,-0.9308813212234693,-1.506213175266225,-0.23924754561372247,2.3251168400155833,0.38307899145230034,-0.5224643092054712,0.4251009167246186,-0.12902155383478972,0.0722793377485127,-0.804690370326419,0.45760011085120966,0.6020770041914465,-0.9156586115691284,0.2462399964036194,0.8675195098791211,-0.1811990375834684,0.6304327271263768,0.10049167809614683],[0.21838397953991476,-0.15096102496137442,-0.24949924064556622,0.5558305556857834,-0.017799325240440353,-0.29838026878754004,0.14874682258002606,0.42241808830804045,0.8607015178198776,-0.29821093297288764,-0.14926666281526332,0.49498973604419466,0.19825675256387001,0.228544840926395,0.9333075390232972,-0.05819188881013361,0.6186978812389027,0.8311758680357794,-0.18392720035509685,0.9020701195814128,-0.31192233701106514,0.590882818750914,-0.0032590246960765125,1.8368933933322789,0.3209491489072691,-0.6154198046004401,-0.8141284209002796,0.061293664406145976,0.6464791940185396,-0.8509723979918076,0.28187321280923044,-1.0006060785953201,-0.3193880207826894,-0.05957675815625489,-0.28955203172149846,-0.8403350501879557,-0.7627445662239218,-0.698890216625749],[0.40682690764932034,0.14410639967769925,-0.5289996050341786,-0.0009627565857478501,-0.07264403167485539,0.6290793921533219,-0.2519945796284676,-0.11398443529026507,-0.8451929772814701,-0.02345275459456485,0.8553543477945826,-0.8449488734268407,-1.0132515241347524,0.5735336966237693,-0.3757446341100946,0.10288906343768467,-1.05400158406917,0.5554539669367491,-0.8630492566468076,0.4730530862025657,0.7515894649747229,0.12898339178187238,0.7146926353496937,0.6179611937811654,-0.8828142739140894,2.0675943202873084,0.13272567082846784,-0.548135602557394,-0.5462423271405171,-0.18705372564996398,0.21586002800989654,-0.5048139409553162,-0.6332579109782647,-0.6287946218466113,-0.2560499452153423,-0.0787603429062697,0.28710672210651955,0.828553763918344],[0.4456563182571006,-0.5498802258316048,-0.5940679828876151,-0.32889149352457553,-0.5706948191703998,-0.5637998972965906,-0.3212019348967658,-0.2376130294397588,-0.37195322980844686,0.7535108394438801,-0.2820006831730571,-0.6578715708533048,-0.5021780459521202,0.7581392380671594,0.7419105111688107,-0.5548286618624334,0.24244211827841652,-0.7670413027356788,-1.0000946411673945,-0.0774814705991037,0.3721435472123055,-0.5059104465909691,-0.3830392521429299,-0.38904892898013416,-0.9269523441597368,1.8747480314816842,0.2824157427731394,0.9385493723072494,0.8972848337255482,-0.6663843911084851,0.11050832651786326,0.5817989935429038,0.11200860442470405,0.09961522257514797,0.8585723046433777,0.28197381725819204,0.3729940299516254,0.47115102697192],[-0.5020313722947243,0.5669492100059672,-0.41171382899397524,-0.9448257541775585,0.4507368991802704,0.6096109376042104,0.2305993753041519,0.18691257579580617,-0.6383356163714695,0.7001302170746346,-0.6278321997737005,-0.24376205160378503,0.05053811064972448,3.0093179007419213,-0.7793024621119093,-0.5683806055512368,0.055927904322147094,0.5212042930709434,0.9425186934298011,0.12608383251997987,-1.1768524906676758,-0.32314361126798985,0.8753834803787065,0.6164967074791116,0.039991963181972914,0.8430847040140933,-0.05923509472238959,-0.4442755357873681,-0.903013045917845,-0.6525112879384488,0.6112049116917017,-0.30884881243497087,-0.23845354458988985,-0.9446980172415117,-0.7653625009278758,0.06840413055574107,0.7592028476700721,0.12942675313364038],[-0.5022943646551019,-0.5299995315226897,-0.5718282422845908,-0.5929921253886873,0.9212704857637198,0.3443068380790232,-0.12869262405745285,0.59341236438377,0.9526483779612469,0.41911150224623483,-0.6840094296760859,0.49139782799018716,-0.8377875533397835,2.4617076235032544,-0.052756614546114,-0.8211327228459241,-0.9464939533398757,0.5989341592559008,0.32143006989033923,0.33893368726950646,-0.2950647060422897,-0.7127223119729946,0.06147068267148034,0.25369409823895955,0.4501216300263963,-0.5520496434748543,0.465078654152848,0.5274668332113737,0.8245359657553122,0.30560936657598103,-0.2386060373279344,0.5273956026204981,-0.11399629268445233,-0.5676670109467445,-0.5441581200886618,0.45273449486736334,0.5172281530992459,-0.35880924562354966],[0.6856631727611906,0.4418519963418085,0.2580836536713586,-0.11210825102403431,-0.8175107819512561,0.8862788643162625,-0.6919114541862996,-0.589373440509128,-0.9913656160407959,0.7108660062487709,-0.6830760064817861,0.40689014660202383,-0.7977185972471473,-0.6499340137004297,-0.5836152868174967,0.8063458350757479,0.08935458308451316,-0.05760913295376042,0.19821732445905435,-0.46836550907121705,2.5467058105611278,-0.4746000839663636,-0.5268541487628733,0.8009978583179385,-0.1407492721429485,-0.6642033372453534,-0.24279027237958756,-1.1981313097377835,-0.8074148815443003,0.30507757023731763,0.5096367172655285,-0.8426462901809654,0.11003185321990715,0.6049945039665409,-1.0841494770737279,-0.20692628506872052,0.5180820379531416,0.11736693820659837],[0.012645475406039898,0.39792597992046946,0.5149734802050765,0.9342924880644107,-0.2874353135733009,-0.07991471389170868,-0.4526397233597771,0.7639277741723429,-0.36073656826096084,0.1926324712310827,-0.5306275932867905,0.31462408045539236,0.1333794469229165,-0.9147094059396689,-0.2263935684727051,-0.44838387916728045,0.22553481103473155,-0.6882138337385985,0.1095048310144255,0.04014675232810692,0.07753826551757699,1.4470413475830435,0.7708781309789324,0.7833254860861143,0.9059601724052453,-0.5092785907719443,-0.07041125317964779,-0.4641420805744093,0.9035591667144158,0.7380584101681007,-0.17980086051680322,0.84351637062312,0.8662487412741481,-0.2828133772594905,-0.027324216507491433,-0.9600081614553659,-0.04717517563313361,-0.5284727048372844],[0.13082658590488783,0.9269761579422534,-0.9124389855837718,0.738727202752016,0.7478183930430262,0.3172970837657643,-0.11141354910682214,0.33522000363233284,-0.2917500556030177,0.0007072497485578502,0.18871118117977742,0.26567378884062703,-0.8421867337489979,0.5545287260732196,0.8219139188471245,0.8435478988932715,-0.9468808462099619,0.05134841542076343,-0.03880966821499516,-0.48490622944641226,0.9520040523937487,0.7171245049736733,0.8944543188678007,-0.21815464934789053,-0.6230568363281027,0.33786009618120183,-0.049193823477009936,0.8739309438069799,-0.5482669640975312,-0.7093095572017032,0.511352527951361,0.8003684285560934,0.5330627213152733,0.2125431508422027,0.002132242183246005,0.3411877912769148,-0.6016622625971391,0.23918091117784052],[0.6037966728089091,0.9571573672116493,0.18686891102075529,0.9319632524617005,-0.5932459797673922,0.9352210781891617,0.09517482624001442,0.37842566112507897,-0.1349187794828451,-0.03567093166024281,0.26679328209148734,0.2258480772499215,0.5811347743213715,0.5981706918080191,-0.22580202500443144,0.9733563387442326,0.2799352239301671,-0.00482984746800116,0.652869097413489,-0.3732063897652027,-0.252099606428838,1.3587524719626252,0.06519527748103414,0.22981115669604846,-0.6547921978287435,-0.20295627807189126,-0.9808662372734877,-0.16435532683340173,-0.8377093326614466,-0.12974881352441356,-0.8406251323249234,-0.2667315724318075,-0.8249571243634035,0.17470726625347666,0.659013021777856,0.2755011170164518,-0.36258380919339533,-0.4798313495121789],[0.33255077975722325,-0.00496934731497961,-0.6071223162381519,0.22001350352386156,-0.804777052928706,0.7944164991938242,-0.6057204147655079,-0.16427575416640616,-0.13001651914943047,0.3876430174194048,-0.37937488827027804,0.48419360828438335,-0.02312092384826741,-0.4434451045126224,-0.24584843170531895,0.538351374202406,0.6465718217141222,-0.4016374597317151,-0.0334068759887482,0.700633961536759,-0.5119693234827408,1.0064504457460857,-0.9824042818398585,0.5273872809532,-1.021369350223833,0.5866624626007082,0.802595319339591,-0.7956092239895073,0.5412579372346376,-0.4522158065717772,0.881682384398785,0.5471740829656911,0.6028665130763918,-0.054933324661352895,-0.6901074132843824,-0.9130139104919117,-1.0351645577555093,0.24834620348652292],[-0.9062470738502345,0.20082127879318634,0.6825292193843586,0.4912264523113263,0.42784119643804713,0.04790611022461277,0.8671501718226354,0.6843659651686649,-0.8797135873431337,0.9777651814503173,0.04229120448580248,-0.518872894487491,-0.13866569687093375,0.8609901244633336,-0.2067163886371995,0.5348792520692363,-1.4319189457217913,-0.112152520204385,-0.7555891200591203,-0.7736645918215102,-0.8858094813168188,0.7501588316871025,-0.9891605963460669,-0.29047636285586703,0.39116600754743797,-0.8888434583536813,-0.14414173371644207,0.7642871584257886,0.3330388142648969,0.8549429938666813,-0.5600732660489594,0.3373079943441776,-0.9183561901891444,0.28716449282011725,-0.9036950895056999,-0.1373984807524306,-1.0337503746802634,-0.2904165031675524],[0.11586120170994005,0.5620067608571516,-0.1377873407135196,-0.4240742621752038,0.17262676532213933,0.802706958065098,0.6245979306228816,-0.7360670410776513,-0.9913680971729666,0.4168530806509243,-0.6138750992432138,0.2703052892923778,0.1311962519735326,0.12536131974937562,-0.9084144393247647,-0.4731263548051347,-0.28417947091416823,-0.17879643418507032,-0.05443782366463793,0.3774736773642538,-0.5627808484908038,0.12482098969818528,0.5394433475003771,0.13460182970333878,-0.7822209914723466,0.6500022704768169,0.7426641832793385,-1.0055684930795232,-0.5408939301785622,-0.6221742249406174,0.5827241482241426,0.6886161307650662,-0.21153530967773207,-0.8326876234244999,-0.7803683640892738,-0.24750921775637516,-0.796547027210526,-0.09532763223334804],[-0.5350324309746999,-0.7394249674933003,-0.707182632588405,-0.2820677843153173,-0.9265232991803138,0.011495536340241102,-0.6312060272400073,0.6888243771586469,0.2044879486686069,-0.6879119338386976,-0.8319076218098894,-0.6626921307333327,-0.42976968324485837,-0.06090277312666757,0.4804642126533982,0.14170237657103954,0.2321128156942526,-0.9229883982703775,0.18096164035927784,0.7124331399029925,0.6578669942230376,1.2911815282987682,-0.8665171372232005,-0.15555922890674437,0.2327480273002431,-0.07104554134863361,0.7837793795800289,0.02855780088938813,-0.27577071950115556,-0.43300049364709425,0.4909817262037141,0.903436082300005,0.10136493920670563,0.489040070281383,0.8021040570589011,-0.7208191716895619,-1.0150627277336126,0.34803013356224366],[-0.124239193158309,0.396209418988264,-0.1296689258084665,-0.2776747877666421,-0.3811820490878346,-0.22086153659965926,0.11681576624148005,-0.5535687155588106,-0.243590823861302,0.45112591784437034,-0.5463693370563721,-0.2343187763345944,0.13098027185649722,0.8861772942413947,-0.6915260673754855,-0.5004295389899832,2.029674317134164,-0.9484416612125695,-0.9294665241273343,0.06896132580698243,-0.981047839938204,-0.4560723151405226,-0.6713602407738376,-0.6202407223787315,-0.5261193594733792,-0.02587513235545818,-0.9175731960942756,-0.2486251783513128,-0.009957186629356473,0.2810461967909272,-0.8926435628508883,0.49506653245124305,-0.12619754502547836,0.5025653096484718,-0.7341782564568775,0.2945485281265097,0.5523908653810226,0.09376795347802942],[-0.08805792156833586,-0.9453842251121258,-0.6522370501096211,-0.908262448637938,-0.8767522817152053,0.1852509425281197,0.8671449081786708,-0.8203820392781569,-0.12160985497461994,-0.7523429511389943,0.05027885567772923,-0.9846349451884543,0.03589229689577582,-0.2857233738841372,-0.03315310009627128,-0.3214631687011061,1.4042020888285833,-0.9908341761652225,0.6832800280678244,0.39302819491679986,-0.8908095996105634,0.00531898468126414,-0.9837653843147732,-0.09581651978585087,0.13516914951197886,-0.18561287587010766,-0.03617826072936872,-0.13413258051104157,-0.36719856405326556,-1.0006185830780523,-0.04486887137998406,0.5676072652127395,-0.24700128727133125,-0.21832666537935116,0.4716227697858294,-0.17527105675332752,0.4333803527485679,-0.9715154026254396],[0.06954474577590679,-0.8865547831001585,-0.5169444063970947,-0.6580456474417533,-0.6269198953529925,0.40663903203849405,-0.2722899195192592,-0.8906914962090131,-0.0018380026570791442,-0.7344630999104759,0.5971297065669073,0.34787639849312035,-0.8159926488070773,-1.0065709568950176,-0.21415277301710328,0.11080493387772294,2.36850640171462,-0.652142616857342,-0.7522798597813557,0.666418659637106,0.6446951263252259,-1.0074266874270774,0.21351186451444512,-0.38250115515004257,0.5013777117393241,0.07419952950409299,0.5404925075744212,0.8508448871289886,-0.3651210337882717,0.02554326452197425,0.44965173284229243,-0.5409721973006114,-0.748971300626881,0.8493413556087643,0.6858892821095699,0.5881157912819791,-1.0870701341079296,0.41568239510869714],[0.5796945686502284,-0.04627228146715343,-0.13478149934089045,-0.30538470900678844,-0.9707277281975742,0.8109909158244714,-1.0235804113021447,0.17998480566914196,0.6787043620110933,0.2457933455010867,-0.25303315108414054,0.2228467403356281,1.6999711464879586,-0.6805065909515816,0.7595189494342743,-0.4245007015358817,0.06279961302566914,0.3351618796629515,0.37103526353058663,0.6148686396086696,-0.6971490735178215,0.7230716611353262,0.40042421890815855,0.004808075991204273,-0.08831490171635163,0.008881487010817455,-0.22977063255191105,-0.8577516045324544,-0.24435451962176358,0.3450903828753295,0.5895245868430914,-0.4828654187701809,-0.8298638524008896,-0.5068793401696184,-0.6198337473745366,0.5336168755612903,-0.36612861441148903,0.2413046246538559],[-0.2896094339235917,-0.8846934457635978,0.9574680970396027,0.22790443383968223,0.6950357701092648,-0.25682201945400146,-0.8522218099110951,-0.762203596731119,-0.8244502433375619,0.5130701511446993,0.6946502831876403,0.40721387302050155,1.602340057419878,-0.4748958846029087,-0.23633304124264365,-0.8865302616651465,0.28145696325640984,0.060830381634857406,-1.0078404548872002,-0.38464000514219565,0.15418408824409124,-0.3613934308901201,0.31043485091169193,-0.8255826270503444,-0.4440347984403172,0.24550303755531927,-0.269446111868143,-0.41142021517589716,0.19259423705525838,0.22578892613154142,0.12092373684437133,0.7474986436142854,-0.568285370004025,0.6118464976263255,-0.2923823988274166,-0.2873082637315553,0.601632543236915,-0.8747595694517654],[0.8010002204018946,-0.4162480785765685,-1.0088553868976287,-0.4357426538030277,0.3653520828387522,-0.31832404364379296,0.47393189224524074,0.7107159345783421,0.30788482289262675,0.5468844207078897,0.04380977209347586,0.5962257442505919,2.491066630463424,0.27257031321396924,-0.240221976683383,0.14266399175720584,0.5660843564351098,-0.6329327753449833,-0.7460774507545612,-0.48800064190562004,0.7430422657566456,-0.19830592943831263,0.21867678205635616,0.5106681834936774,-0.5223826103431657,-0.7380755991086152,0.3108186382287132,-0.67350982583868,-0.627328225864931,-0.4379770587034461,-0.2286063634616612,0.5247277054059313,-0.9816235196712848,0.5607870847654324,0.20738154230565828,-1.0426601463006522,0.5774376843159036,-0.7900036657031211],[0.2804527400267954,0.451633380382286,-0.7743152341079838,0.7027375683379964,-0.589087651497503,0.4798210977183817,-0.8756607604304302,-0.1917850497806768,0.9512138531889911,-0.34194457693177327,0.5245759849710765,-0.19799347879866044,0.6340423499790884,-0.5433866107104789,-0.8663443270734015,-0.7285558928400085,0.8688289960745079,-0.9092263350693285,0.3827621505687856,-0.04095251687871017,0.526299915214042,0.41808156157403986,-0.12886709568582266,-0.33546358441504637,0.03666401835218852,-0.45151025202840445,-0.6146480240907072,-0.3060064999808258,0.48294897252873964,0.5642674113609525,0.6461129578572654,-0.9554162974927116,-0.07369540558038318,-0.4771685446133327,-0.9883245976901508,-0.5170646268995219,0.8580251818259118,2.4596382065434934],[-0.6198878997694287,0.5438538321856752,0.9272371051578652,0.7509329297531664,0.6484023566039752,-0.08172709091719096,-0.03908588444024651,-0.18795219979446803,-0.1830614229374585,0.1500117762015475,-0.6963221629505586,-0.3435411354436344,-0.41356308108053647,-1.1021751710562244,-0.3469996124105686,-0.1996127867933416,0.07905863929619734,0.7432986411387096,-0.8941913467492334,-0.9528835710202849,-0.8508205087858217,0.391558361922586,0.897228029398546,-0.47671451311649005,-0.8809306964429287,0.5960333929026247,-0.29460709647977995,-0.05239379125192308,-0.32797593958147647,-0.06594310122247185,-1.004975114534463,0.32104656275061155,0.3964321141068955,-0.46001613066868957,-0.8870151121790606,-0.38973995464326583,-0.931185609177411,3.101415067847937],[-0.05181887710145507,-0.8163982711940955,-0.5603479741763052,-0.5049511703603058,0.2271875352522016,0.8710129509477165,0.5066517442490545,-0.08095418573787701,0.745083427692774,-0.3302237408017896,0.5505903161321569,-0.6758703677262294,-0.5812457919833938,-0.7841004074982842,-0.8537659372014552,-1.0130002011937873,0.3549612225007167,-0.7515507616463196,-0.40449597740989424,0.49411160779608704,0.05105414349721492,0.4938522186021831,-0.3536720259827998,0.648578415500547,-0.7947998043263009,-0.2750889281081712,0.40789625268965424,2.3108500452203584,0.04661170410239968,-0.08418453116277445,0.10489267587678199,-0.6656605075309712,-0.5433687921445227,0.3595963517784659,0.3399293653827477,-0.825353222735088,0.46307558974596935,-1.5673772172384182],[-0.07250624037506834,-0.6603656629098033,-0.25457152103759645,-0.8123384021590774,0.8013220765969757,-0.9792115582429534,0.763155778116366,0.7019920806918873,0.28101136687076084,-0.10900246062350298,0.6727639514540235,0.38176363358179316,0.36185628747441545,0.3967096265465053,-0.3423923936809279,-0.18891166712180357,-0.44382567529270744,-0.33579965617183616,-0.61289562561667,0.2568394567823416,0.6563601311900715,-0.37071520813120307,-0.013608909948881386,0.8487072921564213,-0.4466903804903513,0.11807191222755972,-0.7665830283091938,2.734106471866482,0.9206373008474912,-1.0406827616162986,-0.4436822393930424,0.3246134614112647,0.7547561345429173,-0.4396302490328122,0.6631797333012722,0.4994773641269599,0.4606216127292631,-1.113361996557845],[-0.5749838486173285,-0.596384303013342,0.6941288101627052,0.46668205592720463,0.2176750855645339,-0.10159525904457241,-0.21249930847870452,-0.6963738863841284,0.8808403985277578,-0.9347813821703923,-1.0057056781277383,-0.8411759964792966,0.12527464334775135,0.939880044026176,-0.002492633437852611,-0.802228740556801,-0.667755830225291,0.6681486553656768,0.7680662507714261,0.09552823359389803,0.03830945001730898,0.6572845073373761,0.39202668276464037,0.5689857609513364,-0.1570845244355951,-0.6027887081041028,0.5990743265325891,-0.0897436226547664,-0.8500510203757174,0.18037011380967094,-0.15675154425160626,-0.5504756139301923,-0.6026578259751335,0.6738803289581312,0.5318025583326935,1.5857026248293613,-0.38369873263116583,0.3347303506733606],[-0.3385166566406264,0.8078809361957934,-0.5308034002305347,-0.18814909673659064,0.7668196019200966,-1.0041007772385866,-0.2706643029478491,0.5855028122287558,0.0641196860371341,0.2029969706736256,-0.5268666861254206,0.20469005854643238,-0.760253763442572,-0.07762322601270351,-0.7756286832243469,0.5280210052396291,-0.5160972659213168,0.2560926269384685,-0.8383142986665172,0.4163795783897459,-0.03291727776115034,-0.6125674503363459,-0.9254336455291614,0.857354395438498,-0.9938058636011466,-0.9745191265794286,0.5117907903788197,0.2953037961665467,0.4933497390705703,0.5245532258353209,-0.08357887245738319,-0.25780782492563625,-0.32230998043171677,-0.5821958528418573,0.8591330554763952,0.6943586353224013,0.7682601086771667,-0.41361277994243756],[-0.17061361949232448,0.07620190438413524,-0.14779554058475117,-0.006545377569183819,-0.31700709284992834,-0.8438863819449284,0.01472444457660964,-0.29904650887641904,0.9772555651786875,-0.35731893709713564,-0.9382127024397888,-0.6142617945005525,0.2577796083037668,-0.7130092363403719,0.28417894965585627,0.03292054688838344,-0.7879273574681455,-0.9610534612267212,0.41366912886809326,-0.931512512140215,-0.9736214465864,-0.22102910977567972,0.1312928453090745,0.539952880472457,-0.9720703856717674,-0.9315604939941107,-0.2199229523637322,0.43851335634228134,0.38677992153536755,0.17506849686028042,0.13118937393094685,-0.788584832198834,0.2684394193004831,0.56817149933753,-0.5017154974016463,0.9067675704548589,0.8668081837383699,-0.08191188166252801],[-0.1937220111958434,-0.3601656472265945,0.18303562972155304,-0.18137573531550694,0.09792269963425461,0.8601780890659527,0.9719422699547122,0.4112064039066928,0.46253604044812613,0.29065084905844185,-0.7786583128316004,0.3235879476694599,0.424821907162553,-0.005915265961222368,-0.5937482097463119,-0.9412221111023796,0.41661052548999616,0.8297966752358504,0.4703389478944448,0.855385542878916,0.31247726861667763,-0.878105751282712,1.8005214102687577,0.07210967521157363,-0.6694456048348661,-0.5998664962688937,-0.30459497420860654,0.09764020455251146,0.38257727779356787,0.6270899223140748,-0.9355632070079659,-0.8730126915944807,0.907967810910994,-0.44156555893970506,-0.24627400527967408,0.4115219438413046,-0.42196762305595,-0.1967499190561467],[0.6158959617451925,0.8782262473420863,0.13788791677237705,0.3160985645095628,-0.6446774684979508,0.5341402421074123,-0.6499886206554499,-0.5811205259867146,-0.0008455576189928143,-0.6462464416764394,0.09027329294470204,-0.13729345047916763,-0.8872183490027346,0.13871702553644288,0.3752406282605754,-0.6662342442649434,-0.9630839100242111,0.31550997189482005,-0.7565208598367102,0.07255350715927425,-0.8011451438442351,-1.5467398171191078,1.1198531842210682,-0.048118420320082025,0.6383743508050497,0.93620312762622,-0.869754920716179,-0.25442200493158207,0.9039924269697657,0.7503503023392043,-0.7189818970351225,0.4370669508495294,0.8392487922236046,-0.033170199453314626,-0.3047012389153409,-0.0559527602343463,-0.9216122200788663,-0.5354034783721661],[0.6817271090760184,0.9040175103942873,0.39006536767635647,-0.6433398636864389,0.678328053925247,-0.530705331795457,0.5683277225688782,-0.7830158800450694,-0.5021276914176971,-0.38694260377677553,-0.13409477772630243,0.8472416962207615,-0.17119453822253064,-0.0058975706522966425,-0.8845534360521381,0.06991451865763183,-0.21385515630222432,-0.23040716994057847,-0.8574940866546156,-0.8706885285329756,0.4352931004739729,-0.709755185534507,1.3413878240892898,-0.6385232991047861,0.22270025705022153,-0.5451592638231189,-0.4556630069016469,-0.962041857871186,-0.8598630163700205,-0.8049304853681026,0.58835495478996,0.5258179987061666,-0.7390604899402761,0.2050593276108248,-0.3486162452276088,0.07426173253970875,-0.10095885238985378,-0.9772311197136153],[0.7804952916025877,0.44716632519817956,-0.5427143326688327,-0.622593675143292,0.060043232280148524,-0.33435632442064905,-0.34760917259271323,0.7467119222367835,0.7561638976837817,0.21447585893484045,-0.03166620043271873,-0.003147412281765506,0.671958151322672,-0.9369323907629308,-0.7674680543196089,-0.68828318436598,0.03296570187062325,0.7583181408429679,2.1818917882448545,0.5374159986764294,-0.11536198086323053,-0.13346683948410637,0.19923439233976853,-0.13024766762177903,0.5785334958363247,-0.5297336074352897,-0.981830009491043,-0.2047671623219956,-0.9750278925536157,0.1756368288585175,0.3601082194149073,-0.01286514750108002,-0.3185637251967133,-0.56228479281613,-0.21481505940344028,0.21498210826200664,0.3108920509016591,0.29204002949161256],[0.4737165311947087,-0.7454194338626782,-0.2352659403006798,-0.9343072732623369,-0.1489576401080175,0.4136476750268036,-0.1471012597263469,0.3032548519193393,-0.33558486987587927,-0.253226218899173,0.5247507487982641,2.568844440716635,0.3376430830798794,0.5099321822644934,0.013068826460399707,-0.5927287578875021,-0.8781669961904452,0.6875697659536129,0.5397223123228517,0.49150340665363684,0.6690219839475481,0.09501809300507513,0.062274690603227156,0.4395078062986417,-0.8624543029707619,-0.12788779739937764,-0.9911476400937628,0.6029500766364294,0.7526227343119204,-0.37485373063372346,0.13191839273008085,0.5796875339918948,0.0825895417676837,0.051351822845047995,0.36732379153552314,0.3364532938432446,0.19470925708500753,0.25085652521163115],[-0.2859122459282869,-0.0348535160356898,-0.8231972092342003,-0.9849982970490966,-0.3395085221025198,0.3962937761689909,0.6037277301571324,0.6477730421315516,-0.9259627783196893,-0.9263148004846689,-0.8233411705843694,0.8759132901721524,-1.3353575687153372,0.3902845838436054,-0.2653248998446336,0.05355501355497328,0.5069901890944829,-0.2952631983902134,0.0069296952083671235,-0.9959753014207776,0.08960055343612026,0.5907323302325405,-0.7400649870171555,-0.9634977924893722,-0.48990199694368713,0.4490792870869374,0.280181987462213,0.5927038127423683,0.4184472564716974,0.4841242890141609,-0.5913611640900123,-0.6937167460919742,-1.2903597984811395,0.00869295216893966,0.21158643046872289,0.5087854276063029,1.784888967142903,-0.40829204575715705],[0.8018129348673327,0.6479547605286782,0.18246695597488322,-0.9921409131520637,-0.9387587720800495,0.842096082124465,0.8927191914066267,-0.4377642107167679,-0.6554569179946371,0.6490974320929629,-0.5691083593518634,0.8501844225859682,-0.44651164807999716,-0.17404372098906554,0.3310839782867505,0.22660903851261666,-0.8841939896026024,0.5355943806751401,-0.9218436015269088,0.5908177754434784,-0.8414729849536283,-0.2352823286859394,-0.9663647520687211,0.16299836060654643,0.2752574197667534,-0.7871044717575936,-0.7141830053420025,-0.14312188794005304,-0.7839224020513278,0.11413000082052494,-0.6129965171857031,-0.35658727860174333,-0.39293059810923936,0.1927915823455004,0.3001751899950259,-0.6903599089186515,0.6015876686465637,0.8551454171253045],[-0.6708525232732784,0.2586513291423466,-0.06862783308403168,-0.7366509185497138,0.2352402628111941,-0.8676753777618718,0.19732824840630497,0.020272513863820816,-0.7815644797190218,-0.06463070469205742,-0.6571340461497182,0.7765254135356191,-0.5732184251745781,-0.14553485074793474,0.5885569453679037,0.03293360396033406,-0.5032042177139188,-0.7531963521869023,-0.9971718256792027,-0.38357004214495216,0.7419716355588173,0.7030821791381042,-0.8867731682789763,-0.8384309476527316,0.30013397306548945,-0.7499278158043947,-0.50138378193077,-0.14594730015571833,0.46707085856895175,-0.6040626316511696,0.16486148916801394,0.03824689941630549,-0.9442374930975586,0.5738225113110174,-1.0030890309464582,0.1537764681993698,1.4193106846467491,0.9189988803859396],[-0.2838781682695246,0.8912809303691992,0.14461657530585714,-0.8309355194207113,-0.7599138059792147,-0.8547452943772418,-0.41638246116382344,-0.043253281833451014,0.48661312486938674,-0.7661686354990738,0.050887737616174204,0.7078603531853903,-0.15177302530966258,-0.32853456111355417,0.7275846939959361,-0.3179107539147971,-0.2237220739516177,0.282108098447576,0.3607056933768291,-1.0780190110064805,-1.1764376146043263,-0.3901478302898028,0.8532296387147423,-0.4340096917887661,0.21355561503866427,0.5941877956277821,0.34040211870325116,-0.46856524022906615,-0.07933102265452213,-0.09308590011875663,-0.17213701376902785,-0.5134849109907121,0.5423186181834159,0.5084658009120705,1.6391839495250848,0.7578595363071875,-0.9820227388894843,0.3625373628358094],[-0.06522109332002758,-0.9090086091610706,-0.2727298133091463,0.10913503239057663,-0.551513798677802,-0.7398784349485198,0.3225940612257706,0.667669939370883,-0.38941511492051856,-0.07465544262808965,0.5536104489927359,0.28839294671390625,-0.028942373232473444,0.07565408512508838,-0.5003257798285777,-0.5700196577699678,-0.201899183490211,-0.6202235491661359,-0.1746049312217675,-0.5031341633653507,-0.7405429334288264,0.015031665836321411,0.7172459695651544,-0.25977523766970206,-0.14134131297703767,-0.4305391347960452,0.8052153771891417,-0.2202684816561348,-0.817643061805036,-0.2981235948473971,-0.32149375699319904,-0.7697685570353492,-0.13347664266468667,-0.26637154756128223,2.5717228225045337,-0.971676512563692,-0.720611605837956,-1.2405411271401483],[0.10604948504068973,-0.7637146672217832,0.10154365607930774,-0.6362534921360586,-0.9487112804081144,0.967158839766317,-0.11321298526068446,-0.32568682727858783,-0.3267377745003151,-0.19810809053568101,0.2144134587570501,0.680402846943028,-0.41111954794557826,0.32212642767337774,-0.3927523833991434,1.2538029628059408,0.11235682577777073,-0.12702531733733044,0.1722404388607595,-0.9302690156611791,0.6428526102248666,-0.8067895044981361,-0.18254925449523296,0.5991427338135713,0.19294545544663133,0.324531135290758,0.46676972942130734,0.6069326838826541,-0.7980015105160916,0.20777445734310573,-0.4931414495810748,0.47157279487994774,0.13766141530916146,-0.663386826599852,0.48589151712900636,-0.8845182097118954,0.04725123252221852,-0.5882559490625838],[-0.9591516685001911,0.15352419643334755,0.03923118553130256,-0.7244930658502525,0.3815717507715046,-0.03495033808477635,-0.5400565226805185,0.27041544700923914,-0.07598244162309416,-0.6577786974881804,-0.530003718387615,0.3528889722373507,0.6414280041633811,-0.0007685431606731586,0.289744385629989,2.2161158137442403,0.03943670227019996,-1.4217384617807043,-0.9942382733771721,-0.5377393602555028,0.302663055518653,0.6680227019056657,-0.9047234553192992,-0.48383225893211895,-0.6804813083742192,0.10968386274951729,0.6654631699485809,-0.2230316685271623,-0.30132319167948557,-0.8090972075471065,0.9037783610678506,0.1415132254312062,-0.32276643316886056,0.7430431770999197,-0.9622108842626375,0.3014561176866877,-0.16278278680231517,-0.7793195030058855],[-0.9036344520778252,-0.9962501259321144,0.31505517080669,0.8047611316786634,0.6528673405602365,0.08139651785746205,0.6733327411664378,-0.9664541931664105,0.9305945782740114,0.8612365331769893,0.6092209093522754,-0.7992154677823954,-0.11120766521951261,-0.6920981432501745,-0.49171999723014725,-0.4815230215295367,-0.34572272078900734,1.226519035420659,0.2690906388191085,0.357397720903233,-0.7718340645806817,0.7190115087978058,-0.04856435095428394,-0.4785557887607805,0.880858450249152,0.17057178284232932,0.6491049795971556,0.04120944558899536,0.7553508746556378,-0.14730411354232045,0.5091796646655201,-0.5905879621306254,-0.5981431488543117,0.19298751730767805,0.32083478467750715,-0.20973100863259708,-0.7496291663118416,-0.173231164662118],[-0.2397059895381834,0.6328608582958432,-0.28129179334243265,-0.5268090027230542,-0.48149314609271787,0.7948329144459123,-0.06501576130837379,0.7712860221979249,0.7192972593793038,0.21695868389397951,-0.7952443429647401,0.47187876082453256,0.8113515283028438,0.022914019631693233,-0.29355547757687966,-0.2792813972902766,0.37487348530698594,0.5796998604841331,-0.04149152500094907,0.43891191320151846,-0.4247073623781916,-0.19321469499910354,-0.1638335819885985,-0.09766797317660536,-1.030075249419398,0.7201301996573887,-0.40209308892918677,-0.6387544746902226,-0.9854889458079887,-0.03387358881729388,0.8649584199051358,0.7165311546606862,-0.9556654152073311,0.9273920356588233,-0.884050710097123,-0.2581183642506545,-0.4083142688636251,0.02046297599535698],[-0.5361884172489016,0.03120547733853291,-0.9608396082081262,0.08955902873881433,-0.6829833002822778,0.2759441871957236,0.4051346232751946,0.41116739244562517,-0.523129393422279,0.42215949349707943,0.6154457702558735,0.6260648551975704,-0.01907722403906742,0.3013560086299175,-0.42921708125459396,-1.154336841595444,-0.7102387420150916,1.4622727481733688,0.170387048875078,-0.0559996916630053,0.13903638648879682,0.6564217286048317,-0.08835499492274813,-0.48215759864848806,-0.72018130770056,0.5481096287399883,-1.1616786723271664,0.28184572685616605,-0.09935739581778795,-0.007971661268124985,0.06771947782077362,-0.9318046531341799,-0.27415981327663,-0.5175854158824805,0.08588421819431998,0.15954193025861899,0.08819217583070839,-1.0110720573399548],[-0.8740281405314837,-0.05982912411586865,-0.37795044815117745,-0.3043001521667673,0.3483334831548388,-0.16843884598600545,-0.3614575047299821,-0.30536810414555826,-0.4164682369313344,0.24724764552613746,-0.43633588745576274,0.5280959544890849,-0.5381887127014757,0.9101799576131424,-0.9672999213429013,0.7379367630556888,-0.7150886245397094,-0.5237498038613225,-0.9351124882733987,0.7867573467925218,-1.0299702738228906,-0.017709353766767747,-0.6267784665886688,-0.29035178345193036,0.4322842100067418,-0.7510791573515379,0.443909913082651,0.4339735689681466,0.8600402584545764,0.038557115407799075,-0.12490620495114212,-0.06774082344214453,0.222271950087411,-0.9925827172446953,0.16981561331875944,-0.07223764715688955,0.8420280511075732,0.7910566728675692],[0.24631549350844587,-0.15905386185931608,-0.6290519211619511,0.9076062309085541,0.6902787242290037,-0.976139050955087,0.02261733066486435,-0.5959965912104066,0.3506473577412756,-0.031727828699785195,-0.5364631206964552,0.9038138167516827,0.24627514709347123,0.7015100414503769,0.7355553836330029,-0.8984045718042001,-0.23162696559122842,-0.3084452274642028,0.2861867661389499,1.212749719597742,0.8930695352460835,0.5478885532883703,0.6350301100350471,0.08502424657707641,-0.23095727290216633,0.6768663718661002,-0.07242651923812397,-1.0303002254896503,-0.32112927152700943,0.7658234782184034,-0.12090315824333932,0.29205176218780937,0.06328351353170009,-0.2642882482487345,-0.4780538244114405,-0.18573513757554772,0.5338849703818779,-0.6474586803096226],[-0.8146666402968126,-0.7934219106966147,-0.9264757845662636,0.0007891116235443352,0.5938766804446337,-0.3375488558785834,-0.5675833931707773,-0.8758898405172718,-0.4063952142533607,-0.8129680316944702,0.232224133407647,-0.8227375196791602,0.10587695003919738,-0.69016813044289,0.00470016458386213,-0.520979590071235,-0.8573359485047439,0.14609764969528588,-0.230652403961648,1.8360102977886679,0.5607370366184866,-0.3304347178988373,-0.7525864449270615,-0.23685090102638245,-0.00014296189403405934,0.33586492523630274,-0.5191180880781614,0.5665426936917716,-1.018961676940228,0.027520201666074995,-0.0012528436938711363,0.27304564955198685,-0.6235630060687554,-0.798733887954963,-0.4309670213719874,-0.6554068491130388,0.7746872844780734,-0.7866977113969473],[0.4033855282439477,-0.4081900301472496,-0.2886374834919753,0.21485100619666941,-0.3865902256144255,-0.3514301548611911,-0.3367215599906589,-0.4325559184619984,0.8100481735065975,0.8510816323345388,-0.8788606769614267,-0.7463711181987901,-1.0155077523933767,-0.40726501910774054,-0.6203503310276286,0.009895250469797803,0.11264186289492019,-0.6299455778798663,0.5077022465451022,1.0345803661226731,0.33501517750523185,-0.69321121489776,-0.350144229096361,-0.7363445021200777,-0.391107896899792,-0.46586140590847513,-0.04603611820196575,0.4977662048286176,-1.0126981694637667,0.6101116317380546,-0.9429117488201741,-0.2237995203436506,-0.6472735126566437,-0.4423353388879898,0.8059205041698766,0.7483757928824804,-0.6374790435099221,0.7578741184084871],[-0.3072908893782939,0.12909455474260642,-0.8510775086519089,0.08323670410371206,-0.9901886086786217,0.5262976393881623,-0.9906319165502404,0.8806183276603624,0.23209713364449122,-0.6944041160984498,-0.10271225700442899,0.6295106705214858,0.22496881756749226,0.7926559446881746,-0.6966817190608644,-0.3290267659338126,0.632281597820826,-1.1202415901939122,0.6825450697425702,-0.6434243555040992,0.24851855643664186,0.7597267207536069,0.6299985815955668,-0.3093672707009985,0.05324236523640765,0.3530238396722986,3.073238128633659,-0.7579778158364445,-0.1206931125729916,-0.8019305606821765,-0.6222360852236877,-0.3094629579909503,0.6792451143895907,-0.3170985066603744,-0.4093436837465241,0.37271951589513724,-0.5353908859135431,0.004225705406558447],[-0.3105814251698072,0.19711057987388292,0.29926546299249834,-0.8285543213879453,-0.5518296095289266,0.13563208970689478,-0.820027568704511,0.42281371272236046,-0.5059338466883894,-0.7368002463916662,-0.022804284968352278,-0.8201596731347539,0.62035518008278,-1.0500491118158446,-0.8278807236686909,0.8444557823848333,-0.16579660679911087,0.8266797717312789,0.018823349609759732,0.5221327659393232,-0.8150833942031623,0.6912546387983699,-0.9956267226299719,-1.0845376783168366,0.3056724530507969,-0.007901936486551358,2.245349111372096,-0.6342014667611141,0.4669038378006319,-0.875457264152655,-0.22865160858106334,0.24593738614770422,-0.17916169197601323,-0.39525816223597765,-0.9301899915437287,0.26090244158701476,-0.12643676839725027,-0.43277275705955587],[-0.29401185869675633,-0.7256067414021401,0.9702339106834565,-0.21220605199315193,-0.6825604258111829,-0.7718345324438659,-0.2683701484710197,-0.45958836036361084,0.191057588495631,-0.7362753176792068,0.08057241174855957,-0.6129065344295149,-0.19421750047219113,-0.8083507440171342,-0.5647625110327237,-0.9649401907297362,-0.8623661085461625,-0.5256190085342531,0.6683844849306633,-0.7849391582811903,0.09209954991212416,-0.18505937560070776,-0.06339536503136455,-0.13382180410015973,-0.6819917889266122,-0.4833348853330084,0.09319892465969724,-0.20649269113742844,2.4029373060140804,-0.441914621568473,-0.13446516897312358,-0.6528243361037173,-0.23755834917855342,0.2524163342605378,-0.038347587490720265,-0.7108928430043517,0.9038414780407968,-0.05119142378721205],[0.707401630161858,0.9339535553757453,-0.49991001592692713,0.16587108381135918,0.15448607709963585,0.03442425225035183,-0.4095418442639792,-0.5231470242688981,-0.4226604053921777,0.0678157020536153,-0.4555474321564769,0.908380138594704,0.6069720583370096,-1.013041699254259,0.6505355582171931,-0.4367446458285671,-0.26726364980247513,-0.561317816441289,0.13893832659160466,-0.4050053164756734,-0.26704180602075783,-0.9631113330049309,0.047719521350736004,0.567787938982937,-0.2877828881815726,-0.6315838204492789,0.7358025289334764,-0.7990549377948368,1.7506722481137256,-1.2623940153159736,0.4469268828741547,-0.9229821312402681,0.41690722470289515,-0.21265908888022791,0.7714903923259587,-0.6516159777233462,-0.0465663301655763,0.24469008450054772],[-0.7973793772509828,-0.7305914737708312,-0.719470782853228,-0.5718970548942194,0.08155766365130122,0.09353943505807193,-0.17339255678911059,0.45305521103519664,0.7710013395006711,-0.27180070597932304,0.7051844794487335,-0.8343328960108116,-0.31139215456732405,-0.3482608802538248,0.3906572969966733,0.6255922764771682,0.21830608094228832,-0.6415949973702699,-0.4631398609767731,-0.054042983181334374,0.5281436520203066,-0.9404753970332669,-0.46529995673550517,-0.8802937379304255,0.2586624496002702,0.745571432336024,0.22771823456235843,0.1310318898263092,-1.1619275737968993,2.632014168120195,-0.7636424688422229,-0.11594652894325122,0.13502519992020937,0.4522485389088854,0.18232798580419265,-0.5225342619064766,0.7611724922816675,0.36525774707852127],[0.18405220420962462,-0.6698669654098213,-0.10446662029761337,-0.22005762182914076,-0.004599696975705418,-0.8186503960095383,0.3491200180857325,0.6805170404293953,-0.5462290507095032,0.13480737210606478,-0.04076821622175216,-0.4056635184371126,0.7716295306313773,-0.7754563370659966,-0.20838024816682651,0.17936749086740544,0.521992864654584,-0.35486054926233906,-0.8136884534749886,-0.12237746074119527,0.005360253529113335,-0.07308046324891965,0.4082125048190827,0.7765915865089612,0.0961961775333375,-0.7052727566132783,0.5550238315210816,-0.4665273711059321,0.29023910097839295,1.8411828919781827,0.3973480992366724,-0.2440861999950906,-0.13985468389293887,0.45367529272825335,0.44424221216352433,-0.9610082976793228,-0.21781185886914722,-1.0281163497477814],[0.36095566349390384,0.14476575734187005,0.34700478615041325,0.048017382536485596,-0.3824642630635428,0.14693471480895434,0.9318848116123534,-0.9408724906194055,0.5653040997874786,-0.7020486139106312,-0.33662018894711737,0.742221167992664,-0.6214072964440559,0.175804995427445,-0.01584175245707959,-0.39752284262912185,-0.6995344747641741,-0.02631220770325139,-0.15146891674263177,-0.44065037250714256,0.6767933077048506,-0.9012848476652137,-0.44216509288781025,-0.49277143989514477,0.20583210533585397,0.49165513510079745,-0.9059546277327538,0.44370377802204547,-0.011459222155136617,0.9222654524209888,-0.38858718023955746,0.7491713600769044,0.3572461427680001,0.35887767922961117,0.6156317717431281,-0.6966335094479128,0.7562388872311859,0.17390382395501391],[-0.013899832631158675,0.5628904045077149,-0.042017144380218786,-0.9906277271571869,0.8168426858595651,0.3158979791350824,-0.5325822666826134,0.3698442203734517,-1.0046511734116375,0.3993917753915457,-0.1945704173380336,-0.1722239197256127,-0.10920830037979817,-0.40545856106155576,-0.27830159215355604,-0.6290434727616494,0.4005197036387204,-0.9907902407959007,0.8366632990589359,-0.03022685410368092,-0.7665320618402826,0.022340654484532235,-0.30609922811147183,0.1479488809913005,0.755429706354028,0.2715502702538177,0.49950352727947994,0.2663051775166039,-0.7819412216208395,0.9635567466010688,-0.8080413304291777,-0.5707286691202028,0.7209582639602561,-0.7371175122838858,-0.5596443361708046,-0.9264790116820422,-0.15807199880524564,-0.5645755401321552],[0.9091332608153503,-0.08786290230089303,-0.030701760060866234,-0.9168097373276411,-0.6322248379966903,-0.00593838454824855,-0.6718819965766124,0.6599493647589174,0.5432748338676465,0.7724295436127081,0.5423382891519151,-0.8000130273540951,-0.8573803002542395,0.5156783150325775,1.392804583015301,0.5869353931135206,-0.5812880699359363,-0.013850435624037795,0.19398940461795056,0.015456280265417642,0.7597347506029651,-0.7050456469928073,-0.6405950118812562,0.42653612248407535,-0.08814615834176795,-0.059797995057865753,-0.7208983070029977,0.029847016552015163,-0.9821779985537433,-0.7776903974661464,0.17814220358992158,-0.9057457998017387,-0.21650641898815784,0.467511840425623,0.6918552567685569,-0.6925275844519999,-0.6308339389550484,-0.09592706881442352],[0.25252911109871234,-0.8249393325767195,-0.5183282728168761,0.7650973538420268,-0.5890174942445332,-0.30399675494611894,-0.36994631903804986,-0.35388472340296456,-0.8380012336115853,0.6002557089520218,0.013849414780616106,0.26360196772982397,-0.41733881497911435,0.22656927087009965,1.0986224790487333,-0.9280743331664254,-0.11109231123681501,-0.6273529598591555,-0.7478982512108867,0.059866265377627084,-0.9835467186428912,0.134631264157596,-0.31943184322938856,-0.9008295545113717,-0.9864503277417606,0.36245984879922094,0.31924481181588477,0.07386990818254892,0.7663267367683785,-0.5173637997620549,0.2887990108944839,-0.2279098549635567,0.7913508167824546,-0.5307487920635988,0.7623894113963327,0.48474484755870967,-0.7080260876587529,0.6546941687753958],[-0.9067914340683522,0.5494765933401271,0.7394499142173595,0.5078206118123909,-0.7868839102999365,-0.12392868267028079,-0.2621167726596949,0.46524177155544666,0.20374161346101066,-0.26942756476891555,-0.334440436348439,0.030177908038596227,-0.9174540247943428,0.3646150776717066,0.9367015870894886,-0.9860024855165339,0.4155279765340262,0.5225438304612657,0.5880403631159393,-0.7306372794836619,-0.12146730719791693,-0.2899282112709342,0.738495402024135,-0.2112246504208872,-0.6090152967935044,0.8302199620440264,-0.09784486500407746,-0.21903202095930752,-0.059237189740345274,-0.1615625628421464,0.19330773178785438,-0.210016312691411,-0.6525430138112993,-0.9983425952433113,0.1067350630144399,-0.2487032794295916,0.8562330008368522,0.9763173953452492],[0.22085831386204427,0.5684898718436707,0.9002437480237053,-0.8432519310834229,0.7397969209011673,-0.5122325102203648,-0.2928360760611306,-0.28778660545475226,0.7090791710792163,0.9345353175620128,-0.951526244134997,-0.7963778559430343,-0.45005263735580614,0.38386917028686646,-0.6957408817684755,-0.8564547168615345,0.2420403401758129,-0.0747195793379366,0.636600385626331,-0.795924641734269,-0.6102627837053851,-0.7447435356557707,-0.575255064869313,0.5134242021825769,-0.9367786974631094,-0.4358627385335605,-0.6348871052543997,-0.03434892261455638,0.3846626501710627,0.6875226511668997,0.9166160272625662,-0.875629875955766,-0.6851147579097254,-0.5791863864114735,-0.286465915402702,0.1528834978389663,-0.038536507729332765,-0.6283099761133827],[0.8505100221486014,0.9619976458056045,-0.645026330042821,-0.444772520855541,0.3766372376031577,-0.517931458591514,-0.6405667757382145,0.8292421850656175,0.5852359710338207,0.4802755875348622,-0.6692479667570048,0.40053994374923096,-0.97905838934015,0.33941386035174426,0.3246015359602049,-0.26214523755290303,0.4347359268798958,0.034439955469330444,0.58985626570049,0.7285461045656461,0.2919199483749171,0.011427769735458213,-0.715360534852078,-0.01396596227788546,-0.025802328178843478,0.5901377462759763,-0.42323880861152435,-0.12788401164638485,-0.9888411000393126,-0.6540219567687579,1.9443614534100797,-0.7311162876520539,-0.6961982916958123,-0.12322216611181329,0.3852940389232319,0.4518094923549714,0.03347394096102209,-0.34807799580565724],[0.6467585119957228,0.3197009621407843,0.7052667635873152,0.17672273171284342,-0.9161526329476134,0.8430478199336287,-0.5739330213655767,-0.2167177383711176,-0.8105560707397766,0.7393721347158487,-0.03988388070920351,0.7961309425044764,-0.26195268368454566,0.3395626089414247,-0.6836195625115064,-0.6199936840112797,0.3548872697445407,0.9627675495625262,-1.1959344469826778,-0.6683091072258801,-0.22588278268815137,-0.277851376177285,0.8401461017927704,0.090304673616203,-0.36223810437799436,-0.48856886344744177,-0.3635902919896099,-0.6571455510371423,-0.8961878412604452,0.534462911638217,0.3031710470549237,2.2597435321871875,-0.9734371456490137,-0.3279628964757601,-0.6890591622768011,-0.7361777363471026,0.7680603879006618,-0.1829756231561387],[0.9751095690566933,0.5125991046936104,-0.3031051729525209,0.23627482528137217,-0.00003551785831332123,-0.7773882146100854,0.3406667473255495,0.6519519298470858,0.7881324578320852,-0.7911060351406785,-0.8169144739245541,-0.03742068515041565,0.5917044624555342,0.46443518425348884,-0.832677514613797,-0.9534174891704357,-0.16669313598886215,0.6264559219579632,0.8184545188667051,-0.5732464440125252,0.35253787759848587,-0.02357096600690579,0.2291102074975587,-0.5460057773269108,0.430060467440917,-0.23798195448811166,-0.4213094062688062,-0.8007905665825569,-0.5211955349076778,0.7978749427916897,-0.5452282243770696,-1.0249882786825721,2.479846869020417,-0.9319193281848523,-0.9938827775405747,-0.09434833979657062,-0.5202085560122142,0.658649003116879],[0.08600094494430657,-0.5094717454935392,0.5095528800599906,0.06653505330541855,-0.2326649390970797,0.5411320807559651,0.024978372447341704,0.7442910390610645,-0.1736853649291196,0.1094341803328349,-0.6244702750664038,-0.5838904303465547,-0.39952322137278895,-0.3162683716819437,0.4749736949473585,-0.26553458964196364,-0.5825731140060352,0.041142466197553865,0.3967110912052357,0.2760305579065453,0.8283939852599498,-0.7343841091117254,-1.0147990438154382,0.12907906489501764,0.4815155272951086,-0.7492645906037637,-0.45225592228826755,0.7225749208413466,-0.8885211739129409,-0.7199400805190175,-0.7492435543516915,0.4461210704871742,3.768477030283729,-0.6976349289614769,-0.12547208713907881,-0.2990068644132992,-1.0199656432924746,-1.0079446511044279],[0.2481326976181911,-0.009040905464727193,-0.41992938343157565,0.7528736585827929,0.9745737997102688,-0.5840776634186529,-0.16127315867585898,-0.4780887188798803,-0.5205406610285743,0.40492984837764767,0.4415205493194178,0.7022083698556242,-0.33806120713285726,0.014214885568181472,0.678131026102699,0.8566125270916627,0.8161690548834354,-0.1876126665860319,0.21355560372646665,-1.0443429069158487,0.07167627501309075,0.03835590102130994,-0.2557185233946793,-0.8983915946319735,0.663747929662329,-0.017933262536595867,0.35750166742229794,-0.04845865562191195,0.9031868723964743,-0.6706492905857461,-0.14846019591965232,0.9166941397561575,-1.0920584220177783,2.215011581045833,-0.4900426296463204,-0.6062051721664679,0.4751430964984298,-1.0032346589007861],[-0.9969146777199859,0.13562815270605577,-0.3463075572183946,-0.6679596899739931,-0.21946911903638203,-0.4888921442544336,0.13362249493193465,-0.39622455759509445,0.8504922359918045,-0.2537335223296303,0.7230876695051451,0.8649076780694184,-0.09707448544557332,-0.006335540049906726,0.3475884777759918,-0.8168259831934985,-0.3951172368449208,0.7251495481402103,-0.3990713897179624,-0.6934373239887426,0.3192210321855972,0.46577321080942347,-0.910002775505062,-0.2296893651183993,-0.43893623516041946,0.03170289673069176,-0.32203055559278415,-0.6019992917328582,-0.004057638792485821,-0.40859517560914616,-0.9287822176637831,0.2692094383645409,-0.495743946679921,1.8510255011899437,-0.8748639652923952,-0.8124646457909499,0.2624040906026443,-0.9711233431914352]]],"Output":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0]],"Rate":0.1,"Errors":[-0.050316248536979594,0.0061390420539023305,0.005133351028066617,0.004581401783229954,0.0042101337040130835,0.0039319605419405644,0.003710955011579369,0.0035296352793456696,0.0033777940651280353,0.003248543880369023,0.0031369187320575637,0.003039258663832922,0.0029528366057790276,0.0028755970140344153,0.002805969209561247,0.00274273507638558,0.002684935680412595,0.002631805162635531,0.002582723551263178,0.002537182691309174],"Time":3.72} +{"Layers":[[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0],[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0],[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0],[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0],[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0],[0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]],[[0.7209555990344017,0.3552037358552958,0.6133264314480129,0.6235709508692667,0.30480041052872364,0.6826847940581701,0.5663937714328021,0.6251771850141865,0.2552224238277188,0.5191637275223135,0.7057848731949162,0.39141649538932693,0.44450312316036616,0.6336600993084931,0.4536324646705767,0.7376888914149293,0.6026970840621114,0.48456520149321997,0.3803367215560802,0.30962082994525625,0.3252860441679003,0.7132727754291099,0.6032335636605498,0.6574909734565263,0.4391759239430852,0.698451863167042,0.3586853390827759,0.5985336149958954,0.6976453448491416,0.3482823420198976,0.6771439210159015,0.5391552020147368,0.3845399869232371,0.513578935158911,0.6884460197029695,0.3938366441860973,0.3472724432312794,0.32131309152934373,0.22734241639697805,0.7296879762386176,0.4128728704877333,0.4213827269157862,0.5156371381712268,0.409871819302504,0.6045113625984277,0.3705892660454737,0.6445238595720266,0.39846993339053266,0.3378719253217976,0.35107304237939774],[0.0002082100206143871,0.21278309092025927,0.8195975885954204,0.5704461890124899,0.7506762928827563,0.20469786926319827,0.12984141257077744,0.44076498642833256,0.000023092700654682966,0.46954824225356984,0.0011759274793765634,0.0006531963106470827,0.42386713490119804,0.0002193302853878725,0.08984602750594972,0.3296034772477605,0.2776106340997984,0.019171561508193918,0.2899027440346849,0.005701832491441558,0.9424294156790191,0.00020609484154930947,0.6348842777298518,0.0023705946144535485,0.0000015405839585855881,0.007611839316741823,0.5387999361373109,0.8947655780977157,0.3607119932944693,0.5810963198878106,0.06383302485075247,0.05647878199230155,0.00031668687814126456,0.0011606648963979195,0.06074122895049649,0.9150336450312528,0.00019288706185888803,0.002910935035032472,0.3835102436100023,0.8156893687481895,0.033083948423832686,0.0012461962340926185,0.00019430221752508766,0.0008220746056624448,0.3323193890816509,0.266258002934076,6.000318370150025e-10,0.7239178875087547,0.008698970702214655,0.047591998932775215],[0.00008582968088236612,0.16186554916808915,0.5225063508812845,0.5946623793612945,0.7686193839874828,0.28497560375202563,0.08068395493468071,0.5392720563342567,0.00040350912203455203,0.43194626386699697,6.966365711121073e-7,0.0020754989881145696,0.4771216995593243,0.00011414533970724114,0.8371762720735719,0.2823674498312391,0.6442515139017178,0.01197834263323454,0.423550227365096,0.03900476048283602,0.557535148059888,0.0007969063443724626,0.8882088158844166,0.0003560073092256922,1.7180069038051243e-7,0.01223675674908257,0.5806603141989989,0.7542441641358291,0.49070461454273656,0.6744987241513075,0.26755509694536544,0.10037979664566198,0.0002147064154670355,0.0010539866835884283,0.015237535371099445,0.781822654484681,0.00016630431107741257,0.009342855983180777,0.5842301697473219,0.5104410950828486,0.15997877020195436,0.0003556109881467759,0.000002553651844562984,0.009872241411299427,0.16186409114729478,0.2912572488342298,6.467335093792326e-11,0.6358900335818848,0.0008776774599206183,0.0916620256928744],[0.000006013478082971282,0.5362064153994236,0.8441015879902969,0.9851588015858979,0.49633348674424654,0.35582918719506906,0.21216159652648978,0.4902034394833222,0.000007175624881645072,0.17339338923042344,0.00016930003410589033,0.02435525629507474,0.4228971313055358,0.0016113574065512643,0.005784492046757911,0.016308638010616335,0.6964406565663743,0.01264960035036509,0.3493675071167754,0.002444297300181648,0.761889614816167,0.001575757892590636,0.8083356477458232,0.003690360691810138,0.00005120479042843904,0.00013090851714257619,0.281467694696011,0.7567761828977226,0.05833158750795911,0.3932807331533875,0.12088191954673597,0.0042063857558528785,0.0010414234109704852,0.00017643524980220818,0.0023758678822222152,0.4880290725216259,0.000988408529177256,0.006834652719456206,0.4262993255563587,0.2001363047553396,0.1380807350971669,0.00006510565118356532,0.000047050684387584594,0.00025255478315656775,0.4692362119841961,0.24086206216728373,2.4507623315468465e-9,0.8658243430232603,0.001893316234546392,0.13325209339842503],[0.547023220565482,0.5988005683922988,0.4203900664792171,0.18640610451240702,0.5603266454535427,0.5792364105961739,0.5333587837757521,0.7755072471765879,0.7645786613862314,0.7293975824554005,0.6379944385417969,0.5692017867539185,0.16598947443505752,0.1644566705771164,0.17485921540039528,0.765038042495492,0.03783464924247217,0.42616911629643406,0.5768263957905524,0.08287908397040056,0.7427650311919486,0.5716451036285919,0.20576026234454586,0.5347283240361372,0.3765191835870004,0.40463322755306297,0.286367333356521,0.032900475457404675,0.7307869340922137,0.5442206550715246,0.7962144254967215,0.49194696193849147,0.6797103194658761,0.7660023944871376,0.6180224924311362,0.5379648363940499,0.8009266121740058,0.48649362334076957,0.35302507193774835,0.3208594539539446,0.7625160285851499,0.1921778235580374,0.7748497314048131,0.004303411079725798,0.1535535462007824,0.2067814222656123,0.1495348469503556,0.09646968901273932,0.34020351780769525,0.6028032503227257],[0.8786461198577818,0.002196220921383518,0.14332944870511125,0.3840827587992278,0.5261134551624828,0.4832912515896955,0.26488402707942366,0.03158953099602747,0.49560687371086454,0.35304598384516184,0.4170673760907443,0.3937153394498715,0.2690241335645073,0.7666779208097733,0.9296148253390585,0.691528749329826,0.009247128981593074,0.13203064486862512,0.6387145374059221,0.06399420748636427,0.8898592555945622,0.5822531225640369,0.2819936958149615,0.4807983146686686,0.8131844928115385,0.26422784312791275,0.5787429976043207,0.7802731068927801,0.8544351542845842,0.12320084405868906,0.7809551741576317,0.17962699030242302,0.6667328170795621,0.5284636656191298,0.8095645546673037,0.5275287907697316,0.7919781517170944,0.35751827636794575,0.1814484383509048,0.29022410685407063,0.8657778271347589,0.01433667427308982,0.018715410969024602,0.000004180634120714961,0.44459805646932604,0.6656684601215848,0.7707075024066479,0.5476109852006407,0.7402807212648812,0.05928512486880409],[0.8103326715135761,0.3781126400705377,0.5244203357139454,0.10410497621554815,0.6669123129320771,0.8629477741714052,0.45458018268582434,0.04995791587204763,0.45235655588296236,0.19724956701756574,0.6746733439941404,0.419903077831865,0.05915837921700389,0.3636019956012741,0.4643276213085707,0.42274465150098,0.035089970599820636,0.09259905720103428,0.5590342699175046,0.9377565604319728,0.5540788686097722,0.3350346466454361,0.8575000118931589,0.9643319792795546,0.2891795489559636,0.4983264426898854,0.004548074061268954,0.0336919525604946,0.9504073580503246,0.858928191505086,0.18109699731700074,0.487008482000333,0.9550733697194277,0.6889607849747056,0.7035027464440329,0.588238327202317,0.7954097258792597,0.4424799812601399,0.3827555699195503,0.9159712773513797,0.5412723720830183,0.20223766072282018,0.03270380145350476,0.00010598344999396759,0.03856028865938997,0.2576160566864793,0.7529233072462737,0.6935978551634224,0.47368840171528037,0.29614240725410745],[0.4234198308689889,0.29987827563506453,0.5141389649601075,0.6257224143382875,0.6353250012150072,0.2678530383612199,0.6613419919191507,0.6535887587896841,0.32766147848342286,0.7468237288326405,0.6848280454662308,0.5315211479400996,0.18590386011271484,0.27925804659651504,0.3220560264380659,0.8210690344933671,0.3310376434816238,0.8602322411700947,0.8309984904501733,0.06041086284890909,0.49572490009473497,0.8594985130117682,0.5885485094962194,0.16220878568899058,0.5891792392251028,0.1953906882831076,0.021597672102009528,0.0692535422303847,0.680665222080366,0.2499011370525145,0.5872917994801798,0.21675628097444483,0.7062717089256105,0.543796914884337,0.7551534568012254,0.6890288454642606,0.5899168404082086,0.20601137495053268,0.20567411846142736,0.20278041860329876,0.5707979830280475,0.3023103923971628,0.03310558229618331,0.03790930565265341,0.36332063071625015,0.0417900938920261,0.2635554501039985,0.03615487759218797,0.4601648132424745,0.8319579097558575],[0.4653767853172252,0.9102546879106956,0.6100303574151907,0.34948623942709883,0.0003103964936175498,0.32029158195826635,0.0000069809811804942315,0.3258537286395061,0.6934967786965326,0.8101694193877045,0.002268767494827738,0.0008238720292465223,0.00006246869767690798,0.06296696176999428,0.12512808531622818,0.7646374412280519,0.049070214116895744,0.4271980593210522,0.6683518122317048,0.005112025219940809,0.9143113248765848,0.47211412603576003,0.08276239599775745,0.6409154315072119,0.003484752180742911,0.000041358766946595634,0.6516773807028764,0.31373739975076353,0.00004415413141519703,0.7993830967272967,0.8503397470476824,0.9023112802166818,0.8219378996095276,0.7840924432055323,0.00000244594862870158,0.00027846232632781144,0.0003943975589280937,0.00395039343349435,0.17566278641961475,0.011250494039993366,0.000016367840481760328,0.38814018468676204,0.7020043856809601,0.001950728324272071,0.8891423889347296,0.6338120751838777,0.27562552773472826,0.35531331046670644,0.0367752081645798,0.0019462947832653765],[0.5580064095425662,0.9328509609858138,0.46877770828214776,0.5883682069408438,0.00044897324405433916,0.31639875166138115,0.00003134548116212343,0.634018408925038,0.5987958150483003,0.7310263063484195,0.018059867733702585,0.00442438842576919,0.00007411913837575564,0.11008684155413778,0.517288239499948,0.7268092624253479,0.03660114533094204,0.33599722012993255,0.5130715411772913,0.007562168379662111,0.7993230722867958,0.8235900826637944,0.15763826583451843,0.9291908126880714,0.010653483769688265,0.0000493539275848405,0.6141701359574233,0.5641305799884176,0.000014326947650225684,0.8267447876585869,0.6677072619500517,0.8206375253424356,0.9157354499727555,0.9027809077517976,0.000003171154260172119,0.0006377699069304648,0.00675448975790844,0.004662354216016163,0.26365656910820423,0.0008952891874697535,0.000019048668520727513,0.49733618015295433,0.6738814252256077,0.0005021140805331279,0.7465278445406208,0.6832425653851232,0.32860549758477126,0.2645600008486507,0.01854040942672683,0.0074873033081765674],[0.5183725428628754,0.002512452833294637,0.7988345595350927,0.9417336042832277,0.7222788051781632,0.0013845834296188706,0.5789649748342596,0.00008634485053655076,0.00003258002342633961,0.00005621728933149132,0.37142538916800527,0.11304975119118378,0.000013045901619770968,0.3123026103036796,0.6945269980315045,0.3938780107388849,0.532670965512156,0.0024852844260738888,0.00007500740878965413,0.23084256153506313,0.8898801742408117,0.12306212017752646,0.8151988842538314,0.0012890342644398948,0.000004604989919108698,0.3314989709955071,0.6980184183062335,0.9171581891310422,0.7164272101549133,0.2896511812161292,0.14713458656056158,0.0003323985260467554,4.1420918577127015e-8,0.3158190852592493,0.000023804048191202813,0.9303278328973623,0.0005708638047576188,0.12949879660386857,0.0012233587999543566,0.7329557782304491,2.1473321255506053e-7,0.0000056986775408768515,0.34520220380761946,0.000029107923541202207,0.3618749052637203,0.000014609538061600107,1.256498426421583e-13,0.5377096860408194,0.5164210930466886,0.21064086910858093],[0.4597169166951116,0.18432690537735774,0.9809903296229212,0.6152288391271429,0.6372296758494399,0.15402791018667705,0.2547189416666854,0.0008448267749708633,0.030788331113568893,0.03247894376568911,0.43431737425435524,0.3197825963835332,0.00043016888540707625,0.33169703173988896,0.42574807280824606,0.6109123372383833,0.6311971104111102,0.09803373634898989,0.07661168257915084,0.3179876819043876,0.9053810578008243,0.18307430176740655,0.4161964367436548,0.11413476184594554,0.000590070533149325,0.22049511858786514,0.1850312054430532,0.0009228939456664634,0.526656194563873,0.6317736169626719,0.47403426150079225,0.0017808599043489433,5.884113804274221e-7,0.25273277067764727,0.00006130168627079735,0.34375472070464924,0.023366597685409125,0.053249003935710824,0.0016819621479151287,0.7425438312859068,0.00014508434246566352,0.00005843212518922497,0.5386604996913898,0.35650427828997405,0.4883500748498862,0.12102194426074264,4.989294824760127e-7,0.2710345079403189,0.2393540625179064,0.3525705646784416],[0.5585734482777824,0.00015140264640773512,0.825570703962794,0.8896420427500996,0.561276396362344,0.025054937881008835,0.2528178235591314,0.012688796826514291,0.0007129491409344823,0.16132760129270643,0.03290215631473086,0.004091153575297803,0.020292198737858893,0.03730195392348073,0.5398868295071498,0.0012836130471132327,0.7086055214087627,0.05940049628142802,0.001928180241938361,0.0003581945583406089,0.9198710391024292,0.00009124035946401652,0.7958879587269333,0.09829515622014996,0.0005087572986686857,0.4839611841688518,0.7591237572868426,0.8053368941049822,0.6699659077379188,0.0014368424117554104,0.0004431591647793158,0.27895257647678473,3.2776884270402717e-7,0.009233231335618973,0.2961290849197224,0.8425666054123796,0.18323154992828283,0.34579136500131047,0.008714471855750637,0.15568760027983344,0.000001879632018738684,0.05298670456066268,0.00017866986304326915,0.1076656817712798,0.6229365440082006,0.019784918825619346,6.777071146212524e-11,0.22960529334248533,0.15666687821081027,0.00045721712708180845],[0.9892488333590036,0.04720359902494371,0.4538461354293974,0.0018032105859192822,0.8131301221474051,0.25885139299817167,0.2695711953744965,0.3152000348272706,0.8262679445790717,0.0004346811571249947,0.5499958337868813,0.0015670465319489642,0.45420892237323207,0.3531716362654946,0.35248330718578175,0.13791440448583236,0.7109252925471499,0.0008425123673671302,0.042567453632101626,0.12450180703005573,0.4079614104221016,0.18370936992628933,0.3304106180647886,0.22712349052624375,0.0006015594606376077,0.018580778409950243,0.5394299288434331,0.045449891528759515,0.31215539841775913,0.602526661271901,0.6086721158933804,0.9072250692732817,0.14964441758704014,0.03466181691719888,0.195770006650702,0.7574408261893406,0.4844709128515017,0.1758656376937634,0.7253388280897957,0.9666119755362677,0.0019761966887101223,0.7930809580381185,0.11020899181442138,0.31482180678887767,0.4377379252115496,0.8542146091135006,0.11737295569842608,0.21857709463689787,0.001534894678983013,0.36854703344092504],[0.9260977376426429,0.5237438307298636,0.2585197566909563,0.0004280902591098291,0.645201334196789,0.06823439488117698,0.3533072343798346,0.41229792030239726,0.8482594342596101,0.005389907725164582,0.8029108613478282,0.0013526169115144061,0.3646464360548793,0.22851927363069752,0.31668155961238975,0.13346475332008328,0.9504067012820453,0.12366582171894916,0.03530940015496641,0.08328170640020399,0.1094668248935221,0.3265189126250774,0.28204986724530984,0.07609481046922666,0.003473364218871154,0.18484403809538522,0.3996825701411187,0.07791308021184357,0.14008762302738342,0.38754175080246117,0.8812614931324126,0.8857615485471507,0.23377750593738109,0.06543933337166047,0.29928653859764204,0.4540179339500458,0.6024475902897591,0.027870004893969257,0.4652123514252292,0.9430425873546754,0.0000945349257226051,0.6182460469787083,0.1514185002033922,0.4231384634229899,0.9003183552557853,0.7238549746261151,0.026356724140142746,0.15191633764171006,0.045619685309748484,0.2335159104164365],[0.7936208013774585,0.17464409005351253,0.08077823999102493,0.2957949838618198,0.38963724216777035,0.854482775262862,0.40800742128388356,0.5905681162633316,0.6334440411361307,0.05570088990559875,0.8586511648214371,0.36182330237763505,0.4365056051668386,0.5928407275127842,0.45583345293147454,0.0039442872695202935,0.4088170138249151,0.006565586453667013,0.08458931482451096,0.8747295327469448,0.5188887692531232,0.5009356584385494,0.600515473762519,0.9296348305531694,0.03485155903630511,0.2561637434762349,0.37673278137914235,0.5158618129163203,0.8235576016239897,0.8398265853546618,0.41809906803626445,0.7448377809022974,0.8451016508601602,0.5214628896049953,0.8021096090281788,0.06886625078650883,0.8642136817201341,0.6461605262145046,0.7623795619064454,0.8227502325153079,0.5253635230272268,0.5833328942417297,0.27439314360102607,0.3142153296772812,0.31519143385747717,0.567138969753188,0.5885433526804157,0.8411592458722165,0.2031755029892525,0.18109203238954127],[0.5085335885322184,0.3775554505215351,0.11562756015327627,0.00448405768246325,0.8300694920616315,0.748356146017463,0.8906385940330366,0.5126738031829926,0.8532788265741853,0.2090958031452949,0.8275322388622643,0.009462928604093784,0.2900072603121178,0.7101964546577185,0.7538937986625188,0.4581621834069436,0.8318282605758256,0.10292990418373568,0.27025351004552284,0.6163582695043086,0.0249425869722234,0.6774087017068583,0.4601588730919498,0.8746675854065876,0.20234548976270042,0.17049202207100606,0.5010690621450947,0.3657568589239152,0.8699534245048784,0.42045470675790036,0.6467347305551707,0.6735807683527614,0.8850160140558947,0.8249903785103168,0.8259023451691306,0.1261057995244085,0.7670321402091083,0.5477236490437548,0.7569481910851091,0.6044867785254701,0.006572196977876326,0.4283098610813849,0.7608821849936385,0.6507764611662896,0.7069013724642653,0.30232497463352276,0.6213501409414975,0.48296830759420367,0.6475292150692415,0.7115834417527795],[0.9720318580141534,0.027167276306548097,0.29083968045990266,0.0006635202735645319,0.5022247332720612,0.10811763724087704,0.17980470546822042,0.3560107408454409,0.6147597025114695,0.0014592395845192357,0.36575508665481643,0.0024853551189437085,0.7898877116134182,0.532595079888236,0.29626762756660946,0.019521898489119012,0.5486977283282196,0.0005244809646588616,0.15082139558668692,0.07949867250341489,0.5073628393757513,0.17485700018710276,0.30119982674261575,0.18970947150348613,0.002435769475196082,0.19657444478272923,0.2246768517094001,0.016213590611384398,0.14040081637343704,0.7600111328835866,0.6862812182470414,0.9442616401253102,0.316189319630217,0.10140436836573075,0.14415051519972014,0.41054010758395426,0.3082995810189239,0.2763079111247901,0.5835384761586128,0.9712632433145865,0.0008192732446727602,0.6811776070307916,0.13121039276820898,0.3070564090426035,0.5728310432071831,0.3403143949421585,0.05835589607244735,0.16028243426263505,0.0010183081680464983,0.283833011791379],[0.954736724977312,0.012115238473219294,0.4715404019514349,0.00009201466640613327,0.6653485170848402,0.10003327575437748,0.366789826896724,0.25063230354687877,0.3941742544343089,0.0015509644383023336,0.5364057176462678,0.0008478800620475193,0.9210089754604011,0.47329290231559545,0.548884204636452,0.13922609000147526,0.5667354573736149,0.0008051359100399815,0.16713446089948025,0.03576328817125057,0.24076939557212781,0.50446993496499,0.3224210128854121,0.13564586993762448,0.009260525745122808,0.013216810996204928,0.45860313048446255,0.06536919589227554,0.1582460920681086,0.5575707221308828,0.9261244706078879,0.9525314932620577,0.15416010641513858,0.007645592438418737,0.23134918428016168,0.7909221189897434,0.09843852072296679,0.027549746793831584,0.5160615740073119,0.8563805379851102,0.00007763411790865258,0.29904358383000446,0.13690448562325105,0.8812126940453292,0.7657068950103466,0.2553317604077849,0.03631481031415197,0.0799866268730268,0.006321889803062858,0.18381430369249677],[0.6029482046334375,0.060818140903729286,0.19721376000108762,0.008675075134499582,0.8334851728466848,0.6406640759068036,0.5748652653261357,0.7087392471593617,0.3493953846585329,0.6130415631379988,0.8659754892280107,0.1623644971238785,0.7238224457755178,0.4466295161646869,0.7322317515747359,0.14375013593863722,0.47788794774691196,0.004940104311535877,0.262656177063319,0.5019768496838637,0.05293439092434705,0.5819232980633151,0.6660176514328067,0.8264819712439523,0.35673520729991665,0.3811557964316889,0.3619515761911367,0.9265903525376654,0.6657118313685969,0.8222452763005805,0.8138617529955918,0.7297050479910742,0.6834582581091821,0.043071015584204925,0.9198735422831262,0.7389783014281038,0.20571681776807546,0.28600881654621063,0.7719269944606622,0.3867355921436716,0.05369622342504606,0.08140871293444774,0.5304870200732874,0.5075837228355288,0.25702831790217273,0.11686852480506926,0.7095396012678932,0.6725111373152745,0.1659475590654339,0.1257075445528086],[0.8927234487817196,0.3512523385671658,0.7049973366247465,0.028838119730556912,0.7793548848058478,0.00000207687821340604,0.003256893594078717,0.01441849377212687,0.07858273894930441,0.4217256352715425,0.03907411905660213,0.1241104467522776,0.901650355027931,0.4269488625928296,0.0035788275921574274,0.014135280384893218,0.9158235199320279,0.29273487047689534,0.4883795062993219,0.000019303991667853457,0.38680374582965255,0.26256409133221664,0.016846466734635263,1.2093498048794865e-7,0.24881353510358356,0.1714192395500843,0.6781971052104565,0.0000065682146701577016,0.000011985687412767916,0.24128488456838396,0.9739036304807845,0.9462390168118013,0.022370149642186848,0.11169339370919035,0.00011653917555157099,0.7443894454028106,0.5782540220952223,0.011371575450729435,0.5562814824063147,0.9326806660824537,0.11525779732496488,0.7200800559445784,0.5956404309345615,0.14956682099405053,0.8618107257079812,0.9288343204654051,0.14023727147999804,0.003094387322793063,0.00010533182098333157,0.3691953592819231],[0.9702353212989683,0.5238371741379964,0.45934731713442584,0.1336254174746987,0.6697118669185959,0.0000030647582240027134,0.0006206700411805535,0.011129205559162962,0.3355711631408151,0.5199743150458035,0.004820004553080221,0.21755965682810502,0.7885537191318287,0.4631164890149224,0.17443951003449787,0.01367718665845843,0.8568712832766882,0.17588614131001562,0.544564978805195,0.000005817404072751617,0.3235239684647068,0.10858119054766324,0.030580011149323922,2.434907039627563e-7,0.37314111534619193,0.2010282905454731,0.7821189612742067,0.0000029318418746167167,2.5833563244338156e-8,0.09435508710131303,0.8595549927506816,0.9792576640630369,0.00006345652238461462,0.0709913988004018,0.00004523206153579118,0.6092218085597774,0.10707304621724084,0.014579976424524752,0.15588033790701605,0.9493888351508674,0.13218659053476953,0.6481087004592055,0.7107437318534549,0.8089970119533383,0.7626971471608639,0.6509046080812234,0.18960731137759618,4.3021823687973446e-7,0.00008561454123524497,0.5152507886504923],[0.3260530658153156,0.3141622161501895,0.26345558361766797,0.791218662878089,0.4454705022088132,0.041002127170918265,0.09179919829702342,0.18795197602478284,0.7558690939424686,0.9382385143111343,0.25427835230237184,0.7471525960325316,0.4149615724316307,0.6189902377796339,0.5821344633232288,0.16018727094085675,0.6261744339975334,0.7526656856055041,0.715714466613457,0.06501436232275726,0.28239071039000974,0.4109577034916332,0.6360941667065352,0.043901575257272854,0.8264871081611829,0.7199272313706867,0.5752306037965956,0.02122937023708598,0.0006100858019954549,0.19045363260167109,0.7527320810952702,0.5985154687243023,0.07685280336310935,0.3997628307091537,0.08606273292397112,0.13893918432803032,0.42533000019820694,0.26985515180580083,0.6864504584853585,0.5194319278571882,0.750356191873591,0.7223553644458999,0.7099834650127596,0.42347864587485373,0.6532377042626956,0.33110137079676516,0.4339279162362482,0.0011782125830446214,0.181134706490205,0.3981912869457924],[0.36799140484902093,0.5862640940475274,0.5329979785457697,0.6287241857642132,0.000165604603646636,0.9466846041918755,0.0014565830800132985,0.0014962279841600956,0.40697507494627283,0.007207445069862404,0.012994634391497756,0.001506027475686009,0.24824841548753895,0.0005834941786703893,0.0018865020117540398,0.16911894657762272,0.7079894275677969,0.17834736260156786,0.2713808791452604,8.15433089308157e-7,0.7301622849142686,0.0000612956695996982,0.008376198397913098,0.4324675777133872,0.12110842186080668,0.0002800075990621673,0.422160780734602,0.6671873548507622,0.023249232046642806,0.4449361531273032,0.291044924052445,0.7374475024069502,0.000018798087625061228,0.2579030235444282,0.000010765853615080416,0.7594112465023448,0.000026515023573249553,0.0015127017134260446,1.9234146714233157e-7,0.5123995165121831,1.643154367362381e-7,0.00009186816717843613,0.6571089192868884,0.027503848509003174,0.36532452306711105,0.14323556042074537,0.00019341555913573096,0.0030963652127627976,0.000004142995847043972,0.000004797215629897361],[0.5905800900206188,0.49619698305738164,0.5723653798867807,0.23866792007608384,0.00017481111589868445,0.436286708302977,0.00023791115629532658,0.0035690599881496453,0.39299455775522,0.0008608521166421339,0.19151496492167852,0.0000011100043071225426,0.6010946953146054,0.00006408068968379466,0.0027447912121668283,0.15809752125475304,0.7582563523083453,0.5196919738457306,0.3495403728923702,2.0970465594445712e-7,0.8012747306212676,0.000002030647821478144,0.00004926939204180823,0.5930730497592012,0.29490449260621254,0.00002932944974090888,0.4703384127150256,0.5981362270068198,0.001035591211695474,0.5824867446318845,0.9008987759026122,0.46496887216363303,2.8611526767105058e-8,0.1621760869316045,0.0000018304229494830222,0.8711873809760283,3.714323627980302e-7,0.00007567566038457521,1.322933781246672e-8,0.6515576208774304,1.087259138469345e-8,0.00007270258588867354,0.3904083249069688,0.001042276451721883,0.6150330733309485,0.09552740345695085,5.516343679158462e-7,0.000011996422226363917,0.0000024456613735130497,5.987465398074073e-7],[0.2238424480395197,0.3104519756328603,0.8865283728163129,0.7973400720170077,0.0025985700059784345,0.7809073822219617,0.0005572562318611808,0.00545707872577453,0.3015270179053706,0.002218347350865535,0.08600501611569975,0.022143447188153954,0.5736788955149735,0.0011428224949638958,0.03870256353444701,0.015512766263261106,0.8409294499205148,0.3160268784946179,0.7750487956395942,0.0000013130329763202798,0.9080337685018476,0.00007752464227951452,0.000824244178556397,0.7959678717867775,0.2204587717249453,0.0027521675532750636,0.22065716655931458,0.6711248307983735,0.0008264792628360391,0.3335589238573314,0.08027991002061288,0.24889624327144713,4.0857288304136495e-7,0.1300016097522591,0.00008156273413469978,0.8329164088153862,0.000019409985494573943,0.0004041412275268064,3.006843501987879e-8,0.2554616302789474,0.00011835609940800561,0.00004308059917982149,0.3729712191500169,0.0029815625195696352,0.562013439377137,0.04895639464949403,0.00013244652832535648,0.0003131032357952822,0.000003176342573443005,0.000009871447853567138],[0.0229157163396198,0.5898650835813303,0.9077677445348021,0.9713210414928346,0.18229433299292935,0.0001851544637472856,0.20649422234120135,0.7260635457750804,0.1843354563352755,0.06908131653311779,0.3276248172950242,0.3545024313092853,0.005673196815791308,0.02808647793945029,0.0010933448917399787,2.585702788220603e-7,0.44924031501377387,0.0016327507317721644,0.3332864153506688,0.0000020144408482376305,0.8407427859958453,2.587361610553328e-8,0.9109538486062454,0.03042278545928066,0.004586193430167227,0.00001727052393915357,0.016072009520978783,0.8635805866620752,0.31798044763967187,0.4061775445163052,0.44907056128697287,0.1808709309451537,0.000045789011588461356,0.11403716720362932,0.00007225912545747618,0.19103424702941083,0.0058491140903853605,0.0000035008668138847035,0.07292775975776071,0.22424422843760128,0.0000038415581818443525,0.3046277126530397,0.0011116061352534335,0.21910710387629995,0.7907958150537042,0.000005900019753160162,0.00130666426623041,0.5981995696874548,0.000002447699136119608,0.31728917390302525],[0.007606032507433008,0.4497972786637802,0.8592401288396526,0.9859245069769571,0.2675914540190701,0.001793984811751047,0.2889248316498561,0.5178725022057759,0.1377603807436353,0.1421980540359497,0.20030363398421275,0.3108007566758882,0.018400132795449213,0.01722172933674169,0.012871860740711212,0.00000318568859568308,0.7125449975516032,0.0035866315090325065,0.32139828228301426,0.000006195704453654654,0.8524235029994691,0.0000013526238893370659,0.9594771106041206,0.12063816662709044,0.00042029363530994503,0.00005144461128484596,0.0005481756227664472,0.6076368048850529,0.35181330041977255,0.4940772051545567,0.40357171403036446,0.01964117939674659,0.000028812604768949093,0.06330933883300695,0.00009731956208775445,0.16132480190007048,0.012817425196236285,0.00006248127519801413,0.05189224787789682,0.20399374884982016,0.000023615218418209443,0.22092589969851642,0.00014588000834990522,0.32082142282495163,0.7671207982093267,0.00006749254981912272,0.00010787756756968031,0.6976469135175405,0.000004236688204933806,0.32818171506500116],[0.0009537778179565814,0.6104743585435385,0.978663802306081,0.9879427032893026,0.0010843641786633747,0.000032355146257082194,0.2729662571176051,0.4130983185973873,0.00005382323131027759,0.0000888623417151074,0.2693259968552446,0.003048171010041542,0.1433682790961351,0.0002559990553089687,0.05054329361217133,0.2403136756474404,0.8168801206537989,0.024096157087519294,0.00011279434902738846,0.00028679074144011274,0.8733249783228021,0.006498486644240492,0.8580149518075711,0.000001612958323887486,0.007794024511824505,0.00014765851474358733,0.2224303077436662,0.7280112552559855,0.00010700107022219363,0.3894852929250631,0.0017613600633933596,0.0014401438296323661,0.14025314089404423,0.04824740133731199,0.24020728148211054,0.5121324932753766,0.006674725425523315,0.2586453742843346,0.0006373953578679944,0.028138031211265055,0.37967343697520023,0.23057256907479345,0.1257164033825809,0.44578064381553617,0.692442244565485,0.004179377548222459,5.556413274600447e-9,0.7511900215584513,0.004300446035354605,0.00012235600711038073],[0.0005387045932288384,0.8113203394367412,0.9020848898233219,0.9682993452489492,0.0019825957857742826,0.0002941836844257464,0.19629281031334816,0.3774228200421636,0.00011436326711175261,0.00009059815757768014,0.3190563362623791,0.005801510170277873,0.2321109704305131,0.003014864890614567,0.015014240964629316,0.17808175891566047,0.7967498966593244,0.0552238067058952,0.004079135386199397,0.0005288780119008949,0.7700510324391696,0.07236381133281568,0.6949685641454213,0.00023690543651977067,0.0011156711354976907,0.0008269348715236464,0.29351190917992676,0.42985811103287336,0.004022525610807078,0.29486050544306824,0.19742357123495352,0.0038945617610651817,0.1646954073343478,0.004130705355880829,0.16865245459855516,0.6929632648295376,0.08093955809397604,0.11326966281809751,0.004241881136535112,0.0956597642850337,0.3445786824393029,0.2132869016016967,0.16384091675966153,0.3258213727952489,0.8125610165999104,0.07148425984651323,3.3994402299572216e-7,0.7833346126587626,0.006052907354520006,0.001485976503224465],[0.412528194410037,0.5022225943352887,0.89070694176881,0.5078432644599045,0.029192890955779177,0.4643605625211664,0.00035707943334753207,0.6162400355075304,0.2888443548094825,0.1675128624217669,0.015052032870452911,0.020996208899784808,0.6824344299796221,0.013930593239520625,0.13560045240165816,0.08358108613653985,0.013520709981580527,0.4640192973243705,0.7564541997999579,0.025436387716415744,0.7854172709962438,0.012363016172307964,0.011617552538654416,0.012577297038160972,0.010675004105865409,0.5338654757245137,0.003637178316779731,0.6837096134325331,0.03823060339149511,0.6053272045326411,0.3382528425935076,0.4117698425569565,0.0002583050006468672,0.023702228846701836,0.5031682165859174,0.034970164741962136,0.3098416185055101,0.5377114234618086,0.0007829394672307458,0.5534467237360018,0.12395195590413059,0.20158962912298775,0.36783618280926994,0.38877527061382,0.7790456361694876,0.034655711451809144,0.00029081477328261017,0.3794201371119395,0.255922182452728,0.15878180038000847],[0.39815817247968305,0.4082678724578862,0.9303392211402347,0.5725941184318484,0.011359449902682502,0.33391763053598045,0.000003069160716238978,0.48491723924388497,0.6057671428261258,0.4854882965000767,0.0044967019634996235,0.006627896391956918,0.7285835834577984,0.060342572194619505,0.062356206598682504,0.015585351447629398,0.000047208294857860715,0.5904746136256738,0.7487170958020137,0.013737681983940953,0.9396313572482297,0.006101570492131734,0.00005988387449024742,0.001178105269607101,0.005552340182218879,0.6284227057094425,0.0002722592528025331,0.6850151708670024,0.021127802958817735,0.7439575716792152,0.6444160967786252,0.5231779124949469,0.00007364414047349681,0.018976142692323117,0.4178465902110551,0.03068575410045642,0.39489994666884515,0.5492167417140684,0.00010268237300183298,0.4485884732342909,0.255891073246114,0.23768605426915865,0.45026676226098195,0.5550335769157122,0.7101111948210628,0.017999119789972363,0.000017892057987977898,0.2811035565572557,0.4657442854075372,0.17833456046417306],[0.5962355706396157,0.5548754863582397,0.5740163981701446,0.6010133499805115,0.03223569111851766,0.5757674772674868,0.007613121564738283,0.6578109797181123,0.8289174336355836,0.7665718358399282,0.07098360342634523,0.28751584264647895,0.6510457929150963,0.1787627708784254,0.3809756334138458,0.362932266380605,0.0010459022547124718,0.8477560807225152,0.34935152669306535,0.5962797510766625,0.26640502493393015,0.8211916705461396,0.008689718355019275,0.11860106596431612,0.6257390872421149,0.7934943968601784,0.005600244647263049,0.7594812829317611,0.11791889938105386,0.5777013653873218,0.6254240491572142,0.550561104447868,0.14973425646901842,0.4085254273723157,0.8519230665381288,0.009471415087891621,0.9400453368953355,0.7022941778727471,0.04689682527039057,0.720187907782507,0.8493820851759543,0.8841356252046991,0.7404822777840689,0.8038216204622108,0.5794710348100932,0.2383840675233746,0.08769415064209989,0.5731417749717646,0.9073890092513912,0.7312731914904197],[0.2793191464061238,0.7127675225466378,0.30029126620221314,0.5354356248335544,0.8049550663064527,0.40144602939675206,0.1356976773834786,0.6539931036204517,0.30304479593856193,0.43500113716410976,0.0606763781749736,0.531347231956268,0.36973187547314224,0.5909456519265609,0.16432659957612195,0.7019350920000451,0.5717870405018322,0.75864451296745,0.5144336150049448,0.5248541690213786,0.23724567785946063,0.0963254823066619,0.28128515902514023,0.6250419270222521,0.5156086477115158,0.839250667691327,0.7420968533433461,0.27942279138537723,0.3573386178834697,0.31133914043983435,0.2980692726281023,0.7029581827825397,0.6976745692593731,0.6904455850397,0.4086683559596767,0.007533471068089975,0.22053973430997265,0.5886857488781805,0.4281589174738136,0.648408534592021,0.6627371262040008,0.2733850183669386,0.09807452692686339,0.5373975293376183,0.0012276948090490574,0.4238522964393379,0.1314958965193727,0.6818789607296739,0.2019577435392093,0.43574855454424904],[0.8903805549410431,0.5805073026237325,0.43796854314939415,0.3054269747048804,0.7282003882088486,0.8732355789533224,0.0004985303946099021,0.6167310125450953,0.059780565725991976,0.23068522795670143,0.761586756142295,0.41523653302225244,0.4127648761609367,0.8250658675084886,0.008222403607461007,0.45189359296028164,0.6250203722234663,0.08319335074972269,0.05640549108500255,0.8869726764973496,0.00894175642764375,0.0002650972170670834,0.7536346513577493,0.9471520253760809,0.27816074261250984,0.6409686156621301,0.5583681685370356,0.4925874492199403,0.902327522542866,0.8648114763795485,0.0033601938970013617,0.7187247421015064,0.811452485549285,0.8029606909469778,0.9206266189850462,0.01661136286273926,0.8694669091543706,0.7347847452085696,0.6301438437891291,0.8675399985094997,0.7279417861472157,0.5020713153171483,0.09166753665970717,0.3013646256555334,0.0002114425380183906,0.5404115881155217,0.7275431662494776,0.7244744047040867,0.01681282207921745,0.5244620450736236],[0.09286433643937081,0.834993024635928,0.4855610907171821,0.42039842956370754,0.6475775514465248,0.5054783819642521,0.06754035032952324,0.3300995041587785,0.46741789686404644,0.5570431957538214,0.16679068777475006,0.1589350429952242,0.33960405299999746,0.8192006333413492,0.14096627011255483,0.6706738431579364,0.6441329844014055,0.3965510203067642,0.20630599166867544,0.5099515487314117,0.7155971888654001,0.02520608104550767,0.21629509394663543,0.8062736082967592,0.3881883179190743,0.6443198074264641,0.6798955224390563,0.3020527144349286,0.8562066679799009,0.7248525010390691,0.011135975820469131,0.2179196706024198,0.4897078782313583,0.7089108152825864,0.17754175395082988,0.015171751431730964,0.6768420482432902,0.7971293030579746,0.24450129404252124,0.05241797294668283,0.5000294335314729,0.5159194824331403,0.21647301693575266,0.1692734853774265,0.22548670181282435,0.3509335782352282,0.5361401287367665,0.4356558376242266,0.029836768972653884,0.5571121963966164],[0.1976450073596714,0.5734363020454715,0.670271422821192,0.011978731520692513,0.06581523486750489,0.23202240905094113,0.03357631830514628,0.05432255187993869,0.7525653949760767,0.000044458735689117604,0.007926487962796155,0.29001915661819083,0.16100407251546578,0.00860432293848816,0.34818586844688076,0.17992554216217163,0.3393390757880578,0.000060521756403443826,0.5083416506959113,9.361435985671421e-7,0.46058170027419026,0.3227996923823657,0.3061565138155501,0.0009439895786727248,0.000008458183061121472,0.12191278859888094,0.016851334540636514,0.001007353560394139,0.7212965348664188,0.6881711825950158,0.41885489739630183,0.09340909452553327,0.18949398615010282,0.3537918519065712,0.00009546699365020937,0.7764759950748148,0.007234327997554189,0.6988597175767276,0.0037401923788445337,0.9580579146026559,0.0000021188782727959887,0.13384642412659514,0.023371207730298427,0.5436262945527374,0.6410393894081884,0.4308499051105062,0.0002600854300047567,0.8123714405694509,3.0616535581042183e-7,0.1382810161715078],[0.06323397595857867,0.6110214237022156,0.22891087148825628,0.9154055160289158,0.001501358597048182,0.0875220328798527,0.005044622537021564,0.49003262275773163,0.0034416914311969898,0.6867802222098545,0.26488573161003326,2.4021916350084137e-7,0.23366870963885972,0.00011346935433651006,0.5508519100150228,0.572114041480054,0.0042878080706087885,0.28393002644653487,0.21507792024523426,1.282337158166809e-7,0.8325799496135944,0.00001068151370888745,0.5054666303488287,0.17196692261964916,0.0018444076397940783,0.00006193807640634562,0.04685496837327042,0.9793477849293335,0.4542727986910245,0.9391732054775983,0.566318015260823,0.4425775271407746,0.28985977277665165,0.566029169503879,0.000053356710268366314,0.4282455344220742,0.21220800008026636,1.0690057068491563e-7,0.3286067852177779,0.756056366422511,5.012033128798726e-7,0.0035321513218315764,0.25820447399570373,0.4136321897059025,0.06458332794157344,0.28691230337466367,3.3248686201910984e-8,0.13520322167816315,0.15499580442829713,4.882661193819467e-7],[0.0000012392042329864978,0.35510112986551173,0.9013742659463336,0.2333765745054487,0.000006904586394359767,0.8702350191715337,0.3789283233952781,0.29531599669779385,0.6191259706354924,0.000008842969667381845,0.000008815288866400768,0.0020080016926359696,0.28556308959769516,0.07887727562422275,0.47079537073776556,0.0332679281840643,0.7713497722315578,0.3822717430864325,0.826021440480058,0.3653802521082553,0.8896002985637396,2.0408391184950614e-7,0.5935374884258782,0.278865800979102,0.3086378356574418,0.002011305025662019,0.3352238220865224,0.00007990081669074215,0.2883242656413897,0.09244056405975486,0.2644412558305468,0.23906409421114033,1.8736210818842964e-10,0.6078378117714247,0.23680047842628227,0.7175288922596794,0.0016251879192308526,0.08703007678135237,0.0004880404572558068,0.08105484569068522,0.32499319501943397,0.16169929276084385,0.8630693327375916,0.00031218103410762636,0.4603971484382419,0.3154605919612,0.14099985756238778,0.00037669718724651316,0.2888597032123363,0.011011157227483576],[0.001851275686451344,0.7614528178956705,0.04591331564373799,0.07073693898294836,0.0001884014621050994,0.5875408683733524,0.8694595264553004,0.7396231771380234,0.7957969767874583,0.0016363683596089008,0.002155548444188928,0.07350769861527105,0.2603464153992991,0.7243209690995654,0.7592666816794971,0.8451997884637633,0.4521425894920229,0.7673622603048097,0.2582267299772364,0.9655638302833938,0.7104216330148898,0.005959515534917399,0.9107192981887152,0.205442252446188,0.668198123849162,0.17147484761891332,0.9340663614231047,0.002014899900839377,0.8462753789980365,0.27008426005787417,0.571850675957907,0.6441519454357117,0.0007885859255052451,0.6948609594553672,0.871873384289769,0.7820342371622215,0.27258389453701465,0.7695426472217531,0.5660838690184465,0.5051953189019629,0.8871485136672362,0.7922756963618541,0.823164646105392,0.48954370423921767,0.6704297310895123,0.5420686886532212,0.9017593245533503,0.04678917750845298,0.8485118147101673,0.6467562876400818],[0.00007182659794910507,0.8668198438736402,0.10679273053972717,0.1262358526068066,0.000012245599850858157,0.7216661340590266,0.9814833568200407,0.8459231951208737,0.6692247654199276,0.00029153605937499234,0.0008327045240663042,0.09862205843946596,0.5636465889991334,0.8681533768630729,0.7110275957767027,0.9008914625331951,0.49797850433019625,0.6540708878730591,0.7910652979340592,0.9928524998241927,0.5311936977970696,0.0007931630362623199,0.9194090876177652,0.21683710488223523,0.6887927419027927,0.10942561209237284,0.9556787806784148,0.002765340118058398,0.982820369571697,0.5563109034614192,0.6782250549692745,0.6344051747589289,0.00000384086316252323,0.9010385367104707,0.9770801807699661,0.2622837753434673,0.6089896394528758,0.2738730072243618,0.28729449877975266,0.8125521040143517,0.7948224843290249,0.793238440283468,0.5522166612847702,0.25513587099118396,0.4694707161858748,0.5665449780001566,0.9533932333248897,0.18273117519245208,0.8639604422904831,0.9592199797348097],[0.39888686577927646,0.0006214305722225684,0.09687805503640645,0.6363209751140263,0.2513732053368124,0.0006057313295785536,0.00007872573068643782,0.1841784520077723,0.4328319159299054,0.013857593126273125,0.022738415073774682,0.0010842749835846914,0.17632010491890213,0.00013121981097617827,0.7450521771806552,0.5642181224109537,0.4877816173314525,0.028734997101964335,0.0019868079482045766,0.0000018849310487624647,0.8299000740378644,0.0000534651969571045,0.39992232006108447,0.1871644688183994,0.00012800923544369067,0.001075880429797772,0.6450889912800529,0.8271881622963649,0.8016532938280856,0.7401437183586699,0.4882055360951324,0.001085510880680901,0.000058231753135352726,0.014538530606748718,0.3556450459969902,0.8269717446433748,0.5326132717893972,0.0011674325951399308,0.023181227510295842,0.8460648932878501,0.00046521834334197,0.38930105961953093,0.00011347943515034099,0.0002768326268992502,0.7638915484645049,0.0012799748722387603,0.0013392949713939622,0.75704324325527,0.01851921258180542,0.000012807964426499473],[0.33047595421262216,0.000442996401151522,0.8192319363496471,0.8285554987970616,0.5498013551183927,0.0002011838793238699,0.00001034796532813167,0.023691604942578194,0.2478681853486918,0.00023794711159819365,0.02271753665526291,0.0006421348095130331,0.5811786231842663,0.00001408659135398196,0.7219064994806995,0.36564086385991484,0.6861796609585524,0.12094038079870442,0.00020731652030286758,3.47973298494422e-7,0.6681422982345208,0.0000050753097952542755,0.6755892220257473,0.057291102722469366,0.000026662718282438055,0.0007750993528504985,0.42945650025492443,0.8670150777089525,0.7339077675049224,0.8152452068248482,0.4394343657088156,0.00014139106877384183,0.000016540103186611962,0.018523177252549924,0.04938580379754397,0.36331744656728665,0.4891934966368214,0.004971507240333892,0.009472358937275927,0.7279884814420917,0.00004128739529149904,0.41483328846130424,0.000011122028056491105,0.002851243489540559,0.714703372654711,0.0012896780579924056,0.0010644402769261832,0.6167169021974533,0.004486943199287603,0.000012741144522723037],[0.4560220978032371,0.604092745495458,0.23712485088031604,0.00025211877796812196,0.00002945919850256524,0.7149440476256805,0.00000393924771897612,5.152587963314045e-8,0.004375774916958421,0.7208077808388479,0.1071384334281157,0.0005491751427419441,8.670046214778504e-8,0.000030068202038949374,0.11644762159783646,0.007510005343097082,0.7990286784560175,0.14097445105281853,0.9239128979539067,0.00009236312123328162,0.8492038479754962,0.09163447482480318,0.03765466394561463,0.20605262815613581,2.5566675167882457e-7,0.3961301929428893,0.6072228033881262,0.9400777729167962,5.356881786227276e-8,0.5231545119788,0.035912730746430116,0.0003101443499405331,0.5533591622212682,0.4030127463413985,0.000001823430988521435,0.5313795541347723,0.1550628963521608,2.2835033918498154e-11,0.2416645512450333,0.000007000726241841534,1.5316418718009694e-9,0.5679953332062482,0.000003999210342911909,0.44726718965396806,0.7767364099723438,0.4172146271597737,0.006669803903114405,0.4408519667841775,0.000011024146212009786,0.5356466231162859],[0.30984800234091087,0.052110613192338735,0.7440731454750164,0.000030740230279673646,0.00008657264494667636,0.5207117846059861,0.000024972708784182832,3.5954025242740273e-11,0.00032556987796785835,0.2015220452966549,0.35318240169069653,0.004659016099229545,0.000010479329496914014,7.366904702060053e-7,0.06294922302185497,0.0014915126584903442,0.9800061676345525,0.010891582209894978,0.9789149076781907,0.00007122997665820595,0.6993786154487794,0.1617204077740061,0.2772289962980663,0.008147044541900633,6.544515529141857e-8,0.9843526116014214,0.40645624798738994,0.9845779309377742,3.730503889197513e-8,0.281424310448537,0.00416889041384957,6.474759783215046e-7,0.35667014558273713,0.1256951302141043,2.1692472562744717e-8,0.9682770463659799,0.07090821024578665,5.693783507449721e-12,0.4936202743027694,0.0000010186825404241287,7.17086512249456e-8,0.33329276432990323,1.1599600059945545e-8,0.38904777448996697,0.22023486990953925,0.2517926126647979,0.00642394029383205,0.5850507282712109,2.691428725051508e-8,0.6522940761700534],[0.00017986322461312483,0.9256286736859907,0.834717832381707,0.00008990168764560291,0.0000875549947327287,0.2686447433761583,0.0000019795716816023113,0.311284445126478,0.0007687861563922247,0.49292949538069597,0.000999540620449593,0.18741604926871547,2.1853193886133666e-7,0.17219728891276434,0.0010234105769112932,0.018277708731761523,0.7928703232971102,0.000053607044081457875,0.8404115836000473,0.00009281924475853783,0.914479912291056,0.42083036179174066,0.0008723271719891385,0.0007874811057537655,0.007384699921023225,0.4554045735882773,0.6759239609406062,0.9052320104350151,0.17291504978006333,0.014498852420879968,0.7644074635203245,0.6455597477681041,0.6958293638828654,0.01203132325255828,0.0012346912939451323,0.6728648596624947,0.28316576700234997,3.8028240349864165e-11,0.0024602640886162036,0.000023472726148530206,0.000006319508496586137,0.18561674698322064,0.7235408996518236,0.34772255270114466,0.8573557847435084,0.0017070194770736234,0.00012567447210846578,0.03975877237328336,0.4847184071368814,0.5162156067485847],[0.0001337367372911825,0.706998116718999,0.8283666862055237,0.0009699049317760956,0.16520449134201662,0.036825762141497506,0.00542517751681916,0.853505672736984,0.0006152600359827213,0.20886761654359906,0.005771360149561685,0.47344825738214846,0.000016546267375048165,0.19104438281701536,0.0005116582037406665,0.05705677242500099,0.7971736169453091,0.00011650218298325316,0.9625766968320201,0.0017288636296126046,0.8072496687827796,0.4554149601685017,0.10759618039040054,0.000027839449148377828,0.2374019809972972,0.9634738666550038,0.2737738039421321,0.8103583141861128,0.8638224538411319,0.00030671626540655574,0.5258565521644109,0.3995230436130852,0.8009286702305958,0.006272352181920218,0.5565236297053374,0.9869909560601473,0.8097639372554415,1.1484801247234934e-9,0.07711601321837885,0.0005915566978560683,0.02410377945372763,0.4284671776876431,0.4112825955255711,0.6236226480840579,0.5421142083368214,0.000578521931036069,0.000017151015241392213,0.17322356311378392,0.5738376578852913,0.9816462067420548],[0.0000036203074453843968,0.4739747316734287,0.9452600584764156,0.0006286399653114234,0.000499096439893249,0.258877598795683,0.00002957632029674675,0.1842002231616103,0.0004896326031550884,0.014894377776845082,0.005194137712094248,0.49948472744974687,0.0004602322237144315,0.12137222138554801,0.005644478063440009,0.005519200006860614,0.9396583480171689,4.963108247269746e-7,0.9459329369665197,0.00005465458823482925,0.9026999540340253,0.5020545253968672,0.008422810269502798,0.000002216266582255115,0.017956139497973568,0.9874977570517328,0.5131089383802482,0.9424326369025988,0.279388156402323,0.011372766128413472,0.23604764648763482,0.10037133553354652,0.2699497802090591,0.001154135659158832,0.0010039255697912074,0.9783811933644497,0.25906356158948574,2.5286778278698563e-10,0.0031751208097478985,0.00011708734873425756,0.014422477496412348,0.20382732544899101,0.3754105553425893,0.3233405467525149,0.27348407615384335,0.0006507182391143858,0.0004945053920839184,0.0521355193277171,0.2962887572515745,0.8116821155677142],[0.013030693889851482,0.0019980676325715573,0.4894267713249578,0.7832266437752612,0.00004138882244321669,0.2956012590355115,0.032111394397125216,0.000002394828802328244,0.14982823865074063,0.9887547322537762,0.000021951058477448128,0.7717815141004725,0.6588608426945614,0.6237980144697101,0.8763179078376552,0.7114594399890234,0.7444536080080413,0.000026862315439655453,0.961209206701089,0.000004002046307877449,0.48063037191789926,0.13969215436592905,0.8309048888080319,0.9631498552022795,2.098903587541087e-8,0.15164855609864325,0.2915477691514551,0.713637332515708,0.0000039706357069839,0.00004245637713780028,0.9364752879028467,0.00009196106550890267,0.8144064287031166,0.9601519387373442,0.9931529974621065,0.5002548920152733,0.7466498466821565,0.03610910340949538,0.0021555234279752437,0.8832739415106315,0.20055211237188617,0.07770722685255128,0.2596577866066101,4.7043153943847806e-8,0.9303528698801029,0.040425187137844334,0.9573794698072656,0.7604098805044484,0.8275233806351658,0.6041856675135898],[0.000025606783580102895,0.0008001401896359535,0.870217287491823,0.03289133683205175,1.8061079784620854e-8,0.007554127080230776,0.0052568727817798745,4.7910510439717545e-11,0.0035516290151252866,0.39298094483467805,0.00001196104633798042,0.4552166700137155,0.35348140150670593,0.11717771228396753,0.23927016483908822,0.5222174039803933,0.9691261385325417,7.415896199565943e-9,0.9707298615144271,1.725389767508931e-9,0.6129730677659337,0.5442859737343074,0.7369235879244473,0.21935671674406917,1.3862835733377138e-11,0.9838099031747777,0.6566138149717341,0.9142468574952929,1.3731371626825959e-8,1.3567637632181068e-7,0.4445420839781594,1.5241090615471687e-7,0.7565674929601545,0.43410993278011045,0.21567821276484342,0.9928519097230275,0.4626977381442874,1.171713623252899e-9,0.000021915356319952462,0.17627632200233603,0.00034365103930628457,0.0011454957761766677,0.009451803771852575,3.758104486074889e-9,0.19162333801759587,0.005013904804132054,0.3500202418321705,0.6187357502859491,0.005951797336442092,0.4794679843659342],[0.000055546041856082185,0.0013554896772396783,0.7808415174032695,0.08387806403033646,2.9321029659974854e-7,0.013689012618427077,0.005418039722519993,5.2418867840153155e-9,0.0037247663649725544,0.32914971942303056,0.000042383240337731085,0.20889809280623806,0.3276659908930199,0.07530053880475014,0.3038454023933902,0.37760215192029156,0.9561087192943831,1.5055096849509486e-7,0.9347231592121118,2.9085571668647374e-8,0.4887419099211676,0.5519809612501991,0.6805494550877359,0.1782245132792299,6.067072462628193e-10,0.985922869581031,0.46364532331095987,0.9432863846168914,6.521062442610826e-7,0.0000035465830329860543,0.29152017724470497,9.599408379070028e-7,0.6568426123204781,0.23007037105223158,0.06278787510987341,0.9552054149708477,0.4085150358227286,3.3828961360301387e-9,0.000035961294996237605,0.2078368020696398,0.003415774172968899,0.001672920238224899,0.014838235195585357,2.1254881889398692e-8,0.23531856358220504,0.005701106296115256,0.4637221756646408,0.7584792855747172,0.02078271550289269,0.37561361649921676],[0.001668984312433924,0.16445124625184177,0.5893835817474328,0.13690890568632044,0.0000019892479286379587,0.20326050796801545,0.0008247071656059853,5.089083060948262e-7,0.09072037072846302,0.8166051452738198,0.000014852336253475892,0.08863726086312605,0.005434114670310331,0.31180615622589125,0.30842038013416445,0.4282548450921134,0.6453565387040751,0.00006307109504634398,0.7268335908316075,8.490970516285025e-7,0.38731523181706873,0.17792826094228828,0.3023531093800465,0.5024763286897117,8.446216986802004e-9,0.09665941341567,0.7763651130772934,0.9440069628326342,0.000001505144389350297,0.0001786845030099003,0.625315026733121,0.001336204035109344,0.7899117390062673,0.786803437265567,0.22942631251934886,0.6665049122534483,0.4651930911290854,1.91286157933576e-8,0.0000671068087184461,0.17193164542123243,0.000009228677084606336,0.018998164984036538,0.2130804585095362,1.9214984267755046e-7,0.6121111553449781,0.042094201498901605,0.10180364465276183,0.5357293219065027,0.1668725228078184,0.14123689988295182],[0.000001310134228197145,0.16183910664819903,0.8822646344774638,0.000283136817153593,0.19101659183895284,0.0026077047735552305,0.11685265892990894,0.000004059284386245952,0.009563427651887871,0.00013073081930831015,0.14300305249293088,0.5716345861582226,0.06975393584538225,0.3303411900131439,0.426671241711909,0.060437765167503585,0.9068070430894055,0.19470948728702286,0.9275506833810363,0.00105845981722959,0.9326404075803658,0.1944646182761748,0.3232240078416122,0.0001812152767671689,0.25865175840875676,0.856849432791047,0.41787890734765765,0.9870018554749529,0.14294220742580313,0.052060657236389064,0.000007293496002355825,0.0047982212108974775,0.43659205663001327,0.000016851058209710342,3.682750309606736e-9,0.9735590099943167,0.000041869534104290324,0.0000016292111457464265,0.022236925741987948,0.24550715744111876,0.0017025773672089694,0.26039374069546,0.011742849355886108,0.3574286685132286,0.000015344941377473343,0.0008025535575435251,0.5169824143848306,0.5136399609707376,0.000007147154628714713,0.1124804900929595],[0.01708462980443495,0.7026575892224816,0.14409096621177842,0.13253600713006228,0.7762071627152954,0.02866724500353545,0.5718615955780006,0.049100287770415633,0.20453225077217527,0.1431881953713138,0.013654310167273828,0.6344453280976768,0.34716388259695413,0.7094516125375965,0.4159090729082171,0.10778736188318223,0.2773656829312077,0.5607771985713738,0.15387466090503454,0.413445973976351,0.48416704117892395,0.7118662898556671,0.6131372612410056,0.05740322298292786,0.7892420169979419,0.41175716469331153,0.5162452852856124,0.5207815875231919,0.6032840846193596,0.08287827871043739,0.013033337307525705,0.5187005026780717,0.48034534527876355,0.304990007908167,0.11428775172928533,0.8069595259044073,0.04800711590770311,0.6544476876646209,0.06335595032184065,0.6088172491013386,0.07723657925503151,0.545954843139245,0.23566597540098386,0.3501087608396476,0.3203300620557766,0.048928320279165105,0.7141631203823843,0.745241752842434,0.32313734083872536,0.39491012611944626],[0.2134504288618793,0.3159673662315956,0.6758705221743744,0.0007888386454130206,0.386969307036627,0.000048303454341837266,0.13240015800286814,0.0001900761410293801,0.08474917751926385,1.2164901433037152e-10,0.10757930336503022,8.36521024372318e-7,0.39961846079900065,0.01592048403420586,0.14544767898160055,0.10695723698269488,0.9298080529263548,0.5568521844740464,0.7516175913615624,0.5534763271978472,0.8636882821272996,0.6707926415638853,0.03714844463675337,0.5930248971304283,0.00006333650198421872,0.6787692748435694,0.000005268876408931426,0.6974998614807753,8.474220977079029e-8,5.2179170795773326e-9,0.16062941265258512,0.0504451644162644,0.000005445939906967212,4.792571328296446e-7,0.23583905198131622,0.9062140493651635,0.0018883062455158676,3.682535439068454e-9,0.0032361714478284656,0.18261480947392275,0.0000023727133081651326,0.16564060751442788,0.6337826804439977,0.5260039987622492,0.9458738477925934,0.6171230817048028,0.05828738985560834,0.01222179886884558,0.012008480296519863,0.9464051893743916],[0.06306302237609844,0.17599083638891388,0.6083917895366853,0.002524929544253488,0.20779760630690253,0.0000241388505078494,0.16496028802619475,0.0011585755499615449,0.270824700643922,8.506068279408448e-11,0.19321199248178134,1.4907896241953976e-7,0.19433726795429584,0.06903723180831127,0.2610707414730774,0.14192525988010013,0.9773168405627307,0.6781888134825135,0.8099271531455219,0.6088447655468505,0.5166151652287398,0.7847976365779632,0.1950299253449356,0.5428092849048247,0.00004618660505266229,0.4625089607998336,0.000007482744036483982,0.7329358789369156,2.3272988235534622e-7,9.239040364165062e-9,0.16526181874528928,0.09672947096371612,0.0000012118182526032784,1.112284244531678e-8,0.22994607645771123,0.9584042347834745,0.010549096869297806,2.4441804748550053e-8,0.002105896616425002,0.27768862146262346,5.21673801577559e-7,0.24909795424427902,0.5054815620310731,0.6455912910211302,0.9104267195859944,0.4636109599128704,0.001122636515148788,0.056752945794013465,0.0309434834498301,0.8501021327663334],[1.9897976572049742e-8,0.7026603511060523,0.996273564584151,0.5697592579211991,0.000015712180649321895,0.5577576684643275,3.478213225194875e-7,0.0004084082530712983,1.5942036125613812e-7,2.2628232314912246e-15,0.5182662176336661,0.242967517108003,0.012137411082739056,0.3585685414989803,0.00014754319705935108,7.487832520381898e-10,0.9766081817752283,0.5206501943739814,0.9277978033046055,0.00009934960428705002,0.9663095094825811,0.33736532481469744,0.661212661983044,0.7475578359187283,0.0009773011934378875,0.004752991334369585,1.4749399407397197e-9,0.9066238826165083,3.1437827394387775e-14,3.3430658132385885e-13,0.0000041432335235140755,9.250079692467706e-8,1.1005754610953816e-8,3.107026371854922e-11,1.952900529659773e-7,0.8188442664651364,1.5777967281074622e-7,6.507135898141765e-12,2.4137836889890326e-10,2.173799751229399e-8,0.03506769851963984,1.8917272314250323e-8,0.5241487353924619,0.3073045586454241,0.9271435684618234,0.23361609227127286,0.3200966058419694,0.3221643440692897,8.019557534516607e-7,0.01946013222231616],[0.000007005945663903297,0.6553109861269504,0.9557506669154988,0.49839494629789394,0.00006147208287333528,0.21708344888384298,0.0005125267438786004,0.0003438035028349224,0.000021851390455736548,2.6346773459363477e-10,0.9502150191859778,0.30311032861253373,0.030406311755170796,0.3916097335449635,0.003584969812010664,0.0000029589885931496343,0.9617503123706399,0.04868323092646861,0.9589083866405074,0.003153659902866217,0.7243868451131972,0.8314371646268807,0.9335419961320053,0.27513811503373864,0.0016785236880485419,0.6490936970153935,0.0000031079205167800134,0.8422153523147135,1.0943837240978131e-10,1.5397476937444078e-8,0.00020682753387821267,0.0000041248286484187905,0.0033046122992739396,4.120199226641956e-8,0.0000033453493846457516,0.4366147753277873,0.0008947756260968939,7.22538903052913e-11,0.000017684373825119716,0.0000015027772850750644,0.30852062313520623,0.0013113064622202548,0.19089344529161634,0.21053699404858692,0.5399145472616119,0.24148600435745027,0.9385221349528882,0.8611748791438073,0.00008157713628660657,0.9339690097397855],[0.00011325158135189696,0.8164150210886815,0.7228688215921397,0.4890744230576462,0.0021064978374669484,0.4457602751478837,0.005781162486076253,0.022723525151312728,0.00008490979879724578,3.1924137783104595e-7,0.9442306856806367,0.964478317921242,0.038569879781090305,0.9198677557705495,0.010236464102082786,0.000008749489726009879,0.9582726021956076,0.09897026047297232,0.7348004653314668,0.012726409546764142,0.6052806064445767,0.9770273943470447,0.6318708123298485,0.338123897001461,0.013212755701016788,0.7145494371100338,0.00007564069079789312,0.7523263560113691,6.859786498677523e-9,0.0000022149986622949487,0.0013151374607639093,0.000023355999820860255,0.15365512171977916,0.0000018689268783683769,0.0004250495819551572,0.47686214022605755,0.002815705327853364,1.0323293117624184e-7,0.0001932738740620393,0.0001760526543334546,0.8133711627630513,0.0002059144578406284,0.4418840201944598,0.34910388758483446,0.6113285044387209,0.4540355542262816,0.9730889405984048,0.9562375816632298,0.0006228167314060269,0.7172909284546738],[0.00424754176369272,0.7024860788182316,0.5987513531762358,0.5483470679344118,0.0015708989429664639,0.191842002397072,0.00016191120449701615,0.00010249576882168123,0.000015530916145349584,9.192530911608955e-12,0.6366249184533859,0.14582668309375563,0.07078970593779181,0.49725483226590605,0.0009601564990169951,0.000001688031929714603,0.963564679625008,0.057793186895091914,0.1686858873313386,0.9834676913538953,0.4346631485745797,0.7834953174210996,0.5178932846045914,0.6040521020782296,0.0005247868596392469,0.09487183485006483,1.0858990989232127e-7,0.40093862977037154,2.24651045091525e-11,9.093527369751088e-11,0.20307600769063588,0.0000074431765003943015,0.000008926971894562087,1.1798151144472322e-9,0.000011078866959428775,0.9781327196405406,0.00013015670460522346,1.603052612413641e-10,0.00000963572270635599,0.00020448835204285164,0.002799646406319863,0.13287956822201824,0.8719473659858397,0.9739233682302265,0.9276334303535358,0.6666670081028223,0.4250975127715841,0.6530569594415226,0.003643747276451186,0.997312260147332],[0.6522963752730618,0.7964328467494456,0.33907003165321287,0.00033302676422115976,0.5611741231185299,0.16576827123355767,0.000008971770825382764,0.6709915641717245,0.0005960613086003305,6.637395946717617e-8,0.3096853534100191,0.002233495548141607,0.9124595689821187,0.003609601160718303,0.0008850631153926465,0.5159321233190225,0.8248001562817772,0.8882738635694524,0.6197909547875909,0.8765624925042587,0.3009860741460849,0.0069992422332947335,0.06669279844514019,0.004237923073117636,0.3186953123789905,0.011340540634445086,0.00003065243467029247,0.3614107079038437,0.04826571117671612,0.009859662099736185,0.7301143288061231,0.009031045422478984,0.00983882784475365,0.00011071927721028842,0.05345703964968843,0.8471777444798492,0.00003218298745965559,1.6432829091246628e-7,0.2797663598072953,0.6552715640789976,0.004659365659229521,0.3033658055555586,0.18323664342245644,0.6247829267043107,0.5493786835766041,0.0009693289349312962,0.4511722989623426,0.4792502331295161,0.32584323853267205,0.6440785808503338],[0.9327662011372209,0.7665008740474754,0.004252277506654163,0.00009076487608214173,0.7867513573041331,0.6124935717705073,8.937920363809931e-7,0.6148041656802383,0.0009535757825736246,0.0013293185584495673,0.5698181224696296,0.062140671886957086,0.8808958547169777,0.00015767780457118032,0.0007297575427265317,0.9831470177601828,0.7732538994279263,0.37689639380364276,0.5489234262784922,0.7982159802253932,0.1183543809097978,0.0005890053313484299,0.0013593481728603981,0.000012496304877930927,0.3681040343532325,0.003113993567339456,0.004640410145978156,0.1557086227564191,0.9443544277074144,0.8876606620919236,0.9546346327935693,0.10676700681394757,0.38694539627614655,0.023611372489198798,0.656186110029958,0.9294473379386254,0.000022308166128404043,0.000006376876962181342,0.6126700473841018,0.9957015433007679,0.11779845074737837,0.7430861438668147,0.08739598032583867,0.7378092582327967,0.7585744300169229,0.0005129069311394521,0.22478168457276831,0.3826561116388167,0.7934767932380897,0.12916771479476968],[0.694796922522683,0.5471828188570061,0.02794592913639055,0.00014219741792080958,0.4942253623821042,0.5227811357535599,1.2597029256684163e-7,0.2664186849814035,0.0004846146025824319,7.847368580547963e-8,0.8547306154039864,0.0051477651302145695,0.8800574749806521,0.0010167231258299584,0.00004718554219607331,0.9486163104939379,0.8162886633735281,0.8458673543560057,0.7092363545677737,0.8518772448447391,0.3792529843592292,0.0011429031013930875,0.014050697044888205,0.00023557143482096313,0.33800098318835514,0.0005503717400966412,0.000017735433981828483,0.38492105702427837,0.22665061327402977,0.02655238098485775,0.18851927974544014,0.027636388294076858,0.08757180638536363,0.000030518984385846736,0.07063411834104581,0.9723868334193905,0.000004067316012549148,4.06324153050733e-8,0.2821374563730281,0.9646843977185939,0.033603095643577434,0.6531087882327187,0.1314900647328144,0.9434890447743096,0.934422079540222,0.0004728221956882532,0.8591948792419487,0.37548394775624694,0.4121695060693682,0.3165052234454285],[0.6778997887303438,0.12374409113184802,0.0022482084527611725,0.8449834385528693,0.0015493508066697409,0.028632378715953487,0.6884877369035078,0.3356608686133756,0.4985592779510362,0.7418610252393697,0.08649975629164744,0.599982596416419,0.6223028015882655,0.6469866371346231,0.727206838812245,0.7516784003887738,0.5012089171495763,0.012507925002812196,0.0015024003589056013,0.6708461638420313,0.33032861172590716,0.009674432367861766,0.00013491680356119098,0.3230261980339109,0.1482386185311226,0.5914194084082041,0.5995125197006421,0.7724382137458529,0.00024539467839621964,0.7017479615469219,0.8871102103716492,0.47949224930172335,0.3602676511307025,0.24673566696616842,0.0028558789202386653,0.5968230662337544,0.7442091110884843,0.4971810536347957,0.002979968315716627,0.7888847526108169,0.0006713194968075486,0.12489369079269315,0.015509979733591228,0.507448707489954,0.42198902154796253,0.6674696677054962,0.6941622095555274,0.6499095219786949,0.3090864310548719,0.5722353548903376],[0.9364765835768736,0.04607011300022428,2.2107123373198248e-7,0.6359714430277285,1.2576516693623282e-8,0.09277936405572401,0.5085487678466408,2.832605388410154e-7,0.3763151879756425,0.39780396644685134,0.23002551916640554,0.07019855336487922,0.7968209721570655,0.13761274892490696,0.0019616304397386615,0.9306708436673053,0.670566718858139,0.0000246650220216869,0.0000011949059549514113,0.2237056276593603,0.8730951423807258,0.00025999318292902103,6.287597933981039e-8,0.004018014941742284,0.0000038457461956271655,0.4586841362054021,0.48883669781291994,0.5613924384012167,0.0000026150386398218465,0.18651044906700676,0.8325252328184753,0.4607232508059317,0.019194332500968476,0.0005554047557092791,8.876185225315465e-8,0.8811320634217468,0.017170528611830365,0.02800164368277134,0.00004675775502976769,0.9556398406776832,2.4269003255806102e-11,0.24588737566896768,0.7392146415740939,0.751313510232248,0.4664128108468029,0.8138917121749429,0.5336244865659698,0.4309435226250446,0.003382288840438352,0.006315673900318532],[0.5425870052571499,0.034351036219266384,0.0002153714387308461,0.387962902900089,0.0020966118713187883,0.6095431787520843,0.00016261105802067405,4.983389499813405e-10,0.283850988736242,0.002375173506295441,0.0000044751590279803895,0.0000025738700468612165,0.6768775012344518,4.357445898370733e-7,0.000004209876249629292,0.4724144950760874,0.2136367720852815,4.915332550556856e-10,0.33536177465839995,1.0260587457998906e-8,0.9469578588330623,0.0000030335180886383636,0.5418393619888477,0.000005582275439625327,2.119838145960212e-9,0.834102977537376,0.000009909609464111212,0.39061302631068995,0.022270586078067558,0.8246181690744401,0.08911616354289804,0.04233271029221661,1.278001476101866e-9,0.1333818723725668,0.10924546335361161,0.9114369028663893,0.0000037512013898372925,0.7875349911374631,0.055707665711125474,0.8558654555972903,0.000005207113104920305,0.2741682215644252,0.535773156500468,0.3322529960895653,0.7933135691716077,0.000010177251266468233,0.02284444345394698,0.5791476620297966,0.0027381255728792363,3.7925028547221757e-7],[0.5881701728372417,0.05488988147111533,0.019513576988482658,0.40752120626658733,0.6619484240190818,0.8668907679158889,0.000004190845553694238,0.0028098861612232125,0.5202778439300139,0.4528697363572447,0.00003801319342791348,0.011107235364233626,0.20707437148220492,0.000011537853737743464,0.12555671569473364,0.0025396986136725142,0.5986338307428983,0.00004565882389198715,0.8441288928814317,0.003361574466939023,0.7093413284820258,0.4895384639164516,0.8955229249587825,0.1299631462023677,0.0000022832685770156037,0.7588350377522016,0.00013352870263570372,0.5258136659049601,0.00002265876893112961,0.8602858266307976,0.4953253805840533,0.49076585298533393,0.00001541140745962053,0.8983513908511388,0.025012719007854702,0.396434265973788,0.0002222683263294425,0.2817224133651424,0.6937206471882912,0.0842500884749198,0.4170175789572935,0.6407789869571756,0.024898149353010365,0.006702948687545686,0.7506925730860009,0.00008726838273739125,0.8806541496236481,0.1604747928937516,0.5036791020019128,0.0002475928312818462],[0.0000764281984421495,0.00023805661039667865,0.9720485081870692,0.6544991929259004,0.2880596243322193,0.8369867857275057,3.835655189506129e-8,0.09043468638818566,0.011703714402786551,0.00011493407176001126,0.00012444582263110944,0.3231985404331687,0.43951081376977497,0.0000018686937702375947,0.36583318552044136,0.000006624384580886445,0.8949914602341253,0.000021856508214478048,0.8686018966976113,0.001767331562228626,0.8356102651773698,0.3042628239956875,0.30726094199756365,0.706024077464387,0.0000010467463172112389,0.03069953789059351,0.008292621995412617,0.5532242070042139,9.49220901812933e-9,0.2092285663740357,0.4256618816038702,0.4317363766393656,2.6213558493490494e-9,0.42009509939082595,0.000002373019439140867,0.9134083141544155,0.0000018504205642137627,0.10909119416243095,0.0000013062809417103387,0.05018186811578884,0.35095331753809506,0.0032542118016457965,0.44640651031194223,0.0018715915328354176,0.6641133069888162,0.000005254925273131069,0.297930973143643,0.0000040686873888960136,0.0000023218907176233373,0.000008156836374723879],[0.006701949674845551,0.9186568938139651,0.7997658952961866,0.9448016243921966,0.0000020806886557316174,0.8247553072198903,0.1432029858894063,0.00022802122745939392,0.0651286073663217,0.4902661062908478,0.7395928545447014,0.05573240341830314,0.7987483090619819,0.00015301392016510583,0.00011368266648110404,0.002692555947763129,0.963901630199322,0.00012868708250520582,0.8493493259896617,0.19010515857936658,0.8897557091739385,0.8368293907030501,0.839569830675489,0.37525872622885,0.017044991818577236,0.33544663285628185,0.07107846998999376,0.053895388472429466,0.047944983613374216,0.3135006745198595,0.05956198134918595,0.08958343839133179,0.4748892588462796,0.18250473365638226,0.0001457133141689091,0.000002846348586728755,0.05309633029673604,0.03909146672776241,0.000016793839978862985,0.34577379053284585,0.9768786305023839,0.22851712051648723,0.018560471953424428,0.1706892123750268,0.09932881550832906,0.023273227516348145,0.973484342950888,0.8531314522935307,0.05288154853454943,0.013051613962690771],[0.028293649413813484,0.9766452589819244,0.6159626714901849,0.988279337438816,0.000021439170145365654,0.9075266822041839,0.7685251821884144,0.006982374346978421,0.2013987836268242,0.5728981288443639,0.6778082096953787,0.009404705689958631,0.27576793328697796,0.0009094557609568337,0.000002270240790269134,0.0003380063849303972,0.8047964752761646,0.0011752193759472416,0.8645616652098211,0.8377779337519409,0.7547708267872758,0.9262229118602338,0.9658579038663866,0.7854760980000439,0.48466690737260815,0.048433890980842956,0.03284372955000157,0.00006919683065233985,0.8234018319234669,0.28097263269504436,0.10498579383502063,0.23734173446592668,0.9012007662568323,0.6042149536484029,0.42286420086377563,5.653377351340456e-8,0.25790947082569526,0.7243840925715298,0.00006826864925057434,0.8207059550494331,0.9888604082093663,0.5822328289051047,0.16175364802514589,0.8911984682776994,0.36810558426077067,0.06930183103908613,0.9512884532461882,0.917919961883446,0.5239230183863383,0.0697893742057518]],[[1.4806736666309564e-8,2.1920676646339625e-7,1.0927345151902935e-10,7.3387224007709146e-9,6.556109699169158e-9,3.53844646728987e-10,2.3946980982702613e-9,8.050353015443053e-10,6.384492233835215e-8,5.9029067877478165e-9,3.030745028057903e-8,0.000001084169801173809,2.6631502014805735e-8,0.0000011499919412513804,0.0000021777082120370866,1.4947498346317422e-8,3.031353712496216e-7,4.4148531538911306e-8,7.661864837309677e-8,3.186058394593218e-7,2.6670727950470205e-7,0.00007501837535621489,0.000012704995005092217,0.0000911958867212499,1.2297936164448186e-8,0.0000014876018638709966,3.5783440777004434e-7,5.803319461132343e-8,2.2733542892052818e-7,4.765186139266052e-8,0.000004534396255007677,3.551237182110398e-8,3.503558183991438e-7,0.000004241537808763817,1.3141003313884196e-7,0.0000010273375545775496,6.282302698534297e-7,8.180523542875935e-8],[0.0000032650109276936527,0.0000022195204619229183,0.0000035295008432918507,0.000011010712644876658,0.000034932019462698255,8.707555979398895e-7,0.00001563651750652609,0.000017140175659335255,0.000005208253860899185,0.000013189250639162027,0.00002689707833987111,0.00014690923827026758,0.00011083499724945626,0.0001384275603932727,0.00004713573009156035,0.000047927950696052905,0.0000044715148967121016,0.0000019795155187237223,0.000041510850135625797,0.00007806357643827374,0.00009231167830336234,0.000005156178866315207,0.000013997324396914653,0.000018348121747194165,0.8937471970855754,0.00001652681329412844,0.00014248671104175045,0.00007221615533230518,0.000005920342344122811,4.252313434627787e-7,0.000014712770525243725,0.00004617626344580415,0.00005690765019382543,0.000004854528831208139,0.00035402228765915865,0.000005987144120906209,0.0000018904898190668192,0.00021096283048070922],[0.000002707894641035531,0.000002775970570826577,8.852594028140053e-7,0.000019815818295526275,0.00006330210327180079,8.249535408211538e-7,0.000011145793960970849,0.000002855105459180547,0.000008643750840418899,0.000017322250636535504,0.000011203727537530035,0.00035132481952234655,0.00002795937438470843,0.00013771146865002487,0.00002770063825000937,0.000021865202898378842,0.000004946895216129385,3.593832679650746e-7,0.00003233240037041232,0.00008747600173223999,0.000058114209243718936,0.00004228227467487318,0.00006438715473394712,0.000012754269015707089,0.8939784571124176,0.000004730964344265276,0.00008855847996669736,0.000005494604035300536,0.0000015658267518225008,1.3913207411198885e-7,0.000004080485370439887,0.0000063699573374937335,0.00007807227212834722,0.0000022550358042309303,0.00029413433327656074,3.2600358452057127e-7,0.000021547687214781594,0.000060697506862380035],[0.000015095259081571423,0.000016425547480409497,0.000004118607639817538,0.00007972658789213995,0.00002202910465760504,0.0000025768912981315627,0.00002373443795747457,0.00009586639726312221,0.000006611723423208136,0.00010572505528240191,0.000020253817267842384,0.00014961017129086108,0.00002779981731922843,0.00002769418737104769,0.00005444762523528779,0.00015325761255841695,0.000008608744952217798,0.00001614281523591428,0.0000718001162450306,0.00009603588056955702,0.00009871868993941934,0.000002872406219799621,0.00004126006925952949,4.962949983555166e-7,0.8754750018823089,0.00001595428391228447,0.00007430298220174452,0.000749838273618624,0.000005150625290619199,0.00006800512496129787,0.0000036010031015311253,0.00006871552944626201,0.00007301760984678277,0.00005678365354066039,0.00003597400142551853,0.00003441214207090632,0.000007932403938369769,0.0008049636410580341],[2.0750951342035182e-7,4.008805066461589e-7,3.991906963998876e-9,1.4347950860032553e-8,2.9765035202397696e-8,5.506080974816164e-9,1.5489047342614768e-7,2.295803990458731e-8,9.646050622476244e-7,2.595131548406448e-7,0.000002454038738332101,0.000009358894278207453,9.705084956888376e-8,0.000022252213933662817,0.0000018957792833769464,1.983095725632586e-8,0.00001990646950707454,0.000008739243350725827,0.000004928091407352341,0.0000017480584814779632,0.0000011568148220049156,0.00017454500796607205,0.00014436953541214345,0.9176581649802439,7.439040003242719e-7,0.000014320581659980042,0.0000017479508951857542,2.5510974428825895e-7,1.760838336141887e-7,2.103487527711654e-9,2.4421074095929427e-7,2.5986829272427552e-8,0.000002937178303314845,0.000003169474671242227,7.275276047540549e-8,0.00009552624529636943,0.00008684491296337672,0.000001082604070250791],[6.599954493614e-8,0.000004375231834672965,1.3267723878285368e-9,5.613881444123888e-8,5.970970334572833e-8,4.035831878365396e-9,2.2369182877954598e-8,1.5614984599237134e-8,8.532912477260277e-8,2.7313648659148363e-8,5.404296696658224e-7,0.000004248619084574791,1.7409123660711987e-8,0.000030139292137759734,0.0000027892793863540192,8.859251660682413e-8,5.697626777021916e-7,3.582997065685282e-7,2.553649487725028e-7,0.00013530828991034703,0.00005265765216418484,0.00010265636859758209,0.00003910100506972101,0.9141813375296964,3.078429571413443e-7,0.00000441389289172273,0.00008224549395585212,8.889841223999645e-8,1.3189185731713386e-7,1.8939160475129744e-7,0.000003869975700556074,5.104451670653001e-8,0.0000023039378874943534,0.000004933389543442579,0.00014546752576015382,0.000020048171719340202,0.000009100893306705784,7.388299083715365e-9],[1.7042284225844344e-7,0.0000025045325018885155,8.16219434343172e-10,6.775537901180809e-8,2.5635630159681685e-8,2.9326850890055324e-9,4.78141808094316e-8,7.116151632985183e-9,1.5350682953079573e-7,5.1413397549876626e-8,0.0000023799031512893883,0.000003695421188378978,6.385262680087353e-9,0.000034509573630780366,0.0000045866225935395985,1.0156632321259309e-7,1.1806512158849499e-9,5.982530693257868e-10,0.00002118991501208427,0.000005483769704440966,5.220129743561533e-7,0.00043723107025380115,0.0003284068916950389,0.9014355148086074,0.0000011673902807669703,0.0000011920011811920003,0.000012004197712287012,6.012516591841077e-9,6.277162064912174e-8,2.179210990484151e-8,3.7663994136320684e-7,0.0000010773227592914171,8.845320997762946e-7,0.00027514322798935514,0.000002944242685199942,3.334518568945973e-7,0.00006306920745512133,7.830321499679878e-8],[4.1760403858719396e-7,0.0000044547035003755535,1.3857970672795531e-8,1.0727298405252228e-7,3.0410001365637237e-7,1.6277947192110551e-9,1.0832865256891538e-7,7.886854132677363e-8,0.0000015346151058345152,8.892878132585093e-7,2.1946487855144327e-7,0.000019269371488662943,2.8208846502137485e-8,0.00007639583375326356,0.00003970871192547335,6.527018687463426e-8,0.00002597488783587595,0.000007795370917380141,8.794202208165132e-7,0.00009223841219562124,0.00000462324497862698,0.000028949654958688172,0.000025455353203922564,0.9305713729857079,0.0000066013986140917644,0.0000036949358556058858,0.000006296510939786151,0.0000018195137188164772,0.000004715635240551861,3.78145696125947e-8,1.5031727676345698e-7,5.314021068447479e-9,0.0000012430281724834217,0.000008544471757841692,1.5851484983722872e-7,0.000006007669553138119,0.000007811997884213971,0.0000050497059470261265],[6.929211695010443e-7,4.317521462100166e-7,3.223024807973838e-7,4.958099345142454e-7,0.0000010028850111309283,6.266014158822902e-7,4.487190373271151e-7,4.6956701076947596e-7,0.000003747519315336781,0.000005248037899620707,0.000002949505664893608,0.00006613686421488789,0.00014203539398395567,0.000002482703975196735,0.000001096434759732564,0.00007038794264840178,0.00009047285164924243,0.000006147202272967889,0.000004042748939887456,0.000045532025690861856,2.598014127895222e-7,0.000025575442261918014,0.00011882699616162692,0.00016166220606274496,8.830240440522554e-7,0.9084936610132587,1.3683004399921193e-7,0.0000023656523407169393,0.0000015480602901111976,7.143678833256121e-8,0.000008226245447556696,2.845706271244141e-7,0.000021221688335241408,0.00003587324110027098,0.0000011976616173777887,0.00007457514113375602,0.00004960199474328013,0.000015091671663419022],[3.406165091484099e-7,1.9670847446850347e-7,8.933708156405385e-8,9.204974863129419e-8,6.002638708785353e-7,5.170647989897673e-8,1.2975400014986912e-7,1.0630655945807719e-7,0.000002163543241129578,0.000002611401675283314,7.791554837611905e-7,0.00023297391822535868,0.00007348450216395562,0.000001895836242285224,0.00000102599518782186,0.00001533706640680769,0.0000469558473737019,2.7130316711081393e-7,0.0000015915162782944531,0.000013520600688016452,1.0516138112410125e-7,0.00008135342540927827,0.000050645969205711815,0.00004445069847871894,5.180792760796121e-7,0.909099882445833,1.1344293602843111e-7,0.000009122767749878934,0.000006043773971305893,4.539158865757244e-8,0.0000068053760544399665,1.6566539389215438e-7,0.00009879611954932309,0.00004152001822736744,0.00000520189976489626,0.000051324432097514865,0.000021576246949585145,0.000005681364955727804],[0.000002315217624471712,0.000006675189435246101,7.068054906438238e-8,3.471718286206815e-7,0.00001635692274543493,6.076061878867756e-7,0.0000017486955107434613,0.000006302311699006604,1.0515558845170928e-7,0.000006336566254681318,0.0000012694885479173847,0.000013709647663502448,0.000009724284744367911,0.8672883763190403,3.6301473579441424e-7,4.467329869659903e-7,1.5504655397762956e-7,0.000004880312333375232,0.000015318972079278364,0.000036465575647627314,0.0007380903361314309,0.000007627471055561242,0.0000068328617545824455,0.00009019849595664269,0.0002257181619214419,0.0000012670404788377395,0.00030726863674166176,0.000031789020987943,0.0000029062286561754303,2.7473041272358693e-7,0.00005542886208327217,0.000016341929680507093,0.000007302803978573868,3.8840030336327904e-7,0.00023791092747085758,2.40340284464477e-7,0.000023469778314637022,0.00003563446953147041],[0.000014192287123949078,0.0000056815460237497075,8.350421731131163e-7,0.0000022729881796538083,0.0000071706350187805165,0.000002636217086034947,0.00000465969432269265,0.00005396414856838522,0.000013679871327069809,0.000057069736540129016,0.0000024107166722592175,0.00004118185319595223,0.00000622066741519937,0.9053085792022243,0.000019387598592401648,0.0000019062324402716416,0.000007182372147393362,0.000024931906218976547,0.000122594937611588,0.000004145115067911444,0.00014064049194670753,0.000028340303349931786,0.000029072366325354384,0.00018146849306848234,0.000036225765709092336,0.000022607023750671957,0.00006615673592323851,0.00009203705553084987,0.000027393670843386938,0.000007716811211112278,0.00003745147247361615,0.000046541474769070304,0.00003055088651526041,0.000019832431507773248,0.00010404691483703342,0.000009322927034364007,0.00007380235651289338,0.00013509703426048799],[0.000016107010784250758,0.000049633955348090415,0.0000032922195995079437,0.000015018580474562109,0.00007320320745228493,0.000009901544451802396,0.000005804004427927521,0.000008618990296643685,8.241870279425482e-7,0.000006389705713304912,0.000023040815064055104,0.000014383540608638258,0.00005571948021357597,0.0010610957566653675,5.616506141523346e-7,0.00012615675820363745,0.000005129645683226635,0.00011030862268907323,0.000015874928492714423,0.00005639711083662719,0.8674088438198245,0.00002004811706003757,0.0000198767417512428,0.0001204370164324092,0.0003290896242139524,0.0000016849285163980875,0.00023825171054168642,0.00018392841745601778,0.00004273036652534152,0.000008284164141455623,0.000056383017849812596,0.00003501555193643777,0.0002112081411872994,0.00001361075413907812,0.0005258955524729069,0.000010352633915141469,0.000035282094582377654,0.0001983835342936717],[0.000001411475674488114,0.000002298258916745828,5.580245915675705e-8,9.874755144588074e-7,0.000004967071153547569,1.278353173125571e-7,0.000005486283822412601,8.434429025598421e-7,0.0000015474931810481974,6.015184511988762e-7,0.0000010522254654953804,0.0000029905433576252827,0.000027408930319431517,0.000006353826609839402,0.000015496232720115136,0.000025277511967260553,0.00039250041150673553,1.1808611078706403e-7,0.0001032410113075846,1.4357266542914634e-7,0.00004301718644813781,0.9237671231364711,0.000035496356705242153,0.00007569061666933906,0.000030636136065333835,0.000022255800522007728,0.0000030136922532289935,2.438254283944965e-7,0.00004116931715352891,5.649009063224652e-8,0.00004128027810192645,0.0000028277223836302912,0.000028919412699931692,4.513697043156233e-7,0.0001235284511846144,7.777840733594382e-7,0.000011125307907885296,0.0000026905254662180785],[0.00000310238830736259,0.000006906493680451287,2.3184153620383253e-8,7.354307707167652e-7,0.000023939652940552645,2.8136325437436746e-7,0.000008530844241956833,3.5483208245461364e-7,0.0000052647447207936895,7.157839458304332e-7,0.00000194011774353359,0.000009391098125147234,0.000011150021047419084,0.00001835348143920328,0.00016789930488775746,0.00005369572311782558,0.00047320746352977843,0.0000022502580520945545,0.00004880150137611115,1.7411204674617636e-7,0.000025737457144184843,0.921311487296741,0.000014773277828553656,0.000008383824492618323,4.4940985024149474e-7,0.00008008874535369465,2.838251071493074e-7,0.000013320018633385653,0.00006240703712994474,7.929621114200781e-8,0.00026344160675011456,0.0000017611389079794974,0.000014578633305258936,0.0000011686361659009628,0.00008712708496755981,0.00001734131723420528,0.0000039415804964756895,0.00002807014477157779],[1.1902843997846642e-7,0.0000033145761830100417,5.157641244309854e-10,6.3788283126701085e-9,2.874357776105917e-8,7.562711806581268e-9,7.760065372535359e-8,3.0292470473468764e-9,9.539787996679957e-8,4.259076187471866e-9,0.0000018962178120220446,0.0000014789795733726198,6.342917205230707e-9,0.000001755901932086651,0.0000014594177680570274,4.48869376766261e-7,1.523185653639939e-8,7.391433581442811e-10,0.0000021328369786401814,7.117070703473925e-8,2.6934862172935496e-7,0.919477533296375,0.00040912890484257525,0.0004360826537640077,1.2366757368680172e-7,0.0000047917418634848,1.0514305716328679e-7,3.335543630323991e-8,1.6823183905335697e-8,2.2243393247978926e-8,0.0000029973415007515544,6.606509912323096e-8,5.150253490546853e-7,0.00005948333614339375,0.000017237027108493497,0.000005500516112099435,0.000009498810846951981,3.8350268899544194e-8],[2.8391186894950517e-8,2.2707946502969333e-7,9.402375248530707e-11,3.509646487493691e-10,3.546831742248241e-8,1.1184760568752302e-9,4.527656721517972e-9,2.30590609041641e-10,1.1994305881068494e-8,2.9767354401310343e-9,5.968060330344925e-8,0.0000010901252913394157,7.697153269848472e-10,0.000004403748543061936,0.0000018249335451916754,3.2958635800549966e-8,1.4242693409117755e-7,1.1865923599879863e-8,1.7498521612023497e-7,6.125161325684585e-7,4.991902771404606e-8,0.9258109415715328,0.000019854375764786786,0.0001436538519804237,4.358372259102159e-9,0.000005317765469207858,3.198980228294347e-7,2.6183407830115227e-9,0.0000017109580724552874,4.6288148390734745e-9,0.0000012510382055081304,9.453518053994517e-9,2.7701628365358755e-7,7.512626410412056e-7,1.0519999199060213e-7,7.677999697639997e-8,0.00001340019347375889,5.462070706791536e-8],[8.077151495961197e-7,0.000008149367742254179,4.899576053242638e-7,0.000003969505195863757,0.0000207612006531393,0.0000017255444910110055,0.00010342647090026019,0.000009784688785895705,0.000006564310023983156,0.00001278102695477564,0.0000029903727679206916,0.000009754986098246229,0.00004950266875186018,0.00006179696390129112,0.00009961441460947427,0.00005694506135320686,0.0004024416096445586,9.638886322070998e-7,0.00011103699109876874,4.35559563670234e-7,0.000012890883812250008,0.9101680035785639,0.000013290983339137195,0.00004856980942302968,0.000010677283795338537,0.00007659240274984851,0.000005570527310374985,0.0000027019477177929487,0.000051738837011514554,1.132210741697135e-7,0.00019753274104310125,0.00003250769231788839,0.0000850107001240096,0.000009740640782080361,0.00013143694909068334,0.00012763949325482457,0.000007086413999528505,0.000021924407579373493],[0.0000023643741929936494,0.000001861345675833061,4.3483167865115847e-8,0.0000013054158294432368,0.000007455820148125834,0.000002570098016393017,0.000015119268426402798,0.0000016718267191046042,0.000004447538580819295,0.0000020368521869039264,6.699904204268749e-7,0.000011570741345661096,0.00003549567013682551,0.000031672459931198044,0.00008101428393262686,0.000004881831673553172,0.0005897837892061154,0.0000012243223037593373,0.00010046786290483407,5.517387752176551e-7,0.000020831905008247428,0.9133393179878494,0.0000016783337230859782,0.000012713175806054825,0.0000030553977631737934,0.000027517928976380892,0.00001064516373176654,9.726718150670255e-7,0.000028603184969505252,1.0176639815878752e-7,0.0001828530360111004,0.000008631935486390196,0.00007654546139934537,5.366104473045213e-7,0.00001861519613304176,0.000009633710048896167,0.0000012101330477809042,0.00001076669002755404],[3.6693957575219876e-9,1.2046318462306366e-7,4.5676869750381253e-10,3.33258372375257e-8,6.721912232192287e-8,2.966444136429785e-9,2.832516683303631e-8,5.260488824103905e-9,3.309081308898544e-7,2.7681939395989683e-9,2.1121139123012563e-7,0.0000011278324073968777,2.2563323715490658e-8,2.68239454556433e-7,0.000045729227911392465,1.1585742303036203e-7,1.6129262306125003e-7,6.552331564356453e-9,2.3931825177328365e-7,0.0000012960237469988218,5.227380158887975e-7,0.9408153603460544,0.000004735248468052815,0.00003978346429053135,0.00001219372042383815,5.763930615729201e-7,0.000007524969149770831,9.388865418876615e-9,3.651131709342715e-7,2.3412238387990993e-8,0.000003384621706203003,2.050205140107431e-7,0.000003812290487310759,0.0000012384147289365306,0.0000019116526647060838,1.574801397199176e-7,1.689013290959607e-7,2.3940434000905167e-7],[2.6826116878767626e-7,0.0000014362906044694482,2.1431989338137768e-7,0.0000010842921073699728,0.0000033026036138916375,2.952516955668077e-7,0.000009097511081007957,2.466467124163191e-7,0.0000020464702217146875,0.0000023258262242731394,1.0600585800524499e-7,5.109321450816351e-7,0.00016821926644185997,0.000003055485936113458,0.000013782514321433608,0.00000698659535942465,0.8918024810516119,0.000008455612209854593,9.730947109902242e-7,0.0000023672355433282704,0.000003866897167552636,0.0004998349401941218,0.000003693648862921712,0.0000014622008520184603,0.0000056045157418238205,0.000037530373803389604,7.299860671831358e-7,2.072217293459685e-7,0.000032580706738728,9.605409903437863e-8,0.000021203190107313067,4.1809083017847344e-7,0.000024033284164460678,5.430526158506027e-7,9.590003430896994e-7,0.000018446929265199982,0.000005585583082927076,9.292321069526688e-7],[6.553438214480955e-7,5.899464962036874e-7,8.34251869877243e-8,5.901953130766222e-7,0.000002743240190486548,7.796549650038752e-7,0.000022385196470638163,2.0988255713185877e-7,0.000006414680112316855,4.360339028750181e-7,2.9143900918530585e-7,8.120079454038291e-7,0.00027907165433118476,0.0000017494233866726323,0.00007082178184063748,0.000008657345738630352,0.88840703861088,0.000021821470227508464,0.000006927608601322891,9.44444756717003e-7,0.0000047133916712715465,0.0005031433021588456,0.000007814829008826401,3.061973793988384e-7,0.0000018717414508062676,0.000012032479534246688,0.000014813832536340715,5.467486317754422e-7,0.000022810545441110457,6.298871265975213e-8,0.00019379848170056801,0.0000015232856895048642,0.000011968220014203985,6.70649005632855e-7,0.0000010283219149775832,0.000035676659391657245,0.000010005301062387929,0.0000014782825083471162],[1.0655782749771906e-7,6.757622699401039e-7,2.0915925729861556e-8,2.0477898585308953e-7,4.184998046174885e-7,3.139820392611303e-8,6.776009941051136e-7,2.6717529860666324e-9,7.677341893493512e-7,2.5402874844260655e-7,1.8178815123463335e-7,0.00000886284456125156,1.019608185794956e-7,4.6816157265584476e-7,7.738503613737618e-7,2.678494258960286e-7,0.9397754285616701,5.275425083047423e-7,4.299423953866225e-8,0.00000443682590508624,0.00000545498106461516,0.000010246993607997127,0.0001553686660185323,0.000034294887641451404,3.958204577865411e-7,0.000046635076966485245,0.00005467697118358949,8.427508279557668e-7,0.000001346928528508837,2.3077476596176816e-7,0.00002344629973369729,5.994539434036889e-8,0.000035265128582952834,0.000014539102744114141,3.133420873492598e-7,0.00015731097623466784,0.00006378548993069688,0.000006033951702284204],[0.000056132200500937444,0.000025149684463902514,0.0000033552346788146283,0.000023227522889136188,0.000020647268900856884,0.000036293502579336885,0.000016250922555188576,0.00004468892737386266,0.000057171175087991725,0.000031969396188131054,0.00005477106889846133,0.00014953823866682041,0.8927861146463473,0.00004612572074934821,0.00010260296812852902,0.00012315207012861878,0.00015293725849128484,0.0003251121781601342,0.00004616011120369002,0.00003096174520628966,0.000014733554949720613,0.00011597096508653219,0.00009073174862116515,0.000014124528003789334,0.0001155432137032725,0.00029935708441483616,0.00001541756055165828,0.000046392837395177904,0.00004766330870794325,0.00004711197026539629,0.0002700136035844316,0.0001886870729154689,0.0004676364823843887,0.000029264827296597838,0.000016229403072690893,0.00023179587281054527,0.00039991796846483286,0.00002609706122015389],[0.000002864206901913745,0.0000025894691090281948,0.000003734753926758183,0.000028162942580450153,0.00002643081370291876,0.000007557858979008286,0.000018496996366425784,0.000004113224984070737,0.000010710137064728886,0.00003209290645758849,0.00001952545904053956,0.00003067591706145659,0.8811762773161663,0.000018388907087832775,0.00009444049377593625,0.000034672036986540156,0.00022498456044635552,0.000059093749641479044,0.000006257261202468795,0.000013977286993758226,0.00001276210487690859,0.00006450682979601521,0.000005062901026755183,0.000007256908102467781,0.000008150594726760142,0.000152262959045223,0.000008400967441307082,0.00001450277993772737,0.00017234893372247888,0.00000594712326868077,0.00015948538103596974,0.0000644947677733602,0.00023143963616105277,0.000015169887232551942,0.00010060409887651756,0.00006897518401753853,0.00011467426479894293,0.000006196900185376968],[0.0000458655785797271,0.000017139378785912328,0.0000011800705486301565,0.000053245072148848605,0.00003820751650936885,0.000009135685200114026,0.00007284267384438963,0.00007785037777334246,0.00003274480435809811,0.00007145428345197094,0.00003783820016118916,0.00003763718177124808,0.8854015980323227,0.000020650507378367355,0.00003418868399225211,0.00020436672009914854,0.00006609021952305017,0.00004031748988339679,0.0000066416000445778686,0.000022443956338191342,0.00016376456736634168,0.000005667218077489141,0.000012375891817453721,0.000034725497472858484,0.00007228220162929114,0.00003639252751792115,0.00003215183533823968,0.00005226459447915507,0.00017393428429075288,0.00022318635920753145,0.00001584095454973469,0.00009788641441494219,0.0005348797016740777,0.0001201054154544852,0.00003197691477003767,0.00008265357966411262,0.0002837306540474712,0.000027750492989297765],[0.000022837263390234257,0.00003999935628520932,0.0000015109926384671412,0.000022609110584992728,0.000013515755237278688,0.000003014229899736489,0.00000413643118080121,0.000036135992451873645,0.000059840872663080154,0.0000605599310277259,0.000009912961415745856,0.0003265450593578492,0.000024566215179640424,0.0001036169926549913,0.000019428683542860952,0.000013118022182774378,0.000011781754503161632,0.0000642202960255503,0.00012919428841595552,0.000009928440238278428,0.00009487591626764914,0.00002876909461526298,0.000005360636434508383,9.91973278277849e-7,0.000601582505531515,0.00007486607760484754,0.000009682243701099976,0.0007885705733394803,0.0000320563154621753,0.00032918992710695427,0.000025565213941702658,0.000007645057020810972,0.000060980520574228705,0.000033835942704891976,0.0000754373857533314,0.00010109808794863576,0.00004466287573554183,0.8727000734416138],[0.00001356243781654115,0.00005197041979855353,0.000014821212715184828,0.00002992691345768954,0.00004320457991672673,0.000002182155070464888,0.000011764970774140546,0.00003884983291162029,0.000019758289504099827,0.0001006433378918645,0.000004115634540237081,0.00012230602697318712,0.000005044765453748484,0.00015458864608174577,0.00002158438860968999,0.00005088110455989519,0.000006378237725046969,0.00014831541895318388,0.00004088638331914834,0.000008377178100946164,0.000052507968100175956,0.000021201032529233595,0.000021080031204827237,8.152997293493286e-7,0.00041358410287280304,0.00011546534456244423,0.000019638273821316384,0.0009711938258057043,0.000012771984745802548,0.00025116682185739024,0.0000061320328495358,0.000040685141193404144,0.00014817512973181837,0.00011326494883857717,0.00013127844630061322,0.00003066632016306192,0.000008724467878514791,0.8730903471782995],[0.00006479421765820882,0.000010844475629308506,0.0000011281307825498856,0.000008008973256363705,0.000050584076269385666,0.000006600941089044191,0.00004102249948160394,0.00004573888085841808,0.00003097551279584701,0.00004098263482346559,0.000046709084541163556,0.00004408203124055094,0.000018426651477084698,0.000040291110301773436,0.000011635925280140843,0.000015721884201818328,0.000002252352063944775,0.000026603760885927377,0.0000308443806883424,0.000050276300904645606,0.00028116916108027114,0.000004073147781370636,0.000029130271019208507,9.845512436862455e-7,0.00025154660015889064,0.00003552263191336322,0.00005224146432280679,0.867473630564936,0.00001225694771742617,0.0006384293013033988,0.000024826561610801408,0.00006579015972016981,0.000021421427130842167,0.00032580473809262024,0.00021669832772263758,0.0000450734741850656,0.0000722376853024092,0.0007592069910804612],[0.00008348902692957959,0.000012620350980660411,0.0000017282726162627168,0.000008285194148304282,0.00007360213216547924,0.0000018691782313398294,0.0000786725770464413,0.00009849926960434992,0.000020657518419011196,0.00006694914927967433,0.000057960906581193655,0.00009989365631554477,0.00009053611014856708,0.00009624240970927598,0.000051837331798996236,0.000023569712390816027,0.000004637568681081613,0.00007229083197730754,0.00004137411611994625,0.00005149329444017487,0.00024153155424806673,0.000002265870240300188,0.00002239332225040444,0.0000018342332636942034,0.0003664162426061045,0.0000688047105890262,0.000007988853549593952,0.8812434282352688,0.000023457795900976746,0.00045234298046684617,0.000022241070142701288,0.00010497987364052071,0.00004916682179690583,0.00013330661423871225,0.00019869340339543433,0.00009174719642892948,0.00006413098056718973,0.0007811706774946266],[0.0000046948343550920646,0.00001049050231885963,0.000002302696340848253,0.000014795498667664856,0.000008372984438570652,0.0000019815106019976733,0.000013087150354461344,0.000023005061071001213,0.0001233266347681484,0.000013226275058909773,0.000001910536034910389,0.00004596368853772971,0.0003053264579276507,0.00000880009887428925,0.0001604137161129734,0.000006142545201623271,0.000020476767097694608,0.0001193429559548906,0.00019761307823148148,0.000001713371903971405,0.00003384692659824902,0.000045843114057389545,0.00004957057897035887,0.00002780656049548313,0.00003370320300146203,0.00007405366399296664,0.0000028597174947608275,0.00011751250275641286,0.00009562263701739712,0.0000011543994464542655,0.000020868229736329038,0.00019000345453192344,0.00002827422431402261,0.00010068318507391436,0.00006057220484530127,0.9017287668383153,0.000028639520668631604,0.00014643532524393502],[0.00000205243691610312,0.000010793374083909704,2.8967580017642716e-7,0.000004429577436860559,0.000003815721294759663,2.5298461410876463e-7,0.000012406408659398677,0.000026435839077877112,0.00002546671725467382,0.00001660462316900684,8.541883178176255e-7,0.00009900426659927413,0.00006690480021722714,0.0000011833351641317041,0.00000912537913069425,0.000011336854882194568,0.00007513490912277965,0.00010150862375577437,0.000007510424165034069,9.4085357739123e-7,0.000015101507453527563,0.00000501563374907848,0.000003440498626769373,0.000028708236112125874,0.00000201630200431545,0.00003788381605721437,8.065278839423428e-7,0.0000415354945266459,0.0001402713278711654,1.4129505956004603e-7,0.00003143030210548906,0.00009199082464182082,0.00003503970038867491,0.00002734214424852423,0.000030207207000757075,0.909836687662646,0.000059681835378908125,0.00003700987595545976],[1.0651320711688223e-7,9.900705165677503e-7,6.444283241851808e-10,5.668399064126921e-9,2.1552238429983808e-8,4.3874970165604807e-10,2.0435209082597008e-7,3.6568759048355864e-9,0.0000028434462400698974,3.64753952950841e-8,1.1439383920074437e-8,0.0000023668194521880885,4.8767017481943785e-8,3.045464214227751e-8,0.000007246499243562372,3.341485607735978e-8,0.000007816600383151234,0.0000010602364374489988,1.496296225261073e-7,2.0513642338556593e-8,4.1701373795765094e-8,0.0000022948773677518815,0.000048779076571872935,0.00004607462578862288,5.518916154437823e-9,0.0000019285805599958223,2.943259733454632e-8,0.000005092469278798218,0.000015866523988676586,3.3950812363039246e-9,0.00000663614715327667,2.4468991031786864e-7,5.764183321093517e-7,0.000029952938183897625,1.2800787027908385e-7,0.9234067362952505,0.00003269380199549405,2.685068167633935e-8],[1.3745769017553167e-7,0.0000039181164429540504,1.212811788489492e-8,6.532696182453586e-8,0.0000013990206198494214,5.36405402360039e-8,4.697298488057817e-7,1.1876260738859271e-8,0.000005033141204470609,1.990011680223764e-7,2.3434202079547915e-7,0.000009775534398849673,5.976318461160271e-7,0.000004325974868369969,0.00004572130250778848,2.8144894693495863e-7,0.00011697366490199638,4.6273016167057954e-7,8.181016285492561e-7,0.000005669486086113268,0.0000012914639400326602,0.000003943831404702873,0.9190322400318824,0.00012592956267598712,0.00005426938456723204,0.000005755538356357001,0.00011203086089925821,0.0000013218112296485674,0.0000010819471318172662,6.569681543009436e-8,0.000002002313298851653,2.0894721777033876e-8,0.0000018694346998061848,0.000008761402053010296,7.77039659188933e-8,0.000050595825679377544,0.000010599393542208812,1.3791206561605492e-7],[1.0816364281507498e-7,0.00001009614119940985,2.2262645027781157e-10,5.229746996386557e-9,1.3094297657127115e-8,1.0146367062531948e-9,1.3340181305265781e-8,2.1184829227835258e-10,1.6925557676045092e-7,2.1835010434042517e-9,6.305285322376288e-7,4.060488287957194e-7,2.6885799158081236e-9,7.401648329329294e-7,0.000017157252550477908,1.2908657191386165e-7,2.1802962282611333e-8,9.27176666519403e-10,7.561050937938809e-8,3.771245308822199e-7,1.8096358421045844e-7,0.000496921413301882,0.8993601153145909,0.0001702779754852302,0.0000028827250998706013,0.0000010540878821798002,3.6235634961669845e-7,3.7896493817230866e-8,8.646036255449684e-9,4.930716059388561e-8,3.3612697427425404e-7,9.325808673996327e-8,2.907262212127559e-7,0.000017782163553615364,5.924508361827802e-7,0.0000010927246919529521,5.471832605216347e-7,2.573838065829482e-8],[6.24121577717104e-7,0.000012483412537707102,5.5005316320910254e-8,5.127614508506915e-8,6.53020978588508e-7,3.090245655557835e-8,5.166822379260871e-7,4.041201816207128e-9,2.4658132933907865e-7,5.056171073204231e-8,0.000002366819280355915,0.0000030035448359354414,7.807047781948028e-7,0.000012536539844123045,0.0000022486488433946523,0.0000024384135960190354,0.000007173016289972606,2.9311536350855454e-7,3.299297896128107e-7,6.504204669351639e-7,0.000009001000260463005,9.684837544399632e-7,0.9201009430164905,0.00017111907908187222,0.00001534255797225379,0.000022007234670487027,0.00003156388236945934,7.809836007198063e-7,5.890175187785018e-8,4.8164389942679665e-8,0.000007837714053416979,3.9657832911004916e-7,4.941143313121262e-7,0.0000621967183254225,0.000005106065279725097,0.000021753637811192746,0.00007365660297532282,3.891694852658306e-7],[0.000048826208954186104,0.00001896993605723746,9.779822310667697e-7,0.0000062787044623907405,0.0000056135184497755315,0.0000022717396099631686,0.000004596703243570651,0.00003125625526488739,0.000051170647371710146,0.000018178300456970425,0.00002629903905858927,0.00005246985974732628,0.00010795381323206917,0.00007788351192793642,0.0000525304780673701,0.000011032587831699197,0.000005028064422120625,0.000009614076844795202,0.8829083896490285,0.000031370537826132235,0.000010262339496847155,0.00017441962375216682,0.000017161410141080377,0.00016427102262937083,0.0001680372946336147,0.00006136584322664622,0.00006468708658267751,0.00005980491083909982,0.000003102251679502215,0.000004743594867512343,0.000023961686858948525,0.0005731921070248221,0.000020629883360619524,0.00008191474848046931,0.0001781546588232858,0.00010027284834179378,0.00009858185875226903,0.00022046985098121078],[0.000012500448387811825,0.000004392409274441059,0.0000011074738284800838,0.0000031731083642630664,0.000005930977626122482,0.000002800657549369927,0.000016760918906053275,0.000024328008915560423,0.000004892877295409391,0.00003380308910641944,0.00001642316035573924,0.8765171726135117,0.0005764873705762136,0.00037541422577807486,0.00005149388160776546,0.000016342578104529268,0.000005935914675038211,0.000019175543499367143,0.00008285661325809899,0.00005499297282338928,0.0000062169139928947705,0.000028255081267114254,0.00007532292015992903,0.00012851546018844356,0.00042702118897574204,0.00025445866895597356,0.000007329018525736539,0.00010598689478580861,0.0000029822763600670774,2.956487581127742e-8,0.00028819743694642,0.00010261861422772394,0.00006735178703376256,0.000053025967875039705,0.00047751464049702625,0.00032829782605947193,0.000022927358524228944,0.0005570545607219285],[0.000005865630694644756,0.000009618194582568203,6.330846329278702e-7,0.000020950601268860653,0.000018724873656402342,0.0000064485266007072625,0.000013639813291156483,0.000004011862135922475,0.000003422672137694088,0.00001662175089088757,0.000007933316110569172,0.00003980735661182454,0.0004645607188823208,0.00009863844870320095,0.000010931734077124314,0.0000031959617312844262,0.00008916613904792695,0.00006741756624711384,0.000050066510257861034,0.000009111878358319682,0.00006574487130446876,0.000020284941252225326,0.000004635651253927892,0.0001035416114273685,0.000017538425327523595,0.0002355240416484785,0.00004721571552844101,0.00007458310192018216,0.0000834543963995597,0.00014866445570471993,3.099778487462383e-7,0.00000962911382915897,0.00027648858151973035,0.00018444230124450373,7.16009191603678e-7,0.00006680397890888813,0.8871920973329434,0.000005845327809708304],[3.5651402215426785e-8,4.6682339901972326e-7,6.062850590842188e-10,2.1155384132472514e-9,1.9018297900060518e-7,4.717287289239383e-9,8.993632303310176e-8,1.1090282265975467e-10,2.6156593567479565e-9,5.2467667811811405e-8,6.390822519137058e-8,8.358491290956306e-7,7.026424567452935e-9,0.0000014095738517141266,0.000013079132601924712,2.425712905872132e-10,3.1015579001142964e-7,3.5057684277520936e-7,2.2970585163036443e-8,8.110541052359656e-8,1.76688906383587e-7,0.000005361750777491445,0.000039000809179012355,0.00004735361957383284,9.036335347720246e-8,9.182779908555446e-7,0.000007782496602963371,6.506904339064217e-7,2.3007821904755916e-7,7.658865108902211e-9,3.0583482213814456e-7,1.0906989937675235e-7,6.098744898645883e-8,0.000001365585748440129,2.087149603320157e-8,7.983181156877255e-7,0.934017623398359,1.068444693344998e-8],[1.1526815117989417e-8,4.92993458799647e-7,1.1122690075044729e-10,1.7148247448176135e-9,6.492596994860423e-8,3.3030830471992194e-10,1.0124188360268564e-8,1.4316948255569488e-10,3.822096067810785e-9,4.238542641902347e-8,8.745811025662352e-9,9.874626233839229e-7,2.9292056868475085e-9,5.875658840082162e-7,0.00002876005949878801,8.505832270861336e-11,2.0917525649320372e-7,1.3265356862624805e-8,8.298801674216828e-9,1.7701133970156852e-7,3.0797796885572486e-8,0.000003930108672296198,0.00009401251133756386,0.00003433253647925986,1.686063684747222e-7,2.3715114237089377e-7,0.0000010464795351542,1.2128257143788479e-8,1.604951444249488e-7,2.8853741114707323e-10,3.3012331319067833e-7,1.5976696112514917e-8,8.351230093413136e-9,0.00000432427002563908,9.478819530806736e-9,0.0000015526606948226925,0.9468893421047538,2.5767480092169936e-8],[0.0000033224408028953995,0.00003082623087312105,4.6988545471316506e-7,4.79420440242369e-7,0.000004058083762341472,0.0000013475631674125575,0.000009027867555513374,0.000007077881193904038,0.000001836825428866438,0.0000020396565907526332,0.00002434863249483943,0.0001325968982806566,0.00010368033107209622,0.00027957485183468866,0.00005351524853635584,0.000012971973065603239,1.581936312919551e-7,0.000004989207555632135,0.00011503709750655738,0.00007122397249804377,0.00011904290507721928,0.00008128079295692108,0.000005880764666332234,0.0000370884655045666,0.00024390712773584997,0.000020003457973797403,0.000054425900966135656,0.00006981574648713813,0.000013118655146436276,3.3714472498471086e-8,0.00015468113550719655,0.00012207043456948107,0.000034101764963775433,0.0000030852722705053974,0.8915274819334071,0.000020888962157004904,0.000003165960212687987,0.00007659931910484895],[0.000002796983174178095,0.000002990086455673646,3.1756819041247773e-7,0.000005217866077634669,0.000003197259898575398,9.191385507323734e-7,0.000005316318095806164,0.000026249698358413398,0.0000015224298245427927,0.000008970109967725844,0.000006226520427913623,0.000059240878497676706,0.00007417266976957995,0.0004668371308119195,0.000007257783497291688,0.0000042494541399810856,9.33710663191144e-7,3.8351435485612155e-7,0.00003417741062169616,0.000025414562017631867,0.00018539973286589332,0.000023324468471792895,0.000011047335422056982,0.0000037126502391758043,0.00032366085431266274,0.000007761012090410032,0.00004806763429608585,0.00008502876498556404,0.000004246584044218946,7.283743969962103e-8,0.000022879673299490775,0.000020820060890075646,0.00006656397978228645,0.0000035902978899688054,0.8794193999215523,0.000009281967706330072,0.0000014948710745339113,0.00011825815351290058],[0.000008366606695676239,0.000008002949920496374,0.0000026284056875765297,5.571875654739952e-7,0.00000936889522211404,0.000014624356940753172,0.000025091143068450296,0.0000010852446883213994,0.000016273190812011826,0.0000017421651574489124,0.000009846571292915622,0.00003376275085364109,0.00016320757857954274,9.203351463885228e-7,0.00003005774507656175,0.8858282450377165,0.00005197826789084379,0.0005782047915379929,0.000015483261644233864,0.00005871857743648846,0.0000274181780182705,0.000003301796960433228,0.00013696237355544335,0.000007393808895344823,0.00027133863977956476,0.00010137037386372999,0.000020357988008595675,0.000023154137857399808,0.000010063664055828797,0.00001809674441043882,0.000010986985079778592,0.00003145439633845218,0.00002985734939737848,0.0000094574039339613,0.000012805678817222813,0.00001589576852046612,0.000003571911564225275,0.000015523605848430686],[0.000009457499783619058,0.000051737875412739704,0.0000023406409162340507,0.000003954387053557043,0.00004638659127336406,0.0000030708263258793324,0.0000692730576714349,0.000008400041562906412,0.00005528727981890877,0.000004008889433397659,0.000007399987524963138,0.000004139490514561637,0.00011377329821705094,0.000007666146950665628,0.00006602350518139078,0.8814696875996092,0.0000119362882539964,0.0005279189075652855,0.00002993668843582018,0.00032087752247821516,0.00006718658126281328,0.00007434256687160482,0.00003178709275256465,0.000005762307109427251,0.00021362091950639524,0.000005090584543718164,0.00030072252290740207,0.00001643733854407808,0.00016188646241643563,0.0000959934273889052,0.00003779146689145673,0.00013567653059139468,0.00003693071255088378,0.000011104852441805351,0.000001504787928637051,0.000014923393595482057,0.0000032284909771061793,0.00000870067081537726],[5.178134551429933e-7,0.0000029631928209851544,0.000011736399624890687,0.0000037582426080971147,0.00003900294357293479,0.00000225784359096398,0.000013971449068709226,0.0000012294815211794205,0.000020685990588013674,0.0000056205370120012085,0.000005666464440869002,0.000003250853191767187,0.00005198697446191441,0.000001964440187947925,0.0000120690306778951,0.000045676967646526574,0.0004033101034689146,0.8799974324038209,0.000004468557946693244,0.00017262443624193187,0.0000016194902062759383,0.000007852161275322475,0.0000036823143169739512,0.0000020261098291489803,0.000014476933355841727,0.00011323517787909399,0.000019614399596255494,0.000024854810500916737,0.00008420135009951205,0.000010077277370458158,0.000010566519727244818,4.766614331293932e-7,0.000006558568446549089,0.000003659987499109123,1.510240606225691e-7,0.00013590648948362546,0.0000045786614684694065,0.00002730256187525822],[2.2643604711359926e-7,0.00005233360204536781,5.813449279652386e-7,7.994040839403402e-8,0.0000037386554991555618,9.409955636483204e-8,0.0000032691867589929115,6.02564870768121e-7,0.000005639341852528261,3.9811367035286533e-7,3.7477850218580286e-7,0.000004706919897443294,1.5742447746772765e-7,0.000001162893671625681,0.000044304199128430414,0.000005723787712520253,0.000010478207831430304,0.9453080648472076,0.000006820938513860068,0.000051328427045446816,0.000006917888524359633,0.0000015278290996997746,0.000009819657734619741,0.00008023693349889291,5.668260278875248e-7,7.919917439337861e-7,0.000022904444786563686,0.0000027046895927165074,0.000012908362941240456,0.0000013000218420797264,8.288561317482985e-7,4.467420353338328e-7,8.368246077420997e-8,5.419578663509436e-7,6.876190065093329e-8,0.00023840371135733677,0.0000010879136343801254,0.00006081187680548299],[0.0000076917399604129,0.00007404757258358947,0.000005019168959312524,0.000007839831108889725,0.00003476790689838197,0.000004453599678891689,0.00006499422596334574,0.000014037139523546411,0.00002072124782705743,0.00000840456096212729,0.000025407242209803008,0.000002226123078181961,0.00009046026188290415,0.00013289759619259674,0.000017199061726792405,0.0004480210614445298,0.000038810508235398146,0.8834552094028072,0.000057945525149601195,0.00036297548554997086,0.00006817698922554208,0.0000016265966576489622,0.00002630320262091321,0.000019529943215568894,0.000015041867794243481,0.0000054303368908734105,0.00024746587256578394,0.000037222993018948886,0.0005718316265911948,0.00021854262717101533,0.00001636955780508605,0.000004690396430691028,0.00003537969644845469,0.0000013814083185466438,0.0000010920344144470047,0.00013644425469779868,0.000022279930003409828,0.000017561056286211203],[2.054841829909025e-8,0.0000014175731695066686,1.142288249117215e-9,2.2934425287047123e-8,3.3391483340300975e-8,2.2245554382224848e-9,2.635752140877737e-8,2.605917004470376e-9,1.6872832610416058e-8,0.0000011083022464320335,4.068553954431454e-8,0.000003761271251276674,1.5362990573208767e-9,3.385601985051826e-7,5.8762066560501946e-8,1.9027026494255137e-8,1.7084526623512677e-7,2.8803956982191242e-8,7.638151654296917e-9,0.9625925050370527,1.999303136287279e-8,1.6576805951236124e-7,1.3156288553603845e-7,0.000038355646865586765,1.0000856983361447e-7,3.360098912448411e-7,3.7787564028221063e-7,2.0032605653373146e-8,3.336762119709702e-7,2.9634923474490555e-7,0.000018014852299010492,4.926248459323627e-8,0.000029302469449416,0.0000017379786957541497,0.0000022088710531663556,5.348939802054011e-7,0.000004010184709915467,2.2046395985790662e-7],[0.0000030855523937311137,0.000014511495209115682,5.374206519154003e-7,0.000011601748040444687,0.000014166189008798121,1.1998626199005056e-7,0.0000056634227278155265,2.462076050859027e-7,0.00003254816057234651,0.000006034931674079997,0.000004176555833844856,0.0000020752996940972193,0.00000284503307117459,0.000010338616516726366,0.000006289898873656294,0.0000871201735919198,0.0000043062290995576155,0.00017694013728664052,0.00002666522976160726,0.898903286924039,0.0000196342340732837,9.649876160113395e-7,0.00004712155730457916,0.00013607866421957914,0.000028338298836348142,0.000007100406664869217,0.00035507293285067404,0.000001605507333648141,0.00002345511407859944,0.000036191427258564296,0.000022588543857449047,0.000006221191261070367,0.00012646395061803416,0.000003939618074943425,0.000003112589071513571,5.717780478795183e-7,0.0000026436106451631436,5.078552355742694e-7],[0.000003461497949483149,0.000018098956713941127,0.0000012898553443039393,0.000014375483239936873,0.00002457113134972145,6.121465932873578e-7,0.000007432351593532382,6.095133581469036e-7,0.000029495223643053608,0.000005519952818183224,0.000022807288501145764,0.0000010477740285042819,0.0000048132997075957065,0.0000030571087702950887,0.000012182522072355212,0.0002468627993854439,0.000003341091977991939,0.0002088696852119189,0.00004918399612819098,0.8905800099716253,0.000020876360690952845,0.000001963697053845798,0.00001071485744133248,0.0000646725499258731,0.00010265836324797532,0.000011463264312052624,0.00047032084167380285,0.000022966200873637592,0.00005271813047554656,0.0001132837239119032,0.00007698732256719957,0.00003190387122768112,0.00014512665376786437,0.000007985820680483641,0.000012236420869236459,0.0000010957743037806074,0.0000054396043285315776,0.000001085479080944494],[0.00001515285004057961,0.00002201846059429914,0.0000023420262018164502,0.000010362394373547342,0.000011979725794409656,0.0000039567974508725174,0.000008930001781708166,0.0000011610068645354283,0.00003760574223367093,0.00005459835829602703,0.000011449339228082287,0.00004785525891116072,0.00005393316121202313,0.0000076624452484355,0.000004718421604039855,0.0007630145367363429,0.000047645210314974314,0.00040113818753250287,0.000024528214931010282,0.922876491532298,0.00003475919324891186,0.0000076532181638289,0.00007205662589080516,0.00014744735686221107,0.00006767213263408338,0.00020863003429120075,0.00004989964530845286,0.00006389566231755697,0.000009215483040918561,0.000028483632421548227,0.000026328255041089518,0.0000032005164160417324,0.00009076678979974,0.000019475544847491243,0.0001267917633131777,0.000017230230016646293,0.000007736462083835874,0.00002946540917552698],[0.0000059704750404823835,0.00009423752564797111,0.000002061315880505133,0.00003409782018548274,0.00002108771910332691,0.00000906820261403099,0.000008505467878369387,0.000015822452271269845,0.00002507011281738408,0.0000039152983286220655,0.00001561975683889861,0.000006826800206020131,0.000051284769943164217,0.00012668282126373703,0.00004429539851058233,0.00042429783233419345,0.0000776946496986255,0.0006818296434934819,0.00023215198484496797,0.0009508928576878701,0.00020710402501713236,0.000006829408578270544,0.00009174114078657046,0.00004116279477417797,0.00005952668121138818,0.000004375207314989365,0.867279228123973,0.000026970831608412806,0.0001899693786740454,0.00025069143355678736,0.00004159663437966629,0.000012024972254804068,0.00019258037228069626,0.000004199399361640294,0.000015538626414024316,0.000008491897452076201,0.000010465685606328438,0.000043438768029760164],[2.9063055313345067e-7,0.000016697566364121176,2.931589910073187e-7,2.604820938973457e-7,0.000016492891528115025,2.9003740444264494e-7,1.7323715269257633e-7,1.5916522638342456e-7,4.327218328844408e-7,1.3449315331576836e-7,0.00000210599554862869,0.0000014476919342425704,3.988899588378368e-7,0.0000593346782336983,0.00008091816182518596,1.6669808720555856e-7,0.00008131546653938106,0.000012012109297630192,0.00003271425049390225,0.000014548275829030884,0.000018349959174537603,0.00007091776634721001,0.00023366255682630044,0.0000778981703062124,0.00004212697342597233,0.0000038981582248880195,0.9113143762427778,0.000004361269318192633,0.000036350333925077194,0.0000071039542247524685,0.000027787794312723418,0.0000022403475441429314,0.0000032225470221178614,0.000011430600092262796,7.744723720189136e-7,0.000004315051415576677,0.0001013432316500755,0.0000039661346217113325],[0.00000743839769307337,0.0000029999128324817727,0.000007180630455136323,0.000007499912294243232,0.000029475154952267873,5.518760606363226e-7,0.00002982710504755075,4.906108963637751e-7,0.0000573676044127103,0.000002203905791754762,0.000006291619080529113,2.4052680516244493e-7,0.000052875079053094506,0.000024132543513646313,0.00003774552373485574,0.0001769624768195702,0.000039111739687775304,0.0004983957073653251,0.000011490861489547744,0.000003940761808472318,0.00001864675256791455,0.00000889592766184638,0.000001809473301755375,0.000002103878036993108,0.000004516802054720418,0.000011166530304797085,0.00003507619912175807,0.000008091527896292163,0.8901608830420558,0.0009129186586679887,0.000018228313711290935,0.000002134394655697888,0.000057754275232822654,0.000004545845756884959,3.212307242463907e-7,0.00006970641530216503,0.00007419152301443785,0.000005161069978628606],[0.0000421652810885296,0.000028808807682582246,0.0000013959258025965158,0.000015506912017830855,0.00008740785227280537,0.0000012423339067940486,0.00002280113824517949,4.5647293103073253e-7,0.00003884000764371872,0.00000735246946080386,0.000004971133298828835,0.0000025458501171115007,0.0001103342640701371,0.000016527370784888818,0.00019881115581571332,0.00025757459390974495,0.00005353645166495668,0.00030109704228067495,0.000022238379960458915,0.000018902816729825402,0.000009136820205892222,0.00002623412609558986,9.694864773544858e-7,0.000004579053460697798,0.0000042733656887861665,0.000012700664403675249,0.0001648605822375391,0.000009933996780803674,0.8874011677823456,0.0008968074670394861,0.00002740432744636954,0.0000016861640735945007,0.0001447543455867267,0.000005245962876713813,0.0000015603661966222587,0.00004745018556027296,0.00007483539688433052,0.000015637532022412148],[0.000006012500690824531,0.000003859562070202489,5.31751007634343e-7,0.000008197445395349105,0.000007206744577602494,0.0000011299866255517855,0.000002302976351399326,0.0000047969959447877064,0.000006606855146002699,0.000005364466990410217,0.000021460144961176476,0.000002320236709943607,0.00028852610718466186,0.0000069068847109262726,0.000013356461663540574,0.00010896506393692972,0.000005117710073786311,0.000040237914763954344,0.0000030004359670770696,0.00002693361800373344,0.000022591905523906852,3.948235377727933e-7,2.0261029256087516e-7,3.5505538281955354e-7,0.000008892701524862231,0.00006537314394905846,0.00004941358570084791,0.00016166560686382584,0.0001537335021986816,0.8694116162837509,2.510813466409498e-7,0.0000047110057031253765,0.000082355450654132,0.00005066603062410357,5.818716838400688e-7,0.0000032749465017873847,0.00004993123490912124,0.0002923336233495219],[0.00009755558498011383,0.000011469796431375654,5.74365964973716e-7,0.000004372713862706398,9.022643459115885e-7,6.997651639254744e-8,0.000002943520895745673,0.0000032535191917823557,0.000005647215257302471,0.000007585050530520589,0.00000503206628662989,3.1206403540722965e-7,3.2460174561538147e-7,0.000011065774753110184,0.0000052476391780696295,0.00010125709665048867,0.000009165706526008796,0.000009208325164262319,0.00000602181050293402,0.00019652838112082827,7.450350496330066e-7,0.0000041196007087069286,0.000006961250780241275,0.000005365912097038571,0.00000513145211922071,0.0000052816828936157475,0.00011761549112260383,0.000019191726520867318,0.0001546693374903172,0.8913190406662465,0.000006564531405315953,0.0000029908408161144363,0.000043485799518898164,0.0004354621648768157,3.443128724954779e-7,6.176090849388518e-7,0.000004050622485194858,0.00012986465884218148],[0.00003709433668487911,0.000023364309349580144,2.309123831067007e-7,0.0000010025315359283584,3.0166799043588865e-7,7.151240013893709e-8,0.0000010621950622417833,8.038175758287953e-8,0.000009539950943677487,4.304467849911807e-7,0.0000028360290326453585,2.140300860478656e-7,1.2313183567595662e-8,0.000023301639581723296,0.000004545661707766482,0.00000467435943802328,0.000009080723496089242,0.000017064123049951306,0.0000034280166719267583,0.00003256353472879008,2.505835058146045e-7,0.0000013762757675468338,0.000012891292516340628,0.000003003687416196083,0.0000020591615287061806,0.000009315412019080485,0.00009537751639367259,0.00007402500672234097,0.000005814810532787598,0.9676692257637578,0.000009861462618549984,0.0000015867049319451668,0.000021626956507491897,0.00019741637105781266,5.5299444505384736e-8,5.787459811808301e-7,0.000006531683806514794,0.000040238660881660185],[0.00011692780636789612,0.000022151288453427758,7.270601308056009e-7,0.0000012529203082887752,0.000013558437843642186,5.429478026787102e-7,0.000011974094461685074,5.386507172760592e-7,0.000007189805044139398,0.0000058999043590927834,0.000009628294972347354,9.008691618559526e-7,6.474316335750698e-7,0.00011533285301754793,0.00007853311996248759,0.00003231401773419677,0.000022824914663840562,0.000059390994086514385,0.00001819116073552704,0.0000033912347662015256,4.211601348414944e-7,0.00009104294878466806,0.000001999411645529162,2.469695852214835e-8,0.0000042256847623428235,0.000029236113510313558,0.000020894054280622023,0.00042855543388667096,0.0007153479254872958,0.8984944310568093,0.00008202413725658443,0.0000018379010322997389,0.000008617538576149269,0.000044856541891243336,2.9264836064451493e-8,8.543526941045492e-7,0.00003435745343200801,0.00003255332979715308],[0.000015162699794744475,0.000013844521592617032,3.5236448646741325e-7,9.739622961908633e-7,0.000005525850652878087,0.0000020664310109595103,0.00001407934763383096,0.0000035207656670272595,0.00005956053236576612,0.00003935578803683425,0.000001643284943748557,0.000009193185042279501,0.000031911537827977805,0.000026884432799164392,0.9080506310992436,0.00004849185621330207,0.000058918219435541034,0.00003433375534037491,0.000004836150405894941,0.0000015319583524645578,7.388251465622754e-7,0.000012579876023317442,0.000014714800172679186,0.000002701386470073754,0.00013048402539188686,0.0000031687467197450646,0.000059089544184358704,0.0000110184344389078,0.0002726314486732947,0.00001081565797524884,0.0001159429377746275,0.000001224731834741394,0.0000031146918949030058,0.0000036186380641435653,0.000010352259427108919,0.00008276226054644606,0.00001948765749715992,0.000019319931413315296],[8.944400192090264e-8,8.914130131410393e-7,2.7013703113850967e-9,7.222158579210004e-8,1.8717710410149447e-7,1.0598699451718397e-7,0.0000011267017812113628,2.8747547283921734e-7,1.5868570778930306e-7,6.96303486074855e-7,9.557293598286849e-8,0.000018555988044285444,0.0000015346937353818496,0.000008324967459669826,0.9261918636946382,4.632932409063697e-7,2.1622646606920666e-7,0.0000013865803425128656,0.0000012693559399867299,1.323902470712375e-8,2.382351654496794e-8,0.0002995280703245758,0.000010806341150131498,0.000012260708402715856,0.000011219320796480546,3.600140219713483e-7,9.23338409905054e-7,0.000001141498289488482,0.0000014850655498149101,1.155033553700213e-9,0.000002013608992885665,0.000007637495581007316,2.7940715047853663e-7,3.277884390528826e-7,0.00009338209810113009,0.000015345146437577355,7.496139408022506e-7,0.000001442860471973761],[0.0000013310152051129707,0.000012220031463684051,1.1119640282975397e-7,2.579526903013256e-7,7.952281802644936e-7,6.360308892552233e-7,0.000008072104992400158,0.0000011387413668619936,0.0000033152451393831752,0.000002904740723912232,5.285353149684846e-7,0.000009725670123230136,0.000006020783989876606,0.000009661212913592386,0.9307015004072525,0.000009103206559246357,0.000014999390672367139,0.0000017027068155548312,0.000001898938944424877,1.0279167700796909e-7,1.9851627152476e-7,0.000022529459638845984,0.000011208395091068504,0.0000016285415928889033,0.0000013491521543122284,0.0000012433630111328588,0.0001228540127035954,0.0000072473780671314794,0.00016472702801388167,0.00001593681289411966,0.00012279203636595212,0.000020864049218360706,4.341391091766669e-7,0.0000012695707240586123,0.000012728858849502185,0.00001321156335123107,0.0000184741406862238,0.0000031933956375292177],[4.6221684124583966e-7,0.000006063643627137033,5.3147034492564446e-8,1.0026374420636543e-8,0.0000011494022137090655,3.966507266867388e-9,0.0000010347524938775161,7.574879201723675e-9,0.000005850275105453754,6.548494330583013e-7,1.7330671838508083e-7,0.0000013402415098434653,5.352022221537435e-7,0.00003857863305056569,0.0000013868986207662523,5.190460005866139e-7,0.00001468732847087713,5.1741704729189554e-8,8.646796542252645e-7,0.00007930929140015159,3.4306264089876797e-7,0.00013608387303505864,0.00003623328536083143,0.000009281597666739832,5.641497636935483e-7,0.0000019236217814308647,0.000003877321512415422,4.2030675015215205e-7,5.254436672895737e-7,1.2605665356645282e-8,0.9137240858633334,2.747218599967986e-7,3.507755629749168e-7,2.775716353138485e-7,0.00004685831208466735,0.00001838648919493848,0.0000011106307639684059,9.085096061497654e-8],[0.000007770616085407664,0.000004482958832763641,6.97503320691918e-8,1.877449415039551e-7,0.000005307139997178155,2.1363563383004632e-7,0.000024225967117510993,0.000005667823796570116,0.000013280157135275071,0.000004982686121565704,0.0000023682284988884485,0.00003770901817923485,0.00016305068039856622,0.00014856967650323435,0.0000954541867373116,0.00001190909652248325,0.00026897154535863765,0.0000014890963939075878,0.0000032453189226495408,0.00004507372581641537,0.000005078180454847468,0.00010507792156008368,8.821789733509976e-7,8.576495806657493e-7,0.000002542468659219324,0.000020250467966841013,0.0000058405293316028715,0.00002226056511436719,0.00000594796141191911,6.690956452139512e-8,0.8846165576117607,0.00015651977001649253,0.0000014542450875363173,0.0000029318210736982606,0.00007163717345188151,0.00002024954438851454,0.000004891912596093989,7.710537460751413e-8],[0.000010328081385646867,0.000014607984952718831,0.0000031504687620547536,0.000004618422196858947,0.000005602463363401888,0.000007246974272559413,0.00007693279286025511,0.000018993300341611772,0.0000076136786867519955,0.00006615896051353785,0.000038452879067087654,0.00006402586938809385,0.0001966988854133808,0.00022647350934308012,0.00004152390538214362,0.00005761472200783471,0.000004267022303617121,0.0000031260528299320885,0.0003468196370550853,0.000016320165899791093,0.000044309927594191154,0.000014311729280772816,0.000021015895739762136,0.00001732525588158659,0.00005813434163808941,0.000007544220536171805,0.000015641915450880592,0.00005428871141679209,0.000011866202919378125,0.000002454667656528828,0.0005978220582369141,0.8797715297457048,0.00016955422016441075,0.00003104929852132333,0.0001694474682055103,0.00044706978413062396,0.0000577224544927261,0.0000015836555092422153],[0.0000011663103837582652,0.0000031067217553707113,2.693342387933741e-7,0.000001351389341948569,0.000002573931202820113,2.408709992642345e-7,0.000004492383187023371,6.417142916664678e-7,0.0000014718901370885585,6.293404597922192e-7,5.529983046446383e-7,0.000008507064265926685,0.0000032579641030552383,0.0000021101081490699892,0.0000025234641303160853,0.00025604123849273596,0.000026955344661664062,3.9930316209796774e-7,0.000011198633360657322,0.000011876106328615483,0.000007950134268622911,0.00011349393579102877,0.000011461689712641748,0.00009276654304259898,0.000040968180721429004,0.00013305730893127621,9.216031270312689e-7,2.6520539989942604e-8,0.000001922797715135729,0.0000012843692072592153,0.0000012895832961444315,0.00026677595956396834,0.9045876935433486,0.00006666060578921313,0.000004183409912156321,0.000011206974820054563,0.00011409992166607374,0.00002496273163190495],[0.000004448054678376361,0.000005521071194708926,0.000006204493927283167,0.0000482244363526799,0.0000073627970684983866,0.000009837496353902418,0.000005423587226734629,0.000021134584285315143,0.000008297643321348457,0.000029755699958994932,0.000008686900692374228,0.0000023388302560234387,0.0010841197405669263,0.00001246043310304405,0.00001478829923070633,0.000009388426145045636,0.000018178086382272786,0.00007059313019231423,0.000031055107937055324,0.00031128809069947766,0.00006984478627578994,0.000005236064266601144,5.684818850276696e-7,0.00007697039728923575,0.000177193360552643,0.000028249379887133794,0.000012027225574561184,0.00004394673595244568,0.000027118496985668622,0.0004150471003868582,0.0000015882424989251109,0.00003243464415644292,0.8682388535221383,0.00003499273423046029,0.0000041507605700495515,0.000012625717073347735,0.00012973041755322054,0.000018683808731092884],[0.00007408850943490096,0.0000086236723945881,1.1242553149073715e-7,0.000019149287592781305,2.2408082753346814e-7,6.511024766535627e-7,0.0000010568421721168383,0.000003073209044841143,0.000003090667731284694,0.000006629965058749183,0.00003094936195059263,0.000015991755748581497,6.094890663606296e-7,7.785229365349426e-7,0.000053288751272925206,0.000009528281052775444,0.000025228416657876752,1.9999953137850164e-8,0.000010387911631674059,0.000013578768242419835,1.315683979522576e-7,0.0000024364210821989826,0.00015709351461966442,0.000020548165162821293,0.00012800346539907452,0.000028326388089673282,0.000007947885275445761,0.00017414771492660548,1.5160649682517708e-7,0.0008245415669552682,0.000004742313111758031,0.00001207644627547343,0.0002560441931633703,0.9019430517158016,1.5259784830713148e-7,0.0000044066279814343255,0.00009455815371633465,0.0000027056601463287494],[4.424162418354948e-7,0.0000013068069018296936,1.4168091901186037e-9,1.0585932351275548e-8,2.7360998520392534e-9,5.095818443638639e-9,1.9902614538983054e-8,1.7145624455086264e-8,9.278797905742142e-8,1.9472939864996662e-8,0.0000028881730976876614,0.000008850551081971728,1.0771673921637625e-9,3.8064145304668806e-7,0.000006208227359501105,4.077126327495263e-9,1.509348981023831e-8,3.5590911030159715e-9,0.0000020190355788671844,1.7052514360171086e-7,5.9239526469368525e-8,0.000008622468439759272,0.000027102635409913927,0.00008269604712138613,7.295221952258276e-8,0.0000012052954391058755,0.0000013456587937217178,0.000009869249282924105,7.767021964632218e-9,0.000003440758460233874,9.264796367032948e-8,2.785624855267892e-7,0.0000011242433407238405,0.9127431864346809,1.5753475382093382e-9,8.449790736639404e-7,0.00015582718232391062,2.3694260386144182e-7]]],"Weights":[[[-2.324286730856003,1.0581062921567335,0.2302395453346693,-0.43772208307063815,-2.3279600424972227,0.6142421671716429,0.26059481163920395,-0.3881301724974704,-0.6517663007673772,-2.1096483433338977,-1.400068632947459,0.3325209631059971,-0.21565457236541452,0.3079002352330579,0.13438009860296263,0.03471178806386907,-0.038594973969571886,0.014947872168537893,0.5004073242857194,1.3311648183539346,-0.1909663290217784,-2.082540546936172,0.42673926202762613,0.2729065102455381,-0.10717632774784454,-0.9361834375453637,0.7429847248164679,-2.1228227053333684,1.4455167499609596,0.2147867642541653,0.1261725826368123,-0.1971812411906942,-3.4714717648030553,0.42376205989699367,2.2722233859896783,-0.8776329421913736,0.6053765928568952,-0.8601618094892698,1.0054922528341956,-0.6160404887155673,0.1152721683296656,0.7305197610934151,0.39397042867049936,-0.9935859026015555,-0.32636056723589996,0.6005753634993158,0.9154372399836639,-0.44051526264702817,1.8218950328601036,0.6003997626710872],[0.7259730486125325,0.26739242618272346,0.9904422080215509,-0.14319584079834433,1.024967768531365,-0.7615969067474899,-3.181776064627173,0.2732379372126289,-1.6017303743206703,0.16286426149515773,0.62651680441793,0.48396512787778456,0.8359063113935626,0.43535655109444227,-2.2422266977071854,0.3603610529956983,0.8754137856199637,0.8229470591522922,0.015913049324384223,0.866534656507236,-2.065027108135975,-3.3196516696884735,0.7589244338444111,0.8684939438568945,0.11989147818066989,0.7281097683621316,0.9746213210438777,0.33930402170208684,0.35785928976080467,0.1196707328916046,-1.6308086238131412,-0.29058302883391074,-0.6315529831646003,1.0284651730769674,0.7372478798812733,-1.8922115409882048,0.38195807392665493,0.46799789671336106,-1.0158890930247706,0.30623514113503236,0.3301214692907661,0.18432238446171084,-0.8853448240576501,0.030235847112106373,-3.545298238133136,-0.4378417287125702,0.25835378357309585,-0.7125893165033905,-1.527627251732446,0.41261958269367605],[-0.18148370382673265,0.51662916336328,-0.05166235556742086,-0.9405830697478126,0.5949686242164611,1.7355592862430413,-3.8981089159534092,0.900418890238997,-1.8944604108943244,-0.008864873025001404,0.2812129371716611,0.19656608952777377,-0.5650724011314631,-2.047983771995099,-2.5397958076542704,1.0651591839321293,0.2942485117190079,0.21018747044730696,1.009297517222708,1.0258807898577889,-0.3055062653670803,-1.1470784931495934,-1.0990917758550895,-1.2887587945764447,0.21177457398532204,-0.954045962122771,-1.4673862682195444,-0.6972947991149754,2.291578742538209,1.8050517570976812,0.6453503886443378,-1.3708123785601047,1.245876112560616,1.0916262388176639,0.5744478207478971,-0.3686707812501266,-1.0947959438283832,-2.7859973177965602,0.48131322965104456,0.6823883070190082,0.11217734306594453,0.35990022813822997,-0.6236142145073198,-0.3145572850028639,-0.4914904732134283,-1.929976703865218,0.5644939938868666,1.1836099955952148,0.38618070300262747,0.08179472147606791],[-1.6192259977091692,-1.9111867574693653,-0.386293196147656,0.9780755165378687,0.5920785859682113,-3.9415465288207443,0.6622250356555357,0.18746557040574421,-2.701682548940768,0.13026224388778973,-1.1294909473426915,-2.043781764787943,-1.1722691363625524,-2.584343732297769,0.9044206208937132,-0.2714685641526692,0.20344303618901305,-0.5163921368027679,-3.0273774267395392,-2.821057860937209,0.0458739491097606,-3.2908600983037335,0.8286013278472699,-1.6116688939690362,-3.154025474638421,-2.713417358969851,1.2576143974164982,1.9822667612418563,1.105956014496941,0.46087467115717873,-1.130778256580801,-1.2636594972364787,-1.1066075753463698,-1.0291578037917881,-0.2940205681476582,0.1687127044595167,0.2563928949834535,-2.706164846531605,1.517589016406029,0.7398893737020599,-3.0827840879269632,-0.780853517539247,-4.5787858550571245,-1.9896863595649597,-0.20673258705044806,-1.7979048784975193,-7.065390915888835,1.4204482164302292,-1.0867395701930969,-2.5436727518622564],[3.934750494189403,-0.8281329944707929,-1.2152785239456496,-2.0544063152313243,-1.3251445252928726,1.8456674171522125,-1.6108784264447695,-6.7824624513909635,-1.2879740617396067,1.9010671178135188,1.7478347186401357,-1.7923474472380647,-4.164104191324417,-5.427654043760985,0.4158371903476119,-1.9514019571475905,0.4050468689801944,1.853485990864181,0.7788348799299697,0.3767395401070952,-0.02751401066191046,-1.3683912768175057,-0.3521326332104642,-0.3425560141666915,-4.120263011951344,0.5756173615111085,0.3861781078522477,0.7928866321617383,-5.19469932079303,2.83847455666284,-1.2838783046537798,-3.1121066881871906,0.25006945387883917,2.1579024102969364,-4.172092284928684,0.3630017854495942,0.7143499603943907,-3.360536033818373,3.315642236548702,-3.658166710678818,-5.515961550501512,1.9481127786566463,-7.485742582988402,2.482179151117935,0.5497707621785944,1.7940796304068138,-0.7262097122680755,-0.31057482232126654,-5.905016695796271,0.6908835409352253],[-0.23323201580494715,1.3018210718648893,0.9040161050636781,1.24716739923166,0.0744487391745955,0.504320974398985,0.35425029923407236,0.5281302967799917,0.36170739393482443,0.17947490842929573,1.0697993922764482,-0.3068927263766573,-0.11142788911149602,-0.26434973226483705,-0.9474184972442029,0.6819872811134656,-0.034778881998616465,1.1251017081860757,0.9830681663746634,-2.657098709531478,0.6528659024929284,-1.6329862197915197,-1.9810105251296706,0.6113537593757585,1.8735569511096528,-0.16852961673040154,0.016503641528811265,0.5821571776131768,0.6765297299768782,0.8713917712479902,0.6697269939810557,-1.1079075497750623,-1.869192413604826,0.39702085532000597,0.21650462665823655,-0.28740581664505377,-2.5073326246029604,0.6194446556616907,-2.179800814603892,-0.4233363181334911,-0.6422796639276781,-0.6480426575253234,0.5562690731443304,-1.4486950261369274,-0.4558952476255814,-0.4756242121581026,-0.8666376725936362,-1.5808173018637077,-1.1524042180618461,-1.4897397163623403],[-0.2866995035269588,-0.548618843015097,0.7590590551643515,0.024513403054187047,-0.5189662062505661,-2.9216322560713,-1.772365073269771,-1.1358922543989693,-1.092578435417206,1.956688299474581,-0.2690031161389945,0.8096756627575635,0.9650914727808493,-0.19429609725451316,-0.7606269603854081,-1.2733057411385271,0.9188206481968968,0.5498469993953361,1.3793626252290725,-1.5866404377325103,-0.8071800543027415,0.5259657466952564,-0.12058776160618215,-3.40597716015549,1.870550784865895,0.5267045356205474,0.2718244926614721,-2.4257150533774072,-1.931525238924146,0.5624442282555998,-0.006149849498326681,-0.4101961209929808,-0.06489440442565617,0.050146601669993865,-2.9661321766477506,-0.46000021285251413,0.8574742033836253,-0.08890030229842759,-0.058984090395127524,0.41628149109187296,1.9140940083837992,0.0710715326291827,0.7680032869629138,-0.5576924226827675,0.037486037188840825,0.9018512001272975,0.16786372546050826,-0.7507724348415928,-1.5310018517899358,-0.32211947505743016],[-0.5868059180879662,0.9050558139644109,-0.2048617807158731,-0.1751036158075288,-1.3130174524264566,-1.8831631923318781,1.4958900756659363,-0.7377594718860419,-0.896479793161452,-1.8310750387955446,1.390343434865745,-1.1795596757834204,1.3784221139174127,0.4179311758126835,0.19571723102906832,2.239407638636502,0.5429172917136984,-0.04163962636896804,-0.7015166269336964,1.0280527211360173,-0.3752467900341044,1.9880402555995058,-0.5329354114397892,-0.8948611508839943,0.2648727734107306,1.1138581337248596,0.4909076035048362,-0.5343470161429713,-0.24167997853257503,1.1739488865635441,0.5246064134414682,-0.8212945606209308,2.64512329010342,-0.1487410116651306,1.8455885697279866,0.07178540174413738,0.7743872843222279,1.9281579923541972,-0.9056491009050202,-0.3448677155883666,2.369835261824811,1.9981643889329646,2.4224515376730604,0.6410458271220065,0.48268262250642263,0.9925703221420435,-0.86922912623946,-0.043113612969109025,0.8565230009869277,-0.4622660642814646],[-0.2683009493387214,-0.992822276523455,-2.670099631230877,0.6215165166824608,-1.4958380577362365,-0.5515155821018279,-0.42578085503279234,-0.019383537362750072,-0.32568796182232473,0.8396721286458702,-0.8356615531543292,0.2615767790807702,0.8518721699397142,-0.4603368481431752,-0.13217478891822365,0.3685482334416131,-0.6489451382567004,-1.0867354971725949,-2.4971439375790716,0.6003004932144159,-0.8735476917098829,-2.0066469528055113,-2.9492210006828365,0.5629804220711324,-0.298041739066298,-0.06504333318296945,0.8643328781500598,0.09167829894223038,-2.6518437346581125,0.29445711763826526,0.6856821251041287,0.3396644719242468,-0.19349476396221635,-0.6482553956507173,-1.7631462293112365,0.8182433366425647,0.47053745871270575,-0.059608513501332124,-2.0653012693956847,0.4641980779630889,-1.974844978976986,0.15852463901282307,-0.8237446042385788,0.3695350606783202,0.215225790145648,-0.4854462844480639,0.006169883491390254,0.4536817682729001,-0.8314289117810705,-0.47524691659878776],[0.35807438504134875,-0.6850056709455171,0.9888689172551272,0.3257276628904589,0.6136452740782714,-0.33361827621847323,0.7556135577679163,-1.5580336488223165,-0.36879985304187507,0.39015897705686575,0.26024597412897493,1.213951951698992,-2.0016841446082116,0.9585048212969249,0.429806311734888,-0.020112149138222242,-0.6463976564742119,-0.01311285129214568,0.3212135585782728,0.9671801727800504,0.2479408005498844,0.7857620977001237,0.760474921787072,0.6276202679393005,-1.613788676106439,-0.20073919651475372,-0.24973482857743898,-0.9429660865834163,0.49002317449141464,0.41406598896841823,-0.09172647232771063,-0.3957279166289635,-2.1095711283691223,0.0608678885659945,-1.4195068724763593,-0.39198162141977083,-1.1897554564242885,-0.3668864408020114,-1.273242681408418,0.23653629104444945,-1.602189814116232,-1.9004239746368725,0.24439766753366668,0.738873833065683,0.2741140602377036,-0.35136144758361926,-0.595201650066172,0.2767801910925985,0.7045789305611916,0.14021026812135395],[-1.3216018833269638,0.6075585781727003,0.4741808059064951,0.5936380863847162,-0.33513350630658034,0.34388595973973124,-1.0316719054144892,-0.47196601009643324,-0.4696797174009581,-0.37450580871219397,-1.4689600888344205,-1.1169510216334975,-0.776572213794225,0.8175942775183869,-0.9018404672731821,-0.24972100958909152,0.6689470602251141,-0.34426482086056376,-0.7701541856543499,-0.7132790170954469,0.44666686228420693,-1.3747926756420485,-1.22610376559025,0.6931056896840487,-0.4978523709637868,0.342942468039571,-0.44541178864698683,-0.42715105277828214,0.9989249563606046,0.8794322989619568,-2.280838688302998,-0.7071164370592095,-0.13336878098351218,-0.015105711325214276,-0.901899297540906,-1.7404417696292582,0.2699441897105216,0.6163100973214627,-0.8416460870218488,-1.6000665407960923,-0.24783186290434073,0.22133927051893956,-0.6731445789014467,-0.6176347080738327,0.1447381876483822,-0.21713309364709205,-0.714796509367149,-0.7918493912099769,-1.5226873300059227,-0.012826618149874099],[-2.1862311394147937,0.39428048080891187,-0.2951786275202503,-0.7907927558238758,0.34860226730504085,-1.7647820766403812,-0.19079753441253644,-0.9335836926744078,-0.5973656108348013,-1.4826275089538592,-1.853413946218301,0.30610454713308555,0.4070878638418166,0.8004121754849735,-0.10649444978232232,-1.042950501516779,-0.3068737405956173,-0.1338157538362271,-1.1635407211710889,-0.9279713746954864,-0.742655542473509,0.23941484480870834,0.6281987775711639,-1.2582705770380216,1.0257967116799047,0.12436610865391816,0.2457606225643708,0.06147268800680377,0.36701123058134627,-1.6668262240653982,-2.25035586454458,-0.28743984475710355,-0.3346844864672525,-0.8299281611928773,-1.1313154834801216,0.9239140555160374,-1.3843731270449249,0.3749054889065767,-0.9388938331079059,1.101204258632972,-1.3516159954344202,0.39319730200526387,-1.0615460947932938,-0.29602644955782303,0.3777074303653541,-1.863102072950282,0.15172522569273822,0.684169605693906,-0.2216737122222765,-0.4295779014293466],[-1.9932962205673568,-3.165828563312527,0.8877305699374466,0.7407859825811667,2.4132154426337973,-0.8595415758323802,-3.6322031624565008,1.067504890643787,-0.7051905779572896,0.08805609956560563,-2.4091767051855855,1.2299630069162577,-0.23055155559108914,-2.4841134603840374,1.1281573619865783,-2.0108352864279473,0.6358666753347362,-3.6149078688320455,0.5029796564714916,1.3350682153478435,-0.6299811841485874,2.639335102433508,1.3501590901350586,0.42254235752923897,-4.314176147218738,0.15260958062515825,-0.8639502186006291,0.06944351065872491,-4.084990539932174,0.9615101521720323,1.560109230047762,1.9404316975043254,-2.1673714767700587,1.7945133515019291,-1.544439742364707,0.6813374042121246,-0.5485939892928225,1.9442065449665435,-0.45402562898151744,0.2739069226220223,2.2784115325814756,1.6087794002982447,0.47973699411285525,0.10122573691432776,-0.278476058140452,-4.0439744761023855,1.4392046183146845,-2.94210699648291,-1.069688197829587,-0.9096688799224005],[-1.9888459431004308,-0.7417381048821416,1.0867380005564902,-0.15726037990470437,-1.9161467468717057,2.0281981652019154,-2.1886569572587984,-0.5913414264271822,0.09798607104165565,-3.0233923115188537,-0.8662709146626425,0.35095522733346646,0.6067417262240222,-1.876451221726589,-1.173659206769705,-2.9416134651140564,0.993798419356116,1.4673631839062788,0.6581269277555044,-1.2579559489392753,-0.5500725127989353,-1.904991479380714,-1.3671258626619813,2.3207942838529383,2.848240039720381,-1.7166888478220501,-0.11851727192656036,0.03608741247775114,-3.6619293793407897,-2.1950379001890656,-0.6427596998540932,0.49548347822522637,-5.30342367637605,0.30458335019477434,-2.1911444547273375,0.5878100405177518,-3.459914686469515,-1.8009108838946584,-5.849286616782686,-1.6896210566442713,-0.19132435905137232,-3.6873114717356166,1.480195595346103,-1.317484990159765,0.6302444865120677,-0.31729047940301136,1.0789371694760044,-3.5010393062931024,-3.235214607086878,-3.557368391969042],[-3.398674494028262,1.8452441073808394,0.848256077152511,-1.5854673795706826,0.741486249332996,0.9117849824263047,-1.97562163336846,6.861882244532333,-2.265293326070588,0.7566109986166154,-1.0963187708709794,2.348218209566488,-2.397012926963697,1.068031708270604,-2.8528632223991797,-1.3262972431196902,-0.09678431928056504,-4.3249534492594375,0.21044771132126977,-0.6104334525566159,0.7233621818317519,-0.04273911254553075,-2.2843290527578803,-5.137744116689096,4.2225104346811495,1.0274497013753074,0.6272973885542669,-0.3362975503220424,4.830336226947678,0.44389987050027985,2.794978244827286,4.167287275325912,0.7065894049926544,-1.0114298460032194,1.6913333968159907,0.8507537262140256,1.3932282540167193,-3.748743326547744,-0.6288120912154529,-1.884264377578201,1.1211917568311431,0.988441097839189,3.0409104883473534,2.3659133035218973,1.806581541555611,-2.9131987727975632,-3.517924661956895,-1.4789506096638152,3.4347626252029753,0.782697792579591],[-1.350866533827463,-1.7948635309922858,-0.17898825297854723,3.3255253664655093,-4.233129729536835,-0.6183516181742198,1.472660191447121,-5.4743880699731315,1.0727583556341203,2.518663735812509,-4.810140537613762,1.2444919906826668,3.824121810632734,1.1456114367572667,0.8631824469186526,1.7776963904398724,-0.5968568822473841,-4.88327499401724,-0.24395656120551723,-5.723713983545058,-1.213509609070639,-0.2358859409394581,0.5993494632230052,1.566061194030975,-7.661053099500135,0.5193034752927436,1.1650991305674032,0.5669219422951522,-4.415056844628185,-5.0369261700343415,2.2396033809798763,-3.9319946018990115,1.2876304022948817,2.8858627447019187,5.930425480304846,0.929479256803341,2.0097081935661016,-0.1703038329760948,-3.7071135142969314,3.952669841037173,1.1249698906747327,-2.4738558032344766,0.8348469309153675,-9.024228042449414,1.4233699923890981,-0.9285696536584548,2.09102174755306,0.8745376782309676,1.5528381898821386,-0.10313837074579124],[-0.25254843687300543,1.0468253883874032,-0.1632255459776783,-0.6480414302945777,-1.023591869120402,0.7877825761867602,-0.09689331493638795,1.1723994509756717,-0.44593879756603494,1.0798030085196324,1.3588422114859915,-3.048073200031894,1.2156305894537411,-1.0669169843340838,0.8199044725246335,-0.07327792491368107,-2.112254245072336,0.26055333285787075,0.6715525289584666,-2.1998444811569264,0.023176957359297347,0.22547478503140386,0.4588400160092878,0.9514102555309313,0.5506155829832629,-0.9839262753731806,-1.9268346965063314,0.8956093586779975,0.8373615963421916,0.45676549659913523,0.2410339393146347,0.3440759148326929,2.9235809069335637,1.1781245334002828,-1.0283573789928162,-0.4951850140667166,1.4231148581771125,-3.556028534077818,2.3564416787163673,-0.5510058414810506,-0.21999923698367627,-1.0514796023611956,2.3104440110292255,2.15948876238621,-0.5649370552081056,1.1562490997856696,-1.1764297536598833,-0.5126294347845428,2.2390031647322624,-2.1508073139496853],[-0.6445342350113115,-1.2458306395129803,-1.7357166798003556,1.2834272136731395,-2.3321774497017906,-1.0747871622298797,1.777626352722807,-0.8643680632960551,0.7335613751947735,1.1224428480905124,0.643958377676483,1.1835938686036174,-0.019493439067118052,1.3022990994439794,0.5503513232436924,-0.3305787516588788,-0.2097064248033264,-0.3401533044488358,-1.9998736266656199,2.597211602172311,0.5267039706631514,0.16672518327341493,-3.297353582504534,-0.0769288966781064,-2.0901130943973256,1.5639344744497876,0.8014756177781077,0.7650844946685785,-2.21205171082384,-0.474783416970636,-0.7078342755321962,-0.7181838062246944,0.0007146176055743347,-1.8345797839804254,-1.8109023499110992,0.4099677181852102,0.4372371884057727,0.5714714984018607,-1.0452308997501625,0.826714551986783,-2.3248502694276687,0.0040585453998302655,-1.1163855704754553,-0.6970411126237148,0.44636176495633734,0.8248549931187434,0.5245654630253784,0.7436946599519321,0.8371930647722148,0.2306151623487623],[0.7418389553249173,0.7782930095283487,0.5199385990840204,0.4419901215546528,0.8793239025639559,-1.9127923115311396,-1.640199694065154,0.1126886652577757,0.26860718332524136,0.775013235661439,-0.10087833999649393,1.0217705043885923,-1.0604035543288004,-0.1777630589419946,-1.2197325457099952,-1.6581993898564322,0.6675266390006684,0.8973809650054106,0.023667667846306095,-2.9729035090733076,-0.1450117762645253,-0.5718871706703711,0.47169937633645453,-2.4760923632923557,-0.4675945311948836,-0.23538716550733618,-0.098423133268049,-1.935195920280235,-1.4528664254547985,-0.14952500609307443,0.6006913420108435,0.3417847340811042,0.44154568148943624,0.1957137795854284,-0.6754332977218472,-0.36391637746137906,1.0842554768563275,-0.6737479308248102,0.25155482897155856,0.293188292650118,-0.06472721309257977,0.10112465323928581,0.5076841189543402,-1.2078486310724443,-0.21559667284411824,0.8925105814448333,0.8046148337914588,-0.09338779453311835,-1.3216211152007746,0.04256848000848243],[0.3444236832713324,0.4725313418872858,-0.8838376438213569,-0.8423320719875306,0.8959284224864088,-0.42394259369769216,-0.07119719751209652,0.23648749938131317,-0.9040384363450594,-0.763973495859084,0.36140932482075344,0.47453532021678824,0.23280720662489668,-0.6292295246088282,-0.8589233600875118,-0.10481473630206582,0.9282940976196853,0.5782232562385637,0.25363172874025125,0.134665347279948,-0.6697257418693432,0.031742179109531414,-0.12961148331679404,-0.6152754685475174,0.7566575446686918,0.262665026742955,-0.6623860665175177,-0.7048025833428969,-0.6663883562752845,0.11435710650018126,0.8134676089686326,-0.13485200276723147,-0.5650504666556925,-0.4547538452664072,1.0342418356435932,0.5727822358584711,-0.8709353907556143,-1.0644990685095177,-0.3520168682770327,1.0494774327442629,0.022834101637126885,-0.7545370565889581,0.890037182639336,-0.4153153290212276,-0.3891083221650487,0.31514896717047985,0.15177479710269776,0.3131742826440724,0.7201213206293896,-0.055161822676582095],[-1.074319872700534,0.47089191615209736,-0.25313136886318816,0.4308576368060786,-0.7758540509033967,1.7574087356546888,-1.0118064898578916,-0.5821824394201962,-1.2123336718923905,-3.644849858591956,0.6679017187629981,1.5430080275781535,-0.8460296215220068,3.170614609161495,-0.5999225671516579,-2.7517105328841036,-0.4299448578783009,1.50024943457324,0.4907723900709873,0.35406459156191344,0.22044910324942052,0.7062707174817091,0.38803408290051683,0.9548758042931894,-0.06831972538547416,-0.21482130649984213,-2.137657668180292,0.6758471572842287,-2.729135476576323,-4.773846711029169,-2.1612245954899487,-2.252164664796834,0.049197669957322394,-3.776354337884418,-0.9118041489093428,-0.2653097138238073,-0.29464174058768106,-1.8539551845060198,-1.3887937870021425,-2.346769632662482,2.1703523549388404,-2.1642564147343553,-0.3611829943399125,1.46734138417197,1.0044425944838227,1.336491078771565,0.6823630731725226,1.4347824658329869,0.33427788621110244,0.8460159887586346],[0.11783174787592192,0.1061044278993464,-0.9433607256389671,-3.1157632920078693,0.6852607323012895,0.8209280684430801,1.114015282901048,0.4275621126432128,0.8647495026992216,-0.5397251580336835,0.8668373609235329,-2.6051235310281826,-0.6734544083535006,0.11438129350692393,0.863366374548429,0.3008170312224711,0.9538977991590035,-2.0415759645524822,-1.1148800961637613,0.3482869672665118,-1.962948471128092,1.0228018850944913,0.5078737412201951,1.763644748394177,-1.2072160375286818,-0.4828933166861949,0.22940135788435084,0.6083580635067772,1.1243548785317568,0.26758082789625703,0.5895758494893667,0.40968490825062537,1.2058897002313524,0.8506044981194447,0.9470574883550573,-0.4001674185712672,0.9748930760612834,-0.22998314600100958,0.02656010787018946,-0.2747183170197976,-2.719872983307477,0.04113540302937922,0.5305288084900049,0.569270400697045,1.0126636732546628,-0.027319888352347672,-0.39937411417417756,0.3200469530578035,0.8974837521713656,-0.0447372247158449],[-0.08705831155083742,-0.12943847835337205,-0.3663521796517182,0.13101177968397018,-1.2384797842960313,0.8082164062818775,0.2114149974584905,-1.2297213770627895,0.25921360705315977,0.41414943615983973,-0.5664581224644349,-1.8204744402511017,0.24933145508256888,-1.6566031604791223,-2.2570394729859347,-1.6255512764460873,-0.733857659605093,-0.6139067702159423,0.5416846686924613,-0.7187751791257773,-0.5895401641350009,0.7714195859520415,0.6935790538838785,0.791547025552144,0.14445428674218525,-0.766654996780937,0.05315258115414352,-2.18653961002796,0.567164734478283,0.924302184119351,-0.8121094837825773,-0.975471965310748,-0.21925486253734341,0.5482908093159146,0.1112271569895336,-3.046017515915411,-0.0787580199558775,0.652290510494802,-1.3853461680807588,0.1906396890665589,-0.21503655524130802,-1.0229466975339758,-1.152419559739526,-0.42569718175394194,0.2862537827968999,-0.9624517916375638,0.4158887603832092,0.1488644437657259,-0.07379993125490497,-1.3990990193225412],[2.153370937692414,0.29362224601388726,0.396389884060476,-0.5148020837944742,0.7430058056689286,-1.5505378033020345,0.8319803410928531,0.7842925392247339,2.94816432901635,1.17096008943933,1.1260990425653314,1.4057791006633464,-1.8213638656802624,1.227868408890952,-1.251203728981212,-4.3200411352433425,-0.6696345626272705,-2.0675148948386513,0.8445008558330084,-2.5979392794445615,0.4064152668371712,-4.857827939826295,0.23417201913559973,1.3008580157338143,1.0930280028427095,-1.2360766510553636,-0.47522131166663634,0.9397090849214652,1.7414018397083044,1.3988998065048415,0.5215604325472029,2.0762059299572906,-2.3339061254576703,0.9795309663618544,-1.1825036107777533,-0.1363585724068166,-0.8345201025620541,-3.610443000508631,1.1260929182695139,-0.1841146424905623,-4.029338507703268,1.6778629965954504,-0.16298050072746065,0.9378258702779199,0.9185745881215305,-4.049970813551071,3.0217679333230425,-1.193792484399245,-3.6058326935837144,1.590832036545392],[-0.8525594073056918,-0.7606600401636586,-0.10065101072953019,-0.8005419433868833,-2.5142430310410333,-0.055535704470048124,0.2380735727836157,-3.408518159943473,0.14054657232758286,0.9346994233170327,-0.25376174956943176,-0.8630361880615691,0.13515210788240978,-1.58099158978495,-0.7553944914004871,0.7196049563629782,0.3855271568846825,-1.524361834927106,0.8593775473051086,-2.2161223407798025,0.2620777211643156,-1.2156515980282796,0.47140237628004417,-1.751512612999899,-1.2904651689533797,0.6415318540400908,1.6060113797375644,0.38486490635871606,0.6616810838052618,0.5671919278410963,0.07152892326155827,-1.3624683098292218,0.5563560450414994,-0.1056733025148529,-2.85109871336555,-0.09174792367277762,0.03972948926128471,-2.408166414471285,-0.06116228794048997,-0.43767930841041003,-1.0679159026065275,0.6968470420467329,-1.5046379347110457,-1.418036860434988,-1.4638424700156745,-0.34013442094338847,-0.6095469905662593,0.5658843369952807,-0.9345113298730648,0.38368884064185316],[1.0951621821833297,-1.2876185120927537,-0.7781787279897437,-0.9598127158143777,0.47841961198752764,1.875838239481718,-0.8075350894374347,-0.4628270713815053,0.0023285852061418395,-1.2871072515433202,0.8963086663148717,-1.2045250470417657,-0.8859126341532432,0.5691079957677049,-0.10126386619919149,-1.7179739965559453,-1.1827670853889074,-3.0120279352532613,-1.186159450664654,1.3805955881752776,-0.582610434563303,-0.93992339351183,0.899339052150329,2.8972723286202715,-1.928935950375145,0.09512298119240188,-1.091472256688726,-0.2750967983130598,2.312843280432844,1.154482608588364,-1.3690616067118253,0.656922034729464,1.5872844813344364,0.32146247527411265,0.7923193951818389,-1.320043519444436,1.3920669853820742,1.2447229608309252,0.9254310042451422,0.9362107783098476,-0.36493783946678204,0.23734968444116866,-0.733028079277907,-1.4203184579814587,-1.501068671478066,-0.10459399316591853,0.4762211480520679,1.1942793265147764,-0.741170661879621,-0.19718279662179206],[-0.18610584887046874,0.33615805823699363,-0.5991808915664129,0.31359996429697606,0.7313037793200552,0.15536334910776506,-1.0347748900486522,-0.030483073390338476,-0.3664859771273379,0.3425504752201965,-1.5941918842951737,0.8101832296194323,-0.193188455799097,0.28529858970459787,-0.4684287179009716,0.3424342680825451,-0.4346429169585506,0.9446470843332397,-0.5596889838696181,0.3171226457418631,0.22676524829873673,-1.7932669697903687,-0.004745545561941693,-0.0210510615357261,-0.8274288724023731,0.9026392425574398,0.3010734885119812,0.08623402011392266,-0.34104314976028954,-0.6910840293752047,-0.7761994870786284,0.2992428115849687,-0.198627177709038,-0.07885238011836711,-0.47838350170044885,-2.3438424472610784,0.1364664481349111,0.02574537167528042,0.5342227991925425,-0.22802507764348545,0.3210290635191824,-0.5238662195674141,-1.1676866359984055,0.2887010573164094,-3.3468557283412963,-0.7424507886548732,-0.8035686209075675,0.8968356673866456,-1.2444322090791942,0.1463617901767261],[-0.4025163609768645,-2.1265602406507664,-0.11635561359196325,-2.55274896851086,0.6475289182716911,1.3239069418783904,1.0317786561132456,0.5215980996579778,-0.16242198315826462,-0.42104726772268153,1.129738501235327,-0.6788585642403765,0.6791403218263959,-0.40405002881129576,0.9658114919130876,-0.11134409707339553,-0.8572764637282568,-3.119332976061722,-0.44321239078331415,0.02631281613251448,-1.2772839378666418,0.9094957607790745,1.1075600542466033,2.36798183675462,-0.2654499254260476,-0.8414419090991445,-0.0215378483545732,1.6313340701490846,1.113283577826395,0.921372269781183,0.5371621563233251,0.9597544278076003,0.7163826933122291,-1.6322988106981224,1.6281444947024901,0.6307451736822097,-0.34395311803097595,-0.3473373783494224,0.3284998451808279,-0.3196933213919346,-2.457478680782495,-0.8119209874190211,-0.035920337297223034,0.5112272298296237,-0.26671205317441105,-0.8850020258556811,0.2446947559892208,1.0806161430685621,-0.1180080221711701,-0.7943066601422802],[-0.03885556206427364,0.3435345279900442,-0.5667365378915717,-0.16853571337859632,0.373830986072302,0.2630604356903932,-2.727481118932311,-0.23147419370134975,-1.9267208161194669,-0.23546800246699723,0.926074342089162,0.7521872496621689,-0.0209363786388086,0.0775673005954773,-0.2457786188209083,0.31727677535611354,-0.8561825063914298,-0.3981464488770482,0.13546843285696786,0.4836275225951734,0.6019953992090267,-1.6379958133020849,-0.12518294470456523,-2.3167054474002415,0.49069820757917776,-0.4385077816911476,-0.14240873783458846,0.5905404066715346,1.0679789963660684,-0.01931848548431715,0.568232851039802,-0.14010929302433844,0.7387323285846831,-0.8634272445344551,-0.40670656657248333,0.9363313622685401,-1.3215400937327673,-0.8346184556600252,0.4294738494586817,0.5596827414089809,0.9937719362209376,0.13864899151923477,-0.3966127141756884,-0.07013873692768094,0.4207785056162511,-0.926765679853021,0.0686142838690633,0.6113186383036951,1.0324801954968603,0.42615563893767705],[0.8834049152376333,-0.5105995849309374,0.34408125354414626,-0.8609857643546543,-0.46749869533216326,0.8009602247641054,0.5947371454198409,0.7267298312252733,0.7541006211102611,0.8708262289192717,0.8334061546254157,-0.4088167840609067,-0.8685998984356245,-1.197884507295132,-0.9476643029853977,0.8378618569708052,-1.1102551670390355,0.223903753926146,0.6746547524310035,-0.9055717827585333,0.8048163817486462,0.8938655610595316,-0.33381799226267084,0.7016188072102371,-0.09853075298936517,-0.6340837762567462,-1.2865256250113382,-1.6833430641882996,0.09639803649331403,0.8785893822135765,0.5657017006932628,0.2805207412383538,0.7993113920996973,0.5386926140062207,-0.5472504853027726,0.26773465707574284,0.3849596801636873,-0.44772823545585466,0.6446403303824804,-0.8478831556729693,0.7711086260405734,-0.4060343926179985,0.9143794569724827,-2.796767446554097,-0.3159785548751563,-0.07473714301005999,-1.1351153627488895,-1.3313526521202352,0.1287169318895438,0.6730723129316069],[2.3102477634805054,1.5817693541680105,0.08711395135886763,0.09672098580653318,-0.7884584689872693,-0.33095988773160334,0.9684418683174824,-0.8672105624855032,1.1306943856604006,1.0101014838028488,1.0167352774465983,-0.2898922014035057,-0.02113218917222013,0.15540210149970354,0.013473442215226138,1.3002173643146384,-0.23171827225584504,0.6979965299075507,-0.0940317916228379,-1.8392252126509374,0.21114089546239387,-1.5761831407008107,-2.9346650382562753,0.7458504848502728,1.8153864656747711,-0.6000073447177048,1.5702519757518802,-0.019417776571924887,1.862217493492556,1.62547486250649,0.10811170961714515,1.017651446643584,-0.6719687708165731,0.28796640558027464,0.7637694791744338,0.8836713875892321,0.3264466217815917,-1.1762123469522887,-1.898816476781335,1.0667451183011225,-1.5969950600254128,-0.960826497242595,1.2618416407578366,0.23132738608632325,0.15019814809429285,0.08392518488476122,-1.9123381967148494,-0.7584337018196512,-1.4495866182379824,-1.3534103988246466],[0.9862239956849393,-3.0969840170550955,0.709297484226362,0.003006834178330482,0.25243587646961074,-2.5845748982331616,-4.135062033609049,-0.8460138262771632,1.092244625629925,-3.365745889267271,-0.31037532056508116,-0.9198268008290104,1.1031448598640543,-1.5120595364374187,0.1258800408461112,0.1983086122905659,0.2733236397501459,0.7437009939939726,-3.0327367297157255,-3.143533131347489,-0.5305698337648748,-1.557223237613026,0.18922471298798485,0.9655177100772577,-1.3611594815271064,-0.6457788695203918,0.022200162226035637,-0.7165866025020072,-0.5571060146703539,0.8789807944587815,-0.11845255165349632,-3.0396589875186075,-1.0807991381173538,-0.9651576058296022,-0.3059318622669956,-0.7393573487106835,2.0866936029536123,-1.3544896884361495,-1.2082399342541266,-0.1682536635813504,-1.3154847138361996,1.0828936227036716,-3.234906049371568,-0.954803660550854,0.26127373662060555,-0.64756898792173,3.4470476164314117,-0.05184086057526379,0.6529763744581324,-2.9022107487456674],[2.0962190365726667,-2.829171979794008,0.8849981272051491,0.5701204497099754,-0.0957270814322757,-0.19636266669287425,1.644159005600219,-2.2028163258388984,-3.0123969283741365,-1.536977557066578,1.1888591429824917,1.234395334221702,-3.06142010961186,2.4935853067516125,0.502837973371615,-1.8498095762325872,-0.04883481110878026,-0.3480784589738175,-2.408536438542618,1.279562090383701,0.7163866916347712,0.8884146172438344,0.30222195006297464,0.3389481598586818,-0.49343546336236105,2.4990830703498204,0.7055268486690693,-0.4755797871330071,0.5734978178347474,-2.938392318953823,-2.757374396469634,-0.44730440610381184,-4.7641579074058225,0.05142836586903072,-0.7893969383085399,0.38601550589403216,-0.2869785104102366,1.9640665713866388,-1.7700184056122332,-0.2920180636770479,-3.7339152919326213,-1.5497679738554508,-0.13881282774766682,-0.8792852614401946,-0.4066598083501057,-1.3173354013391156,-5.675234222292485,-0.35457172178815605,2.083959143437276,0.34462035095591115],[0.7289705125042878,-0.9180767322472827,-2.249074956680774,0.560528318645128,-2.122650315198759,-1.847990400501866,0.6726803584142439,-1.136605129214774,0.1284849234902773,-0.10012116893513569,-0.608522797875221,-0.39049801806695017,-0.5204886965616639,1.0176184722003576,0.7794960467536078,0.29041703768619836,-0.37591403552543107,-2.0717494843183966,-2.4535974556537004,-0.4952820524738546,0.4980934987083834,-0.5306249939449857,-2.731046887914073,-0.3595831746522519,-0.3239146594945086,0.20868119530491427,-0.4638612204110466,0.7454237322414136,-2.937793779664627,0.5177165502103156,0.6011427884404661,-0.14713358328733814,0.45650014897906016,-0.28824807369235306,-1.577174747262116,0.2881535214370038,-0.24081219718328561,0.4263145345933578,-2.183299432305605,0.7354116568180984,-2.6395991084560064,-0.8989086574705263,-1.7084171962286534,0.592191359647713,-0.6014818236678611,0.40127302095908757,-0.2240851596918313,0.46164397041241073,-0.3435648974590344,0.15488453869460675],[-0.2280000242701332,-0.10603067538915997,0.40961241762269485,-0.6804127826929266,-1.2642625911934957,-0.18609332556496458,-1.1438898472651233,-0.7565054863145827,-0.12571164907376428,-0.03339753443803217,-1.1557278626739684,-1.3703414369969849,-0.7591612448613716,-0.21209735048581282,-0.9428167121509674,-0.31182346861808113,0.2749141211811377,0.6709093219378791,0.3730431137414482,-0.9117399129320476,0.6929902010990598,0.11565060336577747,-1.0072135975606322,-0.9983300722080709,0.29970876617560743,-1.534486336909971,-0.8536003809556159,-0.5176914597817766,-0.7455532896512832,0.13496332033207695,0.6155158044197017,0.0749856196737146,-0.5163806598491538,0.5176479832649826,-1.1285137923857542,-2.008239174138181,-1.9409797604278078,0.28870008633068117,1.3450016602053947,0.42077950739773573,-0.9926959296893754,-0.36869331549619183,0.5542910811850381,-0.8322883914373311,0.446425417708177,0.9074705588616722,0.30527963742168046,0.48354076860332673,-0.8960298454001497,-0.8584101950050144],[-0.15984613130470202,-0.7545813015235957,-3.911908564782984,0.8226015341318309,-3.1216998007042585,-0.3124046823360341,0.7968964217150554,-5.122333749323999,0.5189671305544111,-0.5379138095061001,-1.144070134739754,-1.7223528017446301,1.0810107463057597,-0.5912424297292536,-2.7972479895544673,0.5559076789866477,-0.862633662980977,-4.702585596413376,-1.513294173643996,-0.9428864303989258,0.7675024588097533,-2.1491294749128675,-2.2370542332916923,-1.7123010650236539,-2.5912082672880086,1.36511445125435,-0.28487901196898985,0.002951495397875384,-1.599398819362315,-0.47149270511834657,-0.8917089487423783,-0.5514475595933102,-2.550054332274796,-1.0503294763461297,-0.03565874469800475,1.0318797137384192,-0.9430913957639717,1.4934407504435907,-0.8578400778662687,0.23312696129792404,-2.3825730279721187,0.027073297430088517,1.3804030995563477,1.42007899892861,1.0886459744489274,-1.13673521712497,1.682269381901384,0.724252280000764,0.16777484998034595,-1.2232149699323753],[0.843243153112927,0.052150455568773624,-0.06586502958069963,0.19642000635248982,1.164944875157114,-0.7402904845441046,0.5641977935835315,-0.8767832890544915,-0.012317807817896593,-1.9958357084606102,-0.7346565325783618,-0.9714214674444831,0.7372345292513262,-0.8994345148822378,0.39623628017089546,-0.09101234338891111,0.2115227512278537,0.3226106264158298,0.3514061095830153,-0.17780224316419416,0.8856423869218973,0.10320914944731018,-0.4991776062141472,1.3340237713409915,-0.44135614751859675,0.6871792595805956,-0.3935475555820019,-0.13799480073179737,-2.277742317679546,-2.2334320055123746,0.045316006771215105,0.16976338217657913,-0.5662600677450137,0.047233752926230034,0.4361603141805582,0.7222982487185773,-1.0639065750973014,-2.008458040167307,-0.07609808943534255,0.9650079311807801,-1.1077902987204264,0.267462281443396,0.9440046292244963,0.6056052358899253,0.3448435602756787,0.3484566326245953,0.8799822883669932,-0.9488691394855271,0.33243614970314744,0.43747082916378355],[0.4098386817377917,0.6518108833861612,0.6119480135203458,-1.5322260884956864,0.5345638116034799,0.5029931939144611,-0.5736511811236886,0.4273344436144168,0.5570784567364633,-2.576268403790505,0.7344699811016747,1.5403490147851577,0.2855342776292254,-0.40474992382400726,1.5064322073329197,0.5415200234737136,-0.8048172724464946,-1.7146368800607894,0.2922923496948218,-1.2917238582914503,-1.0732389687205812,1.2158078680894426,0.13115790975408906,-1.3244568606369083,-1.2755455631711907,-0.692861837356707,-0.39779847319398676,-0.9487198103912139,0.17529635336585267,0.07657710464731843,0.513686444081342,-0.1907033369937349,2.7381249499777405,0.38461070049648666,-2.2378557908884873,-0.4071175486744248,-0.9124785102435296,1.0637989582127312,-0.6176579167656537,0.5030419597641484,-0.528592915161215,-0.27115375333309805,-0.37746080800280596,0.5343861529813196,-0.3304119250935454,0.6228785278222133,-0.5201454692480834,0.9365686385887918,-3.448963625723686,1.1628642747468632],[-0.41077432774188266,-0.1767070015007345,0.6883049792543029,0.7855809229339789,-2.50912975360992,-2.349271321968467,1.621663144553365,0.32075576533313604,-1.527287787894758,-2.1116485431161607,0.8503719420895446,-1.840413937574794,-0.15805182161991407,-1.4827487039875036,0.0982256159957178,3.3239050193088047,0.6730778193951563,-0.03690806786563112,-3.3734422966700923,0.6957356469402494,-0.4014523844083661,1.5162102505822657,-0.6613405263664343,-4.376719655876432,0.8403793198692544,-0.3970864261435307,1.0918851346730791,-0.04454843438378375,-2.6845825416860576,0.13649283475702098,-1.8590840840066227,-0.024458772944133303,2.5230882091185,1.4587345333066835,2.2599710541136098,0.048280809220721796,-0.04255879151445106,1.9020124761996975,-1.7212938058611416,-0.34821445598426204,1.8738128543383272,1.232831039256533,2.1291987001188177,0.7692542726150652,-0.39978692526933907,-0.8487333383479474,-2.069796416650069,-0.2701592552590483,0.5938209259636449,-2.300935387801381],[-1.8664577503131683,-0.3743658439916862,0.7620028941334183,0.6013843001305961,-1.5523351835408046,1.14236579148605,2.053312588913739,0.7396171252068054,0.7998883054414809,-0.20000918190245337,-1.8234814267568635,-1.132086172320312,0.08412872930561038,1.1088949213174657,0.5273706730500782,-0.04869743026011378,0.7216713414938133,-0.21647967498606738,0.26919398929768634,1.1515356724591157,0.8793195049859782,-2.253504143803734,0.20599726133109247,-0.4855419108239741,0.5500249510514825,-1.1072639898494516,-0.3813545699475524,-1.6548785257523244,0.11061003263648742,-0.1136251635973334,-0.8179658818872098,0.09599614629130952,-1.0391389350167792,1.143170841527444,0.7426253258377113,-0.8902629860822695,0.029393055584594617,0.7677027453952197,0.22083429473619184,-0.9200398744297816,1.7166143864784766,0.6482879350488324,0.8544526177737916,-1.4327244496217653,-0.20458373735081772,0.17753061852865581,0.4481418240269584,-0.7402647873902906,2.0078843004858102,1.5601194212366232],[1.0449192647578605,0.6033230512112621,0.5916011003927931,-0.10381047023132249,-0.8469802549154043,0.18001304303021234,-0.227649673740832,-2.058396900970898,0.4349163642909154,-0.15567643833225245,-0.5048647521031127,0.6327194727867708,-0.9386663764759389,-0.26099302690144055,-0.17944392185872413,1.3216125523616082,-0.712033670070084,0.8316188617625533,0.8040911106632436,0.5486359970225327,0.7866805555498787,0.18948826688205414,0.8174658247986828,-0.3063540321445595,0.407811127278829,-0.01677184824577772,-2.6580162278886346,-1.8986015029115357,0.004349313597982716,-0.16017146954989245,-0.5696985066757303,-0.6797892099676998,0.9853548917691826,-0.4723049791057301,-0.5927584897929374,0.34778163967049397,0.3562668158912005,-1.0169843721644636,-1.1558418269528117,0.7101356771159975,0.22564375561471678,-1.05920509269153,-1.6159185569205543,-4.086465586843502,-0.5460634207475882,0.3624658658913223,0.4786930423245032,-0.4867056739921459,-0.21759360074862555,-0.3765368593551019],[-1.5034608549804767,0.6154552897885619,1.122364242269289,-0.24865692518471533,-0.15748894854638953,-1.3626879332647306,-2.0269996666604575,-1.180087773797616,-2.8592543909832413,-9.89994800119124,1.3497437673351653,-2.3086605718898614,-0.43225714451014935,0.05437983251433926,-1.227363344796343,-1.6114618272404564,0.5283242144213677,2.2011577682814774,1.3627558600992309,1.3078908681381016,0.40352512670904234,0.6763321794749901,0.6441753816325936,1.4775030336597506,-1.2883231585132127,-0.8204027179907757,-6.6234834850252575,0.7739123179897784,-5.919670673201191,-7.830943130169731,-2.039140418701496,-2.439314209848954,-3.5619185904909783,-6.1927896191740315,-0.019136674141429534,0.0841328407045984,-2.283591158928608,-5.2453106331099875,-1.813528319516895,-3.0192592162584693,-1.309689491853445,-1.4299945325020103,0.9246941617881516,1.0472139339428732,1.347955502411844,0.5063045687493478,1.2433788758034419,0.11211490681627148,-0.31927917101439046,1.1127005829126575],[0.8017515939349616,0.48460590416829075,0.5056938377053527,0.20849352516497632,0.4980600799697124,-0.04094307500351541,-0.7053311213533526,0.6709593961636734,0.10200545839818295,0.1534346572096314,-0.39197523996320893,-0.78815769473425,0.6848206748610559,1.0041549960231893,-0.5570742609670206,-0.26546536398920945,-1.4910266693928869,0.14828682975427013,-0.6013736224016989,-0.06757545301562602,0.8151626646082949,0.25604824580565805,-2.0734710762903297,-0.9685377289407981,0.7527938398829207,-0.21206952719380714,-0.35091702429532445,-0.1867891633825286,-0.4338945683555815,-0.5201596820201277,0.773042849088698,-0.7350659831046028,-0.10243219059708793,-0.4488263702750842,0.08400409029405317,-0.3825286003513053,0.5316267042598373,0.02420110348601075,-0.1714710931340532,-0.672701352830261,1.4552085992183474,-0.2833165668636187,0.2645033386029281,1.1342975846664884,0.08323377952040963,-0.17934358460672545,-0.9716893418263871,-0.2661846869673609,0.6741960568623232,0.20589247150743034],[0.04451517931810758,-1.3944609556626886,-1.1167045604530061,-0.4849592907981959,1.0277009031543693,0.20563328985358717,-2.5401467577813803,-3.311451224910794,-0.8787898262212612,0.31185705827040644,-2.950441677098631,-1.4754492226775875,0.767906507826645,-4.145620040907266,-1.062017317900009,-0.5332598156984835,0.17430292969226807,-3.8814623757911186,0.702562660513168,-2.7569452908708074,0.28108332430264354,-1.4789746433490791,1.2453673421645541,-1.8468256204453992,-4.028159379794686,1.3077117735261412,-3.3374457215146727,-0.30430356220522653,-1.9892156850580751,0.4335949617011295,0.34095750069054614,-0.2835576946161252,-4.574296070878528,0.653318247050002,0.2866126008245585,-0.23240102771590232,-2.3173469778304376,-0.0019979566887009595,1.205678597029855,0.9135991238077874,0.49874956900639555,0.11398285949211097,-0.24627656624552222,-1.02657530271553,0.08809645827135737,-2.9195136603313023,0.7829991961690161,-0.11102259585081174,-0.43584631012802544,-3.2622403598344096],[0.34377250227965284,0.48098311862184784,-0.19080693714318123,0.8667402975314363,-1.2801421905747623,-0.25151397946602805,-0.14740806603582657,-1.3022052618212379,0.7076270321829006,1.7087195489566869,-0.7746988812308734,-1.9381160912991369,0.2750660590534478,-2.5917353993370615,-2.9119102403631425,-0.12076525934183757,0.5380769198842394,-2.508302684762668,0.9352462677972998,0.6952303162135024,-0.09024266246849168,0.6794206340846557,0.704566155815285,0.589360169637387,-0.49513611404392277,-0.5580110348802115,-0.3910123806919625,-2.6070809146848593,1.9370134759724122,0.814530751009808,-0.4613113201400623,1.7944348918339088,-0.21349173826642576,1.20210659144337,0.5445912660189891,-4.520794251616082,1.193391368857417,1.1062039721167434,-1.1387999097277532,1.826646619634012,0.4538130416599452,0.050898861443526885,-0.23113142589311653,1.1229988200942678,-1.3437452394781937,0.28919327358312563,-0.45702400005862553,0.8615011313349488,1.9177750093926347,-1.487766453764629],[0.6097010791746134,-0.26016987773221445,0.1693740094435689,0.18572508788904682,0.9201528564392052,-0.7310335646345789,0.8322497755000665,-2.7212885709879813,-1.7889100699852374,-2.582047538770051,1.6381348077037141,1.5522863792023238,-4.039957625048941,1.7902566095548453,0.3320950254956108,1.4852276673802922,0.4573205000054966,-0.749060715190051,-1.490771965498407,2.422239953290379,-0.6066531106122891,2.8500915581841,0.0034514202992758604,-1.2362498061292613,-1.0232504366340271,0.061959081440233536,0.12138905451274373,0.5472587694602175,0.12519794814609583,0.4113552871902,1.0819337400005697,-2.367082235362455,-1.8894379979397755,1.2632235526579074,-3.7421326456358375,0.27820635572487357,-1.6564992751314616,-0.2738569407092182,-1.5082374315938865,0.7150587444627193,-2.333681259333014,-4.135744241410223,2.5576545017861507,-2.9971302650114175,0.5492753474604309,-2.8330226946507575,-4.496290503821421,0.011812711469165838,1.2062010785823147,1.9189732605646148],[-0.7366530172077602,0.3714830116298582,-1.4182732191314245,-0.4587994920023174,-3.185608026105865,-0.04216746829325402,0.7130266968413976,-0.2940589940173737,0.6508026543794518,-2.2241123648234957,-2.1516625434532406,-1.4875313800259988,-0.21681094195491174,0.8258823096391551,-0.0435422920145896,0.09902432891338635,0.7407607392807622,0.5838450338355927,-0.42871294553992606,-0.08065001694946287,1.0595248931543921,-1.2934677365991292,0.6097332274189344,-0.6238159145876429,0.30543872892581325,-0.6440665679063365,0.6659601136002673,-1.9868597966444888,0.2696415715618278,-0.5707741998710407,-0.02779574476382904,-0.345079434484242,-2.4701757582252832,-0.6971814461838503,0.7335954462566037,-0.48122991708465607,0.009905213687949586,0.5980702949497632,-0.47724869189539376,0.5615915663609914,0.35459288429376096,-0.20836927306095865,-0.1656564256351257,0.4005257656924506,0.5737491198801161,0.04800532002538197,-0.021620638938945315,-0.5462578891234625,-0.08720063058396829,0.6351163803064968],[-0.21115533140955076,0.7372053379760553,-0.5409740266097042,0.754921194066649,-2.707859628763843,0.406223956022188,0.9879594939254343,-2.251093371819779,0.5543851932656094,1.1930634700674503,0.6660056630425143,-1.9433508734389953,0.39280704147964146,-2.885191852628943,-1.7231928309017381,-0.5898928479144361,0.6639629366450961,-1.973181989404911,-0.4521552800668952,1.6043823863930817,0.9858569408884638,0.43040756346851744,-0.5314011183600426,0.7580291822948909,-1.1948675268788649,0.5610827464168544,0.4034698730370207,-1.5095674898655018,3.0124195927004145,0.1226079834021783,0.6151284517151938,0.2432046114184813,-0.37429863516606693,0.5942738080489549,0.36713601155716413,-4.645575099822315,-0.38512070056290065,1.2603470453291121,-2.5272127109708795,1.5031166436541372,0.9278894840959893,1.1472338168894747,-1.3373960879034423,-0.2269680181728964,-0.4538081270044765,-0.5175550542882258,0.5886006054734665,-0.3122537028357825,0.6741060520523695,-0.7912652192997824],[-2.8727052031799247,0.19073035568384294,0.6759777146163882,-0.21524826687476442,3.4550206282963973,-1.4765963019860657,2.4811595623569582,-0.06257991641582251,0.5178696936854907,-1.641066761510603,0.947344816261931,1.2424441475142856,0.9045670980677101,1.4915906364608864,1.2501336600543305,0.545777094907645,-0.5557210472928916,3.646812041603096,-0.8243685072702899,1.3983273019360773,0.7894179485711538,-0.8998587944967004,0.8320401241155612,-2.048913531526629,4.200413532572899,-1.2221505339755319,0.17621624589266788,0.5914771778153928,3.7795599294161892,1.913721825431044,-4.280410638488674,1.6540096202760817,0.8449475360978429,-3.1544991266898563,-4.3986734285062346,0.8284346344163291,-3.3904314696559443,1.881222738439909,0.8362561057158525,2.55386059487957,0.3892399721700188,0.9419323627524406,0.17723340930586626,2.577140637471891,-3.847623008565648,-1.099752843268675,1.840357904488409,0.013756500716521894,-2.4877518714839892,-1.6539637104400453],[-3.1347645656482634,0.9746511770420614,-0.7608652668579646,0.6586854925220446,1.5845160225265096,2.1796218159907577,0.4641455864953015,-0.08963434232877232,-3.2846700527440946,1.4556740893119773,-2.4713332168187634,-0.12537728633311226,1.3563847503095567,-0.12938477413371263,-0.7881435425173522,0.6708075899273027,-0.55369014291171,-0.6690019430844809,0.661442161863884,1.7219353890556215,0.8155495296500654,0.8617444772678825,-0.26933592366098874,-0.03304670268240008,-1.2602932176616233,-0.26368415847473103,1.5014579895715203,1.0730826390508614,1.119761218382265,-0.047993355238333195,0.3799105469759742,-0.6296911439735319,-0.8292104461890389,-1.7922847826917434,-0.2951304607353486,-0.15477531386731228,-0.8698715266386883,0.9658017153359171,1.9614293536662144,0.7112596441461351,1.3279882596089734,-3.2287505449054894,-1.9834798899785668,-2.8517483769972096,0.15673903717567045,1.2945371920687498,-3.2335662216859076,-0.215908792230363,0.25199918803249954,1.7956623594207117],[0.4428896790027818,0.6715975213719774,0.680840009258612,0.4603748071286192,0.856506193548837,-2.463318611899666,-1.7995312883760373,-1.5184985954562442,-1.0388096249044843,1.3541316999549307,-0.9175021384840802,1.5130183518410238,0.4516861768681993,0.6161821958163378,-0.16223180531663714,-1.5187996304783926,-0.24360287776087203,0.8637757238817472,-0.052264303931474,-2.34197366188381,-0.15864868326926113,-0.8064686175669765,0.5219828833057629,-3.6863778724127187,1.2926796908416425,0.3976139772845434,0.2825449720249473,-3.018577492954073,-3.7872739868648133,0.2225302256855053,-0.7361113141699964,0.25033748131434636,-2.2088289974514144,0.8074055237850418,-2.7255658362776587,-0.5554317531564237,-0.692474688591932,-1.1666606494864167,-0.7127045951677609,0.7271963896786944,1.4837265661894294,0.0636129188725684,-0.0007568219476018488,-0.8576567959928892,-0.6436365834850168,0.7006698725654366,0.658232212547888,-2.705864769785117,-1.1958108761881614,-0.5860090314834014],[-0.11936762568020462,0.5397695562895762,-0.2310702961345818,-0.49955007997210726,0.016748978069788662,0.1829940125933864,-1.6137209254709286,1.0000633999330957,0.17159291783455738,-0.8192818367876881,-0.494205112696354,0.604655490709683,0.3444369619809838,-0.653980521618161,0.48891338012736746,-0.11276603090766144,-0.8559456444757311,0.9566021779423318,-0.5713746350894616,0.2805275161698472,-0.4710566361137096,-0.7374644825070008,0.604140223208898,-0.08649333299056629,1.0293161321010351,-0.06454042898038206,-0.20569545273463413,0.8299272766447705,1.0680814990488745,-0.009045298217205113,0.6413869403502941,-0.30018087098339047,0.27770119713487407,-0.3288044711762315,-0.04174834668214949,0.19038840165841173,-0.5116483102276088,-0.8047204496776572,1.0471748092366249,0.23804995623470443,0.5899824705231277,-0.1555023898528551,-0.25349134869138473,-0.36502820912362827,-0.6935675311672717,-1.707445973939563,0.14819958440735756,0.47181006191234065,1.088383333322574,0.46716710885904095],[-1.271443596554378,-0.7033093366116278,0.34472375478487016,0.09482736477366023,-1.1831183134729908,-0.19876657696374248,0.8365766300310338,0.6636706153457105,-0.47519668506693274,-0.6548379280122579,-0.5776470471792656,-0.3854482240370235,0.007060412057485372,0.37760460864290885,0.027967717579195233,0.7628803488354635,-0.4525304306983698,-0.7250494112719962,0.9961316259446074,0.7794019874292692,-0.5931812277819047,0.3206365483216906,0.43114918561968546,-0.6610235380871364,0.08618698048397237,0.11075367717571814,0.3460431870408554,0.7665301647916072,0.8192189845235991,0.49063199045252076,-0.13515692620902064,1.0346589372348463,-1.8035936653322413,0.9779833600822061,0.5722205057431716,-0.6237780247580781,0.06565341552479263,-1.1210730417191128,-0.1388972934666795,0.6762729965494954,0.15121674618910486,-0.36257459576767437,-0.41930440746033754,-0.13873661025249676,0.37181183375004606,-0.3050508011043034,0.47220271113507173,-0.30273131782133034,-0.7962475604695131,0.7024316886768729],[1.7264397993352438,-1.1831133527732736,-1.1311597831452072,-0.11614769379774878,0.0653094376473616,-0.5200369913586252,-2.8421121451925035,0.6577739112324261,1.6673500909571366,0.23038047898319533,0.5433538867928634,-0.3518774458967702,0.049315911690852046,-1.2886318864841857,0.29944021981240426,0.31505474054731514,0.3067341297103711,0.007637351431982063,-1.6972456663320648,-1.5201876503251979,0.07388754090538205,-0.6539174013969938,-0.1794253941860556,1.634833688615546,-0.8743887997588711,0.09692239558005841,1.0565310951579037,0.0219170294471686,0.7228595681113548,0.6731125350803516,0.7679003613225195,-1.3012382098084736,0.1328632451845503,-0.8818668510572848,0.6321070995949888,0.2102761875594404,1.2182447832720682,-1.0013900047245285,-0.38879961957145526,0.4428421782975588,-0.2567222605540826,1.7572363124638284,-0.727589534677424,-0.2725470757221088,-0.08284705792029975,-1.105273409894516,3.043500179534361,0.6526614110950345,0.6301305090665207,-0.9143444703226321],[0.9663323863370263,0.40669735424401415,0.8010176861698901,0.19227906757315016,-1.8086240057121208,-0.43289942169593687,-4.248639940569958,1.4122711971425237,0.623304548117874,1.2693156579234335,-1.3087728099759601,-0.0605589866831784,1.2464647348221745,-0.4066479788943102,-0.3941223296416042,-0.3523318885995433,-3.9739163657928134,1.7894331793807718,0.22955027486876972,1.3883708543097153,-0.5038660706050002,0.7501341695575073,-3.075914352881507,-0.924085229453668,-0.28628122137488154,1.1092672823762328,-3.2289197856299205,1.1075467751963173,-1.804699468840269,0.1728108184239432,0.16289789992007925,1.2225481920064323,-0.817000194478967,-1.0213608277299677,2.002750887529931,-2.8287164400852154,2.8846551990071005,0.513779644045551,-2.5952744572743573,0.2986552612814249,1.9621182443529497,1.357273565102639,1.312316298272879,0.47563331797788044,1.0945821342004975,-0.650669452242535,-1.0286335409732723,0.720526385147269,1.9738475215056046,0.666500899518765],[-1.5154213594526937,-0.17490233498091737,0.7101758408816005,-3.0134004089011515,-1.7870124799665865,-0.8150934950263589,-2.0963687667375703,-3.9860670791005544,-1.5777805425127773,2.138588740612619,-1.937039359337791,1.0146597482315975,-2.781817371364039,-1.401986340826095,-1.1296657633888136,0.05390258341035685,0.5806572751242286,-3.910990911733747,1.2185869097029516,-3.3999423560651287,-0.13974986749441437,-1.1888510169064423,-0.2838965306763682,-3.397068541787532,-3.343220993935521,0.6717186124611918,2.5216174851476167,0.4479023332197992,1.4096697394969882,0.10047468771880091,-0.7806246419458106,-1.510121064090332,2.137827249188087,1.168990647731504,-0.6698794361286547,1.66261421309137,0.2720451757719399,-4.324380029245918,-0.1818132499944061,-0.6591610032961638,-2.8377599029582474,0.7141581251464727,-1.6482313958285555,-0.3373843483629138,-0.6027125631304087,-1.916507721373983,-2.456740988568612,0.2090831584598909,-0.9587355788784199,0.8086080159306466],[0.9174332362747497,-2.2546753096212626,-0.7080205094360633,-0.03297702278103635,-0.5147190263782444,-0.9626776123100441,-2.018200852640286,-0.4997861005359856,0.4947894150418055,-0.8545936914493377,-0.044819232978943586,-0.5839624825836132,-0.32206035018984863,-0.2284573623109378,1.4659305198529518,1.4754481179115424,-0.25009627129064643,-0.4425853016156225,-0.8345737271624629,-1.8079503800408379,0.5068719679506326,0.5064712874370046,-0.609963987405966,0.3653133133508767,0.35947188999761415,-0.6217273265453923,0.7366988529298704,0.8476150284031715,1.0684025523930238,-1.0329252307641417,1.0274142782917697,-1.7825020971150765,-0.6124704941737248,0.33773611858884833,1.1006165596649975,-0.4979551554170351,1.3746765215054604,-0.7317832907026938,-0.6101319763488305,-0.44350606196952325,0.6108383601740786,-0.20162171102649581,-1.4369451910190385,-3.826403587517154,0.547325587101953,-0.40776249453911595,3.0162413071653438,0.019404326534710442,0.965635173790529,-2.028804031251759],[0.8031835761399525,0.3553748075291585,-0.6985069369183801,-2.0482603444512235,-0.3443763663381851,0.5541297574148557,-2.726964095436182,1.3106749937813267,-2.607430222701173,-0.8281603488294891,-0.8419550740098236,0.8242381335174096,0.012950802417400107,-1.347250665439697,-1.6334961396737804,0.8974137544243572,0.47732004238468856,0.2299380204459378,0.8060630585944719,0.611660816788604,-0.3179939340543813,-1.1698763487691646,-0.5782063583481543,-1.7334497240754156,1.5208933316897104,-1.6829507584863463,-0.5671648720108687,-0.2954446468723796,1.620508956758486,1.0083229935325704,-0.6587557311068368,-1.0705751355954756,1.1379313945055118,-0.7337478096976879,-0.5941338140699536,1.0133540860278925,-2.5181033615259962,-3.0507788499791015,0.053030044842451655,0.9166598973224793,1.0659577103175453,-0.0685641754779346,-0.5634858497835951,0.1788652312270631,-0.5215735924813685,-2.6611430378448993,1.1785550854996476,1.0622915060357154,1.0347527920036146,-0.790176703371091],[0.986404650930192,0.5221155885636289,0.980477761890848,0.014354035243585505,0.007008982775698082,1.2234601174834998,0.17774136831004658,0.8372524804276983,0.8059439073654759,-0.5590651303996801,0.09189705523810696,-0.3530176503052855,-0.6450597923657119,-0.20997944539414043,0.7047440293503616,0.9487263050686061,0.39394662435940564,-0.08969826205058767,-0.2583227900885615,-0.24628441851333013,-0.016886240217201393,0.24692503992869863,0.30826896685902955,0.9300870126652949,-1.5927213451831288,-0.7243332699939443,0.7251727547778124,0.8611726965663696,1.1351407546063597,0.8764584658604825,-0.438985563459937,0.10784464505662018,0.478274543052357,-0.5359354448161143,0.6076939204692436,0.6380213769967511,0.3876736376053366,0.8256393198174056,0.5199417611743546,0.5087948977568667,-0.4665564936995017,0.8594682583701594,0.04656522456381877,-0.16995353437451663,0.20668096702696764,0.6180307813804765,0.3398123927066421,1.2098542568559296,-0.2788068631869592,-0.7028793771612641],[-1.14191496270377,-0.9339988772110205,-0.5089349078642412,-0.3213623777350691,-2.116938095176659,-1.049863711229662,0.39219938833588414,-3.976327903334513,-0.4006015631921714,1.667958210769569,-1.264312539126505,0.1903220507584652,0.5190392997033391,-0.1116501347025316,0.808432222559833,1.3407931896190322,0.9313005182347799,-2.812219743364705,0.632079284115854,-3.151989643198431,0.6131963089385697,-0.24544656360937944,1.0975336640473845,0.19186541528073167,-3.096851788035057,-0.9455395630987086,-0.8384637192257742,-0.6666220599113326,-2.1806153249865288,-2.6891751682617584,1.2261262229887826,-2.03679627676085,0.44344067698239364,0.7678952433330933,1.2421973845929641,0.7078108473241009,0.0029351544834732993,-1.6763471781984651,-0.5700691343896944,0.9718371912408702,-0.7461644899396919,0.06814470751838811,0.5149085474672206,-3.6832182404632294,0.01721382442758586,0.2247624853214382,0.3642665239271694,-0.07734232714563069,0.3936009812359567,-0.16121581891427025],[-0.0970806684781609,0.7781383027027658,-0.6796074956017865,-0.4110612216384407,-0.964589800349635,0.4702587772266783,-1.929321144419612,-0.6004546269079868,0.4294889661715153,0.7456332834577313,0.2251254530011347,0.550080203053441,-0.49686647201014084,1.0425932933253048,0.15550100848630072,-1.1171394100400658,-2.252503198274288,0.8820929037532379,0.8459515325384304,0.011220229457508814,0.1595799364980157,-0.580712539774618,-2.107966727837207,-0.9578837340375044,-0.7547394464172327,1.2862289973307115,-1.2139478959237886,0.0011054587491830946,-0.056207516998519634,0.8666197055068865,-0.5054777164331814,0.8640120143147773,-0.15049743829305048,-0.9628918059516594,0.9071445938786963,0.11339626734119088,-0.11824702833782084,0.9999529934601686,-1.5462283599222817,-0.6343067064548162,0.3937220316886588,-0.0035672100144611904,-0.5445721598783936,0.38095147032818794,-0.27272988698939316,-0.3770039823282465,-0.1287369879477688,-0.06154664219516059,0.08747588260012887,1.1569250327951086],[-3.9773841532885386,0.9383054165803371,-0.2160524955431042,-0.9791962955894667,-3.627744539735149,-0.36947177476771,1.3512214840503234,1.0291324079117095,1.0805002148575125,-2.7072943040256363,-2.552857507567735,-0.8942385517913235,-0.1547635761002968,1.005159683427723,1.2324265243989536,0.7834091960912932,-0.16387065907689177,0.4259332412320007,0.1576675141029409,2.839157905920559,-0.27881614259874216,-3.066881035922404,1.0658396734346325,-0.5651994496422087,0.602186571208087,-0.5068903077689803,1.1051949830325256,-3.275728563915694,1.437387376992821,-0.3890365950744578,-0.16209727397416313,-0.049194603491968934,-3.4962105566702864,0.978261880266651,0.5967012746315745,0.82188532400583,-0.6148637738845906,0.12881925103798272,-0.18771807280502065,0.5194517613935795,1.639841223102514,1.5849857416364024,0.7236653138457181,-0.9256193992358681,0.22072019658308348,0.30012317630115837,2.3769436038749587,-0.9145819164815412,1.2877911145632175,0.26813950930025876],[-0.4827287277889326,0.6836486839231819,-1.0336802148814401,-1.186055680540388,0.23765669354502508,0.9618912725216697,-1.9930457458618627,0.5690921011874224,-0.35192262898768434,0.26334665478255637,-0.04383332598410462,-0.4395091679634087,0.8142437902958141,-1.2576329206003891,-0.8288919116965566,0.6822358423991509,-0.7209033630657937,-0.1417693561667516,0.01873658035787056,-0.01098950615691585,-0.49572238461924817,-0.73234449359471,-0.2992577459640089,-1.9069919796357546,-0.41142519096794944,-0.8050475937377171,-0.4793737484234065,0.5508433065866476,1.0970651029244745,0.8156173174787081,-0.5879080141248334,0.3084244319724832,1.0445028348768668,0.13431164833216622,0.9624416669482786,-0.3250751634520127,-1.6636424662619922,-1.1535205332508252,0.26036966368835357,0.7364991714503004,0.3635501272897039,0.5936606495840789,0.5884885147930473,0.44777166377856703,0.7342534427911523,-1.0072659073790775,0.22759728171982765,0.14859820594980896,0.4237024320338169,-0.9202803322028936],[0.1324459868313877,-0.2638009397152155,-0.06575686815042922,0.6762255058338087,0.989090937808947,-1.5519737907380686,-0.2875664715322328,-0.49872407018198583,0.5059070669377156,-1.641394665605719,-0.3722115146892622,-1.8710633112241195,-0.6173273860575781,0.16834284462397187,0.23556353784968817,-0.07793579081552313,0.03099493517512081,-0.44221539488928135,0.7837203730052539,0.6232898565479001,-0.5860411819718958,0.7257934377748897,0.6724442142426668,0.2146123491519428,-0.46892554479598636,-0.1874088101645244,-1.312348934650994,0.6317660346020776,-2.155897144828183,-2.0392086695865332,0.27869272763295944,0.48716591334567466,-2.118952265330411,-1.973664153605935,0.12719045998200904,0.4347063043161486,0.457885604036238,-0.7219521887487425,-1.000681057915633,1.1836861732436685,-1.8309680682270695,1.0736647987961927,0.633214536366036,0.47592931966580065,0.76627873054834,0.0527528400288216,-1.624353145432235,0.20271643493312633,0.3750997223750981,-0.21601499040347186],[0.5033516441577472,0.282633032618763,0.7325292059491738,0.5487270441684156,-0.3635964889004697,-0.3382899386180644,1.7263704540304856,-0.584046579361958,0.4175480751690824,-0.6585903453997518,0.4683168165860141,-0.27439371006293956,-2.1337816281709006,0.5205087986321463,0.729847778501849,0.8790071436127789,0.4451436741627761,0.3633312792702704,-1.0997676878581324,0.3860807730232419,0.1814016471155044,0.5548941772891033,-0.8578846782887833,-0.24978795113830524,-0.1977282564560445,-0.21690361256978283,0.8556419519224278,-1.9173059675194901,1.0041114473543604,0.4356218895591782,-0.23121959450758517,-1.865437056508565,-1.3767674051050158,0.7841629318645216,-1.6864304882163255,-0.6263274445788409,0.7460531946856479,-0.09471179808468631,0.42079090934643715,-0.8032761130243395,-1.571069318119023,-1.4598209807600286,0.8410285130791421,-0.11709682605408643,0.31888900303544093,-0.45101376506662133,-2.4919888527642953,-0.06825735357756009,0.8548854168084147,0.4258137553976605],[0.9620709050128758,1.0848541190264525,-1.212904649606898,0.8450521832933137,-4.533520964766177,0.8386603237586878,-1.7279366109294452,-0.45953724315154215,-0.3773762573292525,2.0361386782799924,1.556127114491141,-2.8426709465378117,-1.9196356834496358,-1.1697790304650024,-0.7686325044129902,1.8764469184945214,-1.1456446844651327,1.269403791618015,-1.351231126881322,-3.1631960147869953,0.5951190764415419,-2.2071690147123832,-2.5336908495960997,1.296770540641774,0.7480567097465463,-3.392433329532357,0.787103133302239,1.030460902037415,-1.5451094570289285,1.7370122862297175,1.2480656997954998,1.9019330854920353,2.036791873486767,0.923211990475229,-4.924392263610983,-1.3349061304712817,-0.7816303542793496,-4.686635446399326,-2.4737966773435875,-0.1750401120164111,-5.781780396331236,-1.6910562898424253,1.612608854247467,-0.8684947202059247,-0.783925090153275,0.8597815383180212,-1.297295559614504,-0.7500455760890354,-0.8299435208075153,-3.470904970453669],[0.3974234055356803,-0.7662258677417717,-0.7231193454346512,0.01506131679617062,0.36227502467432393,-0.4677633983123439,0.23324620055035328,1.052148771714492,-0.6670160798259426,0.8375194875531172,0.35682283005351784,-0.3275575245626032,-1.7677600375715405,-0.3069625276922713,-1.5162598647690855,0.38074674557978233,-0.026400620530121648,0.3697363600426013,0.5390495241983786,-0.48360738484979754,0.15765982842436374,0.3157475376845827,-0.06195131056417064,-0.30648181347200304,0.6203143285926945,-0.27989861666361265,-1.3250128912118884,0.1014277658926315,0.919740074930765,-1.1960223407778345,-0.21878575279668339,-0.38474186280745276,0.8809013780388121,-0.21254104572091145,-0.404916204203603,0.3638770919920417,0.03334680536781282,-1.840044793135158,0.29583865379181423,-1.0881810766187472,0.7419027247804934,-0.3806436794757033,-0.9415292090980671,-1.372554615935406,-0.3137893464520195,-1.723209460649627,-1.905155516299106,-0.8393737922371927,-0.19763742065699813,0.6774183004907609],[0.4445471110597029,0.39512442682474597,0.23766691146812577,-0.45416824408517203,1.1008241708977151,-0.651937281731282,-0.04051828533916224,-1.6467682739376668,-1.1264335890866286,0.4537091668497194,0.888625950531245,1.003119193792836,-1.2492270855972747,1.5122692710943215,-0.7443734494161857,1.174617352945268,0.7855733837796203,0.3325021706330854,-1.2020244104659408,2.0215185143934824,0.27566492226579703,1.36138094793237,0.5271756757366904,0.39904345506397676,0.03700837224288351,1.5808387744417305,0.15061903802265672,-1.924040964128706,-0.72824122431579,-0.44425780422538586,1.1195560004444145,-1.836724845397189,-2.0276230672822795,0.003779962666879939,-1.4697238001038029,-0.5156633574631972,-0.14395288151790817,-0.7333702962807961,-1.2993380364135352,0.9330936080613352,-0.1865530159305339,-2.1106566343351405,0.48994054945763194,0.34000943969591796,-0.6914115664407195,0.6664220522984712,-1.1145464870815003,-0.38226053627444834,0.19483499541874472,0.9007546987513639],[0.2634791036480749,-0.2756973145528931,-0.11286408286064728,-1.8435685090981013,-0.5015460499816273,0.1277457978004883,-0.23817510484391446,0.9549835243059615,0.5692478599510986,-1.5411072989670986,-0.44461699669704974,0.9984515728372189,-1.32262516530929,0.11612183361777448,1.206793231334256,-1.2245172421059771,-0.7683697405689048,-0.43652113744618726,1.1403200525004316,-1.38574452096628,-0.5845754885283022,1.6609653249955783,-0.0660885255034081,-0.7632103796798891,-0.9210785975004336,0.31046886834961257,-0.8085898941469293,-2.407466450913154,0.9864358471036891,0.17364228016188576,0.8894745671075133,0.05346480688902402,2.453381339836354,0.19202806524682278,-1.5456990672156532,-0.21256314786163538,0.7619116209430983,-0.5329624225993062,0.29872188355513296,0.6982655119734031,-1.1089291294413455,0.35019662635703674,-0.4857381376107482,1.0341201075269815,0.7349901977855998,1.4132370925430882,-0.3377871416179939,0.38891643434229023,-2.463954887836071,1.767548462539403],[-1.1390867525922745,-1.0951360383872677,0.6037641774029027,-0.6399162515670301,-0.6868594848568333,-0.3489478208628449,-0.22549624324384568,-1.105396439824248,-0.743145093601162,0.8526033680218956,-0.5984173670499372,0.16195749563397757,-0.5276483950610552,0.4310507674508896,0.5031167154752624,0.5543135640832815,0.8849894856099241,0.41885733664784036,0.9218753607917558,-0.8966590164653518,-0.6438131464284303,-1.3462034397148686,-0.4240410257637889,-0.46789917299953276,-1.2773302448914832,-0.015176532758082192,-0.02766629760710644,0.6075087850692897,0.40498085046977644,-1.1347935622674437,-0.47219621548786345,-0.11297879723382406,0.20578983200622517,-0.618522350070336,-0.03546472956043824,-0.217948227554432,0.8115708435876005,0.30245237326693364,-1.313780003740387,-0.9313984665268954,0.43095968983667443,-0.39699357803730523,-0.6832212280359746,-0.34912096971274553,0.06449090578943346,-0.7821237953944945,-0.24712510046629474,0.031531393604581154,0.09233049336212434,-0.10198549284314738],[-2.79255700469736,1.6024652915999475,0.28185207760222286,-0.6856606820980351,1.0165919069480192,1.5178439048935501,1.3625352020381416,0.9323883844861509,-3.197233806357842,1.3619527751719516,-0.9155313585496796,-0.40507165045255283,1.563763371695266,-0.49841483482593757,-1.2339010794597187,0.17659158350594026,-0.7350195589881464,-0.9677827156115806,1.85255224275336,1.2858035854369965,0.7282851930620672,-0.4420022817059298,-0.5023162795127505,-1.515423076934411,-2.6766451102458317,0.6123835693528416,0.5451347302768027,-0.28094214351317126,-0.7391553957395275,0.41450173720321565,-0.014255522443603546,-0.13060109951517107,0.09665174446446566,-2.0145304099571417,0.7144015973904191,0.39204531053913927,-2.4420785200484407,-0.8840461712894244,0.9300006650908182,0.5306308195264868,2.876426482718739,-1.56240641306561,-1.6693079617771147,-2.161127081615832,-0.5306556912899254,1.474315473194821,-3.8001403277670316,0.7315481240928465,-0.7282040803966261,0.7488105357151805],[1.377209767451184,0.35926039012667815,-0.028268324347904734,0.14360511956074498,1.3261687200707,-0.5492552102331375,1.33476152909766,0.3459774752526439,2.762969082131028,1.966380307067639,0.2508901760422736,1.1532173825912573,-1.3175839473101358,1.3053229662316976,-0.07999514778915283,-3.110791816398227,-0.7568625307149579,-1.2618311000661953,0.8625139855428223,-1.9408145904303966,0.5645319675756849,-2.7884580636308782,0.4898303739893182,1.679416691964191,-0.33462415002418405,-0.3201408925724149,-2.3196054473947783,0.6399393897169132,1.7038342919911145,0.9696459874821448,0.47327566143189087,0.957276069201257,-2.081067184810152,1.7515268555014245,-1.8972164652643306,-1.1877965709891143,0.21584351131249638,-1.1541141165943674,1.0651190775718415,0.2509682481587737,-3.2343846716449716,1.7422999210979093,-1.2407566558177978,0.5490197077817477,0.5372941088475394,-2.225124638189172,2.061074428798326,-0.9662631892112096,-2.5852642967455113,2.5638564918360074],[-0.5790539466166629,0.9740979568360076,0.8787284607235926,0.47709331394677446,-0.1038644941781599,-0.9007885241538912,-0.32526575912859246,-0.11044972609981027,0.030649716606581435,-0.1185716464739918,-0.8831490349286238,0.3804587129903364,-1.808585613378804,-0.6269298667857963,-0.2189102180690879,0.9895317430546943,0.635729439728493,-0.5291948346230201,0.6671802542415713,-0.19361916294975,-0.34668066964472066,0.8524336243772506,0.815763660613679,0.3135567818963343,-0.20172246849629474,-0.8534012094655257,0.12755840307153585,0.11253977701303443,-1.1273508136550887,-0.4829836581586688,-0.30909114047973796,-0.4858304391755245,0.5059201756685096,0.7387584929753753,-1.6577483269215763,-1.3077488831689836,0.10366796280424305,-0.15554261619141904,0.9401873962724252,-1.4776415694048217,-1.541846564280706,0.522035291962111,0.7393658578606476,-0.6490535727617552,0.3740470380881993,0.7399962147863145,0.947380516376815,-0.1829798363243487,-0.9152346315035269,0.4982419904672498],[-0.022140094236415653,-0.3792780033672652,0.15130802156319612,1.1946196811601244,-0.07015470307196979,2.36080407989912,-2.25065933808164,-1.0791119536288607,-1.96099473748809,-0.42714396873738564,-0.0868360835888039,1.9960433152119872,-0.9379340360332549,0.416651194072055,-1.1290716038282715,-1.586924317280186,-0.44085026778022485,0.1598487334571603,-0.17350201332375953,0.9247129196687328,-0.5773902571996908,0.9039638226962163,0.23150178981768926,1.1605558597831556,0.8579970705691984,0.38889037627588624,-0.7351324516634351,-0.5973509790064333,-0.09618593094523957,-0.7745505118351393,0.8590064736317576,-1.8360656201126977,-0.20454521293435468,-0.6338108061665344,-0.5826283972479257,0.9145209384719037,-1.1135920312347805,-0.04272192797254397,-1.290510581074669,-0.42660325909990365,2.135706983383606,0.19322117876027364,0.3274501179760939,-0.1776019014298704,-0.7052302602108907,-0.39380137816694555,0.1529178723387742,0.534221251942248,0.3312754930021837,0.9096824025583647],[-1.8093701458018725,-1.152128281031551,0.9999307011582066,0.4149216131157147,-0.9245158409600222,-0.7648284655706082,-3.8393153800013993,-1.9055183271421317,-1.6385273101654327,-2.8175575502743895,-3.450449549524235,-3.9375771252800122,-0.5848529100304272,-4.2881029544778215,-1.4731894367713565,-1.6728974514252346,-0.09959659883399608,-2.651447859274267,0.0038964787547915913,-5.679871186638353,1.5704289354657335,-5.129734195604147,-0.11827566511099401,-2.609168954548534,-5.241726211252778,-2.477340556425143,-1.9211060866117469,-0.5596894470623838,-0.6110736261326662,-0.1271630638444586,-0.4929702605209297,-1.8428879658633577,-7.693453163848349,-1.7090120990865891,-3.1201342734072464,0.8789679365379754,-3.900887171375166,-1.3440045251249868,-3.5177215499522836,0.08673988681364772,-4.555101697822398,-2.520284798075477,-1.5930506720728537,-1.977297950450326,-0.1374343919992897,-2.1315555196217604,-7.876381624002838,-1.5679057981110578,-3.6522829299679325,-3.6684978011196994],[-0.18255588095878902,0.5198267218179731,0.893974564955447,0.682236653535377,-0.8774195010934479,-0.867855383522635,-2.8903438803673986,0.725069129922577,0.7895283787535954,-1.1821714981763554,-1.2420315417861751,-1.2597753071866946,-2.7903802086834,0.7924254983641837,0.8454297741558809,0.9498139232125045,-1.5620083374714262,-0.7400730224321243,0.5163721225800703,-0.12570240682036782,-0.29118724508748056,1.1920089107889336,0.5032376313616022,0.6704784873499944,-1.5323564442441573,-2.3532610533325067,0.4155841594018871,-0.9937601873764208,-2.894191050305229,-0.44827238241892076,0.3896867775026648,0.7661913195655586,1.0751081361859243,-0.6525281366627168,-2.633265070549008,-2.718722813127984,-1.2930188261594215,1.1827218257745973,0.22074097389399766,-1.237928103214195,-1.8395576230898982,0.07871963225546542,1.102283970182705,-1.783354756770644,0.4621420143665829,-0.0741690163336497,-0.14956064183299483,-0.0860058312734416,-0.3176734759230155,-0.9509282574429244],[-2.990945585067511,2.63506119029164,1.6127373844133628,2.304039105223901,-2.969063829526123,0.32969984651729234,0.46567507523051227,1.126237252136088,-2.797504671923636,-2.852785578473547,2.1016672229908293,3.0675764073998733,-1.0960092939855364,1.4348509350282121,-3.8068007924266545,-5.175070701009291,0.7650856142387852,-0.784487884514516,0.23608240246546433,-0.3371310897714316,-0.19537518753871222,0.44313375454042414,1.7641133115308911,-1.425160341005115,1.0560410486278942,-2.8671736955339195,-2.317272648342799,-1.2756018899170607,-4.227371985106071,-1.9201047500712431,-0.8340486840094602,-2.2465759825713194,2.2121896198795503,-2.462465034698205,-2.1501656065069157,-1.3521603519929415,-1.304576264267455,-2.0270472523881247,-2.3884145134584864,-2.998275343127145,3.31927685475749,-0.6427770343993938,0.6831638779093864,1.7501543361379146,1.1724594736155673,-0.8059663615896214,1.946792077641665,1.987080778545948,-2.3185036882235535,1.3340114449851128],[-2.744956098003781,0.7366676282662652,-0.5632349092667834,-0.7668597888776223,0.9149802182224893,1.1039088956244303,-0.07632293860503467,0.8195528317741514,-1.5687527395868868,-0.04547058125902131,-2.8411126897872205,0.07084489090256331,1.1913276030283755,-0.820021526247943,0.7014689642484272,0.4547875086780163,0.8002923082293881,-0.9765686362632353,1.1178331955840628,1.3922237734511977,-0.22339274214247537,-0.41631744103367413,0.0970723568127971,-0.7492446129819668,-1.794660239365212,0.581710969263305,-0.07880746917748842,-0.5908832436251651,0.34466224442268545,0.514745943910907,0.8635129559171166,0.3574270715496685,0.2981653435658333,-0.9700935915481723,0.08367535197582204,-0.7359491217960071,-1.1807494151142384,0.09302322491792696,1.1864392856180002,-0.3232064439926187,2.231079894485268,-1.9396660432751467,-2.0079003870745735,0.1133458438618284,-0.7252696390875749,0.7360975133875985,-2.5477926794978547,-0.034781152839379874,-1.4209564310679526,1.5474356601428507],[0.6858090708688527,-0.6164234535991323,0.9800693387599823,-1.6213349147257292,0.8864849194012046,-2.1486965281300843,-1.1306438571788697,0.5546323591899353,-1.059401299830409,-0.30376095371219847,-1.357465406992163,0.12596042386018078,-0.1650669170089205,1.5584679642665422,-0.22839271611126016,-1.939359879919109,0.3956194848926097,-1.860596788508483,0.07676460337681842,-3.4349517475517617,0.2890609412676278,0.7760334633445612,0.26886781213868516,-3.9249524615997515,-0.93504889669493,-0.8370019910348249,0.7808604168817088,-3.4423208339094016,-3.0042300141126748,0.061653392151883986,0.5890673674339262,0.9302470125970178,-0.010867824051370758,-0.11316754495181863,-1.5519146582669212,0.46805073735533337,1.0052748153395077,-0.393081467701964,0.9123788104847519,-0.034562411636210606,-0.4767500798193746,0.46421118639219944,0.23162088542959722,0.5138646380641676,0.3560782798811998,0.8829277979517542,-0.36675570451522777,-1.029944226155946,-2.6460413785068226,0.7731213533943053],[-2.0000843093697713,-0.2638291619670616,-0.5403156013009788,-0.7920442790789927,0.7568627818425753,1.1223531111144172,-0.07387279580095513,0.16157330782588794,-1.1833072746344626,1.1814230863664974,-3.4448489967754146,-0.6091050268717887,-0.36805332815146746,-0.006367585555742749,0.5861162493552278,0.8733442014890951,-0.20142028198087458,0.08219916364809492,0.936802938899888,2.3219451637181137,0.07579223588238115,0.7352281365017711,0.9029632194045246,-1.2424088853709798,-2.3105783207346966,0.9484731284136426,1.188818570263179,0.21475715231436213,-0.5181436711955734,-0.06673506972527639,-0.07023618817414372,0.3647953981933662,0.6272379747887439,-0.8680687686424045,-0.5434539980667292,0.536096645255593,-1.987850828803984,-0.22622242243340163,0.7340035272034255,-0.2519977214931432,1.6055564515054088,-0.844876941551653,-1.8757318147813615,-0.7965097799638058,-0.4704231914899576,1.5294146468358678,-3.4243152500659324,0.23347052145387773,-0.8967823127435643,0.6828969225191682],[0.7156775066184639,0.000005834397003008293,-1.8426188398180465,-0.6793684099825364,-1.8055561692764008,-0.026702245366182074,0.5844729564431752,-4.172964640033757,1.1938635086710256,-1.037179207780282,-1.2333127537828832,-0.2413448545586488,0.22174323751544567,-0.3043471232910487,-2.277652007962282,1.2843663931484501,1.1438517411313494,-3.3157826068475242,-1.492815703494047,-3.751558360049978,-0.16264515903716872,-0.7528511398818154,-1.043749211778795,-2.065254391613256,-2.64524328049295,0.3532437198323614,-0.8992689390511398,-0.739625134578634,0.8255782647625705,-0.010001779810228558,-0.9097460267708423,-0.47777727589148294,-0.032661544952276446,0.1673499986583502,-1.1667509138674022,0.016661026582532105,-1.6224723426320309,1.0104681441342793,-1.8808514129722809,0.9016067787850341,-4.737093349951045,-0.221665400220854,-0.04898766873596359,0.55593817450146,-0.45708136792142706,-0.13698122856926956,0.2742701202942816,1.0866957879852313,-3.607655657331121,-1.3887670058547823],[0.9021593137215862,-2.020507286450567,-1.1432377182602322,0.7056741004941876,0.2879181397111744,-0.013125788141787616,-0.3003371186138203,-1.1463296991338445,-0.23996353599098458,-0.09373414388185372,-0.901495899755296,0.5075945347669537,0.17943166035149233,0.44722509834056495,0.7384722175811002,-0.20808567694110158,-1.8605740353607496,-0.8507212132630888,1.06542312330934,-0.8650046046004252,0.9166045256818871,0.2818367579732718,0.42475296883503,-0.8756513401713837,0.6255240361362775,0.4778319281732955,-0.8275573495158323,-0.31477023940361526,0.9110758482477789,0.4494088355188647,0.44294714210198594,0.019054342209722443,0.5582612229714182,-0.22917186628696387,-0.6668804653887317,-0.262687891008447,-0.3394450470043942,-0.06410721755740333,-0.9939329677815152,-1.0464794593089193,0.757073363057317,-2.265415232447732,-0.9091982605666926,-4.240166990792439,0.24532141136014696,0.85028863091153,-0.662623982536217,0.5420115690684639,0.8755874992452783,0.24912550488344823],[2.0026566509420434,-0.9877159845696216,-1.5344689353663177,-3.5520015865809973,-0.6360509671137579,-3.1589646586471365,-0.49046740856861815,-1.9628292922346273,0.875959771499382,-4.371635992519781,-0.2854710163581736,-5.026388113047113,1.9881139696448982,-2.083659471778501,-1.217579726328926,0.3992445848905905,1.0972821913525819,-1.4106498669305587,-1.6427918012129654,-0.5884419394264055,-0.41924376855632917,-1.4306523604512638,-3.2097992564740596,-2.3455292232131035,-2.5825919620144004,-1.4792401659161734,-0.7000735139199579,-0.9573470358855998,-2.139188975605015,-0.9116732213173109,1.7254285029579493,1.0365917335510109,-4.037572768630416,-2.97058448696238,-1.8495221151200638,1.0826058506170726,-2.6396372189066892,-2.449603924239175,-1.2555717818109462,2.167485293391985,-5.4091759288659755,0.6166177924118351,-1.5651333181270144,0.517339413856438,0.8439089979269678,-0.5869829885725928,-3.065768583975037,-3.0063595645759977,-2.841270423362864,-0.7742767045853894],[-0.8150734548230087,-1.2448056670704108,-0.3256981156425474,-0.8533853614973187,-0.41284400162918505,0.8429855855745414,0.7365303487079241,-1.4799322589053623,-0.5072092633469797,-0.6191591473040522,0.019895718873217998,0.16123970351611397,-0.7538310559555221,0.7840151503092888,-0.20711332233907817,-0.613618146057559,0.32731603721052716,-0.5088075985920081,0.6540829917458673,-0.7439073134809571,0.8663503652496175,-0.03356347128268692,0.8443475037291639,0.9943726860692468,-0.32285433116354534,0.6110602350584858,-0.03270175772902125,0.4677937783144566,-1.4598034369040243,-0.9451251052043467,0.34443800028866733,-0.5046547751281959,0.828895606357578,-0.13405383667080187,-0.5914461881432668,-0.2741606339821197,0.8151377653609723,0.15732943510226619,-0.01929417133134365,0.17473915958828007,-0.5910956305394262,-0.37410393135950387,-0.561270708171635,-0.8901316955500637,-0.2175753422124129,0.7374383148683729,-0.32409867464989217,0.05623911648419192,-0.5397524613555335,0.787664794058825],[-0.4871065540266504,-0.1569501622413639,-0.47927926356567374,-0.8590125804117502,-1.4675095651670764,0.6908182868403221,-4.814186511326576,-0.5456063797360367,-0.26721743608764126,0.0881503819308121,-3.5570939419180885,-0.6445861413767684,-2.765589335580476,-1.308283915680644,-0.09956816139877196,-2.0271261399261906,-0.6609192125435063,-1.7519538596701691,1.0619240465074666,-1.1742371146230197,0.6969499083424598,1.1939611733891613,-0.18795656064555208,0.17096239113404407,-4.113248340950191,-2.2511530974360756,-0.5646349143810693,-0.2407891164704232,-4.320388248378828,0.3932102845752738,-0.2316391197830912,-0.9258389989720592,-1.432281868270122,0.5035409552810222,-2.1676394735817976,-1.2409602560797641,-2.2470050945231095,-1.8775614642569631,-0.8982990520069768,-2.919512944760327,-1.231779097664633,1.0735742713862897,-2.0420161114525497,-2.4238315229303136,1.4488563745804222,-1.4891108845467533,0.5255817124545752,-0.42305952375668837,-0.7067249282877077,-0.8990683993813834],[-2.1573444407648106,-1.3863992632849564,0.17127013141666161,0.04380162263076757,-2.490303039020696,0.5135005685990819,-3.694408812686815,-1.508003376749885,-2.365040965177192,-2.221968380625646,-0.08459630442431496,0.3250139988545414,0.7298403736387772,-1.2658021075901835,0.07208902163615671,-2.414915627924109,0.8362150413063322,-2.2730925961028063,0.03532163676015529,-2.5435839542288883,0.8624543199860956,1.0939919956980582,-1.1805863584723395,0.4921355158468884,-2.3438529122542886,0.2724134170711129,-1.5462437485370244,1.0637249681411856,-6.161380300585663,-0.9898088661201259,-1.9480529385609504,-1.756600836220753,-1.773411485465249,-1.5911826364187371,-5.290663249131031,-0.4876516634532593,-3.6696628484539175,-3.058198100349022,-3.890155464660828,-1.8796997897100975,-0.33799957222006793,-2.780876439402526,-1.1963295286552151,-2.1045477116819526,-0.5419402746666494,-1.624096721632801,1.3247304108398994,-1.3461581058080936,-3.728276475679703,-2.972714255917661],[0.8981745728105389,0.3414703318635241,-1.6831475563118363,0.4105674866205023,-0.11435587274740454,0.5652098940418726,-2.267182685910845,-3.3524922839482336,0.48058988971132394,-1.0708588675864281,-2.692935646579813,-2.5569183819378356,-0.5507553314777768,-4.131139643271442,-2.3689609042493562,-1.1304496261024455,-0.5545575107660257,-3.843801556645485,0.576532480393781,-2.5686123038868343,0.823958245270532,-1.3986956600284612,1.4455323821075203,-1.6638614781661856,-3.237020125034634,1.1931580399102601,-3.2556816553620522,0.5395104171051174,-1.0849217536525237,0.8009576383480044,-0.35144984114827665,0.004350367755578764,-3.7376449681842687,0.45112261448468755,0.2735264578994854,0.7307032275999147,-2.0014083737351775,0.28765212384419614,0.5496781935448581,0.5963412683211908,-0.03210683467884127,0.3402982593210801,-0.6888479362483513,-1.0642410217781983,-0.04700768024484995,-2.8492540120042835,1.450706681953007,-0.8493517580319567,0.9358624378329097,-3.8801924394590634],[0.35587504011658094,0.11483896857634728,-0.09015209724527236,1.3491542917265196,0.13611810162017274,-3.634788679737018,-1.7215144861191278,-1.0106052949639637,0.5570264398355514,1.6957420997915706,-1.4326478034257961,0.710385803745866,-0.18976680177941585,-0.596757620363527,0.3338839190435926,-1.1938332638383473,-0.30349921044184425,0.6382804970945583,0.5686680239991739,-3.0195176708673954,0.15616839567528626,0.396449179339634,0.14955947577012826,-2.5220327306179597,1.2419691862341702,0.7133459206368008,0.6509678234073586,-3.5039815489703066,-5.363612649079365,-0.8762663026079245,0.13143776088101425,1.0173562459038328,-2.1855088686197526,0.34972966458104565,-2.585209595053245,-0.9397333349061838,0.3103133927428207,-0.20550258073802774,0.19444418387041257,0.27951843345081,0.7057260622684286,0.04420114818111928,0.977497579518785,0.6946523313910149,0.29566977322493626,-0.012017560163815532,0.5648442931608897,-4.739717639023528,-1.5174450504001529,0.16168561462499495],[-3.67835741981551,-0.4380457124336991,0.8433809539983428,-2.6454118571911835,-1.7060967706242978,-2.079830925624491,-1.3081917092941586,-3.3467774255469864,-1.909137593586516,-5.876291756875782,-1.208144830752243,-2.6837874018966423,-2.9832268016976538,0.11351872065595174,-0.5717485319187112,-2.010813615981528,1.606781516936052,-0.5970816897174757,0.3927810598527149,-1.2773264077901154,0.2507196805727698,1.1411198983166542,0.025228515743031654,0.12133731349768039,-3.20318300709668,2.4125027712561757,-3.189012647372028,1.1398007126510987,-5.10222088073544,-6.035893114861388,-2.120095143080309,-3.4227834652333944,-2.457684584977981,-5.17069822766608,-1.2147779809615535,1.2391224109399948,-0.1641179749034795,-8.894502878735894,-1.7216065429580436,-3.4166162794844497,-3.221986633420734,-1.9087476054475592,-0.609377292824693,-0.8729805899149242,-0.36228474732186156,-0.13909496978620206,-1.2813435665706325,0.4773230387938082,-1.582014955503737,1.843744105192263],[-0.19865100098237784,-0.6978205002474633,-0.819607329519681,-0.3942901430076924,-0.4285304785791211,0.014152880771883725,-1.6558874467872682,-0.293311885066225,0.4976620844362835,-0.5548675920871422,0.751858226302322,0.19749082212063734,-0.7793940027963747,-0.7392845988276927,-1.1974562446653207,0.4223643291193769,0.026893698674096803,0.7236542954864623,-0.23599055248596615,-0.6143905991309087,0.8844948833055802,-1.25269712863372,0.05599550016707482,-0.6640157146740615,1.0314278842635451,-1.4991101946703937,-0.29658002229821295,0.12758604310409152,-0.049579390749872124,1.4339270153610326,-0.582560111257792,-0.23437074312943038,-0.16358523183365511,-0.1446368267837439,-0.34376783797937877,0.8854896168683353,-0.34224210697641194,-1.4164943457916646,0.9478748227601174,0.5677841023197686,0.16322378812299457,-0.1120412242333183,-0.11973138111954067,0.12622552309600443,0.7080241759309751,-1.0686844993868458,0.8144117977083293,-0.46439059687891293,-0.5705085881484179,0.7855413671889456],[-0.832997193122287,-0.629424565442291,-2.377187664578685,1.7865422704540646,-2.781556135397979,1.8120454113798432,-1.1725722810141501,-0.9666274758898579,-2.4629501221691954,1.0757440794411623,-0.07799519475565786,4.269071286416588,0.33756482655092773,0.6861210560846684,0.32315084461622134,-1.6422892002635325,0.27700694221790156,-1.9209660273115108,-3.065677007189987,2.636222133599071,0.3674953056702732,-1.0408249396287632,-1.0940549574607596,0.4454439268044149,-1.468411555104835,0.21388513054015845,0.02700519337503328,0.46172548391981855,-2.887842638808899,-0.9630389167863092,0.9953255065855712,-2.1661115657293895,-0.40697107511703856,-1.6070237972951982,-4.08056885386679,0.9188317093919339,-0.004901475342533971,-0.5501808360042112,-1.551711547331497,-1.1985546605186521,-0.9530525753257258,0.11927839446413785,0.5448144176428548,0.20195745191853043,-0.9191575414064369,1.317774906629071,1.4660311243734587,0.5970734637964887,1.159379077374858,1.3269126608453945],[-0.23914597582392086,-0.052372317273979785,0.48050222768652,-0.088996961727872,-0.4970202337587911,-0.23321748803407286,0.5385732709907184,-0.07527334549088864,-0.33741597256003586,-0.39257995342465374,-0.4237692128427248,0.7028925620150461,0.1851270776693934,-1.1030833205140615,0.16517307871562475,0.7467359398538345,-0.7900170448223165,0.8901182919136718,0.22287335088342547,-1.0482393713108844,-0.5513591057784758,0.8541842423335404,0.8122056275116356,-0.41931358001963775,0.44716558320353844,-0.8377087121222064,-1.0409396761547918,-1.4900221421687045,-0.4884573167659089,0.5967418511503546,0.17069379754589994,-0.9720986636998105,-0.44063777220884237,-0.22570338096768386,0.7700991078800777,-0.2576473351269608,0.1070838183489977,0.1358689515720412,-0.7380432690509059,-0.7290766868368788,-0.11566877426199261,0.553641928797927,-1.6886198601421325,-1.4571302310133407,-0.35955022790819663,-0.5152326887659778,0.7002731542593371,-1.353343305214057,0.057880761516601084,0.19512730806765832]],[[-0.49566956434378545,-0.4935531670000457,-1.6392236732046823,-1.718415175454468,-0.9870754935458138,-1.2586907411858645,-0.7486501187744407,-0.42082023101196,-0.0862841038437861,-1.5134608891208112,-1.0210167398896448,-1.0337541792449478,0.7468782909530723,0.5161971549236437,-0.6399340228182441,1.4556834660683482,-0.7377206678367036,-1.7410345277165793,-0.8908345461478903,-1.421546256076052,1.2551142225289484,1.0892987545671222,-0.9298180422828198,1.0177087128919515,-2.361648548342317,-0.2622856815206263,-2.049258729786706,-1.4226774120307792,-0.9537372787449986,-1.5403672385055562,0.13442016057102835,-0.17059304861862076,-0.8843437339957635,-1.4907792631973837,0.5171837604582836,0.1395980339190791,-2.329265555471017,-1.191825278450493],[-0.06900590857589688,-1.1329168120831528,-1.599149575884536,-0.39972070266984,-0.6413791993294042,-0.1682858315616731,-1.1490211656515779,-0.9481603432850366,-1.0887580070325225,-1.5840743508109132,-0.612702312313071,0.6019197183680437,0.5520490375869952,-1.4278857041254152,0.6059966228927258,-1.1540782565929892,-0.4207940252256727,-0.18355202393190623,-0.0719012447759604,-2.2835985888947783,-2.340362076047279,-2.7715334624133563,0.807326813047261,-1.6263669926890183,-0.19704635578237245,-0.47452835488908013,-1.1470922538066337,0.6410127400903864,-1.4265872886187698,-0.10413343653243484,-1.6246158820778673,-1.2238910014437672,-2.463398913530067,-0.5217376854925895,-2.340645111574262,-0.44016819603728585,-0.5065494537412428,0.17298369735472302],[-0.5469098330635219,-1.528240867266708,-1.581868462334179,0.17656752218643154,-2.075121024368141,-1.565576493671689,-1.990818788270835,-0.1566469101663221,-0.5733847455982793,-0.3002467069745963,-1.7542758804273657,-2.1784840853996768,-0.3316653533678128,-0.7247705292131452,-2.0188416817201786,-1.7528606457776972,-1.1264358786667046,-0.4323853053297218,0.16606115289055637,-1.2866715965557578,-0.05115368100894592,-2.160395939959372,-1.004713720536933,-1.1511422719680426,-1.5880193915790797,-0.19611176491800072,-1.506454499056519,0.1933111960498637,-0.9335494422885062,-0.2614284788578919,-2.85894715307869,-2.395175361041165,-1.5151672445642332,-0.752539851741945,-1.9644857010669738,0.13648715735308825,-1.3839996215768098,0.1816658403687915],[0.00613042808111273,-0.009195964528902601,-1.4793185464829202,-0.9426663180718916,-1.0490915113679686,-1.6209678254895774,-0.6062821947204923,0.11931146071056291,-1.711079838993142,-0.24051951423966883,-0.9044849342940617,0.601853906140863,-0.39125711529143975,0.0017440570007834191,-1.8746385339056069,-1.9088471064255619,-0.5705938235135775,-2.1436755495933597,-1.9807900092337125,-1.2618731855304222,-0.025102586510662727,-2.3519288001288015,-0.550159033776208,-1.405632120013217,-0.1664605646350953,-0.48702226978037483,-1.957716518730912,1.106408595837346,-1.650200607033839,-0.7530457627111328,1.0093450340941235,-0.493704556443349,-0.5426141814120544,-0.09169932985454239,-0.2780801962502993,-0.07479178042504216,-1.4692987706242806,0.6607065058733501],[-1.2956671672994613,-1.3745880250263824,-0.7893841659706693,-0.8125833579183426,-0.016776621751958515,-0.9355263763667462,-1.3748206930560554,-1.128637139058639,-1.2427259453868327,-1.3901133263758592,-0.9599484076717023,-1.1285071833447422,-1.8987493244298648,1.0019458695814365,0.2884913500484963,-1.3320244720200114,0.39070210846207465,-1.5601145467915314,-1.2676946793309591,-2.367354294460615,0.5774480470572814,-0.2896569073573938,0.6941139846180939,0.16506175264632394,2.43478794638177,-1.2826102319615305,0.9117249034433428,-2.0321544000818537,0.30381523597045984,-1.6874907182315868,-2.6213353189704276,-1.6444064652543775,0.7592728625343659,-2.0693441291647074,-0.33387895276954765,-1.7682102325688336,-2.311290392255125,0.1926708157980759],[-0.5336953093785836,-0.34226609755368936,-1.4125852087636184,-1.1665466626034222,-1.429962023257105,-0.4588394027746898,-1.7057311575321954,-0.8047719860790464,-0.5155198299985428,-1.2861347555147566,-0.03502357153849602,-1.3047990459455865,0.4861427377261629,-1.5870299692975878,0.01035841071332015,1.1291690394276193,-2.3981998918722476,-1.0062230209609606,-0.741702329003772,-1.5365043035684305,-1.031714851215696,-0.1998610160079069,-0.1250224370850235,-0.3918139737906214,0.7604122062101129,-1.1791781114674902,-1.8975249858330723,-2.378482829274141,-2.438225184312124,0.7954039064883912,-1.5895992494444555,0.646997849144245,0.037181140382398135,0.2540012880441306,-2.028081669495246,-0.6698309950180562,0.40182567658256996,-2.2232592329022562],[-0.25158711093549535,-1.0456737991076048,-0.9728555943454777,-1.1550731860359347,0.39063888212341263,-0.9232272079973708,-0.9725464967219538,-0.3692539596125666,-0.3858636290686876,-0.5837355451389837,-0.6150955523314132,-0.6627872518701627,-0.6724930698323828,1.4924347095532353,-1.395590695544777,-1.185090571089714,-1.213434818972032,-1.4956705575066418,-0.43283986491057375,-0.5549220786353991,0.3193161409388376,1.4933049390109325,-1.431667526159675,0.9812405707351312,0.32866402862477834,-1.3611841987577284,0.4889132851077384,0.2584865488094082,0.6762510495500993,-1.3389303449575138,1.3979747026186553,-0.8321513292626809,-1.5847910573083015,-0.20421627960042943,-1.5686021535413168,-1.4438852499745884,1.3189879563923033,0.4507981202987754],[-1.422055706040153,-0.07179156028930177,0.06556918522521385,-1.475587345350819,-0.04346943260080002,-1.7143409871909197,-0.8738184588010085,-1.0334598924746177,0.023893443229077584,-0.11592551199564584,-0.5277648688200531,0.6296401245931101,-1.2154718371662485,-1.5820750064646423,1.0396585171576005,-1.959326194368834,-0.9345890689660337,0.9587957933057462,-0.3941676435910782,-1.9783823687580513,-1.2427415636810917,1.2298188844845668,0.21912993182861568,-1.0753907901877524,0.8046969810662294,0.007501484477309575,-1.1604285744891445,-0.08711417448025624,-1.2782543335529968,-1.1526327345940552,-0.9441486426046801,-1.9205145905658543,-0.5369475733225685,-1.3603734263523837,-0.9936340412872433,0.7418587331832932,-0.015478294778542089,1.0490335330545744],[-0.0025557279176826966,-1.0744029384908176,-1.6651290280213769,-0.3091584799088877,-0.3931353508699344,-1.2507903325998109,-0.2330587366727082,-1.4621459947496382,-0.1213611025294606,-1.092074590481235,0.06829026720115977,-0.8933028925460119,0.9187850731526103,-1.3563550699516957,-1.482406337467375,-1.0955795181856305,-0.6921183208164963,-1.7042660517612749,0.7659904863508828,-1.0554723439244202,-1.1514417061640154,1.1840178526186689,-1.1663465473086072,0.20232741229876972,-1.8970268491404232,0.6459791124892742,-0.7341181840918255,-1.2598750481680532,0.35140334261489703,-1.6456215693644363,-0.3047453640045134,-0.3307262256540256,-0.45428516575013905,-0.740320114667467,0.3492445691045997,0.5534252829127212,0.93108108788907,-0.004269936342454034],[-1.0448999212896009,-1.1190623132855277,-0.11761693243624446,0.08497280738775773,-1.236516107268111,-0.6160280893738365,-0.5734416785411618,-1.1188857055541888,-0.5025967971964914,-0.9083363312838303,-0.4672318860011439,0.45576311373231315,-0.7414605018156469,-1.7242038890235678,-1.4797478857669895,0.6241229145722452,2.4649266281691884,-0.4080124630380827,-1.8454839306029835,1.1297466587459655,-0.2078554657913447,-1.4105005314909471,0.21261628882092592,0.06616507767622326,0.8315288777080206,-0.516715006810467,-1.2343022848804428,-1.881055437846095,-2.085371247496772,-2.374520311732317,0.32253386433316944,-1.3373505974698137,-0.5201677138194972,1.1914767124214733,-2.008481388016725,-0.1995183942939989,-2.003066951166843,-0.36043804520455464],[0.15973883750981635,-0.4849708233494545,-1.4053823770758451,-0.829787866317644,-1.3796210291349988,-0.7155764735135035,0.1187109151270877,-0.38501245314778176,-0.619165652467177,-0.02526236128917852,-0.4880780400344502,0.02805025639194004,-0.7936134466900964,1.0209030188814934,0.0785488199841434,-0.24584575654116866,-0.6049661135805329,-1.417882541553017,-0.8313543847035877,-2.0689069753091798,-0.9350700967122108,2.9944123039845834,-0.7545390792874225,0.4082089658513643,-2.2112962314314433,-1.1814639190039644,-1.4236740914713308,0.6540926951650446,-1.1443038384671054,1.107748204583208,-0.42146365190189566,-1.1361733386672381,-1.5358952647446562,-0.0660508612369223,-0.515988845401563,-1.2231707636110454,-1.4609247617035215,0.5490273327465621],[-1.4623289530759807,0.09298795771371562,0.00860751429358665,-1.1436912826637702,0.3749706278008208,-0.9377944275492411,-1.2022433976730562,-1.0106235413788116,0.27853692115910345,-0.5121607880624892,-0.7237022944081838,-1.458738855602219,-1.5454601324024229,0.9469329902369743,-0.5625461547486738,-1.1949443837997042,0.6301655370874799,0.6227286603821023,-0.28653373164788376,0.15066409441917133,-0.3655598191280773,-1.597564851955846,-0.4655835902021834,0.3230870704098967,-0.715334644980102,-1.3725013624224418,1.8515012824749832,-1.1440962191659239,-2.0996927106577674,0.8194063505717262,0.6389523562302104,-1.5813037259723777,-0.1218890768671133,-1.4979089032691801,-0.49790477504838343,-0.908847418942349,-1.101811874790929,0.9910968354345812],[-1.3085006650637008,-1.1209863984302175,-1.5996622064934432,0.1668754821784289,-0.3759239209278116,-0.03931203687672127,-0.029368154230037236,-0.19267375622286256,0.23408034725644614,-0.22033804150558112,-1.1064464226792645,-0.49131416125212535,0.35430116241522375,-2.585267027391953,1.1809877739329087,-2.1059863406101056,0.23471358826789793,-2.29136112442234,-1.2201616467718965,-0.33318050552688283,-1.444386734159798,-0.5132575964088981,-0.2891803943866362,-1.5469471063967766,0.7206443836255886,-1.900404496064672,-0.9963436407119802,-0.7938911852350816,-1.0518734650394828,-1.8221566281432455,0.5188301445433098,-0.16054538216383724,-0.26204615611598536,-0.2898978717642662,-0.1817794470950719,1.1894894879877629,-0.7425074254138582,-1.8878253305964527],[-0.09048950545410456,0.2780413500855498,-1.5442821352378857,0.14626147245188126,-0.8778586211002157,-0.2701622811699381,-0.7469669409200447,-0.4669669587064259,-1.3224579711176643,-0.8177272079612212,-0.8234405939221877,-1.055739042504368,-1.145756480624485,0.5572075546581938,-0.7512484730518925,-1.827443018097756,0.8996250862218304,0.06732850022101226,-0.980904914405414,0.19549323634411228,-0.014562371968387028,1.1009478993594441,0.9258184270846699,-0.0269426268249431,-1.0268323498128475,-0.3104719077977836,1.1492184448254963,-1.1869830298737483,-0.7958290309534362,1.7415327570090535,0.4134549807784928,-0.9174199234339658,-1.694754590319214,-1.1635076388413956,-1.2409683442917583,-0.612962288523969,-0.11005906262884799,-0.5184835558329649],[-0.8456887135125977,-0.746111829810805,-1.1707703431455263,-0.05873675608075944,-0.42928983139161764,0.11103922196483894,-1.3263546384943643,-1.1402122235581902,-0.9018838739957278,-0.8081184714036502,-0.778524716160019,0.318617183134232,-1.442710805417951,0.302977178760782,-1.28571901339163,-0.8941388669357104,-0.684141858820488,-1.9227110550599087,0.22544895186807665,-0.4103049139557946,0.23991604520646553,1.4157905653440725,-1.3331790044483005,-0.000011301780161613915,-0.7882448150615484,-0.17362108507957685,0.1332168773781764,-0.7109689307005747,-0.2274179639845072,-1.2174826576596596,-0.26564473595980453,-1.519475341530134,0.7111522067718721,-1.6911230128728876,1.2197991001742914,-0.8061556491596301,1.0003189350291812,-1.3107756229679712],[-0.5360849169175607,-1.080731648688929,-1.1620894824978605,-1.5940465314125518,-1.298335928893959,-1.2983368072017163,-1.2301347140900105,-0.32808403044012524,-0.3515081822315519,0.09532616550266193,-0.6992805546648092,-0.3066976939356908,-0.9270006832870419,1.1717392858602744,0.9639776677709498,-1.4732452462723973,-1.9794569407689562,-1.632588338593254,-1.0224754329304369,1.0637373496422577,-1.8385306528641412,-2.623349487316514,0.743333273278647,0.9232945275941632,-0.3390912568831594,0.6376303934172926,-1.004363557841092,0.36381573509278536,-0.5920818225849107,-2.2664206424902216,0.020296966254651168,0.3894597506184875,-2.064890844628437,-1.525032558949362,0.4593429778357943,-1.5923013353480027,-0.968613935009003,-2.6553573622773556],[-1.5324856244653593,-0.4278396421951404,-0.5752778449694936,-1.4715017403092616,-0.46817344527967264,-1.2568244227014458,-1.0101445753100786,-1.7825216501024188,-1.5634206684901422,-1.7182182809535185,-1.3481658431688512,-2.9520549879352305,-0.03535386702456698,-1.0277464254290098,-0.91094377665643,0.12761882369623123,-0.027026036939214286,-0.00042317916649815346,-2.216233073010075,-0.396851104294751,-1.3823519794864865,-0.7457759651895607,-0.28531659232669315,-3.3008050521430654,-1.5786787324843683,-2.2680253280339766,-1.1877296689430354,-0.2398768711627418,-1.1556133176050805,-0.6134695458274257,-0.48353730062764755,-2.1801998991833123,0.09383962440420454,-0.9986849564397221,-0.6537927878592306,-3.4705053835494284,-0.6850729637587674,-1.7381145117201635],[-0.8179465800552275,-0.18403756018405334,-0.5237176064887721,-0.44051947981927125,0.14999883019743404,-0.8626802964739759,-0.9297279124520486,-1.1055987994411312,-0.3606741380352946,0.009894486999695891,-1.2138059412316622,-0.008102311855118801,1.1117947149457417,-0.6335541858468762,0.2819603655922468,0.3101086314356372,0.5472455656833394,-1.2737473006470958,-1.4859007902412322,-1.2666795813338172,0.051500353077533784,-2.096877707033757,-0.22429071307011852,-0.26836865551029393,-0.6702854660390112,0.1499779479816466,1.3296728083885738,-0.3654328346029615,1.917669704304177,0.4722936464587659,-1.347291337322488,-1.7460387165346616,-1.1848590650214792,-0.968933279205177,-0.44178616852229796,0.9279785539929839,0.3500806744584071,-0.8937087589472319],[-0.7442195770089371,-0.6484193965385707,-0.7193813254862739,-0.17162563104078757,-1.3073310207092128,-0.9180785226373774,-0.9396634050023037,-0.34116344414848565,-0.5670000091150651,-0.2037576585204905,-1.2530601010788378,-0.7011504075685834,-0.9372461755368217,-2.0724540863881042,-0.07892249871023374,-0.46148934878269476,0.09392639843519436,-0.9423816800933331,0.1635476562475461,0.33264400827512497,-2.116641473037006,-1.792797951380792,-1.8483338889097005,0.6894367200574859,-0.09405917034832399,-0.6532698697863379,-0.6636438360644581,-2.842957408046719,0.17490780389414598,-1.1034305481620574,-2.9272588885455,-0.8603381751565986,-0.28792156117514567,-0.7344630340887571,-2.4289698832136684,-0.4461722784159992,-0.1367112053703605,-0.514047939357038],[0.12674065915362487,-0.13844441921599535,-0.3485096982321938,0.4741436485139843,-0.21652985539478933,0.40620656411704664,0.263939250582475,-1.2872930473931679,0.5849095332772648,-0.48560229124431764,0.18451111092859948,-1.443703882779207,-1.1589937282839726,0.959133711558738,1.779409952250683,-0.7773941058503407,-1.387986096265076,-1.0822678700206414,-1.5147921870536132,-1.5178516762543393,-1.040403348087562,0.0975689904914085,0.6390060044899606,-0.8265030907353474,-0.013805023005884121,-0.271047640775595,-0.3738557070455487,-0.9273151584122018,0.8646000103572127,-0.2552772756227838,1.3305113132128317,-0.9565551901768969,-0.37927741655011465,0.9185353780290133,-1.3027519212645,-0.1627044693872538,1.7299425778866118,-1.3364326318807176],[-1.1101202091276043,-1.7032967340460756,-0.613019848637257,-1.5095446628046283,-1.428712340196137,-0.07581617624712783,-0.3775139155980293,-0.08609538578330389,-1.977084430948787,-1.1959112754731218,-0.5974647035368299,-1.0983683817139287,-1.2831991145251345,0.2952727244662382,-2.039408468127366,-0.40714756847546396,-1.817341983873725,-0.0015802509579293867,-1.751542161391309,-2.392750038128962,0.2006647407764355,-2.1855831125656304,-2.360512422951254,-0.10066341950360277,-1.4194675184867334,-0.7026559896904447,-0.16932445134752558,-1.122629319892937,-1.5271926119427701,-1.8162358923029884,-0.919794521383831,-0.9371716437475193,-0.56743330926433,-0.10098898457504173,-0.7786125367303676,-0.7654684343818126,-0.17559064109794292,-1.343254479234874],[0.12337436464888704,-0.7842744554611877,-0.2376216569277983,-0.9824938372602677,-0.9082185017041767,-0.7372779894597145,-1.571466190778861,-0.062387055647212676,-0.5304263721363567,-1.5043362873769932,-0.02822880594852417,-1.2705720993316925,-1.790132091246193,0.1305061668133249,-1.388132899425889,-1.1982451938449692,-0.3818241347637719,-0.4594680407766917,0.5553735889900255,-0.5641456360605611,-1.165909544897864,1.3158213177222764,-2.011444866882012,0.9959525138546859,-0.9822154562615931,1.1128843341831316,-0.579780322465214,-0.3368009545849553,0.8892544446422378,0.7805732062839653,-1.217394933911174,-1.336122894682201,1.0900238903220947,1.5210336775098767,-1.30707678153052,-0.4738259673608038,-1.4602796967393175,-1.9626437136165404],[-1.098429888009286,-1.0579523807481557,-1.1245041076826439,0.00719960167569414,-0.35835062626214736,-1.9481567375267177,-1.2548974117663552,-1.803512461960551,-0.5856565880542982,-0.3461429595310171,-0.638584784896938,0.1279489650291689,-2.8619474536111165,-0.7513615031465187,-2.184679020314605,-1.5280629518970004,-1.9010042379484349,-2.7622688233605057,-0.6155364903460173,0.965361602776192,-0.00806483088473128,-1.1958853965056089,-1.7425213035247964,-1.4898711767835902,-0.18078087569577983,-1.1964283380160587,-0.7651243069402017,-1.5236085273414322,-1.2986353730863507,0.6433889631649905,-3.003978174124987,0.39956857312775923,0.1617075435892763,0.21917351603529753,-1.477934834836651,-2.8277810518968094,0.482996109295806,0.1890406977341471],[-0.9586111105259542,-0.8420664548717133,-0.904980445358993,-0.4100732432279249,-0.9016601308135577,-0.5645958421351359,-0.5191026015628485,-1.6148939101825865,-0.40345845183037893,-1.1114543674984259,0.2482613248728059,-0.6574414445396148,0.8847804138764699,-0.9542464612590629,-1.4808106024911487,-0.6911495181282782,-2.0280682164300625,-2.0420166226383585,-1.3104905001979694,0.45381563851659634,-0.4004499187297264,0.886427710056704,0.4866170161467417,-0.10604989584850216,-1.389475143528385,0.1879185081879256,-1.1241641271045741,-1.8723924499330802,1.4182518907527857,1.171722959895253,-0.7848645251280431,-1.7128733349465093,0.442479872227038,0.7560671889480899,-0.3594470131850467,-1.1282115480891544,-0.9437011682303841,-0.5825225626320963],[-1.2597542147961869,0.4261677736014197,0.03886628368215287,0.08056757578019987,-0.6984189593570932,-0.8282632997887833,-0.2604314579831688,-1.3849051150044984,0.2532288805344019,-0.2560882671453247,-0.9644010114587253,-0.05940421702001955,1.0990067197468982,-0.682238881163363,1.1293745815972451,-1.2219362441797024,1.5739497753865854,0.7077734395822319,-1.1489733686206842,-1.4623534604704076,0.2584015713793119,-0.742825804937632,0.8678648972755334,1.4062952619591724,-1.2276907893331643,-0.318692893305608,2.156269108696316,0.17665308678443195,-0.7597256972540071,0.014115886778873647,-0.7558807936031199,-0.8868370954102802,-1.246561809217742,-0.0830095490809116,-0.6413535457185412,0.1258795888085836,0.5049674573259761,-0.30591061371055617],[-1.1629246570177212,-0.3749366683604414,-0.8306440870769302,-0.25289856010473044,-0.5406470880097765,-0.8117608408943652,0.11968179349658893,-1.5905922290949188,0.1398468731385968,-1.1145913860545824,-0.6357285196516052,-1.4985337991028806,-1.4152914511186574,-0.3758936334490796,-1.3138445996177575,0.3963614328241754,-0.3386736433778135,0.1916417797855858,-0.7501094222660902,-0.4495321074055192,0.23747778797582905,-1.1705474133980174,1.3037670405710458,-0.5136344756741661,-1.461170463129947,-1.6879777614082214,-0.8451717590953648,-1.4462276586876126,0.8308715607872483,-1.0482215442796052,0.8154718897234484,1.3814321137215337,-0.17642341969170316,-0.8395625074154646,-1.4469504347936133,0.5955376958119698,-1.255530953798058,-1.8470048336826457],[-0.6239242218533362,-0.778666459518473,-0.6758406050479222,-1.4019363389014645,0.12188343285844849,-0.22167438488897243,-0.7915908102217434,-1.1641194551975051,-1.0550165161016964,-1.3506212840544036,-0.04213849969045708,-2.1479522915465603,0.8960973160324367,-0.576104158744378,-1.9198536172621672,0.19949996182099544,0.3775026290745857,-0.25280667188680134,-1.8161916008780954,0.12153760715792843,0.8850121714355192,-0.8339559029426057,1.399291947943493,-2.0745303321850326,0.2225323394577593,-0.5926822825490029,0.1520926134247435,-0.17647414413882556,-2.0592053738044513,-2.2003719934448105,-0.4346817162898478,-1.8003316078889515,-1.648534854984188,-1.1531542303163558,-0.025470830610112478,-2.178150520773106,-0.04175247253523717,-2.1653867273826184],[-1.6165830814155329,-1.0044078649215669,-1.6281563129895524,-1.4780377831420404,-0.2260888467501568,-1.4792474387352366,-1.257927428123744,-1.4455435306681141,-0.9870399271048466,-1.9965211942565386,-1.192031535982423,0.07768149675738413,0.5183530995072276,-1.9211445147702062,-0.9912282472672128,0.16178719171516714,-2.8207851652626084,0.10419480291345126,-2.5727311914046607,-0.11128585089672685,-1.6226962255837707,-1.4432571078470753,-1.4007070947729106,-2.5053269735969033,-0.20618524084259693,-1.503560784753483,-0.08951416045114922,-1.0160018977146636,0.7293341311383956,-1.1126369527264466,-0.13804105573400385,-0.8931191895057634,-0.9833724876244584,-2.9122252464433536,0.3892181645108027,0.27075152163307453,-2.742884281414509,-0.38201281529146797],[-1.338449336208602,0.03575461852063426,-0.4643094834757593,-0.6573847744864333,-0.991233572460006,-0.26300674143033426,-1.5142483560148954,-0.08450300465110172,-1.405274436755783,-1.6010801164546793,-0.13490133393450673,0.30856082800731005,-1.0319390635642611,0.9452964476735046,0.2527179591578271,-1.7659275380422104,-2.1794842384926874,0.8406997193740477,0.8942848730499747,-1.7630329713674633,0.9597905187106271,-0.3336261859417089,0.5296159926922129,1.8404772150651405,0.010593477711568438,-1.4897383245771274,0.42869278776332714,-1.6873034310644512,-1.6637117159689572,-2.0616953321175915,-1.9144519425366393,-0.43638973660505903,-2.2430776634223393,0.0338916566586438,1.5599368987816167,-1.1212306467734787,-0.07732743974261241,0.9327571276016602],[-1.388275956551999,-1.231770938474623,-0.4662708308492444,-0.9171363160129152,-1.3931265808804136,-1.7811871836623896,-0.7409237838605905,-0.9653818521281112,-0.5883638852034515,-0.4881477164293598,-1.4723556747778288,-0.742332097367804,0.3003267739674377,-0.25270676636173056,-1.3892281904361985,0.2855228627769387,-1.6085396913032333,-2.3052287935602673,0.1620667717758776,-2.7462305304981585,-2.2795714983353657,-0.7184995315404891,-0.35876343022646534,-1.225305874022708,0.021386680573950004,-0.04104561606563122,-1.6343214809535704,-0.7629577997890887,-2.5629711287801635,-3.1423256517303435,-1.1525183240579482,0.3092284600447025,0.023411989099474076,-0.8024056969233053,1.0617062745776857,-0.7277235707583661,-1.320209697855481,-0.11455838516822273],[-1.6209392497632555,-1.0956486271220198,-1.029850702744297,-0.5070827894824834,-1.8493130966490474,-0.2697601803784435,-0.5873334343816785,-0.7445706494909086,-0.6273876929066465,-0.43529710168834773,-1.394798931069951,-0.47310805900124847,-0.6624617762067376,-0.7046695823711198,-0.22956661588213717,-1.1302343204748109,-0.06693957334470169,0.4628017569493124,-0.6053472278118028,0.5686062795562841,-2.0449243301024747,0.45319198273266786,-2.324060511233011,-0.5047375397541949,-1.2013207473018517,0.14870453275076836,-2.2586934986037717,-2.0461965564233413,-1.0238468616915521,-1.6939458466007038,0.7975255897248211,-1.2958719074907519,0.38729953209431317,-1.0859289191920847,-0.15507571253684674,-0.6177815760105909,-0.6207507819322772,-0.006290607390652737],[-1.2129489835364973,-0.8368126254965196,-0.34412100064064366,-0.19845119262112673,-0.07557444300745964,-0.5057876895343655,-0.8662744987195674,-0.3027552729832807,0.07180252342820424,-0.6963065019350088,-1.0641350330646224,-0.4798554682218974,0.06555793080399756,-1.5556594648386604,-0.6709208181165169,-1.6012259536131714,1.4535416958739948,0.14607356867546364,-0.8926472510254578,-1.705284519392574,-0.508072229443178,1.9534074286363332,-0.061236217788651515,-0.6303713333230087,-0.9285007614040169,0.42588572914718026,-0.5709300932073853,-1.1791537421471123,-0.1393882689562646,-1.6486707878026445,-0.24407187682881132,-1.0302363680275883,0.6703187595457589,-0.3699508141509176,-1.8723842157882107,-0.1989069385178573,0.04187960880461112,-0.6807437616251305],[-1.1995361438133165,0.49103278729915845,-0.093488858301169,-1.1546159704327066,0.16190580398945864,-1.3020527460922733,-0.5464307543215693,-0.8790978272123334,0.16643607557996637,-0.3273774957788628,-0.04109002388390637,0.5332926982530739,-1.6017513604518872,-1.4273607768747723,0.07983696035318871,0.08331947864010063,-1.2095604289653041,0.18302739717940184,0.19563455187190634,1.6848296687739681,-1.444865793229582,0.6620061604943417,0.7640062762387299,1.4304877322404967,-0.7770041350915046,1.322924143557019,0.627131110135618,0.3792809882059356,-1.7060073492788415,-1.0324590434924317,-0.3232287269732101,-1.620787906221674,-1.60500901295926,-0.10122047800944171,-1.1445274815584152,-0.985015428101966,-2.097687480938533,-1.103281254725765],[-0.5049135880432437,-0.9904595288475854,-1.6019182242791004,-1.297728499708226,-0.7688674598115237,-0.33853005840138684,-0.8456624568989987,-1.3918504115246855,-1.1359507651962812,0.006027712994565615,-1.5212856443104585,1.2143278217324562,-0.044499675277143914,0.26187899232919326,-1.317543566714659,0.2574985147880148,-0.7514800120300937,-1.2107400834600612,0.04884787020673478,1.230773088843483,-0.9755091954428008,-1.4886891527778876,0.8797366318319403,0.3999231147596509,-1.657385183319997,-0.14528695865817834,-1.0230380274848543,-0.5002597430313713,-1.6239519980441361,-1.7923900193574624,-1.227831492589598,-0.4645526581518165,1.6967872978451952,-0.24078904427488892,-0.8693902360348025,-1.1312660728924617,1.0958922143685481,-0.14201715077065125],[-0.08436576464340614,0.33703479618939675,-1.793118068204257,0.22033788885335484,0.0883055214682585,-0.4445761300099412,-0.13395739800806752,-0.19993501877569222,-0.9577274497985986,-0.7349255416598018,0.24346861238931825,-1.0356354273159865,-0.9688728249382778,-1.926646973766247,-0.21334626913119678,-1.1485639270454606,-1.506994442026586,-0.03360712257746176,-1.088722047881002,0.8118399397955393,1.1721137928072836,0.2396316530159305,0.08870680230557822,0.82669267120904,-0.7394294143568697,-1.218408589140056,-1.4275138626714394,0.9319106653366772,1.216723893562112,-1.0843402434195795,-1.5917865458138705,0.06757870407848669,-0.9967306259536882,-0.08343134542934968,-0.39067732236740993,1.3770409202468967,0.6106411576352043,-1.2763290208557452],[-1.3043970758464618,-1.5028565453332268,-1.8479082360382348,-0.7283882591773556,-0.6724072310397637,-1.7505045708426619,-0.26809024761404115,-1.7314688175738442,-1.8377884149284993,-1.2520575916883214,-0.7622421577296634,-1.6166824808773126,0.32029773841699166,-1.6150112728564336,-0.574258264102389,-1.272599941120282,-1.9515766487291566,0.040512482787458406,0.14752473160678162,-0.05765476218033317,-0.5933055762564075,-2.0976224915010815,-3.2039470337162883,-0.1671414525048699,-0.08658416216863142,-3.067630891365283,0.32904494301935877,-0.26112183658237875,-1.076453428387267,-0.44976326912027703,-1.2474762898313314,-0.11611035915925585,-1.015989950606678,-3.179036584683873,-2.000889398981977,-3.1913646314526747,-1.4741859242589956,-2.04632245368957],[0.49970325240514124,0.17493038361007515,-0.2069428921560741,-1.4857329684398548,-1.1697007611309713,-1.3314907960174862,0.07827793225757992,-1.3032889092131463,-0.45028458887813366,-0.8273097414520743,0.21817357935167472,0.1447235862938319,-1.7250819737231573,-1.0328847064234468,-1.4546348265093354,-0.5387189379552435,-0.26663621696567036,0.5191029018231291,-0.8622472070544156,1.0928354051681897,0.5573408324347643,-0.04786144963265836,-0.5562309678461335,1.3665728012540639,-1.7047961839317263,-1.4005501407750152,-1.4688610236544288,-0.4105733236790017,-0.866612754838467,-1.1608583667590775,0.08260525662531201,-0.981055794938072,-1.2162809636349634,-0.8807106353601554,1.5807091085081757,1.0710500221512527,-0.8362019024256079,-0.9927075109926574],[-1.328193438327774,-0.1401090090100905,0.1949272314757392,-1.0554196058561207,-0.16867858397399058,-1.0304728036118957,-0.7743837232111668,-0.5296059396916408,-1.2235948417888687,-0.9602964048830113,0.2491038097023252,-1.6304462414065828,-0.9414931869467105,-0.06930854929899062,-1.4174495099197209,-1.6055783046460015,-0.49949486887028444,-1.6914151604862653,1.7038394807614752,-0.7625079035261276,0.7152461495228506,0.014068504364244264,1.4403685420738421,0.06325278135234601,-0.6386110539056858,-0.00933692983779447,0.2624900959036955,0.8314704262370294,-0.9598453454186753,-1.356616236065971,0.02090756379385542,0.9453481064628141,0.2452250859134838,0.02894774144483425,-0.7604686818781377,1.2796401535604338,-0.0658898708403418,-1.5392539046531086],[-0.4196723863067876,-0.9154745616730047,-0.7958983411322432,-0.6585294412229419,-0.11163870982026604,0.07202426762113667,0.2667061381863394,-0.01634928245495437,-1.290825315469993,-0.7444639137475195,-0.40769034010603245,0.748464472674373,-1.6843650141525655,-1.0333799960478394,0.48712618676242786,1.4907225915034952,0.4405894957571076,-0.9300457767057664,-0.6667370127232789,-1.356840059037993,-0.9067506644636983,2.560831790374895,0.156482285386747,-0.2528915727441748,1.3936787979221692,0.6840780347729535,-0.6816623436491123,-1.372559822637614,-0.8207701670437988,-0.9789520082064874,-1.3354936773987358,-0.5835543572688903,-0.5835648532558099,-1.234059541528845,-0.9817481442112694,-1.372586634303925,-0.24567814887030529,-0.42525206049964803],[-0.3706806581156114,-0.7157015538071901,-1.3315150491702203,-1.0502625123375062,-1.46980437966729,-0.9997417576980139,-0.8338090135575583,-0.4243348968712131,-1.4734847450528956,-0.47192272248225087,-0.6597984576947293,0.34839564894158814,0.10294413575459216,0.23364981199867327,-0.34792669236723334,-2.630346923310036,-0.2678691699794315,-2.618165480654685,0.566400176390544,-0.4328381157962535,-2.087062832546928,-0.22876543876398422,-1.4177902170698164,-1.0797608279187152,-1.031467103045578,-1.879964867936651,-0.12235608941033073,-2.0976457606885086,-0.5410046430561543,-2.8121247483661858,0.21693970981531857,-0.11346168094199374,-1.222165513097138,-0.031384932000662516,-0.4632733246944272,-0.9856668449316761,-1.4833379435192897,-1.3947039694484837],[0.25051555057985103,-0.5978689313209603,-0.9755517539739588,-0.2566433684200362,-1.2234738819085722,-0.38607237182678356,-0.42488212255098395,-0.9869823612725376,0.007296828252116982,-0.6465475462491591,0.18375255869310037,-0.8604256807303383,-1.424556841246911,-1.0858898870074316,-0.6540026600654827,-1.6127779659319328,0.1577379563338698,-0.722854753483713,-1.1070858434933097,-0.6907693972425297,-1.1096272247757184,-1.7397992958481525,1.2129808425362996,1.9949787011833686,0.6792323946958372,-0.6669143355445427,-0.5064735209414085,1.89100517719795,-1.4883783650673756,-0.11114737424484188,-1.4332497203071026,-0.7201660516023295,1.0061519072651117,1.3049750663616824,-0.867543969486413,0.6248532026437108,1.0569858256676914,-1.3085996987971324],[-1.5878371204572392,-0.5943160916589665,-1.7246744471425204,-1.4500086011715556,-0.3393601604323173,-0.2076836862258496,-0.012843860647368078,-0.5670006850914525,-1.6530486587861635,-0.7494386856145571,-1.676266095351518,-0.9949349874517072,-1.4660835083521295,-2.282244757263706,0.10380439977528653,0.4246495805574435,0.4413990449173263,-0.23842666158776873,-0.7484548543914243,-1.52409390393573,-0.2751933200693978,-0.9040341664366864,-0.21172343459955287,-1.7865471355142564,-1.9332557886445276,0.10235092142948357,-0.26473694524254565,0.3296694665933517,0.3428601760855862,-1.598369006202298,-0.7551721914378683,-0.30067093386932814,-0.4766371743368877,-0.34629243589648623,0.7737791619492074,0.35774547978749754,0.089323564063701,0.48843644568277],[-1.1839863055423192,-1.0779364893879273,-0.16612407177426483,-1.0915826885493254,-0.36096877744589206,-1.2665536562199906,-0.3190058274599072,-0.6881998087298145,-0.9466231432746998,-0.10862083422890784,-0.5441782816808225,0.246014064141434,-0.25201904467582215,1.1589114749916387,-1.5073900978143218,-2.6134742423551143,1.3444128256521617,0.9293525806068972,-1.444469638668688,-1.0519122342282687,-1.7112176675961643,-0.8746260729068247,-1.360497927951797,-1.7480183142402268,-1.9402276706494919,0.4660909432000346,-0.8124338998870931,-0.1331451232686787,-0.06987272607487104,-0.013743670275340793,-1.1142199071424739,0.5358920927201443,-0.6991910017901313,-1.2221249751053727,-1.8483907752190643,0.02157219106483231,1.1196645062106665,-1.551977058128498],[0.2600423321457506,-0.9203500396534153,-1.3167963236033897,-1.5292610146838252,-1.030040976708918,-0.8066866564678706,-0.22619142092680006,-0.7021834599080597,-0.022275040704678357,-1.5614982266479114,-0.6932314373191043,0.924962785182812,-2.0626870899796828,-1.441408452904983,0.5349026815334564,0.9571251563609833,-0.6920504205227626,0.575099664057939,-0.017446476644967856,-2.942861351131617,-0.23789503219473557,0.16251624413827934,-0.6656105581359876,-3.334302742372518,-2.096067767469946,-2.064030516755977,0.23582864601936632,0.6390324858252997,-0.5471309728624187,0.18054427636968637,-0.14182360133336783,-0.07377917187658907,-1.7349944444717065,-0.2440084751906585,-1.624365092586885,0.7035464555055153,-1.6591550708211802,0.05394932742944919],[-1.662753169445038,-1.4691975228547591,-0.5042224823255474,-1.6214204837609367,-0.7011755590808345,-0.9901256614862658,-1.4419071776328023,-1.6100212446144648,-0.986837974609704,-0.7639051104780604,-1.4808944938605135,-2.3004698262189067,-1.7661675478760896,-1.6814400154006854,-0.6546570292291528,-0.9509828338717655,-0.7784140948354749,-0.574456778905222,-1.2305430185926067,-1.329307348760729,-0.39598411574623565,-0.4955040383332588,-3.2411136662345137,-2.274361413457711,-2.0671674891625598,0.07021633702769983,-3.1243051671804385,-0.16163518582293063,0.367406475285714,0.3723096506595631,-1.2988218318361544,-0.2976592966487215,-0.6127818130484101,-1.7192828997451655,-0.2484159659822595,-0.3370491288214956,-1.6974646985996642,0.46151926576224256],[-0.3740757146421802,-0.29679795929933855,-0.0513449992155216,-0.059981186421368494,0.3360449592981174,-1.6635572689631333,-0.3770445721716754,-1.5332687409876697,0.22806901673565538,-0.3129199381714839,-0.3704936807429007,-0.05637056790144043,-0.4542673259421072,-1.2847543146518168,-1.4932325134887232,0.7829841551402476,0.38429316928819285,-1.4041974106737682,0.35231659386148967,-0.8798221340680764,-0.578970804955314,-0.4696835548984281,0.012560781218270539,-0.7713577102867145,0.9748892650133485,1.0337788869364903,-1.2369343885574196,-0.7611844516026333,0.13914595617699826,0.6480120380762866,0.9441173033475689,-1.3085514813514767,-1.7317201564862088,-0.614033703560778,-1.5429341544545536,-0.8502590341361549,0.2048767634049352,-2.0262675361049944],[-0.3272248386204096,0.09724250218335674,0.16857520897555217,-0.7105782404660225,-1.2031178201200068,-1.2169905815575996,-1.02652533665432,-1.1350799406948047,-1.3414946478909278,-0.5520725597303839,0.0002574351184754416,-1.0099124968185917,-1.5436722568580834,-1.8908862572320586,0.5037187594000009,-1.3679578847843181,-0.01661646066231498,-2.084496972827248,-0.9222746055547724,0.4896965834101976,-1.4995751389043706,-0.6869513218428992,-0.3623848490400298,-0.4820044010097664,-2.2273957343873727,0.4954861868984952,1.455209682686561,-1.548457648783965,-1.1359957814442363,1.278354399761572,1.716179123707632,-0.3097681996688175,1.0608904661345269,0.6563875554991523,0.09682380437667717,-1.3934470799512875,0.5294647919333685,-0.31892486569110934],[-0.3966456366765939,-0.964121853763817,-1.6984332774330069,-1.5957520862967096,-1.8632404145583756,-0.7452396180033823,-1.2345256046922226,-0.5083330521996108,-0.5210206141785394,-0.6845455473685867,-1.1925021579206914,-1.4573142905158867,-3.05650540659182,-0.991096276158146,0.06499298201952498,-0.07931289622670115,-2.7178113176293257,-2.341456281833388,0.3267535372849111,0.4400928167849111,-1.787108783682417,-0.6698255189495084,-0.6923274699826667,-1.9725515925556296,1.017971606235761,-0.8902343444725402,-0.1989681078176023,0.15034449477250655,-1.8266713916029498,0.6470927339236966,-0.6113569611904349,-0.28852277044121727,-2.4346079859709904,0.038678970383466786,0.41505190870203434,-1.3755060888037263,-1.954525502972872,-1.0618786377171434],[-0.44488797542554065,0.2333065971711833,0.11519945749269414,-0.9476524700870157,0.30610741486492815,-0.7829960818879926,-0.0027569628784692925,0.1382158466763549,-1.4014594815735582,0.286530978712425,-1.3772992859442645,0.41827446119898437,-1.4366895123473278,1.2018506350438365,0.14208967405650663,-1.668910737464707,-1.4131831444544143,1.934130139910112,-1.6044082408317737,0.0330132624665395,0.13638898845254288,-0.9832588050645963,-1.4563380944230113,0.3386637922193043,-0.8417440473526496,-0.8702477621450906,-0.9781776813933148,-0.46983242322475194,-0.5207631407003127,-0.726986061736178,-0.26970511143199993,-0.16376806413703415,-0.5459258417320761,0.2722113137811008,-0.7060231107884665,1.10716768430688,0.9638361503585909,-1.5767432951203983],[0.293923952916656,0.018187162810562714,-0.5798467440261587,-1.4334055982482685,-0.5581164653281532,-1.6096196469776562,-0.169167786045985,-0.9457347902384009,0.22872654899338501,0.004299309972421815,-1.2596934425232784,-1.64419556942462,-1.9883475444933751,0.4533812793349452,-0.6587732551521913,1.0615293219933502,-0.08983794194413999,0.6390535624194165,-0.7506602686996522,-0.030019141607654187,-1.5534697164870197,-1.0168465326872578,0.3515247768486638,-0.7482029385070659,-0.11607928994601953,-1.087000045974961,-0.8343561722404141,-2.140964461682343,0.5764837330691173,-0.06784668172057222,-0.45129213461283324,-1.483474515440471,-1.607592115042258,-1.4462763582044014,-1.6968165035225575,-0.4452559446821298,-0.5991136118301575,0.8031775847401997]]],"Biases":[[[0.9492066405068174,-0.596242868682051,0.46131646382130176,0.5047329721862642,-0.8245418127415318,0.7661376305761695,0.2671527307559125,0.5115816846426154,-1.0709502030555806,0.07669247840353767,0.8749992552844068,-0.4413619346124578,-0.22290590565117538,0.5479510968592949,-0.18600456991998188,1.0339909427097116,0.41671572017318187,-0.06175881633253127,-0.4881192615078949,-0.8018925488406528,-0.7295839007809042,0.9113325947130834,0.41895667182402063,0.6521330231479991,-0.2445071957141883,0.8399366004999328,-0.5810747158015375,0.39935888247219387,0.8361101885357025,-0.6265979497604794,0.7406771887295109,0.15694215132339132,-0.47032219620711957,0.05432910007148347,0.7928642976422262,-0.4312132991335292,-0.631050213523281,-0.7477439036060308,-1.2233786564849447,0.9930400776411201,-0.3521016454248794,-0.3170997345641289,0.06256895716423665,-0.3644952937526814,0.42429840947732256,-0.5296896890380111,0.5950537105186184,-0.4118444742914488,-0.6727920989973611,-0.6143258645676821],[-2.255601893281775,0.15261921571265066,0.6181339170482677,-0.4236646262953339,0.41806779136658617,1.8313440919194535,-0.08780653466438516,0.5476063924137291,-3.138527220914987,1.2033845603990898,-1.2490496237627957,-0.9465488947485343,-0.1135595829305468,-1.0538509358681774,-0.5128464906617807,1.057795417624813,-0.3251716246717519,0.2006531612940845,0.27507226567945436,2.053875946051102,0.45086119996991586,0.37562859244190006,0.3452190086168813,-0.30598012875433206,-2.310950682805647,-0.29203513571225387,0.273869358061415,0.9987361382090659,-0.3280022227693543,-0.4209378315601498,-1.0475191259600953,0.4213947371051959,0.646128693398958,-2.004900599697532,-0.03871508621928187,0.9369795293545624,-2.466640009947671,-0.9021502085372888,0.5954564930373334,0.13015097938915318,1.3863958474897868,-1.8228676777085646,-0.7047569787493808,-0.9747456015547004,0.17710926029259585,1.441453235276719,-2.4921255321697147,0.3798890980022031,0.731413037759153,2.4670311591979353],[-1.1894232960117375,0.9460640893007962,0.5799992845616313,0.5491804021189393,-0.13887389033495287,1.5601999006486569,0.8941958463641413,0.8943390785396439,-0.7226379993557706,1.2774279724752284,-3.311099100883019,0.3441430038487236,0.8422706233623252,-1.3790880614303829,0.9185500585574496,-0.3165141277334338,-0.1088532456465316,-0.3503949105815663,0.6606287099304141,1.5824743574673812,-1.237537861770488,0.9677074262062271,0.36221292587012077,-1.727711878224781,-3.075940391099638,-0.7304249484834245,-0.12103478060827781,0.07492641192938942,-0.3585867878303134,-0.05311907869867012,-0.17659085601422753,0.1913132737505009,-0.5713668221415529,-2.277788657522252,-0.29470515565951066,0.42849152221619585,-1.888430410154126,-0.4803879503025673,0.41985293770879234,-0.20965464243616777,2.142863394864039,-1.8556361798274075,-2.8225148447172357,0.042041183242254976,-0.10456342051937335,0.7746625038096342,-2.5477914163355644,0.5063379307275168,0.019407917273913968,1.688329621486583],[-2.4671949531170863,-0.40131773100984064,0.22355863964673092,-0.16032586948374394,1.702318746079347,1.6035402081293717,0.9353249176015664,0.6422585892997802,-1.4224289491678024,2.5226408351865395,-3.7340622623109763,-0.6511910685377076,1.185855018553253,-0.8620851626236092,0.016939710421492414,2.3490118420690753,0.5151635569172976,0.2639304542207696,1.50413582505754,1.1045744376109414,-1.0734099133811414,0.6642741420043098,-0.7658713495768303,0.08071100182839468,-1.2796224062137447,-0.6192651346508024,0.5421133610104394,-0.08497259433286757,-0.16878107415247695,1.200843997337343,0.09378162809507415,0.515878356830542,0.5509566943717944,-1.6494604344593384,-0.1805628806212301,0.411362162622263,-1.0994834899853256,0.1325234053892832,2.1301516478110663,0.07494376445089995,1.159297616336931,-2.4667682020918082,-2.492085555084671,-3.2150514322305512,-1.1082423184065822,2.2929304839615656,-3.5983200186685966,0.24081783173003046,0.5379967451679114,1.2099913524710806],[-0.6947545275998644,0.9110695473386746,-0.665253592436258,-0.6125479260182177,0.7099865292794575,-0.48132065266771945,-0.46110349620482244,0.5129440712630505,0.4238474525226749,0.12074208530839771,-0.26673616318971305,0.6874119915850875,-0.7457217450964417,-0.4275505651035019,-0.6039085500633377,0.34264008629141646,-2.1257058217531064,-0.5214022250379284,-0.36489591173408964,-1.4982848152823747,0.2555734268873433,-0.6052992595563741,-1.0168556439534615,-0.5624814791958433,-0.40581824571176894,0.2478871821550396,0.3734326366181128,-1.697471237642646,0.9022207762858685,-0.7012434013570583,0.7970984919704267,-0.31273567925649376,-0.04687052344886223,0.6471817992374751,1.0284136114545424,-0.11558245879894884,1.0071361026641734,0.39368958245967917,-1.2504087933390402,0.09805824887634813,0.39541477089768506,-1.0298864552543214,0.321521618911327,-2.64726715244481,-1.391019047318435,-1.269699370316524,-0.6031386202983863,-0.905728150248837,-0.7911043387235808,-0.25591320320122407],[0.16007876614427075,-1.8436359264486724,0.06335062149481539,-1.144951636447586,0.33134983420960623,0.90894351126691,1.297801794735829,-1.776714467847562,-0.27239883641709917,0.3426509300594589,0.6114913030772162,-0.3553535053709435,-0.8569506634835032,0.9708792432586527,0.3763849428357495,-0.4600863637221387,-2.56348170026016,-0.5898158402727167,0.33893982413250257,-0.009874109162109287,0.6658277742752126,-0.4562784664617139,-0.7493826152186092,0.433493493370256,0.485840548820316,-0.8802133298722263,0.4084738983152423,0.7344138262262732,-0.2096594506332754,-1.378945656088161,-0.19912006072929797,0.2445710528604808,0.747654143391798,0.005413640276292841,1.0134471545152972,0.870869677713224,0.3016592167103787,0.2097386211390558,0.09750008113196876,0.5956896513188725,0.49622016833096794,-1.763457009496783,-1.6133717664034606,-4.3184728604606475,-1.0151684425571832,0.24613246758787505,-1.1413068679473628,-0.37039320365517975,-0.7937945562631458,-0.984603136162731],[-0.6879082128545765,0.18672861873678856,0.284336751863462,-1.0888002823693548,1.0628134354868652,-0.215859173476534,0.8530032756589025,-0.4241013418876123,-0.6283986659492498,0.039209582161000595,0.33795495174082857,0.24863429506854975,-0.941977564449538,-0.8678792788186958,0.1377754311264494,0.08484506653704264,-1.4193187560071368,-0.10189637256405351,0.6193119541694119,0.783205658342601,0.01309481680477329,0.06493413684937828,0.07787439971271833,0.7062628064989348,0.6217527272255702,-0.08504538718612736,-1.63900448627275,-1.182525359424924,0.6358556216664439,0.8121051431527317,0.4298272548942556,-0.02911059591274977,0.4841180704074882,0.9461078598097072,0.6644729196150406,1.3289493460332191,-0.3904857572372213,-0.45884177607507615,-0.2474576949091935,0.7424798754638384,0.3047600657209192,-0.5505117803331917,-1.0380667954718348,-3.645337574282881,-1.1690768124290536,-1.3162681017385562,0.1593503972173417,0.1094202426526674,0.8534205582876075,-0.2920159524697004],[-0.46702762675800463,-0.02927938242497097,0.29918805962617134,0.5878447603478172,0.6898753473420868,-0.3045619089495905,-0.10253915228346559,-0.34202370943258065,0.28565108407726947,0.6368036809372607,0.842995783729955,-0.24908301227868254,0.10578415187383897,0.4619009285112325,0.6067476619501986,0.39612444245541956,0.11292197053204943,0.5573655690394027,0.8307974560951954,-1.2124269981535263,0.3765984610013081,0.6411992424774224,-0.39228609320245056,-0.9160892223566349,-0.7069064775637498,-0.29774841993173284,-1.4473828604670493,-1.2096182355882554,0.3255478165292698,-0.4998591376184327,0.40087294762174186,0.07217020903370988,0.43708125445807344,0.6138822131507438,0.7611064189483902,0.68935322177914,0.22319098738398083,0.3550380920243545,-0.9089962249636281,0.4482513245479797,-0.341126308630899,-1.0093182859778191,-0.7442383172422388,-0.40422726245884055,0.11235911504459957,-0.8939653900111407,0.17731220030945277,-1.0904016568679418,-0.019922509153392977,0.7270217565557846],[-0.20312330443295348,0.9750486409477768,0.8360367562099903,-0.6091617365625746,0.06536300084255087,-1.2279620361959345,-1.2959572499035958,0.30958146761249644,0.7972952932035657,0.5423913645485324,-1.6875209718278001,-0.9832973007316527,-1.4460160206284083,-0.8023735704454368,-0.9791519934138123,0.6909634267560745,0.12947009894949743,0.258421509696748,0.10063181230030187,0.10384095704441904,0.6735785194009993,-0.40611103657233266,0.8202306312185561,-0.560541758405963,-1.0580282002139068,-0.561850964078553,0.8419685099659688,-0.060924162600273245,-0.5225378580336776,-0.4344703431647311,-0.28436093473174545,0.4059024400993441,0.36629499468233595,-0.0021962049793941693,-2.0672644770068365,-0.883120906334607,-1.5751226138415506,-0.43720688621375403,0.2603395802118385,-0.5643273244750743,-1.1743626797909197,0.45231908047741726,-0.370306912094495,-0.3296304516963963,0.5085120790712677,0.344633645407697,-0.35027047310138854,0.17980568133681082,-0.5150911158736018,-0.060567811494520604],[0.5197205447949607,0.2095021991049216,-0.20557098807893756,-0.7881458597565528,-0.725783662809421,-0.5312061898453396,-0.6126763351093438,0.9400191747128575,0.2248657745611051,0.17628994863557632,0.13030928699810207,-1.049615331830925,-0.22557181835700407,0.22271295438165223,0.3108616457218484,-0.8101725879378102,-0.537545177488425,1.0706344755944812,-0.8419472150042642,-0.2202517014811527,0.727867849662695,0.5096278770714655,-0.27326046527154774,0.12255715591616789,0.568112856572936,-1.0661951640206557,-0.30073530280736105,0.3494916711938265,-1.2663144465657192,0.363763793716293,-0.39918869168893467,0.2642177848221027,0.2002279408744301,0.7155294803502784,-1.278366610599892,-0.7545569308961435,-0.7727841291666833,0.1734561961204174,1.1841181129124148,-1.2073453577943647,-0.4735306225429016,0.0060717140364162725,-0.6864494439040496,-1.8714463991816994,-0.420941397078335,0.7322158007935905,-0.7406049878675086,0.4196898809232698,-1.1995116419349223,-0.06437147456759092],[0.7961993015452457,0.16867673177537706,-0.2889834331370486,0.6338542449553417,0.46380498696553596,-0.947199188852655,1.0192075210847105,-2.7149173877903476,-1.1902617977303882,-2.979909587932721,1.226839819948189,1.1347162830346773,-2.3885236986045992,1.799228492426897,0.5552054510600589,1.8779079001509837,-0.3814617984161801,-1.7299006206979017,-2.575059303196954,3.5955672502901317,0.36348125438763,2.718341231177352,0.4681528833543695,-1.5344326126188215,-2.375927886489922,1.9283025333255386,0.6744552479398295,0.9100907719771608,-0.2667703476047916,1.2962466566143716,1.541935141534107,-2.087909370919734,-1.5458231181239301,0.6504651411018147,-2.699946669852722,0.8798336160997653,-1.8798168085804603,0.454562187814629,-1.4265426099325038,-0.23999884036139021,-1.6483868994263793,-3.0886201908406448,3.112798716555745,-2.601071189396772,-0.36568431090548886,-3.0540028469078844,-4.591980117266674,0.641342310567974,1.5145702815458248,2.627510193159783],[0.34191467656092184,-0.32792632195055366,0.9846190491120469,-0.36586255157817443,0.13700311592733339,0.38532141481178245,0.32424899455770206,-1.3811669385506562,-0.7331345932096187,-0.7618654412138034,1.5690031631732646,1.2401286101818798,-1.7813566397833724,0.5963004447231511,0.7586883913237882,0.09053390626900411,0.05263306219521381,-0.25053818909307474,-0.5126182180969421,1.5420566529176436,-0.01693808265086957,0.9320409176182978,-0.6498974635630924,-0.2168917832519291,-0.41844346423338735,0.051361197073126114,-0.31804540945220466,-1.643070446464466,-0.048093803824875,0.26156619818564875,-0.40759614704127156,-0.38809870708022365,-1.1384241540787992,-0.22388885375149428,-2.003846469135552,0.008398248344041345,0.7557385141780798,-0.3390839595949189,-0.7165994852346353,0.6061387410454143,-0.923136371615994,-1.7563999088769822,0.17263522861595773,0.4249423657937324,0.18923475908975929,0.2847206343095221,-2.4326819560201054,0.7522632503234912,0.7417594859564761,1.5939600571159909],[1.5677515812590646,-2.9029293051342937,0.05591979810859925,0.1239723640015549,0.6745081954341646,1.2414274673219692,0.4492914702877546,-0.4333967447558751,0.10721951970852718,2.57588978785759,0.01031987793966463,-0.7478651998594568,0.9415243043352087,1.1281672821560476,0.22581790307864663,-2.8626164549160893,0.8336094124378405,0.7537035944021224,-0.8172311725789518,-0.7127090442147873,0.1079065611206804,-1.7697422996062393,0.34824174276613934,1.6655771967939912,1.3061565609802732,2.6274975634162208,1.1058463718256788,0.4729927624606892,-0.3603493380914216,-3.9391887553472826,-3.3400153930466936,2.60418875001893,-1.3667382504979122,-1.9889285423603567,3.3377522567415947,0.2437540917647716,2.436867800134756,1.448512087787007,-0.9638665995220748,-2.2252823276656395,-1.8126315776786535,1.967634181584143,-2.3191427548500076,2.731459599751026,1.2528579539104,1.3439437532923968,-2.7978842363968175,-0.7085119672826589,0.9718230708300373,-1.8223446422276532],[-0.248100927407401,-0.6352887388088507,0.1669580552695193,-0.19758652386168649,0.7346160672471731,1.156415800184445,1.2541057528372235,0.2578522185048755,0.9345739438297807,-1.2188936639240977,0.8553845640893587,0.000976041044367285,-0.475753613297513,-0.4390638615253445,0.23435097126926113,0.47664165741062015,0.1958009772902968,-0.7053064962547101,-0.10265587029361134,0.9386096596872898,0.3572802718440584,-0.1437982075730572,1.0269949417318385,1.2184969432770372,-0.3760852787696779,-1.021419636045139,0.4435604862239932,0.7689622666797216,0.9053731477154813,-0.764917189286758,-0.06471476189887859,-0.4513913199296677,0.2454889045125313,-0.028614783212864016,0.5884787028454364,0.27006527524109253,-0.207514552269328,-0.7722901850864068,-0.1310791351827876,-0.21232869584656577,0.49281734800421295,-0.8340492294806652,-0.06863283667395913,-0.21860421404455552,-0.1559472527700762,0.9586652484792068,0.5989445302736903,0.3581925001037804,0.029531887435488794,0.3627624032131807],[-0.3340910181085636,0.19836535906777514,0.9042146641535613,-1.5299735598950082,-0.3305217436306151,1.6366963768256628,0.4121185286985499,1.0681045575784804,-0.2883021901507844,-1.0814746132672897,0.9240995893098913,0.005380562276535561,-0.8095094287402801,0.9303501030156822,0.8048816339938688,-0.9125275887469857,0.23432765197319208,0.5966803076856804,-0.5736539766448255,0.8144871745487277,0.4310051937853446,0.25576560406096166,1.2959099147770683,0.5613474494382504,-1.4017496980844901,0.7136536210767873,0.16230738163392647,-0.18686075046862524,0.6531381313084033,0.335960210989788,-0.9112649525222448,0.26009846264463155,1.2030346308276003,-0.7346868289621721,0.7272003154927973,-0.50297148437376,0.9961625667685448,-0.1986035171803483,0.8380810664951858,0.6208523321470177,-1.0726705427174028,-0.2767676352327115,-1.1965982132472273,-0.18866398774039417,0.55979087535582,0.6854571745433309,-0.9487936976324436,1.0600510757474946,0.2246848604256353,-0.41211827795812095],[0.2517283381959056,-0.2654460553289478,-1.6536410488176658,0.09240977820826647,-0.9272569193911472,-0.1056363574866854,0.4353263542445301,0.8291415045270801,0.5446918836411824,-1.5433395947613315,0.9078232352708019,0.6370658242010943,0.6305564641386255,-0.19338666229853327,-0.07586397850055783,-3.8135609247532893,0.8139091515968832,-2.0072982749019697,-1.1954053938467455,0.562844007150487,0.6582014850027185,0.9436660316347214,-0.49172567446539656,-0.3161788634594814,-1.392248092142423,-1.1611270435236178,0.5880330409380526,0.3385653470331431,-0.7722042542319911,0.5024557460947189,1.0384798027780209,0.41434491996217804,0.10940334588412026,-0.23555812780799526,0.6072125764958,-1.2841931803165771,0.45867060864456005,-0.6425183417305352,0.2403389374613108,0.5988820385026625,0.46647908785879066,0.09912074563200443,-0.23941836009748757,0.6398332853712014,0.7251095185252863,0.374781633252896,-0.1182742194174625,0.4725995145608295,-0.6253936358769728,-1.311783540975879],[-0.08369407885236191,-0.6060415284268316,-1.0911432228618478,-2.2869694765591766,0.9008591137149298,0.2689361172110961,0.9832653952638734,-0.37685603847971133,0.8958028627593333,-0.7906591507146117,0.7014003778691763,-2.045741848607707,-0.22189437761169928,0.7819570713889419,0.2561219774337268,-0.46856052283187344,0.6447424870479239,-0.12350982452547737,0.12154334094739655,0.1258323099601749,-1.7029712205845138,-0.28091329070398585,-0.6675768219195661,0.17922963906656264,-0.16448293982268847,-1.099250906398104,-0.22512510278755632,-1.158821654936873,0.7761921373014373,-0.5884878860086243,0.015141115561924807,0.3147404618826575,0.8349231735845319,0.6999262733822721,0.6098026755477326,-1.5356706642858213,0.21673512498150493,0.42146062675909673,1.1094600774166818,0.6989138986625196,-2.2984402347015402,-0.32988562432335045,0.6269933410574685,0.05318357533977502,-0.13228168367994947,-0.8089310125232821,0.8946569479185246,-0.38820009052613524,-0.28928757900604735,0.9478240932643885],[-0.2353054005214742,-0.686441026991022,0.44126889207766523,-1.1841381915518001,-0.7199545724597407,1.321708571778771,0.9109751714836355,1.2783028581034162,0.6484771180453831,-0.5658753083765388,0.19615652580778306,0.1101014603336061,0.3871142852620761,0.08664899856546807,0.6821013705648997,-0.6584141848808553,-0.11472422733617459,-1.2693022138980867,1.0240134400385719,0.19361997943412065,0.7422467484312656,0.042954084290949934,1.200001486691447,1.9213103002271277,-0.568477016254274,0.8132758589237036,-0.22793139902191456,0.5692056754117311,1.0186108004305325,0.84827776703005,-0.1626437659271523,0.20597391096077908,1.6898161620657866,0.5805725920766007,0.8278808511688588,-0.5923461212330564,-0.5657855472611115,0.6351122846883928,-0.24492172068439824,0.4512868527651682,-0.8554094404903952,-0.5589897737065951,0.1762416116225018,-0.4248027179678131,0.5944925850689232,-0.8532443004139989,0.17523614652862932,1.1858963333991024,-0.6601113968159741,-0.7271891371312039],[0.7629902631994603,-0.6704023357913359,0.5567936407936732,-1.567385087445274,-0.21074152212534594,1.786899343498813,0.04331922083538439,-0.20864400719283185,-0.0839358029953754,-1.370881940905566,0.6590789545175118,-1.4926368752971753,-0.046051825501827105,0.8223113747974408,0.6763243902568201,-0.17027332932032313,-0.3670810775378454,-0.733114370741684,0.4031660206682723,0.7026659518640966,0.2590008178122992,-0.23699664746570462,1.0907034429357256,2.0505648826525675,-0.8896000008838643,-1.155276702969428,-0.2252164529912773,0.10823334693383396,2.358799077280226,0.15995628286297447,-0.32303102535199024,0.07246352118588026,1.6297195231513857,-0.1499001365969351,0.5725836775237985,-0.8509090766259134,-0.23638051715128747,-0.37380280560797047,0.07896153437903516,-0.02768190606835591,-1.120021237028161,-1.120764374606452,-0.4718090946604974,0.46153318949594646,0.2509513113375492,-0.481317865966147,-0.09070948636161226,0.5131588983316062,0.5479246855626334,-0.695253857803125],[0.8202809187890644,-0.6105607783685056,-1.2874446465559837,-2.185839400994015,0.9630026373072884,-0.7456593575560772,-0.7300491053906811,0.36767065988953146,-0.459275936554639,0.8811627152228495,0.7360954040620442,-0.9618806907915979,0.2843618285533967,0.1897517269733347,0.04016371073115445,-1.673141508405477,0.7687705254645223,-2.186083509284527,-0.5889960441413753,-0.018405376194543143,-1.6070311942620845,-0.5788220251492965,-0.417332023383513,-0.80708523923543,-0.3241127319592523,0.3567965646764264,-0.5453658960466256,0.9041221272996866,-0.4244300878834162,0.6102618271339147,0.9381386975463266,0.033372203243939205,0.053327771389309206,-1.4685800928997839,0.8124856037431947,0.4099198446041331,-1.0069863802819583,-0.5675105983806267,0.8907243561760455,-0.14136162064228674,-0.41174228184782824,-1.6114379936260381,0.1580198831641278,-0.4808900119715457,-0.7947596126785931,-1.137422476358177,0.6484543088542151,-0.361051518093609,-1.4966164278268788,-1.1451501426540713],[-1.0247384194860265,0.7609263203779665,0.14661158263610313,1.190037921006115,0.6511192608933067,-2.942556819347403,-0.6900431812408969,-1.7933196341256274,-1.4543481363322417,1.628001924796918,-1.1896190683832413,1.1149133886033367,0.48796290583192,0.6029399522582293,-2.20280282497813,0.22677510919891333,-0.6923408292779965,0.9418804094899971,0.11650655826595883,-2.272241723307641,0.6216070672192581,-0.332143650168358,-1.4768045213439251,-3.7754614579182184,1.0097344562096568,0.4493227260912913,0.4913104688504557,-3.172683090408818,-2.803974695774408,-0.7085474289341439,0.710478788058676,0.9695198538614164,-0.10561434176642222,0.7643322510741819,-2.0141642769325947,0.34216933327839305,0.008242795348769288,-0.8598680674878869,0.37670627020794795,-0.2137772639582724,1.9984342425699118,-0.3081664182317502,0.4451577034182409,-1.0036655840529598,0.8085347303772442,0.478613116959076,0.6467250594755016,-0.8946021445906235,-0.8183548846725606,-0.2549639328081245],[-0.0030142116023773166,0.9131239809979599,-0.19925879095171012,1.4945305376436204,-0.536176080997918,-1.2897703313809323,-2.241933048912746,-0.5496900725875185,-0.01786902163348134,1.7054629499067822,-1.3370623828000947,1.3970789500368535,-0.768736870441865,0.35796440520769685,-0.28016417454286857,-0.02550627114948389,0.8437437823882039,0.2247185973945172,1.2283576969445305,-2.6697655941837213,-0.6049606997201084,-1.0406778328571336,-1.1869622926601469,-2.7492945405625773,0.4642272041011179,-0.17459763153129923,0.2637579350474852,-1.8176498627233457,-3.1772856380185592,-0.7578262070591596,0.10177648325541419,0.620085499597451,-1.2223136561383952,-0.6449424277335064,-1.2914469587633792,0.3885508054578413,-0.10446980296612986,0.0014297616166258319,-0.8277522334473765,-0.2079914598835968,1.8147111438312478,-0.5779069357355829,1.2557705703775393,0.5753065640789391,0.31550337572027026,-0.3615792358091778,0.7568840030200735,-3.17708659962118,-1.1650020683356868,0.4865008512367203],[-1.0819662685713352,-0.8955706371948144,-0.9379326535626181,-0.01686739404353754,-0.3551070721504312,0.48252377054560575,-0.5703474508422735,-0.4527677027542658,0.573137183525779,1.0249821352702428,0.3567249414535265,0.3730974786276812,-0.15372481205304173,1.0820221245459387,-0.00234215954151479,-0.46300208736824433,0.8193389037322016,0.47459973445304804,0.35463414144344535,0.35359470676917326,-1.0888020418649555,-0.7564568731353143,0.40889200304443735,-0.558877929594824,0.3189632316212005,0.23075476135886244,-0.3477432374249031,-0.32693016432137506,-2.0376880306200955,-0.5707989814043383,0.9817991609112845,-0.6180728807294414,-0.30038788178693265,-0.7561830758128179,0.22252414447542068,-0.8843954862227238,-0.6112440167193304,-0.7898550156542107,0.5891324986329096,-0.20175155322646124,0.3947868195984833,0.9119740575390053,-0.08219383702151574,-1.0031616215373513,0.33763179007652727,-0.6911903779547633,-0.830687291043869,-2.0028602028005316,0.008766446076877375,-0.5746927467479465],[1.579624264801785,1.1575489310331146,1.1010388330165344,0.10340243661606517,0.47399782359091375,0.8014130709769216,0.6412316943437877,0.6260509699936766,0.3475695001855739,-0.08341681425122977,-0.3362328390744838,0.17386495609453342,0.5680276202849804,0.1927879115789385,-0.5780095125514154,-0.13818674978138465,-0.006769724992384093,1.702878891022213,1.1943955886021682,-0.1669641410752832,-0.4573842455880113,0.29500576686434843,0.2888919458082326,0.7850680008982931,2.3086973918497375,-0.9471947548998554,1.8378797401479603,0.9282574609620647,1.2545747788075943,0.3740381068279994,-0.09290424117442789,0.9559925276740506,0.11100989458059775,-0.7430295343738303,-0.03669846335789062,1.0009215253618016,-0.7728679881910624,0.3287385455836136,-1.7423371204401992,0.9259227403360525,-0.35617789427278707,-1.1747461417821847,-0.8003291690551698,0.04179930882848313,0.19586861810993347,-0.06262677457815272,-0.7300061995209641,-1.042130306055063,-1.0689905390747325,-0.16193191884063113],[1.4330845019100447,0.47969481846306156,0.048197202014328436,0.04212426506736887,-0.7158438977327845,0.296367501751446,-0.4512492498748767,-1.2407815900505759,0.24550833801491462,0.940245664503125,0.5360687557929689,-1.9485718684439315,0.43108921465888295,0.027039001049323406,-0.31482233146890615,-0.01561998877174512,0.33208322107846233,0.27903770132595124,0.7278711947296141,-2.0310016873753467,-0.4548170752298876,-0.8016203913490028,-0.7082560912237847,1.1024634861840923,1.4827827576161863,-1.202656589809501,1.8173042722371693,0.26603636514878276,0.40902503961843967,0.9584602638856802,-0.30024012485529145,-0.6235672479419317,-0.5026059889176538,1.4126551405510834,-1.3422731872469473,0.9844264236512146,-1.5164966274449772,0.17273182601419376,-2.8646514583172022,0.6596652657926516,-1.7573587094984133,-1.598983474753764,-0.9364857021176948,-1.7706719689888535,0.3716198636315071,0.4037328073809618,-2.383233564757372,-0.9247225570070879,-1.210076826250344,-1.3676392840284202],[2.401899683151513,0.9004891707811195,-0.2892924789657662,0.9715680935833941,0.16923206502961924,-0.17494837903838553,1.2620112906667644,-0.3332959485380587,1.9348509443635906,0.9440447732688456,1.021162029296379,-0.23632127004924916,-0.4337200050778745,0.5018434545856613,-0.6510918495992951,1.578751564225426,0.16646136355744587,1.987089389254479,0.6337292286637882,-2.2225332322199685,0.1959084690375181,-1.9479203596130528,-1.4995662301971484,0.4116700202662748,1.6589577414461298,-1.3709871829569014,0.7537743024863287,0.19257174579520606,1.474656902196199,0.994402772803987,0.5371212186996145,0.9818461928349711,0.7316619827764776,0.8067004514619156,0.4241159743173632,-0.2563586468226101,-0.1456854134099158,-0.43401608876784753,-2.16380974762149,1.3461436762061836,-2.360273634074706,-0.10309550925131561,-0.472148221216292,-0.6443184980168554,0.1482695687535449,1.022387618972649,-1.5441468580968771,-0.8951275306882894,-0.5944163499013346,0.026136696407830694],[0.5134208529460899,0.4980392710453928,-0.33608612729738735,0.3402591915010952,1.0576154223227343,-2.6669220192962015,0.5332465398814571,0.7822643443821974,2.7023042600010685,1.768233176363987,0.6332268429651026,0.9086971426440418,-0.49181795123601674,0.665748759828263,-1.1906462932818833,-3.7286201978954066,-0.40303809227109866,-0.39601226044563537,1.2495393707739155,-1.6791674645111156,-0.16357778702483222,-4.634753565567947,-0.3832735478878705,0.8834719079527532,0.8665744596704253,-1.672483795498879,-0.658487844854402,0.758668647849514,1.2280193259309755,-0.19229667616092674,1.731810055505395,1.7664595390001199,-1.0696433824464768,2.1709533942902053,-2.7883556144618478,-1.0024655844220267,0.6479918636298245,-2.8748368335956505,0.7198919959609357,1.1146587452525394,-4.121681216887001,1.4406954028226187,-1.1491839664359123,0.00812676907145155,-0.4171380199603289,-3.255151385767827,3.334242296705204,-0.24786180895819193,-2.257000773108751,2.5210692679580466],[0.17115347145039803,-0.13249634707694666,-0.38911353466276577,0.4085032306086559,0.9684552753442468,-1.3955900274810407,0.47604214997484606,0.3173585092560327,2.5407280407828203,1.7765481697376735,0.8429853699048377,0.964186746425941,0.1938894113095224,0.08806117475188058,0.11580848893158056,-2.4266103740422937,0.795707208963228,-0.41278975572856236,1.1775312851693795,-1.2127734125855483,-0.23172285710642318,-2.7475442745484657,0.20025212662869454,1.9801807495997572,-0.09980179000430345,-1.4968808886656286,-2.2079967319992484,-0.3495253998782165,1.4175771716132426,0.5930548677017062,1.593916731920411,0.48555708022092764,-1.7857304838363295,0.7547878430144448,-1.7758763021497932,-0.15612748386549838,0.3891776160756841,-2.4492504190754705,0.4181292235619629,0.5591601459170484,-3.1006019873946724,0.9413366150428986,-2.103150939097357,0.9178108259998704,-0.17346219191628065,-2.6428744465017604,1.7995003093357123,-0.03724238241540559,-2.728933955840004,1.5978821858499368],[-0.12380951959012454,1.0542674467631328,0.9111032530038122,-0.07666246719847306,-1.0150456835547352,-3.61275864356725,0.11012742148106404,-0.08011194899356731,-1.1647492316534536,-1.6766038136775894,0.629856461720003,-1.0359642906865845,1.2235917642792413,-1.34973631612732,1.34428432757825,2.644571132158993,-0.04665853480669294,0.2879242593363181,-2.928990674529987,-0.01414640976629465,0.9112075061204303,1.4315840293684343,-0.014198679853356449,-3.314721138435758,1.652757946954223,-0.3654425765180154,0.6373197554036821,0.8821288328927658,-2.725492576252714,1.000424030268642,-2.023024806868487,-1.163988888244179,2.2515938532738287,0.7599372466468368,2.15280596009341,0.30473840288982657,-0.01110077709313159,3.1221829720322503,-1.2476419874791398,-1.0222311631861665,1.953861529587504,1.5060033148990557,1.4200977481870416,1.2298421441130083,0.3830563717760434,0.11075527817149633,-3.943536146886735,-0.4644947634727476,1.0189784494608436,-1.829358812233945],[-0.5194567053948328,0.9818103441043617,0.19909463921646306,-0.10272867391606097,-1.6068451892986515,-1.8711736415882685,-0.19410234286640024,0.829073469531683,-1.0418219282616545,-1.937830154991781,0.32981795196771485,-1.050476458380814,0.27827957463012654,-0.7815162675212898,-0.0037756576089644192,3.3506309158303327,-0.045745776581824646,1.1544135812211003,-2.0088675779643737,0.26578368010807674,0.1629184774100813,3.438486996881805,-1.1180517894028945,-1.8067532245681919,0.2776550179085907,-0.15288386455899564,1.611468603506606,0.1049415139088388,-1.5376450992272144,-0.45944901006438255,0.5307152272197565,0.6301460524120444,2.3190491409994722,-0.13579188871530984,2.123524061192915,1.0467038991678141,1.7450340466904257,2.091289084719499,-0.16430139250354014,0.27010591583245713,1.3058178678258692,0.6405255453383812,1.4362981629009217,0.8486383404136917,0.15576252108262018,1.178746388137588,-1.0302749427048938,-0.5113038018710867,1.099857919952029,-1.1697708909685955],[0.4895140586071949,0.7543213626864557,0.29703419467526637,-0.5758250491758683,-0.7710627308111612,1.0549279686841968,0.15076016521216826,0.9668664209955133,0.1142194243090952,-0.0551157401332197,0.5781466014944507,0.15594248986362197,0.10337030760240251,0.43511156306722265,0.014989376947239504,-0.3694269975432311,-0.2164067845565698,0.7178426623642357,0.8998902195317443,0.6456912747791875,0.23095692009267502,-0.0010057297628231843,-1.2493625930880041,-0.8299506678729246,0.9988894881137437,1.5037428919847906,-0.4628774044705065,0.2230152211305886,-0.809365283714507,0.3820643354805677,-0.34101751408734104,0.2636860370065169,0.24934219848532194,-0.987825618575938,1.1300564218318931,-1.3679152526643066,0.21537212159332006,0.9813575890898981,-1.0386759203838922,-0.17078836693057942,0.6374565573186063,-0.2133773894838062,-0.26077650752667975,1.0492014012306023,0.30296570328012107,-0.5447972968264362,0.7624820106587112,0.355369241584444,0.6111632090970652,1.3346767577660779],[-0.27477848716903663,-0.8884438161930446,0.9648770983727983,-0.11218996735497527,-1.2666112626177943,0.07789319167701322,-1.9714957605637644,0.362393008136255,0.9132822541640245,0.5911108307056234,-0.47383205890535574,-0.7736042493327456,0.13788209111644623,-0.09747486513961699,-0.4416218951599973,-0.7378816217009927,-2.143850900595781,0.19756269481977826,0.613757126416693,0.07407576093518975,0.70371234884504,-0.3888245020569544,-2.3474155884724888,-1.2829933879895832,0.34198506523913746,0.8193699396967782,-1.493592721527013,0.4147428855842047,-0.9299360604082716,0.6745330614528506,0.6570906223352073,0.5841718865757379,-0.7528093432343816,0.1966768668056118,-0.20538494589961542,-1.2339095108542744,0.17609090792449864,0.00357729769298958,-1.3530719436473735,0.7152374350556934,-0.3233827496830131,0.28448723992664693,0.36121026895225855,0.20744536276515566,0.12827251642990006,-0.660696809755618,-0.9256942444302748,0.23611655348707283,0.7795256181315634,0.11150743226808948],[-0.5765281568645946,-0.18630766353603215,-0.5027605741890532,0.217410121928957,-1.5932903108209133,0.7383216080042919,-0.6215998088648159,-0.7587168472197172,0.9546697203054804,-0.08026162634635628,-1.2629046656706602,-0.8469207263426095,-0.6228254544703145,-1.1181044157509845,-0.09128688791749927,-0.21032787067109984,-2.88791254905846,-0.07232419235107036,-0.8514411365916431,-0.998383101312729,-0.5090731997690161,0.7743079255419536,-1.6609727034712587,-1.081659639136471,0.8002615301691346,0.23685165038549197,-1.950409224743435,0.04229099043624151,-0.2075874389640426,0.1405335191308241,0.3497374100216135,-1.0196101498809966,-0.9196866462166536,0.6512962912576866,-0.2529866216606013,-1.8212439601759756,-0.13231575584539548,0.344466904140714,-0.4164987219167214,0.6467386210516611,-0.2323553824736696,0.6749165836644831,-0.2638395915981201,0.9347197164651314,-0.7739798155166532,-0.5108898486596886,-1.3134865542178389,-0.425845205658436,0.3083159080997677,0.3345909315825915],[-0.7617355243027897,0.572705339839851,-0.2467303713203977,-0.17161943559005183,0.6862527170710626,-0.554806944559388,-0.816718277110605,0.6671211732771939,-0.46635452596524596,-0.6040255484291374,-1.1454137153131152,-0.6846296288640045,-0.3401787854726555,0.08257743636769604,-1.1579532411783295,0.5140953952618547,0.7237888914435997,0.20061532438404103,0.617439488947599,-0.2176239645314904,-1.3946050187414951,-0.4454693813936187,-0.933350172875892,0.5320555779307018,0.8898837563581602,0.7500239793750431,0.7558221623638269,-1.0335605734834183,-0.2458909721542841,-0.10278209744674228,-0.08030931514600088,0.562181666902109,1.034875916167657,0.8810556523317088,0.10891044574485328,-2.536994939915758,-1.3989902816298565,0.332789612675746,-0.8235894950446492,0.8400761380273178,0.35448668943027395,-0.4536493935239991,-1.0511175880646304,-0.13883104918312159,-3.3545328295931185,0.43547176812567856,-1.0842280435979654,-0.13441543922652066,-0.12967085480915333,-0.4047964003732796],[0.2734989531629755,1.3450823490220343,-0.461674212899152,0.2814219666351006,-0.517876185097644,0.8156336250761558,-3.6140361895180826,0.6652850430113062,-1.156030879346585,-0.08020309042792226,-0.36142686366847016,0.3782008006035613,-0.30254084482612287,0.5465891583799457,-2.449145745066106,1.1645902403446742,0.8182658459662069,-0.21064829674589214,-1.646883613455148,-0.1869456576388546,-2.060403724124197,-3.9755737468348085,-0.5401713739482592,-0.8797260469924162,0.8554411507134526,-0.24366206157924847,0.35139290621694375,-0.09385959900557979,-0.4473448237336894,0.5816879197742645,-2.692520516679174,0.571805688826906,0.5037442945071131,0.05497486448089125,0.9213242103810672,-0.86866236881209,0.12222845211694189,-0.693685043381559,0.6232920425270344,0.6369349747958444,1.0190213861776602,-0.41338676023826887,-0.6750692575161225,0.5492745562630874,-3.414978909741736,0.7044354391471822,0.2476182074106346,0.48507589374164745,-1.7998597890770949,-0.11751042475578084],[-0.9575504493590087,1.0138770449730439,-0.5319525057644175,-0.9147761029255046,0.9435414693378803,-0.3219715549082772,-1.5934287720991969,-0.23576904082546968,0.33916635903394804,0.6036763384115534,-0.13958513727085528,-0.5492222890485745,0.11151302795160604,0.6933468049305695,-0.9054470776973629,0.960955334740126,-0.0755989672956044,-0.07559196592798048,-0.5771833582500944,0.7530904694570385,0.47605897866262764,-2.2803481311040015,-0.06128513757142553,0.732870648069985,0.04291842215963079,0.25122073854549865,1.1987034966561125,-0.41039097176744144,0.7852097508031354,0.0892285746169719,-2.2055372133811546,-0.5707145098180298,0.09219447791555878,0.9052057435896567,-0.6311926043499859,-2.432590249066398,0.4693525262500956,0.7521379903024298,-0.28651138035182855,-1.2945974368179711,0.2479495970303681,-0.15763981049919104,-0.6131950148551522,-0.9731502650432702,-1.378711832187932,-0.3978049928426172,0.8596095654536346,0.5330376772309037,-1.9590355156670356,0.2422767946248493],[-0.9807037609332869,1.071894033205066,1.053017124409435,-0.7723301258559424,0.04423135308124853,-1.0361348773098453,0.7068873837058123,1.8392029130682481,0.43067905630630143,-2.04879216633817,-0.43567783281561323,0.7448303818002407,-0.25057563245743375,0.13422918706705117,0.4105930010099705,-0.44532375081131026,-0.13730903250297163,-1.5940586403806816,0.08967652151521967,-1.7725980928733593,0.09202960102007282,2.2648770213214426,0.2788055360434778,-0.20236040952529225,-1.5967740649648985,0.5320498288413493,-0.03956709730095729,-2.2439199199650455,-0.4253348712262487,0.6785287026658282,-0.32792064285944833,0.185201177155607,1.0813069465757283,0.3626104233660788,-1.1861944695151159,0.9692986483903607,0.7522692205737485,0.6445736665665316,0.13263796983821172,0.9389643448749097,-2.134904514661088,0.7955381471686164,-1.227364521046579,0.027803564316543117,0.76981572952748,-0.04596327721903502,0.20580382985576423,0.6212183511320278,-1.826283095456251,0.2972108206927543],[0.023481882830117384,1.3832432846691523,-0.45197855717206015,0.7914902081626748,-0.6103322737920789,0.7356587209098752,-0.2824547873865821,0.9653157573765547,-0.5048196916468252,0.35646284157925395,0.6442437480840574,-3.369610872190401,1.2734169116360068,0.025278414020461708,0.7216101997861206,0.43167865870060035,-2.2936300966037555,0.7128328030406,2.4085754767256025,-2.005441661393596,-0.6305755917509377,-1.044696796273892,1.3863925635885603,0.4009060981991016,0.8033283883318507,-0.12219597936434064,-1.2094867723802876,0.510416668628029,0.029444148497513898,0.20948013815987784,0.4014931513787455,0.6298306829266147,2.943622768995564,0.9025016711008133,-0.4715529676072657,0.493397569947487,1.6913426031024736,-3.758533221402216,1.402994408009383,1.0305954364638812,-0.8665880837826376,0.40136445785733926,1.1934618339842313,2.327020160812687,-0.9800066480953272,1.0030019564064936,0.19624730306506802,-0.44558295611342086,1.6340193120661837,-2.6985219274758845],[-1.6346951693819747,-0.32487037107794164,-0.6502703067886471,-0.631469516296302,-1.5346154141229449,-0.7474675459343414,1.868744022988172,0.2465368711717413,0.7977590893861985,-0.7779772684401398,-1.5458861259950762,-0.9281795548237177,-0.6526311075475876,1.2848992290911214,0.6357197102057366,0.47575979242238187,-0.1974590440451069,0.47976631496990035,-0.03160357448731374,1.0638813394320754,0.6567713736220818,-0.9670829893495313,0.16543400574656114,0.11611493796346345,0.541955710902041,0.5374089687319037,-0.1118537544389449,-1.8576127502382918,0.37595223660890764,0.3258827875966112,0.9666092585135266,0.33996674797677806,-1.3942798671673913,-0.7025334430764277,0.5294271717996274,0.41146957012225605,0.9203906659745551,0.7581060538698867,0.7037756002225917,0.19140936358921948,0.5437797503974956,1.598164349530319,-0.01821297584825215,-1.4249023790610205,-0.3413299122461714,0.5959043931765141,1.2499115790208957,-0.719385071042033,0.8689984698465336,0.2994335018016989],[-1.5759901553739262,-0.14912733651501736,-1.3996736405849077,-1.1374281654598628,-1.7633944501564434,0.7654479238265479,-0.16805971703189299,0.3089375220567834,-0.3710734809870048,-1.4822315299390392,-1.4330321633385024,-0.15224566072234352,-0.6725943184957619,-0.8650446289035838,-0.040220915251759325,0.8150041827898362,-0.7689075399290652,0.18369824447975114,-0.7841602016627355,0.5750968645810185,0.11672393445337496,-0.7564399704580747,0.6468764646045071,-0.16360531879995815,-0.20757861018697749,-0.4242537249336349,0.879743629757684,-0.9425804687175584,-0.0013469612322192593,-0.034384323196431255,0.47929889733572695,0.9877048496488724,-1.1780939722060255,0.5418637897619504,0.5873285307410072,0.9369051149507149,-0.37659367666633986,0.47884100291255627,0.9308577415644769,-1.0602613042123423,0.0675056205224902,-0.03791877308702382,0.9799282527987189,0.4832623516736977,-0.08434001041325793,-0.17945496872558522,-0.13839564454758774,-1.5533443670450826,0.5223858878064324,-0.2984445686864052],[-1.2314163784500032,0.208543009922467,-1.064566385946083,-0.1537679757918765,-0.9859007138620763,0.9489049168555296,0.808975475120822,0.6923635017642141,0.10034099741521836,-0.44416233823456724,-0.4077629091658442,0.2220675071143353,0.8361436275060087,-0.6318177375086529,-0.4508520033276397,0.5271435374673931,-0.09385070227280408,0.33730512504089294,0.10586522384301232,0.06474474849084774,0.12837585881495717,-1.0164355142906965,-0.09911607444172951,0.2929380808783316,-0.09215465208596824,-0.12023502140750403,0.21077529079580146,0.731058428603228,0.07493727886846152,0.4805952729612218,0.9445041619495556,0.1079584838282236,-1.228357848815811,0.5259916590238496,-0.42217390042250885,0.12662335842641637,0.376995749790198,0.279284906180126,-1.110188670186867,0.3254032858610672,-0.9066797568853902,-0.4000040200541273,-0.32304393431947426,0.5860105524927329,-0.9621898155494989,-0.3758846204705083,-0.7246812089342266,0.7061343912039812,-0.37765668195397056,0.951840830037777],[0.37461778005637847,-0.8817610386378555,-1.006861777949136,-0.6844409780482847,-0.3094550354571177,-1.219378507815365,-1.4120584385074364,0.07177444165696949,1.9077641164622805,-0.953458931630328,0.32070727200160626,0.09143994854220788,0.48838562831510157,-0.5489695305675772,-0.12420657920340186,0.412162238307345,-0.20936755830191184,0.08230438880469695,-0.6639368484849156,-1.352550353764755,-0.6121431567550234,-1.2683857654170965,-0.3267250661437262,0.7521497988461369,-0.052611531661866155,-1.1179766421756863,-0.5322170590249425,-0.7262805382011526,-0.889484837112927,1.0728167544425675,-0.2187527315642423,-0.634330674540318,-0.4713535438544438,-0.934006984645264,1.0871146088663288,0.8043139482874654,1.182211536778603,-0.9684375227842184,-0.7418942194134236,0.8780995572147442,-0.38876869428917543,1.2952725855111678,-0.747404186861217,-0.12588562521456922,1.0538230368129418,-1.2171377350141037,2.267759301589742,0.6119287486470392,-0.8269969103739149,-2.1101114971147474],[1.7363389681605281,-1.5612067616545426,0.18821745583673666,0.17942025178526907,0.2798695005665134,-1.2201401488494337,-4.166557918258748,-1.1545911684737065,2.1379507336189087,-2.290182958083644,1.1286772603433528,-0.4488842606893003,0.9815908163560884,-2.785766870936021,1.3968270134872645,1.1950937538193684,0.4051487592733831,0.44058398402856247,-2.424838833254316,-3.2266775616836094,-0.38593814654784203,-2.213300384656059,-0.1659756901307965,0.4547079383179149,-0.7753064568376477,-1.3252071547879885,0.35722256844611894,1.1688299000570344,1.0767640022897798,0.2717670298813759,1.4987431009870122,-2.717633117656897,-1.1288462122259857,-0.26670811819934565,0.7626414161895853,-0.8693175168287812,1.5145679274902006,0.10561074920979384,-1.4414873321361565,0.3260652159034976,-1.1415415154997548,1.8742246342589202,-1.99982920799859,-0.9353567811451,1.0012313989065036,-2.0750427627539727,4.650483751107776,0.6749346564745786,-1.3160404455743673,-2.1562800319536075],[0.6076965774585709,0.9357248453646009,0.18539805529265466,-0.5581791113485086,0.38680941185509776,0.4392971923425575,-0.8869548231667224,-1.6607310078958588,-0.007800383084892266,0.6608188370352804,1.2780065192718912,-0.557811631131037,-1.6464331526331526,-1.2178276765397513,0.12726876753754432,-0.8249885431697627,0.594312855032679,1.3299166901874644,0.395843268210528,-0.65172805929336,0.3528455357437288,0.1354909419590281,0.09153151790053445,0.8016687465899895,-1.1475320918816447,1.5621319855488451,0.49440209445122374,-0.4173463607410554,-1.9895504734483338,1.0594056401719156,-0.1219184595922287,-1.0092454004490097,-0.3204696297357491,0.02412465145753748,-0.0660074103843036,-0.5631886227451374,0.5109269140343916,-1.359109331440127,0.8162980661536988,-1.0409926144690769,-1.7076579756903107,0.1376355316527162,-2.2566511025400966,1.8087934652227264,0.997043224466184,0.5566342138721543,0.23253544169504764,0.5595686117674903,-1.432975877236998,1.1695665157161905],[3.4681021355612014,0.6872711665892989,0.6583502730489322,-1.9199486858932988,0.46835975182824463,0.6741867127750664,-2.125927862610817,-5.016951577452415,-1.030221226923296,1.7470962782119308,1.130627831991121,-1.3647837973883232,-2.4019394981709112,-4.5581819211309185,-0.7315264794258979,-0.9028481796077925,0.07790716165102332,1.943227308908321,0.5529764218679832,-0.4892900563997048,-0.36364720931839845,-0.10770072312181503,0.3617360551447975,0.07574470228680545,-2.2410682092153507,-0.4321038659250173,-0.15718521463272697,0.3272339607353294,-2.7171877123660053,2.582153296968506,0.5851943430589036,-3.0861031321411954,0.6969971294707282,1.6010913459844116,-3.4477888368805516,0.7331389206381244,0.2348348862919927,-3.8458626923407975,2.5135750212244385,-3.7456762823094336,-3.469030804557381,0.6371763523694529,-5.827976470411849,1.7994537434932678,1.1567111012661098,1.1366797910610786,-1.2921680868907253,0.7479846763851586,-4.322053504135395,-0.12507182552744547],[-0.5056450574647149,0.36120266858511607,0.9098106634795546,-2.0584638956762857,-0.5905023607809462,-0.5478486510720914,-1.2103228478521235,0.6819846435879746,-0.7731234698334246,0.8285190535647452,-0.6647449351973951,1.3412783070825371,-2.489051322227147,1.1283648517262763,-1.4611124084384954,-0.5497387568523997,1.0582240511295864,-0.5182003518483063,0.1287850483752254,0.34037160856601667,0.24320322980017267,0.7843124643491107,-1.7788288213853083,-0.2001409757109404,0.7881523019558503,1.3530583563327319,0.5527319639372672,0.2156823054262825,3.1626056411707495,-0.8577848023116902,0.26631216390186924,0.389101143113598,-0.1637264579297477,-0.8217529933729818,0.5896569070548292,-0.4554528158189069,0.5986678505927919,-0.46086891988852924,-0.10069567267391567,-1.6050532101066706,-0.019748529285052448,-0.6551166332101835,0.6081996414102837,1.507712773250709,0.286983943476166,-0.7731671368341764,-0.9539668022184256,-1.218704514030402,0.581510943263459,0.999808637900992],[-0.7244737241030048,0.41477877332816315,-0.10459791705223859,0.2918762047125243,0.7693452295540153,-0.8131338328092961,-0.06432880201133483,1.1811789711003862,-0.9736225654040348,0.8118078517912615,-1.26437928870125,-0.45784000491822463,-1.0795163338279974,-0.9158398428080129,-1.5068045550471383,0.09750223295055567,-0.6955317163218165,-0.5941943474424515,0.8864549531873298,-0.5872509866953454,0.4402454451814351,-0.404092412698053,0.4894147844191079,-1.769071510743186,0.5366030147223296,-0.5592550907399165,0.3895513661555676,0.09950682406154769,-0.21011742698378055,-1.4017397939130165,0.428045845547919,0.7429062947419376,0.12447524341125984,0.16036673163060045,0.8253053353043164,0.21264863083043148,-0.08602522702306965,-1.7771553705573657,-0.24579935161982575,-0.3839385560618549,0.49566445742251236,0.29868428542642644,-0.20043831186866082,0.7219594698572112,-0.3589379787578604,-0.7624444879276137,-1.8122713037980582,0.06896690898239041,-0.39884849828219937,-0.133073519213132],[-0.9265908643877494,0.8105680048230998,0.376434455715664,0.6296969467269203,0.15395707778244636,0.4733641370997832,-1.5919895807107014,3.8993381788130015,0.35534036996010043,0.07659592017976319,-0.675155963311434,-0.14312945762507007,-0.3862544050379475,1.087730294868266,0.06616591016990758,-0.2154689211719506,-0.5669029325921855,-1.8855824656850786,0.14543162637908288,0.23298577735799192,0.26872672371624634,0.2203479813057713,-1.5161722127220862,-3.3468318390619793,1.9565077655068521,-0.656350194844137,0.03277791532613914,0.09551327971296286,3.4144155536743335,1.4490397077458543,0.8077938093340049,1.6915809807415723,-0.1645540123167319,-0.05325539515044337,1.4322530184766615,0.6392449857998139,1.077936503947449,0.3358363881200433,0.7343202119233213,-0.7750524786499722,2.1200303945931633,0.9276348812016705,1.4085913596749697,1.6285741759116952,0.18718150992670612,-0.40375028528427664,-1.070632078325178,-1.327546888533426,2.903742119323744,0.614952872243766],[0.6067169601584078,-0.9878204068577763,0.8468371421776241,0.632720948133077,-1.1751774368353858,-0.38497386306236125,-0.9676132449255995,-0.3605453643339132,-0.8905338383178082,-0.031717639437445426,-0.5166045792640617,0.10497295633682718,0.3621295441381966,-0.43504287763667465,0.0899645317485808,-0.129576113952765,0.18341662445191337,-0.9873604449039909,0.1840040278398438,-0.7381936773187745,-0.396691132405154,-1.1507109389791579,-0.33717905492178435,0.8079869510455693,-1.207927811206727,0.3597762072569963,-0.5895112095896706,0.17830249071794496,-0.4656973733091145,-0.6541812509799402,-0.4156381322447441,-1.7817898561921066,0.1454257078416318,-0.22270496829659195,0.59900128376186,0.09679858163828889,-0.3115230703966992,-0.020002437775449442,0.37099203077001325,0.7754708023991301,-0.36973758625960473,-0.3706801180652531,0.8890045981422872,-0.5016699693287261,-0.14423330588173575,-0.9294337149601053,0.7022175576242143,0.6930216390440186,0.7758833991880488,0.9006795911206708],[0.12383647299843736,-1.641053389064428,0.9666285716855657,0.030288042475229333,-2.9817833385789627,-0.7729035419929027,-0.24691208230800193,-2.061604196256531,-0.5975352157170152,0.4035509683263152,-1.7758480448733749,0.5927211489107689,-0.04688051304019946,1.0818677856398773,-0.4435798759767879,0.6226602989854565,-0.2971397676159329,-2.718618228324121,0.6072905145731399,-1.8651341724745285,-0.17536183719908052,0.8283325438108889,0.30100854659367293,1.5077626624907283,-4.063182574937499,0.5351023753070339,0.929232447008449,-0.5699649156395945,-2.315660180803939,-1.7288565333991945,1.0887660764721496,-1.675920927114879,0.9397937179607876,1.7797035023829741,1.5627646768216896,0.9741091507740964,1.3598760103947058,-0.03290008926154591,-0.5963808552077815,-0.07313300757509388,-0.888683515513576,-1.0864416176651273,-1.043232251182053,-1.958955335637248,0.09069978665490486,-0.5668727467669241,-0.05133737112179527,-0.21914219927169926,0.13900671700490444,0.11885321157204942],[-0.2436935893824298,-2.0473652134778124,-0.1746105889221184,0.6992418722351076,-2.311590406143422,-1.222067020795282,0.17564709125721015,-1.3428302135830052,-0.9503652560344676,1.7942749759665135,-1.7750323830855748,-0.368922401823967,0.3571693956007044,0.481668393107003,0.6924845867813358,1.3747869314862629,0.2688318385227944,-2.5201619719438764,0.3995024919354741,-2.1923345331800865,-0.06703221793339643,0.6139544883316016,1.124800555156907,1.4406239702382886,-3.3811995549718965,-0.2684435286432964,-0.7031473815057191,-0.7918592430132699,-0.6357504822207072,-1.1545608618766245,1.6496280615147454,-1.8724249443497565,0.8985376105055671,1.6047868776951546,1.3928462387105214,-0.1919771443776613,1.1421904225036257,-0.6489823901931407,-0.6711803150857678,1.1024722775866282,0.664762627922323,-0.6390355319873845,-0.07186932627472901,-3.9095016578904764,0.36889092450381095,-0.2129741289066103,0.7865126450987765,0.3636901385883239,1.7980682426086834,-0.46839671683369916],[-0.324188692999335,-0.1455669265829135,0.6790330955242856,0.5060428385001732,0.5995175833436822,0.6177581103652091,1.374366268844122,-0.6786212754041024,0.7538827305339758,0.5882643954544345,-1.1610469740459202,1.581504076715851,1.4165376488137487,1.8292302822160047,0.8989179518700765,0.04091895568091229,0.8146719740372812,0.20271276156173554,-0.09948794196116949,0.7593243816116513,-0.6481408340983231,-0.23362232354821807,1.5448484452659277,0.2518424982316421,-1.0168984495095381,-0.19484448877798097,0.524435975893378,-0.11939057844042758,0.5664854718221952,0.21241186657592487,0.1568597879318807,1.2722196476164154,-0.24788958814541998,0.9948557747437304,1.8347102874620742,-0.5629301203208814,0.7715468597517691,2.1813032567297976,-0.6265289022602653,1.6456617811865715,0.35515052091957056,0.341695366586309,0.5457128400637553,-1.9380709226706532,-0.6671088896943813,0.48866224891476645,0.2414338573958882,-0.24467747866415004,0.916624313739716,0.015705142704765963],[-2.468991821073972,0.9246695891616257,-0.2861010209522224,-1.5384962936759925,3.599216577120243,-2.0331178723832655,2.3571579185110485,-0.10255384238215898,0.5533432109643304,-2.276200688783442,0.745629047202299,1.2532290452222903,1.4050093042097362,1.937028366706433,0.8391405945903995,0.36264471073142585,-0.5782024065912806,3.239020532115881,0.8679615555209738,1.1887663472055663,0.6030545893767499,-0.3520073760707032,-0.6031828564972129,-2.0316217703718706,4.927320667943136,-0.9866509025925004,0.09992449127975477,0.7020952027270723,3.621625481065627,1.5424325482904302,-2.7708658331940397,1.0632638139145194,0.4369605360336941,-2.138017604616414,-4.994513185388287,0.45527131021525524,-3.16847260680067,3.476611693618035,1.2349682833134443,2.7165760955513463,0.7025139897562696,1.2927634251106823,0.34864429478241626,1.5692668541379295,-4.266306281442026,-2.0073224140339065,1.2504990274466623,0.13468445514412972,-2.157498875889906,-0.47501371429952266],[-1.8661126661718768,0.46570484857026995,-1.4865406641001857,-1.0879268879241295,0.8950963891298651,-1.7581318441175033,0.4802480126159824,-2.0299600135535245,-0.7608390260739284,-0.3064309710918357,-2.4265377101882626,0.24523072184642233,-1.0386170402685282,0.09230999084919993,-0.2330955563708829,-1.0705935712964596,-0.6506927775549408,0.37813262530827874,-0.5409884016217518,0.5782334453515153,0.6793025261935355,0.6650506100911708,-0.16767989941146122,-1.5402675669204597,0.29456582586071584,-0.48107218701579785,-0.1807566014256101,0.021701578615731878,0.05215652782349696,-0.7370409681344826,-2.0767699146693213,0.3622767633342006,0.25602533559562535,0.006280953734813897,-0.916357232070636,0.5064595804635955,-1.6028351850281606,0.2637421238066474,-1.754640663920669,-0.658860963928316,-1.1288837213030394,-0.20885769209986244,-0.11504335981021704,-0.32253472349459933,-1.1299628171764668,-1.1041309840992044,0.7639648733526597,0.3892240153944526,-0.5177172366032134,0.0028591127635439998],[1.0316673451101548,-0.014210738191145227,0.36944723224916876,-0.8945092506656416,0.8746221862592191,-2.596185174697077,1.3815592309792113,-1.2014179489781152,1.52524791167383,-0.6861696900669214,-1.237180760723544,-3.00375579229733,0.283080339427979,-1.3089046850925699,0.8496940195250655,1.1918378352843504,-0.8601660941966824,-0.2876403950536688,0.6431069152953124,0.950406286681459,0.7256241872898446,0.22176337242662045,-0.21540438331206463,-0.2108505233869186,-2.151531130742939,-0.05191751342162401,-1.2475709524892653,0.01704938569256681,-0.8448290830560271,-2.0592260645064533,0.7349386688975155,1.7206361718794863,-1.49719874031761,-0.264189511680962,1.4716476133561058,-0.8598988800458774,-0.11893199892208577,-0.8217888640593276,-0.863318146887143,1.804650886219066,-1.9028316763222584,0.8378182546660594,0.8542910138216384,-1.1930680643081146,0.6863684195893953,0.34867166974117353,-0.5585633844225552,-1.0264462714591696,0.00006737733877109306,0.25157973654061666],[0.348234198331768,-0.4696423760943091,0.0750377954797115,-0.20916913423223638,0.17229340109822094,-2.4782065137485163,2.4914507393891596,0.2290138063656384,2.3960827280044343,-1.3983857826523778,-0.9131893545099761,-3.828890175113258,0.6226272985210006,-0.8541552607970103,1.7407172854974224,1.50157602391973,0.4998052668822884,0.9942499221054937,0.5530714143126495,0.3770464569119423,0.41752528355163443,0.18125393096364759,0.450299052566542,0.7037339367671162,-2.43975087574864,-0.07569723432491346,0.022015080286770735,-0.5785625922351881,0.04359054801132334,-1.682109668204386,0.5355272074618165,2.1042360534227176,-1.4472592169109488,-2.0065284666707615,1.747630598522524,0.29670387496491657,0.0883508541995992,-0.21560121204505406,-0.3695181371557012,2.128748130239092,-2.694402701547157,0.5450305448806159,0.6385290394244048,-0.5677862427267939,-0.277002137184703,0.02120658280056281,-2.06286564136556,-0.5964154885021492,0.9233043187703971,-0.23075067173401492],[-2.5300035080530803,0.856901514002279,0.005279714018210647,0.1385781842706909,-0.12158937012323373,-0.18939340259775306,-1.2678726417134873,0.18483874504826253,-2.967908649776725,-3.385369706224018,1.5632462914466092,2.506993035307243,0.2065425716115558,2.075409685201554,-0.04064715135970492,-2.4340883350897253,-0.46896413284609784,1.2199874331253384,-0.6263934016628459,0.21714691021433002,0.7941391033941542,2.2988197020631467,0.5131395211583019,-0.24668715019378318,1.3113860357557299,0.06729415411800842,-2.4813550086555476,0.4190108396481964,-2.67798221129118,-4.853920378513277,-2.15573814719708,-2.731204838253042,0.20365666783639463,-3.5968512999114695,-0.5509533493597809,0.8236253479070773,-0.584674250221611,-1.5341922526036118,-1.575148623588409,-2.3807026174345856,0.8116950363675569,-2.6489421379389655,0.7685570069713753,1.1948504674661793,-0.5698250285907295,1.987204312027676,2.1281957064663044,1.6599589576982665,0.4650823423595617,1.1423728929913421],[-0.6860766749666756,-0.02294415471298549,-0.5764449308026796,1.3403497610465656,0.14032966949956113,1.3721098704588774,-1.2497934663775407,0.34205307003450514,-0.9408331010570348,-2.1407959106920327,1.0440668409263976,1.6303635081216399,0.18427386341352522,0.8034934136964828,0.6618043245171643,-2.238003264736272,-0.8973140710473791,0.005353776022088578,0.26367298757748237,-0.6897600590717855,-0.6170743645595687,-0.5430790934281098,0.9180824956912825,0.11698916586328927,0.6816225031626585,0.9761862040386815,-0.6115524420726001,-0.41189638481753854,-2.1866967782190003,-1.7795042274013229,-1.613610171631834,-1.1707391502768936,-0.6846570392868068,-1.4819703641050892,-1.082093850557767,0.35339234300336897,0.3641763652513047,-1.717609666203095,-1.0679443299866493,-1.6566641986603423,1.8112701092707137,-0.5698706026553171,0.2582714907988968,0.2765052982995933,0.007651158147870932,1.2584381732893315,0.10161844196558194,0.028837622433076613,-0.5312943270632483,0.9478883584942279],[0.4707580627453722,-0.2617943032991519,-0.5316826500440777,0.6653362991989621,0.8847694840670145,-0.3146516330940951,0.4725765778509391,0.31286963284592595,-0.18578080322739096,0.40255103969197975,0.9909095797859693,0.5750977269936484,0.7466679077465928,-0.3834010394173036,1.1937964254276785,0.8108187873064039,-0.5724570560378217,-0.6325293790420334,-0.38947273493907436,-0.681956355863377,-0.04100512798003592,0.3339536982650985,-0.3269270360192747,-0.1995788194224728,-0.5106147028316742,1.051997118789279,0.36313224099178815,0.21208992116563452,0.08890748780387439,0.5850397921854569,-0.38254433073024674,-0.8516563473508423,0.8285429348838992,0.26530979720787606,0.770289557385778,0.2005994938419826,0.43421140759191756,0.8119246534657948,1.1897781305609412,0.9473322450732612,-0.48041138242527626,-0.23664924238308593,0.3601694152688448,-0.447632587552627,-0.4306687612062251,0.7331396593212436,0.7636213621660268,0.21802851832763728,-0.8062393302226799,-0.06483229721507423],[0.5923970725994165,0.2547628364826318,0.7137530021198709,0.4822181865824161,-0.28815957292977146,2.9531130031035175,-2.2217165627428295,-0.4008825108061107,-0.45236991400183585,0.5766617733900102,-0.1253507437843038,1.760914550526145,0.429219851357944,0.09824862241017987,0.050159687427330506,-1.4956823471395144,-0.8010469264625386,-0.31957016714777464,0.16025563033945034,0.9743541227134983,-0.3921824952963833,-0.2359220326295535,1.537172323160619,-0.5604088657799569,-0.01324017898996147,-0.6037818267753813,-0.7918211927437969,-0.4404655183350886,0.28706262560260726,-0.4120288203083092,-0.27766394770553515,-1.3908755936316346,-0.4847094417767794,0.4058942804052618,-2.0770112092429565,-0.24340405729294834,-0.8302041535836008,-0.6141635541066153,-0.45190118119649797,-1.7516656723944408,2.502220577785958,-0.16445993106214704,0.03545654938957668,0.07267584431303432,0.062118480975000764,0.393705467106565,-0.01951879711120211,0.6772025638017787,-0.7482144577805052,-0.05786704697297092],[-0.3723794844767261,0.324634041122861,0.7259030646096951,-0.7179026100102496,0.7721272183782555,0.43304917633498846,-0.8651575010463293,0.6444329556951425,-1.110978455141706,-0.6000699153574113,-0.8109162116146147,-0.3923624456931737,0.9958708326900954,0.45795273527103847,-0.8996445053304608,-0.5738395901856155,0.007984520296591396,-0.11400613626499183,-0.47528896856724434,-0.6772450677485438,0.267668811192514,-1.1461900309421789,1.000144354820907,-1.4827070012787065,0.34915697733490497,0.5332140615718076,-0.8289642193285316,-0.22299961844958774,0.09712595803121701,1.3288921087605918,0.6809330252386245,-0.5537242121596808,0.32645150738596157,0.025898279397218116,-0.9438448948714148,-0.28917539075159293,-1.2962644078741643,-1.2849882970144504,0.5419611835385091,-0.34303145116490946,-0.4134578135869722,-0.1537780106811257,0.5864596165699842,-0.5539335333813946,-0.2870722636617307,-0.5586926110319893,-0.26479420225639994,0.09348633012797454,-0.07581349928175637,0.4959017595618528],[0.1827825841390691,-0.19534503536023243,-0.6871465870648401,-0.56937893880118,0.1834960467764905,0.5260725101349756,-2.0205273342743286,-0.3548180768789834,-0.14572488349322482,-0.6770025693148151,-0.11632805146688051,0.5041712367331189,-0.4611658636629949,-1.466610074470916,0.10239737596570264,0.8097156358847234,0.006717589029522175,0.4294744499827184,-0.38408367493613066,-0.28122173454933735,-0.4019101357602624,-1.3502808138078866,-1.1582401412018604,-1.0833544332912888,-0.5263656739560093,-0.6716031839496874,-1.349508105921353,-0.1770058588725393,-0.44005542902708283,-0.7452920285755757,0.5407641003592738,-0.7528658592083539,-0.024589855251067393,0.07444328932493877,0.9255751320026614,-0.3330968514079942,-0.6018809690056599,-0.623807558481737,0.8419514741974022,-0.6670013371001445,0.8374392861221228,0.176344710448847,-0.675532384053406,0.6906481147112484,0.5481111366443555,-0.7779177611758178,-0.36328190473273325,-0.7909225831160569,0.5900444861582039,0.12360747304258042],[0.42198184478149087,-0.6398114906388744,0.033158177423288096,-0.3197685284211432,0.33689087918398986,1.0840466367117179,-0.3682652069024489,-0.12535221574192237,0.6344947290501358,-0.7249042472126398,-0.36543335055591125,0.5400440048023665,0.9753259126633408,0.4537110909013322,-1.0710140414087237,0.7434509673761528,0.6444195544116899,0.28817710605713476,-0.5618609833068423,-0.46583687174178806,-0.844269186030694,-0.07872765830846618,0.36043426943164036,0.4246870911706658,0.3553310475407616,0.17493908090107613,-0.6634576163553354,-0.5615079480373438,0.8039859896975518,0.09729115994959545,-0.5303078144907721,0.34956909483727105,1.2523836312194785,-0.7178830096528529,-0.900611695331306,0.2532931812803087,-0.5489708149377677,-0.0823755819070156,-0.03684523024924363,0.6962358449317781,0.6612280867750158,0.5345047635253787,-0.1324529286536142,0.882430492352324,-0.3851673784804697,0.018196034384501503,0.7773362172279118,-0.15594440332867823,0.49893811651467246,-0.6913378390631776],[0.283467197367993,-0.04654352103483361,-1.1761962957738232,0.5137402332343929,-2.8498803449664285,-1.1246608143476007,0.5461592979661299,0.47329723809841984,0.19144013418689687,0.31611286663490784,-0.9129576950774918,0.5343138326885629,0.16795050798197694,0.04853810529227573,0.3331758325956993,0.448618623584872,1.0296948518034512,-1.2103210462927843,-1.5484462872953428,0.6069961773384157,-0.33124498170725836,-2.0912752313046243,-3.230449424912746,-0.9432963939411437,-1.1265267575468227,0.22619838101244563,0.002962694237789957,0.38502820273549726,-2.7227597722342365,0.043461746907980214,0.7747322819856775,-0.27460793738476824,-0.8372080384344637,-0.1795951473856786,-2.5151946889812162,-0.7141516672811227,0.8382365266093192,-0.37798192602520464,-1.5642574918679384,0.11860632720636309,-2.6911497517157157,-1.2064984549708209,-1.6184782901853667,-0.9319293859209347,0.07164246957698021,0.7809361302101299,1.03756607592953,-0.2966842121484375,0.3706000243543921,0.6113395945254658],[0.6476884137559523,-0.4977332056726114,-2.7099753077604145,0.05166813866345992,-2.9808730168778,-0.3580084211511571,0.2661789736353165,-1.5282379836873776,-0.9872434801108251,1.2977797118900185,-0.6674035093893383,1.7964481992380248,-0.32276113204151136,0.3253470560437371,-0.04440567717616928,0.4539424957706119,0.41059325315991796,-0.18936615478755534,-2.5717584404685363,1.968448240192913,0.25367499606470606,-0.8406933734955557,-3.166399478684809,-1.0551420759609407,-1.8390276094472833,1.2098545759114765,0.22397688998008924,-0.3164350870468761,-3.296215732425565,-0.3788680635386959,0.14410037656869804,0.8175640390160819,1.0559939394894122,-1.1233023059533642,-2.3695135411568105,-0.12184547181465613,1.5072544325335195,1.0639489116440022,-0.9054812770740073,0.31470053939737963,-2.853295618117387,0.025025542980370716,0.23457082587576553,-0.024148210611650633,-0.3533041216613592,0.3337866247152507,0.5506293044655178,0.3266863060050627,-0.5712919958533222,0.24125071512301485],[0.481610778064566,-0.3764738199680671,-0.8884821836128391,-0.9396461059688831,-1.2269070384129264,0.7784846085194851,-1.4587112858397229,-3.5549804221125667,-0.6015422412316028,-0.8886544132995221,-0.8457544329956642,-2.936454976837675,-0.1955934415918031,-1.185756940951527,-2.3990054387667663,1.385878641990395,-1.1045084597286712,-3.03841152282978,1.0390852603765086,-2.695082159622524,-0.3981599262357373,-1.7963993793230395,0.8759291026898137,-2.198496987725572,-2.2285688314392997,-0.12689780834737646,-1.8236142944949862,0.6164201080292364,0.6770654584252841,0.9220599144982609,-0.019557073480643814,0.03237978749077282,-1.8898582445662313,-0.38383147696300346,1.6639332834581473,-0.09450376836416649,-1.7082243861211766,-0.135428044334827,1.6707382182960269,-0.9500480327637779,-0.9573544137693015,1.2870193695359757,1.3400972801395414,1.394084451505722,0.8097967544843776,-2.321305781464431,-0.06980170137050216,1.0366075274838822,0.6944078005365436,-1.3621565105390399],[-0.09917710564465923,-1.6360316390381437,-0.6378069390892412,0.5591822746328066,1.2261537028236789,0.4120814245345557,-2.7610878957255487,1.3377524214198158,0.7465732619398678,0.4817690377917515,-0.9770679835124011,0.18796457890328652,1.2057867382276874,-1.7848221609995705,1.5897165205635226,-2.2823313501801703,1.4409497529424435,-0.5170502231716522,-0.6517434171029648,0.8078161232224279,-0.909804273446556,1.6418568776518478,-0.3545030120181996,1.438440055552632,-1.611472426140843,0.8965865062197138,-1.763298273340687,0.10892880986609291,-3.300415285565859,0.18990308907911488,0.22343243774795343,1.1681055374965645,-1.336164259769878,0.5710576215555748,-2.0555395551110047,0.3223133418943853,-1.8456424896742096,0.6559734282346477,-0.03948598794321429,-0.9763811330335258,0.4301077067097518,-0.949108621151989,-0.6906078362613848,-0.48383438501692333,-0.38763572255190926,-2.0885564996007604,-0.7606481910622458,-0.2712657481456201,0.22142547419674422,-0.26197614823035476],[-1.530225658977967,-1.8966697563056014,0.403265733167328,-0.40337346535402124,2.012923505992576,0.7186483236283143,-3.721756128244093,0.6290193244271955,0.17469650700327422,-1.09617479950693,-2.1810221689949736,1.2925337379659416,-0.7643252619582496,-3.275799276890933,0.8964676780053158,-2.884484628560085,-0.22351103852559967,-3.658904824937704,0.6883285325689524,1.8098273076759837,0.3730927154798753,2.4743184890322434,0.502872768005587,0.24984827044074656,-4.718307672608928,0.3166793703631786,-0.33424455297609734,-0.39585997435442477,-3.95342062267995,1.0209179841378047,1.2241007155184678,0.8888033523830964,-2.8219143481976148,0.8787150209464183,-0.8049632960918479,0.6955154807617919,-1.6210370666889091,2.158849068650045,0.16286413257902754,0.2680572793122338,2.1911626687154753,1.6551476445029378,0.6142469619842267,-0.98098786248076,1.0092851363586528,-4.039422322183751,3.1763395232531946,-3.054975844006869,-1.2876642072389728,-0.6083966775405641],[0.8695999721856351,0.7180462744527191,0.4332563070772125,-0.32891881734197065,-1.1211978349437917,0.6065288160815127,0.36117080807939334,-1.0422608650250218,1.0959417574429398,1.1993310220098157,-0.6107624628478533,-1.4779351236200997,0.941633282200598,-1.8959586192982067,0.04322340416079687,1.6664712971871734,0.09587387063969811,0.10542886764098544,0.11563424366253479,1.347897653603474,0.2634770798471163,0.20352152944396468,0.42693652172945973,0.8274262088453447,0.21357374991001432,1.266504402495599,-0.3251922654190584,1.0783521911763265,1.7890694885959175,0.6217792229288613,-0.2025727025819066,1.0092738341021563,-0.5078713443195902,0.8634715723195433,0.546476547126959,-1.6715414458481197,1.2451494052621397,1.924885724935304,-0.98873672597957,1.3482227769319202,0.4485412355513314,0.3119704062739461,-0.3816551452340296,-0.704351114017728,0.42617210696324204,-0.7383440020773433,0.8095942475357829,0.0033212498160663214,1.5040407452731759,-0.7916602995056343],[-0.5910295474893428,0.009512320471354554,-0.04215763506575636,0.37789969640729987,-2.5547240558564908,0.991176591583915,-0.31763925942011645,-1.3005766319671939,-0.10129593766047941,-0.16946152032267597,-0.6827985012662801,-2.022730902880641,-0.7867474461852051,-1.3030748552644442,-2.2966790501672536,-0.4808276240994401,0.18327887774299564,-0.8652452064932156,0.5928481312487975,0.39808046025131283,1.0135220615476415,0.20568516858844604,0.7116282094216818,0.5840928283320561,0.42815669822889224,0.6528476132726492,-1.1309366654822104,-1.9996963924909266,0.2503416012929113,-0.8809783164213697,-0.6506735105472533,0.01709941647778754,0.8054938258230181,0.5408525924019673,0.8161846686909346,-3.123880340202417,-0.4817989916963512,-0.02548076597369104,-2.1522183389147354,0.9990101141521838,0.00010476175191861145,0.7995372006096575,0.39254564884865334,-0.11744621850543181,-0.2015123956470626,-0.6006837621117946,0.4776437871785969,-0.27077729728751726,-0.10381224714879407,-0.24581002628096804]],[[0.2933816289334392,-0.17005985095659903,-0.4594999804463534,0.9310581445439506,-0.5420596285126861,0.1603652972178003,-0.6841176313438323,-0.48373263714239195,0.36967633515608905,-0.5681993291255292,-0.05158064576209616,0.9380137116755548,0.02394735683974711,-0.4923182454511983,0.8497045953340623,0.9691625034723046,-0.11282096106484295,0.9029400595826647,0.8671919694130755,-0.531759286843467,0.16638188423718026,-0.5494341169779361,-0.1761790153229421,0.3884343538299834,-0.5154630407855822,0.7060051294801677,0.5768560424222492,-0.15852678030876985,-0.19772044505799014,-0.1561333128200986,0.8414110396588801,0.17510568621744427,0.4525221891821954,0.8019888068713883,0.6287999335932721,-0.6765655159441906,-0.8723996018030693,0.6226547627842723],[-0.8880651524866028,-0.5195098355486131,0.8197131403968412,-0.5248183632153134,0.580645163425448,-0.9194090968275608,0.5239307713040826,-0.594727153862035,0.18779742822469928,-0.46327527384438816,0.3672615080244957,-0.14500291361183612,-0.1441153635201279,0.06991078839580084,-0.33654723166986195,0.6033293497313067,0.1777864775778858,-0.688690125509608,-0.5508989057378056,0.4176714256475485,-0.015130308701188196,0.39585827991854466,-0.5647272523953862,0.49437024170838917,2.921559853016671,0.7874863132826557,-0.93974057137581,0.5249005580238432,0.3272878295373604,-0.33047744294626086,0.8819829018839055,-0.14049185581847512,0.8426245351547703,-0.7288705549105956,0.49740316900370196,0.40127278810385225,-0.202863655617322,0.24953336750379215],[0.024109950653681295,-0.6162361601178188,-0.2613317133228627,-0.20988888611577128,0.8081824995316826,-0.9238055690746048,0.9706189122971736,-0.7063383635801515,0.7436128266321707,0.5228042509406438,-0.038351695176453066,0.3030379570531881,0.2762718157700572,0.5782399200646344,-0.7473215372672595,-0.48822216549718955,-0.44785565845055736,-0.9910302689874967,-0.5349144976231879,0.3391483765830238,0.08261517575775532,-0.4559515073114085,0.03611760815135397,0.2805783030938296,2.1840280107489365,-0.4336945209084856,-0.8558256149036644,-0.6521149742556185,0.12199953077805067,-0.8934114929045055,0.2790563571894745,-0.7184562538922683,-0.979432959780713,-0.6266170724078945,-0.5935296444555812,-0.46372731387603827,-0.14479002943632618,-0.2778244132876987],[-0.9017210793539842,-0.13733816981953095,0.2848659133257905,0.7653026176344605,-0.841770627995944,-0.4401058600939319,0.42563703312923185,0.590660811847169,-1.0195833173642428,0.6270200102317316,0.029141553546362668,0.1675077470372956,-0.959531381918969,-0.427977063890589,-0.4122511460365533,0.022947181506215112,0.09138227194743341,0.5250047881441613,0.6668214611895865,0.6802164125058586,0.3559299338324626,-0.6608912805411948,-0.3635096681110544,-0.8443764178574338,3.247894855983381,-0.8793137859964205,0.5902048836231923,-0.24966132863779866,-0.25127669631751165,-0.9268701285375385,-0.9894213492510219,0.44181183427526866,-0.43284940353545054,-0.2850709370272977,-0.6083439378633763,0.6849301741766628,-0.980354151846445,-1.1309952341311844],[0.7190538957381012,-0.33588136169421107,-0.8865761129796841,0.19441103194036805,-0.9936843490006908,0.7637751415486183,0.20101221308115258,0.5803048942768038,0.4461869396166102,0.3579742572022522,0.9173681064008796,-0.5045334151890251,-0.9473545144908883,-0.7740065911274879,0.3235721495069578,-0.4625200605742526,0.728475514253858,0.7622981920921956,0.592354855248071,-0.29373570753587824,0.8893601479265777,0.35180663192562994,-0.6790691027670781,2.002756479110963,-0.42198482583088615,-0.8676117240026415,0.8963223005643784,0.013137933601431982,0.642065740067756,0.20362794339992632,0.4392123992883933,-0.7784343619205921,0.5516914065170663,-0.6809144149570715,-0.41990188496855674,0.5245151241149043,0.2637710944737906,0.7582550176155173],[-0.8011056361935093,0.028137550491001223,-0.8898935620527855,0.6212597269994771,0.052618834043076185,-0.9650167168638712,-0.7942658448917795,0.3607181481154686,0.021309623160990752,-0.05741499676669412,-0.8550746623002129,0.2815866184666146,-0.7574325614784133,0.8484147196044352,0.7985918020740909,0.6437043318080583,0.9516732302971715,0.4153611924075374,-0.1602414652991227,-0.6659109968706756,0.19261453090234024,-0.6754777491392143,0.6139425205098162,0.9358263442930758,-0.5500777520035508,-0.9516138037625964,0.7770128033102506,-0.5528253880626609,-0.10382873487147666,0.9489411452579635,-0.9565209953414925,-0.700666547549552,0.17013100948199805,0.2856036693841428,0.7140825192146667,0.46106585993224214,-0.829814957500415,0.06708833955869778],[-0.6607549849003841,0.2498569479195724,-0.4756198232652907,0.24327388279731882,0.31725048652863386,-0.0943287241385028,-0.02864604985167045,0.4386829495721838,-0.5261902242676763,0.03988434262651708,0.056573991063019684,0.6321539578978813,-0.07984081126078145,-0.7854663988910008,-0.128647370646969,0.36046502031207855,-0.7777263024619046,-0.01986472664177207,0.07148766080141562,-0.026032620282980173,-0.9308813212234693,-1.506213175266225,-0.23924754561372247,2.3251168400155833,0.38307899145230034,-0.5224643092054712,0.4251009167246186,-0.12902155383478972,0.0722793377485127,-0.804690370326419,0.45760011085120966,0.6020770041914465,-0.9156586115691284,0.2462399964036194,0.8675195098791211,-0.1811990375834684,0.6304327271263768,0.10049167809614683],[0.21838397953991476,-0.15096102496137442,-0.24949924064556622,0.5558305556857834,-0.017799325240440353,-0.29838026878754004,0.14874682258002606,0.42241808830804045,0.8607015178198776,-0.29821093297288764,-0.14926666281526332,0.49498973604419466,0.19825675256387001,0.228544840926395,0.9333075390232972,-0.05819188881013361,0.6186978812389027,0.8311758680357794,-0.18392720035509685,0.9020701195814128,-0.31192233701106514,0.590882818750914,-0.0032590246960765125,1.8368933933322789,0.3209491489072691,-0.6154198046004401,-0.8141284209002796,0.061293664406145976,0.6464791940185396,-0.8509723979918076,0.28187321280923044,-1.0006060785953201,-0.3193880207826894,-0.05957675815625489,-0.28955203172149846,-0.8403350501879557,-0.7627445662239218,-0.698890216625749],[0.40682690764932034,0.14410639967769925,-0.5289996050341786,-0.0009627565857478501,-0.07264403167485539,0.6290793921533219,-0.2519945796284676,-0.11398443529026507,-0.8451929772814701,-0.02345275459456485,0.8553543477945826,-0.8449488734268407,-1.0132515241347524,0.5735336966237693,-0.3757446341100946,0.10288906343768467,-1.05400158406917,0.5554539669367491,-0.8630492566468076,0.4730530862025657,0.7515894649747229,0.12898339178187238,0.7146926353496937,0.6179611937811654,-0.8828142739140894,2.0675943202873084,0.13272567082846784,-0.548135602557394,-0.5462423271405171,-0.18705372564996398,0.21586002800989654,-0.5048139409553162,-0.6332579109782647,-0.6287946218466113,-0.2560499452153423,-0.0787603429062697,0.28710672210651955,0.828553763918344],[0.4456563182571006,-0.5498802258316048,-0.5940679828876151,-0.32889149352457553,-0.5706948191703998,-0.5637998972965906,-0.3212019348967658,-0.2376130294397588,-0.37195322980844686,0.7535108394438801,-0.2820006831730571,-0.6578715708533048,-0.5021780459521202,0.7581392380671594,0.7419105111688107,-0.5548286618624334,0.24244211827841652,-0.7670413027356788,-1.0000946411673945,-0.0774814705991037,0.3721435472123055,-0.5059104465909691,-0.3830392521429299,-0.38904892898013416,-0.9269523441597368,1.8747480314816842,0.2824157427731394,0.9385493723072494,0.8972848337255482,-0.6663843911084851,0.11050832651786326,0.5817989935429038,0.11200860442470405,0.09961522257514797,0.8585723046433777,0.28197381725819204,0.3729940299516254,0.47115102697192],[-0.5020313722947243,0.5669492100059672,-0.41171382899397524,-0.9448257541775585,0.4507368991802704,0.6096109376042104,0.2305993753041519,0.18691257579580617,-0.6383356163714695,0.7001302170746346,-0.6278321997737005,-0.24376205160378503,0.05053811064972448,3.0093179007419213,-0.7793024621119093,-0.5683806055512368,0.055927904322147094,0.5212042930709434,0.9425186934298011,0.12608383251997987,-1.1768524906676758,-0.32314361126798985,0.8753834803787065,0.6164967074791116,0.039991963181972914,0.8430847040140933,-0.05923509472238959,-0.4442755357873681,-0.903013045917845,-0.6525112879384488,0.6112049116917017,-0.30884881243497087,-0.23845354458988985,-0.9446980172415117,-0.7653625009278758,0.06840413055574107,0.7592028476700721,0.12942675313364038],[-0.5022943646551019,-0.5299995315226897,-0.5718282422845908,-0.5929921253886873,0.9212704857637198,0.3443068380790232,-0.12869262405745285,0.59341236438377,0.9526483779612469,0.41911150224623483,-0.6840094296760859,0.49139782799018716,-0.8377875533397835,2.4617076235032544,-0.052756614546114,-0.8211327228459241,-0.9464939533398757,0.5989341592559008,0.32143006989033923,0.33893368726950646,-0.2950647060422897,-0.7127223119729946,0.06147068267148034,0.25369409823895955,0.4501216300263963,-0.5520496434748543,0.465078654152848,0.5274668332113737,0.8245359657553122,0.30560936657598103,-0.2386060373279344,0.5273956026204981,-0.11399629268445233,-0.5676670109467445,-0.5441581200886618,0.45273449486736334,0.5172281530992459,-0.35880924562354966],[0.6856631727611906,0.4418519963418085,0.2580836536713586,-0.11210825102403431,-0.8175107819512561,0.8862788643162625,-0.6919114541862996,-0.589373440509128,-0.9913656160407959,0.7108660062487709,-0.6830760064817861,0.40689014660202383,-0.7977185972471473,-0.6499340137004297,-0.5836152868174967,0.8063458350757479,0.08935458308451316,-0.05760913295376042,0.19821732445905435,-0.46836550907121705,2.5467058105611278,-0.4746000839663636,-0.5268541487628733,0.8009978583179385,-0.1407492721429485,-0.6642033372453534,-0.24279027237958756,-1.1981313097377835,-0.8074148815443003,0.30507757023731763,0.5096367172655285,-0.8426462901809654,0.11003185321990715,0.6049945039665409,-1.0841494770737279,-0.20692628506872052,0.5180820379531416,0.11736693820659837],[0.012645475406039898,0.39792597992046946,0.5149734802050765,0.9342924880644107,-0.2874353135733009,-0.07991471389170868,-0.4526397233597771,0.7639277741723429,-0.36073656826096084,0.1926324712310827,-0.5306275932867905,0.31462408045539236,0.1333794469229165,-0.9147094059396689,-0.2263935684727051,-0.44838387916728045,0.22553481103473155,-0.6882138337385985,0.1095048310144255,0.04014675232810692,0.07753826551757699,1.4470413475830435,0.7708781309789324,0.7833254860861143,0.9059601724052453,-0.5092785907719443,-0.07041125317964779,-0.4641420805744093,0.9035591667144158,0.7380584101681007,-0.17980086051680322,0.84351637062312,0.8662487412741481,-0.2828133772594905,-0.027324216507491433,-0.9600081614553659,-0.04717517563313361,-0.5284727048372844],[0.13082658590488783,0.9269761579422534,-0.9124389855837718,0.738727202752016,0.7478183930430262,0.3172970837657643,-0.11141354910682214,0.33522000363233284,-0.2917500556030177,0.0007072497485578502,0.18871118117977742,0.26567378884062703,-0.8421867337489979,0.5545287260732196,0.8219139188471245,0.8435478988932715,-0.9468808462099619,0.05134841542076343,-0.03880966821499516,-0.48490622944641226,0.9520040523937487,0.7171245049736733,0.8944543188678007,-0.21815464934789053,-0.6230568363281027,0.33786009618120183,-0.049193823477009936,0.8739309438069799,-0.5482669640975312,-0.7093095572017032,0.511352527951361,0.8003684285560934,0.5330627213152733,0.2125431508422027,0.002132242183246005,0.3411877912769148,-0.6016622625971391,0.23918091117784052],[0.6037966728089091,0.9571573672116493,0.18686891102075529,0.9319632524617005,-0.5932459797673922,0.9352210781891617,0.09517482624001442,0.37842566112507897,-0.1349187794828451,-0.03567093166024281,0.26679328209148734,0.2258480772499215,0.5811347743213715,0.5981706918080191,-0.22580202500443144,0.9733563387442326,0.2799352239301671,-0.00482984746800116,0.652869097413489,-0.3732063897652027,-0.252099606428838,1.3587524719626252,0.06519527748103414,0.22981115669604846,-0.6547921978287435,-0.20295627807189126,-0.9808662372734877,-0.16435532683340173,-0.8377093326614466,-0.12974881352441356,-0.8406251323249234,-0.2667315724318075,-0.8249571243634035,0.17470726625347666,0.659013021777856,0.2755011170164518,-0.36258380919339533,-0.4798313495121789],[0.33255077975722325,-0.00496934731497961,-0.6071223162381519,0.22001350352386156,-0.804777052928706,0.7944164991938242,-0.6057204147655079,-0.16427575416640616,-0.13001651914943047,0.3876430174194048,-0.37937488827027804,0.48419360828438335,-0.02312092384826741,-0.4434451045126224,-0.24584843170531895,0.538351374202406,0.6465718217141222,-0.4016374597317151,-0.0334068759887482,0.700633961536759,-0.5119693234827408,1.0064504457460857,-0.9824042818398585,0.5273872809532,-1.021369350223833,0.5866624626007082,0.802595319339591,-0.7956092239895073,0.5412579372346376,-0.4522158065717772,0.881682384398785,0.5471740829656911,0.6028665130763918,-0.054933324661352895,-0.6901074132843824,-0.9130139104919117,-1.0351645577555093,0.24834620348652292],[-0.9062470738502345,0.20082127879318634,0.6825292193843586,0.4912264523113263,0.42784119643804713,0.04790611022461277,0.8671501718226354,0.6843659651686649,-0.8797135873431337,0.9777651814503173,0.04229120448580248,-0.518872894487491,-0.13866569687093375,0.8609901244633336,-0.2067163886371995,0.5348792520692363,-1.4319189457217913,-0.112152520204385,-0.7555891200591203,-0.7736645918215102,-0.8858094813168188,0.7501588316871025,-0.9891605963460669,-0.29047636285586703,0.39116600754743797,-0.8888434583536813,-0.14414173371644207,0.7642871584257886,0.3330388142648969,0.8549429938666813,-0.5600732660489594,0.3373079943441776,-0.9183561901891444,0.28716449282011725,-0.9036950895056999,-0.1373984807524306,-1.0337503746802634,-0.2904165031675524],[0.11586120170994005,0.5620067608571516,-0.1377873407135196,-0.4240742621752038,0.17262676532213933,0.802706958065098,0.6245979306228816,-0.7360670410776513,-0.9913680971729666,0.4168530806509243,-0.6138750992432138,0.2703052892923778,0.1311962519735326,0.12536131974937562,-0.9084144393247647,-0.4731263548051347,-0.28417947091416823,-0.17879643418507032,-0.05443782366463793,0.3774736773642538,-0.5627808484908038,0.12482098969818528,0.5394433475003771,0.13460182970333878,-0.7822209914723466,0.6500022704768169,0.7426641832793385,-1.0055684930795232,-0.5408939301785622,-0.6221742249406174,0.5827241482241426,0.6886161307650662,-0.21153530967773207,-0.8326876234244999,-0.7803683640892738,-0.24750921775637516,-0.796547027210526,-0.09532763223334804],[-0.5350324309746999,-0.7394249674933003,-0.707182632588405,-0.2820677843153173,-0.9265232991803138,0.011495536340241102,-0.6312060272400073,0.6888243771586469,0.2044879486686069,-0.6879119338386976,-0.8319076218098894,-0.6626921307333327,-0.42976968324485837,-0.06090277312666757,0.4804642126533982,0.14170237657103954,0.2321128156942526,-0.9229883982703775,0.18096164035927784,0.7124331399029925,0.6578669942230376,1.2911815282987682,-0.8665171372232005,-0.15555922890674437,0.2327480273002431,-0.07104554134863361,0.7837793795800289,0.02855780088938813,-0.27577071950115556,-0.43300049364709425,0.4909817262037141,0.903436082300005,0.10136493920670563,0.489040070281383,0.8021040570589011,-0.7208191716895619,-1.0150627277336126,0.34803013356224366],[-0.124239193158309,0.396209418988264,-0.1296689258084665,-0.2776747877666421,-0.3811820490878346,-0.22086153659965926,0.11681576624148005,-0.5535687155588106,-0.243590823861302,0.45112591784437034,-0.5463693370563721,-0.2343187763345944,0.13098027185649722,0.8861772942413947,-0.6915260673754855,-0.5004295389899832,2.029674317134164,-0.9484416612125695,-0.9294665241273343,0.06896132580698243,-0.981047839938204,-0.4560723151405226,-0.6713602407738376,-0.6202407223787315,-0.5261193594733792,-0.02587513235545818,-0.9175731960942756,-0.2486251783513128,-0.009957186629356473,0.2810461967909272,-0.8926435628508883,0.49506653245124305,-0.12619754502547836,0.5025653096484718,-0.7341782564568775,0.2945485281265097,0.5523908653810226,0.09376795347802942],[-0.08805792156833586,-0.9453842251121258,-0.6522370501096211,-0.908262448637938,-0.8767522817152053,0.1852509425281197,0.8671449081786708,-0.8203820392781569,-0.12160985497461994,-0.7523429511389943,0.05027885567772923,-0.9846349451884543,0.03589229689577582,-0.2857233738841372,-0.03315310009627128,-0.3214631687011061,1.4042020888285833,-0.9908341761652225,0.6832800280678244,0.39302819491679986,-0.8908095996105634,0.00531898468126414,-0.9837653843147732,-0.09581651978585087,0.13516914951197886,-0.18561287587010766,-0.03617826072936872,-0.13413258051104157,-0.36719856405326556,-1.0006185830780523,-0.04486887137998406,0.5676072652127395,-0.24700128727133125,-0.21832666537935116,0.4716227697858294,-0.17527105675332752,0.4333803527485679,-0.9715154026254396],[0.06954474577590679,-0.8865547831001585,-0.5169444063970947,-0.6580456474417533,-0.6269198953529925,0.40663903203849405,-0.2722899195192592,-0.8906914962090131,-0.0018380026570791442,-0.7344630999104759,0.5971297065669073,0.34787639849312035,-0.8159926488070773,-1.0065709568950176,-0.21415277301710328,0.11080493387772294,2.36850640171462,-0.652142616857342,-0.7522798597813557,0.666418659637106,0.6446951263252259,-1.0074266874270774,0.21351186451444512,-0.38250115515004257,0.5013777117393241,0.07419952950409299,0.5404925075744212,0.8508448871289886,-0.3651210337882717,0.02554326452197425,0.44965173284229243,-0.5409721973006114,-0.748971300626881,0.8493413556087643,0.6858892821095699,0.5881157912819791,-1.0870701341079296,0.41568239510869714],[0.5796945686502284,-0.04627228146715343,-0.13478149934089045,-0.30538470900678844,-0.9707277281975742,0.8109909158244714,-1.0235804113021447,0.17998480566914196,0.6787043620110933,0.2457933455010867,-0.25303315108414054,0.2228467403356281,1.6999711464879586,-0.6805065909515816,0.7595189494342743,-0.4245007015358817,0.06279961302566914,0.3351618796629515,0.37103526353058663,0.6148686396086696,-0.6971490735178215,0.7230716611353262,0.40042421890815855,0.004808075991204273,-0.08831490171635163,0.008881487010817455,-0.22977063255191105,-0.8577516045324544,-0.24435451962176358,0.3450903828753295,0.5895245868430914,-0.4828654187701809,-0.8298638524008896,-0.5068793401696184,-0.6198337473745366,0.5336168755612903,-0.36612861441148903,0.2413046246538559],[-0.2896094339235917,-0.8846934457635978,0.9574680970396027,0.22790443383968223,0.6950357701092648,-0.25682201945400146,-0.8522218099110951,-0.762203596731119,-0.8244502433375619,0.5130701511446993,0.6946502831876403,0.40721387302050155,1.602340057419878,-0.4748958846029087,-0.23633304124264365,-0.8865302616651465,0.28145696325640984,0.060830381634857406,-1.0078404548872002,-0.38464000514219565,0.15418408824409124,-0.3613934308901201,0.31043485091169193,-0.8255826270503444,-0.4440347984403172,0.24550303755531927,-0.269446111868143,-0.41142021517589716,0.19259423705525838,0.22578892613154142,0.12092373684437133,0.7474986436142854,-0.568285370004025,0.6118464976263255,-0.2923823988274166,-0.2873082637315553,0.601632543236915,-0.8747595694517654],[0.8010002204018946,-0.4162480785765685,-1.0088553868976287,-0.4357426538030277,0.3653520828387522,-0.31832404364379296,0.47393189224524074,0.7107159345783421,0.30788482289262675,0.5468844207078897,0.04380977209347586,0.5962257442505919,2.491066630463424,0.27257031321396924,-0.240221976683383,0.14266399175720584,0.5660843564351098,-0.6329327753449833,-0.7460774507545612,-0.48800064190562004,0.7430422657566456,-0.19830592943831263,0.21867678205635616,0.5106681834936774,-0.5223826103431657,-0.7380755991086152,0.3108186382287132,-0.67350982583868,-0.627328225864931,-0.4379770587034461,-0.2286063634616612,0.5247277054059313,-0.9816235196712848,0.5607870847654324,0.20738154230565828,-1.0426601463006522,0.5774376843159036,-0.7900036657031211],[0.2804527400267954,0.451633380382286,-0.7743152341079838,0.7027375683379964,-0.589087651497503,0.4798210977183817,-0.8756607604304302,-0.1917850497806768,0.9512138531889911,-0.34194457693177327,0.5245759849710765,-0.19799347879866044,0.6340423499790884,-0.5433866107104789,-0.8663443270734015,-0.7285558928400085,0.8688289960745079,-0.9092263350693285,0.3827621505687856,-0.04095251687871017,0.526299915214042,0.41808156157403986,-0.12886709568582266,-0.33546358441504637,0.03666401835218852,-0.45151025202840445,-0.6146480240907072,-0.3060064999808258,0.48294897252873964,0.5642674113609525,0.6461129578572654,-0.9554162974927116,-0.07369540558038318,-0.4771685446133327,-0.9883245976901508,-0.5170646268995219,0.8580251818259118,2.4596382065434934],[-0.6198878997694287,0.5438538321856752,0.9272371051578652,0.7509329297531664,0.6484023566039752,-0.08172709091719096,-0.03908588444024651,-0.18795219979446803,-0.1830614229374585,0.1500117762015475,-0.6963221629505586,-0.3435411354436344,-0.41356308108053647,-1.1021751710562244,-0.3469996124105686,-0.1996127867933416,0.07905863929619734,0.7432986411387096,-0.8941913467492334,-0.9528835710202849,-0.8508205087858217,0.391558361922586,0.897228029398546,-0.47671451311649005,-0.8809306964429287,0.5960333929026247,-0.29460709647977995,-0.05239379125192308,-0.32797593958147647,-0.06594310122247185,-1.004975114534463,0.32104656275061155,0.3964321141068955,-0.46001613066868957,-0.8870151121790606,-0.38973995464326583,-0.931185609177411,3.101415067847937],[-0.05181887710145507,-0.8163982711940955,-0.5603479741763052,-0.5049511703603058,0.2271875352522016,0.8710129509477165,0.5066517442490545,-0.08095418573787701,0.745083427692774,-0.3302237408017896,0.5505903161321569,-0.6758703677262294,-0.5812457919833938,-0.7841004074982842,-0.8537659372014552,-1.0130002011937873,0.3549612225007167,-0.7515507616463196,-0.40449597740989424,0.49411160779608704,0.05105414349721492,0.4938522186021831,-0.3536720259827998,0.648578415500547,-0.7947998043263009,-0.2750889281081712,0.40789625268965424,2.3108500452203584,0.04661170410239968,-0.08418453116277445,0.10489267587678199,-0.6656605075309712,-0.5433687921445227,0.3595963517784659,0.3399293653827477,-0.825353222735088,0.46307558974596935,-1.5673772172384182],[-0.07250624037506834,-0.6603656629098033,-0.25457152103759645,-0.8123384021590774,0.8013220765969757,-0.9792115582429534,0.763155778116366,0.7019920806918873,0.28101136687076084,-0.10900246062350298,0.6727639514540235,0.38176363358179316,0.36185628747441545,0.3967096265465053,-0.3423923936809279,-0.18891166712180357,-0.44382567529270744,-0.33579965617183616,-0.61289562561667,0.2568394567823416,0.6563601311900715,-0.37071520813120307,-0.013608909948881386,0.8487072921564213,-0.4466903804903513,0.11807191222755972,-0.7665830283091938,2.734106471866482,0.9206373008474912,-1.0406827616162986,-0.4436822393930424,0.3246134614112647,0.7547561345429173,-0.4396302490328122,0.6631797333012722,0.4994773641269599,0.4606216127292631,-1.113361996557845],[-0.5749838486173285,-0.596384303013342,0.6941288101627052,0.46668205592720463,0.2176750855645339,-0.10159525904457241,-0.21249930847870452,-0.6963738863841284,0.8808403985277578,-0.9347813821703923,-1.0057056781277383,-0.8411759964792966,0.12527464334775135,0.939880044026176,-0.002492633437852611,-0.802228740556801,-0.667755830225291,0.6681486553656768,0.7680662507714261,0.09552823359389803,0.03830945001730898,0.6572845073373761,0.39202668276464037,0.5689857609513364,-0.1570845244355951,-0.6027887081041028,0.5990743265325891,-0.0897436226547664,-0.8500510203757174,0.18037011380967094,-0.15675154425160626,-0.5504756139301923,-0.6026578259751335,0.6738803289581312,0.5318025583326935,1.5857026248293613,-0.38369873263116583,0.3347303506733606],[-0.3385166566406264,0.8078809361957934,-0.5308034002305347,-0.18814909673659064,0.7668196019200966,-1.0041007772385866,-0.2706643029478491,0.5855028122287558,0.0641196860371341,0.2029969706736256,-0.5268666861254206,0.20469005854643238,-0.760253763442572,-0.07762322601270351,-0.7756286832243469,0.5280210052396291,-0.5160972659213168,0.2560926269384685,-0.8383142986665172,0.4163795783897459,-0.03291727776115034,-0.6125674503363459,-0.9254336455291614,0.857354395438498,-0.9938058636011466,-0.9745191265794286,0.5117907903788197,0.2953037961665467,0.4933497390705703,0.5245532258353209,-0.08357887245738319,-0.25780782492563625,-0.32230998043171677,-0.5821958528418573,0.8591330554763952,0.6943586353224013,0.7682601086771667,-0.41361277994243756],[-0.17061361949232448,0.07620190438413524,-0.14779554058475117,-0.006545377569183819,-0.31700709284992834,-0.8438863819449284,0.01472444457660964,-0.29904650887641904,0.9772555651786875,-0.35731893709713564,-0.9382127024397888,-0.6142617945005525,0.2577796083037668,-0.7130092363403719,0.28417894965585627,0.03292054688838344,-0.7879273574681455,-0.9610534612267212,0.41366912886809326,-0.931512512140215,-0.9736214465864,-0.22102910977567972,0.1312928453090745,0.539952880472457,-0.9720703856717674,-0.9315604939941107,-0.2199229523637322,0.43851335634228134,0.38677992153536755,0.17506849686028042,0.13118937393094685,-0.788584832198834,0.2684394193004831,0.56817149933753,-0.5017154974016463,0.9067675704548589,0.8668081837383699,-0.08191188166252801],[-0.1937220111958434,-0.3601656472265945,0.18303562972155304,-0.18137573531550694,0.09792269963425461,0.8601780890659527,0.9719422699547122,0.4112064039066928,0.46253604044812613,0.29065084905844185,-0.7786583128316004,0.3235879476694599,0.424821907162553,-0.005915265961222368,-0.5937482097463119,-0.9412221111023796,0.41661052548999616,0.8297966752358504,0.4703389478944448,0.855385542878916,0.31247726861667763,-0.878105751282712,1.8005214102687577,0.07210967521157363,-0.6694456048348661,-0.5998664962688937,-0.30459497420860654,0.09764020455251146,0.38257727779356787,0.6270899223140748,-0.9355632070079659,-0.8730126915944807,0.907967810910994,-0.44156555893970506,-0.24627400527967408,0.4115219438413046,-0.42196762305595,-0.1967499190561467],[0.6158959617451925,0.8782262473420863,0.13788791677237705,0.3160985645095628,-0.6446774684979508,0.5341402421074123,-0.6499886206554499,-0.5811205259867146,-0.0008455576189928143,-0.6462464416764394,0.09027329294470204,-0.13729345047916763,-0.8872183490027346,0.13871702553644288,0.3752406282605754,-0.6662342442649434,-0.9630839100242111,0.31550997189482005,-0.7565208598367102,0.07255350715927425,-0.8011451438442351,-1.5467398171191078,1.1198531842210682,-0.048118420320082025,0.6383743508050497,0.93620312762622,-0.869754920716179,-0.25442200493158207,0.9039924269697657,0.7503503023392043,-0.7189818970351225,0.4370669508495294,0.8392487922236046,-0.033170199453314626,-0.3047012389153409,-0.0559527602343463,-0.9216122200788663,-0.5354034783721661],[0.6817271090760184,0.9040175103942873,0.39006536767635647,-0.6433398636864389,0.678328053925247,-0.530705331795457,0.5683277225688782,-0.7830158800450694,-0.5021276914176971,-0.38694260377677553,-0.13409477772630243,0.8472416962207615,-0.17119453822253064,-0.0058975706522966425,-0.8845534360521381,0.06991451865763183,-0.21385515630222432,-0.23040716994057847,-0.8574940866546156,-0.8706885285329756,0.4352931004739729,-0.709755185534507,1.3413878240892898,-0.6385232991047861,0.22270025705022153,-0.5451592638231189,-0.4556630069016469,-0.962041857871186,-0.8598630163700205,-0.8049304853681026,0.58835495478996,0.5258179987061666,-0.7390604899402761,0.2050593276108248,-0.3486162452276088,0.07426173253970875,-0.10095885238985378,-0.9772311197136153],[0.7804952916025877,0.44716632519817956,-0.5427143326688327,-0.622593675143292,0.060043232280148524,-0.33435632442064905,-0.34760917259271323,0.7467119222367835,0.7561638976837817,0.21447585893484045,-0.03166620043271873,-0.003147412281765506,0.671958151322672,-0.9369323907629308,-0.7674680543196089,-0.68828318436598,0.03296570187062325,0.7583181408429679,2.1818917882448545,0.5374159986764294,-0.11536198086323053,-0.13346683948410637,0.19923439233976853,-0.13024766762177903,0.5785334958363247,-0.5297336074352897,-0.981830009491043,-0.2047671623219956,-0.9750278925536157,0.1756368288585175,0.3601082194149073,-0.01286514750108002,-0.3185637251967133,-0.56228479281613,-0.21481505940344028,0.21498210826200664,0.3108920509016591,0.29204002949161256],[0.4737165311947087,-0.7454194338626782,-0.2352659403006798,-0.9343072732623369,-0.1489576401080175,0.4136476750268036,-0.1471012597263469,0.3032548519193393,-0.33558486987587927,-0.253226218899173,0.5247507487982641,2.568844440716635,0.3376430830798794,0.5099321822644934,0.013068826460399707,-0.5927287578875021,-0.8781669961904452,0.6875697659536129,0.5397223123228517,0.49150340665363684,0.6690219839475481,0.09501809300507513,0.062274690603227156,0.4395078062986417,-0.8624543029707619,-0.12788779739937764,-0.9911476400937628,0.6029500766364294,0.7526227343119204,-0.37485373063372346,0.13191839273008085,0.5796875339918948,0.0825895417676837,0.051351822845047995,0.36732379153552314,0.3364532938432446,0.19470925708500753,0.25085652521163115],[-0.2859122459282869,-0.0348535160356898,-0.8231972092342003,-0.9849982970490966,-0.3395085221025198,0.3962937761689909,0.6037277301571324,0.6477730421315516,-0.9259627783196893,-0.9263148004846689,-0.8233411705843694,0.8759132901721524,-1.3353575687153372,0.3902845838436054,-0.2653248998446336,0.05355501355497328,0.5069901890944829,-0.2952631983902134,0.0069296952083671235,-0.9959753014207776,0.08960055343612026,0.5907323302325405,-0.7400649870171555,-0.9634977924893722,-0.48990199694368713,0.4490792870869374,0.280181987462213,0.5927038127423683,0.4184472564716974,0.4841242890141609,-0.5913611640900123,-0.6937167460919742,-1.2903597984811395,0.00869295216893966,0.21158643046872289,0.5087854276063029,1.784888967142903,-0.40829204575715705],[0.8018129348673327,0.6479547605286782,0.18246695597488322,-0.9921409131520637,-0.9387587720800495,0.842096082124465,0.8927191914066267,-0.4377642107167679,-0.6554569179946371,0.6490974320929629,-0.5691083593518634,0.8501844225859682,-0.44651164807999716,-0.17404372098906554,0.3310839782867505,0.22660903851261666,-0.8841939896026024,0.5355943806751401,-0.9218436015269088,0.5908177754434784,-0.8414729849536283,-0.2352823286859394,-0.9663647520687211,0.16299836060654643,0.2752574197667534,-0.7871044717575936,-0.7141830053420025,-0.14312188794005304,-0.7839224020513278,0.11413000082052494,-0.6129965171857031,-0.35658727860174333,-0.39293059810923936,0.1927915823455004,0.3001751899950259,-0.6903599089186515,0.6015876686465637,0.8551454171253045],[-0.6708525232732784,0.2586513291423466,-0.06862783308403168,-0.7366509185497138,0.2352402628111941,-0.8676753777618718,0.19732824840630497,0.020272513863820816,-0.7815644797190218,-0.06463070469205742,-0.6571340461497182,0.7765254135356191,-0.5732184251745781,-0.14553485074793474,0.5885569453679037,0.03293360396033406,-0.5032042177139188,-0.7531963521869023,-0.9971718256792027,-0.38357004214495216,0.7419716355588173,0.7030821791381042,-0.8867731682789763,-0.8384309476527316,0.30013397306548945,-0.7499278158043947,-0.50138378193077,-0.14594730015571833,0.46707085856895175,-0.6040626316511696,0.16486148916801394,0.03824689941630549,-0.9442374930975586,0.5738225113110174,-1.0030890309464582,0.1537764681993698,1.4193106846467491,0.9189988803859396],[-0.2838781682695246,0.8912809303691992,0.14461657530585714,-0.8309355194207113,-0.7599138059792147,-0.8547452943772418,-0.41638246116382344,-0.043253281833451014,0.48661312486938674,-0.7661686354990738,0.050887737616174204,0.7078603531853903,-0.15177302530966258,-0.32853456111355417,0.7275846939959361,-0.3179107539147971,-0.2237220739516177,0.282108098447576,0.3607056933768291,-1.0780190110064805,-1.1764376146043263,-0.3901478302898028,0.8532296387147423,-0.4340096917887661,0.21355561503866427,0.5941877956277821,0.34040211870325116,-0.46856524022906615,-0.07933102265452213,-0.09308590011875663,-0.17213701376902785,-0.5134849109907121,0.5423186181834159,0.5084658009120705,1.6391839495250848,0.7578595363071875,-0.9820227388894843,0.3625373628358094],[-0.06522109332002758,-0.9090086091610706,-0.2727298133091463,0.10913503239057663,-0.551513798677802,-0.7398784349485198,0.3225940612257706,0.667669939370883,-0.38941511492051856,-0.07465544262808965,0.5536104489927359,0.28839294671390625,-0.028942373232473444,0.07565408512508838,-0.5003257798285777,-0.5700196577699678,-0.201899183490211,-0.6202235491661359,-0.1746049312217675,-0.5031341633653507,-0.7405429334288264,0.015031665836321411,0.7172459695651544,-0.25977523766970206,-0.14134131297703767,-0.4305391347960452,0.8052153771891417,-0.2202684816561348,-0.817643061805036,-0.2981235948473971,-0.32149375699319904,-0.7697685570353492,-0.13347664266468667,-0.26637154756128223,2.5717228225045337,-0.971676512563692,-0.720611605837956,-1.2405411271401483],[0.10604948504068973,-0.7637146672217832,0.10154365607930774,-0.6362534921360586,-0.9487112804081144,0.967158839766317,-0.11321298526068446,-0.32568682727858783,-0.3267377745003151,-0.19810809053568101,0.2144134587570501,0.680402846943028,-0.41111954794557826,0.32212642767337774,-0.3927523833991434,1.2538029628059408,0.11235682577777073,-0.12702531733733044,0.1722404388607595,-0.9302690156611791,0.6428526102248666,-0.8067895044981361,-0.18254925449523296,0.5991427338135713,0.19294545544663133,0.324531135290758,0.46676972942130734,0.6069326838826541,-0.7980015105160916,0.20777445734310573,-0.4931414495810748,0.47157279487994774,0.13766141530916146,-0.663386826599852,0.48589151712900636,-0.8845182097118954,0.04725123252221852,-0.5882559490625838],[-0.9591516685001911,0.15352419643334755,0.03923118553130256,-0.7244930658502525,0.3815717507715046,-0.03495033808477635,-0.5400565226805185,0.27041544700923914,-0.07598244162309416,-0.6577786974881804,-0.530003718387615,0.3528889722373507,0.6414280041633811,-0.0007685431606731586,0.289744385629989,2.2161158137442403,0.03943670227019996,-1.4217384617807043,-0.9942382733771721,-0.5377393602555028,0.302663055518653,0.6680227019056657,-0.9047234553192992,-0.48383225893211895,-0.6804813083742192,0.10968386274951729,0.6654631699485809,-0.2230316685271623,-0.30132319167948557,-0.8090972075471065,0.9037783610678506,0.1415132254312062,-0.32276643316886056,0.7430431770999197,-0.9622108842626375,0.3014561176866877,-0.16278278680231517,-0.7793195030058855],[-0.9036344520778252,-0.9962501259321144,0.31505517080669,0.8047611316786634,0.6528673405602365,0.08139651785746205,0.6733327411664378,-0.9664541931664105,0.9305945782740114,0.8612365331769893,0.6092209093522754,-0.7992154677823954,-0.11120766521951261,-0.6920981432501745,-0.49171999723014725,-0.4815230215295367,-0.34572272078900734,1.226519035420659,0.2690906388191085,0.357397720903233,-0.7718340645806817,0.7190115087978058,-0.04856435095428394,-0.4785557887607805,0.880858450249152,0.17057178284232932,0.6491049795971556,0.04120944558899536,0.7553508746556378,-0.14730411354232045,0.5091796646655201,-0.5905879621306254,-0.5981431488543117,0.19298751730767805,0.32083478467750715,-0.20973100863259708,-0.7496291663118416,-0.173231164662118],[-0.2397059895381834,0.6328608582958432,-0.28129179334243265,-0.5268090027230542,-0.48149314609271787,0.7948329144459123,-0.06501576130837379,0.7712860221979249,0.7192972593793038,0.21695868389397951,-0.7952443429647401,0.47187876082453256,0.8113515283028438,0.022914019631693233,-0.29355547757687966,-0.2792813972902766,0.37487348530698594,0.5796998604841331,-0.04149152500094907,0.43891191320151846,-0.4247073623781916,-0.19321469499910354,-0.1638335819885985,-0.09766797317660536,-1.030075249419398,0.7201301996573887,-0.40209308892918677,-0.6387544746902226,-0.9854889458079887,-0.03387358881729388,0.8649584199051358,0.7165311546606862,-0.9556654152073311,0.9273920356588233,-0.884050710097123,-0.2581183642506545,-0.4083142688636251,0.02046297599535698],[-0.5361884172489016,0.03120547733853291,-0.9608396082081262,0.08955902873881433,-0.6829833002822778,0.2759441871957236,0.4051346232751946,0.41116739244562517,-0.523129393422279,0.42215949349707943,0.6154457702558735,0.6260648551975704,-0.01907722403906742,0.3013560086299175,-0.42921708125459396,-1.154336841595444,-0.7102387420150916,1.4622727481733688,0.170387048875078,-0.0559996916630053,0.13903638648879682,0.6564217286048317,-0.08835499492274813,-0.48215759864848806,-0.72018130770056,0.5481096287399883,-1.1616786723271664,0.28184572685616605,-0.09935739581778795,-0.007971661268124985,0.06771947782077362,-0.9318046531341799,-0.27415981327663,-0.5175854158824805,0.08588421819431998,0.15954193025861899,0.08819217583070839,-1.0110720573399548],[-0.8740281405314837,-0.05982912411586865,-0.37795044815117745,-0.3043001521667673,0.3483334831548388,-0.16843884598600545,-0.3614575047299821,-0.30536810414555826,-0.4164682369313344,0.24724764552613746,-0.43633588745576274,0.5280959544890849,-0.5381887127014757,0.9101799576131424,-0.9672999213429013,0.7379367630556888,-0.7150886245397094,-0.5237498038613225,-0.9351124882733987,0.7867573467925218,-1.0299702738228906,-0.017709353766767747,-0.6267784665886688,-0.29035178345193036,0.4322842100067418,-0.7510791573515379,0.443909913082651,0.4339735689681466,0.8600402584545764,0.038557115407799075,-0.12490620495114212,-0.06774082344214453,0.222271950087411,-0.9925827172446953,0.16981561331875944,-0.07223764715688955,0.8420280511075732,0.7910566728675692],[0.24631549350844587,-0.15905386185931608,-0.6290519211619511,0.9076062309085541,0.6902787242290037,-0.976139050955087,0.02261733066486435,-0.5959965912104066,0.3506473577412756,-0.031727828699785195,-0.5364631206964552,0.9038138167516827,0.24627514709347123,0.7015100414503769,0.7355553836330029,-0.8984045718042001,-0.23162696559122842,-0.3084452274642028,0.2861867661389499,1.212749719597742,0.8930695352460835,0.5478885532883703,0.6350301100350471,0.08502424657707641,-0.23095727290216633,0.6768663718661002,-0.07242651923812397,-1.0303002254896503,-0.32112927152700943,0.7658234782184034,-0.12090315824333932,0.29205176218780937,0.06328351353170009,-0.2642882482487345,-0.4780538244114405,-0.18573513757554772,0.5338849703818779,-0.6474586803096226],[-0.8146666402968126,-0.7934219106966147,-0.9264757845662636,0.0007891116235443352,0.5938766804446337,-0.3375488558785834,-0.5675833931707773,-0.8758898405172718,-0.4063952142533607,-0.8129680316944702,0.232224133407647,-0.8227375196791602,0.10587695003919738,-0.69016813044289,0.00470016458386213,-0.520979590071235,-0.8573359485047439,0.14609764969528588,-0.230652403961648,1.8360102977886679,0.5607370366184866,-0.3304347178988373,-0.7525864449270615,-0.23685090102638245,-0.00014296189403405934,0.33586492523630274,-0.5191180880781614,0.5665426936917716,-1.018961676940228,0.027520201666074995,-0.0012528436938711363,0.27304564955198685,-0.6235630060687554,-0.798733887954963,-0.4309670213719874,-0.6554068491130388,0.7746872844780734,-0.7866977113969473],[0.4033855282439477,-0.4081900301472496,-0.2886374834919753,0.21485100619666941,-0.3865902256144255,-0.3514301548611911,-0.3367215599906589,-0.4325559184619984,0.8100481735065975,0.8510816323345388,-0.8788606769614267,-0.7463711181987901,-1.0155077523933767,-0.40726501910774054,-0.6203503310276286,0.009895250469797803,0.11264186289492019,-0.6299455778798663,0.5077022465451022,1.0345803661226731,0.33501517750523185,-0.69321121489776,-0.350144229096361,-0.7363445021200777,-0.391107896899792,-0.46586140590847513,-0.04603611820196575,0.4977662048286176,-1.0126981694637667,0.6101116317380546,-0.9429117488201741,-0.2237995203436506,-0.6472735126566437,-0.4423353388879898,0.8059205041698766,0.7483757928824804,-0.6374790435099221,0.7578741184084871],[-0.3072908893782939,0.12909455474260642,-0.8510775086519089,0.08323670410371206,-0.9901886086786217,0.5262976393881623,-0.9906319165502404,0.8806183276603624,0.23209713364449122,-0.6944041160984498,-0.10271225700442899,0.6295106705214858,0.22496881756749226,0.7926559446881746,-0.6966817190608644,-0.3290267659338126,0.632281597820826,-1.1202415901939122,0.6825450697425702,-0.6434243555040992,0.24851855643664186,0.7597267207536069,0.6299985815955668,-0.3093672707009985,0.05324236523640765,0.3530238396722986,3.073238128633659,-0.7579778158364445,-0.1206931125729916,-0.8019305606821765,-0.6222360852236877,-0.3094629579909503,0.6792451143895907,-0.3170985066603744,-0.4093436837465241,0.37271951589513724,-0.5353908859135431,0.004225705406558447],[-0.3105814251698072,0.19711057987388292,0.29926546299249834,-0.8285543213879453,-0.5518296095289266,0.13563208970689478,-0.820027568704511,0.42281371272236046,-0.5059338466883894,-0.7368002463916662,-0.022804284968352278,-0.8201596731347539,0.62035518008278,-1.0500491118158446,-0.8278807236686909,0.8444557823848333,-0.16579660679911087,0.8266797717312789,0.018823349609759732,0.5221327659393232,-0.8150833942031623,0.6912546387983699,-0.9956267226299719,-1.0845376783168366,0.3056724530507969,-0.007901936486551358,2.245349111372096,-0.6342014667611141,0.4669038378006319,-0.875457264152655,-0.22865160858106334,0.24593738614770422,-0.17916169197601323,-0.39525816223597765,-0.9301899915437287,0.26090244158701476,-0.12643676839725027,-0.43277275705955587],[-0.29401185869675633,-0.7256067414021401,0.9702339106834565,-0.21220605199315193,-0.6825604258111829,-0.7718345324438659,-0.2683701484710197,-0.45958836036361084,0.191057588495631,-0.7362753176792068,0.08057241174855957,-0.6129065344295149,-0.19421750047219113,-0.8083507440171342,-0.5647625110327237,-0.9649401907297362,-0.8623661085461625,-0.5256190085342531,0.6683844849306633,-0.7849391582811903,0.09209954991212416,-0.18505937560070776,-0.06339536503136455,-0.13382180410015973,-0.6819917889266122,-0.4833348853330084,0.09319892465969724,-0.20649269113742844,2.4029373060140804,-0.441914621568473,-0.13446516897312358,-0.6528243361037173,-0.23755834917855342,0.2524163342605378,-0.038347587490720265,-0.7108928430043517,0.9038414780407968,-0.05119142378721205],[0.707401630161858,0.9339535553757453,-0.49991001592692713,0.16587108381135918,0.15448607709963585,0.03442425225035183,-0.4095418442639792,-0.5231470242688981,-0.4226604053921777,0.0678157020536153,-0.4555474321564769,0.908380138594704,0.6069720583370096,-1.013041699254259,0.6505355582171931,-0.4367446458285671,-0.26726364980247513,-0.561317816441289,0.13893832659160466,-0.4050053164756734,-0.26704180602075783,-0.9631113330049309,0.047719521350736004,0.567787938982937,-0.2877828881815726,-0.6315838204492789,0.7358025289334764,-0.7990549377948368,1.7506722481137256,-1.2623940153159736,0.4469268828741547,-0.9229821312402681,0.41690722470289515,-0.21265908888022791,0.7714903923259587,-0.6516159777233462,-0.0465663301655763,0.24469008450054772],[-0.7973793772509828,-0.7305914737708312,-0.719470782853228,-0.5718970548942194,0.08155766365130122,0.09353943505807193,-0.17339255678911059,0.45305521103519664,0.7710013395006711,-0.27180070597932304,0.7051844794487335,-0.8343328960108116,-0.31139215456732405,-0.3482608802538248,0.3906572969966733,0.6255922764771682,0.21830608094228832,-0.6415949973702699,-0.4631398609767731,-0.054042983181334374,0.5281436520203066,-0.9404753970332669,-0.46529995673550517,-0.8802937379304255,0.2586624496002702,0.745571432336024,0.22771823456235843,0.1310318898263092,-1.1619275737968993,2.632014168120195,-0.7636424688422229,-0.11594652894325122,0.13502519992020937,0.4522485389088854,0.18232798580419265,-0.5225342619064766,0.7611724922816675,0.36525774707852127],[0.18405220420962462,-0.6698669654098213,-0.10446662029761337,-0.22005762182914076,-0.004599696975705418,-0.8186503960095383,0.3491200180857325,0.6805170404293953,-0.5462290507095032,0.13480737210606478,-0.04076821622175216,-0.4056635184371126,0.7716295306313773,-0.7754563370659966,-0.20838024816682651,0.17936749086740544,0.521992864654584,-0.35486054926233906,-0.8136884534749886,-0.12237746074119527,0.005360253529113335,-0.07308046324891965,0.4082125048190827,0.7765915865089612,0.0961961775333375,-0.7052727566132783,0.5550238315210816,-0.4665273711059321,0.29023910097839295,1.8411828919781827,0.3973480992366724,-0.2440861999950906,-0.13985468389293887,0.45367529272825335,0.44424221216352433,-0.9610082976793228,-0.21781185886914722,-1.0281163497477814],[0.36095566349390384,0.14476575734187005,0.34700478615041325,0.048017382536485596,-0.3824642630635428,0.14693471480895434,0.9318848116123534,-0.9408724906194055,0.5653040997874786,-0.7020486139106312,-0.33662018894711737,0.742221167992664,-0.6214072964440559,0.175804995427445,-0.01584175245707959,-0.39752284262912185,-0.6995344747641741,-0.02631220770325139,-0.15146891674263177,-0.44065037250714256,0.6767933077048506,-0.9012848476652137,-0.44216509288781025,-0.49277143989514477,0.20583210533585397,0.49165513510079745,-0.9059546277327538,0.44370377802204547,-0.011459222155136617,0.9222654524209888,-0.38858718023955746,0.7491713600769044,0.3572461427680001,0.35887767922961117,0.6156317717431281,-0.6966335094479128,0.7562388872311859,0.17390382395501391],[-0.013899832631158675,0.5628904045077149,-0.042017144380218786,-0.9906277271571869,0.8168426858595651,0.3158979791350824,-0.5325822666826134,0.3698442203734517,-1.0046511734116375,0.3993917753915457,-0.1945704173380336,-0.1722239197256127,-0.10920830037979817,-0.40545856106155576,-0.27830159215355604,-0.6290434727616494,0.4005197036387204,-0.9907902407959007,0.8366632990589359,-0.03022685410368092,-0.7665320618402826,0.022340654484532235,-0.30609922811147183,0.1479488809913005,0.755429706354028,0.2715502702538177,0.49950352727947994,0.2663051775166039,-0.7819412216208395,0.9635567466010688,-0.8080413304291777,-0.5707286691202028,0.7209582639602561,-0.7371175122838858,-0.5596443361708046,-0.9264790116820422,-0.15807199880524564,-0.5645755401321552],[0.9091332608153503,-0.08786290230089303,-0.030701760060866234,-0.9168097373276411,-0.6322248379966903,-0.00593838454824855,-0.6718819965766124,0.6599493647589174,0.5432748338676465,0.7724295436127081,0.5423382891519151,-0.8000130273540951,-0.8573803002542395,0.5156783150325775,1.392804583015301,0.5869353931135206,-0.5812880699359363,-0.013850435624037795,0.19398940461795056,0.015456280265417642,0.7597347506029651,-0.7050456469928073,-0.6405950118812562,0.42653612248407535,-0.08814615834176795,-0.059797995057865753,-0.7208983070029977,0.029847016552015163,-0.9821779985537433,-0.7776903974661464,0.17814220358992158,-0.9057457998017387,-0.21650641898815784,0.467511840425623,0.6918552567685569,-0.6925275844519999,-0.6308339389550484,-0.09592706881442352],[0.25252911109871234,-0.8249393325767195,-0.5183282728168761,0.7650973538420268,-0.5890174942445332,-0.30399675494611894,-0.36994631903804986,-0.35388472340296456,-0.8380012336115853,0.6002557089520218,0.013849414780616106,0.26360196772982397,-0.41733881497911435,0.22656927087009965,1.0986224790487333,-0.9280743331664254,-0.11109231123681501,-0.6273529598591555,-0.7478982512108867,0.059866265377627084,-0.9835467186428912,0.134631264157596,-0.31943184322938856,-0.9008295545113717,-0.9864503277417606,0.36245984879922094,0.31924481181588477,0.07386990818254892,0.7663267367683785,-0.5173637997620549,0.2887990108944839,-0.2279098549635567,0.7913508167824546,-0.5307487920635988,0.7623894113963327,0.48474484755870967,-0.7080260876587529,0.6546941687753958],[-0.9067914340683522,0.5494765933401271,0.7394499142173595,0.5078206118123909,-0.7868839102999365,-0.12392868267028079,-0.2621167726596949,0.46524177155544666,0.20374161346101066,-0.26942756476891555,-0.334440436348439,0.030177908038596227,-0.9174540247943428,0.3646150776717066,0.9367015870894886,-0.9860024855165339,0.4155279765340262,0.5225438304612657,0.5880403631159393,-0.7306372794836619,-0.12146730719791693,-0.2899282112709342,0.738495402024135,-0.2112246504208872,-0.6090152967935044,0.8302199620440264,-0.09784486500407746,-0.21903202095930752,-0.059237189740345274,-0.1615625628421464,0.19330773178785438,-0.210016312691411,-0.6525430138112993,-0.9983425952433113,0.1067350630144399,-0.2487032794295916,0.8562330008368522,0.9763173953452492],[0.22085831386204427,0.5684898718436707,0.9002437480237053,-0.8432519310834229,0.7397969209011673,-0.5122325102203648,-0.2928360760611306,-0.28778660545475226,0.7090791710792163,0.9345353175620128,-0.951526244134997,-0.7963778559430343,-0.45005263735580614,0.38386917028686646,-0.6957408817684755,-0.8564547168615345,0.2420403401758129,-0.0747195793379366,0.636600385626331,-0.795924641734269,-0.6102627837053851,-0.7447435356557707,-0.575255064869313,0.5134242021825769,-0.9367786974631094,-0.4358627385335605,-0.6348871052543997,-0.03434892261455638,0.3846626501710627,0.6875226511668997,0.9166160272625662,-0.875629875955766,-0.6851147579097254,-0.5791863864114735,-0.286465915402702,0.1528834978389663,-0.038536507729332765,-0.6283099761133827],[0.8505100221486014,0.9619976458056045,-0.645026330042821,-0.444772520855541,0.3766372376031577,-0.517931458591514,-0.6405667757382145,0.8292421850656175,0.5852359710338207,0.4802755875348622,-0.6692479667570048,0.40053994374923096,-0.97905838934015,0.33941386035174426,0.3246015359602049,-0.26214523755290303,0.4347359268798958,0.034439955469330444,0.58985626570049,0.7285461045656461,0.2919199483749171,0.011427769735458213,-0.715360534852078,-0.01396596227788546,-0.025802328178843478,0.5901377462759763,-0.42323880861152435,-0.12788401164638485,-0.9888411000393126,-0.6540219567687579,1.9443614534100797,-0.7311162876520539,-0.6961982916958123,-0.12322216611181329,0.3852940389232319,0.4518094923549714,0.03347394096102209,-0.34807799580565724],[0.6467585119957228,0.3197009621407843,0.7052667635873152,0.17672273171284342,-0.9161526329476134,0.8430478199336287,-0.5739330213655767,-0.2167177383711176,-0.8105560707397766,0.7393721347158487,-0.03988388070920351,0.7961309425044764,-0.26195268368454566,0.3395626089414247,-0.6836195625115064,-0.6199936840112797,0.3548872697445407,0.9627675495625262,-1.1959344469826778,-0.6683091072258801,-0.22588278268815137,-0.277851376177285,0.8401461017927704,0.090304673616203,-0.36223810437799436,-0.48856886344744177,-0.3635902919896099,-0.6571455510371423,-0.8961878412604452,0.534462911638217,0.3031710470549237,2.2597435321871875,-0.9734371456490137,-0.3279628964757601,-0.6890591622768011,-0.7361777363471026,0.7680603879006618,-0.1829756231561387],[0.9751095690566933,0.5125991046936104,-0.3031051729525209,0.23627482528137217,-0.00003551785831332123,-0.7773882146100854,0.3406667473255495,0.6519519298470858,0.7881324578320852,-0.7911060351406785,-0.8169144739245541,-0.03742068515041565,0.5917044624555342,0.46443518425348884,-0.832677514613797,-0.9534174891704357,-0.16669313598886215,0.6264559219579632,0.8184545188667051,-0.5732464440125252,0.35253787759848587,-0.02357096600690579,0.2291102074975587,-0.5460057773269108,0.430060467440917,-0.23798195448811166,-0.4213094062688062,-0.8007905665825569,-0.5211955349076778,0.7978749427916897,-0.5452282243770696,-1.0249882786825721,2.479846869020417,-0.9319193281848523,-0.9938827775405747,-0.09434833979657062,-0.5202085560122142,0.658649003116879],[0.08600094494430657,-0.5094717454935392,0.5095528800599906,0.06653505330541855,-0.2326649390970797,0.5411320807559651,0.024978372447341704,0.7442910390610645,-0.1736853649291196,0.1094341803328349,-0.6244702750664038,-0.5838904303465547,-0.39952322137278895,-0.3162683716819437,0.4749736949473585,-0.26553458964196364,-0.5825731140060352,0.041142466197553865,0.3967110912052357,0.2760305579065453,0.8283939852599498,-0.7343841091117254,-1.0147990438154382,0.12907906489501764,0.4815155272951086,-0.7492645906037637,-0.45225592228826755,0.7225749208413466,-0.8885211739129409,-0.7199400805190175,-0.7492435543516915,0.4461210704871742,3.768477030283729,-0.6976349289614769,-0.12547208713907881,-0.2990068644132992,-1.0199656432924746,-1.0079446511044279],[0.2481326976181911,-0.009040905464727193,-0.41992938343157565,0.7528736585827929,0.9745737997102688,-0.5840776634186529,-0.16127315867585898,-0.4780887188798803,-0.5205406610285743,0.40492984837764767,0.4415205493194178,0.7022083698556242,-0.33806120713285726,0.014214885568181472,0.678131026102699,0.8566125270916627,0.8161690548834354,-0.1876126665860319,0.21355560372646665,-1.0443429069158487,0.07167627501309075,0.03835590102130994,-0.2557185233946793,-0.8983915946319735,0.663747929662329,-0.017933262536595867,0.35750166742229794,-0.04845865562191195,0.9031868723964743,-0.6706492905857461,-0.14846019591965232,0.9166941397561575,-1.0920584220177783,2.215011581045833,-0.4900426296463204,-0.6062051721664679,0.4751430964984298,-1.0032346589007861],[-0.9969146777199859,0.13562815270605577,-0.3463075572183946,-0.6679596899739931,-0.21946911903638203,-0.4888921442544336,0.13362249493193465,-0.39622455759509445,0.8504922359918045,-0.2537335223296303,0.7230876695051451,0.8649076780694184,-0.09707448544557332,-0.006335540049906726,0.3475884777759918,-0.8168259831934985,-0.3951172368449208,0.7251495481402103,-0.3990713897179624,-0.6934373239887426,0.3192210321855972,0.46577321080942347,-0.910002775505062,-0.2296893651183993,-0.43893623516041946,0.03170289673069176,-0.32203055559278415,-0.6019992917328582,-0.004057638792485821,-0.40859517560914616,-0.9287822176637831,0.2692094383645409,-0.495743946679921,1.8510255011899437,-0.8748639652923952,-0.8124646457909499,0.2624040906026443,-0.9711233431914352]]],"Output":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0]],"Rate":0.1,"Errors":[-0.050316248536979594,0.0061390420539023305,0.005133351028066617,0.004581401783229954,0.0042101337040130835,0.0039319605419405644,0.003710955011579369,0.0035296352793456696,0.0033777940651280353,0.003248543880369023,0.0031369187320575637,0.003039258663832922,0.0029528366057790276,0.0028755970140344153,0.002805969209561247,0.00274273507638558,0.002684935680412595,0.002631805162635531,0.002582723551263178,0.002537182691309174],"Time":3.41} diff --git a/server/serve.go b/server/serve.go index cd26ea9..95a9713 100644 --- a/server/serve.go +++ b/server/serve.go @@ -14,14 +14,17 @@ import ( var ( // Create the neural network variable to use it everywhere neuralNetwork network.Network - // Initiatizes the cache with a 5 minute lifetime + // Initializes the cache with a 5 minute lifetime cache = gocache.New(5*time.Minute, 5*time.Minute) + // Set the intents file path + intentsPath string ) // Serve serves the server in the given port -func Serve(_neuralNetwork network.Network, port string) { +func Serve(_neuralNetwork network.Network, port, _intentsPath string) { // Set the current global network as a global variable neuralNetwork = _neuralNetwork + intentsPath = _intentsPath // Initializes the router router := mux.NewRouter() diff --git a/server/websocket.go b/server/websocket.go index e24ff68..ebb89c8 100644 --- a/server/websocket.go +++ b/server/websocket.go @@ -76,7 +76,7 @@ func Reply(request RequestMessage) []byte { } else { responseTag, responseSentence = analysis.NewSentence( request.Content, - ).Calculate(*cache, neuralNetwork, request.Token) + ).Calculate(*cache, neuralNetwork, intentsPath, request.Token) } // Marshall the response in json diff --git a/training/training.go b/training/training.go index 493a81b..1fec724 100644 --- a/training/training.go +++ b/training/training.go @@ -10,8 +10,8 @@ import ( ) // TrainData returns the inputs and outputs for the neural network -func TrainData() (inputs, outputs [][]float64) { - words, classes, documents := analysis.Organize() +func TrainData(intentsPath string) (inputs, outputs [][]float64) { + words, classes, documents := analysis.Organize(intentsPath) for _, document := range documents { outputRow := make([]float64, len(classes)) @@ -30,14 +30,14 @@ func TrainData() (inputs, outputs [][]float64) { // CreateNeuralNetwork returns a new neural network which is loaded from res/training.json or // trained from TrainData() inputs and targets. -func CreateNeuralNetwork() (neuralNetwork network.Network) { +func CreateNeuralNetwork(intentsPath string) (neuralNetwork network.Network) { // Decide if the network is created by the save or is a new one saveFile := "res/training.json" _, err := os.Open(saveFile) // Train the model if there is no training file if err != nil { - inputs, outputs := TrainData() + inputs, outputs := TrainData(intentsPath) neuralNetwork = network.CreateNetwork(0.1, inputs, outputs, 50) neuralNetwork.Train(1000)