repo_id
stringclasses
927 values
file_path
stringlengths
99
214
content
stringlengths
2
4.15M
indenthandler4
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/example/slog-handler-guide/indenthandler4/indent_handler.go
//go:build go1.21 package indenthandler import ( "context" "fmt" "io" "log/slog" "runtime" "slices" "strconv" "sync" "time" ) // !+IndentHandler type IndentHandler struct { opts Options preformatted []byte // data from WithGroup and WithAttrs unopenedGroups []string // groups from WithGroup that haven't been opened indentLevel int // same as number of opened groups so far mu *sync.Mutex out io.Writer } //!-IndentHandler type Options struct { // Level reports the minimum level to log. // Levels with lower levels are discarded. // If nil, the Handler uses [slog.LevelInfo]. Level slog.Leveler } func New(out io.Writer, opts *Options) *IndentHandler { h := &IndentHandler{out: out, mu: &sync.Mutex{}} if opts != nil { h.opts = *opts } if h.opts.Level == nil { h.opts.Level = slog.LevelInfo } return h } func (h *IndentHandler) Enabled(ctx context.Context, level slog.Level) bool { return level >= h.opts.Level.Level() } // !+WithGroup func (h *IndentHandler) WithGroup(name string) slog.Handler { if name == "" { return h } h2 := *h // Add an unopened group to h2 without modifying h. h2.unopenedGroups = make([]string, len(h.unopenedGroups)+1) copy(h2.unopenedGroups, h.unopenedGroups) h2.unopenedGroups[len(h2.unopenedGroups)-1] = name return &h2 } //!-WithGroup // !+WithAttrs func (h *IndentHandler) WithAttrs(attrs []slog.Attr) slog.Handler { if len(attrs) == 0 { return h } h2 := *h // Force an append to copy the underlying array. pre := slices.Clip(h.preformatted) // Add all groups from WithGroup that haven't already been added. h2.preformatted = h2.appendUnopenedGroups(pre, h2.indentLevel) // Each of those groups increased the indent level by 1. h2.indentLevel += len(h2.unopenedGroups) // Now all groups have been opened. h2.unopenedGroups = nil // Pre-format the attributes. for _, a := range attrs { h2.preformatted = h2.appendAttr(h2.preformatted, a, h2.indentLevel) } return &h2 } func (h *IndentHandler) appendUnopenedGroups(buf []byte, indentLevel int) []byte { for _, g := range h.unopenedGroups { buf = fmt.Appendf(buf, "%*s%s:\n", indentLevel*4, "", g) indentLevel++ } return buf } //!-WithAttrs // !+Handle func (h *IndentHandler) Handle(ctx context.Context, r slog.Record) error { bufp := allocBuf() buf := *bufp defer func() { *bufp = buf freeBuf(bufp) }() if !r.Time.IsZero() { buf = h.appendAttr(buf, slog.Time(slog.TimeKey, r.Time), 0) } buf = h.appendAttr(buf, slog.Any(slog.LevelKey, r.Level), 0) if r.PC != 0 { fs := runtime.CallersFrames([]uintptr{r.PC}) f, _ := fs.Next() // Optimize to minimize allocation. srcbufp := allocBuf() defer freeBuf(srcbufp) *srcbufp = append(*srcbufp, f.File...) *srcbufp = append(*srcbufp, ':') *srcbufp = strconv.AppendInt(*srcbufp, int64(f.Line), 10) buf = h.appendAttr(buf, slog.String(slog.SourceKey, string(*srcbufp)), 0) } buf = h.appendAttr(buf, slog.String(slog.MessageKey, r.Message), 0) // Insert preformatted attributes just after built-in ones. buf = append(buf, h.preformatted...) if r.NumAttrs() > 0 { buf = h.appendUnopenedGroups(buf, h.indentLevel) r.Attrs(func(a slog.Attr) bool { buf = h.appendAttr(buf, a, h.indentLevel+len(h.unopenedGroups)) return true }) } buf = append(buf, "---\n"...) h.mu.Lock() defer h.mu.Unlock() _, err := h.out.Write(buf) return err } //!-Handle func (h *IndentHandler) appendAttr(buf []byte, a slog.Attr, indentLevel int) []byte { // Resolve the Attr's value before doing anything else. a.Value = a.Value.Resolve() // Ignore empty Attrs. if a.Equal(slog.Attr{}) { return buf } // Indent 4 spaces per level. buf = fmt.Appendf(buf, "%*s", indentLevel*4, "") switch a.Value.Kind() { case slog.KindString: // Quote string values, to make them easy to parse. buf = append(buf, a.Key...) buf = append(buf, ": "...) buf = strconv.AppendQuote(buf, a.Value.String()) buf = append(buf, '\n') case slog.KindTime: // Write times in a standard way, without the monotonic time. buf = append(buf, a.Key...) buf = append(buf, ": "...) buf = a.Value.Time().AppendFormat(buf, time.RFC3339Nano) buf = append(buf, '\n') case slog.KindGroup: attrs := a.Value.Group() // Ignore empty groups. if len(attrs) == 0 { return buf } // If the key is non-empty, write it out and indent the rest of the attrs. // Otherwise, inline the attrs. if a.Key != "" { buf = fmt.Appendf(buf, "%s:\n", a.Key) indentLevel++ } for _, ga := range attrs { buf = h.appendAttr(buf, ga, indentLevel) } default: buf = append(buf, a.Key...) buf = append(buf, ": "...) buf = append(buf, a.Value.String()...) buf = append(buf, '\n') } return buf } // !+pool var bufPool = sync.Pool{ New: func() any { b := make([]byte, 0, 1024) return &b }, } func allocBuf() *[]byte { return bufPool.Get().(*[]byte) } func freeBuf(b *[]byte) { // To reduce peak allocation, return only smaller buffers to the pool. const maxBufferSize = 16 << 10 if cap(*b) <= maxBufferSize { *b = (*b)[:0] bufPool.Put(b) } } //!-pool
indenthandler1
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/example/slog-handler-guide/indenthandler1/indent_handler_test.go
//go:build go1.21 package indenthandler import ( "bytes" "regexp" "testing" "log/slog" ) func Test(t *testing.T) { var buf bytes.Buffer l := slog.New(New(&buf, nil)) l.Info("hello", "a", 1, "b", true, "c", 3.14, slog.Group("g", "h", 1, "i", 2), "d", "NO") got := buf.String() wantre := `time: [-0-9T:.]+Z? level: INFO source: ".*/indent_handler_test.go:\d+" msg: "hello" a: 1 b: true c: 3.14 g: h: 1 i: 2 d: "NO" ` re := regexp.MustCompile(wantre) if !re.MatchString(got) { t.Errorf("\ngot:\n%q\nwant:\n%q", got, wantre) } buf.Reset() l.Debug("test") if got := buf.Len(); got != 0 { t.Errorf("got buf.Len() = %d, want 0", got) } }
indenthandler1
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/example/slog-handler-guide/indenthandler1/indent_handler.go
//go:build go1.21 package indenthandler import ( "context" "fmt" "io" "log/slog" "runtime" "sync" "time" ) // !+types type IndentHandler struct { opts Options // TODO: state for WithGroup and WithAttrs mu *sync.Mutex out io.Writer } type Options struct { // Level reports the minimum level to log. // Levels with lower levels are discarded. // If nil, the Handler uses [slog.LevelInfo]. Level slog.Leveler } func New(out io.Writer, opts *Options) *IndentHandler { h := &IndentHandler{out: out, mu: &sync.Mutex{}} if opts != nil { h.opts = *opts } if h.opts.Level == nil { h.opts.Level = slog.LevelInfo } return h } //!-types // !+enabled func (h *IndentHandler) Enabled(ctx context.Context, level slog.Level) bool { return level >= h.opts.Level.Level() } //!-enabled func (h *IndentHandler) WithGroup(name string) slog.Handler { // TODO: implement. return h } func (h *IndentHandler) WithAttrs(attrs []slog.Attr) slog.Handler { // TODO: implement. return h } // !+handle func (h *IndentHandler) Handle(ctx context.Context, r slog.Record) error { buf := make([]byte, 0, 1024) if !r.Time.IsZero() { buf = h.appendAttr(buf, slog.Time(slog.TimeKey, r.Time), 0) } buf = h.appendAttr(buf, slog.Any(slog.LevelKey, r.Level), 0) if r.PC != 0 { fs := runtime.CallersFrames([]uintptr{r.PC}) f, _ := fs.Next() buf = h.appendAttr(buf, slog.String(slog.SourceKey, fmt.Sprintf("%s:%d", f.File, f.Line)), 0) } buf = h.appendAttr(buf, slog.String(slog.MessageKey, r.Message), 0) indentLevel := 0 // TODO: output the Attrs and groups from WithAttrs and WithGroup. r.Attrs(func(a slog.Attr) bool { buf = h.appendAttr(buf, a, indentLevel) return true }) buf = append(buf, "---\n"...) h.mu.Lock() defer h.mu.Unlock() _, err := h.out.Write(buf) return err } //!-handle // !+appendAttr func (h *IndentHandler) appendAttr(buf []byte, a slog.Attr, indentLevel int) []byte { // Resolve the Attr's value before doing anything else. a.Value = a.Value.Resolve() // Ignore empty Attrs. if a.Equal(slog.Attr{}) { return buf } // Indent 4 spaces per level. buf = fmt.Appendf(buf, "%*s", indentLevel*4, "") switch a.Value.Kind() { case slog.KindString: // Quote string values, to make them easy to parse. buf = fmt.Appendf(buf, "%s: %q\n", a.Key, a.Value.String()) case slog.KindTime: // Write times in a standard way, without the monotonic time. buf = fmt.Appendf(buf, "%s: %s\n", a.Key, a.Value.Time().Format(time.RFC3339Nano)) case slog.KindGroup: attrs := a.Value.Group() // Ignore empty groups. if len(attrs) == 0 { return buf } // If the key is non-empty, write it out and indent the rest of the attrs. // Otherwise, inline the attrs. if a.Key != "" { buf = fmt.Appendf(buf, "%s:\n", a.Key) indentLevel++ } for _, ga := range attrs { buf = h.appendAttr(buf, ga, indentLevel) } default: buf = fmt.Appendf(buf, "%s: %s\n", a.Key, a.Value) } return buf } //!-appendAttr
hello
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/example/hello/hello.go
// Copyright 2023 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Hello is a hello, world program, demonstrating // how to write a simple command-line program. // // Usage: // // hello [options] [name] // // The options are: // // -g greeting // Greet with the given greeting, instead of "Hello". // // -r // Greet in reverse. // // By default, hello greets the world. // If a name is specified, hello greets that name instead. package main import ( "flag" "fmt" "log" "os" "golang.org/x/example/hello/reverse" ) func usage() { fmt.Fprintf(os.Stderr, "usage: hello [options] [name]\n") flag.PrintDefaults() os.Exit(2) } var ( greeting = flag.String("g", "Hello", "Greet with `greeting`") reverseFlag = flag.Bool("r", false, "Greet in reverse") ) func main() { // Configure logging for a command-line program. log.SetFlags(0) log.SetPrefix("hello: ") // Parse flags. flag.Usage = usage flag.Parse() // Parse and validate arguments. name := "world" args := flag.Args() if len(args) >= 2 { usage() } if len(args) >= 1 { name = args[0] } if name == "" { // hello '' is an error log.Fatalf("invalid name %q", name) } // Run actual logic. if *reverseFlag { fmt.Printf("%s, %s!\n", reverse.String(*greeting), reverse.String(name)) return } fmt.Printf("%s, %s!\n", *greeting, name) }
hello
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/example/hello/go.mod
module golang.org/x/example/hello go 1.19
reverse
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/example/hello/reverse/reverse_test.go
// Copyright 2023 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package reverse import "testing" func TestString(t *testing.T) { for _, c := range []struct { in, want string }{ {"Hello, world", "dlrow ,olleH"}, {"Hello, 世界", "界世 ,olleH"}, {"", ""}, } { got := String(c.in) if got != c.want { t.Errorf("String(%q) == %q, want %q", c.in, got, c.want) } } }
reverse
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/example/hello/reverse/reverse.go
// Copyright 2023 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package reverse can reverse things, particularly strings. package reverse // String returns its argument string reversed rune-wise left to right. func String(s string) string { r := []rune(s) for i, j := 0, len(r)-1; i < len(r)/2; i, j = i+1, j-1 { r[i], r[j] = r[j], r[i] } return string(r) }
reverse
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/example/hello/reverse/example_test.go
// Copyright 2023 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package reverse_test import ( "fmt" "golang.org/x/example/hello/reverse" ) func ExampleString() { fmt.Println(reverse.String("hello")) // Output: olleh }
weave
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/example/internal/cmd/weave/weave.go
// The weave command is a simple preprocessor for markdown files. // It builds a table of contents and processes %include directives. // // Example usage: // // $ go run internal/cmd/weave go-types.md > README.md // // The weave command copies lines of the input file to standard output, with two // exceptions: // // If a line begins with "%toc", it is replaced with a table of contents // consisting of links to the top two levels of headers ("#" and "##"). // // If a line begins with "%include FILENAME TAG", it is replaced with the lines // of the file between lines containing "!+TAG" and "!-TAG". TAG can be omitted, // in which case the delimiters are simply "!+" and "!-". // // Before the included lines, a line of the form // // // go get PACKAGE // // is output, where PACKAGE is constructed from the module path, the // base name of the current directory, and the directory of FILENAME. // This caption can be supressed by putting "-" as the final word of the %include line. package main import ( "bufio" "bytes" "fmt" "log" "os" "path/filepath" "regexp" "strings" ) func main() { log.SetFlags(0) log.SetPrefix("weave: ") if len(os.Args) != 2 { log.Fatal("usage: weave input.md\n") } f, err := os.Open(os.Args[1]) if err != nil { log.Fatal(err) } defer f.Close() wd, err := os.Getwd() if err != nil { log.Fatal(err) } curDir := filepath.Base(wd) fmt.Println("<!-- Autogenerated by weave; DO NOT EDIT -->") // Pass 1: extract table of contents. var toc []string in := bufio.NewScanner(f) for in.Scan() { line := in.Text() if line == "" || (line[0] != '#' && line[0] != '%') { continue } line = strings.TrimSpace(line) if line == "%toc" { toc = nil } else if strings.HasPrefix(line, "# ") || strings.HasPrefix(line, "## ") { words := strings.Fields(line) depth := len(words[0]) words = words[1:] text := strings.Join(words, " ") for i := range words { words[i] = strings.ToLower(words[i]) } line = fmt.Sprintf("%s1. [%s](#%s)", strings.Repeat("\t", depth-1), text, strings.Join(words, "-")) toc = append(toc, line) } } if in.Err() != nil { log.Fatal(in.Err()) } // Pass 2. if _, err := f.Seek(0, os.SEEK_SET); err != nil { log.Fatalf("can't rewind input: %v", err) } in = bufio.NewScanner(f) for in.Scan() { line := in.Text() switch { case strings.HasPrefix(line, "%toc"): // ToC for _, h := range toc { fmt.Println(h) } case strings.HasPrefix(line, "%include"): words := strings.Fields(line) if len(words) < 2 { log.Fatal(line) } filename := words[1] // Show caption unless '-' follows. if len(words) < 4 || words[3] != "-" { fmt.Printf(" // go get golang.org/x/example/%s/%s\n\n", curDir, filepath.Dir(filename)) } section := "" if len(words) > 2 { section = words[2] } s, err := include(filename, section) if err != nil { log.Fatal(err) } fmt.Println("```") fmt.Println(cleanListing(s)) // TODO(adonovan): escape /^```/ in s fmt.Println("```") default: fmt.Println(line) } } if in.Err() != nil { log.Fatal(in.Err()) } } // include processes an included file, and returns the included text. // Only lines between those matching !+tag and !-tag will be returned. // This is true even if tag=="". func include(file, tag string) (string, error) { f, err := os.Open(file) if err != nil { return "", err } defer f.Close() startre, err := regexp.Compile("!\\+" + tag + "$") if err != nil { return "", err } endre, err := regexp.Compile("!\\-" + tag + "$") if err != nil { return "", err } var text bytes.Buffer in := bufio.NewScanner(f) var on bool for in.Scan() { line := in.Text() switch { case startre.MatchString(line): on = true case endre.MatchString(line): on = false case on: text.WriteByte('\t') text.WriteString(line) text.WriteByte('\n') } } if in.Err() != nil { return "", in.Err() } if text.Len() == 0 { return "", fmt.Errorf("no lines of %s matched tag %q", file, tag) } return text.String(), nil } func isBlank(line string) bool { return strings.TrimSpace(line) == "" } func indented(line string) bool { return strings.HasPrefix(line, " ") || strings.HasPrefix(line, "\t") } // cleanListing removes entirely blank leading and trailing lines from // text, and removes n leading tabs. func cleanListing(text string) string { lines := strings.Split(text, "\n") // remove minimum number of leading tabs from all non-blank lines tabs := 999 for i, line := range lines { if strings.TrimSpace(line) == "" { lines[i] = "" } else { if n := leadingTabs(line); n < tabs { tabs = n } } } for i, line := range lines { if line != "" { line := line[tabs:] lines[i] = line // remove leading tabs } } // remove leading blank lines for len(lines) > 0 && lines[0] == "" { lines = lines[1:] } // remove trailing blank lines for len(lines) > 0 && lines[len(lines)-1] == "" { lines = lines[:len(lines)-1] } return strings.Join(lines, "\n") } func leadingTabs(s string) int { var i int for i = 0; i < len(s); i++ { if s[i] != '\t' { break } } return i }
template
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/example/template/index.tmpl
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>{{.Title}}</title> <style> body { font-family: sans-serif; } h1 { background: #ddd; } #sidebar { float: right; } </style> </head> <body> <h1>{{.Title}}</h1> <div id="sidebar"> {{block "sidebar" .}} <h2>Links</h2> {{/* The dashes in the following template directives ensure the generated HTML of this list contains no extraneous spaces or line breaks. */}} <ul> {{- range .Links}} <li><a href="{{.URL}}">{{.Title}}</a></li> {{- end}} </ul> {{end}} </div> {{block "content" .}} <div id="content"> {{.Body}} </div> {{end}} </body> </html>
template
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/example/template/image.tmpl
{{define "content"}} <div id="image"> <img src="{{.URL}}" title="{{.Title}}" alt="{{.Title}}"> </div> {{end}} {{define "sidebar"}} <a href="/">Back</a> {{end}}
template
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/example/template/main.go
// Copyright 2023 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Template is a trivial web server that uses the text/template (and // html/template) package's "block" feature to implement a kind of template // inheritance. // // It should be executed from the directory in which the source resides, // as it will look for its template files in the current directory. package main import ( "html/template" "log" "net/http" "strings" ) func main() { http.HandleFunc("/", indexHandler) http.HandleFunc("/image/", imageHandler) log.Fatal(http.ListenAndServe("localhost:8080", nil)) } // indexTemplate is the main site template. // The default template includes two template blocks ("sidebar" and "content") // that may be replaced in templates derived from this one. var indexTemplate = template.Must(template.ParseFiles("index.tmpl")) // Index is a data structure used to populate an indexTemplate. type Index struct { Title string Body string Links []Link } type Link struct { URL, Title string } // indexHandler is an HTTP handler that serves the index page. func indexHandler(w http.ResponseWriter, r *http.Request) { data := &Index{ Title: "Image gallery", Body: "Welcome to the image gallery.", } for name, img := range images { data.Links = append(data.Links, Link{ URL: "/image/" + name, Title: img.Title, }) } if err := indexTemplate.Execute(w, data); err != nil { log.Println(err) } } // imageTemplate is a clone of indexTemplate that provides // alternate "sidebar" and "content" templates. var imageTemplate = template.Must(template.Must(indexTemplate.Clone()).ParseFiles("image.tmpl")) // Image is a data structure used to populate an imageTemplate. type Image struct { Title string URL string } // imageHandler is an HTTP handler that serves the image pages. func imageHandler(w http.ResponseWriter, r *http.Request) { data, ok := images[strings.TrimPrefix(r.URL.Path, "/image/")] if !ok { http.NotFound(w, r) return } if err := imageTemplate.Execute(w, data); err != nil { log.Println(err) } } // images specifies the site content: a collection of images. var images = map[string]*Image{ "go": {"The Go Gopher", "https://golang.org/doc/gopher/frontpage.png"}, "google": {"The Google Logo", "https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png"}, }
helloserver
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/example/helloserver/go.mod
module golang.org/x/example/helloserver go 1.19
helloserver
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/example/helloserver/server.go
// Copyright 2023 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Hello is a simple hello, world demonstration web server. // // It serves version information on /version and answers // any other request like /name by saying "Hello, name!". // // See golang.org/x/example/outyet for a more sophisticated server. package main import ( "flag" "fmt" "html" "log" "net/http" "os" "runtime/debug" "strings" ) func usage() { fmt.Fprintf(os.Stderr, "usage: helloserver [options]\n") flag.PrintDefaults() os.Exit(2) } var ( greeting = flag.String("g", "Hello", "Greet with `greeting`") addr = flag.String("addr", "localhost:8080", "address to serve") ) func main() { // Parse flags. flag.Usage = usage flag.Parse() // Parse and validate arguments (none). args := flag.Args() if len(args) != 0 { usage() } // Register handlers. // All requests not otherwise mapped with go to greet. // /version is mapped specifically to version. http.HandleFunc("/", greet) http.HandleFunc("/version", version) log.Printf("serving http://%s\n", *addr) log.Fatal(http.ListenAndServe(*addr, nil)) } func version(w http.ResponseWriter, r *http.Request) { info, ok := debug.ReadBuildInfo() if !ok { http.Error(w, "no build information available", 500) return } fmt.Fprintf(w, "<!DOCTYPE html>\n<pre>\n") fmt.Fprintf(w, "%s\n", html.EscapeString(info.String())) } func greet(w http.ResponseWriter, r *http.Request) { name := strings.Trim(r.URL.Path, "/") if name == "" { name = "Gopher" } fmt.Fprintf(w, "<!DOCTYPE html>\n") fmt.Fprintf(w, "%s, %s!\n", *greeting, html.EscapeString(name)) }
oscar
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/CONTRIBUTING.md
# Contributing to Go Go is an open source project. It is the work of hundreds of contributors. We appreciate your help! ## Filing issues When [filing an issue](https://golang.org/issue/new), make sure to answer these five questions: 1. What version of Go are you using (`go version`)? 2. What operating system and processor architecture are you using? 3. What did you do? 4. What did you expect to see? 5. What did you see instead? General questions should go to the [golang-nuts mailing list](https://groups.google.com/group/golang-nuts) instead of the issue tracker. The gophers there will answer or ask you to file an issue if you've tripped over a bug. ## Contributing code Please read the [Contribution Guidelines](https://golang.org/doc/contribute.html) before sending patches. Unless otherwise noted, the Go source files are distributed under the BSD-style license found in the LICENSE file.
oscar
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/PATENTS
Additional IP Rights Grant (Patents) "This implementation" means the copyrightable works distributed by Google as part of the Go project. Google hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, transfer and otherwise run, modify and propagate the contents of this implementation of Go, where such license applies only to those patent claims, both currently owned or controlled by Google and acquired in the future, licensable by Google that are necessarily infringed by this implementation of Go. This grant does not include claims that would be infringed only as a consequence of further modification of this implementation. If you or your agent or exclusive licensee institute or order or agree to the institution of patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that this implementation of Go or any code incorporated within this implementation of Go constitutes direct or contributory patent infringement, or inducement of patent infringement, then any patent rights granted to you under this License for this implementation of Go shall terminate as of the date such litigation is filed.
oscar
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/go.mod
module golang.org/x/oscar go 1.23 require ( github.com/cockroachdb/pebble v1.1.1 github.com/google/generative-ai-go v0.16.0 golang.org/x/tools v0.23.0 google.golang.org/api v0.186.0 rsc.io/markdown v0.0.0-20240617154923-1f2ef1438fed rsc.io/omap v1.2.1-0.20240709133045-40dad5c0c0fb rsc.io/ordered v1.1.0 rsc.io/top v1.0.2 ) require ( cloud.google.com/go v0.115.0 // indirect cloud.google.com/go/ai v0.8.0 // indirect cloud.google.com/go/auth v0.6.0 // indirect cloud.google.com/go/auth/oauth2adapt v0.2.2 // indirect cloud.google.com/go/compute/metadata v0.3.0 // indirect cloud.google.com/go/longrunning v0.5.7 // indirect github.com/DataDog/zstd v1.4.5 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cespare/xxhash/v2 v2.2.0 // indirect github.com/cockroachdb/errors v1.11.3 // indirect github.com/cockroachdb/fifo v0.0.0-20240606204812-0bbfbd93a7ce // indirect github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b // indirect github.com/cockroachdb/redact v1.1.5 // indirect github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06 // indirect github.com/felixge/httpsnoop v1.0.4 // indirect github.com/getsentry/sentry-go v0.27.0 // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect github.com/gogo/protobuf v1.3.2 // indirect github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect github.com/golang/protobuf v1.5.4 // indirect github.com/golang/snappy v0.0.4 // indirect github.com/google/s2a-go v0.1.7 // indirect github.com/google/uuid v1.6.0 // indirect github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect github.com/googleapis/gax-go/v2 v2.12.5 // indirect github.com/klauspost/compress v1.16.0 // indirect github.com/kr/pretty v0.3.1 // indirect github.com/kr/text v0.2.0 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect github.com/pkg/errors v0.9.1 // indirect github.com/prometheus/client_golang v1.12.0 // indirect github.com/prometheus/client_model v0.2.1-0.20210607210712-147c58e9608a // indirect github.com/prometheus/common v0.32.1 // indirect github.com/prometheus/procfs v0.7.3 // indirect github.com/rogpeppe/go-internal v1.9.0 // indirect go.opencensus.io v0.24.0 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.51.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.51.0 // indirect go.opentelemetry.io/otel v1.26.0 // indirect go.opentelemetry.io/otel/metric v1.26.0 // indirect go.opentelemetry.io/otel/trace v1.26.0 // indirect golang.org/x/crypto v0.25.0 // indirect golang.org/x/exp v0.0.0-20230626212559-97b1e661b5df // indirect golang.org/x/net v0.27.0 // indirect golang.org/x/oauth2 v0.21.0 // indirect golang.org/x/sync v0.7.0 // indirect golang.org/x/sys v0.22.0 // indirect golang.org/x/text v0.16.0 // indirect golang.org/x/time v0.5.0 // indirect google.golang.org/genproto/googleapis/api v0.0.0-20240617180043-68d350f18fd4 // indirect google.golang.org/genproto/googleapis/rpc v0.0.0-20240617180043-68d350f18fd4 // indirect google.golang.org/grpc v1.64.0 // indirect google.golang.org/protobuf v1.34.2 // indirect )
oscar
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/README.md
# Oscar, an open-source contributor agent architecture Oscar is a project aiming to improve open-source software development by creating automated help, or “agents,” for open-source maintenance. We believe there are many opportunities to reduce the amount of toil involved with maintaining open-source projects both large and small. The ability of large language models (LLMs) to do semantic analysis of natural language (such as issue reports or maintainer instructions) and to convert between natural language instructions and program code creates new opportunities for agents to interact more smoothly with people. LLMs will likely end up being only a small (but critical!) part of the picture; the bulk of an agent's actions will be executing standard, deterministic code. Oscar differs from many development-focused uses of LLMs by not trying to augment or displace the code writing process at all. After all, writing code is the fun part of writing software. Instead, the idea is to focus on the not-fun parts, like processing incoming issues, matching questions to existing documentation, and so on. Oscar is very much an experiment. We don't know yet where it will go or what we will learn. Even so, our first prototype, the [@gabyhelp](https://github.com/gabyhelp) bot, has already had many [successful interactions in the Go issue tracker](https://github.com/golang/go/issues?q=label%3Agabywins). For now, Oscar is being developed under the auspices of the Go project. At some point in the future it may (or may not) be spun out into a separate project. The rest of this README explains Oscar in more detail. ## Goals The concrete goals for the Oscar project are: - Reduce maintainer effort to resolve issues [note that resolve does not always mean fix] - Reduce maintainer effort to resolve change lists (CLs) or pull requests (PRs) [note that resolve does not always mean submit/merge] - Reduce maintainer effort to resolve forum questions - Enable more people to become productive maintainers It is a non-goal to automate away coding. Instead we are focused on automating away maintainer toil. ## Approach Maintainer toil is not unique to the Go project, so we are aiming to build an architecture that any software project can reuse and extend, building their own agents customized to their project's needs. Hence Oscar: _open-source contributor agent architecture_. Exactly what that will mean is still something we are exploring. So far, we have identified three capabilities that will be an important part of Oscar: 1. Indexing and surfacing related project context during contributor interactions. 2. Using natural language to control deterministic tools. 3. Analyzing issue reports and CLs/PRs, to help improve them in real time during or shortly after submission, and to label and route them appropriately. It should make sense that LLMs have something to offer here, because open-source maintenance is fundamentally about interacting with people using natural language, and natural language is what LLMs are best at. So it's not surprising that all of these have an LLM-related component. On the other hand, all of these are also backed by significant amounts of deterministic code. Our approach is to use LLMs for what they're good at—semantic analysis of natural language and translation from natural language into programs—and rely on deterministic code to do the rest. The following sections look at each of those three important capabilities in turn. Note that we are still experimenting, and we expect to identify additional important capabilities as time goes on. ### Indexing and surfacing related project context Software projects are complex beasts. Only at the very beginning can a maintainer expect to keep all the important details and context in their head, and even when that's possible, those being in one person's head does not help when a new contributor arrives with a bug report, a feature request, or a question. To address this, maintainers write design documentation, API references, FAQs, manual pages, blog posts, and so on. Now, instead of providing context directly, a maintainer can provide links to written context that already exists. Serving as a project search engine is still not the best use of the maintainer's time. Once a project grows even to modest size, any single maintainer cannot keep track of all the context that might be relevant, making it even harder to serve as a project search engine. On the other hand, LLMs turn out to be a great platform for building a project search engine. LLMs can analyze documents and produce _embeddings_, which are high-dimensional (for example, 768-dimensional) floating point unit vectors with the property that documents with similar semantic meaning are mapped to vectors that point in similar directions. (For more about embeddings, see [this blog post](https://cloud.google.com/blog/topics/developers-practitioners/meet-ais-multitool-vector-embeddings).) Combined with a vector database to retrieve vectors similar to an input vector, LLM embeddings provide a very effective way to index all of an open-source project's context, including documentation, issue reports, and CLs/PRs, and forum discussions. When a new issue report arrives, an agent can use the LLM-based project context index to identify highly related context, such as similar previous issues or relevant project documentation. Our prototype agent implements this functionality and replies to new issues in the Go repository with a list of at most ten highly related links that add context to the report. (If the agent cannot find anything that looks related enough, it stays quiet and does not reply at all.) In the first few weeks we ran the agent, we identified the following benefits of such an agent: 1. **The agent surfaces related context to contributors.** It is common for new issue reports to duplicate existing issue reports: a new bug might be reported multiple times in a short time window, or a non-bug might be reported every few months. When an agent replies with a link to a duplicate report, the contributor can close their new report and then watch that earlier issue. When an agent replies with a link to a report that looks like a duplicate but is not, the contributor can provide added context to distinguish their report from the earlier one. For example, in [golang/go#68196](https://github.com/golang/go/issues/68196), after the agent replied with a near duplicate, the original reporter commented: > Good bot :). Based on the discussion in this issue, I understand that > it might not be possible to do what's being suggested here. > If that's the case I'd still suggest to leave the issue open for a bit > to see how many Go users care about this problem. As another example, on [golang/go#67986](https://github.com/golang/go/issues/67986), after the agent replied with an exact duplicate, the original reporter commented: > Drats, I spent quite a bit of time searching existing issues. Not sure how I missed [that one]. 2. **The agent surfaces related context even to project maintainers.** Once a project reaches even modest size, no one person can remember all the context, not even a highly dedicated project maintainer. When an agent replies with a link to a related report, that eliminates the time the maintainer must spend to find it. If the maintainer has forgotten the related report entirely, or never saw it in the first place (perhaps it was handled by someone else), the reply is even more helpful, because it can point the maintainer in the right direction and save them the effort of repeating the analysis done in the earlier issue. For example, in [golang/go#68183](https://github.com/golang/go/issues/68183), a project maintainer filed a bug against the Go compiler for mishandling certain malformed identifiers. The agent replied with a link to a similar report of the same bug, filed almost four years earlier but triaged to low priority. The added context allowed closing the earlier bug and provided an argument for raising the priority of the new bug. As another example, in [golang/go#67938](https://github.com/golang/go/issues/67938), a project maintainer filed a bug against the Go coverage tool for causing the compiler to report incorrect sub-line position information. The agent replied with an earlier related issue (incorrect line numbers) from a decade earlier as well as a more recent issue about coverage not reporting sub-line position information at all. The first bug was important context, and the second bug's “fix” was the root cause of the bug in the new report: the sub-line position information added then was not added correctly. Those links pinpointed the exact code where the bug was. Once that was identified, it was also easy to determine the fix. 3. **The agent interacts with bug reporters immediately.** In all of the previous examples, the fact that the agent replied only a minute or two after the report was filed meant that the reporter was still available and engaged enough to respond in a meaningful way: adding details to clarify the suggestion, closing the report as a duplicate, raising bug priority based on past reports, or identifying a fix. In contrast, if hours or days (or more) go by after the initial report, the original reporter may no longer be available, interested, or able to provide context or additional details. Immediately after the bug report is the best time to engage the reporter and refine the report. Maintainers cannot be expected to be engaged in this work all the time, but an agent can. Finally, note that surfacing project context is extensible, so that projects can incorporate their context no matter what form it takes. Our prototype's context sources are tailored to the Go project, reading issues from GitHub, documentation from [go.dev](https://go.dev), and (soon) code reviews from Gerrit, but the architecture makes it easy to add additional sources. ### Using natural language to control deterministic tools The second important agent capability is using natural language to control deterministic tooling. As open-source projects grow, the number of helpful tools increases, and it can be difficult to keep track of all of them and remember how to use each one. For example, our prototype includes a general facility for editing GitHub issue comments to add or fix links. We envision also adding facilities for adding labels to an issue or assigning or CC'ing people when it matches certain criteria. If a maintainer does not know this functionality exists it might be difficult to find. And even if they know it exists, perhaps they aren't familiar with the specific API and don't want to take the time to learn it. On the other hand, LLMs are very good at translating between intentions written in natural language and executable forms of those intentions such as program code or tool invocations. We have done preliminary experiments with Gemini selecting from and invoking available tools to satisfy natural language requests made by a maintainer. We don't have anything running for real yet, but it looks like a promising approach. A different approach would be to rely more heavily on LLMs, letting them edit code, issues, and so on entirely based on natural language prompts with no deterministic tools. This “magic wand” approach demands more of LLMs than they are capable of today. We believe it will be far more effective to use LLMs to convert from natural language to deterministic tool use once and then apply those deterministic tools automatically. Our approach also limits the amount of “LLM supervision” needed: a person can check that the tool invocation is correct and then rely on the tool to operate deterministically. We have not built this part of Oscar yet, but when we do, it will be extensible, so that projects can easily plug in their own tools. ### Analyzing issue reports and CLs/PRs The third important agent capability is analyzing issue reports and CLs/PRs (change lists / pull requests). Posting about related issues is a limited form of analysis, but we plan to add other kinds of semantic analysis, such as determining that an issue is primarily about performance and should have a “performance” label added. We also plan to explore whether it is possible to analyze reports well enough to identify whether more information is needed to make the report useful. For example, if a report does not include a link to a reproduction program on the [Go playground](https://go.dev/play), the agent could ask for one. And if there is such a link, the agent could make sure to inline the code into the report to make it self-contained. The agent could potentially also run a sandboxed execution tool to identify which Go releases contain the bug and even use `git bisect` to identify the commit that introduced the bug. As discussed earlier, all of these analyses and resulting interactions work much better when they happen immediately after the report is filed, when the reporter is still available and engaged. Automated agents can be on duty 24/7. We have not built this part of Oscar yet, but when we do, it too will be extensible, so that projects can easily define their own analyses customized to the reports they receive. ## Prototype Our first prototype to explore open-source contributor agents is called Gaby (for “Go AI bot”) and runs in the [Go issue tracker](https://github.com/golang/go/issues), posting as [@gabyhelp](https://github.com/gabyhelp). The source code is in [internal/gaby](internal/gaby) in this repository. The [gaby package's documentation](https://pkg.go.dev/golang.org/x/oscar/internal/gaby) explains the overall structure of the code in the repository as well. So far, Gaby indexes Go issue content from GitHub as well as Go documentation from [go.dev](https://go.dev) and replies to new issues with relevant links. We plan to add Gerrit code reviews in the near future. Gaby's structure makes it easy to run on any kind of hosting service, using any LLM, any storage layer, and any vector database. Right now, it runs on a local workstation, using Google's Gemini LLM, [Pebble](https://github.com/cockroachdb/pebble) key-value storage files, and an in-memory vector database. We plan to add support for a variety of other options, including [Ollama](https://ollama.com/) for local LLMs and [Google Cloud Firestore](https://firebase.google.com/docs/firestore) for key-value storage and vector database. Firestore in particular will make it easy to run Gaby on hosted platforms like [Cloud Run](https://cloud.google.com/run). Running on hosted platforms with their own URLs (as opposed to a local workstation) will enable subscribing to [GitHub webhooks](https://docs.github.com/en/webhooks/about-webhooks), so that Gaby can respond even more quickly to issues and also carry on conversations. Our experience with all of this will inform the eventual generalized Oscar design. There is much work left to do. ## Relationship to Gopherbot The Go project has run its own completely deterministic agent, [@gopherbot](https://github.com/gopherbot), for many years. That agent is configured by writing, reviewing, and checking in Go code in the [golang.org/x/build/cmd/gopherbot](https://pkg.go.dev/golang.org/x/build/cmd/gopherbot) package. Having the agent has been an incredible help to the Go project and is part of the inspiration for Oscar. At the same time, we are aiming for an even lighter-weight way to configure new agent behaviors: using natural language to control general behaviors. Over time, our goal is to merge @gabyhelp back into @gopherbot by re-building @gopherbot as an Oscar agent. ## Discussion and Feedback We are excited about the opportunities here, but we recognize that we may be missing important concerns as well as important opportunities to reduce open-source maintainer toil. We have created [this GitHub discussion](https://github.com/golang/go/discussions/68490) to discuss both concerns and new ideas for ways that Oscar-based agent can help improve open-source maintenance. Feedback there is much appreciated.
oscar
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/go.sum
cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU= cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU= cloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= cloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc= cloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0= cloud.google.com/go v0.50.0/go.mod h1:r9sluTvynVuxRIOHXQEHMFffphuXHOMZMycpNR5e6To= cloud.google.com/go v0.52.0/go.mod h1:pXajvRH/6o3+F9jDHZWQ5PbGhn+o8w9qiu/CffaVdO4= cloud.google.com/go v0.53.0/go.mod h1:fp/UouUEsRkN6ryDKNW/Upv/JBKnv6WDthjR6+vze6M= cloud.google.com/go v0.54.0/go.mod h1:1rq2OEkV3YMf6n/9ZvGWI3GWw0VoqH/1x2nd8Is/bPc= cloud.google.com/go v0.56.0/go.mod h1:jr7tqZxxKOVYizybht9+26Z/gUq7tiRzu+ACVAMbKVk= cloud.google.com/go v0.57.0/go.mod h1:oXiQ6Rzq3RAkkY7N6t3TcE6jE+CIBBbA36lwQ1JyzZs= cloud.google.com/go v0.62.0/go.mod h1:jmCYTdRCQuc1PHIIJ/maLInMho30T/Y0M4hTdTShOYc= cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHObY= cloud.google.com/go v0.115.0 h1:CnFSK6Xo3lDYRoBKEcAtia6VSC837/ZkJuRduSFnr14= cloud.google.com/go v0.115.0/go.mod h1:8jIM5vVgoAEoiVxQ/O4BFTfHqulPZgs/ufEzMcFMdWU= cloud.google.com/go/ai v0.8.0 h1:rXUEz8Wp2OlrM8r1bfmpF2+VKqc1VJpafE3HgzRnD/w= cloud.google.com/go/ai v0.8.0/go.mod h1:t3Dfk4cM61sytiggo2UyGsDVW3RF1qGZaUKDrZFyqkE= cloud.google.com/go/auth v0.6.0 h1:5x+d6b5zdezZ7gmLWD1m/xNjnaQ2YDhmIz/HH3doy1g= cloud.google.com/go/auth v0.6.0/go.mod h1:b4acV+jLQDyjwm4OXHYjNvRi4jvGBzHWJRtJcy+2P4g= cloud.google.com/go/auth/oauth2adapt v0.2.2 h1:+TTV8aXpjeChS9M+aTtN/TjdQnzJvmzKFt//oWu7HX4= cloud.google.com/go/auth/oauth2adapt v0.2.2/go.mod h1:wcYjgpZI9+Yu7LyYBg4pqSiaRkfEK3GQcpb7C/uyF1Q= cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE= cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc= cloud.google.com/go/bigquery v1.5.0/go.mod h1:snEHRnqQbz117VIFhE8bmtwIDY80NLUZUMb4Nv6dBIg= cloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4gLoIoXIAPc= cloud.google.com/go/bigquery v1.8.0/go.mod h1:J5hqkt3O0uAFnINi6JXValWIb1v0goeZM77hZzJN/fQ= cloud.google.com/go/compute/metadata v0.3.0 h1:Tz+eQXMEqDIKRsmY3cHTL6FVaynIjX2QxYC4trgAKZc= cloud.google.com/go/compute/metadata v0.3.0/go.mod h1:zFmK7XCadkQkj6TtorcaGlCW1hT1fIilQDwofLpJ20k= cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE= cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk= cloud.google.com/go/longrunning v0.5.7 h1:WLbHekDbjK1fVFD3ibpFFVoyizlLRl73I7YKuAKilhU= cloud.google.com/go/longrunning v0.5.7/go.mod h1:8GClkudohy1Fxm3owmBGid8W0pSgodEMwEAztp38Xng= cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I= cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw= cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA= cloud.google.com/go/pubsub v1.3.1/go.mod h1:i+ucay31+CNRpDW4Lu78I4xXG+O1r/MAHgjpRVR+TSU= cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw= cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0ZeosJ0Rtdos= cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk= cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs= cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0= dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= github.com/DataDog/zstd v1.4.5 h1:EndNeuB0l9syBZhut0wns3gV1hL8zX8LIu6ZiVHWLIQ= github.com/DataDog/zstd v1.4.5/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk541a8SKzHPHnH3zbiI+7dagKZ0cgpgrD7Fyho= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/cespare/xxhash/v2 v2.1.2/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= github.com/cockroachdb/datadriven v1.0.3-0.20230413201302-be42291fc80f h1:otljaYPt5hWxV3MUfO5dFPFiOXg9CyG5/kCfayTqsJ4= github.com/cockroachdb/datadriven v1.0.3-0.20230413201302-be42291fc80f/go.mod h1:a9RdTaap04u637JoCzcUoIcDmvwSUtcUFtT/C3kJlTU= github.com/cockroachdb/errors v1.11.3 h1:5bA+k2Y6r+oz/6Z/RFlNeVCesGARKuC6YymtcDrbC/I= github.com/cockroachdb/errors v1.11.3/go.mod h1:m4UIW4CDjx+R5cybPsNrRbreomiFqt8o1h1wUVazSd8= github.com/cockroachdb/fifo v0.0.0-20240606204812-0bbfbd93a7ce h1:giXvy4KSc/6g/esnpM7Geqxka4WSqI1SZc7sMJFd3y4= github.com/cockroachdb/fifo v0.0.0-20240606204812-0bbfbd93a7ce/go.mod h1:9/y3cnZ5GKakj/H4y9r9GTjCvAFta7KLgSHPJJYc52M= github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b h1:r6VH0faHjZeQy818SGhaone5OnYfxFR/+AzdY3sf5aE= github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b/go.mod h1:Vz9DsVWQQhf3vs21MhPMZpMGSht7O/2vFW2xusFUVOs= github.com/cockroachdb/pebble v1.1.1 h1:XnKU22oiCLy2Xn8vp1re67cXg4SAasg/WDt1NtcRFaw= github.com/cockroachdb/pebble v1.1.1/go.mod h1:4exszw1r40423ZsmkG/09AFEG83I0uDgfujJdbL6kYU= github.com/cockroachdb/redact v1.1.5 h1:u1PMllDkdFfPWaNGMyLD1+so+aq3uUItthCFqzwPJ30= github.com/cockroachdb/redact v1.1.5/go.mod h1:BVNblN9mBWFyMyqK1k3AAiSxhvhfK2oOZZ2lK+dpvRg= github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06 h1:zuQyyAKVxetITBuuhv3BI9cMrmStnpT18zmgmTxunpo= github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06/go.mod h1:7nc4anLGjupUW/PeY5qiNYsdNXj7zopG+eqsS7To5IQ= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= github.com/felixge/httpsnoop v1.0.4 h1:NFTV2Zj1bL4mc9sqWACXbQFVBBg2W3GPvqp8/ESS2Wg= github.com/felixge/httpsnoop v1.0.4/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= github.com/getsentry/sentry-go v0.27.0 h1:Pv98CIbtB3LkMWmXi4Joa5OOcwbmnX88sF5qbK3r3Ps= github.com/getsentry/sentry-go v0.27.0/go.mod h1:lc76E2QywIyW8WuBnwl8Lc4bkmQH4+w1gwTf25trprY= github.com/go-errors/errors v1.4.2 h1:J6MZopCL4uSllY1OfXM374weqZFFItUbrImctkmUxIA= github.com/go-errors/errors v1.4.2/go.mod h1:sIVyrIiJhuEF+Pj9Ebtd6P/rEYROXFi3BopGUQ5a5Og= github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= github.com/go-kit/kit v0.9.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= github.com/go-kit/log v0.1.0/go.mod h1:zbhenjAZHb184qTLMA9ZjW7ThYL0H2mk7Q6pNt4vbaY= github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A= github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= github.com/go-logr/logr v1.4.1 h1:pKouT5E8xu9zeFC39JXRDukb6JFQPXM5p5I91188VAQ= github.com/go-logr/logr v1.4.1/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= github.com/go-logr/stdr v1.2.2 h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag= github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da h1:oI5xCqsCo564l8iNU+DwB5epxmsaqB+rhGL0m5jtYqE= github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y= github.com/golang/mock v1.4.0/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= github.com/golang/mock v1.4.1/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= github.com/golang/mock v1.4.3/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= github.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71h+4= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= github.com/golang/protobuf v1.3.4/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= github.com/golang/protobuf v1.3.5/go.mod h1:6O5/vntMXwX2lRkT1hjjk0nAC1IDOTvTlVgjlRvqsdk= github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8= github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA= github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs= github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:WU3c8KckQ9AFe+yFwt9sWVRKCVIyN9cPHBJSNnbL67w= github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0= github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8= github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek= github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps= github.com/golang/snappy v0.0.4 h1:yAGX7huGHXlcLOEtBnF4w7FQwA26wojNCwOYAEhLjQM= github.com/golang/snappy v0.0.4/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/generative-ai-go v0.16.0 h1:JGUSfWtBq5oQwA5kSFjr9+TMxjIQw9BYoBpxtycrJ6k= github.com/google/generative-ai-go v0.16.0/go.mod h1:S/Fr5hvHydXHi7AvP/tbh5oqNcioQM8jsCWnmircU+E= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.4.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.3/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= github.com/google/pprof v0.0.0-20200212024743-f11f1df84d12/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= github.com/google/pprof v0.0.0-20200229191704-1ebb73c60ed3/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= github.com/google/pprof v0.0.0-20200430221834-fc25d7d30c6d/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= github.com/google/s2a-go v0.1.7 h1:60BLSyTrOV4/haCDW4zb1guZItoSq8foHCXrAnjBo/o= github.com/google/s2a-go v0.1.7/go.mod h1:50CgR4k1jNlWBu4UfS4AcfhVe1r6pdZPygJ3R8F0Qdw= github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/googleapis/enterprise-certificate-proxy v0.3.2 h1:Vie5ybvEvT75RniqhfFxPRy3Bf7vr3h0cechB90XaQs= github.com/googleapis/enterprise-certificate-proxy v0.3.2/go.mod h1:VLSiSSBs/ksPL8kq3OBOQ6WRI2QnaFynd1DCjZ62+V0= github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= github.com/googleapis/gax-go/v2 v2.12.5 h1:8gw9KZK8TiVKB6q3zHY3SBzLnrGp6HQjyfYBYGmXdxA= github.com/googleapis/gax-go/v2 v2.12.5/go.mod h1:BUDKcWo+RaKq5SC9vVYL0wLADa3VcfswbOMMRmB9H3E= github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/jpillora/backoff v1.0.0/go.mod h1:J/6gKK9jxlEcS3zixgDgUAsiuZ7yrSoa/FX5e0EB2j4= github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/json-iterator/go v1.1.11/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= github.com/klauspost/compress v1.16.0 h1:iULayQNOReoYUe+1qtKOqw9CwJv3aNQu8ivo7lw1HU4= github.com/klauspost/compress v1.16.0/go.mod h1:ntbaceVETuRiXiv4DpjP66DpAtAGkEQskQzEyD//IeE= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 h1:I0XW9+e1XWDxdcEniV4rQAIOPUGDq67JSCiRCgGCZLI= github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4= github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/pingcap/errors v0.11.4 h1:lFuQV/oaUMGcD2tqt+01ROSmJs75VG1ToEOkZIZ4nE4= github.com/pingcap/errors v0.11.4/go.mod h1:Oi8TUi2kEtXXLMJk9l1cGmz20kV3TaQ0usTwv5KuLY8= github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= github.com/prometheus/client_golang v1.7.1/go.mod h1:PY5Wy2awLA44sXw4AOSfFBetzPP4j5+D6mVACh+pe2M= github.com/prometheus/client_golang v1.11.0/go.mod h1:Z6t4BnS23TR94PD6BsDNk8yVqroYurpAkEiz0P2BEV0= github.com/prometheus/client_golang v1.12.0 h1:C+UIj/QWtmqY13Arb8kwMt5j34/0Z2iKamrJ+ryC0Gg= github.com/prometheus/client_golang v1.12.0/go.mod h1:3Z9XVyYiZYEO+YQWt3RD2R3jrbd179Rt297l4aS6nDY= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.2.1-0.20210607210712-147c58e9608a h1:CmF68hwI0XsOQ5UwlBopMi2Ow4Pbg32akc4KIVCOm+Y= github.com/prometheus/client_model v0.2.1-0.20210607210712-147c58e9608a/go.mod h1:LDGWKZIo7rky3hgvBe+caln+Dr3dPggB5dvjtD7w9+w= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= github.com/prometheus/common v0.32.1 h1:hWIdL3N2HoUx3B8j3YN9mWor0qhY/NlEKZEaXxuIRh4= github.com/prometheus/common v0.32.1/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/prometheus/procfs v0.1.3/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= github.com/prometheus/procfs v0.7.3 h1:4jVXhlkAyzOScmCkXBTOLRLTz8EeU+eyjrwB/EPq0VU= github.com/prometheus/procfs v0.7.3/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8= github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg= github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.6.0 h1:boZcn2GTjpsynOsC0iJHnBWa4Bi0qzfJjthwauItG68= github.com/yuin/goldmark v1.6.0/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.51.0 h1:A3SayB3rNyt+1S6qpI9mHPkeHTZbD7XILEqWnYZb2l0= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.51.0/go.mod h1:27iA5uvhuRNmalO+iEUdVn5ZMj2qy10Mm+XRIpRmyuU= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.51.0 h1:Xs2Ncz0gNihqu9iosIZ5SkBbWo5T8JhhLJFMQL1qmLI= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.51.0/go.mod h1:vy+2G/6NvVMpwGX/NyLqcC41fxepnuKHk16E6IZUcJc= go.opentelemetry.io/otel v1.26.0 h1:LQwgL5s/1W7YiiRwxf03QGnWLb2HW4pLiAhaA5cZXBs= go.opentelemetry.io/otel v1.26.0/go.mod h1:UmLkJHUAidDval2EICqBMbnAd0/m2vmpf/dAM+fvFs4= go.opentelemetry.io/otel/metric v1.26.0 h1:7S39CLuY5Jgg9CrnA9HHiEjGMF/X2VHvoXGgSllRz30= go.opentelemetry.io/otel/metric v1.26.0/go.mod h1:SY+rHOI4cEawI9a7N1A4nIg/nTQXe1ccCNWYOJUrpX4= go.opentelemetry.io/otel/trace v1.26.0 h1:1ieeAUb4y0TE26jUFrCIXKpTuVK7uJGN9/Z/2LP5sQA= go.opentelemetry.io/otel/trace v1.26.0/go.mod h1:4iDxvGDQuUkHve82hJJ8UqrwswHYsZuWCBllGV2U2y0= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.25.0 h1:ypSNr+bnYL2YhwoMt2zPxHFmbAN1KZs/njMG3hxUp30= golang.org/x/crypto v0.25.0/go.mod h1:T+wALwcMOSE0kXgUAnPAHqTLW+XHgcELELW8VaDgm/M= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= golang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod h1:86+5VVa7VpoJ4kLfm080zCjGlMRFzhUhsZKEZO7MGek= golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod h1:JXzH8nQsPlswgeRAPE3MuO9GYsAcnJvJ4vnMwN/5qkY= golang.org/x/exp v0.0.0-20191129062945-2f5052295587/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= golang.org/x/exp v0.0.0-20230626212559-97b1e661b5df h1:UA2aFVmmsIlefxMk29Dp2juaUSth8Pyn3Tq5Y5mJGME= golang.org/x/exp v0.0.0-20230626212559-97b1e661b5df/go.mod h1:FXUEEKJgO7OQYeo8N01OfiKP8RXMtf6e8aTskBGqWdc= golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= golang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= golang.org/x/lint v0.0.0-20190909230951-414d861bb4ac/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRuDixDT3tpyyb+LUpUlRWLxfhWrs= golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE= golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc= golang.org/x/mod v0.1.0/go.mod h1:0QHyrYULN0/3qlju5TqG8bIK38QM8yzMo5ekMj3DlcY= golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= golang.org/x/mod v0.1.1-0.20191107180719-034126e5016b/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190501004415-9ce7a6920f09/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190628185345-da137c7871d7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200222125558-5a598a2470a0/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200301022130-244492dfa37a/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200501053045-e0ff5e5a1de5/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200506145744-7e3656a0809f/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200513185701-a91f0712d120/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20210525063256-abc453219eb5/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.27.0 h1:5K3Njcw06/l2y9vpGCSdcxWOYHOUk3dVNGDXN+FvAys= golang.org/x/net v0.27.0/go.mod h1:dDi0PyhWNoiUOrAS8uXv/vnScO4wnHQO4mj9fn/RytE= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.21.0 h1:tsimM75w1tF/uws5rbeHzIWxEqElMehnc+iW793zsZs= golang.org/x/oauth2 v0.21.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.7.0 h1:YsImfSBoP9QPYL0xyKJPq0gcaJdG3rInoqxTWbfQu9M= golang.org/x/sync v0.7.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200106162015-b016eb3dc98e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200212091648-12a6c2dcc1e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200331124033-c3d80250170d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200501052902-10377860bb8e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200511232937-7e40ca221e25/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220114195835-da31bd327af9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.22.0 h1:RI27ohtqKCnwULzJLqkv897zojh5/DwS/ENaMzUOaWI= golang.org/x/sys v0.22.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.16.0 h1:a94ExnEXNtEwYLGJSIUxnWoxoRz/ZcCsV63ROupILh4= golang.org/x/text v0.16.0/go.mod h1:GhwF1Be+LQoKShO3cGOHzqOgRrGaYc9AvblQOmPVHnI= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.5.0 h1:o7cqy6amK/52YcAKIPlM3a+Fpj35zvRj2TP+e1xFSfk= golang.org/x/time v0.5.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191130070609-6e064ea0cf2d/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20191227053925-7b8e75db28f4/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200117161641-43d50277825c/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200122220014-bf1340f18c4a/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200204074204-1cc6d1ef6c74/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200207183749-b753a1ba74fa/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200212150539-ea181f53ac56/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200224181240-023911ca70b2/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200227222343-706bc42d1f0d/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200304193943-95d2e580d8eb/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= golang.org/x/tools v0.0.0-20200312045724-11d5b4c81c7d/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= golang.org/x/tools v0.0.0-20200331025713-a30bf2db82d4/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200512131952-2bc93b1c0c88/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200515010526-7d3b6ebf133d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.23.0 h1:SGsXPZ+2l4JsgaCKkx+FQ9YZ5XEtA1GZYuoDjenLjvg= golang.org/x/tools v0.23.0/go.mod h1:pnu6ufv6vQkll6szChhK3C3L/ruaIv5eBeztNG8wtsI= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M= google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= google.golang.org/api v0.9.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= google.golang.org/api v0.13.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= google.golang.org/api v0.14.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= google.golang.org/api v0.15.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= google.golang.org/api v0.17.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= google.golang.org/api v0.18.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= google.golang.org/api v0.19.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= google.golang.org/api v0.20.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= google.golang.org/api v0.22.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= google.golang.org/api v0.24.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= google.golang.org/api v0.28.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= google.golang.org/api v0.29.0/go.mod h1:Lcubydp8VUV7KeIHD9z2Bys/sm/vGKnG1UHuDBSrHWM= google.golang.org/api v0.30.0/go.mod h1:QGmEvQ87FHZNiUVJkT14jQNYJ4ZJjdRF23ZXz5138Fc= google.golang.org/api v0.186.0 h1:n2OPp+PPXX0Axh4GuSsL5QL8xQCTb2oDwyzPnQvqUug= google.golang.org/api v0.186.0/go.mod h1:hvRbBmgoje49RV3xqVXrmP6w93n6ehGgIVPYrGtBFFc= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0= google.golang.org/appengine v1.6.5/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= google.golang.org/appengine v1.6.6/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= google.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8= google.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20191230161307-f3c370f40bfb/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20200115191322-ca5a22157cba/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20200122232147-0452cf42e150/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20200204135345-fa8e72b47b90/go.mod h1:GmwEX6Z4W5gMy59cAlVYjN9JhxgbQH6Gn+gFDQe2lzA= google.golang.org/genproto v0.0.0-20200212174721-66ed5ce911ce/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200228133532-8c2c7df3a383/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200305110556-506484158171/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200312145019-da6875a35672/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200331122359-1ee6d9798940/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200511104702-f5ebc3bea380/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200515170657-fc4c6c6a6587/go.mod h1:YsZOwe1myG/8QRHRsmBRE1LrgQY60beZKjly0O1fX9U= google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= google.golang.org/genproto v0.0.0-20200618031413-b414f8b61790/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA= google.golang.org/genproto v0.0.0-20200729003335-053ba62fc06f/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20200804131852-c06518451d9c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20200825200019-8632dd797987/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto/googleapis/api v0.0.0-20240617180043-68d350f18fd4 h1:MuYw1wJzT+ZkybKfaOXKp5hJiZDn2iHaXRw0mRYdHSc= google.golang.org/genproto/googleapis/api v0.0.0-20240617180043-68d350f18fd4/go.mod h1:px9SlOOZBg1wM1zdnr8jEL4CNGUBZ+ZKYtNPApNQc4c= google.golang.org/genproto/googleapis/rpc v0.0.0-20240617180043-68d350f18fd4 h1:Di6ANFilr+S60a4S61ZM00vLdw0IrQOSMS2/6mrnOU0= google.golang.org/genproto/googleapis/rpc v0.0.0-20240617180043-68d350f18fd4/go.mod h1:Ue6ibwXGpU+dqIcODieyLOcgj7z8+IcskoNIgZxtrFY= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= google.golang.org/grpc v1.26.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= google.golang.org/grpc v1.27.1/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= google.golang.org/grpc v1.28.0/go.mod h1:rpkK4SK4GF4Ach/+MFLZUBavHOvF2JJB5uozKKal+60= google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3IjizoKk= google.golang.org/grpc v1.30.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= google.golang.org/grpc v1.31.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc= google.golang.org/grpc v1.64.0 h1:KH3VH9y/MgNQg1dE7b3XfVK0GsPSIzJwdF617gUSbvY= google.golang.org/grpc v1.64.0/go.mod h1:oxjF8E3FBnjp+/gVFYdWacaLDx9na1aqy9oovLpxQYg= google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod h1:A+miEFZTKqfCUM6K7xSMQL9OKL/b6hQv+e19PK+JZNE= google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo= google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4= google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= google.golang.org/protobuf v1.34.2 h1:6xV6lTsCfpGD21XK49h7MhtcApnLqkfYgPcdHftf6hg= google.golang.org/protobuf v1.34.2/go.mod h1:qYOHts0dSfpeUzUFpOMr/WGzszTmLH+DiWniOlNbLDw= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.5/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= rsc.io/markdown v0.0.0-20240617154923-1f2ef1438fed h1:savaUwUp0YCIxdaF9EFOMB3j+TQnoLop+cNp2KPC9jk= rsc.io/markdown v0.0.0-20240617154923-1f2ef1438fed/go.mod h1:rzOcjAz36Xzvwf6iaJSYXkmNbvu5XHelis1egIN0Cys= rsc.io/omap v1.2.1-0.20240709133045-40dad5c0c0fb h1:+2CTPs/tT0t54s9f3vxDUzss6XUKC6C+Z6cDCfV5V38= rsc.io/omap v1.2.1-0.20240709133045-40dad5c0c0fb/go.mod h1:V4A0Qx0A9nvl4IPmfBYIKdaH019Oq3Ygnb7fA92uN1U= rsc.io/ordered v1.1.0 h1:9U9go719kAa92IjYlnBFNjg2HKuVBflx8Y6gkv8kcvw= rsc.io/ordered v1.1.0/go.mod h1:evAi8739bWVBRG9aaufsjVc202+6okf8u2QeVL84BCM= rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= rsc.io/top v1.0.2 h1:UEfowYYaJj6zF6Qv7CKOnsUCyxhSopoR1Uoi/HwfLn4= rsc.io/top v1.0.2/go.mod h1:/eug4tP/rUnl5Dox3aSZgdLKwMPAtWhJGE/eFY/2fNc=
oscar
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/LICENSE
Copyright 2024 The Go Authors Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
oscar
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/codereview.cfg
issuerepo: golang/go
pebble
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/pebble/pebble_test.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package pebble import ( "encoding/binary" "fmt" "math/rand/v2" "path/filepath" "testing" "golang.org/x/oscar/internal/storage" "golang.org/x/oscar/internal/testutil" ) type testWriter struct{ t *testing.T } func (w testWriter) Write(b []byte) (int, error) { w.t.Logf("%s", b) return len(b), nil } func TestDB(t *testing.T) { lg := testutil.Slogger(t) dir := t.TempDir() dbname := filepath.Join(dir, "db1") db, err := Open(lg, dbname) if err == nil { t.Fatal("Open nonexistent succeeded") } db, err = Create(lg, dbname) if err != nil { t.Fatal(err) } db.Close() db, err = Create(lg, dbname) if err == nil { t.Fatal("Create already-existing succeeded") } db, err = Open(lg, dbname) if err != nil { t.Fatal(err) } defer db.Close() storage.TestDB(t, db) if testing.Short() { return } // Test that MaybeApply handles very large batch. b := db.Batch() val := make([]byte, 1e6) pcg := rand.NewPCG(1, 2) applied := 0 for key := range 500 { for i := 0; i < len(val); i += 8 { binary.BigEndian.PutUint64(val[i:], pcg.Uint64()) } binary.BigEndian.PutUint64(val, uint64(key)) b.Set([]byte(fmt.Sprint(key)), val) if b.MaybeApply() { if applied++; applied == 2 { break } } } b.Apply() for key := range 200 { val, ok := db.Get([]byte(fmt.Sprint(key))) if !ok { t.Fatalf("after batch, missing key %d", key) } if x := binary.BigEndian.Uint64(val); x != uint64(key) { t.Fatalf("Get(%d) = value for %d, want %d", key, x, key) } } }
pebble
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/pebble/pebble.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package pebble implements a storage.DB using Pebble, // a production-quality key-value database from CockroachDB. // A pebble database can only be opened by one process at a time. package pebble import ( "bytes" "cmp" "iter" "log/slog" "github.com/cockroachdb/pebble" "golang.org/x/oscar/internal/storage" ) // Open opens an existing Pebble database in the named directory. // The database must already exist. func Open(lg *slog.Logger, dir string) (storage.DB, error) { return open(lg, dir, &pebble.Options{ErrorIfNotExists: true}) } // Create creates a new Pebble database in the named directory. // The database (and directory) must not already exist. func Create(lg *slog.Logger, dir string) (storage.DB, error) { return open(lg, dir, &pebble.Options{ErrorIfExists: true}) } func open(lg *slog.Logger, dir string, opts *pebble.Options) (storage.DB, error) { p, err := pebble.Open(dir, opts) if err != nil { lg.Error("pebble open", "dir", dir, "create", opts.ErrorIfExists, "err", err) return nil, err } return &db{p: p, slog: lg}, nil } type db struct { p *pebble.DB m storage.MemLocker slog *slog.Logger } type batch struct { db *db b *pebble.Batch } func (d *db) Lock(key string) { d.m.Lock(key) } func (d *db) Unlock(key string) { d.m.Unlock(key) } func (d *db) get(key []byte, yield func(val []byte)) { v, c, err := d.p.Get(key) if err == pebble.ErrNotFound { return } if err != nil { // unreachable except db error d.Panic("pebble get", "key", storage.Fmt(key), "err", err) } yield(v) c.Close() } func (d *db) Get(key []byte) (val []byte, ok bool) { d.get(key, func(v []byte) { val = bytes.Clone(v) ok = true }) return } var ( sync = &pebble.WriteOptions{Sync: true} noSync = &pebble.WriteOptions{Sync: false} ) func (d *db) Panic(msg string, args ...any) { d.slog.Error(msg, args...) storage.Panic(msg, args...) } func (d *db) Set(key, val []byte) { if err := d.p.Set(key, val, noSync); err != nil { // unreachable except db error d.Panic("pebble set", "key", storage.Fmt(key), "val", storage.Fmt(val), "err", err) } } func (d *db) Delete(key []byte) { if err := d.p.Delete(key, noSync); err != nil { // unreachable except db error d.Panic("pebble delete", "key", storage.Fmt(key), "err", err) } } func (d *db) DeleteRange(start, end []byte) { err := cmp.Or( d.p.DeleteRange(start, end, noSync), d.p.Delete(end, noSync), ) if err != nil { // unreachable except db error d.Panic("pebble delete range", "start", storage.Fmt(start), "end", storage.Fmt(end), "err", err) } } func (d *db) Flush() { if err := d.p.Flush(); err != nil { // unreachable except db error d.Panic("pebble flush", "err", err) } } func (d *db) Close() { if err := d.p.Close(); err != nil { // unreachable except db error d.Panic("pebble close", "err", err) } } func (d *db) Scan(start, end []byte) iter.Seq2[[]byte, func() []byte] { start = bytes.Clone(start) end = bytes.Clone(end) return func(yield func(key []byte, val func() []byte) bool) { // Note: Pebble's UpperBound is non-inclusive (not included in the scan) // but we want to include the key end in the scan, // so do not use UpperBound; we check during the iteration instead. iter, err := d.p.NewIter(&pebble.IterOptions{ LowerBound: start, }) if err != nil { // unreachable except db error d.Panic("pebble new iterator", "start", storage.Fmt(start), "err", err) } defer iter.Close() for iter.First(); iter.Valid(); iter.Next() { key := iter.Key() if bytes.Compare(key, end) > 0 { break } val := func() []byte { v, err := iter.ValueAndErr() if err != nil { // unreachable except db error d.Panic("pebble iterator value", "key", storage.Fmt(key), "err", err) } return v } if !yield(key, val) { return } } } } func (d *db) Batch() storage.Batch { return &batch{d, d.p.NewBatch()} } func (b *batch) Set(key, val []byte) { if err := b.b.Set(key, val, noSync); err != nil { // unreachable except db error b.db.Panic("pebble batch set", "key", storage.Fmt(key), "val", storage.Fmt(val), "err", err) } } func (b *batch) Delete(key []byte) { if err := b.b.Delete(key, noSync); err != nil { // unreachable except db error b.db.Panic("pebble batch delete", "key", storage.Fmt(key), "err", err) } } func (b *batch) DeleteRange(start, end []byte) { err := cmp.Or( b.b.DeleteRange(start, end, noSync), b.b.Delete(end, noSync), ) if err != nil { // unreachable except db error b.db.Panic("pebble batch delete range", "start", storage.Fmt(start), "end", storage.Fmt(end), "err", err) } } // Pebble imposes a higher maximum batch size (4GB), but 100MB is fine. // That's also what storage.Batch's interface definition says is a “typical limit”. const maxBatch = 100e6 func (b *batch) MaybeApply() bool { if b.b.Len() > maxBatch { b.Apply() return true } return false } func (b *batch) Apply() { if err := b.db.p.Apply(b.b, noSync); err != nil { // unreachable except db error b.db.Panic("pebble batch apply", "err", err) } b.b.Reset() }
gaby
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/gaby/main.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Gaby is an experimental new bot running in the Go issue tracker as [@gabyhelp], // to try to help automate various mundane things that a machine can do reasonably well, // as well as to try to discover new things that a machine can do reasonably well. // // The name gaby is short for “Go AI Bot”, because one of the purposes of the experiment // is to learn what LLMs can be used for effectively, including identifying what they should // not be used for. Some of the gaby functionality will involve LLMs; other functionality will not. // The guiding principle is to create something that helps maintainers and that maintainers like, // which means to use LLMs when they make sense and help but not when they don't. // // In the long term, the intention is for this code base or a successor version // to take over the current functionality of “gopherbot” and become [@gopherbot], // at which point the @gabyhelp account will be retired. // // The [GitHub Discussion] is a good place to leave feedback about @gabyhelp. // // # Code Overview // // The bot functionality is implemented in internal packages in subdirectories. // This comment gives a brief tour of the structure. // // An explicit goal for the Gaby code base is that it run well in many different environments, // ranging from a maintainer's home server or even Raspberry Pi all the way up to a // hosted cloud. (At the moment, Gaby runs on a Linux server in my basement.) // Due to this emphasis on portability, Gaby defines its own interfaces for all the functionality // it needs from the surrounding environment and then also defines a variety of // implementations of those interfaces. // // Another explicit goal for the Gaby code base is that it be very well tested. // (See my [Go Testing talk] for more about why this is so important.) // Abstracting the various external functionality into interfaces also helps make // testing easier, and some packages also provide explicit testing support. // // The result of both these goals is that Gaby defines some basic functionality // like time-ordered indexing for itself instead of relying on some specific // other implementation. In the grand scheme of things, these are a small amount // of code to maintain, and the benefits to both portability and testability are // significant. // // # Testing // // Code interacting with services like GitHub and code running on cloud servers // is typically difficult to test and therefore undertested. // It is an explicit requirement in this repo to test all the code, // even (and especially) when testing is difficult. // // A useful command to have available when working in the code is // [rsc.io/uncover], which prints the package source lines not covered by a unit test. // A useful invocation is: // // % go install rsc.io/uncover@latest // % go test && go test -coverprofile=/tmp/c.out && uncover /tmp/c.out // PASS // ok golang.org/x/oscar/internal/related 0.239s // PASS // coverage: 92.2% of statements // ok golang.org/x/oscar/internal/related 0.197s // related.go:180,181 // p.slog.Error("triage parse createdat", "CreatedAt", issue.CreatedAt, "err", err) // continue // related.go:203,204 // p.slog.Error("triage lookup failed", "url", u) // continue // related.go:250,251 // p.slog.Error("PostIssueComment", "issue", e.Issue, "err", err) // continue // % // // The first “go test” command checks that the test passes. // The second repeats the test with coverage enabled. // Running the test twice this way makes sure that any syntax or type errors // reported by the compiler are reported without coverage, // because coverage can mangle the error output. // After both tests pass and second writes a coverage profile, // running “uncover /tmp/c.out” prints the uncovered lines. // // In this output, there are three error paths that are untested. // In general, error paths should be tested, so tests should be written // to cover these lines of code. In limited cases, it may not be practical // to test a certain section, such as when code is unreachable but left // in case of future changes or mistaken assumptions. // That part of the code can be labeled with a comment beginning // “// Unreachable” or “// unreachable” (usually with explanatory text following), // and then uncover will not report it. // If a code section should be tested but the test is being deferred to later, // that section can be labeled “// Untested” or “// untested” instead. // // The [golang.org/x/oscar/internal/testutil] package provides a few other testing helpers. // // The overview of the code now proceeds from bottom up, starting with // storage and working up to the actual bot. // // # Secret Storage // // Gaby needs to manage a few secret keys used to access services. // The [golang.org/x/oscar/internal/secret] package defines the interface for // obtaining those secrets. The only implementations at the moment // are an in-memory map and a disk-based implementation that reads // $HOME/.netrc. Future implementations may include other file formats // as well as cloud-based secret storage services. // // Secret storage is intentionally separated from the main database storage, // described below. The main database should hold public data, not secrets. // // # Large Language Models // // Gaby defines the interface it expects from a large language model. // // The [llm.Embedder] interface abstracts an LLM that can take a collection // of documents and return their vector embeddings, each of type [llm.Vector]. // The only real implementation to date is [golang.org/x/oscar/internal/gemini]. // It would be good to add an offline implementation using Ollama as well. // // For tests that need an embedder but don't care about the quality of // the embeddings, [llm.QuoteEmbedder] copies a prefix of the text // into the vector (preserving vector unit length) in a deterministic way. // This is good enough for testing functionality like vector search // and simplifies tests by avoiding a dependence on a real LLM. // // At the moment, only the embedding interface is defined. // In the future we expect to add more interfaces around text generation // and tool use. // // # Storage // // As noted above, Gaby defines interfaces for all the functionality it needs // from its external environment, to admit a wide variety of implementations // for both execution and testing. The lowest level interface is storage, // defined in [golang.org/x/oscar/internal/storage]. // // Gaby requires a key-value store that supports ordered traversal of key ranges // and atomic batch writes up to a modest size limit (at least a few megabytes). // The basic interface is [storage.DB]. // [storage.MemDB] returns an in-memory implementation useful for testing. // Other implementations can be put through their paces using // [storage.TestDB]. // // The only real [storage.DB] implementation is [golang.org/x/oscar/internal/pebble], // which is a [LevelDB]-derived on-disk key-value store developed and used // as part of [CockroachDB]. It is a production-quality local storage implementation // and maintains the database as a directory of files. // // In the future we plan to add an implementation using [Google Cloud Firestore], // which provides a production-quality key-value lookup as a Cloud service // without fixed baseline server costs. // (Firestore is the successor to Google Cloud Datastore.) // // The [storage.DB] makes the simplifying assumption that storage never fails, // or rather that if storage has failed then you'd rather crash your program than // try to proceed through typically untested code paths. // As such, methods like Get and Set do not return errors. // They panic on failure, and clients of a DB can call the DB's Panic method // to invoke the same kind of panic if they notice any corruption. // It remains to be seen whether this decision is kept. // // In addition to the usual methods like Get, Set, and Delete, [storage.DB] defines // Lock and Unlock methods that acquire and release named mutexes managed // by the database layer. The purpose of these methods is to enable coordination // when multiple instances of a Gaby program are running on a serverless cloud // execution platform. So far Gaby has only run on an underground basement server // (the opposite of cloud), so these have not been exercised much and the APIs // may change. // // In addition to the regular database, package storage also defines [storage.VectorDB], // a vector database for use with LLM embeddings. // The basic operations are Set, Get, and Search. // [storage.MemVectorDB] returns an in-memory implementation that // stores the actual vectors in a [storage.DB] for persistence but also // keeps a copy in memory and searches by comparing against all the vectors. // When backed by a [storage.MemDB], this implementation is useful for testing, // but when backed by a persistent database, the implementation suffices for // small-scale production use (say, up to a million documents, which would // require 3 GB of vectors). // // It is possible that the package ordering here is wrong and that VectorDB // should be defined in the llm package, built on top of storage, // and not the current “storage builds on llm”. // // # Ordered Keys // // Because Gaby makes minimal demands of its storage layer, // any structure we want to impose must be implemented on top of it. // Gaby uses the [rsc.io/ordered] encoding format to produce database keys // that order in useful ways. // // For example, ordered.Encode("issue", 123) < ordered.Encode("issue", 1001), // so that keys of this form can be used to scan through issues in numeric order. // In contrast, using something like fmt.Sprintf("issue%d", n) would visit issue 1001 // before issue 123 because "1001" < "123". // // Using this kind of encoding is common when using NoSQL key-value storage. // See the [rsc.io/ordered] package for the details of the specific encoding. // // # Timed Storage // // One of the implied jobs Gaby has is to collect all the relevant information // about an open source project: its issues, its code changes, its documentation, // and so on. Those sources are always changing, so derived operations like // adding embeddings for documents need to be able to identify what is new // and what has been processed already. To enable this, Gaby implements // time-stamped—or just “timed”—storage, in which a collection of key-value pairs // also has a “by time” index of ((timestamp, key), no-value) pairs to make it possible // to scan only the key-value pairs modified after the previous scan. // This kind of incremental scan only has to remember the last timestamp processed // and then start an ordered key range scan just after that timestamp. // // This convention is implemented by [golang.org/x/oscar/internal/timed], along with // a [timed.Watcher] that formalizes the incremental scan pattern. // // # Document Storage // // Various packages take care of downloading state from issue trackers and the like, // but then all that state needs to be unified into a common document format that // can be indexed and searched. That document format is defined by // [golang.org/x/oscar/internal/docs]. A document consists of an ID (conventionally a URL), // a document title, and document text. Documents are stored using timed storage, // enabling incremental processing of newly added documents . // // # Document Embedding // // The next stop for any new document is embedding it into a vector and storing // that vector in a vector database. The [golang.org/x/oscar/internal/embeddocs] package // does this, and there is very little to it, given the abstractions of a document store // with incremental scanning, an LLM embedder, and a vector database, all of which // are provided by other packages. // // # HTTP Record and Replay // // None of the packages mentioned so far involve network operations, but the // next few do. It is important to test those but also equally important not to // depend on external network services in the tests. Instead, the package // [golang.org/x/oscar/internal/httprr] provides an HTTP record/replay system specifically // designed to help testing. It can be run once in a mode that does use external // network servers and records the HTTP exchanges, but by default tests look up // the expected responses in the previously recorded log, replaying those responses. // // The result is that code making HTTP request can be tested with real server // traffic once and then re-tested with recordings of that traffic afterward. // This avoids having to write entire fakes of services but also avoids needing // the services to stay available in order for tests to pass. It also typically makes // the tests much faster than using the real servers. // // # GitHub Interactions // // Gaby uses GitHub in two main ways. First, it downloads an entire copy of the // issue tracker state, with incremental updates, into timed storage. // Second, it performs actions in the issue tracker, like editing issues or comments, // applying labels, or posting new comments. These operations are provided by // [golang.org/x/oscar/internal/github]. // // Gaby downloads the issue tracker state using GitHub's REST API, which makes // incremental updating very easy but does not provide access to a few newer features // such as project boards and discussions, which are only available in the GraphQL API. // Sync'ing using the GraphQL API is left for future work: there is enough data available // from the REST API that for now we can focus on what to do with that data and not // that a few newer GitHub features are missing. // // The github package provides two important aids for testing. For issue tracker state, // it also allows loading issue data from a simple text-based issue description, avoiding // any actual GitHub use at all and making it easier to modify the test data. // For issue tracker actions, the github package defaults in tests to not actually making // changes, instead diverting edits into an in-memory log. Tests can then check the log // to see whether the right edits were requested. // // The [golang.org/x/oscar/internal/githubdocs] package takes care of adding content from // the downloaded GitHub state into the general document store. // Currently the only GitHub-derived documents are one document per issue, // consisting of the issue title and body. It may be worth experimenting with // incorporating issue comments in some way, although they bring with them // a significant amount of potential noise. // // # Gerrit Interactions // // Gaby will need to download and store Gerrit state into the database and then // derive documents from it. That code has not yet been written, although // [rsc.io/gerrit/reviewdb] provides a basic version that can be adapted. // // # Web Crawling // // Gaby will also need to download and store project documentation into the // database and derive documents from it corresponding to cutting the page // at each heading. That code has been written but is not yet tested well enough // to commit. It will be added later. // // # Fixing Comments // // The simplest job Gaby has is to go around fixing new comments, including // issue descriptions (which look like comments but are a different kind of GitHub data). // The [golang.org/x/oscar/internal/commentfix] package implements this, // watching GitHub state incrementally and applying a few kinds of rewrite rules // to each new comment or issue body. // The commentfix package allows automatically editing text, automatically editing URLs, // and automatically hyperlinking text. // // # Finding Related Issues and Documents // // The next job Gaby has is to respond to new issues with related issues and documents. // The [golang.org/x/oscar/internal/related] package implements this, // watching GitHub state incrementally for new issues, filtering out ones that should be ignored, // and then finding related issues and documents and posting a list. // // This package was originally intended to identify and automatically close duplicates, // but the difference between a duplicate and a very similar or not-quite-fixed issue // is too difficult a judgement to make for an LLM. Even so, the act of bringing forward // related context that may have been forgotten or never known by the people reading // the issue has turned out to be incredibly helpful. // // # Main Loop // // All of these pieces are put together in the main program, this package, [golang.org/x/oscar]. // The actual main package has no tests yet but is also incredibly straightforward. // It does need tests, but we also need to identify ways that the hard-coded policies // in the package can be lifted out into data that a natural language interface can // manipulate. For example the current policy choices in package main amount to: // // cf := commentfix.New(lg, gh, "gerritlinks") // cf.EnableProject("golang/go") // cf.EnableEdits() // cf.AutoLink(`\bCL ([0-9]+)\b`, "https://go.dev/cl/$1") // cf.ReplaceURL(`\Qhttps://go-review.git.corp.google.com/\E`, "https://go-review.googlesource.com/") // // rp := related.New(lg, db, gh, vdb, dc, "related") // rp.EnableProject("golang/go") // rp.EnablePosts() // rp.SkipBodyContains("— [watchflakes](https://go.dev/wiki/Watchflakes)") // rp.SkipTitlePrefix("x/tools/gopls: release version v") // rp.SkipTitleSuffix(" backport]") // // These could be stored somewhere as data and manipulated and added to by the LLM // in response to prompts from maintainers. And other features could be added and // configured in a similar way. Exactly how to do this is an important thing to learn in // future experimentation. // // # Future Work and Structure // // As mentioned above, the two jobs Gaby does already are both fairly simple and straightforward. // It seems like a general approach that should work well is well-written, well-tested deterministic // traditional functionality such as the comment fixer and related-docs poster, configured by // LLMs in response to specific directions or eventually higher-level goals specified by project // maintainers. Other functionality that is worth exploring is rules for automatically labeling issues, // rules for identifying issues or CLs that need to be pinged, rules for identifying CLs that need // maintainer attention or that need submitting, and so on. Another stretch goal might be to identify // when an issue needs more information and ask for that information. Of course, it would be very // important not to ask for information that is already present or irrelevant, so getting that right would // be a very high bar. There is no guarantee that today's LLMs work well enough to build a useful // version of that. // // Another important area of future work will be running Gaby on top of cloud databases // and then moving Gaby's own execution into the cloud. Getting it a server with a URL will // enable GitHub callbacks instead of the current 2-minute polling loop, which will enable // interactive conversations with Gaby. // // Overall, we believe that there are a few good ideas for ways that LLM-based bots can help // make project maintainers' jobs easier and less monotonous, and they are waiting to be found. // There are also many bad ideas, and they must be filtered out. Understanding the difference // will take significant care, thought, and experimentation. We have work to do. // // [@gabyhelp]: https://github.com/gabyhelp // [@gopherbot]: https://github.com/gopherbot // [GitHub Discussion]: https://github.com/golang/go/discussions/67901 // [LevelDB]: https://github.com/google/leveldb // [CockroachDB]: https://github.com/cockroachdb/cockroach // [Google Cloud Firestore]: https://cloud.google.com/firestore // [Go Testing talk]: https://research.swtch.com/testing package main import ( "context" "flag" "fmt" "io" "log" "log/slog" "net/http" "os" "time" "golang.org/x/oscar/internal/commentfix" "golang.org/x/oscar/internal/docs" "golang.org/x/oscar/internal/embeddocs" "golang.org/x/oscar/internal/gemini" "golang.org/x/oscar/internal/github" "golang.org/x/oscar/internal/githubdocs" "golang.org/x/oscar/internal/llm" "golang.org/x/oscar/internal/pebble" "golang.org/x/oscar/internal/related" "golang.org/x/oscar/internal/secret" "golang.org/x/oscar/internal/storage" ) var searchMode = flag.Bool("search", false, "run in interactive search mode") func main() { flag.Parse() lg := slog.New(slog.NewTextHandler(os.Stdout, &slog.HandlerOptions{Level: slog.LevelDebug})) sdb := secret.Netrc() db, err := pebble.Open(lg, "gaby.db") if err != nil { log.Fatal(err) } vdb := storage.MemVectorDB(db, lg, "") gh := github.New(lg, db, secret.Netrc(), http.DefaultClient) // Ran during setup: gh.Add("golang/go") dc := docs.New(db) ai, err := gemini.NewClient(lg, sdb, http.DefaultClient) if err != nil { log.Fatal(err) } if *searchMode { // Search loop. data, err := io.ReadAll(os.Stdin) if err != nil { log.Fatal(err) } vecs, err := ai.EmbedDocs(context.Background(), []llm.EmbedDoc{{Title: "", Text: string(data)}}) if err != nil { log.Fatal(err) } vec := vecs[0] for _, r := range vdb.Search(vec, 20) { title := "?" if d, ok := dc.Get(r.ID); ok { title = d.Title } fmt.Printf(" %.5f %s # %s\n", r.Score, r.ID, title) } return } gh.Sync() githubdocs.Sync(lg, dc, gh) embeddocs.Sync(lg, vdb, ai, dc) cf := commentfix.New(lg, gh, "gerritlinks") cf.EnableProject("golang/go") cf.EnableEdits() cf.AutoLink(`\bCL ([0-9]+)\b`, "https://go.dev/cl/$1") cf.ReplaceURL(`\Qhttps://go-review.git.corp.google.com/\E`, "https://go-review.googlesource.com/") rp := related.New(lg, db, gh, vdb, dc, "related") rp.EnableProject("golang/go") rp.EnablePosts() rp.SkipBodyContains("— [watchflakes](https://go.dev/wiki/Watchflakes)") rp.SkipTitlePrefix("x/tools/gopls: release version v") rp.SkipTitleSuffix(" backport]") for { gh.Sync() githubdocs.Sync(lg, dc, gh) embeddocs.Sync(lg, vdb, ai, dc) cf.Run() rp.Run() time.Sleep(2 * time.Minute) } return }
testutil
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/testutil/testutil.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package testutil implements various testing utilities. package testutil import ( "bytes" "io" "log/slog" "testing" ) // LogWriter returns an [io.Writer] that logs each Write using t.Log. func LogWriter(t *testing.T) io.Writer { return testWriter{t} } type testWriter struct{ t *testing.T } func (w testWriter) Write(b []byte) (int, error) { w.t.Logf("%s", b) return len(b), nil } // Slogger returns a [*slog.Logger] that writes each message // using t.Log. func Slogger(t *testing.T) *slog.Logger { return slog.New(slog.NewTextHandler(LogWriter(t), nil)) } // SlogBuffer returns a [*slog.Logger] that writes each message to out. func SlogBuffer() (lg *slog.Logger, out *bytes.Buffer) { var buf bytes.Buffer lg = slog.New(slog.NewTextHandler(&buf, nil)) return lg, &buf } // Check calls t.Fatal(err) if err is not nil. func Check(t *testing.T, err error) { if err != nil { t.Helper() t.Fatal(err) } } // Checker returns a check function that // calls t.Fatal if err is not nil. func Checker(t *testing.T) (check func(err error)) { return func(err error) { if err != nil { t.Helper() t.Fatal(err) } } }
githubdocs
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/githubdocs/sync_test.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package githubdocs import ( "testing" "golang.org/x/oscar/internal/docs" "golang.org/x/oscar/internal/github" "golang.org/x/oscar/internal/storage" "golang.org/x/oscar/internal/testutil" ) func TestMarkdown(t *testing.T) { check := testutil.Checker(t) lg := testutil.Slogger(t) db := storage.MemDB() gh := github.New(lg, db, nil, nil) check(gh.Testing().LoadTxtar("../testdata/markdown.txt")) dc := docs.New(db) Sync(lg, dc, gh) var want = []string{ "https://github.com/rsc/markdown/issues/1", "https://github.com/rsc/markdown/issues/10", "https://github.com/rsc/markdown/issues/11", "https://github.com/rsc/markdown/issues/12", "https://github.com/rsc/markdown/issues/13", "https://github.com/rsc/markdown/issues/14", "https://github.com/rsc/markdown/issues/15", "https://github.com/rsc/markdown/issues/16", "https://github.com/rsc/markdown/issues/17", "https://github.com/rsc/markdown/issues/18", "https://github.com/rsc/markdown/issues/19", "https://github.com/rsc/markdown/issues/2", "https://github.com/rsc/markdown/issues/3", "https://github.com/rsc/markdown/issues/4", "https://github.com/rsc/markdown/issues/5", "https://github.com/rsc/markdown/issues/6", "https://github.com/rsc/markdown/issues/7", "https://github.com/rsc/markdown/issues/8", "https://github.com/rsc/markdown/issues/9", } for d := range dc.Docs("") { if len(want) == 0 { t.Fatalf("unexpected extra doc: %s", d.ID) } if d.ID != want[0] { t.Fatalf("doc mismatch: have %s, want %s", d.ID, want[0]) } want = want[1:] if d.ID == md1 { if d.Title != md1Title { t.Errorf("#1 Title = %q, want %q", d.Title, md1Title) } if d.Text != md1Text { t.Errorf("#1 Text = %q, want %q", d.Text, md1Text) } } } if len(want) > 0 { t.Fatalf("missing docs: %v", want) } dc.Add("https://github.com/rsc/markdown/issues/1", "OLD TITLE", "OLD TEXT") Sync(lg, dc, gh) d, _ := dc.Get(md1) if d.Title != "OLD TITLE" || d.Text != "OLD TEXT" { t.Errorf("Sync rewrote #1: Title=%q Text=%q, want OLD TITLE, OLD TEXT", d.Title, d.Text) } Restart(lg, gh) Sync(lg, dc, gh) d, _ = dc.Get(md1) if d.Title == "OLD TITLE" || d.Text == "OLD TEXT" { t.Errorf("Restart+Sync did not rewrite #1: Title=%q Text=%q", d.Title, d.Text) } } var ( md1 = "https://github.com/rsc/markdown/issues/1" md1Title = "Support Github Emojis" md1Text = "This is an issue for supporting github emojis, such as `:smile:` for \n😄 . There's a github page that gives a mapping of emojis to image \nfile names that we can parse the hex representation out of here: \nhttps://api.github.com/emojis.\n" )
githubdocs
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/githubdocs/sync.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package githubdocs implements converting GitHub issues into text docs // for [golang.org/x/oscar/internal/docs]. package githubdocs import ( "fmt" "log/slog" "golang.org/x/oscar/internal/docs" "golang.org/x/oscar/internal/github" ) // Sync writes to dc docs corresponding to each issue in gh that is // new since the last call to Sync. // // If an issue is edited on GitHub, it will appear new in gh and // the new text will be written to dc, replacing the old issue text. // Only the issue body (what looks like the top comment in the UI) // is saved as a document. // The document ID for each issue is its GitHub URL: "https://github.com/<org>/<repo>/issues/<n>". func Sync(lg *slog.Logger, dc *docs.Corpus, gh *github.Client) { w := gh.EventWatcher("githubdocs") for e := range w.Recent() { if e.API != "/issues" { continue } lg.Debug("githubdocs sync", "issue", e.Issue, "dbtime", e.DBTime) issue := e.Typed.(*github.Issue) title := cleanTitle(issue.Title) text := cleanBody(issue.Body) dc.Add(fmt.Sprintf("https://github.com/%s/issues/%d", e.Project, e.Issue), title, text) w.MarkOld(e.DBTime) } } // Restart causes the next call to Sync to behave as if // it has never sync'ed any issues before. // The result is that all issues will be reconverted to doc form // and re-added. // Docs that have not changed since the last addition to the corpus // will appear unmodified; others will be marked new in the corpus. func Restart(lg *slog.Logger, gh *github.Client) { gh.EventWatcher("githubdocs").Restart() } // cleanTitle should clean the title for indexing. // For now we assume the LLM is good enough at Markdown not to bother. func cleanTitle(title string) string { // TODO return title } // cleanBody should clean the body for indexing. // For now we assume the LLM is good enough at Markdown not to bother. // In the future we may want to make various changes like inlining // the programs associated with playground URLs, // and we may also want to remove any HTML tags from the Markdown. func cleanBody(body string) string { // TODO return body }
httprr
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/httprr/rr_test.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package httprr import ( "errors" "io" "net/http" "net/http/httptest" "os" "strings" "testing" "testing/iotest" ) func handler(w http.ResponseWriter, r *http.Request) { if strings.HasSuffix(r.URL.Path, "/redirect") { http.Error(w, "redirect me!", 304) return } if r.Method == "GET" { if r.Header.Get("Secret") != "key" { http.Error(w, "missing secret", 666) return } } if r.Method == "POST" { data, err := io.ReadAll(r.Body) if err != nil { panic(err) } if !strings.Contains(string(data), "my Secret") { http.Error(w, "missing body secret", 667) return } } } func always555(w http.ResponseWriter, r *http.Request) { http.Error(w, "should not be making HTTP requests", 555) } func dropPort(r *http.Request) error { if r.URL.Port() != "" { r.URL.Host = r.URL.Host[:strings.LastIndex(r.URL.Host, ":")] r.Host = r.Host[:strings.LastIndex(r.Host, ":")] } return nil } func dropSecretHeader(r *http.Request) error { r.Header.Del("Secret") return nil } func hideSecretBody(r *http.Request) error { if r.Body != nil { body := r.Body.(*Body) body.Data = []byte("redacted") } return nil } func TestRecordReplay(t *testing.T) { dir := t.TempDir() file := dir + "/rr" // 4 passes: // 0: create // 1: open // 2: Open with -httprecord="r+" // 3: Open with -httprecord="" for pass := range 4 { start := open h := always555 *record = "" switch pass { case 0: start = create h = handler case 2: start = Open *record = "r+" h = handler case 3: start = Open } rr, err := start(file, http.DefaultTransport) if err != nil { t.Fatal(err) } if rr.Recording() { t.Log("RECORDING") } else { t.Log("REPLAYING") } rr.Scrub(dropPort, dropSecretHeader) rr.Scrub(hideSecretBody) mustNewRequest := func(method, url string, body io.Reader) *http.Request { req, err := http.NewRequest(method, url, body) if err != nil { t.Helper() t.Fatal(err) } return req } mustDo := func(req *http.Request, status int) { resp, err := rr.Client().Do(req) if err != nil { t.Helper() t.Fatal(err) } body, _ := io.ReadAll(resp.Body) resp.Body.Close() if resp.StatusCode != status { t.Helper() t.Fatalf("%v: %s\n%s", req.URL, resp.Status, body) } } srv := httptest.NewServer(http.HandlerFunc(h)) defer srv.Close() req := mustNewRequest("GET", srv.URL+"/myrequest", nil) req.Header.Set("Secret", "key") mustDo(req, 200) req = mustNewRequest("POST", srv.URL+"/myrequest", strings.NewReader("my Secret")) mustDo(req, 200) req = mustNewRequest("GET", srv.URL+"/redirect", nil) mustDo(req, 304) if !rr.Recording() { req = mustNewRequest("GET", srv.URL+"/uncached", nil) resp, err := rr.Client().Do(req) if err == nil { body, _ := io.ReadAll(resp.Body) t.Fatalf("%v: %s\n%s", req.URL, resp.Status, body) } } if err := rr.Close(); err != nil { t.Fatal(err) } } data, err := os.ReadFile(file) if err != nil { t.Fatal(err) } if strings.Contains(string(data), "Secret") { t.Fatalf("rr file contains Secret:\n%s", data) } } var badResponseTrace = []byte("httprr trace v1\n" + "92 75\n" + "GET http://127.0.0.1/myrequest HTTP/1.1\r\n" + "Host: 127.0.0.1\r\n" + "User-Agent: Go-http-client/1.1\r\n" + "\r\n" + "HZZP/1.1 200 OK\r\n" + "Date: Wed, 12 Jun 2024 13:55:02 GMT\r\n" + "Content-Length: 0\r\n" + "\r\n") func TestErrors(t *testing.T) { // -httprecord regexp parsing *record = "+" if _, err := Open(os.DevNull, nil); err == nil || !strings.Contains(err.Error(), "invalid -httprecord flag") { t.Errorf("did not diagnose bad -httprecord: err = %v", err) } *record = "" // invalid httprr trace if _, err := Open(os.DevNull, nil); err == nil || !strings.Contains(err.Error(), "not an httprr trace") { t.Errorf("did not diagnose invalid httprr trace: err = %v", err) } // corrupt httprr trace dir := t.TempDir() os.WriteFile(dir+"/rr", []byte("httprr trace v1\ngarbage\n"), 0666) if _, err := Open(dir+"/rr", nil); err == nil || !strings.Contains(err.Error(), "corrupt httprr trace") { t.Errorf("did not diagnose invalid httprr trace: err = %v", err) } // os.Create error creating trace if _, err := create("invalid\x00file", nil); err == nil { t.Errorf("did not report failure from os.Create: err = %v", err) } // os.ReadAll error reading trace if _, err := open("nonexistent", nil); err == nil { t.Errorf("did not report failure from os.ReadFile: err = %v", err) } // error reading body rr, err := create(os.DevNull, nil) if err != nil { t.Fatal(err) } if _, err := rr.Client().Post("http://127.0.0.1/nonexist", "x/error", iotest.ErrReader(errors.New("MY ERROR"))); err == nil || !strings.Contains(err.Error(), "MY ERROR") { t.Errorf("did not report failure from io.ReadAll(body): err = %v", err) } // error during scrub rr.Scrub(func(*http.Request) error { return errors.New("SCRUB ERROR") }) if _, err := rr.Client().Get("http://127.0.0.1/nonexist"); err == nil || !strings.Contains(err.Error(), "SCRUB ERROR") { t.Errorf("did not report failure from scrub: err = %v", err) } rr.Close() // error during rkey.WriteProxy rr, err = create(os.DevNull, nil) if err != nil { t.Fatal(err) } rr.Scrub(func(req *http.Request) error { req.URL = nil req.Host = "" return nil }) if _, err := rr.Client().Get("http://127.0.0.1/nonexist"); err == nil || !strings.Contains(err.Error(), "no Host or URL set") { t.Errorf("did not report failure from rkey.WriteProxy: err = %v", err) } rr.Close() // error during resp.Write rr, err = create(os.DevNull, badRespTransport{}) if err != nil { t.Fatal(err) } if _, err := rr.Client().Get("http://127.0.0.1/nonexist"); err == nil || !strings.Contains(err.Error(), "TRANSPORT ERROR") { t.Errorf("did not report failure from resp.Write: err = %v", err) } rr.Close() // error during Write logging request srv := httptest.NewServer(http.HandlerFunc(always555)) defer srv.Close() rr, err = create(os.DevNull, http.DefaultTransport) if err != nil { t.Fatal(err) } rr.Scrub(dropPort) rr.record.Close() // cause write error if _, err := rr.Client().Get(srv.URL + "/redirect"); err == nil || !strings.Contains(err.Error(), "file already closed") { t.Errorf("did not report failure from record write: err = %v", err) } rr.broken = errors.New("BROKEN ERROR") if _, err := rr.Client().Get(srv.URL + "/redirect"); err == nil || !strings.Contains(err.Error(), "BROKEN ERROR") { t.Errorf("did not report previous write failure: err = %v", err) } if err := rr.Close(); err == nil || !strings.Contains(err.Error(), "BROKEN ERROR") { t.Errorf("did not report write failure during close: err = %v", err) } // error during RoundTrip rr, err = create(os.DevNull, errTransport{errors.New("TRANSPORT ERROR")}) if err != nil { t.Fatal(err) } if _, err := rr.Client().Get(srv.URL); err == nil || !strings.Contains(err.Error(), "TRANSPORT ERROR") { t.Errorf("did not report failure from transport: err = %v", err) } // error during http.ReadResponse: trace is structurally okay but has malformed response inside if err := os.WriteFile(dir+"/rr", badResponseTrace, 0666); err != nil { t.Fatal(err) } rr, err = Open(dir+"/rr", nil) if err != nil { t.Fatal(err) } if _, err := rr.Client().Get("http://127.0.0.1/myrequest"); err == nil || !strings.Contains(err.Error(), "corrupt httprr trace:") { t.Errorf("did not diagnose invalid httprr trace: err = %v", err) } } type errTransport struct{ err error } func (e errTransport) RoundTrip(req *http.Request) (*http.Response, error) { return nil, e.err } type badRespTransport struct{} func (badRespTransport) RoundTrip(req *http.Request) (*http.Response, error) { resp := new(http.Response) resp.Body = io.NopCloser(iotest.ErrReader(errors.New("TRANSPORT ERROR"))) return resp, nil }
httprr
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/httprr/rr.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package httprr implements HTTP record and replay, mainly for use in tests. // // [Open] creates a new [RecordReplay]. Whether it is recording or replaying // is controlled by the -httprecord flag, which is defined by this package // only in test programs (built by “go test”). // See the [Open] documentation for more details. package httprr import ( "bufio" "bytes" "cmp" "context" "flag" "fmt" "io" "net/http" "os" "regexp" "strconv" "strings" "sync" "testing" ) var record = new(string) func init() { if testing.Testing() { record = flag.String("httprecord", "", "re-record traces for files matching `regexp`") } } // A RecordReplay is an [http.RoundTripper] that can operate in two modes: record and replay. // // In record mode, the RecordReplay invokes another RoundTripper // and logs the (request, response) pairs to a file. // // In replay mode, the RecordReplay responds to requests by finding // an identical request in the log and sending the logged response. type RecordReplay struct { file string real http.RoundTripper mu sync.Mutex broken error record *os.File replay map[string]string scrub []func(*http.Request) error } // Scrub adds new scrubbing functions to rr. // // Before using a request as a lookup key or saving it in the record/replay log, // the RecordReplay calls each scrub function, in the order they were registered, // to canonicalize non-deterministic parts of the request and remove secrets. // Scrubbing only applies to a copy of the request used in the record/replay log; // the unmodified original request is sent to the actual server in recording mode. // A scrub function can assume that if req.Body is not nil, then it has type [*Body]. // // Calling Scrub adds to the list of registered scrubbing functions; // it does not replace those registered by earlier calls. func (rr *RecordReplay) Scrub(scrubs ...func(req *http.Request) error) { rr.scrub = append(rr.scrub, scrubs...) } // Recording reports whether the rr is in recording mode. func (rr *RecordReplay) Recording() bool { return rr.record != nil } // Open opens a new record/replay log in the named file and // returns a [RecordReplay] backed by that file. // // By default Open expects the file to exist and contain a // previously-recorded log of (request, response) pairs, // which [RecordReplay.RoundTrip] consults to prepare its responses. // // If the command-line flag -httprecord is set to a non-empty // regular expression that matches file, then Open creates // the file as a new log. In that mode, [RecordReplay.RoundTrip] // makes actual HTTP requests using rt but then logs the requests and // responses to the file for replaying in a future run. func Open(file string, rt http.RoundTripper) (*RecordReplay, error) { if *record != "" { re, err := regexp.Compile(*record) if err != nil { return nil, fmt.Errorf("invalid -httprecord flag: %v", err) } if re.MatchString(file) { return create(file, rt) } } return open(file, rt) } // creates creates a new record-mode RecordReplay in the file. // TODO maybe export func create(file string, rt http.RoundTripper) (*RecordReplay, error) { f, err := os.Create(file) if err != nil { return nil, err } if _, err := fmt.Fprintf(f, "httprr trace v1\n"); err != nil { // unreachable unless write error immediately after os.Create f.Close() return nil, err } rr := &RecordReplay{ file: file, real: rt, record: f, } return rr, nil } // open opens a replay-mode RecordReplay using the data in the file. func open(file string, rt http.RoundTripper) (*RecordReplay, error) { // Note: To handle larger traces without storing entirely in memory, // could instead read the file incrementally, storing a map[hash]offsets // and then reread the relevant part of the file during RoundTrip. bdata, err := os.ReadFile(file) if err != nil { return nil, err } data := string(bdata) line, data, ok := strings.Cut(data, "\n") if !ok || line != "httprr trace v1" { return nil, fmt.Errorf("read %s: not an httprr trace", file) } replay := make(map[string]string) for data != "" { line, data, ok = strings.Cut(data, "\n") f1, f2, _ := strings.Cut(line, " ") n1, err1 := strconv.Atoi(f1) n2, err2 := strconv.Atoi(f2) if !ok || err1 != nil || err2 != nil || n1 > len(data) || n2 > len(data[n1:]) { return nil, fmt.Errorf("read %s: corrupt httprr trace", file) } var req, resp string req, resp, data = data[:n1], data[n1:n1+n2], data[n1+n2:] replay[req] = resp } rr := &RecordReplay{ file: file, real: rt, replay: replay, } return rr, nil } // Client returns an http.Client using rr as its transport. // It is a shorthand for: // // return &http.Client{Transport: rr} // // For more complicated uses, use rr or the [RecordReplay.RoundTrip] method directly. func (rr *RecordReplay) Client() *http.Client { return &http.Client{Transport: rr} } // A Body is an io.ReadCloser used as an HTTP request body. // In a Scrubber, if req.Body != nil, then req.Body is guaranteed // to have type *Body, making it easy to access the body to change it. type Body struct { Data []byte ReadOffset int } // Read reads from the body, implementing io.Reader. func (b *Body) Read(p []byte) (int, error) { n := copy(p, b.Data[b.ReadOffset:]) if n == 0 { return 0, io.EOF } b.ReadOffset += n return n, nil } // Close is a no-op, implementing io.Closer. func (b *Body) Close() error { return nil } // RoundTrip implements [http.RoundTripper]. // // If rr has been opened in record mode, RoundTrip passes the requests on to // the RoundTripper specified in the call to [Open] and then logs the // (request, response) pair to the underlying file. // // If rr has been opened in replay mode, RoundTrip looks up the request in the log // and then responds with the previously logged response. // If the log does not contain req, RoundTrip returns an error. func (rr *RecordReplay) RoundTrip(req *http.Request) (*http.Response, error) { // rkey is the scrubbed request used as a lookup key. rkey := req.Clone(context.Background()) if req.Body != nil { body, err := io.ReadAll(req.Body) req.Body.Close() if err != nil { return nil, err } req.Body = &Body{Data: body} rkey.Body = &Body{Data: bytes.Clone(body)} } if len(rr.scrub) > 0 { // Canonicalize and scrub body. for _, scrub := range rr.scrub { if err := scrub(rkey); err != nil { return nil, err } } } // Now that scrubbers are done potentially modifying body, set length. if rkey.Body != nil { rkey.ContentLength = int64(len(rkey.Body.(*Body).Data)) } // Use WriteProxy instead of Write to preserve the URL scheme. var bkey strings.Builder if err := rkey.WriteProxy(&bkey); err != nil { return nil, err } key := bkey.String() if rr.replay != nil { if respWire, ok := rr.replay[key]; ok { resp, err := http.ReadResponse(bufio.NewReader(strings.NewReader(respWire)), req) if err != nil { return nil, fmt.Errorf("read %s: corrupt httprr trace: %v", rr.file, err) } return resp, nil } return nil, fmt.Errorf("cached HTTP response not found for:\n%s", key) } rr.mu.Lock() err := rr.broken rr.mu.Unlock() if err != nil { return nil, err } resp, err := rr.real.RoundTrip(req) if err != nil { return nil, err } var respBuf strings.Builder if err := resp.Write(&respBuf); err != nil { return nil, err } respWire := respBuf.String() resp, err = http.ReadResponse(bufio.NewReader(strings.NewReader(respWire)), req) if err != nil { // unreachable unless resp.Write does not round-trip with http.ReadResponse return nil, err } rr.mu.Lock() defer rr.mu.Unlock() if rr.broken != nil { // unreachable unless concurrent I/O error; checked above return nil, rr.broken } _, err1 := fmt.Fprintf(rr.record, "%d %d\n", len(key), len(respWire)) _, err2 := rr.record.WriteString(key) _, err3 := rr.record.WriteString(respWire) if err := cmp.Or(err1, err2, err3); err != nil { rr.broken = err rr.record.Close() os.Remove(rr.file) return nil, err } return resp, nil } // Close closes the RecordReplay. // It is a no-op in replay mode. func (rr *RecordReplay) Close() error { if rr.broken != nil { return rr.broken } if rr.record != nil { return rr.record.Close() } return nil }
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/testdata/markdown.txt
-- rsc/markdown#1 -- Title: Support Github Emojis State: closed Assignee: Closed: 2023-12-12 22:02:32 Labels: Milestone: URL: https://github.com/rsc/markdown/issues/1 Reported by matloob (2023-12-12 13:57:39) This is an issue for supporting github emojis, such as `:smile:` for 😄 . There's a github page that gives a mapping of emojis to image file names that we can parse the hex representation out of here: https://api.github.com/emojis. * rsc closed in commit 0ed0e2d (2023-12-12 22:02:32) Author: Russ Cox <rsc@golang.org> 2023-12-12 22:01:10 Committer: Russ Cox <rsc@golang.org> 2023-12-12 22:02:18 markdown: add emoji support It is unclear what the canonical emoji should be. For now we use a list from GitHub. Fixes #1. -- rsc/markdown#2 -- Title: allow capital X in task list items State: closed Assignee: Closed: 2023-12-12 22:02:30 Labels: Milestone: URL: https://github.com/rsc/markdown/issues/2 Reported by matloob (2023-12-12 15:28:39) Here's a go program running goldmark and markdown on the following input: https://go.dev/play/p/fZRthH1dl4B ``` - [X] task list item ``` Which is rendered on github as: - [X] task list item Its output is: ``` markdown: <ul> <li>[X] task list item</li> </ul> goldmark: <ul> <li><input checked="" disabled="" type="checkbox" /> task list item</li> </ul> ``` * rsc closed in commit 58f2e15 (2023-12-12 22:02:31) Author: Russ Cox <rsc@golang.org> 2023-12-12 17:03:54 Committer: Russ Cox <rsc@golang.org> 2023-12-12 17:03:54 markdown: accept [X] in task list Fixes #2. Comment by rsc (2024-06-12 17:59:06) Test comment; ignore. -- rsc/markdown#3 -- Title: support : in autolinks State: closed Assignee: Closed: 2023-12-12 16:04:04 Labels: Milestone: URL: https://github.com/rsc/markdown/issues/3 Reported by matloob (2023-12-12 15:34:03) Edit: it looks like github does treat https://localhost as an autolink even though the GFM spec says a valid domain must have at least one dot. We should support https://localhost:8080 Program running goldmark and markdown on input: https://go.dev/play/p/FCJ0gp84YZQ ``` https://localhost:8080 ``` output is ``` markdown: <p><a href="https://localhost">https://localhost</a>:8080</p> goldmark: <p>https://localhost:8080</p> ``` It looks like goldmark is doing the wrong thing here but we should handle the :8080 * matloob changed title (2023-12-12 16:02:28) - require at least one dot in autolink url domains + support : in autolinks * matloob closed (2023-12-12 16:04:04) Comment by matloob (2023-12-12 16:04:04) This is a duplicate of #5 * rsc referenced in commit 4b85f2b (2023-12-12 22:02:31) Author: Russ Cox <rsc@golang.org> 2023-12-12 17:32:23 Committer: Russ Cox <rsc@golang.org> 2023-12-12 22:02:18 markdown: accept :port in http and https URLs We still do not accept :port in www. URLs. Let's see if it matters. Fixes #3. Fixes #5. -- rsc/markdown#4 -- Title: Replace newlines with spaces in alt text State: closed Assignee: Closed: 2023-12-12 22:02:31 Labels: Milestone: URL: https://github.com/rsc/markdown/issues/4 Reported by matloob (2023-12-12 15:43:15) Here's a go program that runs markdown and goldmark on the following input: https://go.dev/play/p/zZ0vWAgKB0c: ``` [![Line Break](https://line.break/image)](https://line.break) ``` Which is rendered on github with a space instead of the newline in the alt text: ``` <p dir="auto"><a href="https://line.break" rel="nofollow"><img src="https://camo.githubusercontent.com/743b6218bc25f78b5f7f654f1ce773 766351a2e3605cf8b47c60659055c218ac/68747470733a2f2f6c696e652e627265616 b2f696d616765" alt="Line Break" data-canonical-src="https://line.break/image" style="max-width: 100%;"></a></p> ``` The output is ``` markdown: <p><a href="https://line.break"><img src="https://line.break/image" alt="LineBreak" /></a></p> goldmark: <p><a href="https://line.break"><img src="https://line.break/image" alt="Line Break" /></a></p> ``` It seems like goldmark's behavior is also different from github's as goldmark preserves the line break. * rsc closed in commit 4468a1e (2023-12-12 22:02:31) Author: Russ Cox <rsc@golang.org> 2023-12-12 17:27:18 Committer: Russ Cox <rsc@golang.org> 2023-12-12 17:28:50 markdown: convert \n to space in image titles The Dingus doesn't do it, but GitHub and Goldmark do. Fixes #4. -- rsc/markdown#5 -- Title: Allow `?`, `!`, `.`, `,`, `:,` `*`, `_`, and `~` on the interior of a link State: closed Assignee: Closed: 2023-12-12 22:02:31 Labels: Milestone: URL: https://github.com/rsc/markdown/issues/5 Reported by matloob (2023-12-12 15:50:38) GFM allows `?`, `!`, `.`, `,`, `:,` `*`, `_`, and `~` on the interior of a link: https://github.github.com/gfm/#extended-autolink-path-validation Here's a program that compares markdown and goldmark on the following input: https://go.dev/play/p/uLHnavChGYX ```https://web.site:8080/~matloob``` Which is rendered on github as https://web.site:8080/~matloob The output of the program is ``` markdown: <p><a href="https://web.site">https://web.site</a>:8080/~matloob</p> goldmark: <p><a href="https://web.site:8080/~matloob">https://web.site:8080/~matloob</ a></p> ``` Comment by rsc (2023-12-12 17:33:06) I think this bug was specifically only colon. If you find others let me know. * rsc closed in commit 4b85f2b (2023-12-12 22:02:31) Author: Russ Cox <rsc@golang.org> 2023-12-12 17:32:23 Committer: Russ Cox <rsc@golang.org> 2023-12-12 22:02:18 markdown: accept :port in http and https URLs We still do not accept :port in www. URLs. Let's see if it matters. Fixes #3. Fixes #5. Comment by matloob (2023-12-13 12:24:40) It's also showing up with ~. Running the program again, I get ``` markdown: <p><a href="https://web.site:8080/">https://web.site:8080/</a>~matloob</p> goldmark: <p><a href="https://web.site:8080/~matloob">https://web.site:8080/~matloob</ a></p> ``` * rsc referenced in commit 8527271 (2023-12-13 12:44:28) Author: Russ Cox <rsc@golang.org> 2023-12-13 12:43:28 Committer: Russ Cox <rsc@golang.org> 2023-12-13 12:44:05 markdown: fix autolink of ~ when strikethrough is enabled Fixes #5. -- rsc/markdown#6 -- Title: goldmark and markdown diff with h1 inside p State: closed Assignee: Closed: 2023-12-12 22:02:32 Labels: Milestone: URL: https://github.com/rsc/markdown/issues/6 Reported by matloob (2023-12-12 16:26:15) Here's a program that runs goldmark and markdown on the following input: https://go.dev/play/p/rTnPTxps_zw ``` <p align="center"> <h1>Text</h1> body </p> ``` It's hard for me to tell exactly what github is doing with this input, but it doesn't seem like it's putting the h1 into a p: <p align="center"> <h1>Text</h1> body </p> Here's the output of the program: ``` markdown: <p align="center"> <p><h1>Text</h1> body</p> </p> goldmark: <p align="center"> <h1>Text</h1> body </p> ``` * rsc closed in commit 51d9ee0 (2023-12-12 22:02:32) Author: Russ Cox <rsc@golang.org> 2023-12-12 17:41:11 Committer: Russ Cox <rsc@golang.org> 2023-12-12 22:02:18 markdown: allow <h1> to start HTMLBlock Forgot to allow digits in the tag name. Fixes #6. -- rsc/markdown#7 -- Title: Empty column heading not recognized in table State: closed Assignee: Closed: 2023-12-13 18:11:57 Labels: Milestone: URL: https://github.com/rsc/markdown/issues/7 Reported by matloob (2023-12-13 12:45:33) Here's a program that compares markdown and goldmark on the following input https://go.dev/play/p/kEslff4EyTa ``` | | Foo | Bar | | -------- | -------- | -------- | | a | value1 | value2 | | b | value3 | value4 | ``` Rendered in github as | | Foo | Bar | | -------- | -------- | -------- | | a | value1 | value2 | | b | value3 | value4 | The output is ``` markdown: <table> <thead> <tr> <th></th> <th>Foo</th> </tr> </thead> <tbody> <tr> <td>a</td> <td>value1</td> </tr> <tr> <td>b</td> <td>value3</td> </tr> </tbody> </table> goldmark: <table> <thead> <tr> <th></th> <th>Foo</th> <th>Bar</th> </tr> </thead> <tbody> <tr> <td>a</td> <td>value1</td> <td>value2</td> </tr> <tr> <td>b</td> <td>value3</td> <td>value4</td> </tr> </tbody> </table> ``` * rsc closed in commit 8c47459 (2023-12-13 18:11:57) Author: Russ Cox <rsc@golang.org> 2023-12-13 18:06:26 Committer: Russ Cox <rsc@golang.org> 2023-12-13 18:06:26 markdown: fix empty table cells Cannot trim the outer | | more than once. Fixes #7. -- rsc/markdown#8 -- Title: Autolink can't start immediately after `[` State: closed Assignee: Closed: 2023-12-14 11:21:54 Labels: Milestone: URL: https://github.com/rsc/markdown/issues/8 Reported by matloob (2023-12-13 13:44:32) From the [gfm spec](https://github.github.com/gfm/#autolinks-extension): > All such recognized autolinks can only come at the beginning of a line, after whitespace, or any of the delimiting characters *, _, ~, and (. Here's a go program that runs markdown and goldmark on the following input: https://go.dev/play/p/kTjBshQ82iQ ``` [https://golang.org] ``` Rendered in github as [https://golang.org] The output of the program is ``` markdown: <p>[<a href="https://golang.org%5D">https://golang.org]</a></p> goldmark: <p>[https://golang.org]</p> ``` Comment by rsc (2023-12-13 18:09:07) The spec is full of lies: | input | GitHub | | - | - | `xhttps://go.dev` | xhttps://go.dev `0https://go.dev` | 0https://go.dev `%https://go.dev` | %https://go.dev `αhttps://go.dev` | αhttps://go.dev `[https://go.dev` | [https://go.dev `\[https://go.dev` | \[https://go.dev It is pretty funny that you can have an autolink after a 0 or α or % but not [. Comment by rsc (2023-12-13 18:11:43) How many of these did you find? I am inclined to leave [https://go.dev] auto-linking, unless people have adopted an idiom of writing [url] to mean "do not link". Comment by matloob (2023-12-14 11:11:41) I think I saw just one or two on the sample I looked at. I'm okay with leaving this as is * rsc closed (2023-12-14 11:21:54) Comment by rsc (2023-12-14 11:21:54) Please reopen if anything changes. -- rsc/markdown#9 -- Title: Support escaped `|` in table cells State: closed Assignee: Closed: 2023-12-13 18:11:57 Labels: Milestone: URL: https://github.com/rsc/markdown/issues/9 Reported by matloob (2023-12-13 14:03:40) Here's a program that runs goldmark and markdown on the following input https://go.dev/play/p/YgApD-obwxL ``` Foo | Bar --- | --- A | a\\|b\\|c ``` rendered in github as Foo | Bar --- | --- A | a\\|b\\|c The output of the program is ``` markdown: <table> <thead> <tr> <th>Foo</th> <th>Bar</th> </tr> </thead> <tbody> <tr> <td>A</td> <td>a\</td> </tr> </tbody> </table> goldmark: <table> <thead> <tr> <th>Foo</th> <th>Bar</th> </tr> </thead> <tbody> <tr> <td>A</td> <td>a\|b\|c</td> </tr> </tbody> </table> ``` * rsc closed in commit dfcbaf6 (2023-12-13 18:11:57) Author: Russ Cox <rsc@golang.org> 2023-12-13 17:44:56 Committer: Russ Cox <rsc@golang.org> 2023-12-13 17:53:14 markdown: fix/break table escaping In any sane language, if \\ means \ and | means | and \\ | means \ |, then \\| (without the space) would mean \|. But this is not a sane language. This is GitHub Flavored Markdown, and since it is Markdown, that means any time there is a chance to make a mistake and do something unprincipled, you do it. In this case, \| and \\| both mean |, \\\| and \\\\| both mean \|, and so on. Fixes #9. -- rsc/markdown#10 -- Title: fix markdown rendering of headings with IDs State: closed Assignee: Closed: 2024-01-16 23:39:59 Labels: Milestone: URL: https://github.com/rsc/markdown/pull/10 Reported by jba (2024-01-11 08:15:34) Move the newline after the heading text to after the ID. * jba review_requested (2024-01-11 08:15:34) * rsc closed (2024-01-16 23:39:59) Comment by rsc (2024-01-16 23:39:59) Cleaned up (gofmt'ed) and pushed. -- rsc/markdown#11 -- Title: render markdown for document link references State: closed Assignee: Closed: 2024-01-16 23:41:48 Labels: Milestone: URL: https://github.com/rsc/markdown/pull/11 Reported by jba (2024-01-11 09:20:56) * rsc closed (2024-01-16 23:41:48) Comment by rsc (2024-01-16 23:41:48) Reworded commit and pushed. -- rsc/markdown#12 -- Title: markdown: fix markdown printing for inline code State: closed Assignee: Closed: 2024-03-06 09:43:22 Labels: Milestone: URL: https://github.com/rsc/markdown/pull/12 Reported by jba (2024-02-15 18:18:12) Code.printMarkdown outputs the minimum number of backticks that reproduces the content, and adds spaces on either side if necessary. Removed the unused numTicks field. * jba review_requested (2024-02-15 18:18:12) * jba head_ref_force_pushed (2024-02-27 15:29:08) * jba changed title (2024-02-27 15:29:37) - markdown: export Code.NumTicks + markdown: fix markdown printing for inline code * rsc closed (2024-03-06 09:43:22) * rsc merged in commit 0bf8f97 (2024-03-06 09:43:22) Author: Jonathan Amsterdam <jba@users.noreply.github.com> 2024-03-06 09:43:22 Committer: GitHub <noreply@github.com> 2024-03-06 09:43:22 markdown: fix markdown printing for inline code (#12) Code.printMarkdown outputs the minimum number of backticks that reproduces the content, and adds spaces on either side if necessary. Removed the unused numTicks field. * rsc referenced in commit 0bf8f97 (2024-03-06 09:43:24) Author: Jonathan Amsterdam <jba@users.noreply.github.com> 2024-03-06 09:43:22 Committer: GitHub <noreply@github.com> 2024-03-06 09:43:22 markdown: fix markdown printing for inline code (#12) Code.printMarkdown outputs the minimum number of backticks that reproduces the content, and adds spaces on either side if necessary. Removed the unused numTicks field. -- rsc/markdown#13 -- Title: Correctly render reference links in Markdown State: open Assignee: Labels: Milestone: URL: https://github.com/rsc/markdown/issues/13 Reported by zacharysyoung (2024-03-12 15:34:33) Putting the following [reference links] through mdfmt, the output should equal the input: ```none [full][full] [collapsed][] [shortcut] [collapsed]: u2 [full]: u1 [shortcut]: u3 ``` Currently, mdfmt renders all three link styles inline... while keeping the original link reference definitions: ```none [full](u1) [collapsed](u2) [shortcut](u3) [collapsed]: u2 [full]: u1 [shortcut]: u3 ``` [reference links]: https://spec.commonmark.org/0.31.2/#reference-link * zacharysyoung changed title (2024-03-14 14:29:53) - Links w/labels should render to MD as such + Correctly render reference links in Markdown -- rsc/markdown#14 -- Title: Render reference links in Markdown State: closed Assignee: Closed: 2024-03-14 14:41:54 Labels: Milestone: URL: https://github.com/rsc/markdown/pull/14 Reported by zacharysyoung (2024-03-12 15:38:02) Attempting to address #13: correctly render reference links ([full], [collapsed], [shortcut]) in Markdown. [full]: https://spec.commonmark.org/0.31.2/#full-reference-link [collapsed]: https://spec.commonmark.org/0.31.2/#collapsed-reference-link [shortcut]: https://spec.commonmark.org/0.31.2/#shortcut-reference-link * zacharysyoung changed title (2024-03-14 14:26:19) - Render full reference links in Markdown + Render reference links in Markdown * zacharysyoung closed (2024-03-14 14:41:55) * zacharysyoung head_ref_deleted (2024-03-14 14:41:55) * zacharysyoung head_ref_restored (2024-03-14 14:42:29) * zacharysyoung head_ref_deleted (2024-03-14 14:43:15) -- rsc/markdown#15 -- Title: Render reference links in Markdown State: closed Assignee: Closed: 2024-06-17 16:45:27 Labels: Milestone: URL: https://github.com/rsc/markdown/pull/15 Reported by zacharysyoung (2024-03-14 14:45:13) Attempting to address #13: correctly render reference links ([full], [collapsed], [shortcut]) in Markdown. Sorry for the churn (renaming) with #14. [full]: https://spec.commonmark.org/0.31.2/#full-reference-link [collapsed]: https://spec.commonmark.org/0.31.2/#collapsed-reference-link [shortcut]: https://spec.commonmark.org/0.31.2/#shortcut-reference-link * zacharysyoung closed (2024-06-17 16:45:27) * zacharysyoung head_ref_deleted (2024-06-17 17:06:09) -- rsc/markdown#16 -- Title: I'd like to get pretty-printed tables State: closed Assignee: Closed: 2024-06-03 17:56:43 Labels: Milestone: URL: https://github.com/rsc/markdown/issues/16 Reported by zacharysyoung (2024-03-15 19:24:56) I like my tables to look something like: ```none | foo col | bar col | baz col | | :------ | :-----: | ------: | | 1 | 2 | 3 | | a | b | c | ``` with each column's cells padded to fit the max width of that column and match the column's alignment. I'll be doing a PR for this. Can mdfmt turn on the Table option in the parser by default, or with a flag? * rsc closed (2024-06-03 17:56:43) Comment by rsc (2024-06-03 17:56:43) Merged #17. -- rsc/markdown#17 -- Title: Pretty-print tables in Markdown State: closed Assignee: Closed: 2024-06-03 17:56:31 Labels: Milestone: URL: https://github.com/rsc/markdown/pull/17 Reported by zacharysyoung (2024-03-15 19:25:47) Addressing #16. * zacharysyoung changed title (2024-03-15 19:43:26) - Tables are pretty printing + Pretty-print tables * zacharysyoung changed title (2024-03-15 19:43:50) - Pretty-print tables + Pretty-print tables in Markdown * rsc closed (2024-06-03 17:56:31) Comment by rsc (2024-06-03 17:56:31) Thanks, I tweaked the code a bit to avoid some temporary strings and to support Unicode better and merged it. Comment by zacharysyoung (2024-06-03 21:56:30) @rsc, thank you for the comment and the changes. I've fixed the Unicode-vs-string error in other code bases, can't believe I missed that :) I also see what you did to obviate the temp strings. Thanks! * zacharysyoung head_ref_deleted (2024-06-17 17:05:58) -- rsc/markdown#18 -- Title: markdown: emit Info in CodeBlock markdown State: closed Assignee: Closed: 2024-06-03 17:40:04 Labels: Milestone: URL: https://github.com/rsc/markdown/pull/18 Reported by juliaogris (2024-05-02 23:59:00) Emit the Info field of CodeBlock in the CodeBlock.printMardown function so that a round trip from markdown to markdown will preserve the language Info. * jba review_requested (2024-05-06 18:16:49) Comment by jba (2024-05-06 18:16:58) LGTM, will let Russ approve. * rsc closed (2024-06-03 17:40:04) * rsc merged in commit 6c64a5e (2024-06-03 17:40:04) Author: Julia Ogris <julia.ogris@gmail.com> 2024-06-03 17:40:04 Committer: GitHub <noreply@github.com> 2024-06-03 17:40:04 markdown: emit Info in CodeBlock markdown (#18) Emit the Info field of CodeBlock in the CodeBlock.printMardown function so that a round trip from markdown to markdown will preserve the language Info. * rsc referenced in commit 6c64a5e (2024-06-03 17:40:05) Author: Julia Ogris <julia.ogris@gmail.com> 2024-06-03 17:40:04 Committer: GitHub <noreply@github.com> 2024-06-03 17:40:04 markdown: emit Info in CodeBlock markdown (#18) Emit the Info field of CodeBlock in the CodeBlock.printMardown function so that a round trip from markdown to markdown will preserve the language Info. Comment by rsc (2024-06-03 22:57:21) Thanks very much! -- rsc/markdown#19 -- Title: feature: synthesize lowercase anchors for heading State: open Assignee: Labels: Milestone: URL: https://github.com/rsc/markdown/issues/19 Reported by adonovan (2024-05-21 13:56:12) GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID: https://github.com/golang/tools/blob/master/gopls/doc/settings.md#diag nostic https://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diag nostic Perhaps your markdown renderer (which has been really useful--thanks!) could do the same. Comment by rsc (2024-06-03 17:58:35) Is the GitHub algorithm for turning heading text into anchor IDs documented somewhere? I don't mind adding it as an option if I can find the spec. Not sure about two choices, but one automatic choice would be good. (GitHub actually supports any casing at all: https://github.com/golang/tools/blob/master/gopls/doc/settings.md#DiAg NoStIc Clearly JS is doing that.)
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/testdata/rsctmp.txt
-- rsc/tmp#1 -- Title: Dummy issue with dummy title State: closed Assignee: Closed: 2024-06-17 14:56:22 Labels: none Milestone: Granite URL: https://github.com/rsc/tmp/issues/1 Reported by rsc (2015-01-07 23:11:46) For testing. * rsc changed title (2015-01-07 23:12:19) - Dummy issue + Dummy issue with dummy title Comment by rsc (2015-01-07 23:12:37) Hello, world. Comment by rsc (2015-01-07 23:12:49) Another comment. * rsc assigned rsc (2015-01-07 23:13:10) * rsc unassigned rsc (2015-01-07 23:13:16) * rsc labeled mylabel (2015-01-07 23:13:25) * rsc labeled -mylabel (2015-01-07 23:13:30) * rsc unlabeled mylabel (2015-01-07 23:13:30) * rsc added to milestone Granite (2015-01-07 23:14:57) * rsc added to milestone Quartz (2015-01-07 23:15:04) * rsc removed from milestone Granite (2015-01-07 23:15:04) * rsc labeled none (2015-01-07 23:16:22) * rsc unlabeled -mylabel (2015-01-07 23:16:22) * rsc added to milestone Granite (2015-01-07 23:16:36) * rsc removed from milestone Quartz (2015-01-07 23:16:36) * rsc added to milestone Quartz (2015-04-09 20:12:49) * rsc removed from milestone Granite (2015-04-09 20:12:49) * rsc added to milestone Granite (2015-04-09 20:14:18) * rsc removed from milestone Quartz (2015-04-09 20:14:18) Comment by rsc (2015-04-09 20:14:18) Granite is harder. * rsc closed (2024-06-17 14:56:22) -- rsc/tmp#2 -- Title: New dummy issue State: closed Assignee: Closed: 2024-06-17 14:56:28 Labels: Milestone: Granite URL: https://github.com/rsc/tmp/issues/2 Reported by rsc (2015-01-07 23:21:49) * rsc added to milestone Granite (2015-01-07 23:22:25) Comment by rsc (2015-04-09 11:44:11) hello world * rsc added to milestone Quartz (2015-04-09 11:45:36) * rsc removed from milestone Granite (2015-04-09 11:45:36) Comment by rsc (2015-04-09 11:45:36) hello again * rsc added to milestone Granite (2015-04-09 11:45:52) * rsc removed from milestone Quartz (2015-04-09 11:45:52) * rsc labeled xyz (2015-04-09 19:40:21) * rsc unlabeled xyz (2015-04-09 20:04:44) * rsc labeled abcd (2015-04-09 20:05:03) * rsc added to milestone Quartz (2015-04-09 20:12:48) * rsc removed from milestone Granite (2015-04-09 20:12:48) * rsc added to milestone Granite (2015-04-09 20:14:18) * rsc removed from milestone Quartz (2015-04-09 20:14:18) Comment by rsc (2015-04-09 20:14:18) Granite is harder. * rsc labeled foo (2015-04-10 12:16:32) * rsc unlabeled abcd (2015-04-28 15:22:13) * rsc unlabeled foo (2015-04-28 15:22:13) * rsc labeled abcde (2015-04-28 15:22:19) * rsc unlabeled abcde (2015-04-28 15:22:40) * rsc closed (2024-06-17 14:56:29) -- rsc/tmp#3 -- Title: yet another dummy issue State: open Assignee: Labels: Milestone: URL: https://github.com/rsc/tmp/issues/3 Reported by rsc (2015-01-07 23:35:58) lots of these tonight. Comment by rsc (2024-06-17 14:58:48) **Similar Issues** - [New dummy issue #2](https://github.com/rsc/tmp/issues/2) <!-- score=0.83910 --> <sub>(Emoji vote if this was helpful or unhelpful; more detailed feedback welcome in [this discussion](https://github.com/golang/go/discussions/67901).)</sub> -- rsc/tmp#4 -- Title: issue the fourth State: closed Assignee: Closed: 2015-01-07 23:40:50 Labels: Milestone: URL: https://github.com/rsc/tmp/issues/4 Reported by rsc (2015-01-07 23:40:39) more work to do * rsc closed (2015-01-07 23:40:50) -- rsc/tmp#5 -- Title: nabgure arj vffhr State: open Assignee: Labels: abc.def foo Milestone: Granite URL: https://github.com/rsc/tmp/issues/5 Reported by rsc (2015-04-09 11:46:47) just like creating issues * rsc added to milestone Quartz (2015-04-09 11:46:47) * rsc added to milestone Granite (2015-04-10 12:16:33) * rsc labeled foo (2015-04-10 12:16:33) * rsc removed from milestone Quartz (2015-04-10 12:16:33) * rsc labeled abc.def (2019-04-09 14:36:16) Comment by rsc (2024-06-12 18:02:54) Pbzzrag! Comment by rsc (2024-06-12 18:14:43) testing. rot13 is the best. * rsc changed title (2024-06-12 18:16:17) - another new issue + nabgure arj vffhr Comment by rsc (2024-06-12 18:16:17) testing. rot13 is the best. -- rsc/tmp#6 -- Title: grpcbench: fix HTTP/2 benchmark, add HTTP/1.1 State: closed Assignee: Closed: 2017-01-12 08:53:07 Labels: Milestone: URL: https://github.com/rsc/tmp/pull/6 Reported by adg (2017-01-11 20:32:15) * rsc closed (2017-01-12 08:53:07) * rsc merged in commit a5a83b2 (2017-01-12 08:53:07) Author: Andrew Gerrand <adg@golang.org> 2017-01-11 20:31:02 Committer: Russ Cox <rsc@golang.org> 2017-01-12 08:53:06 grpcbench: fix HTTP/2 benchmark, add HTTP/1.1 * rsc referenced in commit a5a83b2 (2017-01-12 08:53:07) Author: Andrew Gerrand <adg@golang.org> 2017-01-11 20:31:02 Committer: Russ Cox <rsc@golang.org> 2017-01-12 08:53:06 grpcbench: fix HTTP/2 benchmark, add HTTP/1.1 Comment by rsc (2017-01-12 08:53:58) Merged without reviewing. Added you as collaborator for the repo. -- rsc/tmp#7 -- Title: fieldtrack: add testing docs State: closed Assignee: Closed: 2017-03-06 19:43:47 Labels: Milestone: URL: https://github.com/rsc/tmp/pull/7 Reported by mdempsky (2017-03-06 17:26:19) I have to always look up either the instructions you sent me or hope it's still in my shell history. I just spent way too long confused because somehow the -k flag was truncated in my history, so of course the test kept failing. * rsc closed (2017-03-06 19:43:47) * rsc merged in commit 1238e6c (2017-03-06 19:43:47) Author: Matthew Dempsky <mdempsky@google.com> 2017-03-06 17:24:55 Committer: Russ Cox <rsc@golang.org> 2017-03-06 19:43:46 fieldtrack: add testing docs * rsc referenced in commit 1238e6c (2017-03-06 19:43:47) Author: Matthew Dempsky <mdempsky@google.com> 2017-03-06 17:24:55 Committer: Russ Cox <rsc@golang.org> 2017-03-06 19:43:46 fieldtrack: add testing docs -- rsc/tmp#8 -- Title: go2asm prints nothing State: open Assignee: Labels: Milestone: URL: https://github.com/rsc/tmp/issues/8 Reported by prestonvanloon (2021-05-19 14:48:46) I followed the example for go2asm and there was no output. ``` go version go1.16.3 linux/amd64 ``` Comment by JAicewizard (2021-06-11 15:47:00) I have the same problem. I would like to edit the assembly of a function to verify potential optimization improvements, this tool seems to be the only one that should allow me to do this. -- rsc/tmp#9 -- Title: go2asm: update startTextRE for go1.17 assembly output State: open Assignee: Labels: Milestone: URL: https://github.com/rsc/tmp/pull/9 Reported by emcfarlane (2022-03-09 08:19:45) Adjusted regex on ouptut from go1.17. Fix for https://github.com/rsc/tmp/issues/8 -- rsc/tmp#10 -- Title: build(deps): bump golang.org/x/text from 0.3.6 to 0.3.8 in /rmplay State: open Assignee: Labels: dependencies Milestone: URL: https://github.com/rsc/tmp/pull/10 Reported by dependabot[bot] (2023-02-23 02:15:03) Bumps [golang.org/x/text](https://github.com/golang/text) from 0.3.6 to 0.3.8. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c7 0027278364c72c"><code>434eadc</code></a> language: reject excessively large Accept-Language strings</li> <li><a href="https://github.com/golang/text/commit/23407e72ed5b895a2dfd230aec 777f4fbe026d6a"><code>23407e7</code></a> go.mod: ignore cyclic dependency for tagging</li> <li><a href="https://github.com/golang/text/commit/b18d3dd8a4b426ebedcf279b59 3e85ac4985b9d3"><code>b18d3dd</code></a> secure/precis: replace bytes.Compare with bytes.Equal</li> <li><a href="https://github.com/golang/text/commit/795e854ff348c9cac4fd0033ce 04c417705dd0bb"><code>795e854</code></a> all: replace io/ioutil with io and os package</li> <li><a href="https://github.com/golang/text/commit/b0ca10ff35f1325c7d0ac7830f e3f036bd72d8f9"><code>b0ca10f</code></a> internal/language: bump script types to uint16 and update registry</li> <li><a href="https://github.com/golang/text/commit/ba9b0e1d4b03523c708709935f bc961124b6967b"><code>ba9b0e1</code></a> go.mod: update x/tools to HEAD</li> <li><a href="https://github.com/golang/text/commit/d03b41800055b01e3895b1e047 af09733c93bf63"><code>d03b418</code></a> A+C: delete AUTHORS and CONTRIBUTORS</li> <li><a href="https://github.com/golang/text/commit/b4bca84b03619dba0065737525 9024a7f8ae6712"><code>b4bca84</code></a> language/display: fix Tag method comment</li> <li><a href="https://github.com/golang/text/commit/ea49e3e2d5b3f1518081d8bc53 ffefc8bc60ecec"><code>ea49e3e</code></a> go.mod: update x/tools to HEAD</li> <li><a href="https://github.com/golang/text/commit/78819d01d041a94e055bbaa2d9 5e5e4d49e8f8a0"><code>78819d0</code></a> go.mod: update to golang.org/x/text v0.1.10</li> <li>Additional commits viewable in <a href="https://github.com/golang/text/compare/v0.3.6...v0.3.8">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_sc ore?dependency-name=golang.org/x/text&package-manager=go_modules&previ ous-version=0.3.6&new-version=0.3.8)](https://docs.github.com/en/githu b/managing-security-vulnerabilities/about-dependabot-security-updates# about-compatibility-scores) You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/rsc/tmp/network/alerts). </details>> **Note** > Automatic rebases have been disabled on this pull request as it has been open for over 30 days. * dependabot[bot] labeled dependencies (2023-02-23 02:15:04) -- rsc/tmp#11 -- Title: build(deps): bump golang.org/x/net from 0.0.0-20200320220750-118fecf932d8 to 0.7.0 in /html2md State: open Assignee: Labels: dependencies Milestone: URL: https://github.com/rsc/tmp/pull/11 Reported by dependabot[bot] (2023-02-24 19:17:13) Bumps [golang.org/x/net](https://github.com/golang/net) from 0.0.0-20200320220750-118fecf932d8 to 0.7.0. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/golang/net/commits/v0.7.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_sc ore?dependency-name=golang.org/x/net&package-manager=go_modules&previo us-version=0.0.0-20200320220750-118fecf932d8&new-version=0.7.0)](https ://docs.github.com/en/github/managing-security-vulnerabilities/about-d ependabot-security-updates#about-compatibility-scores) You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/rsc/tmp/network/alerts). </details>> **Note** > Automatic rebases have been disabled on this pull request as it has been open for over 30 days. * dependabot[bot] labeled dependencies (2023-02-24 19:17:14) -- rsc/tmp#12 -- Title: build(deps): bump golang.org/x/net from 0.0.0-20200707034311-ab3426394381 to 0.7.0 in /unsafeconv State: open Assignee: Labels: dependencies Milestone: URL: https://github.com/rsc/tmp/pull/12 Reported by dependabot[bot] (2023-02-24 19:57:52) Bumps [golang.org/x/net](https://github.com/golang/net) from 0.0.0-20200707034311-ab3426394381 to 0.7.0. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/golang/net/commits/v0.7.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_sc ore?dependency-name=golang.org/x/net&package-manager=go_modules&previo us-version=0.0.0-20200707034311-ab3426394381&new-version=0.7.0)](https ://docs.github.com/en/github/managing-security-vulnerabilities/about-d ependabot-security-updates#about-compatibility-scores) You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/rsc/tmp/network/alerts). </details>> **Note** > Automatic rebases have been disabled on this pull request as it has been open for over 30 days. * dependabot[bot] labeled dependencies (2023-02-24 19:57:53) -- rsc/tmp#13 -- Title: build(deps): bump golang.org/x/net from 0.0.0-20210503060351-7fd8e65b6420 to 0.7.0 in /rmplay State: open Assignee: Labels: dependencies Milestone: URL: https://github.com/rsc/tmp/pull/13 Reported by dependabot[bot] (2023-02-25 01:27:00) Bumps [golang.org/x/net](https://github.com/golang/net) from 0.0.0-20210503060351-7fd8e65b6420 to 0.7.0. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/golang/net/commits/v0.7.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_sc ore?dependency-name=golang.org/x/net&package-manager=go_modules&previo us-version=0.0.0-20210503060351-7fd8e65b6420&new-version=0.7.0)](https ://docs.github.com/en/github/managing-security-vulnerabilities/about-d ependabot-security-updates#about-compatibility-scores) You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/rsc/tmp/network/alerts). </details>> **Note** > Automatic rebases have been disabled on this pull request as it has been open for over 30 days. * dependabot[bot] labeled dependencies (2023-02-25 01:27:01) -- rsc/tmp#14 -- Title: build(deps): bump golang.org/x/sys from 0.0.0-20200812155832-6a926be9bd1d to 0.1.0 in /unsafeconv State: open Assignee: Labels: dependencies Milestone: URL: https://github.com/rsc/tmp/pull/14 Reported by dependabot[bot] (2023-02-25 01:29:40) Bumps [golang.org/x/sys](https://github.com/golang/sys) from 0.0.0-20200812155832-6a926be9bd1d to 0.1.0. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/golang/sys/commits/v0.1.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_sc ore?dependency-name=golang.org/x/sys&package-manager=go_modules&previo us-version=0.0.0-20200812155832-6a926be9bd1d&new-version=0.1.0)](https ://docs.github.com/en/github/managing-security-vulnerabilities/about-d ependabot-security-updates#about-compatibility-scores) You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/rsc/tmp/network/alerts). </details>> **Note** > Automatic rebases have been disabled on this pull request as it has been open for over 30 days. * dependabot[bot] labeled dependencies (2023-02-25 01:29:41) -- rsc/tmp#15 -- Title: build(deps): bump golang.org/x/sys from 0.0.0-20210806184541-e5e7981a1069 to 0.1.0 in /rmplay State: open Assignee: Labels: dependencies Milestone: URL: https://github.com/rsc/tmp/pull/15 Reported by dependabot[bot] (2023-02-25 04:24:25) Bumps [golang.org/x/sys](https://github.com/golang/sys) from 0.0.0-20210806184541-e5e7981a1069 to 0.1.0. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/golang/sys/commits/v0.1.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_sc ore?dependency-name=golang.org/x/sys&package-manager=go_modules&previo us-version=0.0.0-20210806184541-e5e7981a1069&new-version=0.1.0)](https ://docs.github.com/en/github/managing-security-vulnerabilities/about-d ependabot-security-updates#about-compatibility-scores) You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/rsc/tmp/network/alerts). </details>> **Note** > Automatic rebases have been disabled on this pull request as it has been open for over 30 days. * dependabot[bot] labeled dependencies (2023-02-25 04:24:26) -- rsc/tmp#16 -- Title: demo issue State: open Assignee: Labels: Milestone: URL: https://github.com/rsc/tmp/issues/16 Reported by rsc (2023-08-16 14:10:15) demo issue Comment by rsc (2023-08-16 14:10:31) comment 1 Comment by rsc (2023-08-16 14:10:45) comment 2 Comment by rsc (2023-08-16 14:11:48) Four score and seven years ago our fathers brought forth on this continent, a new nation, conceived in Liberty, and dedicated to the proposition that all men are created equal. Now we are engaged in a great Civil War, testing whether that nation, or any nation so conceived and so dedicated, can long endure. We are met on a great battle-field of that war. We have come to dedicate a portion of that field, as a final resting place for those who here gave their lives that that nation might live. It is altogether fitting and proper that we should do this. But, in a larger sense, we can not dedicate — we can not consecrate — we can not hallow — this ground. The brave men, living and dead, who struggled here, have consecrated it, far above our poor power to add or detract. The world will little note, nor long remember what we say here, but it can never forget what they did here. It is for us the living, rather, to be dedicated here to the unfinished work which they who fought here have thus far so nobly advanced. It is rather for us to be here dedicated to the great task remaining before us — that from these honored dead we take increased devotion to that cause for which they gave the last full measure of devotion — that we here highly resolve that these dead shall not have died in vain — that this nation, under God, shall have a new birth of freedom — and that government of the people, by the people, for the people, shall not perish from this earth. Abraham Lincoln, November 19, 1863, Gettysburg, Pennsylvania Comment by rsc (2023-08-16 14:11:58) comment 3 Comment by rsc (2023-08-16 14:12:35) comment 4 this is a very very very very very very very very very very very very very very very very long comment, long enough to scroll off the screen Comment by rsc (2023-08-16 14:12:44) comment 4 this is a very very very very very very very very very very very very very very very very long comment, long enough to scroll off the screen Comment by rsc (2023-08-16 14:12:57) comment 4 this is a very very very very very very very very very very very very very very very very long comment, long enough to scroll off the screen comment 4 this is a very very very very very very very very very very very very very very very very long comment, long enough to scroll off the screen Comment by rsc (2023-08-16 14:13:18) comment Comment by rsc (2023-08-16 14:13:32) comment 4 this is a very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very long comment, long enough to scroll off the screen -- rsc/tmp#17 -- Title: prime issues State: open Assignee: Labels: Milestone: URL: https://github.com/rsc/tmp/issues/17 Reported by rsc (2024-06-13 09:12:34) These are the prime issues: - #2 - #3 - #5 - #7 - #9 -- rsc/tmp#18 -- Title: spellchecking State: open Assignee: Labels: Milestone: URL: https://github.com/rsc/tmp/issues/18 Reported by rsc (2024-06-15 07:20:39) Contexts are cancelled. Comment by rsc (2024-06-17 13:06:17) No really, contexts are cancelled.
secret
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/secret/secret_test.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package secret import ( "os" "path/filepath" "testing" ) func TestNetrc(t *testing.T) { file := filepath.Join(t.TempDir(), "netrc") if err := os.WriteFile(file, []byte(testNetrc), 0666); err != nil { t.Fatal(err) } t.Setenv("NETRC", file) db := Netrc() if secret, ok := db.Get("missing"); secret != "" || ok != false { t.Errorf("Get(missing) = %q, %v, want %q, %v", secret, ok, "", false) } if secret, ok := db.Get("example.com"); secret != "u2:p2" || ok != true { t.Errorf("Get(example.com) = %q, %v, want %q, %v", secret, ok, "u2:p2", true) } func() { defer func() { recover() }() db.Set("name", "value") t.Errorf("Set did not panic") }() } var testNetrc = ` machine example.com login u1 password p1 machine missing login u password p and more machine example.com login u2 password p2 ` func TestEmpty(t *testing.T) { db := Empty() if secret, ok := db.Get("missing"); secret != "" || ok != false { t.Errorf("Get(missing) = %q, %v, want %q, %v", secret, ok, "", false) } func() { defer func() { recover() }() db.Set("name", "value") t.Errorf("Set did not panic") }() }
secret
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/secret/secret.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package secret defines an interface to a database storing secrets, such as passwords and API keys. // // TODO(rsc): Consider adding a basic key: value text file format besides netrc. package secret import ( "os" "path/filepath" "strings" ) // A DB is a secret database, which is a persistent map from names to secret values. type DB interface { Get(name string) (secret string, ok bool) Set(name, secret string) } // Empty returns a read-only, empty secret database. func Empty() DB { return ReadOnlyMap(nil) } // A Map is a read-write, in-memory [DB]. type Map map[string]string // Get returns the named secret. func (m Map) Get(name string) (secret string, ok bool) { secret, ok = m[name] return } // Set adds a secret with the given name. func (m Map) Set(name, secret string) { m[name] = secret } // A ReadOnlyMap is a read-only [DB]. Calling [Set] panics. type ReadOnlyMap map[string]string // Get returns the named secret. func (m ReadOnlyMap) Get(name string) (secret string, ok bool) { secret, ok = m[name] return } // Set panics. func (m ReadOnlyMap) Set(name, secret string) { panic("read-only secrets") } // Netrc returns a read-only secret database initialized by the content of $HOME/.netrc, if it exists. // A line in .netrc of the form // // machine name login user password pass // // causes Get("name") to return "user:pass". // Lines later in .netrc take priority over lines earlier in .netrc. // // If the environment $NETRC is set and non-empty, the file it names is used // instead of $HOME/.netrc. func Netrc() ReadOnlyMap { file := os.Getenv("NETRC") if file == "" { dir, err := os.UserHomeDir() if err != nil { return nil } file = filepath.Join(dir, ".netrc") } return openNetrc(file) } func openNetrc(file string) ReadOnlyMap { m := make(ReadOnlyMap) if data, err := os.ReadFile(file); err == nil { for _, line := range strings.Split(string(data), "\n") { f := strings.Fields(line) if len(f) == 6 && f[0] == "machine" && f[2] == "login" && f[4] == "password" { m[f[1]] = f[3] + ":" + f[5] } } } return m }
embeddocs
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/embeddocs/sync_test.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package embeddocs import ( "context" "fmt" "strings" "testing" "golang.org/x/oscar/internal/docs" "golang.org/x/oscar/internal/llm" "golang.org/x/oscar/internal/storage" "golang.org/x/oscar/internal/testutil" ) var texts = []string{ "for loops", "for all time, always", "break statements", "breakdancing", "forever could never be long enough for me", "the macarena", } func checker(t *testing.T) func(error) { return func(err error) { if err != nil { t.Helper() t.Fatal(err) } } } func TestSync(t *testing.T) { lg := testutil.Slogger(t) db := storage.MemDB() vdb := storage.MemVectorDB(db, lg, "step1") dc := docs.New(db) for i, text := range texts { dc.Add(fmt.Sprintf("URL%d", i), "", text) } Sync(lg, vdb, llm.QuoteEmbedder(), dc) for i, text := range texts { vec, ok := vdb.Get(fmt.Sprintf("URL%d", i)) if !ok { t.Errorf("URL%d missing from vdb", i) continue } vtext := llm.UnquoteVector(vec) if vtext != text { t.Errorf("URL%d decoded to %q, want %q", i, vtext, text) } } for i, text := range texts { dc.Add(fmt.Sprintf("rot13%d", i), "", rot13(text)) } vdb2 := storage.MemVectorDB(db, lg, "step2") Sync(lg, vdb2, llm.QuoteEmbedder(), dc) for i, text := range texts { vec, ok := vdb2.Get(fmt.Sprintf("URL%d", i)) if ok { t.Errorf("URL%d written during second sync: %q", i, llm.UnquoteVector(vec)) continue } vec, ok = vdb2.Get(fmt.Sprintf("rot13%d", i)) vtext := llm.UnquoteVector(vec) if vtext != rot13(text) { t.Errorf("rot13%d decoded to %q, want %q", i, vtext, rot13(text)) } } } func TestBigSync(t *testing.T) { const N = 10000 lg := testutil.Slogger(t) db := storage.MemDB() vdb := storage.MemVectorDB(db, lg, "vdb") dc := docs.New(db) for i := range N { dc.Add(fmt.Sprintf("URL%d", i), "", fmt.Sprintf("Text%d", i)) } Sync(lg, vdb, llm.QuoteEmbedder(), dc) for i := range N { vec, ok := vdb.Get(fmt.Sprintf("URL%d", i)) if !ok { t.Errorf("URL%d missing from vdb", i) continue } text := fmt.Sprintf("Text%d", i) vtext := llm.UnquoteVector(vec) if vtext != text { t.Errorf("URL%d decoded to %q, want %q", i, vtext, text) } } } func TestBadEmbedders(t *testing.T) { const N = 150 db := storage.MemDB() dc := docs.New(db) for i := range N { dc.Add(fmt.Sprintf("URL%03d", i), "", fmt.Sprintf("Text%d", i)) } lg, out := testutil.SlogBuffer() db = storage.MemDB() vdb := storage.MemVectorDB(db, lg, "vdb") Sync(lg, vdb, tooManyEmbed{}, dc) if !strings.Contains(out.String(), "embeddocs length mismatch") { t.Errorf("tooManyEmbed did not report error:\n%s", out) } lg, out = testutil.SlogBuffer() db = storage.MemDB() vdb = storage.MemVectorDB(db, lg, "vdb") Sync(lg, vdb, embedErr{}, dc) if !strings.Contains(out.String(), "EMBED ERROR") { t.Errorf("embedErr did not report error:\n%s", out) } if _, ok := vdb.Get("URL001"); !ok { t.Errorf("Sync did not write URL001 after embedErr") } lg, out = testutil.SlogBuffer() db = storage.MemDB() vdb = storage.MemVectorDB(db, lg, "vdb") Sync(lg, vdb, embedHalf{}, dc) if !strings.Contains(out.String(), "length mismatch") { t.Errorf("embedHalf did not report error:\n%s", out) } if _, ok := vdb.Get("URL001"); !ok { t.Errorf("Sync did not write URL001 after embedHalf") } } func rot13(s string) string { b := []byte(s) for i, x := range b { if 'A' <= x && x <= 'M' || 'a' <= x && x <= 'm' { b[i] = x + 13 } else if 'N' <= x && x <= 'Z' || 'n' <= x && x <= 'z' { b[i] = x - 13 } } return string(b) } type tooManyEmbed struct{} func (tooManyEmbed) EmbedDocs(ctx context.Context, docs []llm.EmbedDoc) ([]llm.Vector, error) { vec, _ := llm.QuoteEmbedder().EmbedDocs(ctx, docs) vec = append(vec, vec...) return vec, nil } type embedErr struct{} func (embedErr) EmbedDocs(ctx context.Context, docs []llm.EmbedDoc) ([]llm.Vector, error) { vec, _ := llm.QuoteEmbedder().EmbedDocs(ctx, docs) return vec, fmt.Errorf("EMBED ERROR") } type embedHalf struct{} func (embedHalf) EmbedDocs(ctx context.Context, docs []llm.EmbedDoc) ([]llm.Vector, error) { vec, _ := llm.QuoteEmbedder().EmbedDocs(ctx, docs) vec = vec[:len(vec)/2] return vec, nil }
embeddocs
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/embeddocs/sync.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package embeddocs implements embedding text docs into a vector database. package embeddocs import ( "context" "log/slog" "golang.org/x/oscar/internal/docs" "golang.org/x/oscar/internal/llm" "golang.org/x/oscar/internal/storage" "golang.org/x/oscar/internal/storage/timed" ) // Sync reads new documents from dc, embeds them using embed, // and then writes the (docid, vector) pairs to vdb. // // Sync uses [docs.DocWatcher] with the the name “embeddocs” to // save its position across multiple calls. // // Sync logs status and unexpected problems to lg. func Sync(lg *slog.Logger, vdb storage.VectorDB, embed llm.Embedder, dc *docs.Corpus) { lg.Info("embeddocs sync") const batchSize = 100 var ( batch []llm.EmbedDoc ids []string batchLast timed.DBTime ) w := dc.DocWatcher("embeddocs") flush := func() bool { vecs, err := embed.EmbedDocs(context.Background(), batch) if len(vecs) > len(ids) { lg.Error("embeddocs length mismatch", "batch", len(batch), "vecs", len(vecs), "ids", len(ids)) return false } vbatch := vdb.Batch() for i, v := range vecs { vbatch.Set(ids[i], v) } vbatch.Apply() if err != nil { lg.Error("embeddocs EmbedDocs error", "err", err) return false } if len(vecs) != len(ids) { lg.Error("embeddocs length mismatch", "batch", len(batch), "vecs", len(vecs), "ids", len(ids)) return false } vdb.Flush() w.MarkOld(batchLast) w.Flush() batch = nil ids = nil return true } for d := range w.Recent() { lg.Debug("embeddocs sync start", "doc", d.ID) batch = append(batch, llm.EmbedDoc{Title: d.Title, Text: d.Text}) ids = append(ids, d.ID) batchLast = d.DBTime if len(batch) >= batchSize { if !flush() { break } } } if len(batch) > 0 { // More to flush, but flush uses w.MarkOld, // which has to be called during an iteration over w.Recent. // Start a new iteration just to call flush and then break out. for _ = range w.Recent() { if !flush() { return } break } } }
github
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/github/data.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package github import ( "encoding/json" "fmt" "iter" "math" "strconv" "strings" "golang.org/x/oscar/internal/storage" "golang.org/x/oscar/internal/storage/timed" "rsc.io/ordered" ) // LookupIssueURL looks up an issue by URL // (for example "https://github.com/golang/go/issues/12345"), // only consulting the database (not actual GitHub). func (c *Client) LookupIssueURL(url string) (*Issue, error) { bad := func() (*Issue, error) { return nil, fmt.Errorf("not a github URL: %q", url) } proj, ok := strings.CutPrefix(url, "https://github.com/") if !ok { return bad() } // If this used strings.Index instead of strings.LastIndex, // we could use strings.Cut instead. But it doesn't, so we can't. // Have to handle a hypothetical repo named golang/issues, // which would have URLs like https://github.com/golang/issues/issues/12345. i := strings.LastIndex(proj, "/issues/") if i < 0 { return bad() } proj, num := proj[:i], proj[i+len("/issues/"):] n, err := strconv.ParseInt(num, 10, 64) if err != nil || n <= 0 { return bad() } for e := range c.Events(proj, n, n) { if e.API == "/issues" { return e.Typed.(*Issue), nil } } return nil, fmt.Errorf("%s#%d not in database", proj, n) } // An Event is a single GitHub issue event stored in the database. type Event struct { DBTime timed.DBTime // when event was last written Project string // project ("golang/go") Issue int64 // issue number API string // API endpoint for event: "/issues", "/issues/comments", or "/issues/events" ID int64 // ID of event; each API has a different ID space. (Project, Issue, API, ID) is assumed unique JSON []byte // JSON for the event data Typed any // Typed unmarshaling of the event data, of type *Issue, *IssueComment, or *IssueEvent } // Events returns an iterator over issue events for the given project, // limited to issues in the range issueMin ≤ issue ≤ issueMax. // If issueMax < 0, there is no upper limit. // The events are iterated over in (Project, Issue, API, ID) order, // so "/issues" events come first, then "/issues/comments", then "/issues/events". // Within a specific API, the events are ordered by increasing ID, // which corresponds to increasing event time on GitHub. func (c *Client) Events(project string, issueMin, issueMax int64) iter.Seq[*Event] { return func(yield func(*Event) bool) { start := o(project, issueMin) if issueMax < 0 { issueMax = math.MaxInt64 } end := o(project, issueMax, ordered.Inf) for t := range timed.Scan(c.db, eventKind, start, end) { if !yield(c.decodeEvent(t)) { return } } } } // EventsAfter returns an iterator over events in the given project after DBTime t, // which should be e.DBTime from the most recent processed event. // The events are iterated over in DBTime order, so the DBTime of the last // successfully processed event can be used in a future call to EventsAfter. // If project is the empty string, then events from all projects are returned. func (c *Client) EventsAfter(t timed.DBTime, project string) iter.Seq[*Event] { filter := func(key []byte) bool { if project == "" { return true } var p string if _, err := ordered.DecodePrefix(key, &p); err != nil { c.db.Panic("github EventsAfter decode", "key", storage.Fmt(key), "err", err) } return p == project } return func(yield func(*Event) bool) { for e := range timed.ScanAfter(c.db, eventKind, t, filter) { if !yield(c.decodeEvent(e)) { return } } } } // decodeEvent decodes the key, val pair into an Event. // It calls c.db.Panic for malformed data. func (c *Client) decodeEvent(t *timed.Entry) *Event { var e Event e.DBTime = t.ModTime if err := ordered.Decode(t.Key, &e.Project, &e.Issue, &e.API, &e.ID); err != nil { c.db.Panic("github event decode", "key", storage.Fmt(t.Key), "err", err) } var js ordered.Raw if err := ordered.Decode(t.Val, &js); err != nil { c.db.Panic("github event val decode", "key", storage.Fmt(t.Key), "val", storage.Fmt(t.Val), "err", err) } e.JSON = js switch e.API { default: c.db.Panic("github event invalid API", "api", e.API) case "/issues": e.Typed = new(Issue) case "/issues/comments": e.Typed = new(IssueComment) case "/issues/events": e.Typed = new(IssueEvent) } if err := json.Unmarshal(js, e.Typed); err != nil { c.db.Panic("github event json", "js", string(js), "err", err) } return &e } // EventWatcher returns a new [storage.Watcher] with the given name. // It picks up where any previous Watcher of the same name left off. func (c *Client) EventWatcher(name string) *timed.Watcher[*Event] { return timed.NewWatcher(c.db, name, eventKind, c.decodeEvent) } // IssueEvent is the GitHub JSON structure for an issue metadata event. type IssueEvent struct { // NOTE: Issue field is not present when downloading for a specific issue, // only in the master feed for the whole repo. So do not add it here. ID int64 `json:"id"` URL string `json:"url"` Actor User `json:"actor"` Event string `json:"event"` Labels []Label `json:"labels"` LockReason string `json:"lock_reason"` CreatedAt string `json:"created_at"` CommitID string `json:"commit_id"` Assigner User `json:"assigner"` Assignees []User `json:"assignees"` Milestone Milestone `json:"milestone"` Rename Rename `json:"rename"` } // A User represents a user or organization account in GitHub JSON. type User struct { Login string `json:"login"` } // A Label represents a project issue tracker label in GitHub JSON. type Label struct { Name string `json:"name"` } // A Milestone represents a project issue milestone in GitHub JSON. type Milestone struct { Title string `json:"title"` } // A Rename describes an issue title renaming in GitHub JSON. type Rename struct { From string `json:"from"` To string `json:"to"` } func urlToProject(u string) string { u, ok := strings.CutPrefix(u, "https://api.github.com/repos/") if !ok { return "" } i := strings.Index(u, "/") if i < 0 { return "" } j := strings.Index(u[i+1:], "/") if j < 0 { return "" } return u[:i+1+j] } func baseToInt64(u string) int64 { i, err := strconv.ParseInt(u[strings.LastIndex(u, "/")+1:], 10, 64) if i <= 0 || err != nil { return 0 } return i } // IssueComment is the GitHub JSON structure for an issue comment event. type IssueComment struct { URL string `json:"url"` IssueURL string `json:"issue_url"` HTMLURL string `json:"html_url"` User User `json:"user"` CreatedAt string `json:"created_at"` UpdatedAt string `json:"updated_at"` Body string `json:"body"` } // Project returns the issue comment's GitHub project (for example, "golang/go"). func (x *IssueComment) Project() string { return urlToProject(x.URL) } // Issue returns the issue comment's issue number. func (x *IssueComment) Issue() int64 { u, _, _ := strings.Cut(x.HTMLURL, "#") return baseToInt64(u) } // CommentID returns the issue comment's numeric ID. // The ID appears to be unique across all comments on GitHub, // but we only assume it is unique within a single issue. func (x *IssueComment) CommentID() int64 { return baseToInt64(x.URL) } // Issue is the GitHub JSON structure for an issue creation event. type Issue struct { URL string `json:"url"` HTMLURL string `json:"html_url"` Number int64 `json:"number"` User User `json:"user"` Title string `json:"title"` CreatedAt string `json:"created_at"` UpdatedAt string `json:"updated_at"` ClosedAt string `json:"closed_at"` Body string `json:"body"` Assignees []User `json:"assignees"` Milestone Milestone `json:"milestone"` State string `json:"state"` PullRequest *struct{} `json:"pull_request"` Locked bool `json:"locked"` ActiveLockReason string `json:"active_lock_reason"` Labels []Label `json:"labels"` } // Project returns the issue's GitHub project (for example, "golang/go"). func (x *Issue) Project() string { return urlToProject(x.URL) }
github
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/github/testing_test.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package github import ( "testing" "golang.org/x/oscar/internal/storage" "golang.org/x/oscar/internal/testutil" ) func TestLoadTxtar(t *testing.T) { gh := New(testutil.Slogger(t), storage.MemDB(), nil, nil) testutil.Check(t, gh.Testing().LoadTxtar("../testdata/rsctmp.txt")) }
github
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/github/edit_test.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package github import ( "net/http" "slices" "testing" "golang.org/x/oscar/internal/httprr" "golang.org/x/oscar/internal/secret" "golang.org/x/oscar/internal/storage" "golang.org/x/oscar/internal/testutil" ) func TestMarkdownEditing(t *testing.T) { check := testutil.Checker(t) lg := testutil.Slogger(t) db := storage.MemDB() // Initial load. rr, err := httprr.Open("testdata/tmpedit.httprr", http.DefaultTransport) check(err) rr.Scrub(Scrub) sdb := secret.DB(secret.Map{"api.github.com": "user:pass"}) if rr.Recording() { sdb = secret.Netrc() } c := New(lg, db, sdb, rr.Client()) check(c.Add("rsc/tmp")) check(c.Sync()) var ei, ec *Event for e := range c.Events("rsc/tmp", 5, 5) { if ei == nil && e.API == "/issues" { ei = e } if ec == nil && e.API == "/issues/comments" { ec = e } } if ei == nil { t.Fatalf("did not find issue #5") } if ec == nil { t.Fatalf("did not find comment on issue #5") } issue := ei.Typed.(*Issue) issue1, err := c.DownloadIssue(issue.URL) check(err) if issue1.Title != issue.Title { t.Errorf("DownloadIssue: Title=%q, want %q", issue1.Title, issue.Title) } comment := ec.Typed.(*IssueComment) comment1, err := c.DownloadIssueComment(comment.URL) check(err) if comment1.Body != comment.Body { t.Errorf("DownloadIssueComment: Body=%q, want %q", comment1.Body, comment.Body) } c.testing = false // edit github directly (except for the httprr in the way) check(c.EditIssueComment(comment, &IssueCommentChanges{Body: rot13(comment.Body)})) check(c.PostIssueComment(issue, &IssueCommentChanges{Body: "testing. rot13 is the best."})) check(c.EditIssue(issue, &IssueChanges{Title: rot13(issue.Title)})) } func TestMarkdownDivertEdit(t *testing.T) { check := testutil.Checker(t) lg := testutil.Slogger(t) db := storage.MemDB() c := New(lg, db, nil, nil) check(c.Testing().LoadTxtar("../testdata/rsctmp.txt")) var ei, ec *Event for e := range c.Events("rsc/tmp", 5, 5) { if ei == nil && e.API == "/issues" { ei = e } if ec == nil && e.API == "/issues/comments" { ec = e } } if ei == nil { t.Fatalf("did not find issue #5") } if ec == nil { t.Fatalf("did not find comment on issue #5") } issue := ei.Typed.(*Issue) issue1, err := c.DownloadIssue(issue.URL) check(err) if issue1.Title != issue.Title { t.Errorf("DownloadIssue: Title=%q, want %q", issue1.Title, issue.Title) } comment := ec.Typed.(*IssueComment) comment1, err := c.DownloadIssueComment(comment.URL) check(err) if comment1.Body != comment.Body { t.Errorf("DownloadIssueComment: Body=%q, want %q", comment1.Body, comment.Body) } check(c.EditIssueComment(comment, &IssueCommentChanges{Body: rot13(comment.Body)})) check(c.PostIssueComment(issue, &IssueCommentChanges{Body: "testing. rot13 is the best."})) check(c.EditIssue(issue, &IssueChanges{Title: rot13(issue.Title), Labels: &[]string{"ebg13"}})) var edits []string for _, e := range c.Testing().Edits() { edits = append(edits, e.String()) } want := []string{ `EditIssueComment(rsc/tmp#5.10000000008, {"body":"Comment!\n"})`, `PostIssueComment(rsc/tmp#5, {"body":"testing. rot13 is the best."})`, `EditIssue(rsc/tmp#5, {"title":"another new issue","labels":["ebg13"]})`, } if !slices.Equal(edits, want) { t.Fatalf("Testing().Edits():\nhave %s\nwant %s", edits, want) } } func rot13(s string) string { b := []byte(s) for i, x := range b { if 'A' <= x && x <= 'M' || 'a' <= x && x <= 'm' { b[i] = x + 13 } else if 'N' <= x && x <= 'Z' || 'n' <= x && x <= 'z' { b[i] = x - 13 } } return string(b) }
github
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/github/testing.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package github import ( "encoding/json" "fmt" "os" "strconv" "strings" "sync/atomic" "testing" "time" "golang.org/x/oscar/internal/storage" "golang.org/x/tools/txtar" ) // Testing returns a TestingClient, which provides access to Client functionality // intended for testing. // Testing only returns a non-nil TestingClient in testing mode, // which is active if the current program is a test binary (that is, [testing.Testing] returns true) // or if [Client.EnableTesting] has been called. // Otherwise, Testing returns nil. // // Each Client has only one TestingClient associated with it. Every call to Testing returns the same TestingClient. func (c *Client) Testing() *TestingClient { if !testing.Testing() { return nil } c.testMu.Lock() defer c.testMu.Unlock() if c.testClient == nil { c.testClient = &TestingClient{c: c} } return c.testClient } // EnableTesting enables testing mode, in which edits are diverted and a TestingClient is available. // If the program is itself a test binary (built or run using “go test”), testing mode is enabled automatically. // EnableTesting can be useful in experimental programs to make sure that no edits // are applied to GitHub. func (c *Client) EnableTesting() { c.testing = true } // A TestingEdit is a diverted edit, which was logged instead of actually applied on GitHub. type TestingEdit struct { Project string Issue int64 Comment int64 IssueChanges *IssueChanges IssueCommentChanges *IssueCommentChanges } // String returns a basic string representation of the edit. func (e *TestingEdit) String() string { switch { case e.IssueChanges != nil: js, _ := json.Marshal(e.IssueChanges) if e.Issue == 0 { return fmt.Sprintf("PostIssue(%s, %s)", e.Project, js) } return fmt.Sprintf("EditIssue(%s#%d, %s)", e.Project, e.Issue, js) case e.IssueCommentChanges != nil: js, _ := json.Marshal(e.IssueCommentChanges) if e.Comment == 0 { return fmt.Sprintf("PostIssueComment(%s#%d, %s)", e.Project, e.Issue, js) } return fmt.Sprintf("EditIssueComment(%s#%d.%d, %s)", e.Project, e.Issue, e.Comment, js) } return "?" } // A TestingClient provides access to Client functionality intended for testing. // // See [Client.Testing] for a description of testing mode. type TestingClient struct { c *Client } // addEvent adds an event to the Client's underlying database. func (tc *TestingClient) addEvent(url string, e *Event) { js := json.RawMessage(storage.JSON(e.Typed)) tc.c.testMu.Lock() if tc.c.testEvents == nil { tc.c.testEvents = make(map[string]json.RawMessage) } tc.c.testEvents[url] = js tc.c.testMu.Unlock() b := tc.c.db.Batch() tc.c.writeEvent(b, e.Project, e.Issue, e.API, e.ID, js) b.Apply() } var issueID int64 = 1e9 // AddIssue adds the given issue to the identified project, // assigning it a new issue number starting at 10⁹. // AddIssue creates a new entry in the associated [Client]'s // underlying database, so other Client's using the same database // will see the issue too. // // NOTE: Only one TestingClient should be adding issues, // since they do not coordinate in the database about ID assignment. // Perhaps they should, but normally there is just one Client. func (tc *TestingClient) AddIssue(project string, issue *Issue) { id := atomic.AddInt64(&issueID, +1) issue.URL = fmt.Sprintf("https://api.github.com/repos/%s/issues/%d", project, issue.Number) issue.HTMLURL = fmt.Sprintf("https://github.com/%s/issues/%d", project, issue.Number) tc.addEvent(issue.URL, &Event{ Project: project, Issue: issue.Number, API: "/issues", ID: id, Typed: issue, }) } var commentID int64 = 1e10 // AddIssueComment adds the given issue comment to the identified project issue, // assigning it a new comment ID starting at 10¹⁰. // AddIssueComment creates a new entry in the associated [Client]'s // underlying database, so other Client's using the same database // will see the issue comment too. // // NOTE: Only one TestingClient should be adding issues, // since they do not coordinate in the database about ID assignment. // Perhaps they should, but normally there is just one Client. func (tc *TestingClient) AddIssueComment(project string, issue int64, comment *IssueComment) { id := atomic.AddInt64(&commentID, +1) comment.URL = fmt.Sprintf("https://api.github.com/repos/%s/issues/comments/%d", project, id) comment.HTMLURL = fmt.Sprintf("https://github.com/%s/issues/%d#issuecomment-%d", project, issue, id) tc.addEvent(comment.URL, &Event{ Project: project, Issue: issue, API: "/issues/comments", ID: id, Typed: comment, }) } var eventID int64 = 1e11 // AddIssueEvent adds the given issue event to the identified project issue, // assigning it a new comment ID starting at 10¹¹. // AddIssueEvent creates a new entry in the associated [Client]'s // underlying database, so other Client's using the same database // will see the issue event too. // // NOTE: Only one TestingClient should be adding issues, // since they do not coordinate in the database about ID assignment. // Perhaps they should, but normally there is just one Client. func (tc *TestingClient) AddIssueEvent(project string, issue int64, event *IssueEvent) { id := atomic.AddInt64(&eventID, +1) event.ID = id event.URL = fmt.Sprintf("https://api.github.com/repos/%s/issues/events/%d", project, id) tc.addEvent(event.URL, &Event{ Project: project, Issue: issue, API: "/issues/comments", ID: id, Typed: event, }) } // Edits returns a list of all the edits that have been applied using [Client] methods // (for example [Client.EditIssue], [Client.EditIssueComment], [Client.PostIssueComment]). // These edits have not been applied on GitHub, only diverted into the [TestingClient]. // // See [Client.Testing] for a description of testing mode. // // NOTE: These edits are not applied to the underlying database, // since they are also not applied to the underlying database when // using a real connection to GitHub; instead we wait for the next // sync to download GitHub's view of the edits. // See [Client.EditIssue]. func (tc *TestingClient) Edits() []*TestingEdit { tc.c.testMu.Lock() defer tc.c.testMu.Unlock() return tc.c.testEdits } // ClearEdits clears the list of edits that are meant to be applied func (tc *TestingClient) ClearEdits() { tc.c.testMu.Lock() defer tc.c.testMu.Unlock() tc.c.testEdits = nil } // divertEdits reports whether edits are being diverted. func (c *Client) divertEdits() bool { return c.testing } // LoadTxtar loads issue histories from the named txtar file, // writing them to the database using [TestingClient.AddIssue], // [TestingClient.AddIssueComment], and [TestingClient.AddIssueEvent]. // // The file should contain a txtar archive (see [golang.org/x/tools/txtar]). // Each file in the archive should be named “project#n” (for example “golang/go#123”) // and contain an issue history in the format printed by the [rsc.io/github/issue] command. // See the file ../testdata/rsctmp.txt for an example. // // To download a specific set of issues into a new file, you can use a script like: // // go install rsc.io/github/issue@latest // project=golang/go // (for i in 1 2 3 4 5 // do // echo "-- $project#$i --" // issue -p $project $i // done) > testdata/proj.txt func (tc *TestingClient) LoadTxtar(file string) error { data, err := os.ReadFile(file) if err != nil { return err } err = tc.LoadTxtarData(data) if err != nil { err = &os.PathError{Op: "load", Path: file, Err: err} } return err } // LoadTxtarData loads issue histories from the txtar file content data. // See [LoadTxtar] for a description of the format. func (tc *TestingClient) LoadTxtarData(data []byte) error { ar := txtar.Parse(data) for _, file := range ar.Files { project, num, ok := strings.Cut(file.Name, "#") n, err := strconv.ParseInt(num, 10, 64) if !ok || strings.Count(project, "/") != 1 || err != nil || n <= 0 { return fmt.Errorf("invalid issue name %q (want 'org/repo#num')", file.Name) } data := string(file.Data) issue := &Issue{Number: n} cutTime := func(line string) (prefix string, tm string, ok bool) { if !strings.HasSuffix(line, ")") { return } i := strings.LastIndex(line, " (") if i < 0 { return } prefix, ts := strings.TrimSpace(line[:i]), line[i+2:len(line)-1] t, err := time.Parse("2006-01-02 15:04:05", ts) return prefix, t.UTC().Format(time.RFC3339), err == nil } // Read header for { line, rest, _ := strings.Cut(data, "\n") data = rest if line == "" { break } key, val, ok := strings.Cut(line, ":") if !ok { return fmt.Errorf("%s: invalid header line: %q", file.Name, line) } val = strings.TrimSpace(val) if val == "" { continue } switch key { case "Title": issue.Title = val case "State": issue.State = val case "Assignee": issue.Assignees = []User{{Login: val}} case "Closed": _, tm, ok := cutTime(" (" + val + ")") if !ok { return fmt.Errorf("%s: invalid close time: %q", file.Name, line) } issue.ClosedAt = tm case "Labels": if val != "" { for _, name := range strings.Split(val, ", ") { issue.Labels = append(issue.Labels, Label{Name: name}) } } case "Milestone": issue.Milestone.Title = val case "URL": want := fmt.Sprintf("https://github.com/%s/issues/%d", project, issue.Number) pr := fmt.Sprintf("https://github.com/%s/pull/%d", project, issue.Number) if val == pr { issue.PullRequest = new(struct{}) continue } if val != want { return fmt.Errorf("%s: invalid URL: %q, want %q", file.Name, val, want) } case "PR": issue.PullRequest = new(struct{}) } } // Read updates. readBody := func() string { data = strings.TrimLeft(data, "\n") var text []string for len(data) > 0 && (data[0] == '\n' || data[0] == '\t') { s, rest, _ := strings.Cut(data, "\n") data = rest text = append(text, strings.TrimPrefix(s, "\t")) } if len(text) > 0 && text[len(text)-1] != "" { text = append(text, "") } return strings.Join(text, "\n") } haveReport := false for data != "" { line, rest, _ := strings.Cut(data, "\n") data = rest if line == "" { continue } prefix, tm, ok := cutTime(line) if !ok { return fmt.Errorf("%s: invalid event time: %q", file.Name, line) } line = prefix if who, ok := strings.CutPrefix(line, "Reported by "); ok { if haveReport { return fmt.Errorf("%s: multiple 'Reported by'", file.Name) } issue.Body = readBody() issue.CreatedAt = tm issue.UpdatedAt = tm issue.User = User{Login: who} haveReport = true tc.AddIssue(project, issue) continue } if who, ok := strings.CutPrefix(line, "Comment by "); ok { if !haveReport { return fmt.Errorf("%s: missing 'Reported by'", file.Name) } body := readBody() tc.AddIssueComment(project, issue.Number, &IssueComment{ User: User{Login: who}, Body: body, CreatedAt: tm, UpdatedAt: tm, }) continue } op, ok := strings.CutPrefix(line, "* ") if !ok { return fmt.Errorf("%s: invalid event description: %q", file.Name, line) } if who, whom, ok := strings.Cut(op, " assigned "); ok { tc.AddIssueEvent(project, issue.Number, &IssueEvent{ Actor: User{Login: who}, Event: "assigned", CreatedAt: tm, Assignees: []User{{Login: whom}}, }) continue } if who, whom, ok := strings.Cut(op, " unassigned "); ok { tc.AddIssueEvent(project, issue.Number, &IssueEvent{ Actor: User{Login: who}, Event: "assigned", CreatedAt: tm, Assignees: []User{{Login: whom}}, }) continue } if who, label, ok := strings.Cut(op, " labeled "); ok { tc.AddIssueEvent(project, issue.Number, &IssueEvent{ Actor: User{Login: who}, Event: "labeled", CreatedAt: tm, Labels: []Label{{Name: label}}, }) continue } if who, label, ok := strings.Cut(op, " unlabeled "); ok { tc.AddIssueEvent(project, issue.Number, &IssueEvent{ Actor: User{Login: who}, Event: "unlabeled", CreatedAt: tm, Labels: []Label{{Name: label}}, }) continue } if who, title, ok := strings.Cut(op, " added to milestone "); ok { tc.AddIssueEvent(project, issue.Number, &IssueEvent{ Actor: User{Login: who}, Event: "milestoned", CreatedAt: tm, Milestone: Milestone{Title: title}, }) continue } if who, title, ok := strings.Cut(op, " removed from milestone "); ok { tc.AddIssueEvent(project, issue.Number, &IssueEvent{ Actor: User{Login: who}, Event: "demilestoned", CreatedAt: tm, Milestone: Milestone{Title: title}, }) continue } if who, ok := strings.CutSuffix(op, " changed title"); ok { if !strings.HasPrefix(data, " - ") { return fmt.Errorf("%s: missing old issue title: %q", file.Name, line) } old, rest, _ := strings.Cut(data[len(" - "):], "\n") if !strings.HasPrefix(rest, " + ") { return fmt.Errorf("%s: missing new issue title: %q", file.Name, line) } new, rest, _ := strings.Cut(rest[len(" + "):], "\n") data = rest tc.AddIssueEvent(project, issue.Number, &IssueEvent{ Actor: User{Login: who}, Event: "renamed", CreatedAt: tm, Rename: Rename{ From: old, To: new, }, }) continue } if who, commit, ok := strings.Cut(op, " closed in commit "); ok { readBody() tc.AddIssueEvent(project, issue.Number, &IssueEvent{ Actor: User{Login: who}, Event: "closed", CreatedAt: tm, CommitID: commit, // note: truncated }) continue } if who, commit, ok := strings.Cut(op, " merged in commit "); ok { readBody() tc.AddIssueEvent(project, issue.Number, &IssueEvent{ Actor: User{Login: who}, Event: "merged", CreatedAt: tm, CommitID: commit, // note: truncated }) continue } if who, commit, ok := strings.Cut(op, " referenced in commit "); ok { readBody() tc.AddIssueEvent(project, issue.Number, &IssueEvent{ Actor: User{Login: who}, Event: "merged", CreatedAt: tm, CommitID: commit, // note: truncated }) continue } if who, ok := strings.CutSuffix(op, " review_requested"); ok { readBody() tc.AddIssueEvent(project, issue.Number, &IssueEvent{ Actor: User{Login: who}, Event: "review_requested", CreatedAt: tm, }) continue } if who, ok := strings.CutSuffix(op, " head_ref_force_pushed"); ok { readBody() tc.AddIssueEvent(project, issue.Number, &IssueEvent{ Actor: User{Login: who}, Event: "head_ref_force_pushed", CreatedAt: tm, }) continue } if who, ok := strings.CutSuffix(op, " head_ref_deleted"); ok { readBody() tc.AddIssueEvent(project, issue.Number, &IssueEvent{ Actor: User{Login: who}, Event: "head_ref_deleted", CreatedAt: tm, }) continue } if who, ok := strings.CutSuffix(op, " head_ref_restored"); ok { readBody() tc.AddIssueEvent(project, issue.Number, &IssueEvent{ Actor: User{Login: who}, Event: "head_ref_restored", CreatedAt: tm, }) continue } if who, ok := strings.CutSuffix(op, " closed"); ok { tc.AddIssueEvent(project, issue.Number, &IssueEvent{ Actor: User{Login: who}, Event: "closed", CreatedAt: tm, }) continue } return fmt.Errorf("%s: invalid event description: %q", file.Name, line) } } return nil } /* event types: https://docs.github.com/en/rest/using-the-rest-api/issue-event-types?apiVersion=2022-11-28#issue-event-object-common-properties added_to_project assigned automatic_base_change_failed automatic_base_change_succeeded base_ref_changed closed commented committed connected convert_to_draft converted_note_to_issue converted_to_discussion cross-referenced demilestoned deployed deployment_environment_changed disconnected head_ref_deleted head_ref_restored head_ref_force_pushed labeled locked mentioned marked_as_duplicate merged milestoned moved_columns_in_project pinned ready_for_review referenced removed_from_project renamed reopened review_dismissed review_requested review_request_removed reviewed subscribed transferred unassigned unlabeled unlocked unmarked_as_duplicate unpinned unsubscribed user_blocked */
github
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/github/edit.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package github import ( "bytes" "encoding/json" "fmt" "io" "net/http" "slices" "strings" "testing" ) // NOTE: It's possible that we should elevate TestingEdit to a general // “deferred edits” facility for use in looking at potential changes. // On the other hand, higher-level code usually needs to know // whether it's making changes or not, so that it can record that // the work has been done, so normally “deferred edits” should be // as high in the stack as possible, and the GitHub client is not. // PostIssueComment posts a new comment with the given body (written in Markdown) on issue. func (c *Client) PostIssueComment(issue *Issue, changes *IssueCommentChanges) error { if c.divertEdits() { c.testMu.Lock() defer c.testMu.Unlock() c.testEdits = append(c.testEdits, &TestingEdit{ Project: issue.Project(), Issue: issue.Number, IssueCommentChanges: changes.clone(), }) return nil } return c.post(issue.URL+"/comments", changes) } // DownloadIssue downloads the current issue JSON from the given URL // and decodes it into an issue. // Given an issue, c.DownloadIssue(issue.URL) fetches the very latest state for the issue. func (c *Client) DownloadIssue(url string) (*Issue, error) { x := new(Issue) _, err := c.get(url, "", x) if err != nil { return nil, err } return x, nil } // DownloadIssueComment downloads the current comment JSON from the given URL // and decodes it into an IssueComment. // Given a comment, c.DownloadIssueComment(comment.URL) fetches the very latest state for the comment. func (c *Client) DownloadIssueComment(url string) (*IssueComment, error) { x := new(IssueComment) _, err := c.get(url, "", x) if err != nil { return nil, err } return x, nil } type IssueCommentChanges struct { Body string `json:"body,omitempty"` } func (ch *IssueCommentChanges) clone() *IssueCommentChanges { x := *ch ch = &x return ch } // EditIssueComment changes the comment on GitHub to have the new body. // It is typically a good idea to use c.DownloadIssueComment first and check // that the live comment body matches the one obtained from the database, // to minimize race windows. func (c *Client) EditIssueComment(comment *IssueComment, changes *IssueCommentChanges) error { if c.divertEdits() { c.testMu.Lock() defer c.testMu.Unlock() c.testEdits = append(c.testEdits, &TestingEdit{ Project: comment.Project(), Issue: comment.Issue(), Comment: comment.CommentID(), IssueCommentChanges: changes.clone(), }) return nil } return c.patch(comment.URL, changes) } // An IssueChanges specifies changes to make to an issue. // Fields that are the empty string or a nil pointer are ignored. // // Note that Labels is the new set of all labels for the issue, // not labels to add. If you are adding a single label, // you need to include all the existing labels as well. // Labels is a *[]string so that it can be set to new([]string) // to clear the labels. type IssueChanges struct { Title string `json:"title,omitempty"` Body string `json:"body,omitempty"` State string `json:"state,omitempty"` Labels *[]string `json:"labels,omitempty"` } func (ch *IssueChanges) clone() *IssueChanges { x := *ch ch = &x if ch.Labels != nil { x := slices.Clone(*ch.Labels) ch.Labels = &x } return ch } // EditIssue applies the changes to issue on GitHub. func (c *Client) EditIssue(issue *Issue, changes *IssueChanges) error { if c.divertEdits() { c.testMu.Lock() defer c.testMu.Unlock() c.testEdits = append(c.testEdits, &TestingEdit{ Project: issue.Project(), Issue: issue.Number, IssueChanges: changes.clone(), }) return nil } return c.patch(issue.URL, changes) } // patch is like c.get but makes a PATCH request. // Unlike c.get, it requires authentication. func (c *Client) patch(url string, changes any) error { return c.json("PATCH", url, changes) } // post is like c.get but makes a POST request. // Unlike c.get, it requires authentication. func (c *Client) post(url string, body any) error { return c.json("POST", url, body) } // json is the general PATCH/POST implementation. func (c *Client) json(method, url string, body any) error { js, err := json.Marshal(body) if err != nil { return err } auth, ok := c.secret.Get("api.github.com") if !ok && !testing.Testing() { return fmt.Errorf("no secret for api.github.com") } user, pass, _ := strings.Cut(auth, ":") Redo: req, err := http.NewRequest(method, url, bytes.NewReader(js)) if err != nil { return err } req.Header.Set("Content-Type", "application/json; charset=utf-8") req.SetBasicAuth(user, pass) resp, err := c.http.Do(req) if err != nil { return err } data, err := io.ReadAll(resp.Body) resp.Body.Close() if err != nil { return fmt.Errorf("reading body: %v", err) } if c.rateLimit(resp) { goto Redo } if resp.StatusCode/10 != 20 { // allow 200, 201, maybe others return fmt.Errorf("%s\n%s", resp.Status, data) } return nil }
github
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/github/sync_test.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package github import ( "bytes" "errors" "iter" "net/http" "slices" "testing" "golang.org/x/oscar/internal/httprr" "golang.org/x/oscar/internal/secret" "golang.org/x/oscar/internal/storage" "golang.org/x/oscar/internal/storage/timed" "golang.org/x/oscar/internal/testutil" ) func TestMarkdown(t *testing.T) { check := testutil.Checker(t) lg := testutil.Slogger(t) db := storage.MemDB() // Initial load. rr, err := httprr.Open("testdata/markdown.httprr", http.DefaultTransport) check(err) rr.Scrub(Scrub) sdb := secret.Empty() if rr.Recording() { sdb = secret.Netrc() } c := New(lg, db, sdb, rr.Client()) check(c.Add("rsc/markdown")) check(c.Sync()) w := c.EventWatcher("test1") for e := range w.Recent() { w.MarkOld(e.DBTime) } // Incremental update. rr, err = httprr.Open("testdata/markdown2.httprr", http.DefaultTransport) check(err) rr.Scrub(Scrub) sdb = secret.Empty() if rr.Recording() { sdb = secret.Netrc() } c = New(lg, db, sdb, rr.Client()) check(c.Sync()) // Test that EventWatcher sees the updates. diffEvents(t, collectEventsAfter(t, 0, c.EventWatcher("test1").Recent()), markdownNewEvents) // Test that without MarkOld, Recent leaves the cursor where it was. diffEvents(t, collectEventsAfter(t, 0, c.EventWatcher("test1").Recent()), markdownNewEvents) // Incremental update. rr, err = httprr.Open("testdata/markdown3.httprr", http.DefaultTransport) check(err) rr.Scrub(Scrub) sdb = secret.Empty() if rr.Recording() { sdb = secret.Netrc() } c = New(lg, db, sdb, rr.Client()) check(c.Sync()) testMarkdownEvents(t, c) } func TestMarkdownIncrementalSync(t *testing.T) { check := testutil.Checker(t) lg := testutil.Slogger(t) db := storage.MemDB() // Initial load. rr, err := httprr.Open("testdata/markdowninc.httprr", http.DefaultTransport) check(err) rr.Scrub(Scrub) sdb := secret.Empty() if rr.Recording() { sdb = secret.Netrc() } c := New(lg, db, sdb, rr.Client()) check(c.Add("rsc/markdown")) testFullSyncStop = errors.New("stop for testing") defer func() { testFullSyncStop = nil }() for { err := c.Sync() if err == nil { break } if !errors.Is(err, testFullSyncStop) { t.Fatal(err) } } testMarkdownEvents(t, c) } func testMarkdownEvents(t *testing.T, c *Client) { // All the events should be present in order. have := collectEvents(c.Events("rsc/markdown", -1, -1)) diffEvents(t, have, markdownEvents) // Again with an early break. have = have[:0] for e := range c.Events("rsc/markdown", -1, 100) { have = append(have, o(e.Project, e.Issue, e.API, e.ID)) if len(have) == len(markdownEvents)/2 { break } } diffEvents(t, have, markdownEvents[:len(markdownEvents)/2]) // Again with a different project. for _ = range c.Events("fauxlang/faux", -1, 100) { t.Errorf("EventsAfter: project filter failed") } // The EventsByTime list should not have any duplicates, even though // the incremental sync revisited some issues. have = collectEventsAfter(t, 0, c.EventsAfter(0, "")) diffEvents(t, have, markdownEvents) // Again with an early break. have = have[:0] for e := range c.EventsAfter(0, "") { have = append(have, o(e.Project, e.Issue, e.API, e.ID)) if len(have) == len(markdownEarlyEvents) { break } } diffEvents(t, have, markdownEarlyEvents) // Again with a different project. for _ = range c.EventsAfter(0, "fauxlang/faux") { t.Errorf("EventsAfter: project filter failed") } } func diffEvents(t *testing.T, have, want [][]byte) { t.Helper() for _, key := range have { for len(want) > 0 && bytes.Compare(want[0], key) < 0 { t.Errorf("Events: missing %s", storage.Fmt(want[0])) want = want[1:] } if len(want) > 0 && bytes.Equal(key, want[0]) { want = want[1:] continue } t.Errorf("Events: unexpected %s", storage.Fmt(key)) } for len(want) > 0 { t.Errorf("Events: missing %s", storage.Fmt(want[0])) want = want[1:] } } func collectEvents(seq iter.Seq[*Event]) [][]byte { var keys [][]byte for e := range seq { keys = append(keys, o(e.Project, e.Issue, e.API, e.ID)) } return keys } func collectEventsAfter(t *testing.T, dbtime timed.DBTime, seq iter.Seq[*Event]) [][]byte { var keys [][]byte for e := range seq { if e.DBTime <= dbtime { // TODO(rsc): t.Helper probably doesn't apply here but should. t.Errorf("EventsSince: DBTime inversion: e.DBTime %d <= last %d", e.DBTime, dbtime) } dbtime = e.DBTime keys = append(keys, o(e.Project, e.Issue, e.API, e.ID)) } slices.SortFunc(keys, bytes.Compare) return keys } func TestIvy(t *testing.T) { check := testutil.Checker(t) lg := testutil.Slogger(t) db := storage.MemDB() rr, err := httprr.Open("testdata/ivy.httprr", http.DefaultTransport) check(err) rr.Scrub(Scrub) sdb := secret.Empty() if rr.Recording() { sdb = secret.Netrc() } c := New(lg, db, sdb, rr.Client()) check(c.Add("robpike/ivy")) check(c.Sync()) } func TestOmap(t *testing.T) { check := testutil.Checker(t) lg := testutil.Slogger(t) db := storage.MemDB() rr, err := httprr.Open("testdata/omap.httprr", http.DefaultTransport) check(err) rr.Scrub(Scrub) sdb := secret.Empty() if rr.Recording() { sdb = secret.Netrc() } c := New(lg, db, sdb, rr.Client()) check(c.Add("rsc/omap")) check(c.Sync()) } var markdownEarlyEvents = [][]byte{ o("rsc/markdown", 3, "/issues", 2038510799), o("rsc/markdown", 2, "/issues", 2038502414), o("rsc/markdown", 4, "/issues", 2038521730), o("rsc/markdown", 1, "/issues", 2038380363), o("rsc/markdown", 6, "/issues", 2038573328), } var markdownNewEvents = [][]byte{ o("rsc/markdown", 16, "/issues", 2189605425), o("rsc/markdown", 16, "/issues/comments", 2146194902), o("rsc/markdown", 16, "/issues/events", 13027435265), o("rsc/markdown", 17, "/issues", 2189605911), o("rsc/markdown", 17, "/issues/comments", 2146194573), o("rsc/markdown", 17, "/issues/comments", 2146421109), o("rsc/markdown", 17, "/issues/events", 13027432818), o("rsc/markdown", 17, "/issues/events", 13028910699), o("rsc/markdown", 17, "/issues/events", 13028910702), o("rsc/markdown", 18, "/issues", 2276848742), o("rsc/markdown", 18, "/issues/comments", 2097019306), o("rsc/markdown", 18, "/issues/comments", 2146475274), o("rsc/markdown", 18, "/issues/events", 13027289256), o("rsc/markdown", 18, "/issues/events", 13027289270), o("rsc/markdown", 18, "/issues/events", 13027289466), o("rsc/markdown", 19, "/issues", 2308816936), o("rsc/markdown", 19, "/issues/comments", 2146197528), } var markdownEvents = [][]byte{ o("rsc/markdown", 1, "/issues", 2038380363), o("rsc/markdown", 1, "/issues/events", 11230676272), o("rsc/markdown", 2, "/issues", 2038502414), o("rsc/markdown", 2, "/issues/events", 11230676151), o("rsc/markdown", 3, "/issues", 2038510799), o("rsc/markdown", 3, "/issues/comments", 1852808662), o("rsc/markdown", 3, "/issues/events", 11228615168), o("rsc/markdown", 3, "/issues/events", 11228628324), o("rsc/markdown", 3, "/issues/events", 11230676181), o("rsc/markdown", 4, "/issues", 2038521730), o("rsc/markdown", 4, "/issues/events", 11230676170), o("rsc/markdown", 5, "/issues", 2038530418), o("rsc/markdown", 5, "/issues/comments", 1852919031), o("rsc/markdown", 5, "/issues/comments", 1854409176), o("rsc/markdown", 5, "/issues/events", 11230676200), o("rsc/markdown", 5, "/issues/events", 11239005964), o("rsc/markdown", 6, "/issues", 2038573328), o("rsc/markdown", 6, "/issues/events", 11230676238), o("rsc/markdown", 7, "/issues", 2040197050), o("rsc/markdown", 7, "/issues/events", 11241620840), o("rsc/markdown", 8, "/issues", 2040277497), o("rsc/markdown", 8, "/issues/comments", 1854835554), o("rsc/markdown", 8, "/issues/comments", 1854837832), o("rsc/markdown", 8, "/issues/comments", 1856133592), o("rsc/markdown", 8, "/issues/comments", 1856151124), o("rsc/markdown", 8, "/issues/events", 11250194227), o("rsc/markdown", 9, "/issues", 2040303458), o("rsc/markdown", 9, "/issues/events", 11241620809), o("rsc/markdown", 10, "/issues", 2076625629), o("rsc/markdown", 10, "/issues/comments", 1894927765), o("rsc/markdown", 10, "/issues/events", 11456466988), o("rsc/markdown", 10, "/issues/events", 11506360992), o("rsc/markdown", 11, "/issues", 2076798270), o("rsc/markdown", 11, "/issues/comments", 1894929190), o("rsc/markdown", 11, "/issues/events", 11506369300), o("rsc/markdown", 12, "/issues", 2137605063), o("rsc/markdown", 12, "/issues/events", 11822212932), o("rsc/markdown", 12, "/issues/events", 11942808811), o("rsc/markdown", 12, "/issues/events", 11942812866), o("rsc/markdown", 12, "/issues/events", 12028957331), o("rsc/markdown", 12, "/issues/events", 12028957356), o("rsc/markdown", 12, "/issues/events", 12028957676), o("rsc/markdown", 13, "/issues", 2182527101), o("rsc/markdown", 13, "/issues/events", 12122378461), o("rsc/markdown", 14, "/issues", 2182534654), o("rsc/markdown", 14, "/issues/events", 12122340938), o("rsc/markdown", 14, "/issues/events", 12122495521), o("rsc/markdown", 14, "/issues/events", 12122495545), o("rsc/markdown", 14, "/issues/events", 12122501258), o("rsc/markdown", 14, "/issues/events", 12122508555), o("rsc/markdown", 15, "/issues", 2187046263), o("rsc/markdown", 16, "/issues", 2189605425), o("rsc/markdown", 16, "/issues/comments", 2146194902), o("rsc/markdown", 16, "/issues/events", 13027435265), o("rsc/markdown", 17, "/issues", 2189605911), o("rsc/markdown", 17, "/issues/comments", 2146194573), o("rsc/markdown", 17, "/issues/comments", 2146421109), o("rsc/markdown", 17, "/issues/events", 12137686933), o("rsc/markdown", 17, "/issues/events", 12137688071), o("rsc/markdown", 17, "/issues/events", 13027432818), o("rsc/markdown", 17, "/issues/events", 13028910699), o("rsc/markdown", 17, "/issues/events", 13028910702), o("rsc/markdown", 18, "/issues", 2276848742), o("rsc/markdown", 18, "/issues/comments", 2097019306), o("rsc/markdown", 18, "/issues/comments", 2146475274), o("rsc/markdown", 18, "/issues/events", 12721108829), o("rsc/markdown", 18, "/issues/events", 13027289256), o("rsc/markdown", 18, "/issues/events", 13027289270), o("rsc/markdown", 18, "/issues/events", 13027289466), o("rsc/markdown", 19, "/issues", 2308816936), o("rsc/markdown", 19, "/issues/comments", 2146197528), }
github
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/github/sync.go
// Copyright 2016 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package github implements sync mechanism to mirror GitHub issue state // into a [storage.DB] as well as code to inspect that state and to make // issue changes on GitHub. // All the functionality is provided by the [Client], created by [New]. package github import ( "encoding/json" "errors" "fmt" "io" "iter" "log/slog" "net/http" "net/url" "strconv" "strings" "sync" "testing" "time" "golang.org/x/oscar/internal/secret" "golang.org/x/oscar/internal/storage" "golang.org/x/oscar/internal/storage/timed" "rsc.io/ordered" ) const ( eventKind = "github.Event" syncProjectKind = "github.SyncProject" ) // This package stores the following key schemas in the database: // // ["github.SyncProject", Project] => JSON of projectSync structure // ["github.Event", Project, Issue, Type, API, ID] => [DBTime, Raw(JSON)] // ["github.EventByTime", DBTime, Project, Issue, Type, API, ID] => [] // // To reconstruct the history of a given issue, scan for keys from // ["github.Event", Project, Issue] to ["github.Event", Project, Issue, ordered.Inf]. // // The API field is "/issues", "/issues/comments", or "/issues/events", // so the first key-value pair is the issue creation event with the issue body text. // // The IDs are GitHub's and appear to be ordered by time within an API, // so that the comments are time-ordered and the events are time-ordered, // but comments and events are not ordered with respect to each other. // To order them fully, fetch all the events and sort by the time in the JSON. // // The JSON is the raw JSON served from GitHub describing the event. // Storing the raw JSON avoids having to re-download everything if we decide // another field is of interest to us. // // EventByTime is an index of Events by DBTime, which is the time when the // record was added to the database. Code that processes new events can // record which DBTime it has most recently processed and then scan forward in // the index to learn about new events. // o is short for ordered.Encode. func o(list ...any) []byte { return ordered.Encode(list...) } // Scrub is a scrubber for use with [rsc.io/httprr] when writing // tests that access GitHub through an httprr.RecordReplay. // It removes auth credentials from the request. func Scrub(req *http.Request) error { req.Header.Del("Authorization") return nil } // A Client is a connection to GitHub state in a database and on GitHub itself. type Client struct { slog *slog.Logger db storage.DB secret secret.DB http *http.Client testing bool testMu sync.Mutex testClient *TestingClient testEdits []*TestingEdit testEvents map[string]json.RawMessage } // New returns a new client that uses the given logger, databases, and HTTP client. // // The secret database is expected to have a secret named "api.github.com" of the // form "user:pass" where user is a user-name (ignored by GitHub) and pass is an API token // ("ghp_..."). func New(lg *slog.Logger, db storage.DB, sdb secret.DB, hc *http.Client) *Client { return &Client{ slog: lg, db: db, secret: sdb, http: hc, testing: testing.Testing(), } } // A projectSync is per-GitHub project ("owner/repo") sync state stored in the database. type projectSync struct { Name string // owner/repo EventETag string EventID int64 IssueDate string CommentDate string RefillID int64 FullSyncActive bool FullSyncIssue int64 } // store stores proj into db. func (proj *projectSync) store(db storage.DB) { db.Set(o(syncProjectKind, proj.Name), storage.JSON(proj)) } // Add adds a GitHub project of the form // "owner/repo" (for example "golang/go") // to the database. // It only adds the project sync metadata. // The initial data fetch does not happen until [Sync] or [SyncProject] is called. // Add returns an error if the project has already been added. func (c *Client) Add(project string) error { key := o(syncProjectKind, project) if _, ok := c.db.Get(key); ok { return fmt.Errorf("github.Add: already added: %q", project) } c.db.Set(key, storage.JSON(&projectSync{Name: project})) return nil } // Sync syncs all projects. func (c *Client) Sync() error { var errs []error for key, _ := range c.db.Scan(o(syncProjectKind), o(syncProjectKind, ordered.Inf)) { var project string if err := ordered.Decode(key, new(string), &project); err != nil { c.db.Panic("github client sync decode", "key", storage.Fmt(key), "err", err) } if err := c.SyncProject(project); err != nil { errs = append(errs, err) } } return errors.Join(errs...) } // If testFullSyncStop is non-nil, then SyncProject returns this error // after each event is processed, to allow testing that interrupted syncs // save state and can make progress. var testFullSyncStop error // SyncProject syncs a single project. func (c *Client) SyncProject(project string) (err error) { c.slog.Debug("github.SyncProject", "project", project) defer func() { if err != nil { err = fmt.Errorf("SyncProject(%q): %w", project, err) } }() key := o(syncProjectKind, project) skey := string(key) // Lock the project, so that no one else is sync'ing // the project at the same time. c.db.Lock(skey) defer c.db.Unlock(skey) // Load sync state. var proj projectSync if val, ok := c.db.Get(key); !ok { return fmt.Errorf("missing project") } else if err := json.Unmarshal(val, &proj); err != nil { return err } // Sync issues, comments, events. if err := c.syncIssues(&proj); err != nil { return err } if err := c.syncIssueComments(&proj); err != nil { return err } // See syncIssueEvents doc comment for details about this dance. // The incremental event sync only works up to a certain number // of events. To initialize a repo, we need a “full sync” that scans one // issue at a time. We also need the full sync if we fall too far behind // by not syncing for many days. if proj.EventID == 0 || proj.FullSyncActive { // Full scan. if proj.EventID == 0 { proj.FullSyncActive = true proj.FullSyncIssue = 0 proj.store(c.db) if err := c.syncIssueEvents(&proj, 0, true); err != nil { return err } } if err := c.syncIssues(&proj); err != nil { return err } for key, _ := range c.db.Scan(o(eventKind, project), o(eventKind, project, ordered.Inf)) { var issue int64 if _, err := ordered.DecodePrefix(key, nil, nil, &issue); err != nil { return err } if issue <= proj.FullSyncIssue { continue } if err := c.syncIssueEvents(&proj, issue, false); err != nil { return err } proj.FullSyncIssue = issue proj.store(c.db) if testFullSyncStop != nil { return testFullSyncStop } } // Fall through to incremental scan to clean up. proj.FullSyncActive = false proj.store(c.db) } // Incremental scan. if err := c.syncIssueEvents(&proj, 0, false); err != nil { return err } return nil } // syncIssues syncs the issues for a given project. // It records all new issues since proj.IssueDate. // If successful, it updates proj.IssueDate to the latest issue date seen. func (c *Client) syncIssues(proj *projectSync) error { return c.syncByDate(proj, "/issues") } // syncIssueComments sync the issue comments for a given project. // It records all new issue comments since proj.CommentDate. // If successful, it updates proj.CommentDate to the latest comment date seen. func (c *Client) syncIssueComments(proj *projectSync) error { return c.syncByDate(proj, "/issues/comments") } // syncByDate downloads and saves issues or issue comments since // the date specified in proj (proj.IssueDate or proj.CommentDate). // api is "/issues" for issues or "/issues/comments" for issue comments. // syncByDate updates the proj date with the new latest date seen // before any error. func (c *Client) syncByDate(proj *projectSync, api string) error { Restart: // For these APIs, we can ask GitHub for the event stream in increasing time order, // so we can iterate through all the events, saving the latest time we have seen, // and pick up where we left off. var since *string values := url.Values{ "sort": {"updated"}, "direction": {"asc"}, "page": {"1"}, } switch api { default: panic("downloadByDate api: " + api) case "/issues": since = &proj.IssueDate values["state"] = []string{"all"} values["per_page"] = []string{"100"} case "/issues/comments": since = &proj.CommentDate } if *since != "" { values["since"] = []string{*since} } b := c.db.Batch() defer b.Apply() urlStr := "https://api.github.com/repos/" + proj.Name + api + "?" + values.Encode() npage := 0 defer proj.store(c.db) for pg, err := range c.pages(urlStr, "") { if err != nil { return err } for _, raw := range pg.body { var meta struct { ID int64 `json:"id"` Updated string `json:"updated_at"` Number int64 `json:"number"` // for /issues feed IssueURL string `json:"issue_url"` // for /issues/comments feed CreatedAt string `json:"created_at"` } if err := json.Unmarshal(raw, &meta); err != nil { return fmt.Errorf("parsing JSON: %v", err) } if meta.ID == 0 { return fmt.Errorf("parsing message: no id: %s", string(raw)) } if meta.Updated == "" { return fmt.Errorf("parsing JSON: no updated_at: %s", string(raw)) } switch api { default: c.db.Panic("github downloadByDate bad api", "api", api) case "/issues": if meta.Number == 0 { return fmt.Errorf("parsing message: no number: %s", string(raw)) } case "/issues/comments": n, err := strconv.ParseInt(meta.IssueURL[strings.LastIndex(meta.IssueURL, "/")+1:], 10, 64) if err != nil { return fmt.Errorf("invalid comment URL: %s", meta.IssueURL) } meta.Number = n } c.writeEvent(b, proj.Name, meta.Number, api, meta.ID, raw) b.MaybeApply() *since = meta.Updated } b.Apply() proj.store(c.db) // update *since // GitHub stops returning results after 1000 pages. // After 500 pages, restart pagination with a new since value. // TODO: Write a test. if npage++; npage >= 500 { goto Restart } } return nil } // syncIssueEvents downloads and saves new issue events in the given project. // // The /issues/events API does not have a "since time T" option: // it lists events going backward in time, so we have to read backward // until we find an event we've seen before. Only then can we update // the "most recent seen event" proj.EventID, since otherwise there // is still an unread gap between what we saw before and what we've // seen so far. If syncIssueEvents is able to read back far enough, it // updates proj.EventID and proj.EventETag. // // If onlySetLatest is true, syncIssueEvents does not store any events // but does write down the most recent proj.EventID and proj.EventETag. // (This doesn't make sense yet but keep reading.) // // The /issues/events API has a limit to how far back it can read, // so if it has been a very long time since we last updated // (or if this is the first sync), we may not reach the last known event. // In that case, we have to resort to syncing each event separately // using /issues/n/events, under the assumption that any one issue // will be short enough to iterate its entire event list. // // If issue > 0, the sync uses /issues/n/events and does not update // proj.EventID or proj.EventETag. The caller is expected to be looping // over all events in this case. // // To sync all issues events in a repo with too many events, the full sync sequence is: // // - c.syncIssueEvents(proj, 0, true) to set EventID and EventETag // to the current latest event in the repo, establishing a lower bound on what // we will record during the next steps. // // - c.syncIssues(proj) to get the full list of issues. // // - c.syncIssueEvents(proj, issue, false) for every issue found by syncIssues. // // Now the database should contain all the events with id <= proj.EventID // but it may also contain newer ones. // // - c.syncIssueEvents(proj, 0, false) to read any events since the beginning of the sync. // // Now the database should contain all events up to the new proj.EventID. func (c *Client) syncIssueEvents(proj *projectSync, issue int64, onlySetLatest bool) error { if issue > 0 && onlySetLatest { panic("syncIssueEvents misuse") } values := url.Values{ "page": {"1"}, "per_page": {"100"}, } var api = "/issues/events" if issue > 0 { api = fmt.Sprintf("/issues/%d/events", issue) } urlStr := "https://api.github.com/repos/" + proj.Name + api + "?" + values.Encode() var ( firstID int64 firstETag string lastID int64 stopped bool ) b := c.db.Batch() defer b.Apply() Pages: for pg, err := range c.pages(urlStr, proj.EventETag) { if err == errNotModified { return nil } if err != nil { return err } for _, raw := range pg.body { var meta struct { ID int64 `json:"id"` URL string `json:"url"` Issue struct { Number int64 `json:"number"` } `json:"issue"` } if err := json.Unmarshal(raw, &meta); err != nil { return fmt.Errorf("parsing JSON: %v", err) } if issue > 0 { meta.Issue.Number = issue } else if meta.Issue.Number == 0 { return fmt.Errorf("parsing message: no issue number: %s", string(raw)) } if meta.ID == 0 { return fmt.Errorf("parsing message: no id: %s", string(raw)) } if firstID == 0 { firstID = meta.ID firstETag = pg.resp.Header.Get("Etag") } lastID = meta.ID if issue == 0 && (onlySetLatest || proj.EventID != 0 && meta.ID <= proj.EventID) { stopped = true break Pages } c.writeEvent(b, proj.Name, meta.Issue.Number, "/issues/events", meta.ID, raw) b.MaybeApply() } } if issue == 0 && lastID != 0 && !stopped { return fmt.Errorf("lost sync: missing event IDs between %d and %d", proj.EventID, lastID) } if issue == 0 { proj.EventID = firstID proj.EventETag = firstETag proj.store(c.db) } return nil } // writeEvent writes a single event to the database using SetTimed, to maintain a time-ordered index. func (c *Client) writeEvent(b storage.Batch, project string, issue int64, api string, id int64, raw json.RawMessage) { timed.Set(c.db, b, eventKind, o(project, issue, api, id), o(ordered.Raw(raw))) } // errNotModified is returned by get when an etag is being used // and the server returns a 304 not modified response. var errNotModified = errors.New("304 not modified") // get fetches url and decodes the body as JSON into obj. // // If etag is non-empty, the request includes an If-None-Match: etag header // and get returns errNotModified if the server says the object is unmodified // since that etag. // // get uses the api.github.com secret if available. // Otherwise it makes an unauthenticated request. func (c *Client) get(url, etag string, obj any) (*http.Response, error) { if c.divertEdits() { c.testMu.Lock() js := c.testEvents[url] c.testMu.Unlock() if js != nil { resp := &http.Response{ StatusCode: 200, Status: "200 OK", } return resp, json.Unmarshal(js, obj) } } auth, _ := c.secret.Get("api.github.com") if _, pass, ok := strings.Cut(auth, ":"); ok { // Accept token as "password" in user:pass from netrc secret store auth = pass } nrate := 0 nfail := 0 Redo: req, err := http.NewRequest("GET", url, nil) if err != nil { return nil, err } req.Header.Set("Authorization", "Bearer "+auth) if etag != "" { req.Header.Set("If-None-Match", etag) } resp, err := c.http.Do(req) if err != nil { return nil, err } data, err := io.ReadAll(resp.Body) resp.Body.Close() if err != nil { return nil, fmt.Errorf("reading body: %v", err) } if resp.StatusCode != http.StatusOK { if resp.StatusCode == http.StatusNotModified { // 304 return nil, errNotModified } if c.rateLimit(resp) { if nrate++; nrate > 20 { return nil, fmt.Errorf("%s # too many rate limits\n%s", resp.Status, data) } goto Redo } if resp.StatusCode == http.StatusInternalServerError || resp.StatusCode == http.StatusBadGateway { // 500, 502 c.slog.Error("github get server failure", "code", resp.StatusCode, "status", resp.Status, "body", string(data)) if nfail++; nfail < 3 { time.Sleep(time.Duration(nfail) * 2 * time.Second) goto Redo } } return nil, fmt.Errorf("%s\n%s", resp.Status, data) } return resp, json.Unmarshal(data, obj) } // A page is an HTTP response with a body that is a JSON array of objects. // The objects are not decoded (they are json.RawMessages). type page struct { resp *http.Response body []json.RawMessage } // pages returns a paginated result starting at url and using etag. // If pages encounters an error, it yields nil, err. func (c *Client) pages(url, etag string) iter.Seq2[*page, error] { return func(yield func(*page, error) bool) { for url != "" { var body []json.RawMessage resp, err := c.get(url, etag, &body) if err != nil { yield(nil, err) return } if !yield(&page{resp, body}, nil) { return } url = findNext(resp.Header.Get("Link")) } } } // findNext finds the "next" URL in the Link header value. // Sample Link header: // // Link: <https://api.github.com/repositories/26468385/issues?direction=asc&page=2&per_page=100&sort=updated&state=all>; rel="next", <https://api.github.com/repositories/26468385/issues?direction=asc&page=2&per_page=100&sort=updated&state=all>; rel="last" // // The format is a comma-separated list of <LINK>; rel="type". func findNext(link string) string { for link != "" { link = strings.TrimSpace(link) if !strings.HasPrefix(link, "<") { break } i := strings.Index(link, ">") if i < 0 { break } linkURL := link[1:i] link = strings.TrimSpace(link[i+1:]) for strings.HasPrefix(link, ";") { link = strings.TrimSpace(link[1:]) i := strings.Index(link, ";") j := strings.Index(link, ",") if i < 0 || j >= 0 && j < i { i = j } if i < 0 { i = len(link) } attr := strings.TrimSpace(link[:i]) if attr == `rel="next"` { return linkURL } link = link[i:] } if !strings.HasPrefix(link, ",") { break } link = strings.TrimSpace(link[1:]) } return "" } // rateLimit looks at the response to decide whether a rate limit has been applied. // If so, rateLimit sleeps until the time specified in the response, plus a bit extra. // rateLimit reports whether this was a rate-limit response. func (c *Client) rateLimit(resp *http.Response) bool { if resp.StatusCode != http.StatusForbidden || resp.Header.Get("X-Ratelimit-Remaining") != "0" { return false } n, _ := strconv.Atoi(resp.Header.Get("X-Ratelimit-Reset")) if n == 0 { return false } t := time.Unix(int64(n), 0) now := time.Now() const timeSkew = 1 * time.Minute delay := t.Sub(now) + timeSkew if delay < 0 { // We are being asked to sleep until a time that already happened. // If it happened recently (within timeSkew), then maybe our clock // is just out of sync with GitHub's clock. // But if it happened long ago, we are probably reading an old HTTP trace. // In that case, return false (we didn't find a valid ratelimit). return false } c.slog.Info("github ratelimit", "reset", t.Format(time.RFC3339), "limit", resp.Header.Get("X-Ratelimit-Limit"), "remaining", resp.Header.Get("X-Ratelimit-Remaining"), "used", resp.Header.Get("X-Ratelimit-Used")) time.Sleep(delay) return true }
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/github/testdata/markdown.httprr
httprr trace v1 176 49838 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Accept-Ranges: bytes Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: public, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:18:53 GMT Etag: W/"c3e50e871a714b0947b84823d2dc4c525eb7eaab341cb83b562d20af142428ba" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F461:3487CD:17EB8D:281F20:665E333C X-Ratelimit-Limit: 60 X-Ratelimit-Remaining: 35 X-Ratelimit-Reset: 1717452520 X-Ratelimit-Resource: core X-Ratelimit-Used: 25 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/3","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/3/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/3/events","html_url":"https://github.com/rsc/markdown/issues/3","id":2038510799,"node_id":"I_kwDOKnFwjc55gTTP","number":3,"title":"support : in autolinks","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-12-12T20:34:03Z","updated_at":"2023-12-12T21:04:04Z","closed_at":"2023-12-12T21:04:04Z","author_association":"NONE","active_lock_reason":null,"body":"Edit: it looks like github does treat https://localhost as an autolink even though the GFM spec says a valid domain must have at least one dot. We should support https://localhost:8080\r\n\r\nProgram running goldmark and markdown on input: https://go.dev/play/p/FCJ0gp84YZQ\r\n\r\n```\r\nhttps://localhost:8080\r\n```\r\n\r\noutput is ```\r\nmarkdown:\r\n<p><a href=\"https://localhost\">https://localhost</a>:8080</p>\r\n\r\n\r\ngoldmark:\r\n<p>https://localhost:8080</p>\r\n```\r\n\r\nIt looks like goldmark is doing the wrong thing here but we should handle the :8080\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/3/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/3/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/rsc/markdown/issues/2","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/2/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/2/events","html_url":"https://github.com/rsc/markdown/issues/2","id":2038502414,"node_id":"I_kwDOKnFwjc55gRQO","number":2,"title":"allow capital X in task list items","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-12-12T20:28:39Z","updated_at":"2023-12-13T03:02:30Z","closed_at":"2023-12-13T03:02:30Z","author_association":"NONE","active_lock_reason":null,"body":"Here's a go program running goldmark and markdown on the following input: https://go.dev/play/p/fZRthH1dl4B\r\n```\r\n- [X] task list item\r\n```\r\nWhich is rendered on github as:\r\n\r\n- [X] task list item\r\n\r\nIts output is:\r\n```\r\nmarkdown:\r\n<ul>\r\n<li>[X] task list item</li>\r\n</ul>\r\n\r\n\r\ngoldmark:\r\n<ul>\r\n<li><input checked=\"\" disabled=\"\" type=\"checkbox\" /> task list item</li>\r\n</ul>\r\n\r\n```","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/2/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/2/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/rsc/markdown/issues/4","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/4/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/4/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/4/events","html_url":"https://github.com/rsc/markdown/issues/4","id":2038521730,"node_id":"I_kwDOKnFwjc55gV-C","number":4,"title":"Replace newlines with spaces in alt text","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-12-12T20:43:15Z","updated_at":"2023-12-13T03:02:31Z","closed_at":"2023-12-13T03:02:31Z","author_association":"NONE","active_lock_reason":null,"body":"Here's a go program that runs markdown and goldmark on the following input: https://go.dev/play/p/zZ0vWAgKB0c:\r\n\r\n```\r\n[![Line\r\nBreak](https://line.break/image)](https://line.break)\r\n```\r\n\r\nWhich is rendered on github with a space instead of the newline in the alt text:\r\n\r\n```\r\n<p dir=\"auto\"><a href=\"https://line.break\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/743b6218bc25f78b5f7f654f1ce773766351a2e3605cf8b47c60659055c218ac/68747470733a2f2f6c696e652e627265616b2f696d616765\" alt=\"Line Break\" data-canonical-src=\"https://line.break/image\" style=\"max-width: 100%;\"></a></p>\r\n```\r\n\r\nThe output is \r\n```\r\nmarkdown:\r\n<p><a href=\"https://line.break\"><img src=\"https://line.break/image\" alt=\"LineBreak\" /></a></p>\r\n\r\n\r\ngoldmark:\r\n<p><a href=\"https://line.break\"><img src=\"https://line.break/image\" alt=\"Line\r\nBreak\" /></a></p>\r\n```\r\n\r\nIt seems like goldmark's behavior is also different from github's as goldmark preserves the line break.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/4/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/4/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/rsc/markdown/issues/1","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/1/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/1/events","html_url":"https://github.com/rsc/markdown/issues/1","id":2038380363,"node_id":"I_kwDOKnFwjc55fzdL","number":1,"title":"Support Github Emojis","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-12-12T18:57:39Z","updated_at":"2023-12-13T03:02:32Z","closed_at":"2023-12-13T03:02:32Z","author_association":"NONE","active_lock_reason":null,"body":"This is an issue for supporting github emojis, such as `:smile:` for 😄 . There's a github page that gives a mapping of emojis to image file names that we can parse the hex representation out of here: https://api.github.com/emojis.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/1/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/1/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/rsc/markdown/issues/6","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/6/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/6/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/6/events","html_url":"https://github.com/rsc/markdown/issues/6","id":2038573328,"node_id":"I_kwDOKnFwjc55gikQ","number":6,"title":"goldmark and markdown diff with h1 inside p","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-12-12T21:26:15Z","updated_at":"2023-12-13T03:02:32Z","closed_at":"2023-12-13T03:02:32Z","author_association":"NONE","active_lock_reason":null,"body":"Here's a program that runs goldmark and markdown on the following input: https://go.dev/play/p/rTnPTxps_zw\r\n\r\n```\r\n<p align=\"center\">\r\n\r\n<h1>Text</h1>\r\nbody\r\n</p>\r\n```\r\n\r\nIt's hard for me to tell exactly what github is doing with this input, but it doesn't seem like it's putting the h1 into a p:\r\n\r\n<p align=\"center\">\r\n\r\n<h1>Text</h1>\r\nbody\r\n</p>\r\n\r\nHere's the output of the program:\r\n```\r\nmarkdown:\r\n<p align=\"center\">\r\n<p><h1>Text</h1>\r\nbody</p>\r\n</p>\r\n\r\n\r\ngoldmark:\r\n<p align=\"center\">\r\n<h1>Text</h1>\r\nbody\r\n</p>\r\n```","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/6/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/6/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/rsc/markdown/issues/5","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/5/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/5/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/5/events","html_url":"https://github.com/rsc/markdown/issues/5","id":2038530418,"node_id":"I_kwDOKnFwjc55gYFy","number":5,"title":"Allow `?`, `!`, `.`, `,`, `:,` `*`, `_`, and `~` on the interior of a link","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2023-12-12T20:50:38Z","updated_at":"2023-12-13T17:24:41Z","closed_at":"2023-12-13T03:02:31Z","author_association":"NONE","active_lock_reason":null,"body":"GFM allows `?`, `!`, `.`, `,`, `:,` `*`, `_`, and `~` on the interior of a link: https://github.github.com/gfm/#extended-autolink-path-validation\r\n\r\nHere's a program that compares markdown and goldmark on the following input: https://go.dev/play/p/uLHnavChGYX\r\n\r\n```https://web.site:8080/~matloob```\r\n\r\nWhich is rendered on github as \r\nhttps://web.site:8080/~matloob\r\n\r\nThe output of the program is \r\n```\r\nmarkdown:\r\n<p><a href=\"https://web.site\">https://web.site</a>:8080/~matloob</p>\r\n\r\n\r\ngoldmark:\r\n<p><a href=\"https://web.site:8080/~matloob\">https://web.site:8080/~matloob</a></p>\r\n```","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/5/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/5/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/rsc/markdown/issues/7","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/7/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/7/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/7/events","html_url":"https://github.com/rsc/markdown/issues/7","id":2040197050,"node_id":"I_kwDOKnFwjc55mu-6","number":7,"title":"Empty column heading not recognized in table","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-12-13T17:45:33Z","updated_at":"2023-12-13T23:11:57Z","closed_at":"2023-12-13T23:11:57Z","author_association":"NONE","active_lock_reason":null,"body":"Here's a program that compares markdown and goldmark on the following input https://go.dev/play/p/kEslff4EyTa\r\n\r\n```\r\n| | Foo | Bar |\r\n| -------- | -------- | -------- |\r\n| a | value1 | value2 |\r\n| b | value3 | value4 |\r\n```\r\n\r\nRendered in github as \r\n| | Foo | Bar |\r\n| -------- | -------- | -------- |\r\n| a | value1 | value2 |\r\n| b | value3 | value4 |\r\n\r\nThe output is\r\n```\r\nmarkdown:\r\n<table>\r\n<thead>\r\n<tr>\r\n<th></th>\r\n<th>Foo</th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td>a</td>\r\n<td>value1</td>\r\n</tr>\r\n<tr>\r\n<td>b</td>\r\n<td>value3</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n\r\ngoldmark:\r\n<table>\r\n<thead>\r\n<tr>\r\n<th></th>\r\n<th>Foo</th>\r\n<th>Bar</th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td>a</td>\r\n<td>value1</td>\r\n<td>value2</td>\r\n</tr>\r\n<tr>\r\n<td>b</td>\r\n<td>value3</td>\r\n<td>value4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n```","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/7/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/7/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/rsc/markdown/issues/9","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/9/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/9/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/9/events","html_url":"https://github.com/rsc/markdown/issues/9","id":2040303458,"node_id":"I_kwDOKnFwjc55nI9i","number":9,"title":"Support escaped `|` in table cells","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-12-13T19:03:40Z","updated_at":"2023-12-13T23:11:57Z","closed_at":"2023-12-13T23:11:57Z","author_association":"NONE","active_lock_reason":null,"body":"Here's a program that runs goldmark and markdown on the following input https://go.dev/play/p/YgApD-obwxL\r\n\r\n```\r\nFoo | Bar\r\n--- | ---\r\nA | a\\\\|b\\\\|c\r\n```\r\n\r\nrendered in github as \r\n\r\nFoo | Bar\r\n--- | ---\r\nA | a\\\\|b\\\\|c\r\n\r\nThe output of the program is \r\n```\r\nmarkdown:\r\n<table>\r\n<thead>\r\n<tr>\r\n<th>Foo</th>\r\n<th>Bar</th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td>A</td>\r\n<td>a\\</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n\r\ngoldmark:\r\n<table>\r\n<thead>\r\n<tr>\r\n<th>Foo</th>\r\n<th>Bar</th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td>A</td>\r\n<td>a\\|b\\|c</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n```","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/9/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/9/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/rsc/markdown/issues/8","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/8/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/8/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/8/events","html_url":"https://github.com/rsc/markdown/issues/8","id":2040277497,"node_id":"I_kwDOKnFwjc55nCn5","number":8,"title":"Autolink can't start immediately after `[`","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":4,"created_at":"2023-12-13T18:44:32Z","updated_at":"2023-12-14T16:21:54Z","closed_at":"2023-12-14T16:21:54Z","author_association":"NONE","active_lock_reason":null,"body":"From the [gfm spec](https://github.github.com/gfm/#autolinks-extension): \r\n\r\n> All such recognized autolinks can only come at the beginning of a line, after whitespace, or any of the delimiting characters *, _, ~, and (.\r\n\r\nHere's a go program that runs markdown and goldmark on the following input: https://go.dev/play/p/kTjBshQ82iQ\r\n\r\n```\r\n[https://golang.org]\r\n```\r\nRendered in github as \r\n\r\n[https://golang.org]\r\n\r\nThe output of the program is \r\n\r\n```\r\nmarkdown:\r\n<p>[<a href=\"https://golang.org%5D\">https://golang.org]</a></p>\r\n\r\n\r\ngoldmark:\r\n<p>[https://golang.org]</p>\r\n```","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/8/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/8/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/rsc/markdown/issues/10","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/10/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/10/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/10/events","html_url":"https://github.com/rsc/markdown/pull/10","id":2076625629,"node_id":"PR_kwDOKnFwjc5jzktS","number":10,"title":"fix markdown rendering of headings with IDs","user":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-01-11T13:15:34Z","updated_at":"2024-01-17T04:39:59Z","closed_at":"2024-01-17T04:39:59Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/10","html_url":"https://github.com/rsc/markdown/pull/10","diff_url":"https://github.com/rsc/markdown/pull/10.diff","patch_url":"https://github.com/rsc/markdown/pull/10.patch","merged_at":null},"body":"Move the newline after the heading text to after the ID.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/10/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/10/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/11","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/11/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/11/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/11/events","html_url":"https://github.com/rsc/markdown/pull/11","id":2076798270,"node_id":"PR_kwDOKnFwjc5j0LtA","number":11,"title":"render markdown for document link references","user":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-01-11T14:20:56Z","updated_at":"2024-01-17T04:41:48Z","closed_at":"2024-01-17T04:41:48Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/11","html_url":"https://github.com/rsc/markdown/pull/11","diff_url":"https://github.com/rsc/markdown/pull/11.diff","patch_url":"https://github.com/rsc/markdown/pull/11.patch","merged_at":null},"body":null,"reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/11/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/11/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/12","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/12/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/12/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/12/events","html_url":"https://github.com/rsc/markdown/pull/12","id":2137605063,"node_id":"PR_kwDOKnFwjc5nCLz2","number":12,"title":"markdown: fix markdown printing for inline code","user":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-02-15T23:18:12Z","updated_at":"2024-03-06T14:43:22Z","closed_at":"2024-03-06T14:43:22Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/12","html_url":"https://github.com/rsc/markdown/pull/12","diff_url":"https://github.com/rsc/markdown/pull/12.diff","patch_url":"https://github.com/rsc/markdown/pull/12.patch","merged_at":"2024-03-06T14:43:22Z"},"body":"Code.printMarkdown outputs the minimum number of backticks that reproduces the content, and adds spaces on either side if necessary.\r\n\r\nRemoved the unused numTicks field. ","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/12/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/12/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/14","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/14/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/14/events","html_url":"https://github.com/rsc/markdown/pull/14","id":2182534654,"node_id":"PR_kwDOKnFwjc5pbW8-","number":14,"title":"Render reference links in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-03-12T19:38:02Z","updated_at":"2024-03-14T18:43:15Z","closed_at":"2024-03-14T18:41:54Z","author_association":"NONE","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/14","html_url":"https://github.com/rsc/markdown/pull/14","diff_url":"https://github.com/rsc/markdown/pull/14.diff","patch_url":"https://github.com/rsc/markdown/pull/14.patch","merged_at":null},"body":"Attempting to address #13: correctly render reference links ([full], [collapsed], [shortcut]) in Markdown.\r\n\r\n[full]: https://spec.commonmark.org/0.31.2/#full-reference-link\r\n[collapsed]: https://spec.commonmark.org/0.31.2/#collapsed-reference-link\r\n[shortcut]: https://spec.commonmark.org/0.31.2/#shortcut-reference-link","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/14/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/14/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/15","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/15/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/15/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/15/events","html_url":"https://github.com/rsc/markdown/pull/15","id":2187046263,"node_id":"PR_kwDOKnFwjc5pqvgm","number":15,"title":"Render reference links in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-03-14T18:45:13Z","updated_at":"2024-03-14T18:45:13Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/15","html_url":"https://github.com/rsc/markdown/pull/15","diff_url":"https://github.com/rsc/markdown/pull/15.diff","patch_url":"https://github.com/rsc/markdown/pull/15.patch","merged_at":null},"body":"Attempting to address #13: correctly render reference links ([full], [collapsed], [shortcut]) in Markdown.\r\n\r\nSorry for the churn (renaming) with #14.\r\n\r\n[full]: https://spec.commonmark.org/0.31.2/#full-reference-link\r\n[collapsed]: https://spec.commonmark.org/0.31.2/#collapsed-reference-link\r\n[shortcut]: https://spec.commonmark.org/0.31.2/#shortcut-reference-link","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/15/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/15/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/16","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/16/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/16/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/16/events","html_url":"https://github.com/rsc/markdown/issues/16","id":2189605425,"node_id":"I_kwDOKnFwjc6Cgrox","number":16,"title":"I'd like to get pretty-printed tables","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-03-15T23:24:56Z","updated_at":"2024-03-15T23:33:06Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"I like my tables to look something like:\r\n\r\n```none\r\n| foo col | bar col | baz col |\r\n| :------ | :-----: | ------: |\r\n| 1 | 2 | 3 |\r\n| a | b | c |\r\n```\r\n\r\nwith each column's cells padded to fit the max width of that column and match the column's alignment.\r\n\r\nI'll be doing a PR for this. Can mdfmt turn on the Table option in the parser by default, or with a flag?","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/16/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/16/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/17","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/17/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/17/events","html_url":"https://github.com/rsc/markdown/pull/17","id":2189605911,"node_id":"PR_kwDOKnFwjc5pzlwt","number":17,"title":"Pretty-print tables in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-03-15T23:25:47Z","updated_at":"2024-03-15T23:43:50Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/17","html_url":"https://github.com/rsc/markdown/pull/17","diff_url":"https://github.com/rsc/markdown/pull/17.diff","patch_url":"https://github.com/rsc/markdown/pull/17.patch","merged_at":null},"body":"Addressing #16.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/17/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/13","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/13/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/13/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/13/events","html_url":"https://github.com/rsc/markdown/issues/13","id":2182527101,"node_id":"I_kwDOKnFwjc6CFrh9","number":13,"title":"Correctly render reference links in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-03-12T19:34:33Z","updated_at":"2024-04-14T22:51:33Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"Putting the following [reference links] through mdfmt, the output should equal the input:\r\n\r\n```none\r\n[full][full]\r\n[collapsed][]\r\n[shortcut]\r\n\r\n[collapsed]: u2\r\n[full]: u1\r\n[shortcut]: u3\r\n```\r\n\r\nCurrently, mdfmt renders all three link styles inline... while keeping the original link reference definitions:\r\n\r\n```none\r\n[full](u1)\r\n[collapsed](u2)\r\n[shortcut](u3)\r\n\r\n[collapsed]: u2\r\n[full]: u1\r\n[shortcut]: u3\r\n```\r\n\r\n[reference links]: https://spec.commonmark.org/0.31.2/#reference-link","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/13/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/13/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/18","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/18/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/18/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/18/events","html_url":"https://github.com/rsc/markdown/pull/18","id":2276848742,"node_id":"PR_kwDOKnFwjc5ubgV0","number":18,"title":"markdown: emit Info in CodeBlock markdown","user":{"login":"juliaogris","id":1596871,"node_id":"MDQ6VXNlcjE1OTY4NzE=","avatar_url":"https://avatars.githubusercontent.com/u/1596871?v=4","gravatar_id":"","url":"https://api.github.com/users/juliaogris","html_url":"https://github.com/juliaogris","followers_url":"https://api.github.com/users/juliaogris/followers","following_url":"https://api.github.com/users/juliaogris/following{/other_user}","gists_url":"https://api.github.com/users/juliaogris/gists{/gist_id}","starred_url":"https://api.github.com/users/juliaogris/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/juliaogris/subscriptions","organizations_url":"https://api.github.com/users/juliaogris/orgs","repos_url":"https://api.github.com/users/juliaogris/repos","events_url":"https://api.github.com/users/juliaogris/events{/privacy}","received_events_url":"https://api.github.com/users/juliaogris/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-03T03:59:00Z","updated_at":"2024-05-06T22:16:59Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/18","html_url":"https://github.com/rsc/markdown/pull/18","diff_url":"https://github.com/rsc/markdown/pull/18.diff","patch_url":"https://github.com/rsc/markdown/pull/18.patch","merged_at":null},"body":"Emit the Info field of CodeBlock in the CodeBlock.printMardown function so \r\nthat a round trip from markdown to markdown will preserve the language Info.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/18/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/18/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-05-21T17:56:12Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer synthesizes lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]162 17166 GET https://api.github.com/repos/rsc/markdown/issues/comments?direction=asc&page=1&sort=updated HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Accept-Ranges: bytes Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: public, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:18:53 GMT Etag: W/"4a7c97ec5d907f1cb1f62de535b87d75c2d5b18825c011586730605ecb54c444" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F461:3487CD:17EC69:28207B:665E333D X-Ratelimit-Limit: 60 X-Ratelimit-Remaining: 34 X-Ratelimit-Reset: 1717452520 X-Ratelimit-Resource: core X-Ratelimit-Used: 26 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/1852808662","html_url":"https://github.com/rsc/markdown/issues/3#issuecomment-1852808662","issue_url":"https://api.github.com/repos/rsc/markdown/issues/3","id":1852808662,"node_id":"IC_kwDOKnFwjc5ub53W","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"created_at":"2023-12-12T21:04:04Z","updated_at":"2023-12-12T21:04:04Z","author_association":"NONE","body":"This is a duplicate of #5 ","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/1852808662/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/1852919031","html_url":"https://github.com/rsc/markdown/issues/5#issuecomment-1852919031","issue_url":"https://api.github.com/repos/rsc/markdown/issues/5","id":1852919031,"node_id":"IC_kwDOKnFwjc5ucUz3","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2023-12-12T22:33:06Z","updated_at":"2023-12-12T22:33:06Z","author_association":"OWNER","body":"I think this bug was specifically only colon. If you find others let me know.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/1852919031/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/1854409176","html_url":"https://github.com/rsc/markdown/issues/5#issuecomment-1854409176","issue_url":"https://api.github.com/repos/rsc/markdown/issues/5","id":1854409176,"node_id":"IC_kwDOKnFwjc5uiAnY","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"created_at":"2023-12-13T17:24:40Z","updated_at":"2023-12-13T17:24:40Z","author_association":"NONE","body":"It's also showing up with ~. Running the program again, I get\r\n\r\n```\r\nmarkdown:\r\n<p><a href=\"https://web.site:8080/\">https://web.site:8080/</a>~matloob</p>\r\n\r\n\r\ngoldmark:\r\n<p><a href=\"https://web.site:8080/~matloob\">https://web.site:8080/~matloob</a></p>\r\n\r\n```\r\n\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/1854409176/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/1854835554","html_url":"https://github.com/rsc/markdown/issues/8#issuecomment-1854835554","issue_url":"https://api.github.com/repos/rsc/markdown/issues/8","id":1854835554,"node_id":"IC_kwDOKnFwjc5ujoti","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2023-12-13T23:09:07Z","updated_at":"2023-12-13T23:10:07Z","author_association":"OWNER","body":"The spec is full of lies:\r\n\r\n| input | GitHub |\r\n| - | - |\r\n`xhttps://go.dev` | xhttps://go.dev\r\n`0https://go.dev` | 0https://go.dev\r\n`%https://go.dev` | %https://go.dev\r\n`αhttps://go.dev` | αhttps://go.dev\r\n`[https://go.dev` | [https://go.dev\r\n`\\[https://go.dev` | \\[https://go.dev\r\n\r\nIt is pretty funny that you can have an autolink after a 0 or α or % but not [.\r\n\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/1854835554/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/1854837832","html_url":"https://github.com/rsc/markdown/issues/8#issuecomment-1854837832","issue_url":"https://api.github.com/repos/rsc/markdown/issues/8","id":1854837832,"node_id":"IC_kwDOKnFwjc5ujpRI","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2023-12-13T23:11:43Z","updated_at":"2023-12-13T23:13:09Z","author_association":"OWNER","body":"How many of these did you find? I am inclined to leave [https://go.dev] auto-linking, unless people have adopted an idiom of writing [url] to mean \"do not link\".\r\n\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/1854837832/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/1856133592","html_url":"https://github.com/rsc/markdown/issues/8#issuecomment-1856133592","issue_url":"https://api.github.com/repos/rsc/markdown/issues/8","id":1856133592,"node_id":"IC_kwDOKnFwjc5uolnY","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"created_at":"2023-12-14T16:11:41Z","updated_at":"2023-12-14T16:11:41Z","author_association":"NONE","body":"I think I saw just one or two on the sample I looked at. I'm okay with leaving this as is","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/1856133592/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/1856151124","html_url":"https://github.com/rsc/markdown/issues/8#issuecomment-1856151124","issue_url":"https://api.github.com/repos/rsc/markdown/issues/8","id":1856151124,"node_id":"IC_kwDOKnFwjc5uop5U","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2023-12-14T16:21:54Z","updated_at":"2023-12-14T16:21:54Z","author_association":"OWNER","body":"Please reopen if anything changes.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/1856151124/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/1894927765","html_url":"https://github.com/rsc/markdown/pull/10#issuecomment-1894927765","issue_url":"https://api.github.com/repos/rsc/markdown/issues/10","id":1894927765,"node_id":"IC_kwDOKnFwjc5w8k2V","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-01-17T04:39:59Z","updated_at":"2024-01-17T04:39:59Z","author_association":"OWNER","body":"Cleaned up (gofmt'ed) and pushed.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/1894927765/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/1894929190","html_url":"https://github.com/rsc/markdown/pull/11#issuecomment-1894929190","issue_url":"https://api.github.com/repos/rsc/markdown/issues/11","id":1894929190,"node_id":"IC_kwDOKnFwjc5w8lMm","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-01-17T04:41:48Z","updated_at":"2024-01-17T04:41:48Z","author_association":"OWNER","body":"Reworded commit and pushed.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/1894929190/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2097019306","html_url":"https://github.com/rsc/markdown/pull/18#issuecomment-2097019306","issue_url":"https://api.github.com/repos/rsc/markdown/issues/18","id":2097019306,"node_id":"IC_kwDOKnFwjc58_fmq","user":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"created_at":"2024-05-06T22:16:58Z","updated_at":"2024-05-06T22:16:58Z","author_association":"COLLABORATOR","body":"LGTM, will let Russ approve.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2097019306/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}]146 119888 GET https://api.github.com/repos/rsc/markdown/issues/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Accept-Ranges: bytes Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: public, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:18:53 GMT Etag: W/"b32162ef721268ee8773fa3227c3895dbc769136adf7a51b10b7d6bcefc94ddc" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F461:3487CD:17ECFD:282178:665E333D X-Ratelimit-Limit: 60 X-Ratelimit-Remaining: 33 X-Ratelimit-Reset: 1717452520 X-Ratelimit-Resource: core X-Ratelimit-Used: 27 X-Xss-Protection: 0 [{"id":12721108829,"node_id":"RRE_lADOKnFwjc6HtfRmzwAAAAL2PLdd","url":"https://api.github.com/repos/rsc/markdown/issues/events/12721108829","actor":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"event":"review_requested","commit_id":null,"commit_url":null,"created_at":"2024-05-06T22:16:49Z","review_requester":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"requested_reviewer":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/18","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/18/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/18/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/18/events","html_url":"https://github.com/rsc/markdown/pull/18","id":2276848742,"node_id":"PR_kwDOKnFwjc5ubgV0","number":18,"title":"markdown: emit Info in CodeBlock markdown","user":{"login":"juliaogris","id":1596871,"node_id":"MDQ6VXNlcjE1OTY4NzE=","avatar_url":"https://avatars.githubusercontent.com/u/1596871?v=4","gravatar_id":"","url":"https://api.github.com/users/juliaogris","html_url":"https://github.com/juliaogris","followers_url":"https://api.github.com/users/juliaogris/followers","following_url":"https://api.github.com/users/juliaogris/following{/other_user}","gists_url":"https://api.github.com/users/juliaogris/gists{/gist_id}","starred_url":"https://api.github.com/users/juliaogris/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/juliaogris/subscriptions","organizations_url":"https://api.github.com/users/juliaogris/orgs","repos_url":"https://api.github.com/users/juliaogris/repos","events_url":"https://api.github.com/users/juliaogris/events{/privacy}","received_events_url":"https://api.github.com/users/juliaogris/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-03T03:59:00Z","updated_at":"2024-05-06T22:16:59Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/18","html_url":"https://github.com/rsc/markdown/pull/18","diff_url":"https://github.com/rsc/markdown/pull/18.diff","patch_url":"https://github.com/rsc/markdown/pull/18.patch","merged_at":null},"body":"Emit the Info field of CodeBlock in the CodeBlock.printMardown function so \r\nthat a round trip from markdown to markdown will preserve the language Info.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/18/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/18/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":12137688071,"node_id":"RTE_lADOKnFwjc6CgrwXzwAAAALTdmwH","url":"https://api.github.com/repos/rsc/markdown/issues/events/12137688071","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2024-03-15T23:43:50Z","rename":{"from":"Pretty-print tables","to":"Pretty-print tables in Markdown"},"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/17","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/17/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/17/events","html_url":"https://github.com/rsc/markdown/pull/17","id":2189605911,"node_id":"PR_kwDOKnFwjc5pzlwt","number":17,"title":"Pretty-print tables in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-03-15T23:25:47Z","updated_at":"2024-03-15T23:43:50Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/17","html_url":"https://github.com/rsc/markdown/pull/17","diff_url":"https://github.com/rsc/markdown/pull/17.diff","patch_url":"https://github.com/rsc/markdown/pull/17.patch","merged_at":null},"body":"Addressing #16.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/17/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":12137686933,"node_id":"RTE_lADOKnFwjc6CgrwXzwAAAALTdmeV","url":"https://api.github.com/repos/rsc/markdown/issues/events/12137686933","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2024-03-15T23:43:26Z","rename":{"from":"Tables are pretty printing","to":"Pretty-print tables"},"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/17","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/17/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/17/events","html_url":"https://github.com/rsc/markdown/pull/17","id":2189605911,"node_id":"PR_kwDOKnFwjc5pzlwt","number":17,"title":"Pretty-print tables in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-03-15T23:25:47Z","updated_at":"2024-03-15T23:43:50Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/17","html_url":"https://github.com/rsc/markdown/pull/17","diff_url":"https://github.com/rsc/markdown/pull/17.diff","patch_url":"https://github.com/rsc/markdown/pull/17.patch","merged_at":null},"body":"Addressing #16.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/17/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":12122508555,"node_id":"HRDE_lADOKnFwjc6CFtX-zwAAAALSjs0L","url":"https://api.github.com/repos/rsc/markdown/issues/events/12122508555","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2024-03-14T18:43:15Z","issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/14","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/14/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/14/events","html_url":"https://github.com/rsc/markdown/pull/14","id":2182534654,"node_id":"PR_kwDOKnFwjc5pbW8-","number":14,"title":"Render reference links in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-03-12T19:38:02Z","updated_at":"2024-03-14T18:43:15Z","closed_at":"2024-03-14T18:41:54Z","author_association":"NONE","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/14","html_url":"https://github.com/rsc/markdown/pull/14","diff_url":"https://github.com/rsc/markdown/pull/14.diff","patch_url":"https://github.com/rsc/markdown/pull/14.patch","merged_at":null},"body":"Attempting to address #13: correctly render reference links ([full], [collapsed], [shortcut]) in Markdown.\r\n\r\n[full]: https://spec.commonmark.org/0.31.2/#full-reference-link\r\n[collapsed]: https://spec.commonmark.org/0.31.2/#collapsed-reference-link\r\n[shortcut]: https://spec.commonmark.org/0.31.2/#shortcut-reference-link","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/14/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/14/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":12122501258,"node_id":"HRRE_lADOKnFwjc6CFtX-zwAAAALSjrCK","url":"https://api.github.com/repos/rsc/markdown/issues/events/12122501258","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"head_ref_restored","commit_id":null,"commit_url":null,"created_at":"2024-03-14T18:42:29Z","issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/14","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/14/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/14/events","html_url":"https://github.com/rsc/markdown/pull/14","id":2182534654,"node_id":"PR_kwDOKnFwjc5pbW8-","number":14,"title":"Render reference links in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-03-12T19:38:02Z","updated_at":"2024-03-14T18:43:15Z","closed_at":"2024-03-14T18:41:54Z","author_association":"NONE","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/14","html_url":"https://github.com/rsc/markdown/pull/14","diff_url":"https://github.com/rsc/markdown/pull/14.diff","patch_url":"https://github.com/rsc/markdown/pull/14.patch","merged_at":null},"body":"Attempting to address #13: correctly render reference links ([full], [collapsed], [shortcut]) in Markdown.\r\n\r\n[full]: https://spec.commonmark.org/0.31.2/#full-reference-link\r\n[collapsed]: https://spec.commonmark.org/0.31.2/#collapsed-reference-link\r\n[shortcut]: https://spec.commonmark.org/0.31.2/#shortcut-reference-link","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/14/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/14/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":12122495545,"node_id":"HRDE_lADOKnFwjc6CFtX-zwAAAALSjpo5","url":"https://api.github.com/repos/rsc/markdown/issues/events/12122495545","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2024-03-14T18:41:55Z","issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/14","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/14/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/14/events","html_url":"https://github.com/rsc/markdown/pull/14","id":2182534654,"node_id":"PR_kwDOKnFwjc5pbW8-","number":14,"title":"Render reference links in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-03-12T19:38:02Z","updated_at":"2024-03-14T18:43:15Z","closed_at":"2024-03-14T18:41:54Z","author_association":"NONE","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/14","html_url":"https://github.com/rsc/markdown/pull/14","diff_url":"https://github.com/rsc/markdown/pull/14.diff","patch_url":"https://github.com/rsc/markdown/pull/14.patch","merged_at":null},"body":"Attempting to address #13: correctly render reference links ([full], [collapsed], [shortcut]) in Markdown.\r\n\r\n[full]: https://spec.commonmark.org/0.31.2/#full-reference-link\r\n[collapsed]: https://spec.commonmark.org/0.31.2/#collapsed-reference-link\r\n[shortcut]: https://spec.commonmark.org/0.31.2/#shortcut-reference-link","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/14/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/14/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":12122495521,"node_id":"CE_lADOKnFwjc6CFtX-zwAAAALSjpoh","url":"https://api.github.com/repos/rsc/markdown/issues/events/12122495521","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2024-03-14T18:41:55Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/14","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/14/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/14/events","html_url":"https://github.com/rsc/markdown/pull/14","id":2182534654,"node_id":"PR_kwDOKnFwjc5pbW8-","number":14,"title":"Render reference links in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-03-12T19:38:02Z","updated_at":"2024-03-14T18:43:15Z","closed_at":"2024-03-14T18:41:54Z","author_association":"NONE","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/14","html_url":"https://github.com/rsc/markdown/pull/14","diff_url":"https://github.com/rsc/markdown/pull/14.diff","patch_url":"https://github.com/rsc/markdown/pull/14.patch","merged_at":null},"body":"Attempting to address #13: correctly render reference links ([full], [collapsed], [shortcut]) in Markdown.\r\n\r\n[full]: https://spec.commonmark.org/0.31.2/#full-reference-link\r\n[collapsed]: https://spec.commonmark.org/0.31.2/#collapsed-reference-link\r\n[shortcut]: https://spec.commonmark.org/0.31.2/#shortcut-reference-link","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/14/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/14/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":12122378461,"node_id":"RTE_lADOKnFwjc6CFrh9zwAAAALSjNDd","url":"https://api.github.com/repos/rsc/markdown/issues/events/12122378461","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2024-03-14T18:29:53Z","rename":{"from":"Links w/labels should render to MD as such","to":"Correctly render reference links in Markdown"},"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/13","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/13/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/13/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/13/events","html_url":"https://github.com/rsc/markdown/issues/13","id":2182527101,"node_id":"I_kwDOKnFwjc6CFrh9","number":13,"title":"Correctly render reference links in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-03-12T19:34:33Z","updated_at":"2024-04-14T22:51:33Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"Putting the following [reference links] through mdfmt, the output should equal the input:\r\n\r\n```none\r\n[full][full]\r\n[collapsed][]\r\n[shortcut]\r\n\r\n[collapsed]: u2\r\n[full]: u1\r\n[shortcut]: u3\r\n```\r\n\r\nCurrently, mdfmt renders all three link styles inline... while keeping the original link reference definitions:\r\n\r\n```none\r\n[full](u1)\r\n[collapsed](u2)\r\n[shortcut](u3)\r\n\r\n[collapsed]: u2\r\n[full]: u1\r\n[shortcut]: u3\r\n```\r\n\r\n[reference links]: https://spec.commonmark.org/0.31.2/#reference-link","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/13/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/13/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":12122340938,"node_id":"RTE_lADOKnFwjc6CFtX-zwAAAALSjD5K","url":"https://api.github.com/repos/rsc/markdown/issues/events/12122340938","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2024-03-14T18:26:19Z","rename":{"from":"Render full reference links in Markdown","to":"Render reference links in Markdown"},"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/14","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/14/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/14/events","html_url":"https://github.com/rsc/markdown/pull/14","id":2182534654,"node_id":"PR_kwDOKnFwjc5pbW8-","number":14,"title":"Render reference links in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-03-12T19:38:02Z","updated_at":"2024-03-14T18:43:15Z","closed_at":"2024-03-14T18:41:54Z","author_association":"NONE","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/14","html_url":"https://github.com/rsc/markdown/pull/14","diff_url":"https://github.com/rsc/markdown/pull/14.diff","patch_url":"https://github.com/rsc/markdown/pull/14.patch","merged_at":null},"body":"Attempting to address #13: correctly render reference links ([full], [collapsed], [shortcut]) in Markdown.\r\n\r\n[full]: https://spec.commonmark.org/0.31.2/#full-reference-link\r\n[collapsed]: https://spec.commonmark.org/0.31.2/#collapsed-reference-link\r\n[shortcut]: https://spec.commonmark.org/0.31.2/#shortcut-reference-link","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/14/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/14/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":12028957676,"node_id":"REFE_lADOKnFwjc5_aUPHzwAAAALM-1Ps","url":"https://api.github.com/repos/rsc/markdown/issues/events/12028957676","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"0bf8f97ee8ef6dc359b2246680d8f48c37da77f1","commit_url":"https://api.github.com/repos/rsc/markdown/commits/0bf8f97ee8ef6dc359b2246680d8f48c37da77f1","created_at":"2024-03-06T14:43:24Z","issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/12","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/12/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/12/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/12/events","html_url":"https://github.com/rsc/markdown/pull/12","id":2137605063,"node_id":"PR_kwDOKnFwjc5nCLz2","number":12,"title":"markdown: fix markdown printing for inline code","user":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-02-15T23:18:12Z","updated_at":"2024-03-06T14:43:22Z","closed_at":"2024-03-06T14:43:22Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/12","html_url":"https://github.com/rsc/markdown/pull/12","diff_url":"https://github.com/rsc/markdown/pull/12.diff","patch_url":"https://github.com/rsc/markdown/pull/12.patch","merged_at":"2024-03-06T14:43:22Z"},"body":"Code.printMarkdown outputs the minimum number of backticks that reproduces the content, and adds spaces on either side if necessary.\r\n\r\nRemoved the unused numTicks field. ","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/12/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/12/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":12028957356,"node_id":"CE_lADOKnFwjc5_aUPHzwAAAALM-1Ks","url":"https://api.github.com/repos/rsc/markdown/issues/events/12028957356","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2024-03-06T14:43:22Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/12","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/12/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/12/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/12/events","html_url":"https://github.com/rsc/markdown/pull/12","id":2137605063,"node_id":"PR_kwDOKnFwjc5nCLz2","number":12,"title":"markdown: fix markdown printing for inline code","user":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-02-15T23:18:12Z","updated_at":"2024-03-06T14:43:22Z","closed_at":"2024-03-06T14:43:22Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/12","html_url":"https://github.com/rsc/markdown/pull/12","diff_url":"https://github.com/rsc/markdown/pull/12.diff","patch_url":"https://github.com/rsc/markdown/pull/12.patch","merged_at":"2024-03-06T14:43:22Z"},"body":"Code.printMarkdown outputs the minimum number of backticks that reproduces the content, and adds spaces on either side if necessary.\r\n\r\nRemoved the unused numTicks field. ","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/12/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/12/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":12028957331,"node_id":"ME_lADOKnFwjc5_aUPHzwAAAALM-1KT","url":"https://api.github.com/repos/rsc/markdown/issues/events/12028957331","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"0bf8f97ee8ef6dc359b2246680d8f48c37da77f1","commit_url":"https://api.github.com/repos/rsc/markdown/commits/0bf8f97ee8ef6dc359b2246680d8f48c37da77f1","created_at":"2024-03-06T14:43:22Z","issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/12","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/12/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/12/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/12/events","html_url":"https://github.com/rsc/markdown/pull/12","id":2137605063,"node_id":"PR_kwDOKnFwjc5nCLz2","number":12,"title":"markdown: fix markdown printing for inline code","user":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-02-15T23:18:12Z","updated_at":"2024-03-06T14:43:22Z","closed_at":"2024-03-06T14:43:22Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/12","html_url":"https://github.com/rsc/markdown/pull/12","diff_url":"https://github.com/rsc/markdown/pull/12.diff","patch_url":"https://github.com/rsc/markdown/pull/12.patch","merged_at":"2024-03-06T14:43:22Z"},"body":"Code.printMarkdown outputs the minimum number of backticks that reproduces the content, and adds spaces on either side if necessary.\r\n\r\nRemoved the unused numTicks field. ","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/12/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/12/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":11942812866,"node_id":"RTE_lADOKnFwjc5_aUPHzwAAAALH2NzC","url":"https://api.github.com/repos/rsc/markdown/issues/events/11942812866","actor":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2024-02-27T20:29:37Z","rename":{"from":"markdown: export Code.NumTicks","to":"markdown: fix markdown printing for inline code"},"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/12","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/12/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/12/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/12/events","html_url":"https://github.com/rsc/markdown/pull/12","id":2137605063,"node_id":"PR_kwDOKnFwjc5nCLz2","number":12,"title":"markdown: fix markdown printing for inline code","user":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-02-15T23:18:12Z","updated_at":"2024-03-06T14:43:22Z","closed_at":"2024-03-06T14:43:22Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/12","html_url":"https://github.com/rsc/markdown/pull/12","diff_url":"https://github.com/rsc/markdown/pull/12.diff","patch_url":"https://github.com/rsc/markdown/pull/12.patch","merged_at":"2024-03-06T14:43:22Z"},"body":"Code.printMarkdown outputs the minimum number of backticks that reproduces the content, and adds spaces on either side if necessary.\r\n\r\nRemoved the unused numTicks field. ","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/12/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/12/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":11942808811,"node_id":"HRFPE_lADOKnFwjc5_aUPHzwAAAALH2Mzr","url":"https://api.github.com/repos/rsc/markdown/issues/events/11942808811","actor":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2024-02-27T20:29:08Z","issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/12","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/12/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/12/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/12/events","html_url":"https://github.com/rsc/markdown/pull/12","id":2137605063,"node_id":"PR_kwDOKnFwjc5nCLz2","number":12,"title":"markdown: fix markdown printing for inline code","user":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-02-15T23:18:12Z","updated_at":"2024-03-06T14:43:22Z","closed_at":"2024-03-06T14:43:22Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/12","html_url":"https://github.com/rsc/markdown/pull/12","diff_url":"https://github.com/rsc/markdown/pull/12.diff","patch_url":"https://github.com/rsc/markdown/pull/12.patch","merged_at":"2024-03-06T14:43:22Z"},"body":"Code.printMarkdown outputs the minimum number of backticks that reproduces the content, and adds spaces on either side if necessary.\r\n\r\nRemoved the unused numTicks field. ","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/12/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/12/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":11822212932,"node_id":"RRE_lADOKnFwjc5_aUPHzwAAAALAqKdE","url":"https://api.github.com/repos/rsc/markdown/issues/events/11822212932","actor":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"event":"review_requested","commit_id":null,"commit_url":null,"created_at":"2024-02-15T23:18:12Z","review_requester":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"requested_reviewer":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/12","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/12/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/12/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/12/events","html_url":"https://github.com/rsc/markdown/pull/12","id":2137605063,"node_id":"PR_kwDOKnFwjc5nCLz2","number":12,"title":"markdown: fix markdown printing for inline code","user":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-02-15T23:18:12Z","updated_at":"2024-03-06T14:43:22Z","closed_at":"2024-03-06T14:43:22Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/12","html_url":"https://github.com/rsc/markdown/pull/12","diff_url":"https://github.com/rsc/markdown/pull/12.diff","patch_url":"https://github.com/rsc/markdown/pull/12.patch","merged_at":"2024-03-06T14:43:22Z"},"body":"Code.printMarkdown outputs the minimum number of backticks that reproduces the content, and adds spaces on either side if necessary.\r\n\r\nRemoved the unused numTicks field. ","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/12/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/12/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":11506369300,"node_id":"CE_lADOKnFwjc57yW0-zwAAAAKt1UMU","url":"https://api.github.com/repos/rsc/markdown/issues/events/11506369300","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2024-01-17T04:41:48Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/11","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/11/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/11/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/11/events","html_url":"https://github.com/rsc/markdown/pull/11","id":2076798270,"node_id":"PR_kwDOKnFwjc5j0LtA","number":11,"title":"render markdown for document link references","user":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-01-11T14:20:56Z","updated_at":"2024-01-17T04:41:48Z","closed_at":"2024-01-17T04:41:48Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/11","html_url":"https://github.com/rsc/markdown/pull/11","diff_url":"https://github.com/rsc/markdown/pull/11.diff","patch_url":"https://github.com/rsc/markdown/pull/11.patch","merged_at":null},"body":null,"reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/11/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/11/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":11506360992,"node_id":"CE_lADOKnFwjc57xsrdzwAAAAKt1SKg","url":"https://api.github.com/repos/rsc/markdown/issues/events/11506360992","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2024-01-17T04:39:59Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/10","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/10/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/10/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/10/events","html_url":"https://github.com/rsc/markdown/pull/10","id":2076625629,"node_id":"PR_kwDOKnFwjc5jzktS","number":10,"title":"fix markdown rendering of headings with IDs","user":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-01-11T13:15:34Z","updated_at":"2024-01-17T04:39:59Z","closed_at":"2024-01-17T04:39:59Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/10","html_url":"https://github.com/rsc/markdown/pull/10","diff_url":"https://github.com/rsc/markdown/pull/10.diff","patch_url":"https://github.com/rsc/markdown/pull/10.patch","merged_at":null},"body":"Move the newline after the heading text to after the ID.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/10/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/10/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":11456466988,"node_id":"RRE_lADOKnFwjc57xsrdzwAAAAKq29As","url":"https://api.github.com/repos/rsc/markdown/issues/events/11456466988","actor":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"event":"review_requested","commit_id":null,"commit_url":null,"created_at":"2024-01-11T13:15:34Z","review_requester":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"requested_reviewer":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/10","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/10/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/10/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/10/events","html_url":"https://github.com/rsc/markdown/pull/10","id":2076625629,"node_id":"PR_kwDOKnFwjc5jzktS","number":10,"title":"fix markdown rendering of headings with IDs","user":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-01-11T13:15:34Z","updated_at":"2024-01-17T04:39:59Z","closed_at":"2024-01-17T04:39:59Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/10","html_url":"https://github.com/rsc/markdown/pull/10","diff_url":"https://github.com/rsc/markdown/pull/10.diff","patch_url":"https://github.com/rsc/markdown/pull/10.patch","merged_at":null},"body":"Move the newline after the heading text to after the ID.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/10/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/10/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":11250194227,"node_id":"CE_lADOKnFwjc55nCn5zwAAAAKekFcz","url":"https://api.github.com/repos/rsc/markdown/issues/events/11250194227","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-12-14T16:21:54Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/8","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/8/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/8/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/8/events","html_url":"https://github.com/rsc/markdown/issues/8","id":2040277497,"node_id":"I_kwDOKnFwjc55nCn5","number":8,"title":"Autolink can't start immediately after `[`","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":4,"created_at":"2023-12-13T18:44:32Z","updated_at":"2023-12-14T16:21:54Z","closed_at":"2023-12-14T16:21:54Z","author_association":"NONE","active_lock_reason":null,"body":"From the [gfm spec](https://github.github.com/gfm/#autolinks-extension): \r\n\r\n> All such recognized autolinks can only come at the beginning of a line, after whitespace, or any of the delimiting characters *, _, ~, and (.\r\n\r\nHere's a go program that runs markdown and goldmark on the following input: https://go.dev/play/p/kTjBshQ82iQ\r\n\r\n```\r\n[https://golang.org]\r\n```\r\nRendered in github as \r\n\r\n[https://golang.org]\r\n\r\nThe output of the program is \r\n\r\n```\r\nmarkdown:\r\n<p>[<a href=\"https://golang.org%5D\">https://golang.org]</a></p>\r\n\r\n\r\ngoldmark:\r\n<p>[https://golang.org]</p>\r\n```","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/8/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/8/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":11241620840,"node_id":"CE_lADOKnFwjc55mu-6zwAAAAKeDYVo","url":"https://api.github.com/repos/rsc/markdown/issues/events/11241620840","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"8c4745966286a677e3545b44150ab7491f2f1548","commit_url":"https://api.github.com/repos/rsc/markdown/commits/8c4745966286a677e3545b44150ab7491f2f1548","created_at":"2023-12-13T23:11:57Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/7","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/7/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/7/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/7/events","html_url":"https://github.com/rsc/markdown/issues/7","id":2040197050,"node_id":"I_kwDOKnFwjc55mu-6","number":7,"title":"Empty column heading not recognized in table","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-12-13T17:45:33Z","updated_at":"2023-12-13T23:11:57Z","closed_at":"2023-12-13T23:11:57Z","author_association":"NONE","active_lock_reason":null,"body":"Here's a program that compares markdown and goldmark on the following input https://go.dev/play/p/kEslff4EyTa\r\n\r\n```\r\n| | Foo | Bar |\r\n| -------- | -------- | -------- |\r\n| a | value1 | value2 |\r\n| b | value3 | value4 |\r\n```\r\n\r\nRendered in github as \r\n| | Foo | Bar |\r\n| -------- | -------- | -------- |\r\n| a | value1 | value2 |\r\n| b | value3 | value4 |\r\n\r\nThe output is\r\n```\r\nmarkdown:\r\n<table>\r\n<thead>\r\n<tr>\r\n<th></th>\r\n<th>Foo</th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td>a</td>\r\n<td>value1</td>\r\n</tr>\r\n<tr>\r\n<td>b</td>\r\n<td>value3</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n\r\ngoldmark:\r\n<table>\r\n<thead>\r\n<tr>\r\n<th></th>\r\n<th>Foo</th>\r\n<th>Bar</th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td>a</td>\r\n<td>value1</td>\r\n<td>value2</td>\r\n</tr>\r\n<tr>\r\n<td>b</td>\r\n<td>value3</td>\r\n<td>value4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n```","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/7/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/7/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":11241620809,"node_id":"CE_lADOKnFwjc55nI9izwAAAAKeDYVJ","url":"https://api.github.com/repos/rsc/markdown/issues/events/11241620809","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"dfcbaf6f71982715482db407f19dd27e944ed227","commit_url":"https://api.github.com/repos/rsc/markdown/commits/dfcbaf6f71982715482db407f19dd27e944ed227","created_at":"2023-12-13T23:11:57Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/9","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/9/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/9/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/9/events","html_url":"https://github.com/rsc/markdown/issues/9","id":2040303458,"node_id":"I_kwDOKnFwjc55nI9i","number":9,"title":"Support escaped `|` in table cells","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-12-13T19:03:40Z","updated_at":"2023-12-13T23:11:57Z","closed_at":"2023-12-13T23:11:57Z","author_association":"NONE","active_lock_reason":null,"body":"Here's a program that runs goldmark and markdown on the following input https://go.dev/play/p/YgApD-obwxL\r\n\r\n```\r\nFoo | Bar\r\n--- | ---\r\nA | a\\\\|b\\\\|c\r\n```\r\n\r\nrendered in github as \r\n\r\nFoo | Bar\r\n--- | ---\r\nA | a\\\\|b\\\\|c\r\n\r\nThe output of the program is \r\n```\r\nmarkdown:\r\n<table>\r\n<thead>\r\n<tr>\r\n<th>Foo</th>\r\n<th>Bar</th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td>A</td>\r\n<td>a\\</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n\r\ngoldmark:\r\n<table>\r\n<thead>\r\n<tr>\r\n<th>Foo</th>\r\n<th>Bar</th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td>A</td>\r\n<td>a\\|b\\|c</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n```","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/9/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/9/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":11239005964,"node_id":"REFE_lADOKnFwjc55gYFyzwAAAAKd5Z8M","url":"https://api.github.com/repos/rsc/markdown/issues/events/11239005964","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"8527271b4049b6d640dcfa6795c398cfeff9c000","commit_url":"https://api.github.com/repos/rsc/markdown/commits/8527271b4049b6d640dcfa6795c398cfeff9c000","created_at":"2023-12-13T17:44:28Z","issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/5","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/5/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/5/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/5/events","html_url":"https://github.com/rsc/markdown/issues/5","id":2038530418,"node_id":"I_kwDOKnFwjc55gYFy","number":5,"title":"Allow `?`, `!`, `.`, `,`, `:,` `*`, `_`, and `~` on the interior of a link","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2023-12-12T20:50:38Z","updated_at":"2023-12-13T17:24:41Z","closed_at":"2023-12-13T03:02:31Z","author_association":"NONE","active_lock_reason":null,"body":"GFM allows `?`, `!`, `.`, `,`, `:,` `*`, `_`, and `~` on the interior of a link: https://github.github.com/gfm/#extended-autolink-path-validation\r\n\r\nHere's a program that compares markdown and goldmark on the following input: https://go.dev/play/p/uLHnavChGYX\r\n\r\n```https://web.site:8080/~matloob```\r\n\r\nWhich is rendered on github as \r\nhttps://web.site:8080/~matloob\r\n\r\nThe output of the program is \r\n```\r\nmarkdown:\r\n<p><a href=\"https://web.site\">https://web.site</a>:8080/~matloob</p>\r\n\r\n\r\ngoldmark:\r\n<p><a href=\"https://web.site:8080/~matloob\">https://web.site:8080/~matloob</a></p>\r\n```","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/5/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/5/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":11230676272,"node_id":"CE_lADOKnFwjc55fzdLzwAAAAKdZoUw","url":"https://api.github.com/repos/rsc/markdown/issues/events/11230676272","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"0ed0e2d57b4d94c109d47593dcaaa40449600da2","commit_url":"https://api.github.com/repos/rsc/markdown/commits/0ed0e2d57b4d94c109d47593dcaaa40449600da2","created_at":"2023-12-13T03:02:32Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/1","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/1/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/1/events","html_url":"https://github.com/rsc/markdown/issues/1","id":2038380363,"node_id":"I_kwDOKnFwjc55fzdL","number":1,"title":"Support Github Emojis","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-12-12T18:57:39Z","updated_at":"2023-12-13T03:02:32Z","closed_at":"2023-12-13T03:02:32Z","author_association":"NONE","active_lock_reason":null,"body":"This is an issue for supporting github emojis, such as `:smile:` for 😄 . There's a github page that gives a mapping of emojis to image file names that we can parse the hex representation out of here: https://api.github.com/emojis.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/1/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/1/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":11230676238,"node_id":"CE_lADOKnFwjc55gikQzwAAAAKdZoUO","url":"https://api.github.com/repos/rsc/markdown/issues/events/11230676238","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"51d9ee0406f8dcc0e992cf51b2b37957107dbfd6","commit_url":"https://api.github.com/repos/rsc/markdown/commits/51d9ee0406f8dcc0e992cf51b2b37957107dbfd6","created_at":"2023-12-13T03:02:32Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/6","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/6/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/6/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/6/events","html_url":"https://github.com/rsc/markdown/issues/6","id":2038573328,"node_id":"I_kwDOKnFwjc55gikQ","number":6,"title":"goldmark and markdown diff with h1 inside p","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-12-12T21:26:15Z","updated_at":"2023-12-13T03:02:32Z","closed_at":"2023-12-13T03:02:32Z","author_association":"NONE","active_lock_reason":null,"body":"Here's a program that runs goldmark and markdown on the following input: https://go.dev/play/p/rTnPTxps_zw\r\n\r\n```\r\n<p align=\"center\">\r\n\r\n<h1>Text</h1>\r\nbody\r\n</p>\r\n```\r\n\r\nIt's hard for me to tell exactly what github is doing with this input, but it doesn't seem like it's putting the h1 into a p:\r\n\r\n<p align=\"center\">\r\n\r\n<h1>Text</h1>\r\nbody\r\n</p>\r\n\r\nHere's the output of the program:\r\n```\r\nmarkdown:\r\n<p align=\"center\">\r\n<p><h1>Text</h1>\r\nbody</p>\r\n</p>\r\n\r\n\r\ngoldmark:\r\n<p align=\"center\">\r\n<h1>Text</h1>\r\nbody\r\n</p>\r\n```","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/6/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/6/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":11230676200,"node_id":"CE_lADOKnFwjc55gYFyzwAAAAKdZoTo","url":"https://api.github.com/repos/rsc/markdown/issues/events/11230676200","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"4b85f2bd9fc3260214381f9a5e2df00ff9c20df9","commit_url":"https://api.github.com/repos/rsc/markdown/commits/4b85f2bd9fc3260214381f9a5e2df00ff9c20df9","created_at":"2023-12-13T03:02:31Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/5","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/5/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/5/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/5/events","html_url":"https://github.com/rsc/markdown/issues/5","id":2038530418,"node_id":"I_kwDOKnFwjc55gYFy","number":5,"title":"Allow `?`, `!`, `.`, `,`, `:,` `*`, `_`, and `~` on the interior of a link","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2023-12-12T20:50:38Z","updated_at":"2023-12-13T17:24:41Z","closed_at":"2023-12-13T03:02:31Z","author_association":"NONE","active_lock_reason":null,"body":"GFM allows `?`, `!`, `.`, `,`, `:,` `*`, `_`, and `~` on the interior of a link: https://github.github.com/gfm/#extended-autolink-path-validation\r\n\r\nHere's a program that compares markdown and goldmark on the following input: https://go.dev/play/p/uLHnavChGYX\r\n\r\n```https://web.site:8080/~matloob```\r\n\r\nWhich is rendered on github as \r\nhttps://web.site:8080/~matloob\r\n\r\nThe output of the program is \r\n```\r\nmarkdown:\r\n<p><a href=\"https://web.site\">https://web.site</a>:8080/~matloob</p>\r\n\r\n\r\ngoldmark:\r\n<p><a href=\"https://web.site:8080/~matloob\">https://web.site:8080/~matloob</a></p>\r\n```","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/5/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/5/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":11230676181,"node_id":"REFE_lADOKnFwjc55gTTPzwAAAAKdZoTV","url":"https://api.github.com/repos/rsc/markdown/issues/events/11230676181","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"4b85f2bd9fc3260214381f9a5e2df00ff9c20df9","commit_url":"https://api.github.com/repos/rsc/markdown/commits/4b85f2bd9fc3260214381f9a5e2df00ff9c20df9","created_at":"2023-12-13T03:02:31Z","issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/3","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/3/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/3/events","html_url":"https://github.com/rsc/markdown/issues/3","id":2038510799,"node_id":"I_kwDOKnFwjc55gTTP","number":3,"title":"support : in autolinks","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-12-12T20:34:03Z","updated_at":"2023-12-12T21:04:04Z","closed_at":"2023-12-12T21:04:04Z","author_association":"NONE","active_lock_reason":null,"body":"Edit: it looks like github does treat https://localhost as an autolink even though the GFM spec says a valid domain must have at least one dot. We should support https://localhost:8080\r\n\r\nProgram running goldmark and markdown on input: https://go.dev/play/p/FCJ0gp84YZQ\r\n\r\n```\r\nhttps://localhost:8080\r\n```\r\n\r\noutput is ```\r\nmarkdown:\r\n<p><a href=\"https://localhost\">https://localhost</a>:8080</p>\r\n\r\n\r\ngoldmark:\r\n<p>https://localhost:8080</p>\r\n```\r\n\r\nIt looks like goldmark is doing the wrong thing here but we should handle the :8080\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/3/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/3/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":11230676170,"node_id":"CE_lADOKnFwjc55gV-CzwAAAAKdZoTK","url":"https://api.github.com/repos/rsc/markdown/issues/events/11230676170","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"4468a1ed4300a71fdd3ce2906cd3dc7a2371a625","commit_url":"https://api.github.com/repos/rsc/markdown/commits/4468a1ed4300a71fdd3ce2906cd3dc7a2371a625","created_at":"2023-12-13T03:02:31Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/4","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/4/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/4/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/4/events","html_url":"https://github.com/rsc/markdown/issues/4","id":2038521730,"node_id":"I_kwDOKnFwjc55gV-C","number":4,"title":"Replace newlines with spaces in alt text","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-12-12T20:43:15Z","updated_at":"2023-12-13T03:02:31Z","closed_at":"2023-12-13T03:02:31Z","author_association":"NONE","active_lock_reason":null,"body":"Here's a go program that runs markdown and goldmark on the following input: https://go.dev/play/p/zZ0vWAgKB0c:\r\n\r\n```\r\n[![Line\r\nBreak](https://line.break/image)](https://line.break)\r\n```\r\n\r\nWhich is rendered on github with a space instead of the newline in the alt text:\r\n\r\n```\r\n<p dir=\"auto\"><a href=\"https://line.break\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/743b6218bc25f78b5f7f654f1ce773766351a2e3605cf8b47c60659055c218ac/68747470733a2f2f6c696e652e627265616b2f696d616765\" alt=\"Line Break\" data-canonical-src=\"https://line.break/image\" style=\"max-width: 100%;\"></a></p>\r\n```\r\n\r\nThe output is \r\n```\r\nmarkdown:\r\n<p><a href=\"https://line.break\"><img src=\"https://line.break/image\" alt=\"LineBreak\" /></a></p>\r\n\r\n\r\ngoldmark:\r\n<p><a href=\"https://line.break\"><img src=\"https://line.break/image\" alt=\"Line\r\nBreak\" /></a></p>\r\n```\r\n\r\nIt seems like goldmark's behavior is also different from github's as goldmark preserves the line break.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/4/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/4/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":11230676151,"node_id":"CE_lADOKnFwjc55gRQOzwAAAAKdZoS3","url":"https://api.github.com/repos/rsc/markdown/issues/events/11230676151","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"58f2e15c42bf1ce69bbbfa0c81193db5d6e5c814","commit_url":"https://api.github.com/repos/rsc/markdown/commits/58f2e15c42bf1ce69bbbfa0c81193db5d6e5c814","created_at":"2023-12-13T03:02:31Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/2","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/2/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/2/events","html_url":"https://github.com/rsc/markdown/issues/2","id":2038502414,"node_id":"I_kwDOKnFwjc55gRQO","number":2,"title":"allow capital X in task list items","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-12-12T20:28:39Z","updated_at":"2023-12-13T03:02:30Z","closed_at":"2023-12-13T03:02:30Z","author_association":"NONE","active_lock_reason":null,"body":"Here's a go program running goldmark and markdown on the following input: https://go.dev/play/p/fZRthH1dl4B\r\n```\r\n- [X] task list item\r\n```\r\nWhich is rendered on github as:\r\n\r\n- [X] task list item\r\n\r\nIts output is:\r\n```\r\nmarkdown:\r\n<ul>\r\n<li>[X] task list item</li>\r\n</ul>\r\n\r\n\r\ngoldmark:\r\n<ul>\r\n<li><input checked=\"\" disabled=\"\" type=\"checkbox\" /> task list item</li>\r\n</ul>\r\n\r\n```","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/2/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/2/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":11228628324,"node_id":"CE_lADOKnFwjc55gTTPzwAAAAKdR0Vk","url":"https://api.github.com/repos/rsc/markdown/issues/events/11228628324","actor":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-12-12T21:04:04Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/3","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/3/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/3/events","html_url":"https://github.com/rsc/markdown/issues/3","id":2038510799,"node_id":"I_kwDOKnFwjc55gTTP","number":3,"title":"support : in autolinks","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-12-12T20:34:03Z","updated_at":"2023-12-12T21:04:04Z","closed_at":"2023-12-12T21:04:04Z","author_association":"NONE","active_lock_reason":null,"body":"Edit: it looks like github does treat https://localhost as an autolink even though the GFM spec says a valid domain must have at least one dot. We should support https://localhost:8080\r\n\r\nProgram running goldmark and markdown on input: https://go.dev/play/p/FCJ0gp84YZQ\r\n\r\n```\r\nhttps://localhost:8080\r\n```\r\n\r\noutput is ```\r\nmarkdown:\r\n<p><a href=\"https://localhost\">https://localhost</a>:8080</p>\r\n\r\n\r\ngoldmark:\r\n<p>https://localhost:8080</p>\r\n```\r\n\r\nIt looks like goldmark is doing the wrong thing here but we should handle the :8080\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/3/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/3/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":11228615168,"node_id":"RTE_lADOKnFwjc55gTTPzwAAAAKdRxIA","url":"https://api.github.com/repos/rsc/markdown/issues/events/11228615168","actor":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2023-12-12T21:02:28Z","rename":{"from":"require at least one dot in autolink url domains","to":"support : in autolinks"},"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/3","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/3/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/3/events","html_url":"https://github.com/rsc/markdown/issues/3","id":2038510799,"node_id":"I_kwDOKnFwjc55gTTP","number":3,"title":"support : in autolinks","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-12-12T20:34:03Z","updated_at":"2023-12-12T21:04:04Z","closed_at":"2023-12-12T21:04:04Z","author_association":"NONE","active_lock_reason":null,"body":"Edit: it looks like github does treat https://localhost as an autolink even though the GFM spec says a valid domain must have at least one dot. We should support https://localhost:8080\r\n\r\nProgram running goldmark and markdown on input: https://go.dev/play/p/FCJ0gp84YZQ\r\n\r\n```\r\nhttps://localhost:8080\r\n```\r\n\r\noutput is ```\r\nmarkdown:\r\n<p><a href=\"https://localhost\">https://localhost</a>:8080</p>\r\n\r\n\r\ngoldmark:\r\n<p>https://localhost:8080</p>\r\n```\r\n\r\nIt looks like goldmark is doing the wrong thing here but we should handle the :8080\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/3/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/3/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null}]207 3696 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-05-21T17%3A56%3A12Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Accept-Ranges: bytes Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: public, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:18:53 GMT Etag: W/"4d6573942568b9042ff639b9a2868d81e436d14b7347efa7ed7b787e0b0a6719" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F461:3487CD:17EDB8:2822AE:665E333D X-Ratelimit-Limit: 60 X-Ratelimit-Remaining: 32 X-Ratelimit-Reset: 1717452520 X-Ratelimit-Resource: core X-Ratelimit-Used: 28 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-05-21T17:56:12Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer synthesizes lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]233 2479 GET https://api.github.com/repos/rsc/markdown/issues/1/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"b32162ef721268ee8773fa3227c3895dbc769136adf7a51b10b7d6bcefc94ddc" HTTP/2.0 200 OK Accept-Ranges: bytes Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: public, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:18:53 GMT Etag: W/"c7ef2616708a24b004b2ff7c465323a0c8573c1a7880cb0fb3f9ce56decc3439" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F461:3487CD:17EE19:282338:665E333D X-Ratelimit-Limit: 60 X-Ratelimit-Remaining: 31 X-Ratelimit-Reset: 1717452520 X-Ratelimit-Resource: core X-Ratelimit-Used: 29 X-Xss-Protection: 0 [{"id":11230676272,"node_id":"CE_lADOKnFwjc55fzdLzwAAAAKdZoUw","url":"https://api.github.com/repos/rsc/markdown/issues/events/11230676272","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"0ed0e2d57b4d94c109d47593dcaaa40449600da2","commit_url":"https://api.github.com/repos/rsc/markdown/commits/0ed0e2d57b4d94c109d47593dcaaa40449600da2","created_at":"2023-12-13T03:02:32Z","state_reason":null,"performed_via_github_app":null}]233 2479 GET https://api.github.com/repos/rsc/markdown/issues/2/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"b32162ef721268ee8773fa3227c3895dbc769136adf7a51b10b7d6bcefc94ddc" HTTP/2.0 200 OK Accept-Ranges: bytes Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: public, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:18:53 GMT Etag: W/"9c64e72a2b87e855a538a66de1313e427ca89bb0d3ecfd6af633ee66b4dfb973" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F461:3487CD:17EE6F:2823E3:665E333D X-Ratelimit-Limit: 60 X-Ratelimit-Remaining: 30 X-Ratelimit-Reset: 1717452520 X-Ratelimit-Resource: core X-Ratelimit-Used: 30 X-Xss-Protection: 0 [{"id":11230676151,"node_id":"CE_lADOKnFwjc55gRQOzwAAAAKdZoS3","url":"https://api.github.com/repos/rsc/markdown/issues/events/11230676151","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"58f2e15c42bf1ce69bbbfa0c81193db5d6e5c814","commit_url":"https://api.github.com/repos/rsc/markdown/commits/58f2e15c42bf1ce69bbbfa0c81193db5d6e5c814","created_at":"2023-12-13T03:02:31Z","state_reason":null,"performed_via_github_app":null}]233 4912 GET https://api.github.com/repos/rsc/markdown/issues/3/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"b32162ef721268ee8773fa3227c3895dbc769136adf7a51b10b7d6bcefc94ddc" HTTP/2.0 200 OK Accept-Ranges: bytes Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: public, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:18:53 GMT Etag: W/"9033d7d85edd2e951f3670e5e50543f7ccfe96bc3a519685cf38a0f5db8fbd5a" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F461:3487CD:17EECC:282489:665E333D X-Ratelimit-Limit: 60 X-Ratelimit-Remaining: 29 X-Ratelimit-Reset: 1717452520 X-Ratelimit-Resource: core X-Ratelimit-Used: 31 X-Xss-Protection: 0 [{"id":11228615168,"node_id":"RTE_lADOKnFwjc55gTTPzwAAAAKdRxIA","url":"https://api.github.com/repos/rsc/markdown/issues/events/11228615168","actor":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2023-12-12T21:02:28Z","rename":{"from":"require at least one dot in autolink url domains","to":"support : in autolinks"},"performed_via_github_app":null},{"id":11228628324,"node_id":"CE_lADOKnFwjc55gTTPzwAAAAKdR0Vk","url":"https://api.github.com/repos/rsc/markdown/issues/events/11228628324","actor":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-12-12T21:04:04Z","state_reason":null,"performed_via_github_app":null},{"id":11230676181,"node_id":"REFE_lADOKnFwjc55gTTPzwAAAAKdZoTV","url":"https://api.github.com/repos/rsc/markdown/issues/events/11230676181","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"4b85f2bd9fc3260214381f9a5e2df00ff9c20df9","commit_url":"https://api.github.com/repos/rsc/markdown/commits/4b85f2bd9fc3260214381f9a5e2df00ff9c20df9","created_at":"2023-12-13T03:02:31Z","performed_via_github_app":null}]233 2479 GET https://api.github.com/repos/rsc/markdown/issues/4/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"b32162ef721268ee8773fa3227c3895dbc769136adf7a51b10b7d6bcefc94ddc" HTTP/2.0 200 OK Accept-Ranges: bytes Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: public, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:18:54 GMT Etag: W/"1e3310f78b2130f7964c2fa37ce2f521e646499b114e6ae247e8907511cf19ec" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F461:3487CD:17EF46:282550:665E333D X-Ratelimit-Limit: 60 X-Ratelimit-Remaining: 28 X-Ratelimit-Reset: 1717452520 X-Ratelimit-Resource: core X-Ratelimit-Used: 32 X-Xss-Protection: 0 [{"id":11230676170,"node_id":"CE_lADOKnFwjc55gV-CzwAAAAKdZoTK","url":"https://api.github.com/repos/rsc/markdown/issues/events/11230676170","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"4468a1ed4300a71fdd3ce2906cd3dc7a2371a625","commit_url":"https://api.github.com/repos/rsc/markdown/commits/4468a1ed4300a71fdd3ce2906cd3dc7a2371a625","created_at":"2023-12-13T03:02:31Z","state_reason":null,"performed_via_github_app":null}]233 3722 GET https://api.github.com/repos/rsc/markdown/issues/5/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"b32162ef721268ee8773fa3227c3895dbc769136adf7a51b10b7d6bcefc94ddc" HTTP/2.0 200 OK Accept-Ranges: bytes Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: public, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:18:54 GMT Etag: W/"5d683bc09dfd4a29654a66ecb5378d5f5c29c31c2a41039b2cf2cf0d56db8cab" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F461:3487CD:17EF93:2825BB:665E333E X-Ratelimit-Limit: 60 X-Ratelimit-Remaining: 27 X-Ratelimit-Reset: 1717452520 X-Ratelimit-Resource: core X-Ratelimit-Used: 33 X-Xss-Protection: 0 [{"id":11230676200,"node_id":"CE_lADOKnFwjc55gYFyzwAAAAKdZoTo","url":"https://api.github.com/repos/rsc/markdown/issues/events/11230676200","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"4b85f2bd9fc3260214381f9a5e2df00ff9c20df9","commit_url":"https://api.github.com/repos/rsc/markdown/commits/4b85f2bd9fc3260214381f9a5e2df00ff9c20df9","created_at":"2023-12-13T03:02:31Z","state_reason":null,"performed_via_github_app":null},{"id":11239005964,"node_id":"REFE_lADOKnFwjc55gYFyzwAAAAKd5Z8M","url":"https://api.github.com/repos/rsc/markdown/issues/events/11239005964","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"8527271b4049b6d640dcfa6795c398cfeff9c000","commit_url":"https://api.github.com/repos/rsc/markdown/commits/8527271b4049b6d640dcfa6795c398cfeff9c000","created_at":"2023-12-13T17:44:28Z","performed_via_github_app":null}]233 2479 GET https://api.github.com/repos/rsc/markdown/issues/6/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"b32162ef721268ee8773fa3227c3895dbc769136adf7a51b10b7d6bcefc94ddc" HTTP/2.0 200 OK Accept-Ranges: bytes Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: public, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:18:54 GMT Etag: W/"619686a77a53690d01d304140a355fde714bc94ab92ca621f8af9d5a87702784" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F461:3487CD:17EFFE:282676:665E333E X-Ratelimit-Limit: 60 X-Ratelimit-Remaining: 26 X-Ratelimit-Reset: 1717452520 X-Ratelimit-Resource: core X-Ratelimit-Used: 34 X-Xss-Protection: 0 [{"id":11230676238,"node_id":"CE_lADOKnFwjc55gikQzwAAAAKdZoUO","url":"https://api.github.com/repos/rsc/markdown/issues/events/11230676238","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"51d9ee0406f8dcc0e992cf51b2b37957107dbfd6","commit_url":"https://api.github.com/repos/rsc/markdown/commits/51d9ee0406f8dcc0e992cf51b2b37957107dbfd6","created_at":"2023-12-13T03:02:32Z","state_reason":null,"performed_via_github_app":null}]233 2479 GET https://api.github.com/repos/rsc/markdown/issues/7/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"b32162ef721268ee8773fa3227c3895dbc769136adf7a51b10b7d6bcefc94ddc" HTTP/2.0 200 OK Accept-Ranges: bytes Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: public, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:18:54 GMT Etag: W/"e83f07636fb18dd58a345ee18a19ae962d00851c333b0bd0e5448b8840cf7091" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F461:3487CD:17F056:282711:665E333E X-Ratelimit-Limit: 60 X-Ratelimit-Remaining: 25 X-Ratelimit-Reset: 1717452520 X-Ratelimit-Resource: core X-Ratelimit-Used: 35 X-Xss-Protection: 0 [{"id":11241620840,"node_id":"CE_lADOKnFwjc55mu-6zwAAAAKeDYVo","url":"https://api.github.com/repos/rsc/markdown/issues/events/11241620840","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"8c4745966286a677e3545b44150ab7491f2f1548","commit_url":"https://api.github.com/repos/rsc/markdown/commits/8c4745966286a677e3545b44150ab7491f2f1548","created_at":"2023-12-13T23:11:57Z","state_reason":null,"performed_via_github_app":null}]233 2353 GET https://api.github.com/repos/rsc/markdown/issues/8/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"b32162ef721268ee8773fa3227c3895dbc769136adf7a51b10b7d6bcefc94ddc" HTTP/2.0 200 OK Accept-Ranges: bytes Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: public, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:18:54 GMT Etag: W/"20b0bb39ff1e1d9c38f3f61af517787f7fbea598153f9f0373200adfad430d12" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F461:3487CD:17F0C5:2827BE:665E333E X-Ratelimit-Limit: 60 X-Ratelimit-Remaining: 24 X-Ratelimit-Reset: 1717452520 X-Ratelimit-Resource: core X-Ratelimit-Used: 36 X-Xss-Protection: 0 [{"id":11250194227,"node_id":"CE_lADOKnFwjc55nCn5zwAAAAKekFcz","url":"https://api.github.com/repos/rsc/markdown/issues/events/11250194227","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-12-14T16:21:54Z","state_reason":null,"performed_via_github_app":null}]233 2479 GET https://api.github.com/repos/rsc/markdown/issues/9/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"b32162ef721268ee8773fa3227c3895dbc769136adf7a51b10b7d6bcefc94ddc" HTTP/2.0 200 OK Accept-Ranges: bytes Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: public, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:18:54 GMT Etag: W/"4af00f1ed71c7b22e9cb5c9f77d6a7511c77d6546f217eb5d45ebd46f203325d" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F461:3487CD:17F119:28283D:665E333E X-Ratelimit-Limit: 60 X-Ratelimit-Remaining: 23 X-Ratelimit-Reset: 1717452520 X-Ratelimit-Resource: core X-Ratelimit-Used: 37 X-Xss-Protection: 0 [{"id":11241620809,"node_id":"CE_lADOKnFwjc55nI9izwAAAAKeDYVJ","url":"https://api.github.com/repos/rsc/markdown/issues/events/11241620809","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"dfcbaf6f71982715482db407f19dd27e944ed227","commit_url":"https://api.github.com/repos/rsc/markdown/commits/dfcbaf6f71982715482db407f19dd27e944ed227","created_at":"2023-12-13T23:11:57Z","state_reason":null,"performed_via_github_app":null}]234 5211 GET https://api.github.com/repos/rsc/markdown/issues/10/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"b32162ef721268ee8773fa3227c3895dbc769136adf7a51b10b7d6bcefc94ddc" HTTP/2.0 200 OK Accept-Ranges: bytes Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: public, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:18:54 GMT Etag: W/"aeb564451bf38a86a5766d5ecc31b399bf698a6b4a95f74a5274d5c6b34d294b" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F461:3487CD:17F159:2828AE:665E333E X-Ratelimit-Limit: 60 X-Ratelimit-Remaining: 22 X-Ratelimit-Reset: 1717452520 X-Ratelimit-Resource: core X-Ratelimit-Used: 38 X-Xss-Protection: 0 [{"id":11456466988,"node_id":"RRE_lADOKnFwjc57xsrdzwAAAAKq29As","url":"https://api.github.com/repos/rsc/markdown/issues/events/11456466988","actor":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"event":"review_requested","commit_id":null,"commit_url":null,"created_at":"2024-01-11T13:15:34Z","review_requester":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"requested_reviewer":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"performed_via_github_app":null},{"id":11506360992,"node_id":"CE_lADOKnFwjc57xsrdzwAAAAKt1SKg","url":"https://api.github.com/repos/rsc/markdown/issues/events/11506360992","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2024-01-17T04:39:59Z","state_reason":null,"performed_via_github_app":null}]234 2353 GET https://api.github.com/repos/rsc/markdown/issues/11/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"b32162ef721268ee8773fa3227c3895dbc769136adf7a51b10b7d6bcefc94ddc" HTTP/2.0 200 OK Accept-Ranges: bytes Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: public, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:18:54 GMT Etag: W/"b39f902ed9c75499e0477b74e9639d8ee8c9742f275dd31cd8de4ec06cb40dae" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F461:3487CD:17F1BB:28296C:665E333E X-Ratelimit-Limit: 60 X-Ratelimit-Remaining: 21 X-Ratelimit-Reset: 1717452520 X-Ratelimit-Resource: core X-Ratelimit-Used: 39 X-Xss-Protection: 0 [{"id":11506369300,"node_id":"CE_lADOKnFwjc57yW0-zwAAAAKt1UMU","url":"https://api.github.com/repos/rsc/markdown/issues/events/11506369300","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2024-01-17T04:41:48Z","state_reason":null,"performed_via_github_app":null}]234 10047 GET https://api.github.com/repos/rsc/markdown/issues/12/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"b32162ef721268ee8773fa3227c3895dbc769136adf7a51b10b7d6bcefc94ddc" HTTP/2.0 200 OK Accept-Ranges: bytes Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: public, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:18:54 GMT Etag: W/"3e52cb621b77f34d31f9668b22b2ce1b48a8d4ab1199ff4d4ec16ab8a8a4d51e" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F461:3487CD:17F21B:2829FC:665E333E X-Ratelimit-Limit: 60 X-Ratelimit-Remaining: 20 X-Ratelimit-Reset: 1717452520 X-Ratelimit-Resource: core X-Ratelimit-Used: 40 X-Xss-Protection: 0 [{"id":11822212932,"node_id":"RRE_lADOKnFwjc5_aUPHzwAAAALAqKdE","url":"https://api.github.com/repos/rsc/markdown/issues/events/11822212932","actor":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"event":"review_requested","commit_id":null,"commit_url":null,"created_at":"2024-02-15T23:18:12Z","review_requester":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"requested_reviewer":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"performed_via_github_app":null},{"id":11942808811,"node_id":"HRFPE_lADOKnFwjc5_aUPHzwAAAALH2Mzr","url":"https://api.github.com/repos/rsc/markdown/issues/events/11942808811","actor":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2024-02-27T20:29:08Z","performed_via_github_app":null},{"id":11942812866,"node_id":"RTE_lADOKnFwjc5_aUPHzwAAAALH2NzC","url":"https://api.github.com/repos/rsc/markdown/issues/events/11942812866","actor":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2024-02-27T20:29:37Z","rename":{"from":"markdown: export Code.NumTicks","to":"markdown: fix markdown printing for inline code"},"performed_via_github_app":null},{"id":12028957331,"node_id":"ME_lADOKnFwjc5_aUPHzwAAAALM-1KT","url":"https://api.github.com/repos/rsc/markdown/issues/events/12028957331","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"0bf8f97ee8ef6dc359b2246680d8f48c37da77f1","commit_url":"https://api.github.com/repos/rsc/markdown/commits/0bf8f97ee8ef6dc359b2246680d8f48c37da77f1","created_at":"2024-03-06T14:43:22Z","performed_via_github_app":null},{"id":12028957356,"node_id":"CE_lADOKnFwjc5_aUPHzwAAAALM-1Ks","url":"https://api.github.com/repos/rsc/markdown/issues/events/12028957356","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2024-03-06T14:43:22Z","state_reason":null,"performed_via_github_app":null},{"id":12028957676,"node_id":"REFE_lADOKnFwjc5_aUPHzwAAAALM-1Ps","url":"https://api.github.com/repos/rsc/markdown/issues/events/12028957676","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"0bf8f97ee8ef6dc359b2246680d8f48c37da77f1","commit_url":"https://api.github.com/repos/rsc/markdown/commits/0bf8f97ee8ef6dc359b2246680d8f48c37da77f1","created_at":"2024-03-06T14:43:24Z","performed_via_github_app":null}]234 2570 GET https://api.github.com/repos/rsc/markdown/issues/13/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"b32162ef721268ee8773fa3227c3895dbc769136adf7a51b10b7d6bcefc94ddc" HTTP/2.0 200 OK Accept-Ranges: bytes Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: public, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:18:54 GMT Etag: W/"3859f1e34bb9fc5fd078886ce6c18288dbb9c4f157115c9c8844be95967c5509" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F461:3487CD:17F2A3:282AD0:665E333E X-Ratelimit-Limit: 60 X-Ratelimit-Remaining: 19 X-Ratelimit-Reset: 1717452520 X-Ratelimit-Resource: core X-Ratelimit-Used: 41 X-Xss-Protection: 0 [{"id":12122378461,"node_id":"RTE_lADOKnFwjc6CFrh9zwAAAALSjNDd","url":"https://api.github.com/repos/rsc/markdown/issues/events/12122378461","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2024-03-14T18:29:53Z","rename":{"from":"Links w/labels should render to MD as such","to":"Correctly render reference links in Markdown"},"performed_via_github_app":null}]234 7538 GET https://api.github.com/repos/rsc/markdown/issues/14/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"b32162ef721268ee8773fa3227c3895dbc769136adf7a51b10b7d6bcefc94ddc" HTTP/2.0 200 OK Accept-Ranges: bytes Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: public, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:18:54 GMT Etag: W/"bfeaf643131e37fa62117ca600af9a2bfb5ce48e099904d32c9565c5db8a3b3f" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F461:3487CD:17F2F4:282B64:665E333E X-Ratelimit-Limit: 60 X-Ratelimit-Remaining: 18 X-Ratelimit-Reset: 1717452520 X-Ratelimit-Resource: core X-Ratelimit-Used: 42 X-Xss-Protection: 0 [{"id":12122340938,"node_id":"RTE_lADOKnFwjc6CFtX-zwAAAALSjD5K","url":"https://api.github.com/repos/rsc/markdown/issues/events/12122340938","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2024-03-14T18:26:19Z","rename":{"from":"Render full reference links in Markdown","to":"Render reference links in Markdown"},"performed_via_github_app":null},{"id":12122495521,"node_id":"CE_lADOKnFwjc6CFtX-zwAAAALSjpoh","url":"https://api.github.com/repos/rsc/markdown/issues/events/12122495521","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2024-03-14T18:41:55Z","state_reason":null,"performed_via_github_app":null},{"id":12122495545,"node_id":"HRDE_lADOKnFwjc6CFtX-zwAAAALSjpo5","url":"https://api.github.com/repos/rsc/markdown/issues/events/12122495545","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2024-03-14T18:41:55Z","performed_via_github_app":null},{"id":12122501258,"node_id":"HRRE_lADOKnFwjc6CFtX-zwAAAALSjrCK","url":"https://api.github.com/repos/rsc/markdown/issues/events/12122501258","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"head_ref_restored","commit_id":null,"commit_url":null,"created_at":"2024-03-14T18:42:29Z","performed_via_github_app":null},{"id":12122508555,"node_id":"HRDE_lADOKnFwjc6CFtX-zwAAAALSjs0L","url":"https://api.github.com/repos/rsc/markdown/issues/events/12122508555","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2024-03-14T18:43:15Z","performed_via_github_app":null}]234 1240 GET https://api.github.com/repos/rsc/markdown/issues/15/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"b32162ef721268ee8773fa3227c3895dbc769136adf7a51b10b7d6bcefc94ddc" HTTP/2.0 200 OK Content-Length: 2 Accept-Ranges: bytes Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: public, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:18:55 GMT Etag: "4f53cda18c2baa0c0354bb5f9a3ecbe5ed12ab4d8e11ba873c2f11161202b945" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F461:3487CD:17F363:282C03:665E333E X-Ratelimit-Limit: 60 X-Ratelimit-Remaining: 17 X-Ratelimit-Reset: 1717452520 X-Ratelimit-Resource: core X-Ratelimit-Used: 43 X-Xss-Protection: 0 []234 1240 GET https://api.github.com/repos/rsc/markdown/issues/16/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"b32162ef721268ee8773fa3227c3895dbc769136adf7a51b10b7d6bcefc94ddc" HTTP/2.0 200 OK Content-Length: 2 Accept-Ranges: bytes Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: public, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:18:55 GMT Etag: "4f53cda18c2baa0c0354bb5f9a3ecbe5ed12ab4d8e11ba873c2f11161202b945" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F461:3487CD:17F3C1:282CA3:665E333F X-Ratelimit-Limit: 60 X-Ratelimit-Remaining: 16 X-Ratelimit-Reset: 1717452520 X-Ratelimit-Resource: core X-Ratelimit-Used: 44 X-Xss-Protection: 0 []234 3841 GET https://api.github.com/repos/rsc/markdown/issues/17/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"b32162ef721268ee8773fa3227c3895dbc769136adf7a51b10b7d6bcefc94ddc" HTTP/2.0 200 OK Accept-Ranges: bytes Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: public, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:18:55 GMT Etag: W/"fcf1e8bf5a4b46d549e21ddab7eeaadee5a0ecff39921fddd41145fd274dd166" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F461:3487CD:17F41E:282D38:665E333F X-Ratelimit-Limit: 60 X-Ratelimit-Remaining: 15 X-Ratelimit-Reset: 1717452520 X-Ratelimit-Resource: core X-Ratelimit-Used: 45 X-Xss-Protection: 0 [{"id":12137686933,"node_id":"RTE_lADOKnFwjc6CgrwXzwAAAALTdmeV","url":"https://api.github.com/repos/rsc/markdown/issues/events/12137686933","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2024-03-15T23:43:26Z","rename":{"from":"Tables are pretty printing","to":"Pretty-print tables"},"performed_via_github_app":null},{"id":12137688071,"node_id":"RTE_lADOKnFwjc6CgrwXzwAAAALTdmwH","url":"https://api.github.com/repos/rsc/markdown/issues/events/12137688071","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2024-03-15T23:43:50Z","rename":{"from":"Pretty-print tables","to":"Pretty-print tables in Markdown"},"performed_via_github_app":null}]234 4080 GET https://api.github.com/repos/rsc/markdown/issues/18/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"b32162ef721268ee8773fa3227c3895dbc769136adf7a51b10b7d6bcefc94ddc" HTTP/2.0 200 OK Accept-Ranges: bytes Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: public, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:18:55 GMT Etag: W/"01cee8d0b89cae7c50b1f0c4faa08323644fca7dca045765c4ac4dfd8bfcedb9" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F461:3487CD:17F478:282DDA:665E333F X-Ratelimit-Limit: 60 X-Ratelimit-Remaining: 14 X-Ratelimit-Reset: 1717452520 X-Ratelimit-Resource: core X-Ratelimit-Used: 46 X-Xss-Protection: 0 [{"id":12721108829,"node_id":"RRE_lADOKnFwjc6HtfRmzwAAAAL2PLdd","url":"https://api.github.com/repos/rsc/markdown/issues/events/12721108829","actor":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"event":"review_requested","commit_id":null,"commit_url":null,"created_at":"2024-05-06T22:16:49Z","review_requester":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"requested_reviewer":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"performed_via_github_app":null}]234 1240 GET https://api.github.com/repos/rsc/markdown/issues/19/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"b32162ef721268ee8773fa3227c3895dbc769136adf7a51b10b7d6bcefc94ddc" HTTP/2.0 200 OK Content-Length: 2 Accept-Ranges: bytes Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: public, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:18:55 GMT Etag: "4f53cda18c2baa0c0354bb5f9a3ecbe5ed12ab4d8e11ba873c2f11161202b945" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F461:3487CD:17F4DB:282E71:665E333F X-Ratelimit-Limit: 60 X-Ratelimit-Remaining: 13 X-Ratelimit-Reset: 1717452520 X-Ratelimit-Resource: core X-Ratelimit-Used: 47 X-Xss-Protection: 0 []231 1233 GET https://api.github.com/repos/rsc/markdown/issues/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"b32162ef721268ee8773fa3227c3895dbc769136adf7a51b10b7d6bcefc94ddc" HTTP/2.0 304 Not Modified Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: public, max-age=60, s-maxage=60 Content-Encoding: gzip Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:18:53 GMT Etag: W/"b32162ef721268ee8773fa3227c3895dbc769136adf7a51b10b7d6bcefc94ddc" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F461:3487CD:17F512:282EC3:665E333F X-Ratelimit-Limit: 60 X-Ratelimit-Remaining: 12 X-Ratelimit-Reset: 1717452520 X-Ratelimit-Resource: core X-Ratelimit-Used: 48 X-Xss-Protection: 0
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/github/testdata/omap.httprr
httprr trace v1 172 1240 GET https://api.github.com/repos/rsc/omap/issues?direction=asc&page=1&per_page=100&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Content-Length: 2 Accept-Ranges: bytes Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: public, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Tue, 04 Jun 2024 16:16:40 GMT Etag: "4f53cda18c2baa0c0354bb5f9a3ecbe5ed12ab4d8e11ba873c2f11161202b945" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F9AB:A58D8:48273A5:7F79B5E:665F3DE8 X-Ratelimit-Limit: 60 X-Ratelimit-Remaining: 59 X-Ratelimit-Reset: 1717521400 X-Ratelimit-Resource: core X-Ratelimit-Used: 1 X-Xss-Protection: 0 []158 1240 GET https://api.github.com/repos/rsc/omap/issues/comments?direction=asc&page=1&sort=updated HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Content-Length: 2 Accept-Ranges: bytes Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: public, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Tue, 04 Jun 2024 16:16:40 GMT Etag: "4f53cda18c2baa0c0354bb5f9a3ecbe5ed12ab4d8e11ba873c2f11161202b945" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F9AB:A58D8:48273F3:7F79BDD:665F3DE8 X-Ratelimit-Limit: 60 X-Ratelimit-Remaining: 58 X-Ratelimit-Reset: 1717521400 X-Ratelimit-Resource: core X-Ratelimit-Used: 2 X-Xss-Protection: 0 []142 1240 GET https://api.github.com/repos/rsc/omap/issues/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Content-Length: 2 Accept-Ranges: bytes Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: public, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Tue, 04 Jun 2024 16:16:40 GMT Etag: "4f53cda18c2baa0c0354bb5f9a3ecbe5ed12ab4d8e11ba873c2f11161202b945" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F9AB:A58D8:482744D:7F79C70:665F3DE8 X-Ratelimit-Limit: 60 X-Ratelimit-Remaining: 57 X-Ratelimit-Reset: 1717521400 X-Ratelimit-Resource: core X-Ratelimit-Used: 3 X-Xss-Protection: 0 []
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/github/testdata/markdown3.httprr
httprr trace v1 207 6198 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T02%3A57%3A22Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Accept-Ranges: bytes Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: public, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Tue, 04 Jun 2024 12:28:22 GMT Etag: W/"97372b4a1a5b329a038fade04cd5934c5acca1f74d0515121101e2ce66b1ba4e" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: DD96:493B9:15322F77:248A5191:665F0866 X-Ratelimit-Limit: 60 X-Ratelimit-Remaining: 59 X-Ratelimit-Reset: 1717507702 X-Ratelimit-Resource: core X-Ratelimit-Used: 1 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/18","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/18/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/18/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/18/events","html_url":"https://github.com/rsc/markdown/pull/18","id":2276848742,"node_id":"PR_kwDOKnFwjc5ubgV0","number":18,"title":"markdown: emit Info in CodeBlock markdown","user":{"login":"juliaogris","id":1596871,"node_id":"MDQ6VXNlcjE1OTY4NzE=","avatar_url":"https://avatars.githubusercontent.com/u/1596871?v=4","gravatar_id":"","url":"https://api.github.com/users/juliaogris","html_url":"https://github.com/juliaogris","followers_url":"https://api.github.com/users/juliaogris/followers","following_url":"https://api.github.com/users/juliaogris/following{/other_user}","gists_url":"https://api.github.com/users/juliaogris/gists{/gist_id}","starred_url":"https://api.github.com/users/juliaogris/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/juliaogris/subscriptions","organizations_url":"https://api.github.com/users/juliaogris/orgs","repos_url":"https://api.github.com/users/juliaogris/repos","events_url":"https://api.github.com/users/juliaogris/events{/privacy}","received_events_url":"https://api.github.com/users/juliaogris/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2024-05-03T03:59:00Z","updated_at":"2024-06-04T02:57:22Z","closed_at":"2024-06-03T21:40:04Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/18","html_url":"https://github.com/rsc/markdown/pull/18","diff_url":"https://github.com/rsc/markdown/pull/18.diff","patch_url":"https://github.com/rsc/markdown/pull/18.patch","merged_at":"2024-06-03T21:40:04Z"},"body":"Emit the Info field of CodeBlock in the CodeBlock.printMardown function so \r\nthat a round trip from markdown to markdown will preserve the language Info.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/18/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/18/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]193 2704 GET https://api.github.com/repos/rsc/markdown/issues/comments?direction=asc&page=1&since=2024-06-04T02%3A57%3A21Z&sort=updated HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Accept-Ranges: bytes Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: public, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Tue, 04 Jun 2024 12:28:22 GMT Etag: W/"1075157bc09a784524c573b03b8c28dabbce2697b7dc47f380a9ad6d44a8badf" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: DD96:493B9:15323000:248A5264:665F0866 X-Ratelimit-Limit: 60 X-Ratelimit-Remaining: 58 X-Ratelimit-Reset: 1717507702 X-Ratelimit-Resource: core X-Ratelimit-Used: 2 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274","html_url":"https://github.com/rsc/markdown/pull/18#issuecomment-2146475274","issue_url":"https://api.github.com/repos/rsc/markdown/issues/18","id":2146475274,"node_id":"IC_kwDOKnFwjc5_8J0K","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-06-04T02:57:21Z","updated_at":"2024-06-04T02:57:21Z","author_association":"OWNER","body":"Thanks very much!\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}]231 1235 GET https://api.github.com/repos/rsc/markdown/issues/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"5f8cdae3e0a577c993191ba0140691c76a0df6b824580833fc3662906ef5aaf3" HTTP/2.0 304 Not Modified Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: public, max-age=60, s-maxage=60 Content-Encoding: gzip Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Tue, 04 Jun 2024 12:28:23 GMT Etag: W/"5f8cdae3e0a577c993191ba0140691c76a0df6b824580833fc3662906ef5aaf3" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: DD96:493B9:1532304C:248A52EE:665F0866 X-Ratelimit-Limit: 60 X-Ratelimit-Remaining: 57 X-Ratelimit-Reset: 1717507702 X-Ratelimit-Resource: core X-Ratelimit-Used: 3 X-Xss-Protection: 0
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/github/testdata/tmpedit.httprr
httprr trace v1 171 60426 GET https://api.github.com/repos/rsc/tmp/issues?direction=asc&page=1&per_page=100&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Wed, 12 Jun 2024 22:16:14 GMT Etag: W/"607ef31031a66af7f401237402994d37609f3fdf733c50e36cc296479f67790b" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: E800:BDF5C:4C28D94:863925A:666A1E2D X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4680 X-Ratelimit-Reset: 1718233002 X-Ratelimit-Resource: core X-Ratelimit-Used: 320 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/tmp/issues/3","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/3/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/3/events","html_url":"https://github.com/rsc/tmp/issues/3","id":53713865,"node_id":"MDU6SXNzdWU1MzcxMzg2NQ==","number":3,"title":"yet another dummy issue","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2015-01-08T04:35:58Z","updated_at":"2015-01-08T04:35:58Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"lots of these tonight.\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/3/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/3/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/rsc/tmp/issues/4","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/4/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/4/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/4/events","html_url":"https://github.com/rsc/tmp/issues/4","id":53714062,"node_id":"MDU6SXNzdWU1MzcxNDA2Mg==","number":4,"title":"issue the fourth","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2015-01-08T04:40:39Z","updated_at":"2015-01-08T04:40:50Z","closed_at":"2015-01-08T04:40:50Z","author_association":"OWNER","active_lock_reason":null,"body":"more work to do\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/4/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/4/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/rsc/tmp/issues/1","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/1/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/1/events","html_url":"https://github.com/rsc/tmp/issues/1","id":53712850,"node_id":"MDU6SXNzdWU1MzcxMjg1MA==","number":1,"title":"Dummy issue with dummy title","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[{"id":164081808,"node_id":"MDU6TGFiZWwxNjQwODE4MDg=","url":"https://api.github.com/repos/rsc/tmp/labels/none","name":"none","color":"ededed","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-01-08T04:11:46Z","updated_at":"2015-04-10T00:14:18Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"For testing.\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/1/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/1/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/rsc/tmp/issues/2","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/2/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/2/events","html_url":"https://github.com/rsc/tmp/issues/2","id":53713315,"node_id":"MDU6SXNzdWU1MzcxMzMxNQ==","number":2,"title":"New dummy issue","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-01-08T04:21:49Z","updated_at":"2015-04-28T19:22:40Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/2/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/2/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/rsc/tmp/issues/6","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/6/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/6/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/6/events","html_url":"https://github.com/rsc/tmp/pull/6","id":200255851,"node_id":"MDExOlB1bGxSZXF1ZXN0MTAxMTgxMzU1","number":6,"title":"grpcbench: fix HTTP/2 benchmark, add HTTP/1.1","user":{"login":"adg","id":8446613,"node_id":"MDQ6VXNlcjg0NDY2MTM=","avatar_url":"https://avatars.githubusercontent.com/u/8446613?v=4","gravatar_id":"","url":"https://api.github.com/users/adg","html_url":"https://github.com/adg","followers_url":"https://api.github.com/users/adg/followers","following_url":"https://api.github.com/users/adg/following{/other_user}","gists_url":"https://api.github.com/users/adg/gists{/gist_id}","starred_url":"https://api.github.com/users/adg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adg/subscriptions","organizations_url":"https://api.github.com/users/adg/orgs","repos_url":"https://api.github.com/users/adg/repos","events_url":"https://api.github.com/users/adg/events{/privacy}","received_events_url":"https://api.github.com/users/adg/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2017-01-12T01:32:15Z","updated_at":"2017-01-12T13:53:58Z","closed_at":"2017-01-12T13:53:07Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/tmp/pulls/6","html_url":"https://github.com/rsc/tmp/pull/6","diff_url":"https://github.com/rsc/tmp/pull/6.diff","patch_url":"https://github.com/rsc/tmp/pull/6.patch","merged_at":"2017-01-12T13:53:07Z"},"body":"","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/6/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/6/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/rsc/tmp/issues/7","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/7/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/7/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/7/events","html_url":"https://github.com/rsc/tmp/pull/7","id":212269702,"node_id":"MDExOlB1bGxSZXF1ZXN0MTA5MzYzNDM0","number":7,"title":"fieldtrack: add testing docs","user":{"login":"mdempsky","id":38349,"node_id":"MDQ6VXNlcjM4MzQ5","avatar_url":"https://avatars.githubusercontent.com/u/38349?v=4","gravatar_id":"","url":"https://api.github.com/users/mdempsky","html_url":"https://github.com/mdempsky","followers_url":"https://api.github.com/users/mdempsky/followers","following_url":"https://api.github.com/users/mdempsky/following{/other_user}","gists_url":"https://api.github.com/users/mdempsky/gists{/gist_id}","starred_url":"https://api.github.com/users/mdempsky/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mdempsky/subscriptions","organizations_url":"https://api.github.com/users/mdempsky/orgs","repos_url":"https://api.github.com/users/mdempsky/repos","events_url":"https://api.github.com/users/mdempsky/events{/privacy}","received_events_url":"https://api.github.com/users/mdempsky/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-03-06T22:26:19Z","updated_at":"2017-03-07T00:43:47Z","closed_at":"2017-03-07T00:43:47Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/tmp/pulls/7","html_url":"https://github.com/rsc/tmp/pull/7","diff_url":"https://github.com/rsc/tmp/pull/7.diff","patch_url":"https://github.com/rsc/tmp/pull/7.patch","merged_at":"2017-03-07T00:43:47Z"},"body":"I have to always look up either the instructions you sent me or hope it's still in my shell history. I just spent way too long confused because somehow the -k flag was truncated in my history, so of course the test kept failing.","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/7/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/7/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/rsc/tmp/issues/8","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/8/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/8/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/8/events","html_url":"https://github.com/rsc/tmp/issues/8","id":895771029,"node_id":"MDU6SXNzdWU4OTU3NzEwMjk=","number":8,"title":"go2asm prints nothing","user":{"login":"prestonvanloon","id":7246818,"node_id":"MDQ6VXNlcjcyNDY4MTg=","avatar_url":"https://avatars.githubusercontent.com/u/7246818?v=4","gravatar_id":"","url":"https://api.github.com/users/prestonvanloon","html_url":"https://github.com/prestonvanloon","followers_url":"https://api.github.com/users/prestonvanloon/followers","following_url":"https://api.github.com/users/prestonvanloon/following{/other_user}","gists_url":"https://api.github.com/users/prestonvanloon/gists{/gist_id}","starred_url":"https://api.github.com/users/prestonvanloon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/prestonvanloon/subscriptions","organizations_url":"https://api.github.com/users/prestonvanloon/orgs","repos_url":"https://api.github.com/users/prestonvanloon/repos","events_url":"https://api.github.com/users/prestonvanloon/events{/privacy}","received_events_url":"https://api.github.com/users/prestonvanloon/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2021-05-19T18:48:46Z","updated_at":"2021-06-11T19:47:00Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"I followed the example for go2asm and there was no output.\r\n\r\n```\r\ngo version go1.16.3 linux/amd64\r\n```","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/8/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/8/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/rsc/tmp/issues/9","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/9/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/9/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/9/events","html_url":"https://github.com/rsc/tmp/pull/9","id":1163931093,"node_id":"PR_kwDOARP1lc40LAF1","number":9,"title":"go2asm: update startTextRE for go1.17 assembly output","user":{"login":"emcfarlane","id":3036610,"node_id":"MDQ6VXNlcjMwMzY2MTA=","avatar_url":"https://avatars.githubusercontent.com/u/3036610?v=4","gravatar_id":"","url":"https://api.github.com/users/emcfarlane","html_url":"https://github.com/emcfarlane","followers_url":"https://api.github.com/users/emcfarlane/followers","following_url":"https://api.github.com/users/emcfarlane/following{/other_user}","gists_url":"https://api.github.com/users/emcfarlane/gists{/gist_id}","starred_url":"https://api.github.com/users/emcfarlane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/emcfarlane/subscriptions","organizations_url":"https://api.github.com/users/emcfarlane/orgs","repos_url":"https://api.github.com/users/emcfarlane/repos","events_url":"https://api.github.com/users/emcfarlane/events{/privacy}","received_events_url":"https://api.github.com/users/emcfarlane/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2022-03-09T13:19:45Z","updated_at":"2022-03-09T14:13:04Z","closed_at":null,"author_association":"FIRST_TIME_CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/tmp/pulls/9","html_url":"https://github.com/rsc/tmp/pull/9","diff_url":"https://github.com/rsc/tmp/pull/9.diff","patch_url":"https://github.com/rsc/tmp/pull/9.patch","merged_at":null},"body":"Adjusted regex on ouptut from go1.17.\r\n\r\nFix for https://github.com/rsc/tmp/issues/8","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/9/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/9/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/rsc/tmp/issues/10","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/10/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/10/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/10/events","html_url":"https://github.com/rsc/tmp/pull/10","id":1596335062,"node_id":"PR_kwDOARP1lc5KlCKW","number":10,"title":"build(deps): bump golang.org/x/text from 0.3.6 to 0.3.8 in /rmplay","user":{"login":"dependabot[bot]","id":49699333,"node_id":"MDM6Qm90NDk2OTkzMzM=","avatar_url":"https://avatars.githubusercontent.com/in/29110?v=4","gravatar_id":"","url":"https://api.github.com/users/dependabot%5Bbot%5D","html_url":"https://github.com/apps/dependabot","followers_url":"https://api.github.com/users/dependabot%5Bbot%5D/followers","following_url":"https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dependabot%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/dependabot%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/dependabot%5Bbot%5D/repos","events_url":"https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/dependabot%5Bbot%5D/received_events","type":"Bot","site_admin":false},"labels":[{"id":5188391164,"node_id":"LA_kwDOARP1lc8AAAABNUCQ_A","url":"https://api.github.com/repos/rsc/tmp/labels/dependencies","name":"dependencies","color":"0366d6","default":false,"description":"Pull requests that update a dependency file"}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-02-23T07:15:03Z","updated_at":"2023-05-12T16:13:45Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/tmp/pulls/10","html_url":"https://github.com/rsc/tmp/pull/10","diff_url":"https://github.com/rsc/tmp/pull/10.diff","patch_url":"https://github.com/rsc/tmp/pull/10.patch","merged_at":null},"body":"Bumps [golang.org/x/text](https://github.com/golang/text) from 0.3.6 to 0.3.8.\n<details>\n<summary>Commits</summary>\n<ul>\n<li><a href=\"https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c\"><code>434eadc</code></a> language: reject excessively large Accept-Language strings</li>\n<li><a href=\"https://github.com/golang/text/commit/23407e72ed5b895a2dfd230aec777f4fbe026d6a\"><code>23407e7</code></a> go.mod: ignore cyclic dependency for tagging</li>\n<li><a href=\"https://github.com/golang/text/commit/b18d3dd8a4b426ebedcf279b593e85ac4985b9d3\"><code>b18d3dd</code></a> secure/precis: replace bytes.Compare with bytes.Equal</li>\n<li><a href=\"https://github.com/golang/text/commit/795e854ff348c9cac4fd0033ce04c417705dd0bb\"><code>795e854</code></a> all: replace io/ioutil with io and os package</li>\n<li><a href=\"https://github.com/golang/text/commit/b0ca10ff35f1325c7d0ac7830fe3f036bd72d8f9\"><code>b0ca10f</code></a> internal/language: bump script types to uint16 and update registry</li>\n<li><a href=\"https://github.com/golang/text/commit/ba9b0e1d4b03523c708709935fbc961124b6967b\"><code>ba9b0e1</code></a> go.mod: update x/tools to HEAD</li>\n<li><a href=\"https://github.com/golang/text/commit/d03b41800055b01e3895b1e047af09733c93bf63\"><code>d03b418</code></a> A+C: delete AUTHORS and CONTRIBUTORS</li>\n<li><a href=\"https://github.com/golang/text/commit/b4bca84b03619dba00657375259024a7f8ae6712\"><code>b4bca84</code></a> language/display: fix Tag method comment</li>\n<li><a href=\"https://github.com/golang/text/commit/ea49e3e2d5b3f1518081d8bc53ffefc8bc60ecec\"><code>ea49e3e</code></a> go.mod: update x/tools to HEAD</li>\n<li><a href=\"https://github.com/golang/text/commit/78819d01d041a94e055bbaa2d95e5e4d49e8f8a0\"><code>78819d0</code></a> go.mod: update to golang.org/x/text v0.1.10</li>\n<li>Additional commits viewable in <a href=\"https://github.com/golang/text/compare/v0.3.6...v0.3.8\">compare view</a></li>\n</ul>\n</details>\n<br />\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/text&package-manager=go_modules&previous-version=0.3.6&new-version=0.3.8)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n<details>\n<summary>Dependabot commands and options</summary>\n<br />\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language\n- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language\n- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language\n- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language\n\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/rsc/tmp/network/alerts).\n\n</details>> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/10/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/10/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/rsc/tmp/issues/11","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/11/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/11/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/11/events","html_url":"https://github.com/rsc/tmp/pull/11","id":1599435473,"node_id":"PR_kwDOARP1lc5KvjBc","number":11,"title":"build(deps): bump golang.org/x/net from 0.0.0-20200320220750-118fecf932d8 to 0.7.0 in /html2md","user":{"login":"dependabot[bot]","id":49699333,"node_id":"MDM6Qm90NDk2OTkzMzM=","avatar_url":"https://avatars.githubusercontent.com/in/29110?v=4","gravatar_id":"","url":"https://api.github.com/users/dependabot%5Bbot%5D","html_url":"https://github.com/apps/dependabot","followers_url":"https://api.github.com/users/dependabot%5Bbot%5D/followers","following_url":"https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dependabot%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/dependabot%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/dependabot%5Bbot%5D/repos","events_url":"https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/dependabot%5Bbot%5D/received_events","type":"Bot","site_admin":false},"labels":[{"id":5188391164,"node_id":"LA_kwDOARP1lc8AAAABNUCQ_A","url":"https://api.github.com/repos/rsc/tmp/labels/dependencies","name":"dependencies","color":"0366d6","default":false,"description":"Pull requests that update a dependency file"}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-02-25T00:17:13Z","updated_at":"2023-05-12T16:13:45Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/tmp/pulls/11","html_url":"https://github.com/rsc/tmp/pull/11","diff_url":"https://github.com/rsc/tmp/pull/11.diff","patch_url":"https://github.com/rsc/tmp/pull/11.patch","merged_at":null},"body":"Bumps [golang.org/x/net](https://github.com/golang/net) from 0.0.0-20200320220750-118fecf932d8 to 0.7.0.\n<details>\n<summary>Commits</summary>\n<ul>\n<li>See full diff in <a href=\"https://github.com/golang/net/commits/v0.7.0\">compare view</a></li>\n</ul>\n</details>\n<br />\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/net&package-manager=go_modules&previous-version=0.0.0-20200320220750-118fecf932d8&new-version=0.7.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n<details>\n<summary>Dependabot commands and options</summary>\n<br />\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language\n- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language\n- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language\n- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language\n\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/rsc/tmp/network/alerts).\n\n</details>> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/11/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/11/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/rsc/tmp/issues/12","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/12/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/12/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/12/events","html_url":"https://github.com/rsc/tmp/pull/12","id":1599458497,"node_id":"PR_kwDOARP1lc5KvoGw","number":12,"title":"build(deps): bump golang.org/x/net from 0.0.0-20200707034311-ab3426394381 to 0.7.0 in /unsafeconv","user":{"login":"dependabot[bot]","id":49699333,"node_id":"MDM6Qm90NDk2OTkzMzM=","avatar_url":"https://avatars.githubusercontent.com/in/29110?v=4","gravatar_id":"","url":"https://api.github.com/users/dependabot%5Bbot%5D","html_url":"https://github.com/apps/dependabot","followers_url":"https://api.github.com/users/dependabot%5Bbot%5D/followers","following_url":"https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dependabot%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/dependabot%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/dependabot%5Bbot%5D/repos","events_url":"https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/dependabot%5Bbot%5D/received_events","type":"Bot","site_admin":false},"labels":[{"id":5188391164,"node_id":"LA_kwDOARP1lc8AAAABNUCQ_A","url":"https://api.github.com/repos/rsc/tmp/labels/dependencies","name":"dependencies","color":"0366d6","default":false,"description":"Pull requests that update a dependency file"}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-02-25T00:57:52Z","updated_at":"2023-05-12T16:13:46Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/tmp/pulls/12","html_url":"https://github.com/rsc/tmp/pull/12","diff_url":"https://github.com/rsc/tmp/pull/12.diff","patch_url":"https://github.com/rsc/tmp/pull/12.patch","merged_at":null},"body":"Bumps [golang.org/x/net](https://github.com/golang/net) from 0.0.0-20200707034311-ab3426394381 to 0.7.0.\n<details>\n<summary>Commits</summary>\n<ul>\n<li>See full diff in <a href=\"https://github.com/golang/net/commits/v0.7.0\">compare view</a></li>\n</ul>\n</details>\n<br />\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/net&package-manager=go_modules&previous-version=0.0.0-20200707034311-ab3426394381&new-version=0.7.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n<details>\n<summary>Dependabot commands and options</summary>\n<br />\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language\n- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language\n- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language\n- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language\n\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/rsc/tmp/network/alerts).\n\n</details>> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/12/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/12/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/rsc/tmp/issues/13","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/13/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/13/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/13/events","html_url":"https://github.com/rsc/tmp/pull/13","id":1599578688,"node_id":"PR_kwDOARP1lc5KwBk4","number":13,"title":"build(deps): bump golang.org/x/net from 0.0.0-20210503060351-7fd8e65b6420 to 0.7.0 in /rmplay","user":{"login":"dependabot[bot]","id":49699333,"node_id":"MDM6Qm90NDk2OTkzMzM=","avatar_url":"https://avatars.githubusercontent.com/in/29110?v=4","gravatar_id":"","url":"https://api.github.com/users/dependabot%5Bbot%5D","html_url":"https://github.com/apps/dependabot","followers_url":"https://api.github.com/users/dependabot%5Bbot%5D/followers","following_url":"https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dependabot%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/dependabot%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/dependabot%5Bbot%5D/repos","events_url":"https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/dependabot%5Bbot%5D/received_events","type":"Bot","site_admin":false},"labels":[{"id":5188391164,"node_id":"LA_kwDOARP1lc8AAAABNUCQ_A","url":"https://api.github.com/repos/rsc/tmp/labels/dependencies","name":"dependencies","color":"0366d6","default":false,"description":"Pull requests that update a dependency file"}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-02-25T06:27:00Z","updated_at":"2023-05-12T16:13:47Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/tmp/pulls/13","html_url":"https://github.com/rsc/tmp/pull/13","diff_url":"https://github.com/rsc/tmp/pull/13.diff","patch_url":"https://github.com/rsc/tmp/pull/13.patch","merged_at":null},"body":"Bumps [golang.org/x/net](https://github.com/golang/net) from 0.0.0-20210503060351-7fd8e65b6420 to 0.7.0.\n<details>\n<summary>Commits</summary>\n<ul>\n<li>See full diff in <a href=\"https://github.com/golang/net/commits/v0.7.0\">compare view</a></li>\n</ul>\n</details>\n<br />\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/net&package-manager=go_modules&previous-version=0.0.0-20210503060351-7fd8e65b6420&new-version=0.7.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n<details>\n<summary>Dependabot commands and options</summary>\n<br />\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language\n- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language\n- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language\n- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language\n\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/rsc/tmp/network/alerts).\n\n</details>> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/13/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/13/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/rsc/tmp/issues/14","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/14/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/14/events","html_url":"https://github.com/rsc/tmp/pull/14","id":1599579459,"node_id":"PR_kwDOARP1lc5KwBva","number":14,"title":"build(deps): bump golang.org/x/sys from 0.0.0-20200812155832-6a926be9bd1d to 0.1.0 in /unsafeconv","user":{"login":"dependabot[bot]","id":49699333,"node_id":"MDM6Qm90NDk2OTkzMzM=","avatar_url":"https://avatars.githubusercontent.com/in/29110?v=4","gravatar_id":"","url":"https://api.github.com/users/dependabot%5Bbot%5D","html_url":"https://github.com/apps/dependabot","followers_url":"https://api.github.com/users/dependabot%5Bbot%5D/followers","following_url":"https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dependabot%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/dependabot%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/dependabot%5Bbot%5D/repos","events_url":"https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/dependabot%5Bbot%5D/received_events","type":"Bot","site_admin":false},"labels":[{"id":5188391164,"node_id":"LA_kwDOARP1lc8AAAABNUCQ_A","url":"https://api.github.com/repos/rsc/tmp/labels/dependencies","name":"dependencies","color":"0366d6","default":false,"description":"Pull requests that update a dependency file"}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-02-25T06:29:40Z","updated_at":"2023-05-12T16:13:48Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/tmp/pulls/14","html_url":"https://github.com/rsc/tmp/pull/14","diff_url":"https://github.com/rsc/tmp/pull/14.diff","patch_url":"https://github.com/rsc/tmp/pull/14.patch","merged_at":null},"body":"Bumps [golang.org/x/sys](https://github.com/golang/sys) from 0.0.0-20200812155832-6a926be9bd1d to 0.1.0.\n<details>\n<summary>Commits</summary>\n<ul>\n<li>See full diff in <a href=\"https://github.com/golang/sys/commits/v0.1.0\">compare view</a></li>\n</ul>\n</details>\n<br />\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/sys&package-manager=go_modules&previous-version=0.0.0-20200812155832-6a926be9bd1d&new-version=0.1.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n<details>\n<summary>Dependabot commands and options</summary>\n<br />\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language\n- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language\n- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language\n- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language\n\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/rsc/tmp/network/alerts).\n\n</details>> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/14/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/14/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/rsc/tmp/issues/15","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/15/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/15/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/15/events","html_url":"https://github.com/rsc/tmp/pull/15","id":1599630129,"node_id":"PR_kwDOARP1lc5KwMEe","number":15,"title":"build(deps): bump golang.org/x/sys from 0.0.0-20210806184541-e5e7981a1069 to 0.1.0 in /rmplay","user":{"login":"dependabot[bot]","id":49699333,"node_id":"MDM6Qm90NDk2OTkzMzM=","avatar_url":"https://avatars.githubusercontent.com/in/29110?v=4","gravatar_id":"","url":"https://api.github.com/users/dependabot%5Bbot%5D","html_url":"https://github.com/apps/dependabot","followers_url":"https://api.github.com/users/dependabot%5Bbot%5D/followers","following_url":"https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dependabot%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/dependabot%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/dependabot%5Bbot%5D/repos","events_url":"https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/dependabot%5Bbot%5D/received_events","type":"Bot","site_admin":false},"labels":[{"id":5188391164,"node_id":"LA_kwDOARP1lc8AAAABNUCQ_A","url":"https://api.github.com/repos/rsc/tmp/labels/dependencies","name":"dependencies","color":"0366d6","default":false,"description":"Pull requests that update a dependency file"}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-02-25T09:24:25Z","updated_at":"2023-05-12T16:13:50Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/tmp/pulls/15","html_url":"https://github.com/rsc/tmp/pull/15","diff_url":"https://github.com/rsc/tmp/pull/15.diff","patch_url":"https://github.com/rsc/tmp/pull/15.patch","merged_at":null},"body":"Bumps [golang.org/x/sys](https://github.com/golang/sys) from 0.0.0-20210806184541-e5e7981a1069 to 0.1.0.\n<details>\n<summary>Commits</summary>\n<ul>\n<li>See full diff in <a href=\"https://github.com/golang/sys/commits/v0.1.0\">compare view</a></li>\n</ul>\n</details>\n<br />\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/sys&package-manager=go_modules&previous-version=0.0.0-20210806184541-e5e7981a1069&new-version=0.1.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n<details>\n<summary>Dependabot commands and options</summary>\n<br />\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language\n- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language\n- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language\n- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language\n\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/rsc/tmp/network/alerts).\n\n</details>> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/15/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/15/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/rsc/tmp/issues/16","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/16/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/16/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/16/events","html_url":"https://github.com/rsc/tmp/issues/16","id":1853695932,"node_id":"I_kwDOARP1lc5ufSe8","number":16,"title":"demo issue","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":9,"created_at":"2023-08-16T18:10:15Z","updated_at":"2023-08-16T18:13:32Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"demo issue\r\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/16/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/16/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/rsc/tmp/issues/5","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/5/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/5/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/5/events","html_url":"https://github.com/rsc/tmp/issues/5","id":67390257,"node_id":"MDU6SXNzdWU2NzM5MDI1Nw==","number":5,"title":"another new issue","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[{"id":198120769,"node_id":"MDU6TGFiZWwxOTgxMjA3Njk=","url":"https://api.github.com/repos/rsc/tmp/labels/foo","name":"foo","color":"ededed","default":false,"description":null},{"id":1311591739,"node_id":"MDU6TGFiZWwxMzExNTkxNzM5","url":"https://api.github.com/repos/rsc/tmp/labels/abc.def","name":"abc.def","color":"f407b5","default":false,"description":""}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":2,"created_at":"2015-04-09T15:46:47Z","updated_at":"2024-06-12T22:14:45Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"just like creating issues\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/5/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/5/timeline","performed_via_github_app":null,"state_reason":null}]157 32324 GET https://api.github.com/repos/rsc/tmp/issues/comments?direction=asc&page=1&sort=updated HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Wed, 12 Jun 2024 22:16:14 GMT Etag: W/"4daf44b1dd65635aa752ffb37fd873ed97f43554fd76626d53918fc2f0f9cbcf" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: E800:BDF5C:4C28E38:8639380:666A1E2E X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4679 X-Ratelimit-Reset: 1718233002 X-Ratelimit-Resource: core X-Ratelimit-Used: 321 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/69133662","html_url":"https://github.com/rsc/tmp/issues/1#issuecomment-69133662","issue_url":"https://api.github.com/repos/rsc/tmp/issues/1","id":69133662,"node_id":"MDEyOklzc3VlQ29tbWVudDY5MTMzNjYy","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2015-01-08T04:12:37Z","updated_at":"2015-01-08T04:12:37Z","author_association":"OWNER","body":"Hello, world.\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/69133662/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/69133674","html_url":"https://github.com/rsc/tmp/issues/1#issuecomment-69133674","issue_url":"https://api.github.com/repos/rsc/tmp/issues/1","id":69133674,"node_id":"MDEyOklzc3VlQ29tbWVudDY5MTMzNjc0","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2015-01-08T04:12:49Z","updated_at":"2015-01-08T04:12:49Z","author_association":"OWNER","body":"Another comment.\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/69133674/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/91268245","html_url":"https://github.com/rsc/tmp/issues/2#issuecomment-91268245","issue_url":"https://api.github.com/repos/rsc/tmp/issues/2","id":91268245,"node_id":"MDEyOklzc3VlQ29tbWVudDkxMjY4MjQ1","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2015-04-09T15:44:11Z","updated_at":"2015-04-09T15:44:11Z","author_association":"OWNER","body":"hello world\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/91268245/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/91268552","html_url":"https://github.com/rsc/tmp/issues/2#issuecomment-91268552","issue_url":"https://api.github.com/repos/rsc/tmp/issues/2","id":91268552,"node_id":"MDEyOklzc3VlQ29tbWVudDkxMjY4NTUy","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2015-04-09T15:45:36Z","updated_at":"2015-04-09T15:45:36Z","author_association":"OWNER","body":"hello again\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/91268552/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/91386473","html_url":"https://github.com/rsc/tmp/issues/2#issuecomment-91386473","issue_url":"https://api.github.com/repos/rsc/tmp/issues/2","id":91386473,"node_id":"MDEyOklzc3VlQ29tbWVudDkxMzg2NDcz","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2015-04-10T00:14:18Z","updated_at":"2015-04-10T00:14:18Z","author_association":"OWNER","body":"Granite is harder.\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/91386473/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/91386474","html_url":"https://github.com/rsc/tmp/issues/1#issuecomment-91386474","issue_url":"https://api.github.com/repos/rsc/tmp/issues/1","id":91386474,"node_id":"MDEyOklzc3VlQ29tbWVudDkxMzg2NDc0","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2015-04-10T00:14:18Z","updated_at":"2015-04-10T00:14:18Z","author_association":"OWNER","body":"Granite is harder.\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/91386474/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/272168302","html_url":"https://github.com/rsc/tmp/pull/6#issuecomment-272168302","issue_url":"https://api.github.com/repos/rsc/tmp/issues/6","id":272168302,"node_id":"MDEyOklzc3VlQ29tbWVudDI3MjE2ODMwMg==","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2017-01-12T13:53:58Z","updated_at":"2017-01-12T13:53:58Z","author_association":"OWNER","body":"Merged without reviewing. Added you as collaborator for the repo.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/272168302/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/859802699","html_url":"https://github.com/rsc/tmp/issues/8#issuecomment-859802699","issue_url":"https://api.github.com/repos/rsc/tmp/issues/8","id":859802699,"node_id":"MDEyOklzc3VlQ29tbWVudDg1OTgwMjY5OQ==","user":{"login":"JAicewizard","id":19241481,"node_id":"MDQ6VXNlcjE5MjQxNDgx","avatar_url":"https://avatars.githubusercontent.com/u/19241481?v=4","gravatar_id":"","url":"https://api.github.com/users/JAicewizard","html_url":"https://github.com/JAicewizard","followers_url":"https://api.github.com/users/JAicewizard/followers","following_url":"https://api.github.com/users/JAicewizard/following{/other_user}","gists_url":"https://api.github.com/users/JAicewizard/gists{/gist_id}","starred_url":"https://api.github.com/users/JAicewizard/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JAicewizard/subscriptions","organizations_url":"https://api.github.com/users/JAicewizard/orgs","repos_url":"https://api.github.com/users/JAicewizard/repos","events_url":"https://api.github.com/users/JAicewizard/events{/privacy}","received_events_url":"https://api.github.com/users/JAicewizard/received_events","type":"User","site_admin":false},"created_at":"2021-06-11T19:47:00Z","updated_at":"2021-06-11T19:47:00Z","author_association":"NONE","body":"I have the same problem.\r\n\r\nI would like to edit the assembly of a function to verify potential optimization improvements, this tool seems to be the only one that should allow me to do this.","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/859802699/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/1681066365","html_url":"https://github.com/rsc/tmp/issues/16#issuecomment-1681066365","issue_url":"https://api.github.com/repos/rsc/tmp/issues/16","id":1681066365,"node_id":"IC_kwDOARP1lc5kMwl9","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2023-08-16T18:10:31Z","updated_at":"2023-08-16T18:10:31Z","author_association":"OWNER","body":"comment 1","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/1681066365/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/1681066616","html_url":"https://github.com/rsc/tmp/issues/16#issuecomment-1681066616","issue_url":"https://api.github.com/repos/rsc/tmp/issues/16","id":1681066616,"node_id":"IC_kwDOARP1lc5kMwp4","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2023-08-16T18:10:45Z","updated_at":"2023-08-16T18:10:45Z","author_association":"OWNER","body":"comment 2","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/1681066616/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/1681067880","html_url":"https://github.com/rsc/tmp/issues/16#issuecomment-1681067880","issue_url":"https://api.github.com/repos/rsc/tmp/issues/16","id":1681067880,"node_id":"IC_kwDOARP1lc5kMw9o","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2023-08-16T18:11:48Z","updated_at":"2023-08-16T18:11:48Z","author_association":"OWNER","body":" Four score and seven years ago our fathers brought forth on\r\nthis continent, a new nation, conceived in Liberty, and dedicated\r\nto the proposition that all men are created equal.\r\n Now we are engaged in a great Civil War, testing whether that\r\nnation, or any nation so conceived and so dedicated, can long\r\nendure.\r\n We are met on a great battle-field of that war.\r\n We have come to dedicate a portion of that field, as a final\r\nresting place for those who here gave their lives that that\r\nnation might live. It is altogether fitting and proper that\r\nwe should do this.\r\n But, in a larger sense, we can not dedicate — we can not\r\nconsecrate — we can not hallow — this ground.\r\n The brave men, living and dead, who struggled here, have\r\nconsecrated it, far above our poor power to add or detract.\r\nThe world will little note, nor long remember what we say here,\r\nbut it can never forget what they did here.\r\n It is for us the living, rather, to be dedicated here to the\r\nunfinished work which they who fought here have thus far so\r\nnobly advanced. It is rather for us to be here dedicated to\r\nthe great task remaining before us — that from these honored\r\ndead we take increased devotion to that cause for which they\r\ngave the last full measure of devotion —\r\n that we here highly resolve that these dead shall not have\r\ndied in vain — that this nation, under God, shall have a new\r\nbirth of freedom — and that government of the people, by the\r\npeople, for the people, shall not perish from this earth.\r\n\r\nAbraham Lincoln, November 19, 1863, Gettysburg, Pennsylvania\r\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/1681067880/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/1681068087","html_url":"https://github.com/rsc/tmp/issues/16#issuecomment-1681068087","issue_url":"https://api.github.com/repos/rsc/tmp/issues/16","id":1681068087,"node_id":"IC_kwDOARP1lc5kMxA3","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2023-08-16T18:11:58Z","updated_at":"2023-08-16T18:11:58Z","author_association":"OWNER","body":"comment 3","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/1681068087/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/1681068816","html_url":"https://github.com/rsc/tmp/issues/16#issuecomment-1681068816","issue_url":"https://api.github.com/repos/rsc/tmp/issues/16","id":1681068816,"node_id":"IC_kwDOARP1lc5kMxMQ","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2023-08-16T18:12:35Z","updated_at":"2023-08-16T18:12:35Z","author_association":"OWNER","body":"comment 4\r\n\r\nthis is a very\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nlong comment, long enough to scroll off the screen","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/1681068816/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/1681069013","html_url":"https://github.com/rsc/tmp/issues/16#issuecomment-1681069013","issue_url":"https://api.github.com/repos/rsc/tmp/issues/16","id":1681069013,"node_id":"IC_kwDOARP1lc5kMxPV","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2023-08-16T18:12:44Z","updated_at":"2023-08-16T18:12:44Z","author_association":"OWNER","body":"comment 4\r\n\r\nthis is a very\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nlong comment, long enough to scroll off the screen","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/1681069013/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/1681069271","html_url":"https://github.com/rsc/tmp/issues/16#issuecomment-1681069271","issue_url":"https://api.github.com/repos/rsc/tmp/issues/16","id":1681069271,"node_id":"IC_kwDOARP1lc5kMxTX","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2023-08-16T18:12:57Z","updated_at":"2023-08-16T18:12:57Z","author_association":"OWNER","body":"comment 4\r\n\r\nthis is a very\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nlong comment, long enough to scroll off the screen\r\n\r\ncomment 4\r\n\r\nthis is a very\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nlong comment, long enough to scroll off the screen","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/1681069271/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/1681069700","html_url":"https://github.com/rsc/tmp/issues/16#issuecomment-1681069700","issue_url":"https://api.github.com/repos/rsc/tmp/issues/16","id":1681069700,"node_id":"IC_kwDOARP1lc5kMxaE","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2023-08-16T18:13:18Z","updated_at":"2023-08-16T18:13:18Z","author_association":"OWNER","body":"comment\r\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/1681069700/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/1681070006","html_url":"https://github.com/rsc/tmp/issues/16#issuecomment-1681070006","issue_url":"https://api.github.com/repos/rsc/tmp/issues/16","id":1681070006,"node_id":"IC_kwDOARP1lc5kMxe2","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2023-08-16T18:13:32Z","updated_at":"2023-08-16T18:13:32Z","author_association":"OWNER","body":"comment 4\r\n\r\nthis is a very\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\n\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\n\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\nvery\r\n\r\nlong comment, long enough to scroll off the screen","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/1681070006/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/2163975931","html_url":"https://github.com/rsc/tmp/issues/5#issuecomment-2163975931","issue_url":"https://api.github.com/repos/rsc/tmp/issues/5","id":2163975931,"node_id":"IC_kwDOARP1lc6A-6b7","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-06-12T22:02:54Z","updated_at":"2024-06-12T22:14:43Z","author_association":"OWNER","body":"Comment!\r\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/2163975931/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/2163988947","html_url":"https://github.com/rsc/tmp/issues/5#issuecomment-2163988947","issue_url":"https://api.github.com/repos/rsc/tmp/issues/5","id":2163988947,"node_id":"IC_kwDOARP1lc6A-9nT","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-06-12T22:14:43Z","updated_at":"2024-06-12T22:14:43Z","author_association":"OWNER","body":"testing. rot13 is the best.","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/2163988947/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}]141 244637 GET https://api.github.com/repos/rsc/tmp/issues/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Wed, 12 Jun 2024 22:16:14 GMT Etag: W/"57e3804f6cf99163fc98fe00a67ed5753e7101352c976978b6e7cfd353550341" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: E800:BDF5C:4C28ECA:8639478:666A1E2E X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4678 X-Ratelimit-Reset: 1718233002 X-Ratelimit-Resource: core X-Ratelimit-Used: 322 X-Xss-Protection: 0 [{"id":8607614126,"node_id":"LE_lADOARP1lc5fWGsxzwAAAAIBDcSu","url":"https://api.github.com/repos/rsc/tmp/issues/events/8607614126","actor":{"login":"dependabot[bot]","id":49699333,"node_id":"MDM6Qm90NDk2OTkzMzM=","avatar_url":"https://avatars.githubusercontent.com/in/29110?v=4","gravatar_id":"","url":"https://api.github.com/users/dependabot%5Bbot%5D","html_url":"https://github.com/apps/dependabot","followers_url":"https://api.github.com/users/dependabot%5Bbot%5D/followers","following_url":"https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dependabot%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/dependabot%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/dependabot%5Bbot%5D/repos","events_url":"https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/dependabot%5Bbot%5D/received_events","type":"Bot","site_admin":false},"event":"labeled","commit_id":null,"commit_url":null,"created_at":"2023-02-25T09:24:26Z","label":{"name":"dependencies","color":"0366d6"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/15","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/15/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/15/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/15/events","html_url":"https://github.com/rsc/tmp/pull/15","id":1599630129,"node_id":"PR_kwDOARP1lc5KwMEe","number":15,"title":"build(deps): bump golang.org/x/sys from 0.0.0-20210806184541-e5e7981a1069 to 0.1.0 in /rmplay","user":{"login":"dependabot[bot]","id":49699333,"node_id":"MDM6Qm90NDk2OTkzMzM=","avatar_url":"https://avatars.githubusercontent.com/in/29110?v=4","gravatar_id":"","url":"https://api.github.com/users/dependabot%5Bbot%5D","html_url":"https://github.com/apps/dependabot","followers_url":"https://api.github.com/users/dependabot%5Bbot%5D/followers","following_url":"https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dependabot%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/dependabot%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/dependabot%5Bbot%5D/repos","events_url":"https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/dependabot%5Bbot%5D/received_events","type":"Bot","site_admin":false},"labels":[{"id":5188391164,"node_id":"LA_kwDOARP1lc8AAAABNUCQ_A","url":"https://api.github.com/repos/rsc/tmp/labels/dependencies","name":"dependencies","color":"0366d6","default":false,"description":"Pull requests that update a dependency file"}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-02-25T09:24:25Z","updated_at":"2023-05-12T16:13:50Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/tmp/pulls/15","html_url":"https://github.com/rsc/tmp/pull/15","diff_url":"https://github.com/rsc/tmp/pull/15.diff","patch_url":"https://github.com/rsc/tmp/pull/15.patch","merged_at":null},"body":"Bumps [golang.org/x/sys](https://github.com/golang/sys) from 0.0.0-20210806184541-e5e7981a1069 to 0.1.0.\n<details>\n<summary>Commits</summary>\n<ul>\n<li>See full diff in <a href=\"https://github.com/golang/sys/commits/v0.1.0\">compare view</a></li>\n</ul>\n</details>\n<br />\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/sys&package-manager=go_modules&previous-version=0.0.0-20210806184541-e5e7981a1069&new-version=0.1.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n<details>\n<summary>Dependabot commands and options</summary>\n<br />\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language\n- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language\n- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language\n- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language\n\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/rsc/tmp/network/alerts).\n\n</details>> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/15/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/15/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":8607407247,"node_id":"LE_lADOARP1lc5fV6VDzwAAAAIBCpyP","url":"https://api.github.com/repos/rsc/tmp/issues/events/8607407247","actor":{"login":"dependabot[bot]","id":49699333,"node_id":"MDM6Qm90NDk2OTkzMzM=","avatar_url":"https://avatars.githubusercontent.com/in/29110?v=4","gravatar_id":"","url":"https://api.github.com/users/dependabot%5Bbot%5D","html_url":"https://github.com/apps/dependabot","followers_url":"https://api.github.com/users/dependabot%5Bbot%5D/followers","following_url":"https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dependabot%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/dependabot%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/dependabot%5Bbot%5D/repos","events_url":"https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/dependabot%5Bbot%5D/received_events","type":"Bot","site_admin":false},"event":"labeled","commit_id":null,"commit_url":null,"created_at":"2023-02-25T06:29:41Z","label":{"name":"dependencies","color":"0366d6"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/14","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/14/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/14/events","html_url":"https://github.com/rsc/tmp/pull/14","id":1599579459,"node_id":"PR_kwDOARP1lc5KwBva","number":14,"title":"build(deps): bump golang.org/x/sys from 0.0.0-20200812155832-6a926be9bd1d to 0.1.0 in /unsafeconv","user":{"login":"dependabot[bot]","id":49699333,"node_id":"MDM6Qm90NDk2OTkzMzM=","avatar_url":"https://avatars.githubusercontent.com/in/29110?v=4","gravatar_id":"","url":"https://api.github.com/users/dependabot%5Bbot%5D","html_url":"https://github.com/apps/dependabot","followers_url":"https://api.github.com/users/dependabot%5Bbot%5D/followers","following_url":"https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dependabot%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/dependabot%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/dependabot%5Bbot%5D/repos","events_url":"https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/dependabot%5Bbot%5D/received_events","type":"Bot","site_admin":false},"labels":[{"id":5188391164,"node_id":"LA_kwDOARP1lc8AAAABNUCQ_A","url":"https://api.github.com/repos/rsc/tmp/labels/dependencies","name":"dependencies","color":"0366d6","default":false,"description":"Pull requests that update a dependency file"}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-02-25T06:29:40Z","updated_at":"2023-05-12T16:13:48Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/tmp/pulls/14","html_url":"https://github.com/rsc/tmp/pull/14","diff_url":"https://github.com/rsc/tmp/pull/14.diff","patch_url":"https://github.com/rsc/tmp/pull/14.patch","merged_at":null},"body":"Bumps [golang.org/x/sys](https://github.com/golang/sys) from 0.0.0-20200812155832-6a926be9bd1d to 0.1.0.\n<details>\n<summary>Commits</summary>\n<ul>\n<li>See full diff in <a href=\"https://github.com/golang/sys/commits/v0.1.0\">compare view</a></li>\n</ul>\n</details>\n<br />\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/sys&package-manager=go_modules&previous-version=0.0.0-20200812155832-6a926be9bd1d&new-version=0.1.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n<details>\n<summary>Dependabot commands and options</summary>\n<br />\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language\n- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language\n- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language\n- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language\n\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/rsc/tmp/network/alerts).\n\n</details>> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/14/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/14/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":8607404333,"node_id":"LE_lADOARP1lc5fV6JAzwAAAAIBCpEt","url":"https://api.github.com/repos/rsc/tmp/issues/events/8607404333","actor":{"login":"dependabot[bot]","id":49699333,"node_id":"MDM6Qm90NDk2OTkzMzM=","avatar_url":"https://avatars.githubusercontent.com/in/29110?v=4","gravatar_id":"","url":"https://api.github.com/users/dependabot%5Bbot%5D","html_url":"https://github.com/apps/dependabot","followers_url":"https://api.github.com/users/dependabot%5Bbot%5D/followers","following_url":"https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dependabot%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/dependabot%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/dependabot%5Bbot%5D/repos","events_url":"https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/dependabot%5Bbot%5D/received_events","type":"Bot","site_admin":false},"event":"labeled","commit_id":null,"commit_url":null,"created_at":"2023-02-25T06:27:01Z","label":{"name":"dependencies","color":"0366d6"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/13","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/13/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/13/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/13/events","html_url":"https://github.com/rsc/tmp/pull/13","id":1599578688,"node_id":"PR_kwDOARP1lc5KwBk4","number":13,"title":"build(deps): bump golang.org/x/net from 0.0.0-20210503060351-7fd8e65b6420 to 0.7.0 in /rmplay","user":{"login":"dependabot[bot]","id":49699333,"node_id":"MDM6Qm90NDk2OTkzMzM=","avatar_url":"https://avatars.githubusercontent.com/in/29110?v=4","gravatar_id":"","url":"https://api.github.com/users/dependabot%5Bbot%5D","html_url":"https://github.com/apps/dependabot","followers_url":"https://api.github.com/users/dependabot%5Bbot%5D/followers","following_url":"https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dependabot%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/dependabot%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/dependabot%5Bbot%5D/repos","events_url":"https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/dependabot%5Bbot%5D/received_events","type":"Bot","site_admin":false},"labels":[{"id":5188391164,"node_id":"LA_kwDOARP1lc8AAAABNUCQ_A","url":"https://api.github.com/repos/rsc/tmp/labels/dependencies","name":"dependencies","color":"0366d6","default":false,"description":"Pull requests that update a dependency file"}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-02-25T06:27:00Z","updated_at":"2023-05-12T16:13:47Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/tmp/pulls/13","html_url":"https://github.com/rsc/tmp/pull/13","diff_url":"https://github.com/rsc/tmp/pull/13.diff","patch_url":"https://github.com/rsc/tmp/pull/13.patch","merged_at":null},"body":"Bumps [golang.org/x/net](https://github.com/golang/net) from 0.0.0-20210503060351-7fd8e65b6420 to 0.7.0.\n<details>\n<summary>Commits</summary>\n<ul>\n<li>See full diff in <a href=\"https://github.com/golang/net/commits/v0.7.0\">compare view</a></li>\n</ul>\n</details>\n<br />\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/net&package-manager=go_modules&previous-version=0.0.0-20210503060351-7fd8e65b6420&new-version=0.7.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n<details>\n<summary>Dependabot commands and options</summary>\n<br />\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language\n- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language\n- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language\n- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language\n\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/rsc/tmp/network/alerts).\n\n</details>> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/13/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/13/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":8606841979,"node_id":"LE_lADOARP1lc5fVczBzwAAAAIBAfx7","url":"https://api.github.com/repos/rsc/tmp/issues/events/8606841979","actor":{"login":"dependabot[bot]","id":49699333,"node_id":"MDM6Qm90NDk2OTkzMzM=","avatar_url":"https://avatars.githubusercontent.com/in/29110?v=4","gravatar_id":"","url":"https://api.github.com/users/dependabot%5Bbot%5D","html_url":"https://github.com/apps/dependabot","followers_url":"https://api.github.com/users/dependabot%5Bbot%5D/followers","following_url":"https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dependabot%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/dependabot%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/dependabot%5Bbot%5D/repos","events_url":"https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/dependabot%5Bbot%5D/received_events","type":"Bot","site_admin":false},"event":"labeled","commit_id":null,"commit_url":null,"created_at":"2023-02-25T00:57:53Z","label":{"name":"dependencies","color":"0366d6"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/12","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/12/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/12/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/12/events","html_url":"https://github.com/rsc/tmp/pull/12","id":1599458497,"node_id":"PR_kwDOARP1lc5KvoGw","number":12,"title":"build(deps): bump golang.org/x/net from 0.0.0-20200707034311-ab3426394381 to 0.7.0 in /unsafeconv","user":{"login":"dependabot[bot]","id":49699333,"node_id":"MDM6Qm90NDk2OTkzMzM=","avatar_url":"https://avatars.githubusercontent.com/in/29110?v=4","gravatar_id":"","url":"https://api.github.com/users/dependabot%5Bbot%5D","html_url":"https://github.com/apps/dependabot","followers_url":"https://api.github.com/users/dependabot%5Bbot%5D/followers","following_url":"https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dependabot%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/dependabot%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/dependabot%5Bbot%5D/repos","events_url":"https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/dependabot%5Bbot%5D/received_events","type":"Bot","site_admin":false},"labels":[{"id":5188391164,"node_id":"LA_kwDOARP1lc8AAAABNUCQ_A","url":"https://api.github.com/repos/rsc/tmp/labels/dependencies","name":"dependencies","color":"0366d6","default":false,"description":"Pull requests that update a dependency file"}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-02-25T00:57:52Z","updated_at":"2023-05-12T16:13:46Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/tmp/pulls/12","html_url":"https://github.com/rsc/tmp/pull/12","diff_url":"https://github.com/rsc/tmp/pull/12.diff","patch_url":"https://github.com/rsc/tmp/pull/12.patch","merged_at":null},"body":"Bumps [golang.org/x/net](https://github.com/golang/net) from 0.0.0-20200707034311-ab3426394381 to 0.7.0.\n<details>\n<summary>Commits</summary>\n<ul>\n<li>See full diff in <a href=\"https://github.com/golang/net/commits/v0.7.0\">compare view</a></li>\n</ul>\n</details>\n<br />\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/net&package-manager=go_modules&previous-version=0.0.0-20200707034311-ab3426394381&new-version=0.7.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n<details>\n<summary>Dependabot commands and options</summary>\n<br />\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language\n- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language\n- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language\n- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language\n\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/rsc/tmp/network/alerts).\n\n</details>> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/12/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/12/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":8606712514,"node_id":"LE_lADOARP1lc5fVXLRzwAAAAIBAALC","url":"https://api.github.com/repos/rsc/tmp/issues/events/8606712514","actor":{"login":"dependabot[bot]","id":49699333,"node_id":"MDM6Qm90NDk2OTkzMzM=","avatar_url":"https://avatars.githubusercontent.com/in/29110?v=4","gravatar_id":"","url":"https://api.github.com/users/dependabot%5Bbot%5D","html_url":"https://github.com/apps/dependabot","followers_url":"https://api.github.com/users/dependabot%5Bbot%5D/followers","following_url":"https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dependabot%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/dependabot%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/dependabot%5Bbot%5D/repos","events_url":"https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/dependabot%5Bbot%5D/received_events","type":"Bot","site_admin":false},"event":"labeled","commit_id":null,"commit_url":null,"created_at":"2023-02-25T00:17:14Z","label":{"name":"dependencies","color":"0366d6"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/11","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/11/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/11/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/11/events","html_url":"https://github.com/rsc/tmp/pull/11","id":1599435473,"node_id":"PR_kwDOARP1lc5KvjBc","number":11,"title":"build(deps): bump golang.org/x/net from 0.0.0-20200320220750-118fecf932d8 to 0.7.0 in /html2md","user":{"login":"dependabot[bot]","id":49699333,"node_id":"MDM6Qm90NDk2OTkzMzM=","avatar_url":"https://avatars.githubusercontent.com/in/29110?v=4","gravatar_id":"","url":"https://api.github.com/users/dependabot%5Bbot%5D","html_url":"https://github.com/apps/dependabot","followers_url":"https://api.github.com/users/dependabot%5Bbot%5D/followers","following_url":"https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dependabot%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/dependabot%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/dependabot%5Bbot%5D/repos","events_url":"https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/dependabot%5Bbot%5D/received_events","type":"Bot","site_admin":false},"labels":[{"id":5188391164,"node_id":"LA_kwDOARP1lc8AAAABNUCQ_A","url":"https://api.github.com/repos/rsc/tmp/labels/dependencies","name":"dependencies","color":"0366d6","default":false,"description":"Pull requests that update a dependency file"}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-02-25T00:17:13Z","updated_at":"2023-05-12T16:13:45Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/tmp/pulls/11","html_url":"https://github.com/rsc/tmp/pull/11","diff_url":"https://github.com/rsc/tmp/pull/11.diff","patch_url":"https://github.com/rsc/tmp/pull/11.patch","merged_at":null},"body":"Bumps [golang.org/x/net](https://github.com/golang/net) from 0.0.0-20200320220750-118fecf932d8 to 0.7.0.\n<details>\n<summary>Commits</summary>\n<ul>\n<li>See full diff in <a href=\"https://github.com/golang/net/commits/v0.7.0\">compare view</a></li>\n</ul>\n</details>\n<br />\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/net&package-manager=go_modules&previous-version=0.0.0-20200320220750-118fecf932d8&new-version=0.7.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n<details>\n<summary>Dependabot commands and options</summary>\n<br />\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language\n- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language\n- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language\n- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language\n\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/rsc/tmp/network/alerts).\n\n</details>> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/11/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/11/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":8588462050,"node_id":"LE_lADOARP1lc5fJiPWzwAAAAH_6Yfi","url":"https://api.github.com/repos/rsc/tmp/issues/events/8588462050","actor":{"login":"dependabot[bot]","id":49699333,"node_id":"MDM6Qm90NDk2OTkzMzM=","avatar_url":"https://avatars.githubusercontent.com/in/29110?v=4","gravatar_id":"","url":"https://api.github.com/users/dependabot%5Bbot%5D","html_url":"https://github.com/apps/dependabot","followers_url":"https://api.github.com/users/dependabot%5Bbot%5D/followers","following_url":"https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dependabot%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/dependabot%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/dependabot%5Bbot%5D/repos","events_url":"https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/dependabot%5Bbot%5D/received_events","type":"Bot","site_admin":false},"event":"labeled","commit_id":null,"commit_url":null,"created_at":"2023-02-23T07:15:04Z","label":{"name":"dependencies","color":"0366d6"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/10","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/10/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/10/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/10/events","html_url":"https://github.com/rsc/tmp/pull/10","id":1596335062,"node_id":"PR_kwDOARP1lc5KlCKW","number":10,"title":"build(deps): bump golang.org/x/text from 0.3.6 to 0.3.8 in /rmplay","user":{"login":"dependabot[bot]","id":49699333,"node_id":"MDM6Qm90NDk2OTkzMzM=","avatar_url":"https://avatars.githubusercontent.com/in/29110?v=4","gravatar_id":"","url":"https://api.github.com/users/dependabot%5Bbot%5D","html_url":"https://github.com/apps/dependabot","followers_url":"https://api.github.com/users/dependabot%5Bbot%5D/followers","following_url":"https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dependabot%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/dependabot%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/dependabot%5Bbot%5D/repos","events_url":"https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/dependabot%5Bbot%5D/received_events","type":"Bot","site_admin":false},"labels":[{"id":5188391164,"node_id":"LA_kwDOARP1lc8AAAABNUCQ_A","url":"https://api.github.com/repos/rsc/tmp/labels/dependencies","name":"dependencies","color":"0366d6","default":false,"description":"Pull requests that update a dependency file"}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-02-23T07:15:03Z","updated_at":"2023-05-12T16:13:45Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/tmp/pulls/10","html_url":"https://github.com/rsc/tmp/pull/10","diff_url":"https://github.com/rsc/tmp/pull/10.diff","patch_url":"https://github.com/rsc/tmp/pull/10.patch","merged_at":null},"body":"Bumps [golang.org/x/text](https://github.com/golang/text) from 0.3.6 to 0.3.8.\n<details>\n<summary>Commits</summary>\n<ul>\n<li><a href=\"https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c\"><code>434eadc</code></a> language: reject excessively large Accept-Language strings</li>\n<li><a href=\"https://github.com/golang/text/commit/23407e72ed5b895a2dfd230aec777f4fbe026d6a\"><code>23407e7</code></a> go.mod: ignore cyclic dependency for tagging</li>\n<li><a href=\"https://github.com/golang/text/commit/b18d3dd8a4b426ebedcf279b593e85ac4985b9d3\"><code>b18d3dd</code></a> secure/precis: replace bytes.Compare with bytes.Equal</li>\n<li><a href=\"https://github.com/golang/text/commit/795e854ff348c9cac4fd0033ce04c417705dd0bb\"><code>795e854</code></a> all: replace io/ioutil with io and os package</li>\n<li><a href=\"https://github.com/golang/text/commit/b0ca10ff35f1325c7d0ac7830fe3f036bd72d8f9\"><code>b0ca10f</code></a> internal/language: bump script types to uint16 and update registry</li>\n<li><a href=\"https://github.com/golang/text/commit/ba9b0e1d4b03523c708709935fbc961124b6967b\"><code>ba9b0e1</code></a> go.mod: update x/tools to HEAD</li>\n<li><a href=\"https://github.com/golang/text/commit/d03b41800055b01e3895b1e047af09733c93bf63\"><code>d03b418</code></a> A+C: delete AUTHORS and CONTRIBUTORS</li>\n<li><a href=\"https://github.com/golang/text/commit/b4bca84b03619dba00657375259024a7f8ae6712\"><code>b4bca84</code></a> language/display: fix Tag method comment</li>\n<li><a href=\"https://github.com/golang/text/commit/ea49e3e2d5b3f1518081d8bc53ffefc8bc60ecec\"><code>ea49e3e</code></a> go.mod: update x/tools to HEAD</li>\n<li><a href=\"https://github.com/golang/text/commit/78819d01d041a94e055bbaa2d95e5e4d49e8f8a0\"><code>78819d0</code></a> go.mod: update to golang.org/x/text v0.1.10</li>\n<li>Additional commits viewable in <a href=\"https://github.com/golang/text/compare/v0.3.6...v0.3.8\">compare view</a></li>\n</ul>\n</details>\n<br />\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/text&package-manager=go_modules&previous-version=0.3.6&new-version=0.3.8)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nYou can trigger a rebase of this PR by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n<details>\n<summary>Dependabot commands and options</summary>\n<br />\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language\n- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language\n- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language\n- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language\n\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/rsc/tmp/network/alerts).\n\n</details>> **Note**\n> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/10/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/10/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":2263785328,"node_id":"MDEyOkxhYmVsZWRFdmVudDIyNjM3ODUzMjg=","url":"https://api.github.com/repos/rsc/tmp/issues/events/2263785328","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"labeled","commit_id":null,"commit_url":null,"created_at":"2019-04-09T18:36:16Z","label":{"name":"abc.def","color":"f407b5"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/5","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/5/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/5/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/5/events","html_url":"https://github.com/rsc/tmp/issues/5","id":67390257,"node_id":"MDU6SXNzdWU2NzM5MDI1Nw==","number":5,"title":"another new issue","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[{"id":198120769,"node_id":"MDU6TGFiZWwxOTgxMjA3Njk=","url":"https://api.github.com/repos/rsc/tmp/labels/foo","name":"foo","color":"ededed","default":false,"description":null},{"id":1311591739,"node_id":"MDU6TGFiZWwxMzExNTkxNzM5","url":"https://api.github.com/repos/rsc/tmp/labels/abc.def","name":"abc.def","color":"f407b5","default":false,"description":""}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":2,"created_at":"2015-04-09T15:46:47Z","updated_at":"2024-06-12T22:14:45Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"just like creating issues\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/5/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/5/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":988766009,"node_id":"MDExOkNsb3NlZEV2ZW50OTg4NzY2MDA5","url":"https://api.github.com/repos/rsc/tmp/issues/events/988766009","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2017-03-07T00:43:47Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/7","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/7/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/7/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/7/events","html_url":"https://github.com/rsc/tmp/pull/7","id":212269702,"node_id":"MDExOlB1bGxSZXF1ZXN0MTA5MzYzNDM0","number":7,"title":"fieldtrack: add testing docs","user":{"login":"mdempsky","id":38349,"node_id":"MDQ6VXNlcjM4MzQ5","avatar_url":"https://avatars.githubusercontent.com/u/38349?v=4","gravatar_id":"","url":"https://api.github.com/users/mdempsky","html_url":"https://github.com/mdempsky","followers_url":"https://api.github.com/users/mdempsky/followers","following_url":"https://api.github.com/users/mdempsky/following{/other_user}","gists_url":"https://api.github.com/users/mdempsky/gists{/gist_id}","starred_url":"https://api.github.com/users/mdempsky/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mdempsky/subscriptions","organizations_url":"https://api.github.com/users/mdempsky/orgs","repos_url":"https://api.github.com/users/mdempsky/repos","events_url":"https://api.github.com/users/mdempsky/events{/privacy}","received_events_url":"https://api.github.com/users/mdempsky/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-03-06T22:26:19Z","updated_at":"2017-03-07T00:43:47Z","closed_at":"2017-03-07T00:43:47Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/tmp/pulls/7","html_url":"https://github.com/rsc/tmp/pull/7","diff_url":"https://github.com/rsc/tmp/pull/7.diff","patch_url":"https://github.com/rsc/tmp/pull/7.patch","merged_at":"2017-03-07T00:43:47Z"},"body":"I have to always look up either the instructions you sent me or hope it's still in my shell history. I just spent way too long confused because somehow the -k flag was truncated in my history, so of course the test kept failing.","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/7/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/7/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":988766008,"node_id":"MDExOk1lcmdlZEV2ZW50OTg4NzY2MDA4","url":"https://api.github.com/repos/rsc/tmp/issues/events/988766008","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"1238e6c86331ea2b018f729f0d2012e01a53a351","commit_url":"https://api.github.com/repos/rsc/tmp/commits/1238e6c86331ea2b018f729f0d2012e01a53a351","created_at":"2017-03-07T00:43:47Z","issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/7","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/7/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/7/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/7/events","html_url":"https://github.com/rsc/tmp/pull/7","id":212269702,"node_id":"MDExOlB1bGxSZXF1ZXN0MTA5MzYzNDM0","number":7,"title":"fieldtrack: add testing docs","user":{"login":"mdempsky","id":38349,"node_id":"MDQ6VXNlcjM4MzQ5","avatar_url":"https://avatars.githubusercontent.com/u/38349?v=4","gravatar_id":"","url":"https://api.github.com/users/mdempsky","html_url":"https://github.com/mdempsky","followers_url":"https://api.github.com/users/mdempsky/followers","following_url":"https://api.github.com/users/mdempsky/following{/other_user}","gists_url":"https://api.github.com/users/mdempsky/gists{/gist_id}","starred_url":"https://api.github.com/users/mdempsky/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mdempsky/subscriptions","organizations_url":"https://api.github.com/users/mdempsky/orgs","repos_url":"https://api.github.com/users/mdempsky/repos","events_url":"https://api.github.com/users/mdempsky/events{/privacy}","received_events_url":"https://api.github.com/users/mdempsky/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-03-06T22:26:19Z","updated_at":"2017-03-07T00:43:47Z","closed_at":"2017-03-07T00:43:47Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/tmp/pulls/7","html_url":"https://github.com/rsc/tmp/pull/7","diff_url":"https://github.com/rsc/tmp/pull/7.diff","patch_url":"https://github.com/rsc/tmp/pull/7.patch","merged_at":"2017-03-07T00:43:47Z"},"body":"I have to always look up either the instructions you sent me or hope it's still in my shell history. I just spent way too long confused because somehow the -k flag was truncated in my history, so of course the test kept failing.","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/7/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/7/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":988766007,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDk4ODc2NjAwNw==","url":"https://api.github.com/repos/rsc/tmp/issues/events/988766007","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"1238e6c86331ea2b018f729f0d2012e01a53a351","commit_url":"https://api.github.com/repos/rsc/tmp/commits/1238e6c86331ea2b018f729f0d2012e01a53a351","created_at":"2017-03-07T00:43:47Z","issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/7","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/7/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/7/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/7/events","html_url":"https://github.com/rsc/tmp/pull/7","id":212269702,"node_id":"MDExOlB1bGxSZXF1ZXN0MTA5MzYzNDM0","number":7,"title":"fieldtrack: add testing docs","user":{"login":"mdempsky","id":38349,"node_id":"MDQ6VXNlcjM4MzQ5","avatar_url":"https://avatars.githubusercontent.com/u/38349?v=4","gravatar_id":"","url":"https://api.github.com/users/mdempsky","html_url":"https://github.com/mdempsky","followers_url":"https://api.github.com/users/mdempsky/followers","following_url":"https://api.github.com/users/mdempsky/following{/other_user}","gists_url":"https://api.github.com/users/mdempsky/gists{/gist_id}","starred_url":"https://api.github.com/users/mdempsky/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mdempsky/subscriptions","organizations_url":"https://api.github.com/users/mdempsky/orgs","repos_url":"https://api.github.com/users/mdempsky/repos","events_url":"https://api.github.com/users/mdempsky/events{/privacy}","received_events_url":"https://api.github.com/users/mdempsky/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-03-06T22:26:19Z","updated_at":"2017-03-07T00:43:47Z","closed_at":"2017-03-07T00:43:47Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/tmp/pulls/7","html_url":"https://github.com/rsc/tmp/pull/7","diff_url":"https://github.com/rsc/tmp/pull/7.diff","patch_url":"https://github.com/rsc/tmp/pull/7.patch","merged_at":"2017-03-07T00:43:47Z"},"body":"I have to always look up either the instructions you sent me or hope it's still in my shell history. I just spent way too long confused because somehow the -k flag was truncated in my history, so of course the test kept failing.","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/7/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/7/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":920742851,"node_id":"MDExOkNsb3NlZEV2ZW50OTIwNzQyODUx","url":"https://api.github.com/repos/rsc/tmp/issues/events/920742851","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2017-01-12T13:53:07Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/6","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/6/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/6/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/6/events","html_url":"https://github.com/rsc/tmp/pull/6","id":200255851,"node_id":"MDExOlB1bGxSZXF1ZXN0MTAxMTgxMzU1","number":6,"title":"grpcbench: fix HTTP/2 benchmark, add HTTP/1.1","user":{"login":"adg","id":8446613,"node_id":"MDQ6VXNlcjg0NDY2MTM=","avatar_url":"https://avatars.githubusercontent.com/u/8446613?v=4","gravatar_id":"","url":"https://api.github.com/users/adg","html_url":"https://github.com/adg","followers_url":"https://api.github.com/users/adg/followers","following_url":"https://api.github.com/users/adg/following{/other_user}","gists_url":"https://api.github.com/users/adg/gists{/gist_id}","starred_url":"https://api.github.com/users/adg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adg/subscriptions","organizations_url":"https://api.github.com/users/adg/orgs","repos_url":"https://api.github.com/users/adg/repos","events_url":"https://api.github.com/users/adg/events{/privacy}","received_events_url":"https://api.github.com/users/adg/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2017-01-12T01:32:15Z","updated_at":"2017-01-12T13:53:58Z","closed_at":"2017-01-12T13:53:07Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/tmp/pulls/6","html_url":"https://github.com/rsc/tmp/pull/6","diff_url":"https://github.com/rsc/tmp/pull/6.diff","patch_url":"https://github.com/rsc/tmp/pull/6.patch","merged_at":"2017-01-12T13:53:07Z"},"body":"","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/6/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/6/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":920742850,"node_id":"MDExOk1lcmdlZEV2ZW50OTIwNzQyODUw","url":"https://api.github.com/repos/rsc/tmp/issues/events/920742850","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"a5a83b20a3f3969de14332e01678249d13cd739e","commit_url":"https://api.github.com/repos/rsc/tmp/commits/a5a83b20a3f3969de14332e01678249d13cd739e","created_at":"2017-01-12T13:53:07Z","issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/6","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/6/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/6/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/6/events","html_url":"https://github.com/rsc/tmp/pull/6","id":200255851,"node_id":"MDExOlB1bGxSZXF1ZXN0MTAxMTgxMzU1","number":6,"title":"grpcbench: fix HTTP/2 benchmark, add HTTP/1.1","user":{"login":"adg","id":8446613,"node_id":"MDQ6VXNlcjg0NDY2MTM=","avatar_url":"https://avatars.githubusercontent.com/u/8446613?v=4","gravatar_id":"","url":"https://api.github.com/users/adg","html_url":"https://github.com/adg","followers_url":"https://api.github.com/users/adg/followers","following_url":"https://api.github.com/users/adg/following{/other_user}","gists_url":"https://api.github.com/users/adg/gists{/gist_id}","starred_url":"https://api.github.com/users/adg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adg/subscriptions","organizations_url":"https://api.github.com/users/adg/orgs","repos_url":"https://api.github.com/users/adg/repos","events_url":"https://api.github.com/users/adg/events{/privacy}","received_events_url":"https://api.github.com/users/adg/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2017-01-12T01:32:15Z","updated_at":"2017-01-12T13:53:58Z","closed_at":"2017-01-12T13:53:07Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/tmp/pulls/6","html_url":"https://github.com/rsc/tmp/pull/6","diff_url":"https://github.com/rsc/tmp/pull/6.diff","patch_url":"https://github.com/rsc/tmp/pull/6.patch","merged_at":"2017-01-12T13:53:07Z"},"body":"","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/6/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/6/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":920742849,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDkyMDc0Mjg0OQ==","url":"https://api.github.com/repos/rsc/tmp/issues/events/920742849","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"a5a83b20a3f3969de14332e01678249d13cd739e","commit_url":"https://api.github.com/repos/rsc/tmp/commits/a5a83b20a3f3969de14332e01678249d13cd739e","created_at":"2017-01-12T13:53:07Z","issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/6","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/6/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/6/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/6/events","html_url":"https://github.com/rsc/tmp/pull/6","id":200255851,"node_id":"MDExOlB1bGxSZXF1ZXN0MTAxMTgxMzU1","number":6,"title":"grpcbench: fix HTTP/2 benchmark, add HTTP/1.1","user":{"login":"adg","id":8446613,"node_id":"MDQ6VXNlcjg0NDY2MTM=","avatar_url":"https://avatars.githubusercontent.com/u/8446613?v=4","gravatar_id":"","url":"https://api.github.com/users/adg","html_url":"https://github.com/adg","followers_url":"https://api.github.com/users/adg/followers","following_url":"https://api.github.com/users/adg/following{/other_user}","gists_url":"https://api.github.com/users/adg/gists{/gist_id}","starred_url":"https://api.github.com/users/adg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adg/subscriptions","organizations_url":"https://api.github.com/users/adg/orgs","repos_url":"https://api.github.com/users/adg/repos","events_url":"https://api.github.com/users/adg/events{/privacy}","received_events_url":"https://api.github.com/users/adg/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2017-01-12T01:32:15Z","updated_at":"2017-01-12T13:53:58Z","closed_at":"2017-01-12T13:53:07Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/tmp/pulls/6","html_url":"https://github.com/rsc/tmp/pull/6","diff_url":"https://github.com/rsc/tmp/pull/6.diff","patch_url":"https://github.com/rsc/tmp/pull/6.patch","merged_at":"2017-01-12T13:53:07Z"},"body":"","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/6/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/6/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":292326012,"node_id":"MDE0OlVubGFiZWxlZEV2ZW50MjkyMzI2MDEy","url":"https://api.github.com/repos/rsc/tmp/issues/events/292326012","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"unlabeled","commit_id":null,"commit_url":null,"created_at":"2015-04-28T19:22:40Z","label":{"name":"abcde","color":"ededed"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/2","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/2/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/2/events","html_url":"https://github.com/rsc/tmp/issues/2","id":53713315,"node_id":"MDU6SXNzdWU1MzcxMzMxNQ==","number":2,"title":"New dummy issue","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-01-08T04:21:49Z","updated_at":"2015-04-28T19:22:40Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/2/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/2/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":292325703,"node_id":"MDEyOkxhYmVsZWRFdmVudDI5MjMyNTcwMw==","url":"https://api.github.com/repos/rsc/tmp/issues/events/292325703","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"labeled","commit_id":null,"commit_url":null,"created_at":"2015-04-28T19:22:19Z","label":{"name":"abcde","color":"ededed"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/2","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/2/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/2/events","html_url":"https://github.com/rsc/tmp/issues/2","id":53713315,"node_id":"MDU6SXNzdWU1MzcxMzMxNQ==","number":2,"title":"New dummy issue","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-01-08T04:21:49Z","updated_at":"2015-04-28T19:22:40Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/2/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/2/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":292325641,"node_id":"MDE0OlVubGFiZWxlZEV2ZW50MjkyMzI1NjQx","url":"https://api.github.com/repos/rsc/tmp/issues/events/292325641","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"unlabeled","commit_id":null,"commit_url":null,"created_at":"2015-04-28T19:22:13Z","label":{"name":"foo","color":"ededed"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/2","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/2/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/2/events","html_url":"https://github.com/rsc/tmp/issues/2","id":53713315,"node_id":"MDU6SXNzdWU1MzcxMzMxNQ==","number":2,"title":"New dummy issue","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-01-08T04:21:49Z","updated_at":"2015-04-28T19:22:40Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/2/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/2/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":292325640,"node_id":"MDE0OlVubGFiZWxlZEV2ZW50MjkyMzI1NjQw","url":"https://api.github.com/repos/rsc/tmp/issues/events/292325640","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"unlabeled","commit_id":null,"commit_url":null,"created_at":"2015-04-28T19:22:13Z","label":{"name":"abcd","color":"ededed"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/2","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/2/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/2/events","html_url":"https://github.com/rsc/tmp/issues/2","id":53713315,"node_id":"MDU6SXNzdWU1MzcxMzMxNQ==","number":2,"title":"New dummy issue","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-01-08T04:21:49Z","updated_at":"2015-04-28T19:22:40Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/2/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/2/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":278262185,"node_id":"MDEyOkxhYmVsZWRFdmVudDI3ODI2MjE4NQ==","url":"https://api.github.com/repos/rsc/tmp/issues/events/278262185","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"labeled","commit_id":null,"commit_url":null,"created_at":"2015-04-10T16:16:33Z","label":{"name":"foo","color":"ededed"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/5","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/5/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/5/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/5/events","html_url":"https://github.com/rsc/tmp/issues/5","id":67390257,"node_id":"MDU6SXNzdWU2NzM5MDI1Nw==","number":5,"title":"another new issue","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[{"id":198120769,"node_id":"MDU6TGFiZWwxOTgxMjA3Njk=","url":"https://api.github.com/repos/rsc/tmp/labels/foo","name":"foo","color":"ededed","default":false,"description":null},{"id":1311591739,"node_id":"MDU6TGFiZWwxMzExNTkxNzM5","url":"https://api.github.com/repos/rsc/tmp/labels/abc.def","name":"abc.def","color":"f407b5","default":false,"description":""}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":2,"created_at":"2015-04-09T15:46:47Z","updated_at":"2024-06-12T22:14:45Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"just like creating issues\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/5/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/5/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":278262183,"node_id":"MDE3OkRlbWlsZXN0b25lZEV2ZW50Mjc4MjYyMTgz","url":"https://api.github.com/repos/rsc/tmp/issues/events/278262183","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"demilestoned","commit_id":null,"commit_url":null,"created_at":"2015-04-10T16:16:33Z","milestone":{"title":"Quartz"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/5","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/5/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/5/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/5/events","html_url":"https://github.com/rsc/tmp/issues/5","id":67390257,"node_id":"MDU6SXNzdWU2NzM5MDI1Nw==","number":5,"title":"another new issue","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[{"id":198120769,"node_id":"MDU6TGFiZWwxOTgxMjA3Njk=","url":"https://api.github.com/repos/rsc/tmp/labels/foo","name":"foo","color":"ededed","default":false,"description":null},{"id":1311591739,"node_id":"MDU6TGFiZWwxMzExNTkxNzM5","url":"https://api.github.com/repos/rsc/tmp/labels/abc.def","name":"abc.def","color":"f407b5","default":false,"description":""}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":2,"created_at":"2015-04-09T15:46:47Z","updated_at":"2024-06-12T22:14:45Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"just like creating issues\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/5/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/5/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":278262182,"node_id":"MDE1Ok1pbGVzdG9uZWRFdmVudDI3ODI2MjE4Mg==","url":"https://api.github.com/repos/rsc/tmp/issues/events/278262182","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"milestoned","commit_id":null,"commit_url":null,"created_at":"2015-04-10T16:16:33Z","milestone":{"title":"Granite"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/5","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/5/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/5/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/5/events","html_url":"https://github.com/rsc/tmp/issues/5","id":67390257,"node_id":"MDU6SXNzdWU2NzM5MDI1Nw==","number":5,"title":"another new issue","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[{"id":198120769,"node_id":"MDU6TGFiZWwxOTgxMjA3Njk=","url":"https://api.github.com/repos/rsc/tmp/labels/foo","name":"foo","color":"ededed","default":false,"description":null},{"id":1311591739,"node_id":"MDU6TGFiZWwxMzExNTkxNzM5","url":"https://api.github.com/repos/rsc/tmp/labels/abc.def","name":"abc.def","color":"f407b5","default":false,"description":""}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":2,"created_at":"2015-04-09T15:46:47Z","updated_at":"2024-06-12T22:14:45Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"just like creating issues\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/5/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/5/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":278262153,"node_id":"MDEyOkxhYmVsZWRFdmVudDI3ODI2MjE1Mw==","url":"https://api.github.com/repos/rsc/tmp/issues/events/278262153","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"labeled","commit_id":null,"commit_url":null,"created_at":"2015-04-10T16:16:32Z","label":{"name":"foo","color":"ededed"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/2","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/2/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/2/events","html_url":"https://github.com/rsc/tmp/issues/2","id":53713315,"node_id":"MDU6SXNzdWU1MzcxMzMxNQ==","number":2,"title":"New dummy issue","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-01-08T04:21:49Z","updated_at":"2015-04-28T19:22:40Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/2/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/2/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":277674451,"node_id":"MDE3OkRlbWlsZXN0b25lZEV2ZW50Mjc3Njc0NDUx","url":"https://api.github.com/repos/rsc/tmp/issues/events/277674451","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"demilestoned","commit_id":null,"commit_url":null,"created_at":"2015-04-10T00:14:18Z","milestone":{"title":"Quartz"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/1","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/1/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/1/events","html_url":"https://github.com/rsc/tmp/issues/1","id":53712850,"node_id":"MDU6SXNzdWU1MzcxMjg1MA==","number":1,"title":"Dummy issue with dummy title","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[{"id":164081808,"node_id":"MDU6TGFiZWwxNjQwODE4MDg=","url":"https://api.github.com/repos/rsc/tmp/labels/none","name":"none","color":"ededed","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-01-08T04:11:46Z","updated_at":"2015-04-10T00:14:18Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"For testing.\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/1/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/1/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":277674450,"node_id":"MDE1Ok1pbGVzdG9uZWRFdmVudDI3NzY3NDQ1MA==","url":"https://api.github.com/repos/rsc/tmp/issues/events/277674450","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"milestoned","commit_id":null,"commit_url":null,"created_at":"2015-04-10T00:14:18Z","milestone":{"title":"Granite"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/1","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/1/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/1/events","html_url":"https://github.com/rsc/tmp/issues/1","id":53712850,"node_id":"MDU6SXNzdWU1MzcxMjg1MA==","number":1,"title":"Dummy issue with dummy title","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[{"id":164081808,"node_id":"MDU6TGFiZWwxNjQwODE4MDg=","url":"https://api.github.com/repos/rsc/tmp/labels/none","name":"none","color":"ededed","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-01-08T04:11:46Z","updated_at":"2015-04-10T00:14:18Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"For testing.\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/1/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/1/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":277674445,"node_id":"MDE3OkRlbWlsZXN0b25lZEV2ZW50Mjc3Njc0NDQ1","url":"https://api.github.com/repos/rsc/tmp/issues/events/277674445","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"demilestoned","commit_id":null,"commit_url":null,"created_at":"2015-04-10T00:14:18Z","milestone":{"title":"Quartz"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/2","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/2/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/2/events","html_url":"https://github.com/rsc/tmp/issues/2","id":53713315,"node_id":"MDU6SXNzdWU1MzcxMzMxNQ==","number":2,"title":"New dummy issue","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-01-08T04:21:49Z","updated_at":"2015-04-28T19:22:40Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/2/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/2/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":277674444,"node_id":"MDE1Ok1pbGVzdG9uZWRFdmVudDI3NzY3NDQ0NA==","url":"https://api.github.com/repos/rsc/tmp/issues/events/277674444","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"milestoned","commit_id":null,"commit_url":null,"created_at":"2015-04-10T00:14:18Z","milestone":{"title":"Granite"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/2","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/2/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/2/events","html_url":"https://github.com/rsc/tmp/issues/2","id":53713315,"node_id":"MDU6SXNzdWU1MzcxMzMxNQ==","number":2,"title":"New dummy issue","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-01-08T04:21:49Z","updated_at":"2015-04-28T19:22:40Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/2/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/2/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":277673969,"node_id":"MDE3OkRlbWlsZXN0b25lZEV2ZW50Mjc3NjczOTY5","url":"https://api.github.com/repos/rsc/tmp/issues/events/277673969","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"demilestoned","commit_id":null,"commit_url":null,"created_at":"2015-04-10T00:12:49Z","milestone":{"title":"Granite"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/1","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/1/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/1/events","html_url":"https://github.com/rsc/tmp/issues/1","id":53712850,"node_id":"MDU6SXNzdWU1MzcxMjg1MA==","number":1,"title":"Dummy issue with dummy title","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[{"id":164081808,"node_id":"MDU6TGFiZWwxNjQwODE4MDg=","url":"https://api.github.com/repos/rsc/tmp/labels/none","name":"none","color":"ededed","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-01-08T04:11:46Z","updated_at":"2015-04-10T00:14:18Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"For testing.\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/1/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/1/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":277673968,"node_id":"MDE1Ok1pbGVzdG9uZWRFdmVudDI3NzY3Mzk2OA==","url":"https://api.github.com/repos/rsc/tmp/issues/events/277673968","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"milestoned","commit_id":null,"commit_url":null,"created_at":"2015-04-10T00:12:49Z","milestone":{"title":"Quartz"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/1","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/1/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/1/events","html_url":"https://github.com/rsc/tmp/issues/1","id":53712850,"node_id":"MDU6SXNzdWU1MzcxMjg1MA==","number":1,"title":"Dummy issue with dummy title","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[{"id":164081808,"node_id":"MDU6TGFiZWwxNjQwODE4MDg=","url":"https://api.github.com/repos/rsc/tmp/labels/none","name":"none","color":"ededed","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-01-08T04:11:46Z","updated_at":"2015-04-10T00:14:18Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"For testing.\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/1/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/1/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":277673952,"node_id":"MDE3OkRlbWlsZXN0b25lZEV2ZW50Mjc3NjczOTUy","url":"https://api.github.com/repos/rsc/tmp/issues/events/277673952","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"demilestoned","commit_id":null,"commit_url":null,"created_at":"2015-04-10T00:12:48Z","milestone":{"title":"Granite"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/2","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/2/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/2/events","html_url":"https://github.com/rsc/tmp/issues/2","id":53713315,"node_id":"MDU6SXNzdWU1MzcxMzMxNQ==","number":2,"title":"New dummy issue","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-01-08T04:21:49Z","updated_at":"2015-04-28T19:22:40Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/2/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/2/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":277673951,"node_id":"MDE1Ok1pbGVzdG9uZWRFdmVudDI3NzY3Mzk1MQ==","url":"https://api.github.com/repos/rsc/tmp/issues/events/277673951","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"milestoned","commit_id":null,"commit_url":null,"created_at":"2015-04-10T00:12:48Z","milestone":{"title":"Quartz"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/2","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/2/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/2/events","html_url":"https://github.com/rsc/tmp/issues/2","id":53713315,"node_id":"MDU6SXNzdWU1MzcxMzMxNQ==","number":2,"title":"New dummy issue","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-01-08T04:21:49Z","updated_at":"2015-04-28T19:22:40Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/2/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/2/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":277669839,"node_id":"MDEyOkxhYmVsZWRFdmVudDI3NzY2OTgzOQ==","url":"https://api.github.com/repos/rsc/tmp/issues/events/277669839","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"labeled","commit_id":null,"commit_url":null,"created_at":"2015-04-10T00:05:03Z","label":{"name":"abcd","color":"ededed"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/2","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/2/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/2/events","html_url":"https://github.com/rsc/tmp/issues/2","id":53713315,"node_id":"MDU6SXNzdWU1MzcxMzMxNQ==","number":2,"title":"New dummy issue","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-01-08T04:21:49Z","updated_at":"2015-04-28T19:22:40Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/2/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/2/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":277669701,"node_id":"MDE0OlVubGFiZWxlZEV2ZW50Mjc3NjY5NzAx","url":"https://api.github.com/repos/rsc/tmp/issues/events/277669701","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"unlabeled","commit_id":null,"commit_url":null,"created_at":"2015-04-10T00:04:44Z","label":{"name":"xyz","color":"ededed"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/2","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/2/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/2/events","html_url":"https://github.com/rsc/tmp/issues/2","id":53713315,"node_id":"MDU6SXNzdWU1MzcxMzMxNQ==","number":2,"title":"New dummy issue","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-01-08T04:21:49Z","updated_at":"2015-04-28T19:22:40Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/2/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/2/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":277658885,"node_id":"MDEyOkxhYmVsZWRFdmVudDI3NzY1ODg4NQ==","url":"https://api.github.com/repos/rsc/tmp/issues/events/277658885","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"labeled","commit_id":null,"commit_url":null,"created_at":"2015-04-09T23:40:21Z","label":{"name":"xyz","color":"ededed"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/2","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/2/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/2/events","html_url":"https://github.com/rsc/tmp/issues/2","id":53713315,"node_id":"MDU6SXNzdWU1MzcxMzMxNQ==","number":2,"title":"New dummy issue","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-01-08T04:21:49Z","updated_at":"2015-04-28T19:22:40Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/2/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/2/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":277299772,"node_id":"MDE1Ok1pbGVzdG9uZWRFdmVudDI3NzI5OTc3Mg==","url":"https://api.github.com/repos/rsc/tmp/issues/events/277299772","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"milestoned","commit_id":null,"commit_url":null,"created_at":"2015-04-09T15:46:47Z","milestone":{"title":"Quartz"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/5","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/5/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/5/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/5/events","html_url":"https://github.com/rsc/tmp/issues/5","id":67390257,"node_id":"MDU6SXNzdWU2NzM5MDI1Nw==","number":5,"title":"another new issue","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[{"id":198120769,"node_id":"MDU6TGFiZWwxOTgxMjA3Njk=","url":"https://api.github.com/repos/rsc/tmp/labels/foo","name":"foo","color":"ededed","default":false,"description":null},{"id":1311591739,"node_id":"MDU6TGFiZWwxMzExNTkxNzM5","url":"https://api.github.com/repos/rsc/tmp/labels/abc.def","name":"abc.def","color":"f407b5","default":false,"description":""}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":2,"created_at":"2015-04-09T15:46:47Z","updated_at":"2024-06-12T22:14:45Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"just like creating issues\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/5/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/5/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":277298979,"node_id":"MDE3OkRlbWlsZXN0b25lZEV2ZW50Mjc3Mjk4OTc5","url":"https://api.github.com/repos/rsc/tmp/issues/events/277298979","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"demilestoned","commit_id":null,"commit_url":null,"created_at":"2015-04-09T15:45:52Z","milestone":{"title":"Quartz"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/2","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/2/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/2/events","html_url":"https://github.com/rsc/tmp/issues/2","id":53713315,"node_id":"MDU6SXNzdWU1MzcxMzMxNQ==","number":2,"title":"New dummy issue","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-01-08T04:21:49Z","updated_at":"2015-04-28T19:22:40Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/2/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/2/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":277298978,"node_id":"MDE1Ok1pbGVzdG9uZWRFdmVudDI3NzI5ODk3OA==","url":"https://api.github.com/repos/rsc/tmp/issues/events/277298978","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"milestoned","commit_id":null,"commit_url":null,"created_at":"2015-04-09T15:45:52Z","milestone":{"title":"Granite"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/2","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/2/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/2/events","html_url":"https://github.com/rsc/tmp/issues/2","id":53713315,"node_id":"MDU6SXNzdWU1MzcxMzMxNQ==","number":2,"title":"New dummy issue","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-01-08T04:21:49Z","updated_at":"2015-04-28T19:22:40Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/2/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/2/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":277298768,"node_id":"MDE3OkRlbWlsZXN0b25lZEV2ZW50Mjc3Mjk4NzY4","url":"https://api.github.com/repos/rsc/tmp/issues/events/277298768","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"demilestoned","commit_id":null,"commit_url":null,"created_at":"2015-04-09T15:45:36Z","milestone":{"title":"Granite"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/2","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/2/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/2/events","html_url":"https://github.com/rsc/tmp/issues/2","id":53713315,"node_id":"MDU6SXNzdWU1MzcxMzMxNQ==","number":2,"title":"New dummy issue","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-01-08T04:21:49Z","updated_at":"2015-04-28T19:22:40Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/2/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/2/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":277298767,"node_id":"MDE1Ok1pbGVzdG9uZWRFdmVudDI3NzI5ODc2Nw==","url":"https://api.github.com/repos/rsc/tmp/issues/events/277298767","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"milestoned","commit_id":null,"commit_url":null,"created_at":"2015-04-09T15:45:36Z","milestone":{"title":"Quartz"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/2","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/2/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/2/events","html_url":"https://github.com/rsc/tmp/issues/2","id":53713315,"node_id":"MDU6SXNzdWU1MzcxMzMxNQ==","number":2,"title":"New dummy issue","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-01-08T04:21:49Z","updated_at":"2015-04-28T19:22:40Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/2/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/2/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":215711025,"node_id":"MDExOkNsb3NlZEV2ZW50MjE1NzExMDI1","url":"https://api.github.com/repos/rsc/tmp/issues/events/215711025","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2015-01-08T04:40:50Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/4","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/4/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/4/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/4/events","html_url":"https://github.com/rsc/tmp/issues/4","id":53714062,"node_id":"MDU6SXNzdWU1MzcxNDA2Mg==","number":4,"title":"issue the fourth","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2015-01-08T04:40:39Z","updated_at":"2015-01-08T04:40:50Z","closed_at":"2015-01-08T04:40:50Z","author_association":"OWNER","active_lock_reason":null,"body":"more work to do\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/4/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/4/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":215707552,"node_id":"MDE1Ok1pbGVzdG9uZWRFdmVudDIxNTcwNzU1Mg==","url":"https://api.github.com/repos/rsc/tmp/issues/events/215707552","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"milestoned","commit_id":null,"commit_url":null,"created_at":"2015-01-08T04:22:25Z","milestone":{"title":"Granite"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/2","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/2/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/2/events","html_url":"https://github.com/rsc/tmp/issues/2","id":53713315,"node_id":"MDU6SXNzdWU1MzcxMzMxNQ==","number":2,"title":"New dummy issue","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-01-08T04:21:49Z","updated_at":"2015-04-28T19:22:40Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/2/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/2/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":215706348,"node_id":"MDE3OkRlbWlsZXN0b25lZEV2ZW50MjE1NzA2MzQ4","url":"https://api.github.com/repos/rsc/tmp/issues/events/215706348","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"demilestoned","commit_id":null,"commit_url":null,"created_at":"2015-01-08T04:16:36Z","milestone":{"title":"Quartz"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/1","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/1/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/1/events","html_url":"https://github.com/rsc/tmp/issues/1","id":53712850,"node_id":"MDU6SXNzdWU1MzcxMjg1MA==","number":1,"title":"Dummy issue with dummy title","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[{"id":164081808,"node_id":"MDU6TGFiZWwxNjQwODE4MDg=","url":"https://api.github.com/repos/rsc/tmp/labels/none","name":"none","color":"ededed","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-01-08T04:11:46Z","updated_at":"2015-04-10T00:14:18Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"For testing.\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/1/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/1/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":215706347,"node_id":"MDE1Ok1pbGVzdG9uZWRFdmVudDIxNTcwNjM0Nw==","url":"https://api.github.com/repos/rsc/tmp/issues/events/215706347","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"milestoned","commit_id":null,"commit_url":null,"created_at":"2015-01-08T04:16:36Z","milestone":{"title":"Granite"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/1","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/1/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/1/events","html_url":"https://github.com/rsc/tmp/issues/1","id":53712850,"node_id":"MDU6SXNzdWU1MzcxMjg1MA==","number":1,"title":"Dummy issue with dummy title","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[{"id":164081808,"node_id":"MDU6TGFiZWwxNjQwODE4MDg=","url":"https://api.github.com/repos/rsc/tmp/labels/none","name":"none","color":"ededed","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-01-08T04:11:46Z","updated_at":"2015-04-10T00:14:18Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"For testing.\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/1/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/1/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":215706303,"node_id":"MDEyOkxhYmVsZWRFdmVudDIxNTcwNjMwMw==","url":"https://api.github.com/repos/rsc/tmp/issues/events/215706303","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"labeled","commit_id":null,"commit_url":null,"created_at":"2015-01-08T04:16:22Z","label":{"name":"none","color":"ededed"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/1","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/1/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/1/events","html_url":"https://github.com/rsc/tmp/issues/1","id":53712850,"node_id":"MDU6SXNzdWU1MzcxMjg1MA==","number":1,"title":"Dummy issue with dummy title","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[{"id":164081808,"node_id":"MDU6TGFiZWwxNjQwODE4MDg=","url":"https://api.github.com/repos/rsc/tmp/labels/none","name":"none","color":"ededed","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-01-08T04:11:46Z","updated_at":"2015-04-10T00:14:18Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"For testing.\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/1/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/1/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":215706302,"node_id":"MDE0OlVubGFiZWxlZEV2ZW50MjE1NzA2MzAy","url":"https://api.github.com/repos/rsc/tmp/issues/events/215706302","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"unlabeled","commit_id":null,"commit_url":null,"created_at":"2015-01-08T04:16:22Z","label":{"name":"-mylabel","color":"ededed"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/1","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/1/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/1/events","html_url":"https://github.com/rsc/tmp/issues/1","id":53712850,"node_id":"MDU6SXNzdWU1MzcxMjg1MA==","number":1,"title":"Dummy issue with dummy title","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[{"id":164081808,"node_id":"MDU6TGFiZWwxNjQwODE4MDg=","url":"https://api.github.com/repos/rsc/tmp/labels/none","name":"none","color":"ededed","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-01-08T04:11:46Z","updated_at":"2015-04-10T00:14:18Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"For testing.\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/1/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/1/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":215706039,"node_id":"MDE3OkRlbWlsZXN0b25lZEV2ZW50MjE1NzA2MDM5","url":"https://api.github.com/repos/rsc/tmp/issues/events/215706039","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"demilestoned","commit_id":null,"commit_url":null,"created_at":"2015-01-08T04:15:04Z","milestone":{"title":"Granite"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/1","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/1/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/1/events","html_url":"https://github.com/rsc/tmp/issues/1","id":53712850,"node_id":"MDU6SXNzdWU1MzcxMjg1MA==","number":1,"title":"Dummy issue with dummy title","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[{"id":164081808,"node_id":"MDU6TGFiZWwxNjQwODE4MDg=","url":"https://api.github.com/repos/rsc/tmp/labels/none","name":"none","color":"ededed","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-01-08T04:11:46Z","updated_at":"2015-04-10T00:14:18Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"For testing.\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/1/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/1/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":215706038,"node_id":"MDE1Ok1pbGVzdG9uZWRFdmVudDIxNTcwNjAzOA==","url":"https://api.github.com/repos/rsc/tmp/issues/events/215706038","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"milestoned","commit_id":null,"commit_url":null,"created_at":"2015-01-08T04:15:04Z","milestone":{"title":"Quartz"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/1","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/1/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/1/events","html_url":"https://github.com/rsc/tmp/issues/1","id":53712850,"node_id":"MDU6SXNzdWU1MzcxMjg1MA==","number":1,"title":"Dummy issue with dummy title","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[{"id":164081808,"node_id":"MDU6TGFiZWwxNjQwODE4MDg=","url":"https://api.github.com/repos/rsc/tmp/labels/none","name":"none","color":"ededed","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-01-08T04:11:46Z","updated_at":"2015-04-10T00:14:18Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"For testing.\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/1/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/1/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":215706019,"node_id":"MDE1Ok1pbGVzdG9uZWRFdmVudDIxNTcwNjAxOQ==","url":"https://api.github.com/repos/rsc/tmp/issues/events/215706019","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"milestoned","commit_id":null,"commit_url":null,"created_at":"2015-01-08T04:14:57Z","milestone":{"title":"Granite"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/1","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/1/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/1/events","html_url":"https://github.com/rsc/tmp/issues/1","id":53712850,"node_id":"MDU6SXNzdWU1MzcxMjg1MA==","number":1,"title":"Dummy issue with dummy title","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[{"id":164081808,"node_id":"MDU6TGFiZWwxNjQwODE4MDg=","url":"https://api.github.com/repos/rsc/tmp/labels/none","name":"none","color":"ededed","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-01-08T04:11:46Z","updated_at":"2015-04-10T00:14:18Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"For testing.\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/1/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/1/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":215705712,"node_id":"MDEyOkxhYmVsZWRFdmVudDIxNTcwNTcxMg==","url":"https://api.github.com/repos/rsc/tmp/issues/events/215705712","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"labeled","commit_id":null,"commit_url":null,"created_at":"2015-01-08T04:13:30Z","label":{"name":"-mylabel","color":"ededed"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/1","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/1/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/1/events","html_url":"https://github.com/rsc/tmp/issues/1","id":53712850,"node_id":"MDU6SXNzdWU1MzcxMjg1MA==","number":1,"title":"Dummy issue with dummy title","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[{"id":164081808,"node_id":"MDU6TGFiZWwxNjQwODE4MDg=","url":"https://api.github.com/repos/rsc/tmp/labels/none","name":"none","color":"ededed","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-01-08T04:11:46Z","updated_at":"2015-04-10T00:14:18Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"For testing.\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/1/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/1/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":215705711,"node_id":"MDE0OlVubGFiZWxlZEV2ZW50MjE1NzA1NzEx","url":"https://api.github.com/repos/rsc/tmp/issues/events/215705711","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"unlabeled","commit_id":null,"commit_url":null,"created_at":"2015-01-08T04:13:30Z","label":{"name":"mylabel","color":"ededed"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/1","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/1/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/1/events","html_url":"https://github.com/rsc/tmp/issues/1","id":53712850,"node_id":"MDU6SXNzdWU1MzcxMjg1MA==","number":1,"title":"Dummy issue with dummy title","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[{"id":164081808,"node_id":"MDU6TGFiZWwxNjQwODE4MDg=","url":"https://api.github.com/repos/rsc/tmp/labels/none","name":"none","color":"ededed","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-01-08T04:11:46Z","updated_at":"2015-04-10T00:14:18Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"For testing.\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/1/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/1/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":215705686,"node_id":"MDEyOkxhYmVsZWRFdmVudDIxNTcwNTY4Ng==","url":"https://api.github.com/repos/rsc/tmp/issues/events/215705686","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"labeled","commit_id":null,"commit_url":null,"created_at":"2015-01-08T04:13:25Z","label":{"name":"mylabel","color":"ededed"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/1","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/1/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/1/events","html_url":"https://github.com/rsc/tmp/issues/1","id":53712850,"node_id":"MDU6SXNzdWU1MzcxMjg1MA==","number":1,"title":"Dummy issue with dummy title","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[{"id":164081808,"node_id":"MDU6TGFiZWwxNjQwODE4MDg=","url":"https://api.github.com/repos/rsc/tmp/labels/none","name":"none","color":"ededed","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-01-08T04:11:46Z","updated_at":"2015-04-10T00:14:18Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"For testing.\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/1/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/1/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":215705667,"node_id":"MDE1OlVuYXNzaWduZWRFdmVudDIxNTcwNTY2Nw==","url":"https://api.github.com/repos/rsc/tmp/issues/events/215705667","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"unassigned","commit_id":null,"commit_url":null,"created_at":"2015-01-08T04:13:16Z","assignee":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"assigner":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/1","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/1/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/1/events","html_url":"https://github.com/rsc/tmp/issues/1","id":53712850,"node_id":"MDU6SXNzdWU1MzcxMjg1MA==","number":1,"title":"Dummy issue with dummy title","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[{"id":164081808,"node_id":"MDU6TGFiZWwxNjQwODE4MDg=","url":"https://api.github.com/repos/rsc/tmp/labels/none","name":"none","color":"ededed","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-01-08T04:11:46Z","updated_at":"2015-04-10T00:14:18Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"For testing.\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/1/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/1/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":215705644,"node_id":"MDEzOkFzc2lnbmVkRXZlbnQyMTU3MDU2NDQ=","url":"https://api.github.com/repos/rsc/tmp/issues/events/215705644","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"assigned","commit_id":null,"commit_url":null,"created_at":"2015-01-08T04:13:10Z","assignee":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"assigner":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/1","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/1/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/1/events","html_url":"https://github.com/rsc/tmp/issues/1","id":53712850,"node_id":"MDU6SXNzdWU1MzcxMjg1MA==","number":1,"title":"Dummy issue with dummy title","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[{"id":164081808,"node_id":"MDU6TGFiZWwxNjQwODE4MDg=","url":"https://api.github.com/repos/rsc/tmp/labels/none","name":"none","color":"ededed","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-01-08T04:11:46Z","updated_at":"2015-04-10T00:14:18Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"For testing.\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/1/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/1/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":215705474,"node_id":"MDE3OlJlbmFtZWRUaXRsZUV2ZW50MjE1NzA1NDc0","url":"https://api.github.com/repos/rsc/tmp/issues/events/215705474","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2015-01-08T04:12:19Z","rename":{"from":"Dummy issue","to":"Dummy issue with dummy title"},"issue":{"url":"https://api.github.com/repos/rsc/tmp/issues/1","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/1/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/1/events","html_url":"https://github.com/rsc/tmp/issues/1","id":53712850,"node_id":"MDU6SXNzdWU1MzcxMjg1MA==","number":1,"title":"Dummy issue with dummy title","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[{"id":164081808,"node_id":"MDU6TGFiZWwxNjQwODE4MDg=","url":"https://api.github.com/repos/rsc/tmp/labels/none","name":"none","color":"ededed","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-01-08T04:11:46Z","updated_at":"2015-04-10T00:14:18Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"For testing.\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/1/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/1/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null}]202 4854 GET https://api.github.com/repos/rsc/tmp/issues?direction=asc&page=1&per_page=100&since=2024-06-12T22%3A14%3A45Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Wed, 12 Jun 2024 22:16:14 GMT Etag: W/"f8005795b9d992b7fce5969e8f415b90ca582a34fa05a1ebe67e327c59a2405f" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: E800:BDF5C:4C28FB5:86395FE:666A1E2E X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4677 X-Ratelimit-Reset: 1718233002 X-Ratelimit-Resource: core X-Ratelimit-Used: 323 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/tmp/issues/5","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/5/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/5/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/5/events","html_url":"https://github.com/rsc/tmp/issues/5","id":67390257,"node_id":"MDU6SXNzdWU2NzM5MDI1Nw==","number":5,"title":"another new issue","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[{"id":198120769,"node_id":"MDU6TGFiZWwxOTgxMjA3Njk=","url":"https://api.github.com/repos/rsc/tmp/labels/foo","name":"foo","color":"ededed","default":false,"description":null},{"id":1311591739,"node_id":"MDU6TGFiZWwxMzExNTkxNzM5","url":"https://api.github.com/repos/rsc/tmp/labels/abc.def","name":"abc.def","color":"f407b5","default":false,"description":""}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":2,"created_at":"2015-04-09T15:46:47Z","updated_at":"2024-06-12T22:14:45Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"just like creating issues\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/5/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/5/timeline","performed_via_github_app":null,"state_reason":null}]228 24233 GET https://api.github.com/repos/rsc/tmp/issues/1/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"57e3804f6cf99163fc98fe00a67ed5753e7101352c976978b6e7cfd353550341" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Wed, 12 Jun 2024 22:16:14 GMT Etag: W/"6147d07ad280135260f878f254e5ba9400082d4b8cfe188a5434eb08cbf8e196" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: E800:BDF5C:4C2900A:8639690:666A1E2E X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4676 X-Ratelimit-Reset: 1718233002 X-Ratelimit-Resource: core X-Ratelimit-Used: 324 X-Xss-Protection: 0 [{"id":215705474,"node_id":"MDE3OlJlbmFtZWRUaXRsZUV2ZW50MjE1NzA1NDc0","url":"https://api.github.com/repos/rsc/tmp/issues/events/215705474","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2015-01-08T04:12:19Z","rename":{"from":"Dummy issue","to":"Dummy issue with dummy title"},"performed_via_github_app":null},{"id":215705644,"node_id":"MDEzOkFzc2lnbmVkRXZlbnQyMTU3MDU2NDQ=","url":"https://api.github.com/repos/rsc/tmp/issues/events/215705644","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"assigned","commit_id":null,"commit_url":null,"created_at":"2015-01-08T04:13:10Z","assignee":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"assigner":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"performed_via_github_app":null},{"id":215705667,"node_id":"MDE1OlVuYXNzaWduZWRFdmVudDIxNTcwNTY2Nw==","url":"https://api.github.com/repos/rsc/tmp/issues/events/215705667","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"unassigned","commit_id":null,"commit_url":null,"created_at":"2015-01-08T04:13:16Z","assignee":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"assigner":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"performed_via_github_app":null},{"id":215705686,"node_id":"MDEyOkxhYmVsZWRFdmVudDIxNTcwNTY4Ng==","url":"https://api.github.com/repos/rsc/tmp/issues/events/215705686","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"labeled","commit_id":null,"commit_url":null,"created_at":"2015-01-08T04:13:25Z","label":{"name":"mylabel","color":"ededed"},"performed_via_github_app":null},{"id":215705711,"node_id":"MDE0OlVubGFiZWxlZEV2ZW50MjE1NzA1NzEx","url":"https://api.github.com/repos/rsc/tmp/issues/events/215705711","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"unlabeled","commit_id":null,"commit_url":null,"created_at":"2015-01-08T04:13:30Z","label":{"name":"mylabel","color":"ededed"},"performed_via_github_app":null},{"id":215705712,"node_id":"MDEyOkxhYmVsZWRFdmVudDIxNTcwNTcxMg==","url":"https://api.github.com/repos/rsc/tmp/issues/events/215705712","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"labeled","commit_id":null,"commit_url":null,"created_at":"2015-01-08T04:13:30Z","label":{"name":"-mylabel","color":"ededed"},"performed_via_github_app":null},{"id":215706019,"node_id":"MDE1Ok1pbGVzdG9uZWRFdmVudDIxNTcwNjAxOQ==","url":"https://api.github.com/repos/rsc/tmp/issues/events/215706019","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"milestoned","commit_id":null,"commit_url":null,"created_at":"2015-01-08T04:14:57Z","milestone":{"title":"Granite"},"performed_via_github_app":null},{"id":215706038,"node_id":"MDE1Ok1pbGVzdG9uZWRFdmVudDIxNTcwNjAzOA==","url":"https://api.github.com/repos/rsc/tmp/issues/events/215706038","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"milestoned","commit_id":null,"commit_url":null,"created_at":"2015-01-08T04:15:04Z","milestone":{"title":"Quartz"},"performed_via_github_app":null},{"id":215706039,"node_id":"MDE3OkRlbWlsZXN0b25lZEV2ZW50MjE1NzA2MDM5","url":"https://api.github.com/repos/rsc/tmp/issues/events/215706039","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"demilestoned","commit_id":null,"commit_url":null,"created_at":"2015-01-08T04:15:04Z","milestone":{"title":"Granite"},"performed_via_github_app":null},{"id":215706302,"node_id":"MDE0OlVubGFiZWxlZEV2ZW50MjE1NzA2MzAy","url":"https://api.github.com/repos/rsc/tmp/issues/events/215706302","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"unlabeled","commit_id":null,"commit_url":null,"created_at":"2015-01-08T04:16:22Z","label":{"name":"-mylabel","color":"ededed"},"performed_via_github_app":null},{"id":215706303,"node_id":"MDEyOkxhYmVsZWRFdmVudDIxNTcwNjMwMw==","url":"https://api.github.com/repos/rsc/tmp/issues/events/215706303","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"labeled","commit_id":null,"commit_url":null,"created_at":"2015-01-08T04:16:22Z","label":{"name":"none","color":"ededed"},"performed_via_github_app":null},{"id":215706347,"node_id":"MDE1Ok1pbGVzdG9uZWRFdmVudDIxNTcwNjM0Nw==","url":"https://api.github.com/repos/rsc/tmp/issues/events/215706347","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"milestoned","commit_id":null,"commit_url":null,"created_at":"2015-01-08T04:16:36Z","milestone":{"title":"Granite"},"performed_via_github_app":null},{"id":215706348,"node_id":"MDE3OkRlbWlsZXN0b25lZEV2ZW50MjE1NzA2MzQ4","url":"https://api.github.com/repos/rsc/tmp/issues/events/215706348","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"demilestoned","commit_id":null,"commit_url":null,"created_at":"2015-01-08T04:16:36Z","milestone":{"title":"Quartz"},"performed_via_github_app":null},{"id":277673968,"node_id":"MDE1Ok1pbGVzdG9uZWRFdmVudDI3NzY3Mzk2OA==","url":"https://api.github.com/repos/rsc/tmp/issues/events/277673968","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"milestoned","commit_id":null,"commit_url":null,"created_at":"2015-04-10T00:12:49Z","milestone":{"title":"Quartz"},"performed_via_github_app":null},{"id":277673969,"node_id":"MDE3OkRlbWlsZXN0b25lZEV2ZW50Mjc3NjczOTY5","url":"https://api.github.com/repos/rsc/tmp/issues/events/277673969","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"demilestoned","commit_id":null,"commit_url":null,"created_at":"2015-04-10T00:12:49Z","milestone":{"title":"Granite"},"performed_via_github_app":null},{"id":277674450,"node_id":"MDE1Ok1pbGVzdG9uZWRFdmVudDI3NzY3NDQ1MA==","url":"https://api.github.com/repos/rsc/tmp/issues/events/277674450","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"milestoned","commit_id":null,"commit_url":null,"created_at":"2015-04-10T00:14:18Z","milestone":{"title":"Granite"},"performed_via_github_app":null},{"id":277674451,"node_id":"MDE3OkRlbWlsZXN0b25lZEV2ZW50Mjc3Njc0NDUx","url":"https://api.github.com/repos/rsc/tmp/issues/events/277674451","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"demilestoned","commit_id":null,"commit_url":null,"created_at":"2015-04-10T00:14:18Z","milestone":{"title":"Quartz"},"performed_via_github_app":null}]228 20844 GET https://api.github.com/repos/rsc/tmp/issues/2/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"57e3804f6cf99163fc98fe00a67ed5753e7101352c976978b6e7cfd353550341" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Wed, 12 Jun 2024 22:16:14 GMT Etag: W/"f49c4c066c949d195cdf1254f0f265edb6dc48da8f1098852ecacd45446f3622" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: E800:BDF5C:4C29066:8639726:666A1E2E X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4675 X-Ratelimit-Reset: 1718233002 X-Ratelimit-Resource: core X-Ratelimit-Used: 325 X-Xss-Protection: 0 [{"id":215707552,"node_id":"MDE1Ok1pbGVzdG9uZWRFdmVudDIxNTcwNzU1Mg==","url":"https://api.github.com/repos/rsc/tmp/issues/events/215707552","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"milestoned","commit_id":null,"commit_url":null,"created_at":"2015-01-08T04:22:25Z","milestone":{"title":"Granite"},"performed_via_github_app":null},{"id":277298767,"node_id":"MDE1Ok1pbGVzdG9uZWRFdmVudDI3NzI5ODc2Nw==","url":"https://api.github.com/repos/rsc/tmp/issues/events/277298767","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"milestoned","commit_id":null,"commit_url":null,"created_at":"2015-04-09T15:45:36Z","milestone":{"title":"Quartz"},"performed_via_github_app":null},{"id":277298768,"node_id":"MDE3OkRlbWlsZXN0b25lZEV2ZW50Mjc3Mjk4NzY4","url":"https://api.github.com/repos/rsc/tmp/issues/events/277298768","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"demilestoned","commit_id":null,"commit_url":null,"created_at":"2015-04-09T15:45:36Z","milestone":{"title":"Granite"},"performed_via_github_app":null},{"id":277298978,"node_id":"MDE1Ok1pbGVzdG9uZWRFdmVudDI3NzI5ODk3OA==","url":"https://api.github.com/repos/rsc/tmp/issues/events/277298978","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"milestoned","commit_id":null,"commit_url":null,"created_at":"2015-04-09T15:45:52Z","milestone":{"title":"Granite"},"performed_via_github_app":null},{"id":277298979,"node_id":"MDE3OkRlbWlsZXN0b25lZEV2ZW50Mjc3Mjk4OTc5","url":"https://api.github.com/repos/rsc/tmp/issues/events/277298979","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"demilestoned","commit_id":null,"commit_url":null,"created_at":"2015-04-09T15:45:52Z","milestone":{"title":"Quartz"},"performed_via_github_app":null},{"id":277658885,"node_id":"MDEyOkxhYmVsZWRFdmVudDI3NzY1ODg4NQ==","url":"https://api.github.com/repos/rsc/tmp/issues/events/277658885","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"labeled","commit_id":null,"commit_url":null,"created_at":"2015-04-09T23:40:21Z","label":{"name":"xyz","color":"ededed"},"performed_via_github_app":null},{"id":277669701,"node_id":"MDE0OlVubGFiZWxlZEV2ZW50Mjc3NjY5NzAx","url":"https://api.github.com/repos/rsc/tmp/issues/events/277669701","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"unlabeled","commit_id":null,"commit_url":null,"created_at":"2015-04-10T00:04:44Z","label":{"name":"xyz","color":"ededed"},"performed_via_github_app":null},{"id":277669839,"node_id":"MDEyOkxhYmVsZWRFdmVudDI3NzY2OTgzOQ==","url":"https://api.github.com/repos/rsc/tmp/issues/events/277669839","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"labeled","commit_id":null,"commit_url":null,"created_at":"2015-04-10T00:05:03Z","label":{"name":"abcd","color":"ededed"},"performed_via_github_app":null},{"id":277673951,"node_id":"MDE1Ok1pbGVzdG9uZWRFdmVudDI3NzY3Mzk1MQ==","url":"https://api.github.com/repos/rsc/tmp/issues/events/277673951","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"milestoned","commit_id":null,"commit_url":null,"created_at":"2015-04-10T00:12:48Z","milestone":{"title":"Quartz"},"performed_via_github_app":null},{"id":277673952,"node_id":"MDE3OkRlbWlsZXN0b25lZEV2ZW50Mjc3NjczOTUy","url":"https://api.github.com/repos/rsc/tmp/issues/events/277673952","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"demilestoned","commit_id":null,"commit_url":null,"created_at":"2015-04-10T00:12:48Z","milestone":{"title":"Granite"},"performed_via_github_app":null},{"id":277674444,"node_id":"MDE1Ok1pbGVzdG9uZWRFdmVudDI3NzY3NDQ0NA==","url":"https://api.github.com/repos/rsc/tmp/issues/events/277674444","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"milestoned","commit_id":null,"commit_url":null,"created_at":"2015-04-10T00:14:18Z","milestone":{"title":"Granite"},"performed_via_github_app":null},{"id":277674445,"node_id":"MDE3OkRlbWlsZXN0b25lZEV2ZW50Mjc3Njc0NDQ1","url":"https://api.github.com/repos/rsc/tmp/issues/events/277674445","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"demilestoned","commit_id":null,"commit_url":null,"created_at":"2015-04-10T00:14:18Z","milestone":{"title":"Quartz"},"performed_via_github_app":null},{"id":278262153,"node_id":"MDEyOkxhYmVsZWRFdmVudDI3ODI2MjE1Mw==","url":"https://api.github.com/repos/rsc/tmp/issues/events/278262153","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"labeled","commit_id":null,"commit_url":null,"created_at":"2015-04-10T16:16:32Z","label":{"name":"foo","color":"ededed"},"performed_via_github_app":null},{"id":292325640,"node_id":"MDE0OlVubGFiZWxlZEV2ZW50MjkyMzI1NjQw","url":"https://api.github.com/repos/rsc/tmp/issues/events/292325640","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"unlabeled","commit_id":null,"commit_url":null,"created_at":"2015-04-28T19:22:13Z","label":{"name":"abcd","color":"ededed"},"performed_via_github_app":null},{"id":292325641,"node_id":"MDE0OlVubGFiZWxlZEV2ZW50MjkyMzI1NjQx","url":"https://api.github.com/repos/rsc/tmp/issues/events/292325641","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"unlabeled","commit_id":null,"commit_url":null,"created_at":"2015-04-28T19:22:13Z","label":{"name":"foo","color":"ededed"},"performed_via_github_app":null},{"id":292325703,"node_id":"MDEyOkxhYmVsZWRFdmVudDI5MjMyNTcwMw==","url":"https://api.github.com/repos/rsc/tmp/issues/events/292325703","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"labeled","commit_id":null,"commit_url":null,"created_at":"2015-04-28T19:22:19Z","label":{"name":"abcde","color":"ededed"},"performed_via_github_app":null},{"id":292326012,"node_id":"MDE0OlVubGFiZWxlZEV2ZW50MjkyMzI2MDEy","url":"https://api.github.com/repos/rsc/tmp/issues/events/292326012","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"unlabeled","commit_id":null,"commit_url":null,"created_at":"2015-04-28T19:22:40Z","label":{"name":"abcde","color":"ededed"},"performed_via_github_app":null}]228 1337 GET https://api.github.com/repos/rsc/tmp/issues/3/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"57e3804f6cf99163fc98fe00a67ed5753e7101352c976978b6e7cfd353550341" HTTP/2.0 200 OK Content-Length: 2 Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Wed, 12 Jun 2024 22:16:14 GMT Etag: "47f5498e2746e4296b0cf988109374d833f761b19387dac18c087ac807153288" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: E800:BDF5C:4C290D9:86397F4:666A1E2E X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4674 X-Ratelimit-Reset: 1718233002 X-Ratelimit-Resource: core X-Ratelimit-Used: 326 X-Xss-Protection: 0 []228 2442 GET https://api.github.com/repos/rsc/tmp/issues/4/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"57e3804f6cf99163fc98fe00a67ed5753e7101352c976978b6e7cfd353550341" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Wed, 12 Jun 2024 22:16:14 GMT Etag: W/"103546eec3e4b034b075b6a2f10c8054ae21497afe31c554bf9f653b4c087ef5" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: E800:BDF5C:4C2913A:86398AD:666A1E2E X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4673 X-Ratelimit-Reset: 1718233002 X-Ratelimit-Resource: core X-Ratelimit-Used: 327 X-Xss-Protection: 0 [{"id":215711025,"node_id":"MDExOkNsb3NlZEV2ZW50MjE1NzExMDI1","url":"https://api.github.com/repos/rsc/tmp/issues/events/215711025","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2015-01-08T04:40:50Z","state_reason":null,"performed_via_github_app":null}]228 7062 GET https://api.github.com/repos/rsc/tmp/issues/5/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"57e3804f6cf99163fc98fe00a67ed5753e7101352c976978b6e7cfd353550341" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Wed, 12 Jun 2024 22:16:15 GMT Etag: W/"e84af9b40cb0e9cc3110da097999c501df35bf42dc78d4258ca1bb794ba9ae33" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: E800:BDF5C:4C291AD:8639963:666A1E2E X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4672 X-Ratelimit-Reset: 1718233002 X-Ratelimit-Resource: core X-Ratelimit-Used: 328 X-Xss-Protection: 0 [{"id":277299772,"node_id":"MDE1Ok1pbGVzdG9uZWRFdmVudDI3NzI5OTc3Mg==","url":"https://api.github.com/repos/rsc/tmp/issues/events/277299772","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"milestoned","commit_id":null,"commit_url":null,"created_at":"2015-04-09T15:46:47Z","milestone":{"title":"Quartz"},"performed_via_github_app":null},{"id":278262182,"node_id":"MDE1Ok1pbGVzdG9uZWRFdmVudDI3ODI2MjE4Mg==","url":"https://api.github.com/repos/rsc/tmp/issues/events/278262182","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"milestoned","commit_id":null,"commit_url":null,"created_at":"2015-04-10T16:16:33Z","milestone":{"title":"Granite"},"performed_via_github_app":null},{"id":278262183,"node_id":"MDE3OkRlbWlsZXN0b25lZEV2ZW50Mjc4MjYyMTgz","url":"https://api.github.com/repos/rsc/tmp/issues/events/278262183","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"demilestoned","commit_id":null,"commit_url":null,"created_at":"2015-04-10T16:16:33Z","milestone":{"title":"Quartz"},"performed_via_github_app":null},{"id":278262185,"node_id":"MDEyOkxhYmVsZWRFdmVudDI3ODI2MjE4NQ==","url":"https://api.github.com/repos/rsc/tmp/issues/events/278262185","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"labeled","commit_id":null,"commit_url":null,"created_at":"2015-04-10T16:16:33Z","label":{"name":"foo","color":"ededed"},"performed_via_github_app":null},{"id":2263785328,"node_id":"MDEyOkxhYmVsZWRFdmVudDIyNjM3ODUzMjg=","url":"https://api.github.com/repos/rsc/tmp/issues/events/2263785328","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"labeled","commit_id":null,"commit_url":null,"created_at":"2019-04-09T18:36:16Z","label":{"name":"abc.def","color":"f407b5"},"performed_via_github_app":null}]228 4902 GET https://api.github.com/repos/rsc/tmp/issues/6/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"57e3804f6cf99163fc98fe00a67ed5753e7101352c976978b6e7cfd353550341" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Wed, 12 Jun 2024 22:16:15 GMT Etag: W/"5bd0c73d319435ecf0db0e0ad298d9b3dbc68aba04ae53bf78692bd579f96dfe" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: E800:BDF5C:4C2921A:8639A15:666A1E2F X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4671 X-Ratelimit-Reset: 1718233002 X-Ratelimit-Resource: core X-Ratelimit-Used: 329 X-Xss-Protection: 0 [{"id":920742849,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDkyMDc0Mjg0OQ==","url":"https://api.github.com/repos/rsc/tmp/issues/events/920742849","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"a5a83b20a3f3969de14332e01678249d13cd739e","commit_url":"https://api.github.com/repos/rsc/tmp/commits/a5a83b20a3f3969de14332e01678249d13cd739e","created_at":"2017-01-12T13:53:07Z","performed_via_github_app":null},{"id":920742850,"node_id":"MDExOk1lcmdlZEV2ZW50OTIwNzQyODUw","url":"https://api.github.com/repos/rsc/tmp/issues/events/920742850","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"a5a83b20a3f3969de14332e01678249d13cd739e","commit_url":"https://api.github.com/repos/rsc/tmp/commits/a5a83b20a3f3969de14332e01678249d13cd739e","created_at":"2017-01-12T13:53:07Z","performed_via_github_app":null},{"id":920742851,"node_id":"MDExOkNsb3NlZEV2ZW50OTIwNzQyODUx","url":"https://api.github.com/repos/rsc/tmp/issues/events/920742851","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2017-01-12T13:53:07Z","state_reason":null,"performed_via_github_app":null}]228 4902 GET https://api.github.com/repos/rsc/tmp/issues/7/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"57e3804f6cf99163fc98fe00a67ed5753e7101352c976978b6e7cfd353550341" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Wed, 12 Jun 2024 22:16:15 GMT Etag: W/"9b995bde59cbc4c851ad3ca22dfcc3b0a389e7c7149d3992ad47305207ce00b0" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: E800:BDF5C:4C2928F:8639AE0:666A1E2F X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4670 X-Ratelimit-Reset: 1718233002 X-Ratelimit-Resource: core X-Ratelimit-Used: 330 X-Xss-Protection: 0 [{"id":988766007,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDk4ODc2NjAwNw==","url":"https://api.github.com/repos/rsc/tmp/issues/events/988766007","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"1238e6c86331ea2b018f729f0d2012e01a53a351","commit_url":"https://api.github.com/repos/rsc/tmp/commits/1238e6c86331ea2b018f729f0d2012e01a53a351","created_at":"2017-03-07T00:43:47Z","performed_via_github_app":null},{"id":988766008,"node_id":"MDExOk1lcmdlZEV2ZW50OTg4NzY2MDA4","url":"https://api.github.com/repos/rsc/tmp/issues/events/988766008","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"1238e6c86331ea2b018f729f0d2012e01a53a351","commit_url":"https://api.github.com/repos/rsc/tmp/commits/1238e6c86331ea2b018f729f0d2012e01a53a351","created_at":"2017-03-07T00:43:47Z","performed_via_github_app":null},{"id":988766009,"node_id":"MDExOkNsb3NlZEV2ZW50OTg4NzY2MDA5","url":"https://api.github.com/repos/rsc/tmp/issues/events/988766009","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2017-03-07T00:43:47Z","state_reason":null,"performed_via_github_app":null}]228 1337 GET https://api.github.com/repos/rsc/tmp/issues/8/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"57e3804f6cf99163fc98fe00a67ed5753e7101352c976978b6e7cfd353550341" HTTP/2.0 200 OK Content-Length: 2 Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Wed, 12 Jun 2024 22:16:15 GMT Etag: "47f5498e2746e4296b0cf988109374d833f761b19387dac18c087ac807153288" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: E800:BDF5C:4C29304:8639BB7:666A1E2F X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4669 X-Ratelimit-Reset: 1718233002 X-Ratelimit-Resource: core X-Ratelimit-Used: 331 X-Xss-Protection: 0 []228 1337 GET https://api.github.com/repos/rsc/tmp/issues/9/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"57e3804f6cf99163fc98fe00a67ed5753e7101352c976978b6e7cfd353550341" HTTP/2.0 200 OK Content-Length: 2 Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Wed, 12 Jun 2024 22:16:15 GMT Etag: "47f5498e2746e4296b0cf988109374d833f761b19387dac18c087ac807153288" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: E800:BDF5C:4C2934E:8639C4C:666A1E2F X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4668 X-Ratelimit-Reset: 1718233002 X-Ratelimit-Resource: core X-Ratelimit-Used: 332 X-Xss-Protection: 0 []229 2658 GET https://api.github.com/repos/rsc/tmp/issues/10/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"57e3804f6cf99163fc98fe00a67ed5753e7101352c976978b6e7cfd353550341" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Wed, 12 Jun 2024 22:16:15 GMT Etag: W/"38c550bf67611e3ba4334fbe34f961a258abaa995e73e9f2a96f9433077a9a5f" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: E800:BDF5C:4C293AA:8639CDA:666A1E2F X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4667 X-Ratelimit-Reset: 1718233002 X-Ratelimit-Resource: core X-Ratelimit-Used: 333 X-Xss-Protection: 0 [{"id":8588462050,"node_id":"LE_lADOARP1lc5fJiPWzwAAAAH_6Yfi","url":"https://api.github.com/repos/rsc/tmp/issues/events/8588462050","actor":{"login":"dependabot[bot]","id":49699333,"node_id":"MDM6Qm90NDk2OTkzMzM=","avatar_url":"https://avatars.githubusercontent.com/in/29110?v=4","gravatar_id":"","url":"https://api.github.com/users/dependabot%5Bbot%5D","html_url":"https://github.com/apps/dependabot","followers_url":"https://api.github.com/users/dependabot%5Bbot%5D/followers","following_url":"https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dependabot%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/dependabot%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/dependabot%5Bbot%5D/repos","events_url":"https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/dependabot%5Bbot%5D/received_events","type":"Bot","site_admin":false},"event":"labeled","commit_id":null,"commit_url":null,"created_at":"2023-02-23T07:15:04Z","label":{"name":"dependencies","color":"0366d6"},"performed_via_github_app":null}]229 2658 GET https://api.github.com/repos/rsc/tmp/issues/11/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"57e3804f6cf99163fc98fe00a67ed5753e7101352c976978b6e7cfd353550341" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Wed, 12 Jun 2024 22:16:15 GMT Etag: W/"8a4680ebb1dcec927dc64b34f4c78c5d23dafcbb57c8c46fa2bbafa12dc76eaa" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: E800:BDF5C:4C2940E:8639D9E:666A1E2F X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4666 X-Ratelimit-Reset: 1718233002 X-Ratelimit-Resource: core X-Ratelimit-Used: 334 X-Xss-Protection: 0 [{"id":8606712514,"node_id":"LE_lADOARP1lc5fVXLRzwAAAAIBAALC","url":"https://api.github.com/repos/rsc/tmp/issues/events/8606712514","actor":{"login":"dependabot[bot]","id":49699333,"node_id":"MDM6Qm90NDk2OTkzMzM=","avatar_url":"https://avatars.githubusercontent.com/in/29110?v=4","gravatar_id":"","url":"https://api.github.com/users/dependabot%5Bbot%5D","html_url":"https://github.com/apps/dependabot","followers_url":"https://api.github.com/users/dependabot%5Bbot%5D/followers","following_url":"https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dependabot%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/dependabot%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/dependabot%5Bbot%5D/repos","events_url":"https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/dependabot%5Bbot%5D/received_events","type":"Bot","site_admin":false},"event":"labeled","commit_id":null,"commit_url":null,"created_at":"2023-02-25T00:17:14Z","label":{"name":"dependencies","color":"0366d6"},"performed_via_github_app":null}]229 2658 GET https://api.github.com/repos/rsc/tmp/issues/12/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"57e3804f6cf99163fc98fe00a67ed5753e7101352c976978b6e7cfd353550341" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Wed, 12 Jun 2024 22:16:15 GMT Etag: W/"79e2392c1c9a59d2d4040bf31ff508246dbc484bc72039136b7acc9cbae4a3d6" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: E800:BDF5C:4C294A9:8639E8F:666A1E2F X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4665 X-Ratelimit-Reset: 1718233002 X-Ratelimit-Resource: core X-Ratelimit-Used: 335 X-Xss-Protection: 0 [{"id":8606841979,"node_id":"LE_lADOARP1lc5fVczBzwAAAAIBAfx7","url":"https://api.github.com/repos/rsc/tmp/issues/events/8606841979","actor":{"login":"dependabot[bot]","id":49699333,"node_id":"MDM6Qm90NDk2OTkzMzM=","avatar_url":"https://avatars.githubusercontent.com/in/29110?v=4","gravatar_id":"","url":"https://api.github.com/users/dependabot%5Bbot%5D","html_url":"https://github.com/apps/dependabot","followers_url":"https://api.github.com/users/dependabot%5Bbot%5D/followers","following_url":"https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dependabot%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/dependabot%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/dependabot%5Bbot%5D/repos","events_url":"https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/dependabot%5Bbot%5D/received_events","type":"Bot","site_admin":false},"event":"labeled","commit_id":null,"commit_url":null,"created_at":"2023-02-25T00:57:53Z","label":{"name":"dependencies","color":"0366d6"},"performed_via_github_app":null}]229 2658 GET https://api.github.com/repos/rsc/tmp/issues/13/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"57e3804f6cf99163fc98fe00a67ed5753e7101352c976978b6e7cfd353550341" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Wed, 12 Jun 2024 22:16:16 GMT Etag: W/"e915d1be8c17a08794c357e10643faa8fd55f244f0ad71ef2ea9659938537f12" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: E800:BDF5C:4C2951E:8639F56:666A1E2F X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4664 X-Ratelimit-Reset: 1718233002 X-Ratelimit-Resource: core X-Ratelimit-Used: 336 X-Xss-Protection: 0 [{"id":8607404333,"node_id":"LE_lADOARP1lc5fV6JAzwAAAAIBCpEt","url":"https://api.github.com/repos/rsc/tmp/issues/events/8607404333","actor":{"login":"dependabot[bot]","id":49699333,"node_id":"MDM6Qm90NDk2OTkzMzM=","avatar_url":"https://avatars.githubusercontent.com/in/29110?v=4","gravatar_id":"","url":"https://api.github.com/users/dependabot%5Bbot%5D","html_url":"https://github.com/apps/dependabot","followers_url":"https://api.github.com/users/dependabot%5Bbot%5D/followers","following_url":"https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dependabot%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/dependabot%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/dependabot%5Bbot%5D/repos","events_url":"https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/dependabot%5Bbot%5D/received_events","type":"Bot","site_admin":false},"event":"labeled","commit_id":null,"commit_url":null,"created_at":"2023-02-25T06:27:01Z","label":{"name":"dependencies","color":"0366d6"},"performed_via_github_app":null}]229 2658 GET https://api.github.com/repos/rsc/tmp/issues/14/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"57e3804f6cf99163fc98fe00a67ed5753e7101352c976978b6e7cfd353550341" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Wed, 12 Jun 2024 22:16:16 GMT Etag: W/"bbc4fc0355b4ab283f086579cc786583e17dc5c2da819ae6b4c90046e347dae2" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: E800:BDF5C:4C295A2:863A02B:666A1E30 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4663 X-Ratelimit-Reset: 1718233002 X-Ratelimit-Resource: core X-Ratelimit-Used: 337 X-Xss-Protection: 0 [{"id":8607407247,"node_id":"LE_lADOARP1lc5fV6VDzwAAAAIBCpyP","url":"https://api.github.com/repos/rsc/tmp/issues/events/8607407247","actor":{"login":"dependabot[bot]","id":49699333,"node_id":"MDM6Qm90NDk2OTkzMzM=","avatar_url":"https://avatars.githubusercontent.com/in/29110?v=4","gravatar_id":"","url":"https://api.github.com/users/dependabot%5Bbot%5D","html_url":"https://github.com/apps/dependabot","followers_url":"https://api.github.com/users/dependabot%5Bbot%5D/followers","following_url":"https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dependabot%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/dependabot%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/dependabot%5Bbot%5D/repos","events_url":"https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/dependabot%5Bbot%5D/received_events","type":"Bot","site_admin":false},"event":"labeled","commit_id":null,"commit_url":null,"created_at":"2023-02-25T06:29:41Z","label":{"name":"dependencies","color":"0366d6"},"performed_via_github_app":null}]229 2658 GET https://api.github.com/repos/rsc/tmp/issues/15/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"57e3804f6cf99163fc98fe00a67ed5753e7101352c976978b6e7cfd353550341" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Wed, 12 Jun 2024 22:16:16 GMT Etag: W/"d0d80521c6821c919b99fd171edda361872c4eea679c9daef8a7cc2f48df6465" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: E800:BDF5C:4C29609:863A0F4:666A1E30 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4662 X-Ratelimit-Reset: 1718233002 X-Ratelimit-Resource: core X-Ratelimit-Used: 338 X-Xss-Protection: 0 [{"id":8607614126,"node_id":"LE_lADOARP1lc5fWGsxzwAAAAIBDcSu","url":"https://api.github.com/repos/rsc/tmp/issues/events/8607614126","actor":{"login":"dependabot[bot]","id":49699333,"node_id":"MDM6Qm90NDk2OTkzMzM=","avatar_url":"https://avatars.githubusercontent.com/in/29110?v=4","gravatar_id":"","url":"https://api.github.com/users/dependabot%5Bbot%5D","html_url":"https://github.com/apps/dependabot","followers_url":"https://api.github.com/users/dependabot%5Bbot%5D/followers","following_url":"https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dependabot%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/dependabot%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/dependabot%5Bbot%5D/repos","events_url":"https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/dependabot%5Bbot%5D/received_events","type":"Bot","site_admin":false},"event":"labeled","commit_id":null,"commit_url":null,"created_at":"2023-02-25T09:24:26Z","label":{"name":"dependencies","color":"0366d6"},"performed_via_github_app":null}]229 1337 GET https://api.github.com/repos/rsc/tmp/issues/16/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"57e3804f6cf99163fc98fe00a67ed5753e7101352c976978b6e7cfd353550341" HTTP/2.0 200 OK Content-Length: 2 Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Wed, 12 Jun 2024 22:16:16 GMT Etag: "47f5498e2746e4296b0cf988109374d833f761b19387dac18c087ac807153288" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: E800:BDF5C:4C2966C:863A1B8:666A1E30 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4661 X-Ratelimit-Reset: 1718233002 X-Ratelimit-Resource: core X-Ratelimit-Used: 339 X-Xss-Protection: 0 []226 1165 GET https://api.github.com/repos/rsc/tmp/issues/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"57e3804f6cf99163fc98fe00a67ed5753e7101352c976978b6e7cfd353550341" HTTP/2.0 304 Not Modified Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Date: Wed, 12 Jun 2024 22:16:16 GMT Etag: "57e3804f6cf99163fc98fe00a67ed5753e7101352c976978b6e7cfd353550341" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Request-Id: E800:BDF5C:4C296F2:863A29B:666A1E30 X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4661 X-Ratelimit-Reset: 1718233002 X-Ratelimit-Resource: core X-Ratelimit-Used: 339 X-Xss-Protection: 0 116 4915 GET https://api.github.com/repos/rsc/tmp/issues/5 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Wed, 12 Jun 2024 22:16:16 GMT Etag: W/"c6c1fe272dc2330fb11a98f5c79a8feb21beba1fde16dbaea55af183babb2dd3" Last-Modified: Wed, 12 Jun 2024 22:14:45 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: E800:BDF5C:4C297C5:863A3ED:666A1E30 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4660 X-Ratelimit-Reset: 1718233002 X-Ratelimit-Resource: core X-Ratelimit-Used: 340 X-Xss-Protection: 0 {"url":"https://api.github.com/repos/rsc/tmp/issues/5","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/5/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/5/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/5/events","html_url":"https://github.com/rsc/tmp/issues/5","id":67390257,"node_id":"MDU6SXNzdWU2NzM5MDI1Nw==","number":5,"title":"another new issue","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[{"id":198120769,"node_id":"MDU6TGFiZWwxOTgxMjA3Njk=","url":"https://api.github.com/repos/rsc/tmp/labels/foo","name":"foo","color":"ededed","default":false,"description":null},{"id":1311591739,"node_id":"MDU6TGFiZWwxMzExNTkxNzM5","url":"https://api.github.com/repos/rsc/tmp/labels/abc.def","name":"abc.def","color":"f407b5","default":false,"description":""}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":2,"created_at":"2015-04-09T15:46:47Z","updated_at":"2024-06-12T22:14:45Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"just like creating issues\n","closed_by":null,"reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/5/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/5/timeline","performed_via_github_app":null,"state_reason":null}134 2807 GET https://api.github.com/repos/rsc/tmp/issues/comments/2163975931 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Wed, 12 Jun 2024 22:16:16 GMT Etag: W/"5a846b165dc8a8b15bec6d79085a4523c86f85f0b7bbfe47ecd36a9cc85023bf" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: E800:BDF5C:4C29830:863A49D:666A1E30 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4659 X-Ratelimit-Reset: 1718233002 X-Ratelimit-Resource: core X-Ratelimit-Used: 341 X-Xss-Protection: 0 {"url":"https://api.github.com/repos/rsc/tmp/issues/comments/2163975931","html_url":"https://github.com/rsc/tmp/issues/5#issuecomment-2163975931","issue_url":"https://api.github.com/repos/rsc/tmp/issues/5","id":2163975931,"node_id":"IC_kwDOARP1lc6A-6b7","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?u=7776f9d68ea1bc349af0227c03fca30350a05477&v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-06-12T22:02:54Z","updated_at":"2024-06-12T22:14:43Z","author_association":"OWNER","body":"Comment!\r\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/2163975931/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}226 2764 PATCH https://api.github.com/repos/rsc/tmp/issues/comments/2163975931 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 Content-Length: 23 Content-Type: application/json; charset=utf-8 {"body":"Pbzzrag!\r\n"}HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Wed, 12 Jun 2024 22:16:17 GMT Etag: W/"c5e21f004b843f6d9c92c3e778c9fa7db514a686c7dde0f33c19c4e010e69a8e" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: E800:BDF5C:4C2991D:863A666:666A1E30 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4658 X-Ratelimit-Reset: 1718233002 X-Ratelimit-Resource: core X-Ratelimit-Used: 342 X-Xss-Protection: 0 {"url":"https://api.github.com/repos/rsc/tmp/issues/comments/2163975931","html_url":"https://github.com/rsc/tmp/issues/5#issuecomment-2163975931","issue_url":"https://api.github.com/repos/rsc/tmp/issues/5","id":2163975931,"node_id":"IC_kwDOARP1lc6A-6b7","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-06-12T22:02:54Z","updated_at":"2024-06-12T22:16:17Z","author_association":"OWNER","body":"Pbzzrag!\r\n","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/2163975931/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}231 2922 POST https://api.github.com/repos/rsc/tmp/issues/5/comments HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 Content-Length: 38 Content-Type: application/json; charset=utf-8 {"body":"testing. rot13 is the best."}HTTP/2.0 201 Created Content-Length: 1508 Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Wed, 12 Jun 2024 22:16:17 GMT Etag: "fd5a1ae6d8240184c9adc9dc000554d4b4c2cc35e1bfe513e1cb007c224fcb4e" Location: https://api.github.com/repos/rsc/tmp/issues/comments/2163990617 Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: E800:BDF5C:4C29A85:863A8A6:666A1E31 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4657 X-Ratelimit-Reset: 1718233002 X-Ratelimit-Resource: core X-Ratelimit-Used: 343 X-Xss-Protection: 0 {"url":"https://api.github.com/repos/rsc/tmp/issues/comments/2163990617","html_url":"https://github.com/rsc/tmp/issues/5#issuecomment-2163990617","issue_url":"https://api.github.com/repos/rsc/tmp/issues/5","id":2163990617,"node_id":"IC_kwDOARP1lc6A--BZ","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?u=7776f9d68ea1bc349af0227c03fca30350a05477&v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-06-12T22:16:17Z","updated_at":"2024-06-12T22:16:17Z","author_association":"OWNER","body":"testing. rot13 is the best.","reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/comments/2163990617/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}214 4865 PATCH https://api.github.com/repos/rsc/tmp/issues/5 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 Content-Length: 29 Content-Type: application/json; charset=utf-8 {"title":"nabgure arj vffhr"}HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Wed, 12 Jun 2024 22:16:18 GMT Etag: W/"f423af6e02fdbd2f72c9de9f0a5559f3f4992ace3b78f46b2b6e2f912df01ead" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: E800:BDF5C:4C29BEE:863AAFC:666A1E31 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4656 X-Ratelimit-Reset: 1718233002 X-Ratelimit-Resource: core X-Ratelimit-Used: 344 X-Xss-Protection: 0 {"url":"https://api.github.com/repos/rsc/tmp/issues/5","repository_url":"https://api.github.com/repos/rsc/tmp","labels_url":"https://api.github.com/repos/rsc/tmp/issues/5/labels{/name}","comments_url":"https://api.github.com/repos/rsc/tmp/issues/5/comments","events_url":"https://api.github.com/repos/rsc/tmp/issues/5/events","html_url":"https://github.com/rsc/tmp/issues/5","id":67390257,"node_id":"MDU6SXNzdWU2NzM5MDI1Nw==","number":5,"title":"nabgure arj vffhr","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[{"id":198120769,"node_id":"MDU6TGFiZWwxOTgxMjA3Njk=","url":"https://api.github.com/repos/rsc/tmp/labels/foo","name":"foo","color":"ededed","default":false,"description":null},{"id":1311591739,"node_id":"MDU6TGFiZWwxMzExNTkxNzM5","url":"https://api.github.com/repos/rsc/tmp/labels/abc.def","name":"abc.def","color":"f407b5","default":false,"description":""}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/rsc/tmp/milestones/1","html_url":"https://github.com/rsc/tmp/milestone/1","labels_url":"https://api.github.com/repos/rsc/tmp/milestones/1/labels","id":926583,"node_id":"MDk6TWlsZXN0b25lOTI2NTgz","number":1,"title":"Granite","description":null,"creator":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":0,"state":"open","created_at":"2015-01-08T04:14:57Z","updated_at":"2015-04-10T16:16:33Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2015-04-09T15:46:47Z","updated_at":"2024-06-12T22:16:17Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"just like creating issues\n","closed_by":null,"reactions":{"url":"https://api.github.com/repos/rsc/tmp/issues/5/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/tmp/issues/5/timeline","performed_via_github_app":null,"state_reason":null}
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/github/testdata/markdowninc.httprr
httprr trace v1 176 50061 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:17 GMT Etag: W/"420ce3231a7b59eb879f380e28c0dd7a9c785a13af27f335164f13d3d50f3020" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2E382:2F1DD3D:66636298 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4999 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 1 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/3","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/3/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/3/events","html_url":"https://github.com/rsc/markdown/issues/3","id":2038510799,"node_id":"I_kwDOKnFwjc55gTTP","number":3,"title":"support : in autolinks","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-12-12T20:34:03Z","updated_at":"2023-12-12T21:04:04Z","closed_at":"2023-12-12T21:04:04Z","author_association":"NONE","active_lock_reason":null,"body":"Edit: it looks like github does treat https://localhost as an autolink even though the GFM spec says a valid domain must have at least one dot. We should support https://localhost:8080\r\n\r\nProgram running goldmark and markdown on input: https://go.dev/play/p/FCJ0gp84YZQ\r\n\r\n```\r\nhttps://localhost:8080\r\n```\r\n\r\noutput is ```\r\nmarkdown:\r\n<p><a href=\"https://localhost\">https://localhost</a>:8080</p>\r\n\r\n\r\ngoldmark:\r\n<p>https://localhost:8080</p>\r\n```\r\n\r\nIt looks like goldmark is doing the wrong thing here but we should handle the :8080\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/3/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/3/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/rsc/markdown/issues/2","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/2/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/2/events","html_url":"https://github.com/rsc/markdown/issues/2","id":2038502414,"node_id":"I_kwDOKnFwjc55gRQO","number":2,"title":"allow capital X in task list items","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-12-12T20:28:39Z","updated_at":"2023-12-13T03:02:30Z","closed_at":"2023-12-13T03:02:30Z","author_association":"NONE","active_lock_reason":null,"body":"Here's a go program running goldmark and markdown on the following input: https://go.dev/play/p/fZRthH1dl4B\r\n```\r\n- [X] task list item\r\n```\r\nWhich is rendered on github as:\r\n\r\n- [X] task list item\r\n\r\nIts output is:\r\n```\r\nmarkdown:\r\n<ul>\r\n<li>[X] task list item</li>\r\n</ul>\r\n\r\n\r\ngoldmark:\r\n<ul>\r\n<li><input checked=\"\" disabled=\"\" type=\"checkbox\" /> task list item</li>\r\n</ul>\r\n\r\n```","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/2/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/2/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/rsc/markdown/issues/4","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/4/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/4/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/4/events","html_url":"https://github.com/rsc/markdown/issues/4","id":2038521730,"node_id":"I_kwDOKnFwjc55gV-C","number":4,"title":"Replace newlines with spaces in alt text","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-12-12T20:43:15Z","updated_at":"2023-12-13T03:02:31Z","closed_at":"2023-12-13T03:02:31Z","author_association":"NONE","active_lock_reason":null,"body":"Here's a go program that runs markdown and goldmark on the following input: https://go.dev/play/p/zZ0vWAgKB0c:\r\n\r\n```\r\n[![Line\r\nBreak](https://line.break/image)](https://line.break)\r\n```\r\n\r\nWhich is rendered on github with a space instead of the newline in the alt text:\r\n\r\n```\r\n<p dir=\"auto\"><a href=\"https://line.break\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/743b6218bc25f78b5f7f654f1ce773766351a2e3605cf8b47c60659055c218ac/68747470733a2f2f6c696e652e627265616b2f696d616765\" alt=\"Line Break\" data-canonical-src=\"https://line.break/image\" style=\"max-width: 100%;\"></a></p>\r\n```\r\n\r\nThe output is \r\n```\r\nmarkdown:\r\n<p><a href=\"https://line.break\"><img src=\"https://line.break/image\" alt=\"LineBreak\" /></a></p>\r\n\r\n\r\ngoldmark:\r\n<p><a href=\"https://line.break\"><img src=\"https://line.break/image\" alt=\"Line\r\nBreak\" /></a></p>\r\n```\r\n\r\nIt seems like goldmark's behavior is also different from github's as goldmark preserves the line break.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/4/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/4/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/rsc/markdown/issues/1","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/1/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/1/events","html_url":"https://github.com/rsc/markdown/issues/1","id":2038380363,"node_id":"I_kwDOKnFwjc55fzdL","number":1,"title":"Support Github Emojis","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-12-12T18:57:39Z","updated_at":"2023-12-13T03:02:32Z","closed_at":"2023-12-13T03:02:32Z","author_association":"NONE","active_lock_reason":null,"body":"This is an issue for supporting github emojis, such as `:smile:` for 😄 . There's a github page that gives a mapping of emojis to image file names that we can parse the hex representation out of here: https://api.github.com/emojis.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/1/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/1/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/rsc/markdown/issues/6","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/6/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/6/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/6/events","html_url":"https://github.com/rsc/markdown/issues/6","id":2038573328,"node_id":"I_kwDOKnFwjc55gikQ","number":6,"title":"goldmark and markdown diff with h1 inside p","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-12-12T21:26:15Z","updated_at":"2023-12-13T03:02:32Z","closed_at":"2023-12-13T03:02:32Z","author_association":"NONE","active_lock_reason":null,"body":"Here's a program that runs goldmark and markdown on the following input: https://go.dev/play/p/rTnPTxps_zw\r\n\r\n```\r\n<p align=\"center\">\r\n\r\n<h1>Text</h1>\r\nbody\r\n</p>\r\n```\r\n\r\nIt's hard for me to tell exactly what github is doing with this input, but it doesn't seem like it's putting the h1 into a p:\r\n\r\n<p align=\"center\">\r\n\r\n<h1>Text</h1>\r\nbody\r\n</p>\r\n\r\nHere's the output of the program:\r\n```\r\nmarkdown:\r\n<p align=\"center\">\r\n<p><h1>Text</h1>\r\nbody</p>\r\n</p>\r\n\r\n\r\ngoldmark:\r\n<p align=\"center\">\r\n<h1>Text</h1>\r\nbody\r\n</p>\r\n```","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/6/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/6/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/rsc/markdown/issues/5","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/5/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/5/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/5/events","html_url":"https://github.com/rsc/markdown/issues/5","id":2038530418,"node_id":"I_kwDOKnFwjc55gYFy","number":5,"title":"Allow `?`, `!`, `.`, `,`, `:,` `*`, `_`, and `~` on the interior of a link","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2023-12-12T20:50:38Z","updated_at":"2023-12-13T17:24:41Z","closed_at":"2023-12-13T03:02:31Z","author_association":"NONE","active_lock_reason":null,"body":"GFM allows `?`, `!`, `.`, `,`, `:,` `*`, `_`, and `~` on the interior of a link: https://github.github.com/gfm/#extended-autolink-path-validation\r\n\r\nHere's a program that compares markdown and goldmark on the following input: https://go.dev/play/p/uLHnavChGYX\r\n\r\n```https://web.site:8080/~matloob```\r\n\r\nWhich is rendered on github as \r\nhttps://web.site:8080/~matloob\r\n\r\nThe output of the program is \r\n```\r\nmarkdown:\r\n<p><a href=\"https://web.site\">https://web.site</a>:8080/~matloob</p>\r\n\r\n\r\ngoldmark:\r\n<p><a href=\"https://web.site:8080/~matloob\">https://web.site:8080/~matloob</a></p>\r\n```","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/5/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/5/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/rsc/markdown/issues/7","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/7/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/7/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/7/events","html_url":"https://github.com/rsc/markdown/issues/7","id":2040197050,"node_id":"I_kwDOKnFwjc55mu-6","number":7,"title":"Empty column heading not recognized in table","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-12-13T17:45:33Z","updated_at":"2023-12-13T23:11:57Z","closed_at":"2023-12-13T23:11:57Z","author_association":"NONE","active_lock_reason":null,"body":"Here's a program that compares markdown and goldmark on the following input https://go.dev/play/p/kEslff4EyTa\r\n\r\n```\r\n| | Foo | Bar |\r\n| -------- | -------- | -------- |\r\n| a | value1 | value2 |\r\n| b | value3 | value4 |\r\n```\r\n\r\nRendered in github as \r\n| | Foo | Bar |\r\n| -------- | -------- | -------- |\r\n| a | value1 | value2 |\r\n| b | value3 | value4 |\r\n\r\nThe output is\r\n```\r\nmarkdown:\r\n<table>\r\n<thead>\r\n<tr>\r\n<th></th>\r\n<th>Foo</th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td>a</td>\r\n<td>value1</td>\r\n</tr>\r\n<tr>\r\n<td>b</td>\r\n<td>value3</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n\r\ngoldmark:\r\n<table>\r\n<thead>\r\n<tr>\r\n<th></th>\r\n<th>Foo</th>\r\n<th>Bar</th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td>a</td>\r\n<td>value1</td>\r\n<td>value2</td>\r\n</tr>\r\n<tr>\r\n<td>b</td>\r\n<td>value3</td>\r\n<td>value4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n```","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/7/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/7/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/rsc/markdown/issues/9","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/9/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/9/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/9/events","html_url":"https://github.com/rsc/markdown/issues/9","id":2040303458,"node_id":"I_kwDOKnFwjc55nI9i","number":9,"title":"Support escaped `|` in table cells","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-12-13T19:03:40Z","updated_at":"2023-12-13T23:11:57Z","closed_at":"2023-12-13T23:11:57Z","author_association":"NONE","active_lock_reason":null,"body":"Here's a program that runs goldmark and markdown on the following input https://go.dev/play/p/YgApD-obwxL\r\n\r\n```\r\nFoo | Bar\r\n--- | ---\r\nA | a\\\\|b\\\\|c\r\n```\r\n\r\nrendered in github as \r\n\r\nFoo | Bar\r\n--- | ---\r\nA | a\\\\|b\\\\|c\r\n\r\nThe output of the program is \r\n```\r\nmarkdown:\r\n<table>\r\n<thead>\r\n<tr>\r\n<th>Foo</th>\r\n<th>Bar</th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td>A</td>\r\n<td>a\\</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n\r\ngoldmark:\r\n<table>\r\n<thead>\r\n<tr>\r\n<th>Foo</th>\r\n<th>Bar</th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td>A</td>\r\n<td>a\\|b\\|c</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n```","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/9/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/9/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/rsc/markdown/issues/8","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/8/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/8/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/8/events","html_url":"https://github.com/rsc/markdown/issues/8","id":2040277497,"node_id":"I_kwDOKnFwjc55nCn5","number":8,"title":"Autolink can't start immediately after `[`","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":4,"created_at":"2023-12-13T18:44:32Z","updated_at":"2023-12-14T16:21:54Z","closed_at":"2023-12-14T16:21:54Z","author_association":"NONE","active_lock_reason":null,"body":"From the [gfm spec](https://github.github.com/gfm/#autolinks-extension): \r\n\r\n> All such recognized autolinks can only come at the beginning of a line, after whitespace, or any of the delimiting characters *, _, ~, and (.\r\n\r\nHere's a go program that runs markdown and goldmark on the following input: https://go.dev/play/p/kTjBshQ82iQ\r\n\r\n```\r\n[https://golang.org]\r\n```\r\nRendered in github as \r\n\r\n[https://golang.org]\r\n\r\nThe output of the program is \r\n\r\n```\r\nmarkdown:\r\n<p>[<a href=\"https://golang.org%5D\">https://golang.org]</a></p>\r\n\r\n\r\ngoldmark:\r\n<p>[https://golang.org]</p>\r\n```","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/8/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/8/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/rsc/markdown/issues/10","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/10/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/10/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/10/events","html_url":"https://github.com/rsc/markdown/pull/10","id":2076625629,"node_id":"PR_kwDOKnFwjc5jzktS","number":10,"title":"fix markdown rendering of headings with IDs","user":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-01-11T13:15:34Z","updated_at":"2024-01-17T04:39:59Z","closed_at":"2024-01-17T04:39:59Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/10","html_url":"https://github.com/rsc/markdown/pull/10","diff_url":"https://github.com/rsc/markdown/pull/10.diff","patch_url":"https://github.com/rsc/markdown/pull/10.patch","merged_at":null},"body":"Move the newline after the heading text to after the ID.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/10/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/10/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/11","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/11/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/11/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/11/events","html_url":"https://github.com/rsc/markdown/pull/11","id":2076798270,"node_id":"PR_kwDOKnFwjc5j0LtA","number":11,"title":"render markdown for document link references","user":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-01-11T14:20:56Z","updated_at":"2024-01-17T04:41:48Z","closed_at":"2024-01-17T04:41:48Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/11","html_url":"https://github.com/rsc/markdown/pull/11","diff_url":"https://github.com/rsc/markdown/pull/11.diff","patch_url":"https://github.com/rsc/markdown/pull/11.patch","merged_at":null},"body":null,"reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/11/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/11/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/12","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/12/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/12/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/12/events","html_url":"https://github.com/rsc/markdown/pull/12","id":2137605063,"node_id":"PR_kwDOKnFwjc5nCLz2","number":12,"title":"markdown: fix markdown printing for inline code","user":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-02-15T23:18:12Z","updated_at":"2024-03-06T14:43:22Z","closed_at":"2024-03-06T14:43:22Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/12","html_url":"https://github.com/rsc/markdown/pull/12","diff_url":"https://github.com/rsc/markdown/pull/12.diff","patch_url":"https://github.com/rsc/markdown/pull/12.patch","merged_at":"2024-03-06T14:43:22Z"},"body":"Code.printMarkdown outputs the minimum number of backticks that reproduces the content, and adds spaces on either side if necessary.\r\n\r\nRemoved the unused numTicks field. ","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/12/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/12/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/14","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/14/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/14/events","html_url":"https://github.com/rsc/markdown/pull/14","id":2182534654,"node_id":"PR_kwDOKnFwjc5pbW8-","number":14,"title":"Render reference links in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-03-12T19:38:02Z","updated_at":"2024-03-14T18:43:15Z","closed_at":"2024-03-14T18:41:54Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/14","html_url":"https://github.com/rsc/markdown/pull/14","diff_url":"https://github.com/rsc/markdown/pull/14.diff","patch_url":"https://github.com/rsc/markdown/pull/14.patch","merged_at":null},"body":"Attempting to address #13: correctly render reference links ([full], [collapsed], [shortcut]) in Markdown.\r\n\r\n[full]: https://spec.commonmark.org/0.31.2/#full-reference-link\r\n[collapsed]: https://spec.commonmark.org/0.31.2/#collapsed-reference-link\r\n[shortcut]: https://spec.commonmark.org/0.31.2/#shortcut-reference-link","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/14/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/14/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/15","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/15/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/15/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/15/events","html_url":"https://github.com/rsc/markdown/pull/15","id":2187046263,"node_id":"PR_kwDOKnFwjc5pqvgm","number":15,"title":"Render reference links in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-03-14T18:45:13Z","updated_at":"2024-03-14T18:45:13Z","closed_at":null,"author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/15","html_url":"https://github.com/rsc/markdown/pull/15","diff_url":"https://github.com/rsc/markdown/pull/15.diff","patch_url":"https://github.com/rsc/markdown/pull/15.patch","merged_at":null},"body":"Attempting to address #13: correctly render reference links ([full], [collapsed], [shortcut]) in Markdown.\r\n\r\nSorry for the churn (renaming) with #14.\r\n\r\n[full]: https://spec.commonmark.org/0.31.2/#full-reference-link\r\n[collapsed]: https://spec.commonmark.org/0.31.2/#collapsed-reference-link\r\n[shortcut]: https://spec.commonmark.org/0.31.2/#shortcut-reference-link","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/15/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/15/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/13","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/13/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/13/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/13/events","html_url":"https://github.com/rsc/markdown/issues/13","id":2182527101,"node_id":"I_kwDOKnFwjc6CFrh9","number":13,"title":"Correctly render reference links in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-03-12T19:34:33Z","updated_at":"2024-04-14T22:51:33Z","closed_at":null,"author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"Putting the following [reference links] through mdfmt, the output should equal the input:\r\n\r\n```none\r\n[full][full]\r\n[collapsed][]\r\n[shortcut]\r\n\r\n[collapsed]: u2\r\n[full]: u1\r\n[shortcut]: u3\r\n```\r\n\r\nCurrently, mdfmt renders all three link styles inline... while keeping the original link reference definitions:\r\n\r\n```none\r\n[full](u1)\r\n[collapsed](u2)\r\n[shortcut](u3)\r\n\r\n[collapsed]: u2\r\n[full]: u1\r\n[shortcut]: u3\r\n```\r\n\r\n[reference links]: https://spec.commonmark.org/0.31.2/#reference-link","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/13/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/13/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/16","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/16/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/16/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/16/events","html_url":"https://github.com/rsc/markdown/issues/16","id":2189605425,"node_id":"I_kwDOKnFwjc6Cgrox","number":16,"title":"I'd like to get pretty-printed tables","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-03-15T23:24:56Z","updated_at":"2024-06-03T21:56:44Z","closed_at":"2024-06-03T21:56:43Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"I like my tables to look something like:\r\n\r\n```none\r\n| foo col | bar col | baz col |\r\n| :------ | :-----: | ------: |\r\n| 1 | 2 | 3 |\r\n| a | b | c |\r\n```\r\n\r\nwith each column's cells padded to fit the max width of that column and match the column's alignment.\r\n\r\nI'll be doing a PR for this. Can mdfmt turn on the Table option in the parser by default, or with a flag?","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/16/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/16/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/rsc/markdown/issues/17","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/17/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/17/events","html_url":"https://github.com/rsc/markdown/pull/17","id":2189605911,"node_id":"PR_kwDOKnFwjc5pzlwt","number":17,"title":"Pretty-print tables in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2024-03-15T23:25:47Z","updated_at":"2024-06-04T01:56:31Z","closed_at":"2024-06-03T21:56:31Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/17","html_url":"https://github.com/rsc/markdown/pull/17","diff_url":"https://github.com/rsc/markdown/pull/17.diff","patch_url":"https://github.com/rsc/markdown/pull/17.patch","merged_at":null},"body":"Addressing #16.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/17/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/18","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/18/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/18/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/18/events","html_url":"https://github.com/rsc/markdown/pull/18","id":2276848742,"node_id":"PR_kwDOKnFwjc5ubgV0","number":18,"title":"markdown: emit Info in CodeBlock markdown","user":{"login":"juliaogris","id":1596871,"node_id":"MDQ6VXNlcjE1OTY4NzE=","avatar_url":"https://avatars.githubusercontent.com/u/1596871?v=4","gravatar_id":"","url":"https://api.github.com/users/juliaogris","html_url":"https://github.com/juliaogris","followers_url":"https://api.github.com/users/juliaogris/followers","following_url":"https://api.github.com/users/juliaogris/following{/other_user}","gists_url":"https://api.github.com/users/juliaogris/gists{/gist_id}","starred_url":"https://api.github.com/users/juliaogris/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/juliaogris/subscriptions","organizations_url":"https://api.github.com/users/juliaogris/orgs","repos_url":"https://api.github.com/users/juliaogris/repos","events_url":"https://api.github.com/users/juliaogris/events{/privacy}","received_events_url":"https://api.github.com/users/juliaogris/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2024-05-03T03:59:00Z","updated_at":"2024-06-04T02:57:22Z","closed_at":"2024-06-03T21:40:04Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/18","html_url":"https://github.com/rsc/markdown/pull/18","diff_url":"https://github.com/rsc/markdown/pull/18.diff","patch_url":"https://github.com/rsc/markdown/pull/18.patch","merged_at":"2024-06-03T21:40:04Z"},"body":"Emit the Info field of CodeBlock in the CodeBlock.printMardown function so \r\nthat a round trip from markdown to markdown will preserve the language Info.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/18/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/18/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]162 25415 GET https://api.github.com/repos/rsc/markdown/issues/comments?direction=asc&page=1&sort=updated HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:17 GMT Etag: W/"74dc6eb79d30b30e3f7c1193326f3eb119f07ed0ff9cf97206df972912b33e98" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2E428:2F1DE8A:66636299 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4998 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 2 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/1852808662","html_url":"https://github.com/rsc/markdown/issues/3#issuecomment-1852808662","issue_url":"https://api.github.com/repos/rsc/markdown/issues/3","id":1852808662,"node_id":"IC_kwDOKnFwjc5ub53W","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"created_at":"2023-12-12T21:04:04Z","updated_at":"2023-12-12T21:04:04Z","author_association":"NONE","body":"This is a duplicate of #5 ","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/1852808662/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/1852919031","html_url":"https://github.com/rsc/markdown/issues/5#issuecomment-1852919031","issue_url":"https://api.github.com/repos/rsc/markdown/issues/5","id":1852919031,"node_id":"IC_kwDOKnFwjc5ucUz3","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2023-12-12T22:33:06Z","updated_at":"2023-12-12T22:33:06Z","author_association":"OWNER","body":"I think this bug was specifically only colon. If you find others let me know.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/1852919031/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/1854409176","html_url":"https://github.com/rsc/markdown/issues/5#issuecomment-1854409176","issue_url":"https://api.github.com/repos/rsc/markdown/issues/5","id":1854409176,"node_id":"IC_kwDOKnFwjc5uiAnY","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"created_at":"2023-12-13T17:24:40Z","updated_at":"2023-12-13T17:24:40Z","author_association":"NONE","body":"It's also showing up with ~. Running the program again, I get\r\n\r\n```\r\nmarkdown:\r\n<p><a href=\"https://web.site:8080/\">https://web.site:8080/</a>~matloob</p>\r\n\r\n\r\ngoldmark:\r\n<p><a href=\"https://web.site:8080/~matloob\">https://web.site:8080/~matloob</a></p>\r\n\r\n```\r\n\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/1854409176/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/1854835554","html_url":"https://github.com/rsc/markdown/issues/8#issuecomment-1854835554","issue_url":"https://api.github.com/repos/rsc/markdown/issues/8","id":1854835554,"node_id":"IC_kwDOKnFwjc5ujoti","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2023-12-13T23:09:07Z","updated_at":"2023-12-13T23:10:07Z","author_association":"OWNER","body":"The spec is full of lies:\r\n\r\n| input | GitHub |\r\n| - | - |\r\n`xhttps://go.dev` | xhttps://go.dev\r\n`0https://go.dev` | 0https://go.dev\r\n`%https://go.dev` | %https://go.dev\r\n`αhttps://go.dev` | αhttps://go.dev\r\n`[https://go.dev` | [https://go.dev\r\n`\\[https://go.dev` | \\[https://go.dev\r\n\r\nIt is pretty funny that you can have an autolink after a 0 or α or % but not [.\r\n\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/1854835554/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/1854837832","html_url":"https://github.com/rsc/markdown/issues/8#issuecomment-1854837832","issue_url":"https://api.github.com/repos/rsc/markdown/issues/8","id":1854837832,"node_id":"IC_kwDOKnFwjc5ujpRI","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2023-12-13T23:11:43Z","updated_at":"2023-12-13T23:13:09Z","author_association":"OWNER","body":"How many of these did you find? I am inclined to leave [https://go.dev] auto-linking, unless people have adopted an idiom of writing [url] to mean \"do not link\".\r\n\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/1854837832/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/1856133592","html_url":"https://github.com/rsc/markdown/issues/8#issuecomment-1856133592","issue_url":"https://api.github.com/repos/rsc/markdown/issues/8","id":1856133592,"node_id":"IC_kwDOKnFwjc5uolnY","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"created_at":"2023-12-14T16:11:41Z","updated_at":"2023-12-14T16:11:41Z","author_association":"NONE","body":"I think I saw just one or two on the sample I looked at. I'm okay with leaving this as is","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/1856133592/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/1856151124","html_url":"https://github.com/rsc/markdown/issues/8#issuecomment-1856151124","issue_url":"https://api.github.com/repos/rsc/markdown/issues/8","id":1856151124,"node_id":"IC_kwDOKnFwjc5uop5U","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2023-12-14T16:21:54Z","updated_at":"2023-12-14T16:21:54Z","author_association":"OWNER","body":"Please reopen if anything changes.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/1856151124/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/1894927765","html_url":"https://github.com/rsc/markdown/pull/10#issuecomment-1894927765","issue_url":"https://api.github.com/repos/rsc/markdown/issues/10","id":1894927765,"node_id":"IC_kwDOKnFwjc5w8k2V","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-01-17T04:39:59Z","updated_at":"2024-01-17T04:39:59Z","author_association":"OWNER","body":"Cleaned up (gofmt'ed) and pushed.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/1894927765/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/1894929190","html_url":"https://github.com/rsc/markdown/pull/11#issuecomment-1894929190","issue_url":"https://api.github.com/repos/rsc/markdown/issues/11","id":1894929190,"node_id":"IC_kwDOKnFwjc5w8lMm","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-01-17T04:41:48Z","updated_at":"2024-01-17T04:41:48Z","author_association":"OWNER","body":"Reworded commit and pushed.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/1894929190/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2097019306","html_url":"https://github.com/rsc/markdown/pull/18#issuecomment-2097019306","issue_url":"https://api.github.com/repos/rsc/markdown/issues/18","id":2097019306,"node_id":"IC_kwDOKnFwjc58_fmq","user":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"created_at":"2024-05-06T22:16:58Z","updated_at":"2024-05-06T22:16:58Z","author_association":"COLLABORATOR","body":"LGTM, will let Russ approve.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2097019306/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146194573","html_url":"https://github.com/rsc/markdown/pull/17#issuecomment-2146194573","issue_url":"https://api.github.com/repos/rsc/markdown/issues/17","id":2146194573,"node_id":"IC_kwDOKnFwjc5_7FSN","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-06-03T21:56:31Z","updated_at":"2024-06-03T21:56:31Z","author_association":"OWNER","body":"Thanks, I tweaked the code a bit to avoid some temporary strings and to support Unicode better and merged it.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146194573/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146194902","html_url":"https://github.com/rsc/markdown/issues/16#issuecomment-2146194902","issue_url":"https://api.github.com/repos/rsc/markdown/issues/16","id":2146194902,"node_id":"IC_kwDOKnFwjc5_7FXW","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-06-03T21:56:43Z","updated_at":"2024-06-03T21:56:43Z","author_association":"OWNER","body":"Merged #17.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146194902/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146197528","html_url":"https://github.com/rsc/markdown/issues/19#issuecomment-2146197528","issue_url":"https://api.github.com/repos/rsc/markdown/issues/19","id":2146197528,"node_id":"IC_kwDOKnFwjc5_7GAY","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-06-03T21:58:35Z","updated_at":"2024-06-03T21:58:35Z","author_association":"OWNER","body":"Is the GitHub algorithm for turning heading text into anchor IDs documented somewhere?\r\nI don't mind adding it as an option if I can find the spec.\r\nNot sure about two choices, but one automatic choice would be good.\r\n(GitHub actually supports any casing at all: https://github.com/golang/tools/blob/master/gopls/doc/settings.md#DiAgNoStIc\r\nClearly JS is doing that.)\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146197528/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146421109","html_url":"https://github.com/rsc/markdown/pull/17#issuecomment-2146421109","issue_url":"https://api.github.com/repos/rsc/markdown/issues/17","id":2146421109,"node_id":"IC_kwDOKnFwjc5_78l1","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"created_at":"2024-06-04T01:56:30Z","updated_at":"2024-06-04T01:56:30Z","author_association":"CONTRIBUTOR","body":"@rsc, thank you for the comment and the changes. I've fixed the Unicode-vs-string error in other code bases, can't believe I missed that :) I also see what you did to obviate the temp strings. Thanks!","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146421109/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274","html_url":"https://github.com/rsc/markdown/pull/18#issuecomment-2146475274","issue_url":"https://api.github.com/repos/rsc/markdown/issues/18","id":2146475274,"node_id":"IC_kwDOKnFwjc5_8J0K","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-06-04T02:57:21Z","updated_at":"2024-06-04T02:57:21Z","author_association":"OWNER","body":"Thanks very much!\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}]146 145393 GET https://api.github.com/repos/rsc/markdown/issues/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:17 GMT Etag: W/"a8a12ec8651193f7b881138a7a76862649e9ff412152b44cf0f62c6a3e519d93" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2E51F:2F1E02D:66636299 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4997 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 3 X-Xss-Protection: 0 [{"id":13028910702,"node_id":"SE_lADOKnFwjc6CgrwXzwAAAAMIlWZu","url":"https://api.github.com/repos/rsc/markdown/issues/events/13028910702","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2024-06-04T01:56:31Z","issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/17","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/17/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/17/events","html_url":"https://github.com/rsc/markdown/pull/17","id":2189605911,"node_id":"PR_kwDOKnFwjc5pzlwt","number":17,"title":"Pretty-print tables in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2024-03-15T23:25:47Z","updated_at":"2024-06-04T01:56:31Z","closed_at":"2024-06-03T21:56:31Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/17","html_url":"https://github.com/rsc/markdown/pull/17","diff_url":"https://github.com/rsc/markdown/pull/17.diff","patch_url":"https://github.com/rsc/markdown/pull/17.patch","merged_at":null},"body":"Addressing #16.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/17/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":13028910699,"node_id":"MEE_lADOKnFwjc6CgrwXzwAAAAMIlWZr","url":"https://api.github.com/repos/rsc/markdown/issues/events/13028910699","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2024-06-04T01:56:31Z","issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/17","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/17/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/17/events","html_url":"https://github.com/rsc/markdown/pull/17","id":2189605911,"node_id":"PR_kwDOKnFwjc5pzlwt","number":17,"title":"Pretty-print tables in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2024-03-15T23:25:47Z","updated_at":"2024-06-04T01:56:31Z","closed_at":"2024-06-03T21:56:31Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/17","html_url":"https://github.com/rsc/markdown/pull/17","diff_url":"https://github.com/rsc/markdown/pull/17.diff","patch_url":"https://github.com/rsc/markdown/pull/17.patch","merged_at":null},"body":"Addressing #16.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/17/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":13027435265,"node_id":"CE_lADOKnFwjc6CgroxzwAAAAMIfuMB","url":"https://api.github.com/repos/rsc/markdown/issues/events/13027435265","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2024-06-03T21:56:43Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/16","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/16/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/16/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/16/events","html_url":"https://github.com/rsc/markdown/issues/16","id":2189605425,"node_id":"I_kwDOKnFwjc6Cgrox","number":16,"title":"I'd like to get pretty-printed tables","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-03-15T23:24:56Z","updated_at":"2024-06-03T21:56:44Z","closed_at":"2024-06-03T21:56:43Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"I like my tables to look something like:\r\n\r\n```none\r\n| foo col | bar col | baz col |\r\n| :------ | :-----: | ------: |\r\n| 1 | 2 | 3 |\r\n| a | b | c |\r\n```\r\n\r\nwith each column's cells padded to fit the max width of that column and match the column's alignment.\r\n\r\nI'll be doing a PR for this. Can mdfmt turn on the Table option in the parser by default, or with a flag?","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/16/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/16/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":13027432818,"node_id":"CE_lADOKnFwjc6CgrwXzwAAAAMIftly","url":"https://api.github.com/repos/rsc/markdown/issues/events/13027432818","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2024-06-03T21:56:31Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/17","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/17/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/17/events","html_url":"https://github.com/rsc/markdown/pull/17","id":2189605911,"node_id":"PR_kwDOKnFwjc5pzlwt","number":17,"title":"Pretty-print tables in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2024-03-15T23:25:47Z","updated_at":"2024-06-04T01:56:31Z","closed_at":"2024-06-03T21:56:31Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/17","html_url":"https://github.com/rsc/markdown/pull/17","diff_url":"https://github.com/rsc/markdown/pull/17.diff","patch_url":"https://github.com/rsc/markdown/pull/17.patch","merged_at":null},"body":"Addressing #16.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/17/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":13027289466,"node_id":"REFE_lADOKnFwjc6HtfRmzwAAAAMIfKl6","url":"https://api.github.com/repos/rsc/markdown/issues/events/13027289466","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"6c64a5ea723ad6221796001b8e226bfed2a9255e","commit_url":"https://api.github.com/repos/rsc/markdown/commits/6c64a5ea723ad6221796001b8e226bfed2a9255e","created_at":"2024-06-03T21:40:05Z","issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/18","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/18/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/18/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/18/events","html_url":"https://github.com/rsc/markdown/pull/18","id":2276848742,"node_id":"PR_kwDOKnFwjc5ubgV0","number":18,"title":"markdown: emit Info in CodeBlock markdown","user":{"login":"juliaogris","id":1596871,"node_id":"MDQ6VXNlcjE1OTY4NzE=","avatar_url":"https://avatars.githubusercontent.com/u/1596871?v=4","gravatar_id":"","url":"https://api.github.com/users/juliaogris","html_url":"https://github.com/juliaogris","followers_url":"https://api.github.com/users/juliaogris/followers","following_url":"https://api.github.com/users/juliaogris/following{/other_user}","gists_url":"https://api.github.com/users/juliaogris/gists{/gist_id}","starred_url":"https://api.github.com/users/juliaogris/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/juliaogris/subscriptions","organizations_url":"https://api.github.com/users/juliaogris/orgs","repos_url":"https://api.github.com/users/juliaogris/repos","events_url":"https://api.github.com/users/juliaogris/events{/privacy}","received_events_url":"https://api.github.com/users/juliaogris/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2024-05-03T03:59:00Z","updated_at":"2024-06-04T02:57:22Z","closed_at":"2024-06-03T21:40:04Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/18","html_url":"https://github.com/rsc/markdown/pull/18","diff_url":"https://github.com/rsc/markdown/pull/18.diff","patch_url":"https://github.com/rsc/markdown/pull/18.patch","merged_at":"2024-06-03T21:40:04Z"},"body":"Emit the Info field of CodeBlock in the CodeBlock.printMardown function so \r\nthat a round trip from markdown to markdown will preserve the language Info.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/18/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/18/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":13027289270,"node_id":"CE_lADOKnFwjc6HtfRmzwAAAAMIfKi2","url":"https://api.github.com/repos/rsc/markdown/issues/events/13027289270","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2024-06-03T21:40:04Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/18","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/18/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/18/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/18/events","html_url":"https://github.com/rsc/markdown/pull/18","id":2276848742,"node_id":"PR_kwDOKnFwjc5ubgV0","number":18,"title":"markdown: emit Info in CodeBlock markdown","user":{"login":"juliaogris","id":1596871,"node_id":"MDQ6VXNlcjE1OTY4NzE=","avatar_url":"https://avatars.githubusercontent.com/u/1596871?v=4","gravatar_id":"","url":"https://api.github.com/users/juliaogris","html_url":"https://github.com/juliaogris","followers_url":"https://api.github.com/users/juliaogris/followers","following_url":"https://api.github.com/users/juliaogris/following{/other_user}","gists_url":"https://api.github.com/users/juliaogris/gists{/gist_id}","starred_url":"https://api.github.com/users/juliaogris/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/juliaogris/subscriptions","organizations_url":"https://api.github.com/users/juliaogris/orgs","repos_url":"https://api.github.com/users/juliaogris/repos","events_url":"https://api.github.com/users/juliaogris/events{/privacy}","received_events_url":"https://api.github.com/users/juliaogris/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2024-05-03T03:59:00Z","updated_at":"2024-06-04T02:57:22Z","closed_at":"2024-06-03T21:40:04Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/18","html_url":"https://github.com/rsc/markdown/pull/18","diff_url":"https://github.com/rsc/markdown/pull/18.diff","patch_url":"https://github.com/rsc/markdown/pull/18.patch","merged_at":"2024-06-03T21:40:04Z"},"body":"Emit the Info field of CodeBlock in the CodeBlock.printMardown function so \r\nthat a round trip from markdown to markdown will preserve the language Info.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/18/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/18/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":13027289256,"node_id":"ME_lADOKnFwjc6HtfRmzwAAAAMIfKio","url":"https://api.github.com/repos/rsc/markdown/issues/events/13027289256","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"6c64a5ea723ad6221796001b8e226bfed2a9255e","commit_url":"https://api.github.com/repos/rsc/markdown/commits/6c64a5ea723ad6221796001b8e226bfed2a9255e","created_at":"2024-06-03T21:40:04Z","issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/18","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/18/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/18/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/18/events","html_url":"https://github.com/rsc/markdown/pull/18","id":2276848742,"node_id":"PR_kwDOKnFwjc5ubgV0","number":18,"title":"markdown: emit Info in CodeBlock markdown","user":{"login":"juliaogris","id":1596871,"node_id":"MDQ6VXNlcjE1OTY4NzE=","avatar_url":"https://avatars.githubusercontent.com/u/1596871?v=4","gravatar_id":"","url":"https://api.github.com/users/juliaogris","html_url":"https://github.com/juliaogris","followers_url":"https://api.github.com/users/juliaogris/followers","following_url":"https://api.github.com/users/juliaogris/following{/other_user}","gists_url":"https://api.github.com/users/juliaogris/gists{/gist_id}","starred_url":"https://api.github.com/users/juliaogris/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/juliaogris/subscriptions","organizations_url":"https://api.github.com/users/juliaogris/orgs","repos_url":"https://api.github.com/users/juliaogris/repos","events_url":"https://api.github.com/users/juliaogris/events{/privacy}","received_events_url":"https://api.github.com/users/juliaogris/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2024-05-03T03:59:00Z","updated_at":"2024-06-04T02:57:22Z","closed_at":"2024-06-03T21:40:04Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/18","html_url":"https://github.com/rsc/markdown/pull/18","diff_url":"https://github.com/rsc/markdown/pull/18.diff","patch_url":"https://github.com/rsc/markdown/pull/18.patch","merged_at":"2024-06-03T21:40:04Z"},"body":"Emit the Info field of CodeBlock in the CodeBlock.printMardown function so \r\nthat a round trip from markdown to markdown will preserve the language Info.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/18/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/18/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":12721108829,"node_id":"RRE_lADOKnFwjc6HtfRmzwAAAAL2PLdd","url":"https://api.github.com/repos/rsc/markdown/issues/events/12721108829","actor":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"event":"review_requested","commit_id":null,"commit_url":null,"created_at":"2024-05-06T22:16:49Z","review_requester":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"requested_reviewer":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/18","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/18/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/18/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/18/events","html_url":"https://github.com/rsc/markdown/pull/18","id":2276848742,"node_id":"PR_kwDOKnFwjc5ubgV0","number":18,"title":"markdown: emit Info in CodeBlock markdown","user":{"login":"juliaogris","id":1596871,"node_id":"MDQ6VXNlcjE1OTY4NzE=","avatar_url":"https://avatars.githubusercontent.com/u/1596871?v=4","gravatar_id":"","url":"https://api.github.com/users/juliaogris","html_url":"https://github.com/juliaogris","followers_url":"https://api.github.com/users/juliaogris/followers","following_url":"https://api.github.com/users/juliaogris/following{/other_user}","gists_url":"https://api.github.com/users/juliaogris/gists{/gist_id}","starred_url":"https://api.github.com/users/juliaogris/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/juliaogris/subscriptions","organizations_url":"https://api.github.com/users/juliaogris/orgs","repos_url":"https://api.github.com/users/juliaogris/repos","events_url":"https://api.github.com/users/juliaogris/events{/privacy}","received_events_url":"https://api.github.com/users/juliaogris/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2024-05-03T03:59:00Z","updated_at":"2024-06-04T02:57:22Z","closed_at":"2024-06-03T21:40:04Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/18","html_url":"https://github.com/rsc/markdown/pull/18","diff_url":"https://github.com/rsc/markdown/pull/18.diff","patch_url":"https://github.com/rsc/markdown/pull/18.patch","merged_at":"2024-06-03T21:40:04Z"},"body":"Emit the Info field of CodeBlock in the CodeBlock.printMardown function so \r\nthat a round trip from markdown to markdown will preserve the language Info.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/18/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/18/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":12137688071,"node_id":"RTE_lADOKnFwjc6CgrwXzwAAAALTdmwH","url":"https://api.github.com/repos/rsc/markdown/issues/events/12137688071","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2024-03-15T23:43:50Z","rename":{"from":"Pretty-print tables","to":"Pretty-print tables in Markdown"},"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/17","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/17/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/17/events","html_url":"https://github.com/rsc/markdown/pull/17","id":2189605911,"node_id":"PR_kwDOKnFwjc5pzlwt","number":17,"title":"Pretty-print tables in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2024-03-15T23:25:47Z","updated_at":"2024-06-04T01:56:31Z","closed_at":"2024-06-03T21:56:31Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/17","html_url":"https://github.com/rsc/markdown/pull/17","diff_url":"https://github.com/rsc/markdown/pull/17.diff","patch_url":"https://github.com/rsc/markdown/pull/17.patch","merged_at":null},"body":"Addressing #16.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/17/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":12137686933,"node_id":"RTE_lADOKnFwjc6CgrwXzwAAAALTdmeV","url":"https://api.github.com/repos/rsc/markdown/issues/events/12137686933","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2024-03-15T23:43:26Z","rename":{"from":"Tables are pretty printing","to":"Pretty-print tables"},"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/17","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/17/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/17/events","html_url":"https://github.com/rsc/markdown/pull/17","id":2189605911,"node_id":"PR_kwDOKnFwjc5pzlwt","number":17,"title":"Pretty-print tables in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2024-03-15T23:25:47Z","updated_at":"2024-06-04T01:56:31Z","closed_at":"2024-06-03T21:56:31Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/17","html_url":"https://github.com/rsc/markdown/pull/17","diff_url":"https://github.com/rsc/markdown/pull/17.diff","patch_url":"https://github.com/rsc/markdown/pull/17.patch","merged_at":null},"body":"Addressing #16.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/17/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":12122508555,"node_id":"HRDE_lADOKnFwjc6CFtX-zwAAAALSjs0L","url":"https://api.github.com/repos/rsc/markdown/issues/events/12122508555","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2024-03-14T18:43:15Z","issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/14","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/14/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/14/events","html_url":"https://github.com/rsc/markdown/pull/14","id":2182534654,"node_id":"PR_kwDOKnFwjc5pbW8-","number":14,"title":"Render reference links in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-03-12T19:38:02Z","updated_at":"2024-03-14T18:43:15Z","closed_at":"2024-03-14T18:41:54Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/14","html_url":"https://github.com/rsc/markdown/pull/14","diff_url":"https://github.com/rsc/markdown/pull/14.diff","patch_url":"https://github.com/rsc/markdown/pull/14.patch","merged_at":null},"body":"Attempting to address #13: correctly render reference links ([full], [collapsed], [shortcut]) in Markdown.\r\n\r\n[full]: https://spec.commonmark.org/0.31.2/#full-reference-link\r\n[collapsed]: https://spec.commonmark.org/0.31.2/#collapsed-reference-link\r\n[shortcut]: https://spec.commonmark.org/0.31.2/#shortcut-reference-link","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/14/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/14/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":12122501258,"node_id":"HRRE_lADOKnFwjc6CFtX-zwAAAALSjrCK","url":"https://api.github.com/repos/rsc/markdown/issues/events/12122501258","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"head_ref_restored","commit_id":null,"commit_url":null,"created_at":"2024-03-14T18:42:29Z","issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/14","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/14/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/14/events","html_url":"https://github.com/rsc/markdown/pull/14","id":2182534654,"node_id":"PR_kwDOKnFwjc5pbW8-","number":14,"title":"Render reference links in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-03-12T19:38:02Z","updated_at":"2024-03-14T18:43:15Z","closed_at":"2024-03-14T18:41:54Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/14","html_url":"https://github.com/rsc/markdown/pull/14","diff_url":"https://github.com/rsc/markdown/pull/14.diff","patch_url":"https://github.com/rsc/markdown/pull/14.patch","merged_at":null},"body":"Attempting to address #13: correctly render reference links ([full], [collapsed], [shortcut]) in Markdown.\r\n\r\n[full]: https://spec.commonmark.org/0.31.2/#full-reference-link\r\n[collapsed]: https://spec.commonmark.org/0.31.2/#collapsed-reference-link\r\n[shortcut]: https://spec.commonmark.org/0.31.2/#shortcut-reference-link","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/14/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/14/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":12122495545,"node_id":"HRDE_lADOKnFwjc6CFtX-zwAAAALSjpo5","url":"https://api.github.com/repos/rsc/markdown/issues/events/12122495545","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2024-03-14T18:41:55Z","issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/14","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/14/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/14/events","html_url":"https://github.com/rsc/markdown/pull/14","id":2182534654,"node_id":"PR_kwDOKnFwjc5pbW8-","number":14,"title":"Render reference links in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-03-12T19:38:02Z","updated_at":"2024-03-14T18:43:15Z","closed_at":"2024-03-14T18:41:54Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/14","html_url":"https://github.com/rsc/markdown/pull/14","diff_url":"https://github.com/rsc/markdown/pull/14.diff","patch_url":"https://github.com/rsc/markdown/pull/14.patch","merged_at":null},"body":"Attempting to address #13: correctly render reference links ([full], [collapsed], [shortcut]) in Markdown.\r\n\r\n[full]: https://spec.commonmark.org/0.31.2/#full-reference-link\r\n[collapsed]: https://spec.commonmark.org/0.31.2/#collapsed-reference-link\r\n[shortcut]: https://spec.commonmark.org/0.31.2/#shortcut-reference-link","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/14/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/14/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":12122495521,"node_id":"CE_lADOKnFwjc6CFtX-zwAAAALSjpoh","url":"https://api.github.com/repos/rsc/markdown/issues/events/12122495521","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2024-03-14T18:41:55Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/14","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/14/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/14/events","html_url":"https://github.com/rsc/markdown/pull/14","id":2182534654,"node_id":"PR_kwDOKnFwjc5pbW8-","number":14,"title":"Render reference links in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-03-12T19:38:02Z","updated_at":"2024-03-14T18:43:15Z","closed_at":"2024-03-14T18:41:54Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/14","html_url":"https://github.com/rsc/markdown/pull/14","diff_url":"https://github.com/rsc/markdown/pull/14.diff","patch_url":"https://github.com/rsc/markdown/pull/14.patch","merged_at":null},"body":"Attempting to address #13: correctly render reference links ([full], [collapsed], [shortcut]) in Markdown.\r\n\r\n[full]: https://spec.commonmark.org/0.31.2/#full-reference-link\r\n[collapsed]: https://spec.commonmark.org/0.31.2/#collapsed-reference-link\r\n[shortcut]: https://spec.commonmark.org/0.31.2/#shortcut-reference-link","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/14/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/14/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":12122378461,"node_id":"RTE_lADOKnFwjc6CFrh9zwAAAALSjNDd","url":"https://api.github.com/repos/rsc/markdown/issues/events/12122378461","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2024-03-14T18:29:53Z","rename":{"from":"Links w/labels should render to MD as such","to":"Correctly render reference links in Markdown"},"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/13","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/13/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/13/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/13/events","html_url":"https://github.com/rsc/markdown/issues/13","id":2182527101,"node_id":"I_kwDOKnFwjc6CFrh9","number":13,"title":"Correctly render reference links in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-03-12T19:34:33Z","updated_at":"2024-04-14T22:51:33Z","closed_at":null,"author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"Putting the following [reference links] through mdfmt, the output should equal the input:\r\n\r\n```none\r\n[full][full]\r\n[collapsed][]\r\n[shortcut]\r\n\r\n[collapsed]: u2\r\n[full]: u1\r\n[shortcut]: u3\r\n```\r\n\r\nCurrently, mdfmt renders all three link styles inline... while keeping the original link reference definitions:\r\n\r\n```none\r\n[full](u1)\r\n[collapsed](u2)\r\n[shortcut](u3)\r\n\r\n[collapsed]: u2\r\n[full]: u1\r\n[shortcut]: u3\r\n```\r\n\r\n[reference links]: https://spec.commonmark.org/0.31.2/#reference-link","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/13/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/13/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":12122340938,"node_id":"RTE_lADOKnFwjc6CFtX-zwAAAALSjD5K","url":"https://api.github.com/repos/rsc/markdown/issues/events/12122340938","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2024-03-14T18:26:19Z","rename":{"from":"Render full reference links in Markdown","to":"Render reference links in Markdown"},"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/14","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/14/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/14/events","html_url":"https://github.com/rsc/markdown/pull/14","id":2182534654,"node_id":"PR_kwDOKnFwjc5pbW8-","number":14,"title":"Render reference links in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-03-12T19:38:02Z","updated_at":"2024-03-14T18:43:15Z","closed_at":"2024-03-14T18:41:54Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/14","html_url":"https://github.com/rsc/markdown/pull/14","diff_url":"https://github.com/rsc/markdown/pull/14.diff","patch_url":"https://github.com/rsc/markdown/pull/14.patch","merged_at":null},"body":"Attempting to address #13: correctly render reference links ([full], [collapsed], [shortcut]) in Markdown.\r\n\r\n[full]: https://spec.commonmark.org/0.31.2/#full-reference-link\r\n[collapsed]: https://spec.commonmark.org/0.31.2/#collapsed-reference-link\r\n[shortcut]: https://spec.commonmark.org/0.31.2/#shortcut-reference-link","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/14/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/14/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":12028957676,"node_id":"REFE_lADOKnFwjc5_aUPHzwAAAALM-1Ps","url":"https://api.github.com/repos/rsc/markdown/issues/events/12028957676","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"0bf8f97ee8ef6dc359b2246680d8f48c37da77f1","commit_url":"https://api.github.com/repos/rsc/markdown/commits/0bf8f97ee8ef6dc359b2246680d8f48c37da77f1","created_at":"2024-03-06T14:43:24Z","issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/12","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/12/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/12/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/12/events","html_url":"https://github.com/rsc/markdown/pull/12","id":2137605063,"node_id":"PR_kwDOKnFwjc5nCLz2","number":12,"title":"markdown: fix markdown printing for inline code","user":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-02-15T23:18:12Z","updated_at":"2024-03-06T14:43:22Z","closed_at":"2024-03-06T14:43:22Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/12","html_url":"https://github.com/rsc/markdown/pull/12","diff_url":"https://github.com/rsc/markdown/pull/12.diff","patch_url":"https://github.com/rsc/markdown/pull/12.patch","merged_at":"2024-03-06T14:43:22Z"},"body":"Code.printMarkdown outputs the minimum number of backticks that reproduces the content, and adds spaces on either side if necessary.\r\n\r\nRemoved the unused numTicks field. ","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/12/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/12/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":12028957356,"node_id":"CE_lADOKnFwjc5_aUPHzwAAAALM-1Ks","url":"https://api.github.com/repos/rsc/markdown/issues/events/12028957356","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2024-03-06T14:43:22Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/12","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/12/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/12/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/12/events","html_url":"https://github.com/rsc/markdown/pull/12","id":2137605063,"node_id":"PR_kwDOKnFwjc5nCLz2","number":12,"title":"markdown: fix markdown printing for inline code","user":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-02-15T23:18:12Z","updated_at":"2024-03-06T14:43:22Z","closed_at":"2024-03-06T14:43:22Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/12","html_url":"https://github.com/rsc/markdown/pull/12","diff_url":"https://github.com/rsc/markdown/pull/12.diff","patch_url":"https://github.com/rsc/markdown/pull/12.patch","merged_at":"2024-03-06T14:43:22Z"},"body":"Code.printMarkdown outputs the minimum number of backticks that reproduces the content, and adds spaces on either side if necessary.\r\n\r\nRemoved the unused numTicks field. ","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/12/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/12/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":12028957331,"node_id":"ME_lADOKnFwjc5_aUPHzwAAAALM-1KT","url":"https://api.github.com/repos/rsc/markdown/issues/events/12028957331","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"0bf8f97ee8ef6dc359b2246680d8f48c37da77f1","commit_url":"https://api.github.com/repos/rsc/markdown/commits/0bf8f97ee8ef6dc359b2246680d8f48c37da77f1","created_at":"2024-03-06T14:43:22Z","issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/12","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/12/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/12/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/12/events","html_url":"https://github.com/rsc/markdown/pull/12","id":2137605063,"node_id":"PR_kwDOKnFwjc5nCLz2","number":12,"title":"markdown: fix markdown printing for inline code","user":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-02-15T23:18:12Z","updated_at":"2024-03-06T14:43:22Z","closed_at":"2024-03-06T14:43:22Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/12","html_url":"https://github.com/rsc/markdown/pull/12","diff_url":"https://github.com/rsc/markdown/pull/12.diff","patch_url":"https://github.com/rsc/markdown/pull/12.patch","merged_at":"2024-03-06T14:43:22Z"},"body":"Code.printMarkdown outputs the minimum number of backticks that reproduces the content, and adds spaces on either side if necessary.\r\n\r\nRemoved the unused numTicks field. ","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/12/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/12/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":11942812866,"node_id":"RTE_lADOKnFwjc5_aUPHzwAAAALH2NzC","url":"https://api.github.com/repos/rsc/markdown/issues/events/11942812866","actor":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2024-02-27T20:29:37Z","rename":{"from":"markdown: export Code.NumTicks","to":"markdown: fix markdown printing for inline code"},"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/12","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/12/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/12/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/12/events","html_url":"https://github.com/rsc/markdown/pull/12","id":2137605063,"node_id":"PR_kwDOKnFwjc5nCLz2","number":12,"title":"markdown: fix markdown printing for inline code","user":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-02-15T23:18:12Z","updated_at":"2024-03-06T14:43:22Z","closed_at":"2024-03-06T14:43:22Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/12","html_url":"https://github.com/rsc/markdown/pull/12","diff_url":"https://github.com/rsc/markdown/pull/12.diff","patch_url":"https://github.com/rsc/markdown/pull/12.patch","merged_at":"2024-03-06T14:43:22Z"},"body":"Code.printMarkdown outputs the minimum number of backticks that reproduces the content, and adds spaces on either side if necessary.\r\n\r\nRemoved the unused numTicks field. ","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/12/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/12/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":11942808811,"node_id":"HRFPE_lADOKnFwjc5_aUPHzwAAAALH2Mzr","url":"https://api.github.com/repos/rsc/markdown/issues/events/11942808811","actor":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2024-02-27T20:29:08Z","issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/12","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/12/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/12/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/12/events","html_url":"https://github.com/rsc/markdown/pull/12","id":2137605063,"node_id":"PR_kwDOKnFwjc5nCLz2","number":12,"title":"markdown: fix markdown printing for inline code","user":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-02-15T23:18:12Z","updated_at":"2024-03-06T14:43:22Z","closed_at":"2024-03-06T14:43:22Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/12","html_url":"https://github.com/rsc/markdown/pull/12","diff_url":"https://github.com/rsc/markdown/pull/12.diff","patch_url":"https://github.com/rsc/markdown/pull/12.patch","merged_at":"2024-03-06T14:43:22Z"},"body":"Code.printMarkdown outputs the minimum number of backticks that reproduces the content, and adds spaces on either side if necessary.\r\n\r\nRemoved the unused numTicks field. ","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/12/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/12/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":11822212932,"node_id":"RRE_lADOKnFwjc5_aUPHzwAAAALAqKdE","url":"https://api.github.com/repos/rsc/markdown/issues/events/11822212932","actor":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"event":"review_requested","commit_id":null,"commit_url":null,"created_at":"2024-02-15T23:18:12Z","review_requester":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"requested_reviewer":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/12","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/12/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/12/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/12/events","html_url":"https://github.com/rsc/markdown/pull/12","id":2137605063,"node_id":"PR_kwDOKnFwjc5nCLz2","number":12,"title":"markdown: fix markdown printing for inline code","user":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-02-15T23:18:12Z","updated_at":"2024-03-06T14:43:22Z","closed_at":"2024-03-06T14:43:22Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/12","html_url":"https://github.com/rsc/markdown/pull/12","diff_url":"https://github.com/rsc/markdown/pull/12.diff","patch_url":"https://github.com/rsc/markdown/pull/12.patch","merged_at":"2024-03-06T14:43:22Z"},"body":"Code.printMarkdown outputs the minimum number of backticks that reproduces the content, and adds spaces on either side if necessary.\r\n\r\nRemoved the unused numTicks field. ","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/12/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/12/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":11506369300,"node_id":"CE_lADOKnFwjc57yW0-zwAAAAKt1UMU","url":"https://api.github.com/repos/rsc/markdown/issues/events/11506369300","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2024-01-17T04:41:48Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/11","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/11/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/11/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/11/events","html_url":"https://github.com/rsc/markdown/pull/11","id":2076798270,"node_id":"PR_kwDOKnFwjc5j0LtA","number":11,"title":"render markdown for document link references","user":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-01-11T14:20:56Z","updated_at":"2024-01-17T04:41:48Z","closed_at":"2024-01-17T04:41:48Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/11","html_url":"https://github.com/rsc/markdown/pull/11","diff_url":"https://github.com/rsc/markdown/pull/11.diff","patch_url":"https://github.com/rsc/markdown/pull/11.patch","merged_at":null},"body":null,"reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/11/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/11/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":11506360992,"node_id":"CE_lADOKnFwjc57xsrdzwAAAAKt1SKg","url":"https://api.github.com/repos/rsc/markdown/issues/events/11506360992","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2024-01-17T04:39:59Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/10","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/10/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/10/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/10/events","html_url":"https://github.com/rsc/markdown/pull/10","id":2076625629,"node_id":"PR_kwDOKnFwjc5jzktS","number":10,"title":"fix markdown rendering of headings with IDs","user":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-01-11T13:15:34Z","updated_at":"2024-01-17T04:39:59Z","closed_at":"2024-01-17T04:39:59Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/10","html_url":"https://github.com/rsc/markdown/pull/10","diff_url":"https://github.com/rsc/markdown/pull/10.diff","patch_url":"https://github.com/rsc/markdown/pull/10.patch","merged_at":null},"body":"Move the newline after the heading text to after the ID.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/10/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/10/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":11456466988,"node_id":"RRE_lADOKnFwjc57xsrdzwAAAAKq29As","url":"https://api.github.com/repos/rsc/markdown/issues/events/11456466988","actor":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"event":"review_requested","commit_id":null,"commit_url":null,"created_at":"2024-01-11T13:15:34Z","review_requester":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"requested_reviewer":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/10","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/10/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/10/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/10/events","html_url":"https://github.com/rsc/markdown/pull/10","id":2076625629,"node_id":"PR_kwDOKnFwjc5jzktS","number":10,"title":"fix markdown rendering of headings with IDs","user":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-01-11T13:15:34Z","updated_at":"2024-01-17T04:39:59Z","closed_at":"2024-01-17T04:39:59Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/10","html_url":"https://github.com/rsc/markdown/pull/10","diff_url":"https://github.com/rsc/markdown/pull/10.diff","patch_url":"https://github.com/rsc/markdown/pull/10.patch","merged_at":null},"body":"Move the newline after the heading text to after the ID.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/10/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/10/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":11250194227,"node_id":"CE_lADOKnFwjc55nCn5zwAAAAKekFcz","url":"https://api.github.com/repos/rsc/markdown/issues/events/11250194227","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-12-14T16:21:54Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/8","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/8/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/8/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/8/events","html_url":"https://github.com/rsc/markdown/issues/8","id":2040277497,"node_id":"I_kwDOKnFwjc55nCn5","number":8,"title":"Autolink can't start immediately after `[`","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":4,"created_at":"2023-12-13T18:44:32Z","updated_at":"2023-12-14T16:21:54Z","closed_at":"2023-12-14T16:21:54Z","author_association":"NONE","active_lock_reason":null,"body":"From the [gfm spec](https://github.github.com/gfm/#autolinks-extension): \r\n\r\n> All such recognized autolinks can only come at the beginning of a line, after whitespace, or any of the delimiting characters *, _, ~, and (.\r\n\r\nHere's a go program that runs markdown and goldmark on the following input: https://go.dev/play/p/kTjBshQ82iQ\r\n\r\n```\r\n[https://golang.org]\r\n```\r\nRendered in github as \r\n\r\n[https://golang.org]\r\n\r\nThe output of the program is \r\n\r\n```\r\nmarkdown:\r\n<p>[<a href=\"https://golang.org%5D\">https://golang.org]</a></p>\r\n\r\n\r\ngoldmark:\r\n<p>[https://golang.org]</p>\r\n```","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/8/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/8/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":11241620840,"node_id":"CE_lADOKnFwjc55mu-6zwAAAAKeDYVo","url":"https://api.github.com/repos/rsc/markdown/issues/events/11241620840","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"8c4745966286a677e3545b44150ab7491f2f1548","commit_url":"https://api.github.com/repos/rsc/markdown/commits/8c4745966286a677e3545b44150ab7491f2f1548","created_at":"2023-12-13T23:11:57Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/7","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/7/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/7/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/7/events","html_url":"https://github.com/rsc/markdown/issues/7","id":2040197050,"node_id":"I_kwDOKnFwjc55mu-6","number":7,"title":"Empty column heading not recognized in table","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-12-13T17:45:33Z","updated_at":"2023-12-13T23:11:57Z","closed_at":"2023-12-13T23:11:57Z","author_association":"NONE","active_lock_reason":null,"body":"Here's a program that compares markdown and goldmark on the following input https://go.dev/play/p/kEslff4EyTa\r\n\r\n```\r\n| | Foo | Bar |\r\n| -------- | -------- | -------- |\r\n| a | value1 | value2 |\r\n| b | value3 | value4 |\r\n```\r\n\r\nRendered in github as \r\n| | Foo | Bar |\r\n| -------- | -------- | -------- |\r\n| a | value1 | value2 |\r\n| b | value3 | value4 |\r\n\r\nThe output is\r\n```\r\nmarkdown:\r\n<table>\r\n<thead>\r\n<tr>\r\n<th></th>\r\n<th>Foo</th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td>a</td>\r\n<td>value1</td>\r\n</tr>\r\n<tr>\r\n<td>b</td>\r\n<td>value3</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n\r\ngoldmark:\r\n<table>\r\n<thead>\r\n<tr>\r\n<th></th>\r\n<th>Foo</th>\r\n<th>Bar</th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td>a</td>\r\n<td>value1</td>\r\n<td>value2</td>\r\n</tr>\r\n<tr>\r\n<td>b</td>\r\n<td>value3</td>\r\n<td>value4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n```","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/7/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/7/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":11241620809,"node_id":"CE_lADOKnFwjc55nI9izwAAAAKeDYVJ","url":"https://api.github.com/repos/rsc/markdown/issues/events/11241620809","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"dfcbaf6f71982715482db407f19dd27e944ed227","commit_url":"https://api.github.com/repos/rsc/markdown/commits/dfcbaf6f71982715482db407f19dd27e944ed227","created_at":"2023-12-13T23:11:57Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/9","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/9/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/9/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/9/events","html_url":"https://github.com/rsc/markdown/issues/9","id":2040303458,"node_id":"I_kwDOKnFwjc55nI9i","number":9,"title":"Support escaped `|` in table cells","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-12-13T19:03:40Z","updated_at":"2023-12-13T23:11:57Z","closed_at":"2023-12-13T23:11:57Z","author_association":"NONE","active_lock_reason":null,"body":"Here's a program that runs goldmark and markdown on the following input https://go.dev/play/p/YgApD-obwxL\r\n\r\n```\r\nFoo | Bar\r\n--- | ---\r\nA | a\\\\|b\\\\|c\r\n```\r\n\r\nrendered in github as \r\n\r\nFoo | Bar\r\n--- | ---\r\nA | a\\\\|b\\\\|c\r\n\r\nThe output of the program is \r\n```\r\nmarkdown:\r\n<table>\r\n<thead>\r\n<tr>\r\n<th>Foo</th>\r\n<th>Bar</th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td>A</td>\r\n<td>a\\</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n\r\ngoldmark:\r\n<table>\r\n<thead>\r\n<tr>\r\n<th>Foo</th>\r\n<th>Bar</th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td>A</td>\r\n<td>a\\|b\\|c</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n```","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/9/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/9/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":11239005964,"node_id":"REFE_lADOKnFwjc55gYFyzwAAAAKd5Z8M","url":"https://api.github.com/repos/rsc/markdown/issues/events/11239005964","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"8527271b4049b6d640dcfa6795c398cfeff9c000","commit_url":"https://api.github.com/repos/rsc/markdown/commits/8527271b4049b6d640dcfa6795c398cfeff9c000","created_at":"2023-12-13T17:44:28Z","issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/5","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/5/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/5/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/5/events","html_url":"https://github.com/rsc/markdown/issues/5","id":2038530418,"node_id":"I_kwDOKnFwjc55gYFy","number":5,"title":"Allow `?`, `!`, `.`, `,`, `:,` `*`, `_`, and `~` on the interior of a link","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2023-12-12T20:50:38Z","updated_at":"2023-12-13T17:24:41Z","closed_at":"2023-12-13T03:02:31Z","author_association":"NONE","active_lock_reason":null,"body":"GFM allows `?`, `!`, `.`, `,`, `:,` `*`, `_`, and `~` on the interior of a link: https://github.github.com/gfm/#extended-autolink-path-validation\r\n\r\nHere's a program that compares markdown and goldmark on the following input: https://go.dev/play/p/uLHnavChGYX\r\n\r\n```https://web.site:8080/~matloob```\r\n\r\nWhich is rendered on github as \r\nhttps://web.site:8080/~matloob\r\n\r\nThe output of the program is \r\n```\r\nmarkdown:\r\n<p><a href=\"https://web.site\">https://web.site</a>:8080/~matloob</p>\r\n\r\n\r\ngoldmark:\r\n<p><a href=\"https://web.site:8080/~matloob\">https://web.site:8080/~matloob</a></p>\r\n```","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/5/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/5/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":11230676272,"node_id":"CE_lADOKnFwjc55fzdLzwAAAAKdZoUw","url":"https://api.github.com/repos/rsc/markdown/issues/events/11230676272","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"0ed0e2d57b4d94c109d47593dcaaa40449600da2","commit_url":"https://api.github.com/repos/rsc/markdown/commits/0ed0e2d57b4d94c109d47593dcaaa40449600da2","created_at":"2023-12-13T03:02:32Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/1","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/1/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/1/events","html_url":"https://github.com/rsc/markdown/issues/1","id":2038380363,"node_id":"I_kwDOKnFwjc55fzdL","number":1,"title":"Support Github Emojis","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-12-12T18:57:39Z","updated_at":"2023-12-13T03:02:32Z","closed_at":"2023-12-13T03:02:32Z","author_association":"NONE","active_lock_reason":null,"body":"This is an issue for supporting github emojis, such as `:smile:` for 😄 . There's a github page that gives a mapping of emojis to image file names that we can parse the hex representation out of here: https://api.github.com/emojis.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/1/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/1/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":11230676238,"node_id":"CE_lADOKnFwjc55gikQzwAAAAKdZoUO","url":"https://api.github.com/repos/rsc/markdown/issues/events/11230676238","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"51d9ee0406f8dcc0e992cf51b2b37957107dbfd6","commit_url":"https://api.github.com/repos/rsc/markdown/commits/51d9ee0406f8dcc0e992cf51b2b37957107dbfd6","created_at":"2023-12-13T03:02:32Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/6","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/6/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/6/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/6/events","html_url":"https://github.com/rsc/markdown/issues/6","id":2038573328,"node_id":"I_kwDOKnFwjc55gikQ","number":6,"title":"goldmark and markdown diff with h1 inside p","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-12-12T21:26:15Z","updated_at":"2023-12-13T03:02:32Z","closed_at":"2023-12-13T03:02:32Z","author_association":"NONE","active_lock_reason":null,"body":"Here's a program that runs goldmark and markdown on the following input: https://go.dev/play/p/rTnPTxps_zw\r\n\r\n```\r\n<p align=\"center\">\r\n\r\n<h1>Text</h1>\r\nbody\r\n</p>\r\n```\r\n\r\nIt's hard for me to tell exactly what github is doing with this input, but it doesn't seem like it's putting the h1 into a p:\r\n\r\n<p align=\"center\">\r\n\r\n<h1>Text</h1>\r\nbody\r\n</p>\r\n\r\nHere's the output of the program:\r\n```\r\nmarkdown:\r\n<p align=\"center\">\r\n<p><h1>Text</h1>\r\nbody</p>\r\n</p>\r\n\r\n\r\ngoldmark:\r\n<p align=\"center\">\r\n<h1>Text</h1>\r\nbody\r\n</p>\r\n```","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/6/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/6/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":11230676200,"node_id":"CE_lADOKnFwjc55gYFyzwAAAAKdZoTo","url":"https://api.github.com/repos/rsc/markdown/issues/events/11230676200","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"4b85f2bd9fc3260214381f9a5e2df00ff9c20df9","commit_url":"https://api.github.com/repos/rsc/markdown/commits/4b85f2bd9fc3260214381f9a5e2df00ff9c20df9","created_at":"2023-12-13T03:02:31Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/5","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/5/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/5/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/5/events","html_url":"https://github.com/rsc/markdown/issues/5","id":2038530418,"node_id":"I_kwDOKnFwjc55gYFy","number":5,"title":"Allow `?`, `!`, `.`, `,`, `:,` `*`, `_`, and `~` on the interior of a link","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2023-12-12T20:50:38Z","updated_at":"2023-12-13T17:24:41Z","closed_at":"2023-12-13T03:02:31Z","author_association":"NONE","active_lock_reason":null,"body":"GFM allows `?`, `!`, `.`, `,`, `:,` `*`, `_`, and `~` on the interior of a link: https://github.github.com/gfm/#extended-autolink-path-validation\r\n\r\nHere's a program that compares markdown and goldmark on the following input: https://go.dev/play/p/uLHnavChGYX\r\n\r\n```https://web.site:8080/~matloob```\r\n\r\nWhich is rendered on github as \r\nhttps://web.site:8080/~matloob\r\n\r\nThe output of the program is \r\n```\r\nmarkdown:\r\n<p><a href=\"https://web.site\">https://web.site</a>:8080/~matloob</p>\r\n\r\n\r\ngoldmark:\r\n<p><a href=\"https://web.site:8080/~matloob\">https://web.site:8080/~matloob</a></p>\r\n```","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/5/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/5/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":11230676181,"node_id":"REFE_lADOKnFwjc55gTTPzwAAAAKdZoTV","url":"https://api.github.com/repos/rsc/markdown/issues/events/11230676181","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"4b85f2bd9fc3260214381f9a5e2df00ff9c20df9","commit_url":"https://api.github.com/repos/rsc/markdown/commits/4b85f2bd9fc3260214381f9a5e2df00ff9c20df9","created_at":"2023-12-13T03:02:31Z","issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/3","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/3/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/3/events","html_url":"https://github.com/rsc/markdown/issues/3","id":2038510799,"node_id":"I_kwDOKnFwjc55gTTP","number":3,"title":"support : in autolinks","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-12-12T20:34:03Z","updated_at":"2023-12-12T21:04:04Z","closed_at":"2023-12-12T21:04:04Z","author_association":"NONE","active_lock_reason":null,"body":"Edit: it looks like github does treat https://localhost as an autolink even though the GFM spec says a valid domain must have at least one dot. We should support https://localhost:8080\r\n\r\nProgram running goldmark and markdown on input: https://go.dev/play/p/FCJ0gp84YZQ\r\n\r\n```\r\nhttps://localhost:8080\r\n```\r\n\r\noutput is ```\r\nmarkdown:\r\n<p><a href=\"https://localhost\">https://localhost</a>:8080</p>\r\n\r\n\r\ngoldmark:\r\n<p>https://localhost:8080</p>\r\n```\r\n\r\nIt looks like goldmark is doing the wrong thing here but we should handle the :8080\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/3/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/3/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":11230676170,"node_id":"CE_lADOKnFwjc55gV-CzwAAAAKdZoTK","url":"https://api.github.com/repos/rsc/markdown/issues/events/11230676170","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"4468a1ed4300a71fdd3ce2906cd3dc7a2371a625","commit_url":"https://api.github.com/repos/rsc/markdown/commits/4468a1ed4300a71fdd3ce2906cd3dc7a2371a625","created_at":"2023-12-13T03:02:31Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/4","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/4/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/4/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/4/events","html_url":"https://github.com/rsc/markdown/issues/4","id":2038521730,"node_id":"I_kwDOKnFwjc55gV-C","number":4,"title":"Replace newlines with spaces in alt text","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-12-12T20:43:15Z","updated_at":"2023-12-13T03:02:31Z","closed_at":"2023-12-13T03:02:31Z","author_association":"NONE","active_lock_reason":null,"body":"Here's a go program that runs markdown and goldmark on the following input: https://go.dev/play/p/zZ0vWAgKB0c:\r\n\r\n```\r\n[![Line\r\nBreak](https://line.break/image)](https://line.break)\r\n```\r\n\r\nWhich is rendered on github with a space instead of the newline in the alt text:\r\n\r\n```\r\n<p dir=\"auto\"><a href=\"https://line.break\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/743b6218bc25f78b5f7f654f1ce773766351a2e3605cf8b47c60659055c218ac/68747470733a2f2f6c696e652e627265616b2f696d616765\" alt=\"Line Break\" data-canonical-src=\"https://line.break/image\" style=\"max-width: 100%;\"></a></p>\r\n```\r\n\r\nThe output is \r\n```\r\nmarkdown:\r\n<p><a href=\"https://line.break\"><img src=\"https://line.break/image\" alt=\"LineBreak\" /></a></p>\r\n\r\n\r\ngoldmark:\r\n<p><a href=\"https://line.break\"><img src=\"https://line.break/image\" alt=\"Line\r\nBreak\" /></a></p>\r\n```\r\n\r\nIt seems like goldmark's behavior is also different from github's as goldmark preserves the line break.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/4/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/4/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":11230676151,"node_id":"CE_lADOKnFwjc55gRQOzwAAAAKdZoS3","url":"https://api.github.com/repos/rsc/markdown/issues/events/11230676151","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"58f2e15c42bf1ce69bbbfa0c81193db5d6e5c814","commit_url":"https://api.github.com/repos/rsc/markdown/commits/58f2e15c42bf1ce69bbbfa0c81193db5d6e5c814","created_at":"2023-12-13T03:02:31Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/2","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/2/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/2/events","html_url":"https://github.com/rsc/markdown/issues/2","id":2038502414,"node_id":"I_kwDOKnFwjc55gRQO","number":2,"title":"allow capital X in task list items","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-12-12T20:28:39Z","updated_at":"2023-12-13T03:02:30Z","closed_at":"2023-12-13T03:02:30Z","author_association":"NONE","active_lock_reason":null,"body":"Here's a go program running goldmark and markdown on the following input: https://go.dev/play/p/fZRthH1dl4B\r\n```\r\n- [X] task list item\r\n```\r\nWhich is rendered on github as:\r\n\r\n- [X] task list item\r\n\r\nIts output is:\r\n```\r\nmarkdown:\r\n<ul>\r\n<li>[X] task list item</li>\r\n</ul>\r\n\r\n\r\ngoldmark:\r\n<ul>\r\n<li><input checked=\"\" disabled=\"\" type=\"checkbox\" /> task list item</li>\r\n</ul>\r\n\r\n```","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/2/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/2/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":11228628324,"node_id":"CE_lADOKnFwjc55gTTPzwAAAAKdR0Vk","url":"https://api.github.com/repos/rsc/markdown/issues/events/11228628324","actor":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-12-12T21:04:04Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/3","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/3/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/3/events","html_url":"https://github.com/rsc/markdown/issues/3","id":2038510799,"node_id":"I_kwDOKnFwjc55gTTP","number":3,"title":"support : in autolinks","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-12-12T20:34:03Z","updated_at":"2023-12-12T21:04:04Z","closed_at":"2023-12-12T21:04:04Z","author_association":"NONE","active_lock_reason":null,"body":"Edit: it looks like github does treat https://localhost as an autolink even though the GFM spec says a valid domain must have at least one dot. We should support https://localhost:8080\r\n\r\nProgram running goldmark and markdown on input: https://go.dev/play/p/FCJ0gp84YZQ\r\n\r\n```\r\nhttps://localhost:8080\r\n```\r\n\r\noutput is ```\r\nmarkdown:\r\n<p><a href=\"https://localhost\">https://localhost</a>:8080</p>\r\n\r\n\r\ngoldmark:\r\n<p>https://localhost:8080</p>\r\n```\r\n\r\nIt looks like goldmark is doing the wrong thing here but we should handle the :8080\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/3/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/3/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":11228615168,"node_id":"RTE_lADOKnFwjc55gTTPzwAAAAKdRxIA","url":"https://api.github.com/repos/rsc/markdown/issues/events/11228615168","actor":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2023-12-12T21:02:28Z","rename":{"from":"require at least one dot in autolink url domains","to":"support : in autolinks"},"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/3","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/3/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/3/events","html_url":"https://github.com/rsc/markdown/issues/3","id":2038510799,"node_id":"I_kwDOKnFwjc55gTTP","number":3,"title":"support : in autolinks","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-12-12T20:34:03Z","updated_at":"2023-12-12T21:04:04Z","closed_at":"2023-12-12T21:04:04Z","author_association":"NONE","active_lock_reason":null,"body":"Edit: it looks like github does treat https://localhost as an autolink even though the GFM spec says a valid domain must have at least one dot. We should support https://localhost:8080\r\n\r\nProgram running goldmark and markdown on input: https://go.dev/play/p/FCJ0gp84YZQ\r\n\r\n```\r\nhttps://localhost:8080\r\n```\r\n\r\noutput is ```\r\nmarkdown:\r\n<p><a href=\"https://localhost\">https://localhost</a>:8080</p>\r\n\r\n\r\ngoldmark:\r\n<p>https://localhost:8080</p>\r\n```\r\n\r\nIt looks like goldmark is doing the wrong thing here but we should handle the :8080\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/3/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/3/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null}]207 3792 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:17 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2E613:2F1E1C7:66636299 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4996 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 4 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]233 2575 GET https://api.github.com/repos/rsc/markdown/issues/1/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"a8a12ec8651193f7b881138a7a76862649e9ff412152b44cf0f62c6a3e519d93" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:17 GMT Etag: W/"409de98c7d6532db9792a98ee51d2a48dad2358f5aec99d1d859312cc7eb04f3" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2E68C:2F1E28A:66636299 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4995 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 5 X-Xss-Protection: 0 [{"id":11230676272,"node_id":"CE_lADOKnFwjc55fzdLzwAAAAKdZoUw","url":"https://api.github.com/repos/rsc/markdown/issues/events/11230676272","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"0ed0e2d57b4d94c109d47593dcaaa40449600da2","commit_url":"https://api.github.com/repos/rsc/markdown/commits/0ed0e2d57b4d94c109d47593dcaaa40449600da2","created_at":"2023-12-13T03:02:32Z","state_reason":null,"performed_via_github_app":null}]207 3792 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:17 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2E705:2F1E362:66636299 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4994 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 6 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]193 2798 GET https://api.github.com/repos/rsc/markdown/issues/comments?direction=asc&page=1&since=2024-06-04T02%3A57%3A21Z&sort=updated HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:18 GMT Etag: W/"2095a7425744aff06a3587ab478cafaf4ff6bf1fcc8c0b97b3b63c16d430595c" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2E782:2F1E424:66636299 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4993 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 7 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274","html_url":"https://github.com/rsc/markdown/pull/18#issuecomment-2146475274","issue_url":"https://api.github.com/repos/rsc/markdown/issues/18","id":2146475274,"node_id":"IC_kwDOKnFwjc5_8J0K","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-06-04T02:57:21Z","updated_at":"2024-06-04T02:57:21Z","author_association":"OWNER","body":"Thanks very much!\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}]207 3792 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:18 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2E7D7:2F1E4DA:6663629A X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4992 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 8 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]233 2575 GET https://api.github.com/repos/rsc/markdown/issues/2/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"a8a12ec8651193f7b881138a7a76862649e9ff412152b44cf0f62c6a3e519d93" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:18 GMT Etag: W/"f3bede22e2afda751bc2c7d53e26aa10e8d38fc3ba9ffb0120168f8c943fa860" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2E860:2F1E5B5:6663629A X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4991 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 9 X-Xss-Protection: 0 [{"id":11230676151,"node_id":"CE_lADOKnFwjc55gRQOzwAAAAKdZoS3","url":"https://api.github.com/repos/rsc/markdown/issues/events/11230676151","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"58f2e15c42bf1ce69bbbfa0c81193db5d6e5c814","commit_url":"https://api.github.com/repos/rsc/markdown/commits/58f2e15c42bf1ce69bbbfa0c81193db5d6e5c814","created_at":"2023-12-13T03:02:31Z","state_reason":null,"performed_via_github_app":null}]207 3793 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:18 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2E8E9:2F1E684:6663629A X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4990 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 10 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]193 2799 GET https://api.github.com/repos/rsc/markdown/issues/comments?direction=asc&page=1&since=2024-06-04T02%3A57%3A21Z&sort=updated HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:18 GMT Etag: W/"2095a7425744aff06a3587ab478cafaf4ff6bf1fcc8c0b97b3b63c16d430595c" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2E953:2F1E73D:6663629A X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4989 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 11 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274","html_url":"https://github.com/rsc/markdown/pull/18#issuecomment-2146475274","issue_url":"https://api.github.com/repos/rsc/markdown/issues/18","id":2146475274,"node_id":"IC_kwDOKnFwjc5_8J0K","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-06-04T02:57:21Z","updated_at":"2024-06-04T02:57:21Z","author_association":"OWNER","body":"Thanks very much!\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}]207 3793 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:18 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2E9AA:2F1E7D6:6663629A X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4988 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 12 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]233 5009 GET https://api.github.com/repos/rsc/markdown/issues/3/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"a8a12ec8651193f7b881138a7a76862649e9ff412152b44cf0f62c6a3e519d93" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:18 GMT Etag: W/"a71205147f77bc7c55e15366536430a17efc38910b1cca9bf7a93bc262e89527" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2EA10:2F1E8A6:6663629A X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4987 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 13 X-Xss-Protection: 0 [{"id":11228615168,"node_id":"RTE_lADOKnFwjc55gTTPzwAAAAKdRxIA","url":"https://api.github.com/repos/rsc/markdown/issues/events/11228615168","actor":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2023-12-12T21:02:28Z","rename":{"from":"require at least one dot in autolink url domains","to":"support : in autolinks"},"performed_via_github_app":null},{"id":11228628324,"node_id":"CE_lADOKnFwjc55gTTPzwAAAAKdR0Vk","url":"https://api.github.com/repos/rsc/markdown/issues/events/11228628324","actor":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-12-12T21:04:04Z","state_reason":null,"performed_via_github_app":null},{"id":11230676181,"node_id":"REFE_lADOKnFwjc55gTTPzwAAAAKdZoTV","url":"https://api.github.com/repos/rsc/markdown/issues/events/11230676181","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"4b85f2bd9fc3260214381f9a5e2df00ff9c20df9","commit_url":"https://api.github.com/repos/rsc/markdown/commits/4b85f2bd9fc3260214381f9a5e2df00ff9c20df9","created_at":"2023-12-13T03:02:31Z","performed_via_github_app":null}]207 3793 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:18 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2EA94:2F1E975:6663629A X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4986 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 14 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]193 2799 GET https://api.github.com/repos/rsc/markdown/issues/comments?direction=asc&page=1&since=2024-06-04T02%3A57%3A21Z&sort=updated HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:19 GMT Etag: W/"2095a7425744aff06a3587ab478cafaf4ff6bf1fcc8c0b97b3b63c16d430595c" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2EB01:2F1EA4C:6663629A X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4985 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 15 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274","html_url":"https://github.com/rsc/markdown/pull/18#issuecomment-2146475274","issue_url":"https://api.github.com/repos/rsc/markdown/issues/18","id":2146475274,"node_id":"IC_kwDOKnFwjc5_8J0K","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-06-04T02:57:21Z","updated_at":"2024-06-04T02:57:21Z","author_association":"OWNER","body":"Thanks very much!\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}]207 3793 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:19 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2EB71:2F1EB02:6663629B X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4984 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 16 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]233 2576 GET https://api.github.com/repos/rsc/markdown/issues/4/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"a8a12ec8651193f7b881138a7a76862649e9ff412152b44cf0f62c6a3e519d93" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:19 GMT Etag: W/"d6d7e428d05717191049b287f4e987fa856c85fc0396fa37450d1f3f59474c21" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2EBDB:2F1EBCE:6663629B X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4983 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 17 X-Xss-Protection: 0 [{"id":11230676170,"node_id":"CE_lADOKnFwjc55gV-CzwAAAAKdZoTK","url":"https://api.github.com/repos/rsc/markdown/issues/events/11230676170","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"4468a1ed4300a71fdd3ce2906cd3dc7a2371a625","commit_url":"https://api.github.com/repos/rsc/markdown/commits/4468a1ed4300a71fdd3ce2906cd3dc7a2371a625","created_at":"2023-12-13T03:02:31Z","state_reason":null,"performed_via_github_app":null}]207 3793 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:19 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2EC4A:2F1EC72:6663629B X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4982 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 18 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]193 2799 GET https://api.github.com/repos/rsc/markdown/issues/comments?direction=asc&page=1&since=2024-06-04T02%3A57%3A21Z&sort=updated HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:19 GMT Etag: W/"2095a7425744aff06a3587ab478cafaf4ff6bf1fcc8c0b97b3b63c16d430595c" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2ECB3:2F1ED26:6663629B X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4981 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 19 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274","html_url":"https://github.com/rsc/markdown/pull/18#issuecomment-2146475274","issue_url":"https://api.github.com/repos/rsc/markdown/issues/18","id":2146475274,"node_id":"IC_kwDOKnFwjc5_8J0K","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-06-04T02:57:21Z","updated_at":"2024-06-04T02:57:21Z","author_association":"OWNER","body":"Thanks very much!\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}]207 3793 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:19 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2ED30:2F1EDFB:6663629B X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4980 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 20 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]233 3819 GET https://api.github.com/repos/rsc/markdown/issues/5/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"a8a12ec8651193f7b881138a7a76862649e9ff412152b44cf0f62c6a3e519d93" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:19 GMT Etag: W/"dad5e1794dfa568f857f318b733de6a412e926d35db8af90fbfe3575b9c75b6e" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2EDA4:2F1EF00:6663629B X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4979 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 21 X-Xss-Protection: 0 [{"id":11230676200,"node_id":"CE_lADOKnFwjc55gYFyzwAAAAKdZoTo","url":"https://api.github.com/repos/rsc/markdown/issues/events/11230676200","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"4b85f2bd9fc3260214381f9a5e2df00ff9c20df9","commit_url":"https://api.github.com/repos/rsc/markdown/commits/4b85f2bd9fc3260214381f9a5e2df00ff9c20df9","created_at":"2023-12-13T03:02:31Z","state_reason":null,"performed_via_github_app":null},{"id":11239005964,"node_id":"REFE_lADOKnFwjc55gYFyzwAAAAKd5Z8M","url":"https://api.github.com/repos/rsc/markdown/issues/events/11239005964","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"8527271b4049b6d640dcfa6795c398cfeff9c000","commit_url":"https://api.github.com/repos/rsc/markdown/commits/8527271b4049b6d640dcfa6795c398cfeff9c000","created_at":"2023-12-13T17:44:28Z","performed_via_github_app":null}]207 3793 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:19 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2EE3C:2F1EFE4:6663629B X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4978 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 22 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]193 2799 GET https://api.github.com/repos/rsc/markdown/issues/comments?direction=asc&page=1&since=2024-06-04T02%3A57%3A21Z&sort=updated HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:19 GMT Etag: W/"2095a7425744aff06a3587ab478cafaf4ff6bf1fcc8c0b97b3b63c16d430595c" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2EEB3:2F1F0AE:6663629B X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4977 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 23 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274","html_url":"https://github.com/rsc/markdown/pull/18#issuecomment-2146475274","issue_url":"https://api.github.com/repos/rsc/markdown/issues/18","id":2146475274,"node_id":"IC_kwDOKnFwjc5_8J0K","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-06-04T02:57:21Z","updated_at":"2024-06-04T02:57:21Z","author_association":"OWNER","body":"Thanks very much!\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}]207 3793 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:20 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2EF2E:2F1F18D:6663629B X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4976 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 24 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]233 2576 GET https://api.github.com/repos/rsc/markdown/issues/6/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"a8a12ec8651193f7b881138a7a76862649e9ff412152b44cf0f62c6a3e519d93" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:20 GMT Etag: W/"2d0336732568b37231c2aa80bd01de20cc34951b8c4e48787323b26aae2aae8f" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2EF9C:2F1F22B:6663629C X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4975 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 25 X-Xss-Protection: 0 [{"id":11230676238,"node_id":"CE_lADOKnFwjc55gikQzwAAAAKdZoUO","url":"https://api.github.com/repos/rsc/markdown/issues/events/11230676238","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"51d9ee0406f8dcc0e992cf51b2b37957107dbfd6","commit_url":"https://api.github.com/repos/rsc/markdown/commits/51d9ee0406f8dcc0e992cf51b2b37957107dbfd6","created_at":"2023-12-13T03:02:32Z","state_reason":null,"performed_via_github_app":null}]207 3793 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:20 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2F01D:2F1F327:6663629C X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4974 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 26 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]193 2799 GET https://api.github.com/repos/rsc/markdown/issues/comments?direction=asc&page=1&since=2024-06-04T02%3A57%3A21Z&sort=updated HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:20 GMT Etag: W/"2095a7425744aff06a3587ab478cafaf4ff6bf1fcc8c0b97b3b63c16d430595c" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2F114:2F1F4B4:6663629C X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4973 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 27 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274","html_url":"https://github.com/rsc/markdown/pull/18#issuecomment-2146475274","issue_url":"https://api.github.com/repos/rsc/markdown/issues/18","id":2146475274,"node_id":"IC_kwDOKnFwjc5_8J0K","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-06-04T02:57:21Z","updated_at":"2024-06-04T02:57:21Z","author_association":"OWNER","body":"Thanks very much!\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}]207 3793 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:20 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2F17F:2F1F56E:6663629C X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4972 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 28 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]233 2576 GET https://api.github.com/repos/rsc/markdown/issues/7/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"a8a12ec8651193f7b881138a7a76862649e9ff412152b44cf0f62c6a3e519d93" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:20 GMT Etag: W/"69e1761b044c099512eedae15244d9219e087d379cb196d83de355e51d423d9a" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2F1FD:2F1F650:6663629C X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4971 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 29 X-Xss-Protection: 0 [{"id":11241620840,"node_id":"CE_lADOKnFwjc55mu-6zwAAAAKeDYVo","url":"https://api.github.com/repos/rsc/markdown/issues/events/11241620840","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"8c4745966286a677e3545b44150ab7491f2f1548","commit_url":"https://api.github.com/repos/rsc/markdown/commits/8c4745966286a677e3545b44150ab7491f2f1548","created_at":"2023-12-13T23:11:57Z","state_reason":null,"performed_via_github_app":null}]207 3793 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:21 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2F273:2F1F713:6663629C X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4970 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 30 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]193 2799 GET https://api.github.com/repos/rsc/markdown/issues/comments?direction=asc&page=1&since=2024-06-04T02%3A57%3A21Z&sort=updated HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:21 GMT Etag: W/"2095a7425744aff06a3587ab478cafaf4ff6bf1fcc8c0b97b3b63c16d430595c" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2F2D1:2F1F7BB:6663629D X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4969 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 31 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274","html_url":"https://github.com/rsc/markdown/pull/18#issuecomment-2146475274","issue_url":"https://api.github.com/repos/rsc/markdown/issues/18","id":2146475274,"node_id":"IC_kwDOKnFwjc5_8J0K","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-06-04T02:57:21Z","updated_at":"2024-06-04T02:57:21Z","author_association":"OWNER","body":"Thanks very much!\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}]207 3793 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:21 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2F388:2F1F90F:6663629D X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4968 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 32 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]233 2450 GET https://api.github.com/repos/rsc/markdown/issues/8/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"a8a12ec8651193f7b881138a7a76862649e9ff412152b44cf0f62c6a3e519d93" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:21 GMT Etag: W/"6ea98d4e2c90e1e2eff014a4397e4cbf629557bede4ab55c1aa745293d14719b" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2F3EC:2F1F99A:6663629D X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4967 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 33 X-Xss-Protection: 0 [{"id":11250194227,"node_id":"CE_lADOKnFwjc55nCn5zwAAAAKekFcz","url":"https://api.github.com/repos/rsc/markdown/issues/events/11250194227","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-12-14T16:21:54Z","state_reason":null,"performed_via_github_app":null}]207 3793 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:21 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2F460:2F1FA7B:6663629D X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4966 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 34 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]193 2799 GET https://api.github.com/repos/rsc/markdown/issues/comments?direction=asc&page=1&since=2024-06-04T02%3A57%3A21Z&sort=updated HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:21 GMT Etag: W/"2095a7425744aff06a3587ab478cafaf4ff6bf1fcc8c0b97b3b63c16d430595c" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2F4C6:2F1FB28:6663629D X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4965 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 35 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274","html_url":"https://github.com/rsc/markdown/pull/18#issuecomment-2146475274","issue_url":"https://api.github.com/repos/rsc/markdown/issues/18","id":2146475274,"node_id":"IC_kwDOKnFwjc5_8J0K","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-06-04T02:57:21Z","updated_at":"2024-06-04T02:57:21Z","author_association":"OWNER","body":"Thanks very much!\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}]207 3793 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:21 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2F519:2F1FBBE:6663629D X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4964 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 36 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]233 2576 GET https://api.github.com/repos/rsc/markdown/issues/9/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"a8a12ec8651193f7b881138a7a76862649e9ff412152b44cf0f62c6a3e519d93" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:21 GMT Etag: W/"0910a54163aa411c6cd6d8966ea5e50d29ecf3420b254e593869ed6bc52b4732" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2F58D:2F1FC7C:6663629D X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4963 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 37 X-Xss-Protection: 0 [{"id":11241620809,"node_id":"CE_lADOKnFwjc55nI9izwAAAAKeDYVJ","url":"https://api.github.com/repos/rsc/markdown/issues/events/11241620809","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"dfcbaf6f71982715482db407f19dd27e944ed227","commit_url":"https://api.github.com/repos/rsc/markdown/commits/dfcbaf6f71982715482db407f19dd27e944ed227","created_at":"2023-12-13T23:11:57Z","state_reason":null,"performed_via_github_app":null}]207 3793 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:22 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2F609:2F1FD50:6663629D X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4962 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 38 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]193 2799 GET https://api.github.com/repos/rsc/markdown/issues/comments?direction=asc&page=1&since=2024-06-04T02%3A57%3A21Z&sort=updated HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:22 GMT Etag: W/"2095a7425744aff06a3587ab478cafaf4ff6bf1fcc8c0b97b3b63c16d430595c" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2F683:2F1FE3C:6663629E X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4961 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 39 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274","html_url":"https://github.com/rsc/markdown/pull/18#issuecomment-2146475274","issue_url":"https://api.github.com/repos/rsc/markdown/issues/18","id":2146475274,"node_id":"IC_kwDOKnFwjc5_8J0K","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-06-04T02:57:21Z","updated_at":"2024-06-04T02:57:21Z","author_association":"OWNER","body":"Thanks very much!\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}]207 3793 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:22 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2F6E1:2F1FEDC:6663629E X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4960 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 40 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]234 5308 GET https://api.github.com/repos/rsc/markdown/issues/10/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"a8a12ec8651193f7b881138a7a76862649e9ff412152b44cf0f62c6a3e519d93" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:22 GMT Etag: W/"5c6db155a0fd64e40efd10ae8c9b90751c68aac1bb6555fa76a6f50219654f30" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2F753:2F1FFA8:6663629E X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4959 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 41 X-Xss-Protection: 0 [{"id":11456466988,"node_id":"RRE_lADOKnFwjc57xsrdzwAAAAKq29As","url":"https://api.github.com/repos/rsc/markdown/issues/events/11456466988","actor":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"event":"review_requested","commit_id":null,"commit_url":null,"created_at":"2024-01-11T13:15:34Z","review_requester":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"requested_reviewer":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"performed_via_github_app":null},{"id":11506360992,"node_id":"CE_lADOKnFwjc57xsrdzwAAAAKt1SKg","url":"https://api.github.com/repos/rsc/markdown/issues/events/11506360992","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2024-01-17T04:39:59Z","state_reason":null,"performed_via_github_app":null}]207 3793 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:22 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2F7CD:2F20063:6663629E X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4958 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 42 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]193 2799 GET https://api.github.com/repos/rsc/markdown/issues/comments?direction=asc&page=1&since=2024-06-04T02%3A57%3A21Z&sort=updated HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:22 GMT Etag: W/"2095a7425744aff06a3587ab478cafaf4ff6bf1fcc8c0b97b3b63c16d430595c" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2F833:2F2011F:6663629E X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4957 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 43 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274","html_url":"https://github.com/rsc/markdown/pull/18#issuecomment-2146475274","issue_url":"https://api.github.com/repos/rsc/markdown/issues/18","id":2146475274,"node_id":"IC_kwDOKnFwjc5_8J0K","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-06-04T02:57:21Z","updated_at":"2024-06-04T02:57:21Z","author_association":"OWNER","body":"Thanks very much!\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}]207 3793 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:22 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2F89F:2F201BD:6663629E X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4956 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 44 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]234 2450 GET https://api.github.com/repos/rsc/markdown/issues/11/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"a8a12ec8651193f7b881138a7a76862649e9ff412152b44cf0f62c6a3e519d93" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:22 GMT Etag: W/"2e5b90d730872c4006039802a577bb9da5ed046965e3629317be330c6cf8fd2a" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2F8FB:2F20264:6663629E X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4955 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 45 X-Xss-Protection: 0 [{"id":11506369300,"node_id":"CE_lADOKnFwjc57yW0-zwAAAAKt1UMU","url":"https://api.github.com/repos/rsc/markdown/issues/events/11506369300","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2024-01-17T04:41:48Z","state_reason":null,"performed_via_github_app":null}]207 3793 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:22 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2F972:2F2032E:6663629E X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4954 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 46 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]193 2799 GET https://api.github.com/repos/rsc/markdown/issues/comments?direction=asc&page=1&since=2024-06-04T02%3A57%3A21Z&sort=updated HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:23 GMT Etag: W/"2095a7425744aff06a3587ab478cafaf4ff6bf1fcc8c0b97b3b63c16d430595c" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2F9DB:2F203CC:6663629E X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4953 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 47 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274","html_url":"https://github.com/rsc/markdown/pull/18#issuecomment-2146475274","issue_url":"https://api.github.com/repos/rsc/markdown/issues/18","id":2146475274,"node_id":"IC_kwDOKnFwjc5_8J0K","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-06-04T02:57:21Z","updated_at":"2024-06-04T02:57:21Z","author_association":"OWNER","body":"Thanks very much!\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}]207 3793 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:23 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2FA33:2F2047D:6663629F X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4952 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 48 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]234 10144 GET https://api.github.com/repos/rsc/markdown/issues/12/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"a8a12ec8651193f7b881138a7a76862649e9ff412152b44cf0f62c6a3e519d93" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:23 GMT Etag: W/"0e153f7a17361ad121296bdba25a819a1ca550aed8e6fd72be0d26bf919d2d09" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2FAAA:2F20533:6663629F X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4951 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 49 X-Xss-Protection: 0 [{"id":11822212932,"node_id":"RRE_lADOKnFwjc5_aUPHzwAAAALAqKdE","url":"https://api.github.com/repos/rsc/markdown/issues/events/11822212932","actor":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"event":"review_requested","commit_id":null,"commit_url":null,"created_at":"2024-02-15T23:18:12Z","review_requester":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"requested_reviewer":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"performed_via_github_app":null},{"id":11942808811,"node_id":"HRFPE_lADOKnFwjc5_aUPHzwAAAALH2Mzr","url":"https://api.github.com/repos/rsc/markdown/issues/events/11942808811","actor":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2024-02-27T20:29:08Z","performed_via_github_app":null},{"id":11942812866,"node_id":"RTE_lADOKnFwjc5_aUPHzwAAAALH2NzC","url":"https://api.github.com/repos/rsc/markdown/issues/events/11942812866","actor":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2024-02-27T20:29:37Z","rename":{"from":"markdown: export Code.NumTicks","to":"markdown: fix markdown printing for inline code"},"performed_via_github_app":null},{"id":12028957331,"node_id":"ME_lADOKnFwjc5_aUPHzwAAAALM-1KT","url":"https://api.github.com/repos/rsc/markdown/issues/events/12028957331","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"0bf8f97ee8ef6dc359b2246680d8f48c37da77f1","commit_url":"https://api.github.com/repos/rsc/markdown/commits/0bf8f97ee8ef6dc359b2246680d8f48c37da77f1","created_at":"2024-03-06T14:43:22Z","performed_via_github_app":null},{"id":12028957356,"node_id":"CE_lADOKnFwjc5_aUPHzwAAAALM-1Ks","url":"https://api.github.com/repos/rsc/markdown/issues/events/12028957356","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2024-03-06T14:43:22Z","state_reason":null,"performed_via_github_app":null},{"id":12028957676,"node_id":"REFE_lADOKnFwjc5_aUPHzwAAAALM-1Ps","url":"https://api.github.com/repos/rsc/markdown/issues/events/12028957676","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"0bf8f97ee8ef6dc359b2246680d8f48c37da77f1","commit_url":"https://api.github.com/repos/rsc/markdown/commits/0bf8f97ee8ef6dc359b2246680d8f48c37da77f1","created_at":"2024-03-06T14:43:24Z","performed_via_github_app":null}]207 3793 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:23 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2FB2A:2F20633:6663629F X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4950 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 50 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]193 2799 GET https://api.github.com/repos/rsc/markdown/issues/comments?direction=asc&page=1&since=2024-06-04T02%3A57%3A21Z&sort=updated HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:23 GMT Etag: W/"2095a7425744aff06a3587ab478cafaf4ff6bf1fcc8c0b97b3b63c16d430595c" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2FB8C:2F206D3:6663629F X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4949 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 51 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274","html_url":"https://github.com/rsc/markdown/pull/18#issuecomment-2146475274","issue_url":"https://api.github.com/repos/rsc/markdown/issues/18","id":2146475274,"node_id":"IC_kwDOKnFwjc5_8J0K","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-06-04T02:57:21Z","updated_at":"2024-06-04T02:57:21Z","author_association":"OWNER","body":"Thanks very much!\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}]207 3793 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:23 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2FBF2:2F2079E:6663629F X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4948 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 52 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]234 2667 GET https://api.github.com/repos/rsc/markdown/issues/13/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"a8a12ec8651193f7b881138a7a76862649e9ff412152b44cf0f62c6a3e519d93" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:23 GMT Etag: W/"d01fc653c605d5f3d129234c33de9145d48f109323b877317b052ea168025724" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2FC5F:2F20858:6663629F X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4947 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 53 X-Xss-Protection: 0 [{"id":12122378461,"node_id":"RTE_lADOKnFwjc6CFrh9zwAAAALSjNDd","url":"https://api.github.com/repos/rsc/markdown/issues/events/12122378461","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2024-03-14T18:29:53Z","rename":{"from":"Links w/labels should render to MD as such","to":"Correctly render reference links in Markdown"},"performed_via_github_app":null}]207 3793 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:23 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2FCC9:2F2090E:6663629F X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4946 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 54 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]193 2799 GET https://api.github.com/repos/rsc/markdown/issues/comments?direction=asc&page=1&since=2024-06-04T02%3A57%3A21Z&sort=updated HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:24 GMT Etag: W/"2095a7425744aff06a3587ab478cafaf4ff6bf1fcc8c0b97b3b63c16d430595c" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2FD2D:2F209C5:6663629F X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4945 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 55 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274","html_url":"https://github.com/rsc/markdown/pull/18#issuecomment-2146475274","issue_url":"https://api.github.com/repos/rsc/markdown/issues/18","id":2146475274,"node_id":"IC_kwDOKnFwjc5_8J0K","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-06-04T02:57:21Z","updated_at":"2024-06-04T02:57:21Z","author_association":"OWNER","body":"Thanks very much!\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}]207 3793 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:24 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2FD9E:2F20A58:666362A0 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4944 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 56 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]234 7635 GET https://api.github.com/repos/rsc/markdown/issues/14/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"a8a12ec8651193f7b881138a7a76862649e9ff412152b44cf0f62c6a3e519d93" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:24 GMT Etag: W/"7e3285095bf2a46c1ff34d6cb49362790b27dd2ba7ef2c0918967692dd9a261b" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2FE0C:2F20B39:666362A0 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4943 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 57 X-Xss-Protection: 0 [{"id":12122340938,"node_id":"RTE_lADOKnFwjc6CFtX-zwAAAALSjD5K","url":"https://api.github.com/repos/rsc/markdown/issues/events/12122340938","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2024-03-14T18:26:19Z","rename":{"from":"Render full reference links in Markdown","to":"Render reference links in Markdown"},"performed_via_github_app":null},{"id":12122495521,"node_id":"CE_lADOKnFwjc6CFtX-zwAAAALSjpoh","url":"https://api.github.com/repos/rsc/markdown/issues/events/12122495521","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2024-03-14T18:41:55Z","state_reason":null,"performed_via_github_app":null},{"id":12122495545,"node_id":"HRDE_lADOKnFwjc6CFtX-zwAAAALSjpo5","url":"https://api.github.com/repos/rsc/markdown/issues/events/12122495545","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2024-03-14T18:41:55Z","performed_via_github_app":null},{"id":12122501258,"node_id":"HRRE_lADOKnFwjc6CFtX-zwAAAALSjrCK","url":"https://api.github.com/repos/rsc/markdown/issues/events/12122501258","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"head_ref_restored","commit_id":null,"commit_url":null,"created_at":"2024-03-14T18:42:29Z","performed_via_github_app":null},{"id":12122508555,"node_id":"HRDE_lADOKnFwjc6CFtX-zwAAAALSjs0L","url":"https://api.github.com/repos/rsc/markdown/issues/events/12122508555","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2024-03-14T18:43:15Z","performed_via_github_app":null}]207 3793 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:24 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2FE94:2F20C0E:666362A0 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4942 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 58 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]193 2799 GET https://api.github.com/repos/rsc/markdown/issues/comments?direction=asc&page=1&since=2024-06-04T02%3A57%3A21Z&sort=updated HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:24 GMT Etag: W/"2095a7425744aff06a3587ab478cafaf4ff6bf1fcc8c0b97b3b63c16d430595c" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2FF08:2F20CD7:666362A0 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4941 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 59 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274","html_url":"https://github.com/rsc/markdown/pull/18#issuecomment-2146475274","issue_url":"https://api.github.com/repos/rsc/markdown/issues/18","id":2146475274,"node_id":"IC_kwDOKnFwjc5_8J0K","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-06-04T02:57:21Z","updated_at":"2024-06-04T02:57:21Z","author_association":"OWNER","body":"Thanks very much!\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}]207 3793 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:24 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2FF7A:2F20D9B:666362A0 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4940 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 60 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]234 1337 GET https://api.github.com/repos/rsc/markdown/issues/15/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"a8a12ec8651193f7b881138a7a76862649e9ff412152b44cf0f62c6a3e519d93" HTTP/2.0 200 OK Content-Length: 2 Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:24 GMT Etag: "47f5498e2746e4296b0cf988109374d833f761b19387dac18c087ac807153288" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A2FFEA:2F20E59:666362A0 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4939 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 61 X-Xss-Protection: 0 []207 3793 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:24 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A30053:2F20F08:666362A0 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4938 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 62 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]193 2799 GET https://api.github.com/repos/rsc/markdown/issues/comments?direction=asc&page=1&since=2024-06-04T02%3A57%3A21Z&sort=updated HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:25 GMT Etag: W/"2095a7425744aff06a3587ab478cafaf4ff6bf1fcc8c0b97b3b63c16d430595c" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A300BE:2F20FC7:666362A0 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4937 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 63 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274","html_url":"https://github.com/rsc/markdown/pull/18#issuecomment-2146475274","issue_url":"https://api.github.com/repos/rsc/markdown/issues/18","id":2146475274,"node_id":"IC_kwDOKnFwjc5_8J0K","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-06-04T02:57:21Z","updated_at":"2024-06-04T02:57:21Z","author_association":"OWNER","body":"Thanks very much!\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}]207 3793 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:25 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A30125:2F2108B:666362A1 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4936 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 64 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]234 2450 GET https://api.github.com/repos/rsc/markdown/issues/16/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"a8a12ec8651193f7b881138a7a76862649e9ff412152b44cf0f62c6a3e519d93" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:25 GMT Etag: W/"77cf9108c0a853c2ae5c183fa945de4035d204b65d7062b359153f0065e82ce3" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A30192:2F2113F:666362A1 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4935 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 65 X-Xss-Protection: 0 [{"id":13027435265,"node_id":"CE_lADOKnFwjc6CgroxzwAAAAMIfuMB","url":"https://api.github.com/repos/rsc/markdown/issues/events/13027435265","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2024-06-03T21:56:43Z","state_reason":null,"performed_via_github_app":null}]207 3793 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:25 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A301F1:2F211F1:666362A1 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4934 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 66 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]193 2799 GET https://api.github.com/repos/rsc/markdown/issues/comments?direction=asc&page=1&since=2024-06-04T02%3A57%3A21Z&sort=updated HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:25 GMT Etag: W/"2095a7425744aff06a3587ab478cafaf4ff6bf1fcc8c0b97b3b63c16d430595c" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A3026F:2F212C2:666362A1 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4933 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 67 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274","html_url":"https://github.com/rsc/markdown/pull/18#issuecomment-2146475274","issue_url":"https://api.github.com/repos/rsc/markdown/issues/18","id":2146475274,"node_id":"IC_kwDOKnFwjc5_8J0K","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-06-04T02:57:21Z","updated_at":"2024-06-04T02:57:21Z","author_association":"OWNER","body":"Thanks very much!\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}]207 3793 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:25 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A302E0:2F2139E:666362A1 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4932 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 68 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]234 7299 GET https://api.github.com/repos/rsc/markdown/issues/17/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"a8a12ec8651193f7b881138a7a76862649e9ff412152b44cf0f62c6a3e519d93" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:25 GMT Etag: W/"b961e57ca8737ad18f8169f0c84334e5685d86ea3d5d2daa8fa4c2ade8f6f3de" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A3036F:2F21477:666362A1 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4931 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 69 X-Xss-Protection: 0 [{"id":12137686933,"node_id":"RTE_lADOKnFwjc6CgrwXzwAAAALTdmeV","url":"https://api.github.com/repos/rsc/markdown/issues/events/12137686933","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2024-03-15T23:43:26Z","rename":{"from":"Tables are pretty printing","to":"Pretty-print tables"},"performed_via_github_app":null},{"id":12137688071,"node_id":"RTE_lADOKnFwjc6CgrwXzwAAAALTdmwH","url":"https://api.github.com/repos/rsc/markdown/issues/events/12137688071","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2024-03-15T23:43:50Z","rename":{"from":"Pretty-print tables","to":"Pretty-print tables in Markdown"},"performed_via_github_app":null},{"id":13027432818,"node_id":"CE_lADOKnFwjc6CgrwXzwAAAAMIftly","url":"https://api.github.com/repos/rsc/markdown/issues/events/13027432818","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2024-06-03T21:56:31Z","state_reason":null,"performed_via_github_app":null},{"id":13028910699,"node_id":"MEE_lADOKnFwjc6CgrwXzwAAAAMIlWZr","url":"https://api.github.com/repos/rsc/markdown/issues/events/13028910699","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2024-06-04T01:56:31Z","performed_via_github_app":null},{"id":13028910702,"node_id":"SE_lADOKnFwjc6CgrwXzwAAAAMIlWZu","url":"https://api.github.com/repos/rsc/markdown/issues/events/13028910702","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2024-06-04T01:56:31Z","performed_via_github_app":null}]207 3793 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:25 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A303DD:2F2153B:666362A1 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4930 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 70 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]193 2799 GET https://api.github.com/repos/rsc/markdown/issues/comments?direction=asc&page=1&since=2024-06-04T02%3A57%3A21Z&sort=updated HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:25 GMT Etag: W/"2095a7425744aff06a3587ab478cafaf4ff6bf1fcc8c0b97b3b63c16d430595c" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A30460:2F2160C:666362A1 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4929 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 71 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274","html_url":"https://github.com/rsc/markdown/pull/18#issuecomment-2146475274","issue_url":"https://api.github.com/repos/rsc/markdown/issues/18","id":2146475274,"node_id":"IC_kwDOKnFwjc5_8J0K","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-06-04T02:57:21Z","updated_at":"2024-06-04T02:57:21Z","author_association":"OWNER","body":"Thanks very much!\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}]207 3793 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:26 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A304BE:2F216B3:666362A1 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4928 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 72 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]234 7788 GET https://api.github.com/repos/rsc/markdown/issues/18/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"a8a12ec8651193f7b881138a7a76862649e9ff412152b44cf0f62c6a3e519d93" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:26 GMT Etag: W/"a7df362930ebeb93dddaf4d141e570bd572be85f433d815e447eb2e5b9a786d6" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A30524:2F21774:666362A2 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4927 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 73 X-Xss-Protection: 0 [{"id":12721108829,"node_id":"RRE_lADOKnFwjc6HtfRmzwAAAAL2PLdd","url":"https://api.github.com/repos/rsc/markdown/issues/events/12721108829","actor":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"event":"review_requested","commit_id":null,"commit_url":null,"created_at":"2024-05-06T22:16:49Z","review_requester":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"requested_reviewer":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"performed_via_github_app":null},{"id":13027289256,"node_id":"ME_lADOKnFwjc6HtfRmzwAAAAMIfKio","url":"https://api.github.com/repos/rsc/markdown/issues/events/13027289256","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"6c64a5ea723ad6221796001b8e226bfed2a9255e","commit_url":"https://api.github.com/repos/rsc/markdown/commits/6c64a5ea723ad6221796001b8e226bfed2a9255e","created_at":"2024-06-03T21:40:04Z","performed_via_github_app":null},{"id":13027289270,"node_id":"CE_lADOKnFwjc6HtfRmzwAAAAMIfKi2","url":"https://api.github.com/repos/rsc/markdown/issues/events/13027289270","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2024-06-03T21:40:04Z","state_reason":null,"performed_via_github_app":null},{"id":13027289466,"node_id":"REFE_lADOKnFwjc6HtfRmzwAAAAMIfKl6","url":"https://api.github.com/repos/rsc/markdown/issues/events/13027289466","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"6c64a5ea723ad6221796001b8e226bfed2a9255e","commit_url":"https://api.github.com/repos/rsc/markdown/commits/6c64a5ea723ad6221796001b8e226bfed2a9255e","created_at":"2024-06-03T21:40:05Z","performed_via_github_app":null}]207 3793 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:26 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A30596:2F21836:666362A2 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4926 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 74 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]193 2799 GET https://api.github.com/repos/rsc/markdown/issues/comments?direction=asc&page=1&since=2024-06-04T02%3A57%3A21Z&sort=updated HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:26 GMT Etag: W/"2095a7425744aff06a3587ab478cafaf4ff6bf1fcc8c0b97b3b63c16d430595c" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A305F9:2F218FC:666362A2 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4925 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 75 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274","html_url":"https://github.com/rsc/markdown/pull/18#issuecomment-2146475274","issue_url":"https://api.github.com/repos/rsc/markdown/issues/18","id":2146475274,"node_id":"IC_kwDOKnFwjc5_8J0K","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-06-04T02:57:21Z","updated_at":"2024-06-04T02:57:21Z","author_association":"OWNER","body":"Thanks very much!\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}]207 3793 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:26 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A3065B:2F219AD:666362A2 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4924 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 76 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]234 1337 GET https://api.github.com/repos/rsc/markdown/issues/19/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"a8a12ec8651193f7b881138a7a76862649e9ff412152b44cf0f62c6a3e519d93" HTTP/2.0 200 OK Content-Length: 2 Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:26 GMT Etag: "47f5498e2746e4296b0cf988109374d833f761b19387dac18c087ac807153288" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A306DA:2F21A72:666362A2 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4923 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 77 X-Xss-Protection: 0 []207 3793 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:26 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A3073B:2F21B0A:666362A2 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4922 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 78 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]193 2799 GET https://api.github.com/repos/rsc/markdown/issues/comments?direction=asc&page=1&since=2024-06-04T02%3A57%3A21Z&sort=updated HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:26 GMT Etag: W/"2095a7425744aff06a3587ab478cafaf4ff6bf1fcc8c0b97b3b63c16d430595c" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A307B6:2F21BEC:666362A2 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4921 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 79 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274","html_url":"https://github.com/rsc/markdown/pull/18#issuecomment-2146475274","issue_url":"https://api.github.com/repos/rsc/markdown/issues/18","id":2146475274,"node_id":"IC_kwDOKnFwjc5_8J0K","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-06-04T02:57:21Z","updated_at":"2024-06-04T02:57:21Z","author_association":"OWNER","body":"Thanks very much!\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}]207 3793 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-06-04T12%3A27%3A49Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Fri, 07 Jun 2024 19:42:26 GMT Etag: W/"a60e1944127fe9d3c272dcab078e921ba5560eeee707c9898ff4edfe733e6dd1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: D8CA:19D236:1A30814:2F21C82:666362A2 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4920 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 80 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-04T12:27:49Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer creates lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null}]231 1165 GET https://api.github.com/repos/rsc/markdown/issues/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"a8a12ec8651193f7b881138a7a76862649e9ff412152b44cf0f62c6a3e519d93" HTTP/2.0 304 Not Modified Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Date: Fri, 07 Jun 2024 19:42:27 GMT Etag: "a8a12ec8651193f7b881138a7a76862649e9ff412152b44cf0f62c6a3e519d93" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Request-Id: D8CA:19D236:1A308BE:2F21DA0:666362A2 X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4920 X-Ratelimit-Reset: 1717792936 X-Ratelimit-Resource: core X-Ratelimit-Used: 80 X-Xss-Protection: 0
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/github/testdata/ivy.httprr
httprr trace v1 175 262432 GET https://api.github.com/repos/robpike/ivy/issues?direction=asc&page=1&per_page=100&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:47 GMT Etag: W/"f91b2466545e714815fdc407491769e3f24462cefc7e158a942d90823fadd305" Link: <https://api.github.com/repositories/26468385/issues?direction=asc&page=2&per_page=100&sort=updated&state=all>; rel="next", <https://api.github.com/repositories/26468385/issues?direction=asc&page=2&per_page=100&sort=updated&state=all>; rel="last" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EB0EA:334184:665E33AE X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4999 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 1 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/robpike/ivy/issues/1","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/1/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/1/events","html_url":"https://github.com/robpike/ivy/pull/1","id":52554705,"node_id":"MDExOlB1bGxSZXF1ZXN0MjY0MTMwODk=","number":1,"title":"Allow \\r to precede \\n for newlines.","user":{"login":"hfern","id":1041838,"node_id":"MDQ6VXNlcjEwNDE4Mzg=","avatar_url":"https://avatars.githubusercontent.com/u/1041838?v=4","gravatar_id":"","url":"https://api.github.com/users/hfern","html_url":"https://github.com/hfern","followers_url":"https://api.github.com/users/hfern/followers","following_url":"https://api.github.com/users/hfern/following{/other_user}","gists_url":"https://api.github.com/users/hfern/gists{/gist_id}","starred_url":"https://api.github.com/users/hfern/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hfern/subscriptions","organizations_url":"https://api.github.com/users/hfern/orgs","repos_url":"https://api.github.com/users/hfern/repos","events_url":"https://api.github.com/users/hfern/events{/privacy}","received_events_url":"https://api.github.com/users/hfern/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2014-12-20T06:39:20Z","updated_at":"2015-01-05T05:41:10Z","closed_at":"2015-01-05T05:41:10Z","author_association":"NONE","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/1","html_url":"https://github.com/robpike/ivy/pull/1","diff_url":"https://github.com/robpike/ivy/pull/1.diff","patch_url":"https://github.com/robpike/ivy/pull/1.patch","merged_at":null},"body":"This allows ivy to be used on windows.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/1/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/1/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/2","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/2/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/2/events","html_url":"https://github.com/robpike/ivy/pull/2","id":53432497,"node_id":"MDExOlB1bGxSZXF1ZXN0MjY4NDQ1OTA=","number":2,"title":"Ivy freezes on unterminated quoted string in input","user":{"login":"jiridanek","id":442720,"node_id":"MDQ6VXNlcjQ0MjcyMA==","avatar_url":"https://avatars.githubusercontent.com/u/442720?v=4","gravatar_id":"","url":"https://api.github.com/users/jiridanek","html_url":"https://github.com/jiridanek","followers_url":"https://api.github.com/users/jiridanek/followers","following_url":"https://api.github.com/users/jiridanek/following{/other_user}","gists_url":"https://api.github.com/users/jiridanek/gists{/gist_id}","starred_url":"https://api.github.com/users/jiridanek/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jiridanek/subscriptions","organizations_url":"https://api.github.com/users/jiridanek/orgs","repos_url":"https://api.github.com/users/jiridanek/repos","events_url":"https://api.github.com/users/jiridanek/events{/privacy}","received_events_url":"https://api.github.com/users/jiridanek/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2015-01-05T19:24:47Z","updated_at":"2015-01-08T17:35:59Z","closed_at":"2015-01-08T04:05:59Z","author_association":"NONE","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/2","html_url":"https://github.com/robpike/ivy/pull/2","diff_url":"https://github.com/robpike/ivy/pull/2.diff","patch_url":"https://github.com/robpike/ivy/pull/2.patch","merged_at":null},"body":"```\n$ echo '\"aaa' > test.txt\n$ ./ivy < test.txt\n # ivy gets stuck and consumes 100% of one CPU core\n```\n\nafter this patch (I am not saying it is the correct fix) it looks like this\n\n```\n$ ./ivy < test.txt\n<stdin>:0: \"error: unterminated quoted string\"\n```\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/2/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/2/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/3","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/3/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/3/events","html_url":"https://github.com/robpike/ivy/issues/3","id":94574071,"node_id":"MDU6SXNzdWU5NDU3NDA3MQ==","number":3,"title":"Can not switch to higher base if it contains digits not in the current base","user":{"login":"mirtchovski","id":2047078,"node_id":"MDQ6VXNlcjIwNDcwNzg=","avatar_url":"https://avatars.githubusercontent.com/u/2047078?v=4","gravatar_id":"","url":"https://api.github.com/users/mirtchovski","html_url":"https://github.com/mirtchovski","followers_url":"https://api.github.com/users/mirtchovski/followers","following_url":"https://api.github.com/users/mirtchovski/following{/other_user}","gists_url":"https://api.github.com/users/mirtchovski/gists{/gist_id}","starred_url":"https://api.github.com/users/mirtchovski/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mirtchovski/subscriptions","organizations_url":"https://api.github.com/users/mirtchovski/orgs","repos_url":"https://api.github.com/users/mirtchovski/repos","events_url":"https://api.github.com/users/mirtchovski/events{/privacy}","received_events_url":"https://api.github.com/users/mirtchovski/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2015-07-12T15:35:08Z","updated_at":"2015-07-13T00:18:04Z","closed_at":"2015-07-13T00:18:04Z","author_association":"NONE","active_lock_reason":null,"body":"This is in the android app:\n\n```\n> ) base 3\n\n> ) base 4\nerror: \"error: bad number syntax 4\"\n> ) base 12\n\n> 9+2\nb\n```\n\n![screenshot_2015-07-12-09-33-44](https://cloud.githubusercontent.com/assets/2047078/8638465/46ac9648-2879-11e5-8d8c-f1d14fb330b7.png)\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/3/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/3/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/4","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/4/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/4/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/4/events","html_url":"https://github.com/robpike/ivy/issues/4","id":94574472,"node_id":"MDU6SXNzdWU5NDU3NDQ3Mg==","number":4,"title":"Predefined functions can not be used as numerical values in higher bases","user":{"login":"mirtchovski","id":2047078,"node_id":"MDQ6VXNlcjIwNDcwNzg=","avatar_url":"https://avatars.githubusercontent.com/u/2047078?v=4","gravatar_id":"","url":"https://api.github.com/users/mirtchovski","html_url":"https://github.com/mirtchovski","followers_url":"https://api.github.com/users/mirtchovski/followers","following_url":"https://api.github.com/users/mirtchovski/following{/other_user}","gists_url":"https://api.github.com/users/mirtchovski/gists{/gist_id}","starred_url":"https://api.github.com/users/mirtchovski/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mirtchovski/subscriptions","organizations_url":"https://api.github.com/users/mirtchovski/orgs","repos_url":"https://api.github.com/users/mirtchovski/repos","events_url":"https://api.github.com/users/mirtchovski/events{/privacy}","received_events_url":"https://api.github.com/users/mirtchovski/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":6,"created_at":"2015-07-12T15:41:53Z","updated_at":"2015-07-13T02:36:47Z","closed_at":"2015-07-13T02:36:47Z","author_association":"NONE","active_lock_reason":null,"body":"This is on the android app.\n\n```\n> ) base 16\n\n> abc + def\nerror: unexpected Def: \"def\"\n> ) base 30\n\n> abc + log\nerror: unexpecred Newline: \"\\n\"\n> abc + lpg\n126s\n\n> abc + defd\ndoqp\n```\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/4/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/4/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/5","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/5/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/5/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/5/events","html_url":"https://github.com/robpike/ivy/pull/5","id":95250558,"node_id":"MDExOlB1bGxSZXF1ZXN0NDAwNDkzOTE=","number":5,"title":"Add failing base 16 test","user":{"login":"nathangrigg","id":896960,"node_id":"MDQ6VXNlcjg5Njk2MA==","avatar_url":"https://avatars.githubusercontent.com/u/896960?v=4","gravatar_id":"","url":"https://api.github.com/users/nathangrigg","html_url":"https://github.com/nathangrigg","followers_url":"https://api.github.com/users/nathangrigg/followers","following_url":"https://api.github.com/users/nathangrigg/following{/other_user}","gists_url":"https://api.github.com/users/nathangrigg/gists{/gist_id}","starred_url":"https://api.github.com/users/nathangrigg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nathangrigg/subscriptions","organizations_url":"https://api.github.com/users/nathangrigg/orgs","repos_url":"https://api.github.com/users/nathangrigg/repos","events_url":"https://api.github.com/users/nathangrigg/events{/privacy}","received_events_url":"https://api.github.com/users/nathangrigg/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2015-07-15T17:44:16Z","updated_at":"2015-07-17T05:08:16Z","closed_at":"2015-07-17T05:08:16Z","author_association":"NONE","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/5","html_url":"https://github.com/robpike/ivy/pull/5","diff_url":"https://github.com/robpike/ivy/pull/5.diff","patch_url":"https://github.com/robpike/ivy/pull/5.patch","merged_at":null},"body":"Currently 1/f+1 is interpreted as 1/(f+1), and other similar order of\noperations errors in base 16 mode.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/5/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/5/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/6","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/6/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/6/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/6/events","html_url":"https://github.com/robpike/ivy/issues/6","id":96763383,"node_id":"MDU6SXNzdWU5Njc2MzM4Mw==","number":6,"title":"Enable Sourcegraph","user":{"login":"mfzl","id":1782950,"node_id":"MDQ6VXNlcjE3ODI5NTA=","avatar_url":"https://avatars.githubusercontent.com/u/1782950?v=4","gravatar_id":"","url":"https://api.github.com/users/mfzl","html_url":"https://github.com/mfzl","followers_url":"https://api.github.com/users/mfzl/followers","following_url":"https://api.github.com/users/mfzl/following{/other_user}","gists_url":"https://api.github.com/users/mfzl/gists{/gist_id}","starred_url":"https://api.github.com/users/mfzl/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mfzl/subscriptions","organizations_url":"https://api.github.com/users/mfzl/orgs","repos_url":"https://api.github.com/users/mfzl/repos","events_url":"https://api.github.com/users/mfzl/events{/privacy}","received_events_url":"https://api.github.com/users/mfzl/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2015-07-23T08:45:16Z","updated_at":"2015-07-23T21:10:00Z","closed_at":"2015-07-23T21:10:00Z","author_association":"NONE","active_lock_reason":null,"body":"I want to use [Sourcegraph](https://sourcegraph.com) for ivy code search, browsing, and usage examples. Can an admin enable Sourcegraph for this repository? Just go to https://sourcegraph.com/github.com/robpike/ivy. (It should only take 30 seconds.)\n\nThank you!\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/6/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/6/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/7","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/7/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/7/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/7/events","html_url":"https://github.com/robpike/ivy/issues/7","id":98039062,"node_id":"MDU6SXNzdWU5ODAzOTA2Mg==","number":7,"title":"Which version of Go is ivy compatible with?","user":{"login":"mdmarek","id":241294,"node_id":"MDQ6VXNlcjI0MTI5NA==","avatar_url":"https://avatars.githubusercontent.com/u/241294?v=4","gravatar_id":"","url":"https://api.github.com/users/mdmarek","html_url":"https://github.com/mdmarek","followers_url":"https://api.github.com/users/mdmarek/followers","following_url":"https://api.github.com/users/mdmarek/following{/other_user}","gists_url":"https://api.github.com/users/mdmarek/gists{/gist_id}","starred_url":"https://api.github.com/users/mdmarek/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mdmarek/subscriptions","organizations_url":"https://api.github.com/users/mdmarek/orgs","repos_url":"https://api.github.com/users/mdmarek/repos","events_url":"https://api.github.com/users/mdmarek/events{/privacy}","received_events_url":"https://api.github.com/users/mdmarek/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2015-07-29T22:01:25Z","updated_at":"2015-07-30T00:31:27Z","closed_at":"2015-07-30T00:31:27Z","author_association":"NONE","active_lock_reason":null,"body":"I'm trying to simply run, `go get github.com/robpike/ivy`, but get the following errors:\n\n```\n# robpike.io/ivy/value\nvalue/asin.go:22: undefined: big.Float\nvalue/asin.go:44: undefined: big.Float\nvalue/asin.go:53: undefined: big.Float\nvalue/asin.go:136: undefined: big.Float\nvalue/bigfloat.go:14: undefined: big.Float\n```\n\nWhen checking https://golang.org/pkg/math/big/ I don't see anything documented for `big.Float`\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/7/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/7/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/8","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/8/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/8/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/8/events","html_url":"https://github.com/robpike/ivy/issues/8","id":101283744,"node_id":"MDU6SXNzdWUxMDEyODM3NDQ=","number":8,"title":"adding to a function issue","user":{"login":"robert-wallis","id":145938,"node_id":"MDQ6VXNlcjE0NTkzOA==","avatar_url":"https://avatars.githubusercontent.com/u/145938?v=4","gravatar_id":"","url":"https://api.github.com/users/robert-wallis","html_url":"https://github.com/robert-wallis","followers_url":"https://api.github.com/users/robert-wallis/followers","following_url":"https://api.github.com/users/robert-wallis/following{/other_user}","gists_url":"https://api.github.com/users/robert-wallis/gists{/gist_id}","starred_url":"https://api.github.com/users/robert-wallis/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robert-wallis/subscriptions","organizations_url":"https://api.github.com/users/robert-wallis/orgs","repos_url":"https://api.github.com/users/robert-wallis/repos","events_url":"https://api.github.com/users/robert-wallis/events{/privacy}","received_events_url":"https://api.github.com/users/robert-wallis/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2015-08-16T17:45:23Z","updated_at":"2015-08-17T22:36:57Z","closed_at":"2015-08-17T03:18:58Z","author_association":"NONE","active_lock_reason":null,"body":"Not sure whats going on, but when I try this on Android:\n\n> ((sqrt(5)+1.0)/2.0)==((1.0+sqrt(5))/2.0)\n> 0\n> \n> (1.0+sqrt(5))/2.0\n> 1.61803398875\n> \n> ((sqrt(5)+1.0)/2.0)\n> 1.22474487139\n\nIt seems that if the left side is a constant, then it works, but if the left side is a function then it doesn't. Am I using it wrong?\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/8/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/8/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/9","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/9/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/9/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/9/events","html_url":"https://github.com/robpike/ivy/issues/9","id":102109750,"node_id":"MDU6SXNzdWUxMDIxMDk3NTA=","number":9,"title":"unary rho with a non-vector returns nothing","user":{"login":"db47h","id":879556,"node_id":"MDQ6VXNlcjg3OTU1Ng==","avatar_url":"https://avatars.githubusercontent.com/u/879556?v=4","gravatar_id":"","url":"https://api.github.com/users/db47h","html_url":"https://github.com/db47h","followers_url":"https://api.github.com/users/db47h/followers","following_url":"https://api.github.com/users/db47h/following{/other_user}","gists_url":"https://api.github.com/users/db47h/gists{/gist_id}","starred_url":"https://api.github.com/users/db47h/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/db47h/subscriptions","organizations_url":"https://api.github.com/users/db47h/orgs","repos_url":"https://api.github.com/users/db47h/repos","events_url":"https://api.github.com/users/db47h/events{/privacy}","received_events_url":"https://api.github.com/users/db47h/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2015-08-20T10:27:05Z","updated_at":"2015-08-20T20:21:55Z","closed_at":"2015-08-20T13:11:30Z","author_association":"NONE","active_lock_reason":null,"body":"Note that this is on the dev branch. Example:\n\n```\nrho 4\n```\n\nnothing returned.\n\n```\nrho 4 5\n2\n```\n\nShouldn't `rho 4` to return 1 ? \n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/9/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/9/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/10","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/10/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/10/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/10/events","html_url":"https://github.com/robpike/ivy/pull/10","id":103125329,"node_id":"MDExOlB1bGxSZXF1ZXN0NDMzNDEzODg=","number":10,"title":"[dev] mobile: add Help function that returns the contents for 'help'","user":{"login":"hyangah","id":4999471,"node_id":"MDQ6VXNlcjQ5OTk0NzE=","avatar_url":"https://avatars.githubusercontent.com/u/4999471?v=4","gravatar_id":"","url":"https://api.github.com/users/hyangah","html_url":"https://github.com/hyangah","followers_url":"https://api.github.com/users/hyangah/followers","following_url":"https://api.github.com/users/hyangah/following{/other_user}","gists_url":"https://api.github.com/users/hyangah/gists{/gist_id}","starred_url":"https://api.github.com/users/hyangah/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hyangah/subscriptions","organizations_url":"https://api.github.com/users/hyangah/orgs","repos_url":"https://api.github.com/users/hyangah/repos","events_url":"https://api.github.com/users/hyangah/events{/privacy}","received_events_url":"https://api.github.com/users/hyangah/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2015-08-25T21:52:19Z","updated_at":"2015-08-27T00:32:09Z","closed_at":"2015-08-27T00:32:09Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/10","html_url":"https://github.com/robpike/ivy/pull/10","diff_url":"https://github.com/robpike/ivy/pull/10.diff","patch_url":"https://github.com/robpike/ivy/pull/10.patch","merged_at":"2015-08-27T00:32:09Z"},"body":"for Help menu.\n\nThe help page is populated from the robpike.io/ivy package comment\n(help_gen.go)\n\nChange-Id: Ieb149b94936f44aa8df9563a0586c28fd9d15ec8\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/10/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/10/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/11","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/11/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/11/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/11/events","html_url":"https://github.com/robpike/ivy/issues/11","id":111387608,"node_id":"MDU6SXNzdWUxMTEzODc2MDg=","number":11,"title":"The scan operator (\\) gets lost","user":{"login":"ainar-g","id":4964986,"node_id":"MDQ6VXNlcjQ5NjQ5ODY=","avatar_url":"https://avatars.githubusercontent.com/u/4964986?v=4","gravatar_id":"","url":"https://api.github.com/users/ainar-g","html_url":"https://github.com/ainar-g","followers_url":"https://api.github.com/users/ainar-g/followers","following_url":"https://api.github.com/users/ainar-g/following{/other_user}","gists_url":"https://api.github.com/users/ainar-g/gists{/gist_id}","starred_url":"https://api.github.com/users/ainar-g/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ainar-g/subscriptions","organizations_url":"https://api.github.com/users/ainar-g/orgs","repos_url":"https://api.github.com/users/ainar-g/repos","events_url":"https://api.github.com/users/ainar-g/events{/privacy}","received_events_url":"https://api.github.com/users/ainar-g/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2015-10-14T12:30:09Z","updated_at":"2015-10-19T15:50:03Z","closed_at":"2015-10-19T15:50:03Z","author_association":"NONE","active_lock_reason":null,"body":"OS: Android.\n\nInput: `+\\1,2,3`.\n\nResult: the output is correct (`1 3 6`), but the prompt looks like\n\n```\n> +,2,3\n1 3 6\n```\n\ninstead of\n\n```\n> +\\1,2,3\n1 3 6\n```\n\nIt looks like something somewhere escapes the backslash and the character after it.\n\n---\n\n**EDIT:** Now that I think of it, shouldn't this issue really be an issue on the github.com/golang/go tracker?\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/11/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/11/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/12","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/12/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/12/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/12/events","html_url":"https://github.com/robpike/ivy/issues/12","id":112942230,"node_id":"MDU6SXNzdWUxMTI5NDIyMzA=","number":12,"title":"go get ivy fails: expects import \"robpike.io/ivy\"","user":{"login":"ghost","id":10137,"node_id":"MDQ6VXNlcjEwMTM3","avatar_url":"https://avatars.githubusercontent.com/u/10137?v=4","gravatar_id":"","url":"https://api.github.com/users/ghost","html_url":"https://github.com/ghost","followers_url":"https://api.github.com/users/ghost/followers","following_url":"https://api.github.com/users/ghost/following{/other_user}","gists_url":"https://api.github.com/users/ghost/gists{/gist_id}","starred_url":"https://api.github.com/users/ghost/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ghost/subscriptions","organizations_url":"https://api.github.com/users/ghost/orgs","repos_url":"https://api.github.com/users/ghost/repos","events_url":"https://api.github.com/users/ghost/events{/privacy}","received_events_url":"https://api.github.com/users/ghost/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2015-10-23T03:35:44Z","updated_at":"2015-10-23T14:36:02Z","closed_at":"2015-10-23T14:35:39Z","author_association":"NONE","active_lock_reason":null,"body":"`go get github.com/robpike/ivy`\ngenerates the error:\n`package github.com/robpike/ivy: code in directory /home/gcloud/work/src/github.com\n/robpike/ivy expects import \"robpike.io/ivy\"`\n\nI'm wondering if this could be fixed by replacing all [`robpike.io/ivy/`](https://github.com/robpike/ivy/search?utf8=%E2%9C%93&q=in%3Afile+language%3Ago+%22robpike+io+ivy%22) with `github.com/robpike/ivy/`.\n\nThe weird thing is that `go get robpike.io/ivy` works, but somehow the import renders `github.com/robpike/ivy` _un-go-get-able_.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/12/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/12/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/15","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/15/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/15/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/15/events","html_url":"https://github.com/robpike/ivy/issues/15","id":115674137,"node_id":"MDU6SXNzdWUxMTU2NzQxMzc=","number":15,"title":"Arithmetic operator precedence","user":{"login":"vp2177","id":451903,"node_id":"MDQ6VXNlcjQ1MTkwMw==","avatar_url":"https://avatars.githubusercontent.com/u/451903?v=4","gravatar_id":"","url":"https://api.github.com/users/vp2177","html_url":"https://github.com/vp2177","followers_url":"https://api.github.com/users/vp2177/followers","following_url":"https://api.github.com/users/vp2177/following{/other_user}","gists_url":"https://api.github.com/users/vp2177/gists{/gist_id}","starred_url":"https://api.github.com/users/vp2177/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/vp2177/subscriptions","organizations_url":"https://api.github.com/users/vp2177/orgs","repos_url":"https://api.github.com/users/vp2177/repos","events_url":"https://api.github.com/users/vp2177/events{/privacy}","received_events_url":"https://api.github.com/users/vp2177/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2015-11-07T15:55:58Z","updated_at":"2015-11-16T04:47:14Z","closed_at":"2015-11-16T04:47:14Z","author_association":"NONE","active_lock_reason":null,"body":"Since Ivy is a calculator, I would expect it honours conventional precedence of arithmetic operators. However, `2-1-1` gives `2` (instead of 0), and `2-1+1` gives `0` (instead of 2).\n\nOS: iOS 9.1\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/15/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/15/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/17","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/17/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/17/events","html_url":"https://github.com/robpike/ivy/pull/17","id":120219382,"node_id":"MDExOlB1bGxSZXF1ZXN0NTI1NjA3MDQ=","number":17,"title":"Use UnixNano() as seed for random","user":{"login":"surma","id":234957,"node_id":"MDQ6VXNlcjIzNDk1Nw==","avatar_url":"https://avatars.githubusercontent.com/u/234957?v=4","gravatar_id":"","url":"https://api.github.com/users/surma","html_url":"https://github.com/surma","followers_url":"https://api.github.com/users/surma/followers","following_url":"https://api.github.com/users/surma/following{/other_user}","gists_url":"https://api.github.com/users/surma/gists{/gist_id}","starred_url":"https://api.github.com/users/surma/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/surma/subscriptions","organizations_url":"https://api.github.com/users/surma/orgs","repos_url":"https://api.github.com/users/surma/repos","events_url":"https://api.github.com/users/surma/events{/privacy}","received_events_url":"https://api.github.com/users/surma/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":6,"created_at":"2015-12-03T16:51:47Z","updated_at":"2015-12-06T01:48:09Z","closed_at":"2015-12-03T18:27:59Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/17","html_url":"https://github.com/robpike/ivy/pull/17","diff_url":"https://github.com/robpike/ivy/pull/17.diff","patch_url":"https://github.com/robpike/ivy/pull/17.patch","merged_at":"2015-12-03T18:27:59Z"},"body":"Minor patch to ensure different random numbers between runs of `ivy` (e.g. in a script).\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/17/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/18","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/18/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/18/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/18/events","html_url":"https://github.com/robpike/ivy/issues/18","id":122615070,"node_id":"MDU6SXNzdWUxMjI2MTUwNzA=","number":18,"title":"Typo in demo","user":{"login":"zhaostu","id":647571,"node_id":"MDQ6VXNlcjY0NzU3MQ==","avatar_url":"https://avatars.githubusercontent.com/u/647571?v=4","gravatar_id":"","url":"https://api.github.com/users/zhaostu","html_url":"https://github.com/zhaostu","followers_url":"https://api.github.com/users/zhaostu/followers","following_url":"https://api.github.com/users/zhaostu/following{/other_user}","gists_url":"https://api.github.com/users/zhaostu/gists{/gist_id}","starred_url":"https://api.github.com/users/zhaostu/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zhaostu/subscriptions","organizations_url":"https://api.github.com/users/zhaostu/orgs","repos_url":"https://api.github.com/users/zhaostu/repos","events_url":"https://api.github.com/users/zhaostu/events{/privacy}","received_events_url":"https://api.github.com/users/zhaostu/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2015-12-16T22:11:29Z","updated_at":"2015-12-17T23:21:52Z","closed_at":"2015-12-17T23:21:52Z","author_association":"NONE","active_lock_reason":null,"body":"Here: https://github.com/robpike/ivy/blob/master/demo/demo.ivy#L158\n\nThe input base is 64, so `2**63` is actually 99(base 10) bit, and `2**64` is 100(base 10) bit.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/18/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/18/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/19","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/19/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/19/events","html_url":"https://github.com/robpike/ivy/issues/19","id":124952899,"node_id":"MDU6SXNzdWUxMjQ5NTI4OTk=","number":19,"title":"cannot get","user":{"login":"xunshicheng","id":13193696,"node_id":"MDQ6VXNlcjEzMTkzNjk2","avatar_url":"https://avatars.githubusercontent.com/u/13193696?v=4","gravatar_id":"","url":"https://api.github.com/users/xunshicheng","html_url":"https://github.com/xunshicheng","followers_url":"https://api.github.com/users/xunshicheng/followers","following_url":"https://api.github.com/users/xunshicheng/following{/other_user}","gists_url":"https://api.github.com/users/xunshicheng/gists{/gist_id}","starred_url":"https://api.github.com/users/xunshicheng/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/xunshicheng/subscriptions","organizations_url":"https://api.github.com/users/xunshicheng/orgs","repos_url":"https://api.github.com/users/xunshicheng/repos","events_url":"https://api.github.com/users/xunshicheng/events{/privacy}","received_events_url":"https://api.github.com/users/xunshicheng/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2016-01-05T11:57:53Z","updated_at":"2016-01-05T22:39:41Z","closed_at":"2016-01-05T22:39:41Z","author_association":"NONE","active_lock_reason":null,"body":"when i get the source code by the command: go get github.com/robpike/ivy\nit print: can't load package: package github.com/robpike/ivy: code in directory D:\\gocode\\src\\github.com\\robpike\\ivy expects import \"robpike.io/ivy\"\n\ncould you get me a hand!\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/19/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/20","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/20/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/20/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/20/events","html_url":"https://github.com/robpike/ivy/issues/20","id":126212515,"node_id":"MDU6SXNzdWUxMjYyMTI1MTU=","number":20,"title":"Order of calculations ","user":{"login":"Bartuz","id":4388676,"node_id":"MDQ6VXNlcjQzODg2NzY=","avatar_url":"https://avatars.githubusercontent.com/u/4388676?v=4","gravatar_id":"","url":"https://api.github.com/users/Bartuz","html_url":"https://github.com/Bartuz","followers_url":"https://api.github.com/users/Bartuz/followers","following_url":"https://api.github.com/users/Bartuz/following{/other_user}","gists_url":"https://api.github.com/users/Bartuz/gists{/gist_id}","starred_url":"https://api.github.com/users/Bartuz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Bartuz/subscriptions","organizations_url":"https://api.github.com/users/Bartuz/orgs","repos_url":"https://api.github.com/users/Bartuz/repos","events_url":"https://api.github.com/users/Bartuz/events{/privacy}","received_events_url":"https://api.github.com/users/Bartuz/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2016-01-12T16:06:15Z","updated_at":"2016-01-12T17:10:33Z","closed_at":"2016-01-12T17:10:33Z","author_association":"NONE","active_lock_reason":null,"body":"2*2+2 =8 , why?\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/20/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/20/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/16","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/16/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/16/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/16/events","html_url":"https://github.com/robpike/ivy/issues/16","id":117326760,"node_id":"MDU6SXNzdWUxMTczMjY3NjA=","number":16,"title":"Access last result","user":{"login":"tomtom","id":39156,"node_id":"MDQ6VXNlcjM5MTU2","avatar_url":"https://avatars.githubusercontent.com/u/39156?v=4","gravatar_id":"","url":"https://api.github.com/users/tomtom","html_url":"https://github.com/tomtom","followers_url":"https://api.github.com/users/tomtom/followers","following_url":"https://api.github.com/users/tomtom/following{/other_user}","gists_url":"https://api.github.com/users/tomtom/gists{/gist_id}","starred_url":"https://api.github.com/users/tomtom/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tomtom/subscriptions","organizations_url":"https://api.github.com/users/tomtom/orgs","repos_url":"https://api.github.com/users/tomtom/repos","events_url":"https://api.github.com/users/tomtom/events{/privacy}","received_events_url":"https://api.github.com/users/tomtom/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2015-11-17T10:37:12Z","updated_at":"2016-02-15T04:08:33Z","closed_at":"2016-02-15T04:08:33Z","author_association":"NONE","active_lock_reason":null,"body":"For interactive use, it would be nice if the last result could be accessed somehow (e.g. via a variable \"ans\" or similar that is set in the repl).\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/16/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/16/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/23","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/23/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/23/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/23/events","html_url":"https://github.com/robpike/ivy/issues/23","id":135756773,"node_id":"MDU6SXNzdWUxMzU3NTY3NzM=","number":23,"title":"parse: parentheses for indexing get dropped when printing","user":{"login":"cherrymui","id":14119929,"node_id":"MDQ6VXNlcjE0MTE5OTI5","avatar_url":"https://avatars.githubusercontent.com/u/14119929?v=4","gravatar_id":"","url":"https://api.github.com/users/cherrymui","html_url":"https://github.com/cherrymui","followers_url":"https://api.github.com/users/cherrymui/followers","following_url":"https://api.github.com/users/cherrymui/following{/other_user}","gists_url":"https://api.github.com/users/cherrymui/gists{/gist_id}","starred_url":"https://api.github.com/users/cherrymui/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cherrymui/subscriptions","organizations_url":"https://api.github.com/users/cherrymui/orgs","repos_url":"https://api.github.com/users/cherrymui/repos","events_url":"https://api.github.com/users/cherrymui/events{/privacy}","received_events_url":"https://api.github.com/users/cherrymui/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2016-02-23T14:49:22Z","updated_at":"2016-02-24T23:28:38Z","closed_at":"2016-02-24T23:28:38Z","author_association":"NONE","active_lock_reason":null,"body":"For a compound expression to the left of indexing operator, when it is printed, its parentheses get dropped. e.g.\n\n```\nop f x = (iota x)[1]\n\n)op f\nop f x = iota x[1]\n```\n\nalso when saving to file (f defined as above)\n\n```\nf 3\n1\n\n)save \"/tmp/1.ivy\"\n\n)get \"/tmp/1.ivy\"\n\nf 3\nbinary [] not implemented on type int\n```\n\nA possible fix might be\n\n```\n--- a/parse/parse.go\n+++ b/parse/parse.go\n@@ -204,7 +204,11 @@ type binary struct {\n func (b *binary) ProgString() string {\n // Special case for indexing.\n if b.op == \"[]\" {\n- return fmt.Sprintf(\"%s[%s]\", b.left.ProgString(), b.right.ProgString())\n+ if isCompound(b.left) {\n+ return fmt.Sprintf(\"(%s)[%s]\", b.left.ProgString(), b.right.ProgString())\n+ } else {\n+ return fmt.Sprintf(\"%s[%s]\", b.left.ProgString(), b.right.ProgString())\n+ }\n }\n if isCompound(b.left) {\n return fmt.Sprintf(\"(%s) %s %s\", b.left.ProgString(), b.op, b.right.ProgString())\n```\n\nThanks!\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/23/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/23/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/25","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/25/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/25/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/25/events","html_url":"https://github.com/robpike/ivy/issues/25","id":143508308,"node_id":"MDU6SXNzdWUxNDM1MDgzMDg=","number":25,"title":"Special command ) treats command as a number in higher number base","user":{"login":"kalokng","id":486376,"node_id":"MDQ6VXNlcjQ4NjM3Ng==","avatar_url":"https://avatars.githubusercontent.com/u/486376?v=4","gravatar_id":"","url":"https://api.github.com/users/kalokng","html_url":"https://github.com/kalokng","followers_url":"https://api.github.com/users/kalokng/followers","following_url":"https://api.github.com/users/kalokng/following{/other_user}","gists_url":"https://api.github.com/users/kalokng/gists{/gist_id}","starred_url":"https://api.github.com/users/kalokng/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kalokng/subscriptions","organizations_url":"https://api.github.com/users/kalokng/orgs","repos_url":"https://api.github.com/users/kalokng/repos","events_url":"https://api.github.com/users/kalokng/events{/privacy}","received_events_url":"https://api.github.com/users/kalokng/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2016-03-25T14:15:57Z","updated_at":"2016-03-26T05:30:09Z","closed_at":"2016-03-26T05:30:09Z","author_association":"NONE","active_lock_reason":null,"body":"Just play around with number base, but found the following is irreversible:\n\n```\n)base 36\n\n)base 10\nexpected [Identifier Op], got Number: \"base\"\n```\n\nwhich it treats the base as a number 527198 (base 10), instead of the command \"base\".\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/25/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/25/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/24","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/24/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/24/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/24/events","html_url":"https://github.com/robpike/ivy/issues/24","id":143506317,"node_id":"MDU6SXNzdWUxNDM1MDYzMTc=","number":24,"title":"Operator rev/flip an vector will reverse the operand","user":{"login":"kalokng","id":486376,"node_id":"MDQ6VXNlcjQ4NjM3Ng==","avatar_url":"https://avatars.githubusercontent.com/u/486376?v=4","gravatar_id":"","url":"https://api.github.com/users/kalokng","html_url":"https://github.com/kalokng","followers_url":"https://api.github.com/users/kalokng/followers","following_url":"https://api.github.com/users/kalokng/following{/other_user}","gists_url":"https://api.github.com/users/kalokng/gists{/gist_id}","starred_url":"https://api.github.com/users/kalokng/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kalokng/subscriptions","organizations_url":"https://api.github.com/users/kalokng/orgs","repos_url":"https://api.github.com/users/kalokng/repos","events_url":"https://api.github.com/users/kalokng/events{/privacy}","received_events_url":"https://api.github.com/users/kalokng/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2016-03-25T14:05:16Z","updated_at":"2016-03-26T05:30:40Z","closed_at":"2016-03-26T05:30:40Z","author_association":"NONE","active_lock_reason":null,"body":"```\nx=iota 10\n\nx\n1 2 3 4 5 6 7 8 9 10\n\nrev x\n10 9 8 7 6 5 4 3 2 1\n\nx\n10 9 8 7 6 5 4 3 2 1\n```\n\nI think x should not be modified after \"rev x\".\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/24/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/24/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/21","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/21/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/21/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/21/events","html_url":"https://github.com/robpike/ivy/issues/21","id":128795551,"node_id":"MDU6SXNzdWUxMjg3OTU1NTE=","number":21,"title":"Inconsistent order of operations?","user":{"login":"mpl","id":626071,"node_id":"MDQ6VXNlcjYyNjA3MQ==","avatar_url":"https://avatars.githubusercontent.com/u/626071?v=4","gravatar_id":"","url":"https://api.github.com/users/mpl","html_url":"https://github.com/mpl","followers_url":"https://api.github.com/users/mpl/followers","following_url":"https://api.github.com/users/mpl/following{/other_user}","gists_url":"https://api.github.com/users/mpl/gists{/gist_id}","starred_url":"https://api.github.com/users/mpl/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mpl/subscriptions","organizations_url":"https://api.github.com/users/mpl/orgs","repos_url":"https://api.github.com/users/mpl/repos","events_url":"https://api.github.com/users/mpl/events{/privacy}","received_events_url":"https://api.github.com/users/mpl/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":4,"created_at":"2016-01-26T11:30:36Z","updated_at":"2016-03-28T09:17:47Z","closed_at":"2016-03-28T09:17:46Z","author_association":"NONE","active_lock_reason":null,"body":"Given that \"binary operators apply to the operand immediately to the left and to everything to the right\", I was expecting:\n\n```\n(2/3**2) == (2/(3**2)) , and not (2/3**2) == ((2/3)**2)) as it seems to be.\n```\n\nAnd fwiw, if one replaces division with multiplication, one gets as expected:\n\n```\n(2*3**2) == (2*(3**2)) ( and not (2*3**2) == ((2*3)**2) )\n```\n\nI did not find any explanation for this behavior either on https://godoc.org/robpike.io/ivy or on https://en.wikipedia.org/wiki/APL_syntax_and_symbols.\n\nWhat am I missing please?\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/21/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/21/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/26","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/26/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/26/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/26/events","html_url":"https://github.com/robpike/ivy/issues/26","id":148370251,"node_id":"MDU6SXNzdWUxNDgzNzAyNTE=","number":26,"title":"Inversed Residue Arguments","user":{"login":"dim13","id":4006042,"node_id":"MDQ6VXNlcjQwMDYwNDI=","avatar_url":"https://avatars.githubusercontent.com/u/4006042?v=4","gravatar_id":"","url":"https://api.github.com/users/dim13","html_url":"https://github.com/dim13","followers_url":"https://api.github.com/users/dim13/followers","following_url":"https://api.github.com/users/dim13/following{/other_user}","gists_url":"https://api.github.com/users/dim13/gists{/gist_id}","starred_url":"https://api.github.com/users/dim13/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dim13/subscriptions","organizations_url":"https://api.github.com/users/dim13/orgs","repos_url":"https://api.github.com/users/dim13/repos","events_url":"https://api.github.com/users/dim13/events{/privacy}","received_events_url":"https://api.github.com/users/dim13/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2016-04-14T13:59:30Z","updated_at":"2016-04-14T15:12:54Z","closed_at":"2016-04-14T15:12:54Z","author_association":"NONE","active_lock_reason":null,"body":"In contrast to all other commands, residue argument order is inconsistent with APL syntax.\n\nI would like to propose to swap them, as it would then simplify porting of APL algorithms to Ivy.\n\nDocumentation excerpt:\n\n```\nResidue A∣B B modulo A\n mod A modulo B (Euclidean)\n imod A modulo B (Go)\n```\n\nShould read:\n\n```\nResidue A∣B B modulo A\n mod B modulo A (Euclidean)\n imod B modulo A (Go)\n```\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/26/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/26/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/29","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/29/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/29/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/29/events","html_url":"https://github.com/robpike/ivy/issues/29","id":177667788,"node_id":"MDU6SXNzdWUxNzc2Njc3ODg=","number":29,"title":"Ivy seems to \"crash\" on latest iOS","user":{"login":"griesemer","id":8528975,"node_id":"MDQ6VXNlcjg1Mjg5NzU=","avatar_url":"https://avatars.githubusercontent.com/u/8528975?v=4","gravatar_id":"","url":"https://api.github.com/users/griesemer","html_url":"https://github.com/griesemer","followers_url":"https://api.github.com/users/griesemer/followers","following_url":"https://api.github.com/users/griesemer/following{/other_user}","gists_url":"https://api.github.com/users/griesemer/gists{/gist_id}","starred_url":"https://api.github.com/users/griesemer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/griesemer/subscriptions","organizations_url":"https://api.github.com/users/griesemer/orgs","repos_url":"https://api.github.com/users/griesemer/repos","events_url":"https://api.github.com/users/griesemer/events{/privacy}","received_events_url":"https://api.github.com/users/griesemer/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":5,"created_at":"2016-09-18T18:27:58Z","updated_at":"2016-10-14T03:37:18Z","closed_at":"2016-10-14T02:43:35Z","author_association":"NONE","active_lock_reason":null,"body":"After updating my iPhone 5s to the latest iOS release (10.0.1, 14A403), Ivy briefly comes up but then disappears (crashes?) and I'm back at the home screen.\n\nDouble-clicking the Home button to look at all running apps shows Ivy running, with its last result showing, but clicking on it results in the same crash again.\n\nProbably not Ivy- but x/mobile specific.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/29/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/29/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/30","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/30/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/30/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/30/events","html_url":"https://github.com/robpike/ivy/issues/30","id":203036767,"node_id":"MDU6SXNzdWUyMDMwMzY3Njc=","number":30,"title":"power: overwrites arguments","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-01-25T08:07:52Z","updated_at":"2017-01-25T10:08:11Z","closed_at":"2017-01-25T10:08:11Z","author_association":"OWNER","active_lock_reason":null,"body":"% ivy\r\ne**pi\r\n23.1406926328\r\n\r\ne\r\n0.367879441171\r\n\r\npi\r\n0.14159265359\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/30/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/30/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/31","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/31/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/31/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/31/events","html_url":"https://github.com/robpike/ivy/issues/31","id":205220438,"node_id":"MDU6SXNzdWUyMDUyMjA0Mzg=","number":31,"title":"loop termination condition seems wrong","user":{"login":"RaduBerinde","id":16544120,"node_id":"MDQ6VXNlcjE2NTQ0MTIw","avatar_url":"https://avatars.githubusercontent.com/u/16544120?v=4","gravatar_id":"","url":"https://api.github.com/users/RaduBerinde","html_url":"https://github.com/RaduBerinde","followers_url":"https://api.github.com/users/RaduBerinde/followers","following_url":"https://api.github.com/users/RaduBerinde/following{/other_user}","gists_url":"https://api.github.com/users/RaduBerinde/gists{/gist_id}","starred_url":"https://api.github.com/users/RaduBerinde/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RaduBerinde/subscriptions","organizations_url":"https://api.github.com/users/RaduBerinde/orgs","repos_url":"https://api.github.com/users/RaduBerinde/repos","events_url":"https://api.github.com/users/RaduBerinde/events{/privacy}","received_events_url":"https://api.github.com/users/RaduBerinde/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":7,"created_at":"2017-02-03T17:32:13Z","updated_at":"2017-02-05T16:24:45Z","closed_at":"2017-02-05T16:24:45Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"Unless I am missing something, the termination condition for the loop seems incorrect:\r\n\r\n`if l.delta.Cmp(l.prevDelta) == 0`\r\n\r\nhttps://github.com/robpike/ivy/blob/master/value/loop.go#L53\r\n\r\n`delta` is the delta between the current estimate and the previous estimate\r\n`prevDelta` is the delta between the previous estimate and the one before that\r\n\r\nWhy should we stop if the deltas are the same? If my iterative method happens to generate estimates `0, 10, 20, 30, 33, 35, 34`, why should we stop at 30?\r\n\r\nSeems like the correct thing to check is if `delta` is 0? I am guessing that this is how this condition ends up working in practice (it detects a string of 0s), as it's highly unlikely to actually see a string of equal but non-zero deltas.\r\n\r\n@robpike @mjibson","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/31/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/31/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/32","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/32/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/32/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/32/events","html_url":"https://github.com/robpike/ivy/pull/32","id":205383180,"node_id":"MDExOlB1bGxSZXF1ZXN0MTA0Njc4NTA1","number":32,"title":"better loop termination condition","user":{"login":"RaduBerinde","id":16544120,"node_id":"MDQ6VXNlcjE2NTQ0MTIw","avatar_url":"https://avatars.githubusercontent.com/u/16544120?v=4","gravatar_id":"","url":"https://api.github.com/users/RaduBerinde","html_url":"https://github.com/RaduBerinde","followers_url":"https://api.github.com/users/RaduBerinde/followers","following_url":"https://api.github.com/users/RaduBerinde/following{/other_user}","gists_url":"https://api.github.com/users/RaduBerinde/gists{/gist_id}","starred_url":"https://api.github.com/users/RaduBerinde/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RaduBerinde/subscriptions","organizations_url":"https://api.github.com/users/RaduBerinde/orgs","repos_url":"https://api.github.com/users/RaduBerinde/repos","events_url":"https://api.github.com/users/RaduBerinde/events{/privacy}","received_events_url":"https://api.github.com/users/RaduBerinde/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-02-04T22:33:36Z","updated_at":"2017-02-05T16:24:45Z","closed_at":"2017-02-05T16:24:45Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/32","html_url":"https://github.com/robpike/ivy/pull/32","diff_url":"https://github.com/robpike/ivy/pull/32.diff","patch_url":"https://github.com/robpike/ivy/pull/32.patch","merged_at":"2017-02-05T16:24:45Z"},"body":"Replace the questionable \"previous delta equals current delta\" condition with a\r\ncondition that checks if delta is small (as small than the last bit of\r\nprecision).\r\n\r\nFixes #31.\n\n<!-- Reviewable:start -->\n---\nThis change is [<img src=\"https://reviewable.io/review_button.svg\" height=\"34\" align=\"absmiddle\" alt=\"Reviewable\"/>](https://reviewable.io/reviews/robpike/ivy/32)\n<!-- Reviewable:end -->\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/32/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/32/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/33","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/33/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/33/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/33/events","html_url":"https://github.com/robpike/ivy/pull/33","id":211638663,"node_id":"MDExOlB1bGxSZXF1ZXN0MTA4OTM2OTEx","number":33,"title":"Add matrix outer product","user":{"login":"tcolgate","id":76019,"node_id":"MDQ6VXNlcjc2MDE5","avatar_url":"https://avatars.githubusercontent.com/u/76019?v=4","gravatar_id":"","url":"https://api.github.com/users/tcolgate","html_url":"https://github.com/tcolgate","followers_url":"https://api.github.com/users/tcolgate/followers","following_url":"https://api.github.com/users/tcolgate/following{/other_user}","gists_url":"https://api.github.com/users/tcolgate/gists{/gist_id}","starred_url":"https://api.github.com/users/tcolgate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tcolgate/subscriptions","organizations_url":"https://api.github.com/users/tcolgate/orgs","repos_url":"https://api.github.com/users/tcolgate/repos","events_url":"https://api.github.com/users/tcolgate/events{/privacy}","received_events_url":"https://api.github.com/users/tcolgate/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":8,"created_at":"2017-03-03T09:37:14Z","updated_at":"2017-03-08T00:09:12Z","closed_at":"2017-03-07T21:53:31Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/33","html_url":"https://github.com/robpike/ivy/pull/33","diff_url":"https://github.com/robpike/ivy/pull/33.diff","patch_url":"https://github.com/robpike/ivy/pull/33.patch","merged_at":"2017-03-07T21:53:31Z"},"body":"AM I being naive, or is this a reasonable implementation of outer product for matrices? I've tested against \r\n\r\nhttp://tryapl.org/?a=%283%202%20%u2374%20%u23736%29%20%20%u2218.+%203%203%20%u2374%u23739&run\r\n\r\nvs\r\n\r\n`( 3 2 rho iota 6) o.+ 3 3 rho iota 9`\r\n\r\nBoth shape and values seem fine\r\n\r\nI'd like to edge ivy toward being able to implement the game of life one liner. This was the first hurdle.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/33/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/33/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/34","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/34/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/34/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/34/events","html_url":"https://github.com/robpike/ivy/pull/34","id":212691218,"node_id":"MDExOlB1bGxSZXF1ZXN0MTA5NjY0Njg3","number":34,"title":"value: fix outerproduct matrix for valu refactor","user":{"login":"tcolgate","id":76019,"node_id":"MDQ6VXNlcjc2MDE5","avatar_url":"https://avatars.githubusercontent.com/u/76019?v=4","gravatar_id":"","url":"https://api.github.com/users/tcolgate","html_url":"https://github.com/tcolgate","followers_url":"https://api.github.com/users/tcolgate/followers","following_url":"https://api.github.com/users/tcolgate/following{/other_user}","gists_url":"https://api.github.com/users/tcolgate/gists{/gist_id}","starred_url":"https://api.github.com/users/tcolgate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tcolgate/subscriptions","organizations_url":"https://api.github.com/users/tcolgate/orgs","repos_url":"https://api.github.com/users/tcolgate/repos","events_url":"https://api.github.com/users/tcolgate/events{/privacy}","received_events_url":"https://api.github.com/users/tcolgate/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-03-08T10:09:55Z","updated_at":"2017-03-08T15:43:14Z","closed_at":"2017-03-08T15:43:14Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/34","html_url":"https://github.com/robpike/ivy/pull/34","diff_url":"https://github.com/robpike/ivy/pull/34.diff","patch_url":"https://github.com/robpike/ivy/pull/34.patch","merged_at":"2017-03-08T15:43:14Z"},"body":null,"reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/34/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/34/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/35","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/35/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/35/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/35/events","html_url":"https://github.com/robpike/ivy/pull/35","id":212822527,"node_id":"MDExOlB1bGxSZXF1ZXN0MTA5NzU5Mzc3","number":35,"title":"value: rename rev to rot and add binary version of flip","user":{"login":"tcolgate","id":76019,"node_id":"MDQ6VXNlcjc2MDE5","avatar_url":"https://avatars.githubusercontent.com/u/76019?v=4","gravatar_id":"","url":"https://api.github.com/users/tcolgate","html_url":"https://github.com/tcolgate","followers_url":"https://api.github.com/users/tcolgate/followers","following_url":"https://api.github.com/users/tcolgate/following{/other_user}","gists_url":"https://api.github.com/users/tcolgate/gists{/gist_id}","starred_url":"https://api.github.com/users/tcolgate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tcolgate/subscriptions","organizations_url":"https://api.github.com/users/tcolgate/orgs","repos_url":"https://api.github.com/users/tcolgate/repos","events_url":"https://api.github.com/users/tcolgate/events{/privacy}","received_events_url":"https://api.github.com/users/tcolgate/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":12,"created_at":"2017-03-08T18:51:37Z","updated_at":"2017-03-19T15:02:05Z","closed_at":"2017-03-19T15:02:05Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/35","html_url":"https://github.com/robpike/ivy/pull/35","diff_url":"https://github.com/robpike/ivy/pull/35.diff","patch_url":"https://github.com/robpike/ivy/pull/35.patch","merged_at":"2017-03-19T15:02:05Z"},"body":"Implement vertical rotation over the left most dimension.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/35/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/35/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/38","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/38/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/38/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/38/events","html_url":"https://github.com/robpike/ivy/issues/38","id":232309607,"node_id":"MDU6SXNzdWUyMzIzMDk2MDc=","number":38,"title":"Inconsistent constant value","user":{"login":"suryaabhi","id":15243985,"node_id":"MDQ6VXNlcjE1MjQzOTg1","avatar_url":"https://avatars.githubusercontent.com/u/15243985?v=4","gravatar_id":"","url":"https://api.github.com/users/suryaabhi","html_url":"https://github.com/suryaabhi","followers_url":"https://api.github.com/users/suryaabhi/followers","following_url":"https://api.github.com/users/suryaabhi/following{/other_user}","gists_url":"https://api.github.com/users/suryaabhi/gists{/gist_id}","starred_url":"https://api.github.com/users/suryaabhi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/suryaabhi/subscriptions","organizations_url":"https://api.github.com/users/suryaabhi/orgs","repos_url":"https://api.github.com/users/suryaabhi/repos","events_url":"https://api.github.com/users/suryaabhi/events{/privacy}","received_events_url":"https://api.github.com/users/suryaabhi/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2017-05-30T16:27:22Z","updated_at":"2017-05-31T05:55:10Z","closed_at":"2017-05-31T05:55:10Z","author_association":"NONE","active_lock_reason":null,"body":"![img_0503](https://cloud.githubusercontent.com/assets/15243985/26593700/c1aaa448-4582-11e7-94d9-24f1eb527575.PNG)\r\n\r\nIn the attached image, the value of predefined constant \"e\" has been changed..","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/38/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/38/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/37","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/37/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/37/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/37/events","html_url":"https://github.com/robpike/ivy/pull/37","id":229237545,"node_id":"MDExOlB1bGxSZXF1ZXN0MTIwOTc0NjYy","number":37,"title":"remove unnecessary os.Exit call in flag.Usage","user":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2017-05-17T04:55:55Z","updated_at":"2017-05-31T21:04:53Z","closed_at":"2017-05-31T04:13:24Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/37","html_url":"https://github.com/robpike/ivy/pull/37","diff_url":"https://github.com/robpike/ivy/pull/37.diff","patch_url":"https://github.com/robpike/ivy/pull/37.patch","merged_at":null},"body":"The `flag` package already calls `os.Exit(2)` inside `flag.Parse` when the parse fails. After this change, `usage` becomes simpler and the behavior of ivy remains unchanged.\r\n\r\nSee https://github.com/mdempsky/unconvert/commit/3b9aa41c71a855a5f5fee96dc751979ce6e8cbbe, https://github.com/campoy/embedmd/pull/12, and https://upspin-review.googlesource.com/c/9642/ for precedent.\r\n\r\nReference: https://dmitri.shuralyov.com/idiomatic-go#don-t-os-exit-2-inside-flag-usage.\r\n\r\n---\r\n\r\nI've made this PR into the `dev` branch, as per your contribution policy. `go test` succeeds:\r\n\r\n```\r\n$ go test -race robpike.io/ivy/...\r\nok \trobpike.io/ivy\t6.568s\r\n? \trobpike.io/ivy/config\t[no test files]\r\n? \trobpike.io/ivy/exec\t[no test files]\r\nok \trobpike.io/ivy/mobile\t1.342s\r\n? \trobpike.io/ivy/parse\t[no test files]\r\n? \trobpike.io/ivy/parse/exec\t[no test files]\r\n? \trobpike.io/ivy/run\t[no test files]\r\n? \trobpike.io/ivy/scan\t[no test files]\r\n? \trobpike.io/ivy/talks\t[no test files]\r\n? \trobpike.io/ivy/value\t[no test files]\r\n```\r\n\r\nAnd ivy behaves the same when there's an error during flag parsing:\r\n\r\n```\r\n$ ivy -badflag\r\nflag provided but not defined: -badflag\r\nusage: ivy [options] [file ...]\r\nFlags:\r\n -debug names\r\n \tcomma-separated names of debug settings to enable\r\n -e\texecute arguments as a single expression\r\n -format fmt\r\n \tuse fmt as format for printing numbers; empty sets default format\r\n -g\tshorthand for -format=\"%.12g\"\r\n -maxbits uint\r\n \tmaximum size of an integer, in bits; 0 means no limit (default 1000000000)\r\n -maxdigits digits\r\n \tabove this many digits, integers print as floating point; 0 disables (default 10000)\r\n -origin n\r\n \tset index origin to n (must be 0 or 1) (default 1)\r\n -prompt prompt\r\n \tcommand prompt\r\nivy $ echo $?\r\n2\r\n```","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/37/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/37/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/39","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/39/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/39/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/39/events","html_url":"https://github.com/robpike/ivy/issues/39","id":245535358,"node_id":"MDU6SXNzdWUyNDU1MzUzNTg=","number":39,"title":"Big Numbers require a huge screen","user":{"login":"z505","id":15078798,"node_id":"MDQ6VXNlcjE1MDc4Nzk4","avatar_url":"https://avatars.githubusercontent.com/u/15078798?v=4","gravatar_id":"","url":"https://api.github.com/users/z505","html_url":"https://github.com/z505","followers_url":"https://api.github.com/users/z505/followers","following_url":"https://api.github.com/users/z505/following{/other_user}","gists_url":"https://api.github.com/users/z505/gists{/gist_id}","starred_url":"https://api.github.com/users/z505/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/z505/subscriptions","organizations_url":"https://api.github.com/users/z505/orgs","repos_url":"https://api.github.com/users/z505/repos","events_url":"https://api.github.com/users/z505/events{/privacy}","received_events_url":"https://api.github.com/users/z505/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":4,"created_at":"2017-07-25T21:05:43Z","updated_at":"2017-07-27T17:50:56Z","closed_at":"2017-07-26T00:35:43Z","author_association":"NONE","active_lock_reason":null,"body":"It says \"Prototype apps for iPhone, iPad, and Android\"\r\n\r\nOkay but I am working with the types of numbers that will fill up a 19 inch screen multiplied by hundreds of screens....\r\n\r\nAre there any demos for: Mac laptops, Windows.\r\n\r\nThe big numbers will have trouble fitting on a cell phone screen. iPad indeed comes close since it is a 10 inch screen or so.\r\n\r\nIf there are no Windows/macOS compiled demos, I might just be the one to create one.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/39/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/39/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/27","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/27/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/27/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/27/events","html_url":"https://github.com/robpike/ivy/pull/27","id":153568271,"node_id":"MDExOlB1bGxSZXF1ZXN0NjkyMzA1NDk=","number":27,"title":"Remove unnecessary int conversions on scanner.pos since it is already an int","user":{"login":"randall2602","id":13720914,"node_id":"MDQ6VXNlcjEzNzIwOTE0","avatar_url":"https://avatars.githubusercontent.com/u/13720914?v=4","gravatar_id":"","url":"https://api.github.com/users/randall2602","html_url":"https://github.com/randall2602","followers_url":"https://api.github.com/users/randall2602/followers","following_url":"https://api.github.com/users/randall2602/following{/other_user}","gists_url":"https://api.github.com/users/randall2602/gists{/gist_id}","starred_url":"https://api.github.com/users/randall2602/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/randall2602/subscriptions","organizations_url":"https://api.github.com/users/randall2602/orgs","repos_url":"https://api.github.com/users/randall2602/repos","events_url":"https://api.github.com/users/randall2602/events{/privacy}","received_events_url":"https://api.github.com/users/randall2602/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2016-05-07T02:34:52Z","updated_at":"2017-10-23T00:42:08Z","closed_at":"2017-10-23T00:42:08Z","author_association":"NONE","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/27","html_url":"https://github.com/robpike/ivy/pull/27","diff_url":"https://github.com/robpike/ivy/pull/27.diff","patch_url":"https://github.com/robpike/ivy/pull/27.patch","merged_at":null},"body":"I made these changes against the dev branch. Build successful and all tests passing.\n\n`randall@dev:~/src/robpike.io/ivy$ go build`\n`randall@dev:~/src/robpike.io/ivy$ go test ./...`\n`ok robpike.io/ivy 1.173s`\n`? robpike.io/ivy/config [no test files]`\n`? robpike.io/ivy/exec [no test files]`\n`ok robpike.io/ivy/mobile 1.108s`\n`? robpike.io/ivy/parse [no test files]`\n`? robpike.io/ivy/parse/exec [no test files]`\n`? robpike.io/ivy/run [no test files]`\n`? robpike.io/ivy/scan [no test files]`\n`? robpike.io/ivy/talks [no test files]`\n`? robpike.io/ivy/value [no test files]`\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/27/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/27/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/14","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/14/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/14/events","html_url":"https://github.com/robpike/ivy/issues/14","id":114003214,"node_id":"MDU6SXNzdWUxMTQwMDMyMTQ=","number":14,"title":"new command ) demo like on the mobile version","user":{"login":"frederich","id":274349,"node_id":"MDQ6VXNlcjI3NDM0OQ==","avatar_url":"https://avatars.githubusercontent.com/u/274349?v=4","gravatar_id":"","url":"https://api.github.com/users/frederich","html_url":"https://github.com/frederich","followers_url":"https://api.github.com/users/frederich/followers","following_url":"https://api.github.com/users/frederich/following{/other_user}","gists_url":"https://api.github.com/users/frederich/gists{/gist_id}","starred_url":"https://api.github.com/users/frederich/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/frederich/subscriptions","organizations_url":"https://api.github.com/users/frederich/orgs","repos_url":"https://api.github.com/users/frederich/repos","events_url":"https://api.github.com/users/frederich/events{/privacy}","received_events_url":"https://api.github.com/users/frederich/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2015-10-29T08:40:35Z","updated_at":"2017-12-08T04:27:10Z","closed_at":"2017-12-08T04:27:09Z","author_association":"NONE","active_lock_reason":null,"body":"The `demo.ivy` is a good starting point. But everyone has to know where it is. A new interactive command like `) demo` bundle it with the binary like the mobile version.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/14/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/14/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/40","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/40/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/40/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/40/events","html_url":"https://github.com/robpike/ivy/pull/40","id":283171319,"node_id":"MDExOlB1bGxSZXF1ZXN0MTU5MTI2NzA5","number":40,"title":"3+iota 2 is 4 5, not 3 4 5","user":{"login":"rogpeppe","id":66491,"node_id":"MDQ6VXNlcjY2NDkx","avatar_url":"https://avatars.githubusercontent.com/u/66491?v=4","gravatar_id":"","url":"https://api.github.com/users/rogpeppe","html_url":"https://github.com/rogpeppe","followers_url":"https://api.github.com/users/rogpeppe/followers","following_url":"https://api.github.com/users/rogpeppe/following{/other_user}","gists_url":"https://api.github.com/users/rogpeppe/gists{/gist_id}","starred_url":"https://api.github.com/users/rogpeppe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rogpeppe/subscriptions","organizations_url":"https://api.github.com/users/rogpeppe/orgs","repos_url":"https://api.github.com/users/rogpeppe/repos","events_url":"https://api.github.com/users/rogpeppe/events{/privacy}","received_events_url":"https://api.github.com/users/rogpeppe/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2017-12-19T10:13:07Z","updated_at":"2017-12-21T20:25:16Z","closed_at":"2017-12-21T20:25:16Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/40","html_url":"https://github.com/robpike/ivy/pull/40","diff_url":"https://github.com/robpike/ivy/pull/40.diff","patch_url":"https://github.com/robpike/ivy/pull/40.patch","merged_at":"2017-12-21T20:25:16Z"},"body":"","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/40/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/40/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/41","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/41/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/41/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/41/events","html_url":"https://github.com/robpike/ivy/issues/41","id":296455709,"node_id":"MDU6SXNzdWUyOTY0NTU3MDk=","number":41,"title":"Unhelpful error message and/or type problem for `take`","user":{"login":"zellyn","id":33625,"node_id":"MDQ6VXNlcjMzNjI1","avatar_url":"https://avatars.githubusercontent.com/u/33625?v=4","gravatar_id":"","url":"https://api.github.com/users/zellyn","html_url":"https://github.com/zellyn","followers_url":"https://api.github.com/users/zellyn/followers","following_url":"https://api.github.com/users/zellyn/following{/other_user}","gists_url":"https://api.github.com/users/zellyn/gists{/gist_id}","starred_url":"https://api.github.com/users/zellyn/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zellyn/subscriptions","organizations_url":"https://api.github.com/users/zellyn/orgs","repos_url":"https://api.github.com/users/zellyn/repos","events_url":"https://api.github.com/users/zellyn/events{/privacy}","received_events_url":"https://api.github.com/users/zellyn/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2018-02-12T17:13:43Z","updated_at":"2018-02-13T02:06:14Z","closed_at":"2018-02-13T02:06:14Z","author_association":"NONE","active_lock_reason":null,"body":"Perhaps I'm reading the docs wrong, but `ceil` is supposed to result in an integer; should this work?\r\n\r\n```\r\nn = 1 drop iota 10\r\n\r\n(ceil (rho n)/2)\r\n5\r\n\r\n5 take n\r\n2 3 4 5 6\r\n\r\n(ceil (rho n)/2) take n\r\nbad count for take\r\n```\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/41/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/41/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/43","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/43/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/43/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/43/events","html_url":"https://github.com/robpike/ivy/pull/43","id":306333533,"node_id":"MDExOlB1bGxSZXF1ZXN0MTc1ODA1MDQx","number":43,"title":"README: update formatting and links","user":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2018-03-19T04:57:54Z","updated_at":"2018-03-19T20:26:34Z","closed_at":"2018-03-19T19:39:19Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/43","html_url":"https://github.com/robpike/ivy/pull/43","diff_url":"https://github.com/robpike/ivy/pull/43.diff","patch_url":"https://github.com/robpike/ivy/pull/43.patch","merged_at":"2018-03-19T19:39:19Z"},"body":"This PR is heavily inspired by PR #42 (/cc @BDMorrell @robpike), but takes a slightly different approach to improving the formatting. It tries make it render more like the raw markdown text file looks (I hope that's the original intention, but let me know if not).\r\n\r\nIt also updates the links to use HTTPS scheme and newer canonical address for https://talks.godoc.org.\r\n\r\nFinally, this PR is based on `dev` branch rather than `master`, which I understand is the expected way to contribute, based on what @robpike has said in the past.\r\n\r\nIf merged, this should close #42.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/43/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/43/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/42","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/42/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/42/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/42/events","html_url":"https://github.com/robpike/ivy/pull/42","id":306119781,"node_id":"MDExOlB1bGxSZXF1ZXN0MTc1Njc4MTAx","number":42,"title":"Update README.md","user":{"login":"BDMorrell","id":9202807,"node_id":"MDQ6VXNlcjkyMDI4MDc=","avatar_url":"https://avatars.githubusercontent.com/u/9202807?v=4","gravatar_id":"","url":"https://api.github.com/users/BDMorrell","html_url":"https://github.com/BDMorrell","followers_url":"https://api.github.com/users/BDMorrell/followers","following_url":"https://api.github.com/users/BDMorrell/following{/other_user}","gists_url":"https://api.github.com/users/BDMorrell/gists{/gist_id}","starred_url":"https://api.github.com/users/BDMorrell/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/BDMorrell/subscriptions","organizations_url":"https://api.github.com/users/BDMorrell/orgs","repos_url":"https://api.github.com/users/BDMorrell/repos","events_url":"https://api.github.com/users/BDMorrell/events{/privacy}","received_events_url":"https://api.github.com/users/BDMorrell/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2018-03-17T02:05:53Z","updated_at":"2018-03-20T03:20:02Z","closed_at":"2018-03-19T19:38:33Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/42","html_url":"https://github.com/robpike/ivy/pull/42","diff_url":"https://github.com/robpike/ivy/pull/42.diff","patch_url":"https://github.com/robpike/ivy/pull/42.patch","merged_at":null},"body":"Changed the readme's shell code to be highlighted as code, for the next person who's trying to skim though this for downloading.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/42/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/42/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/44","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/44/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/44/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/44/events","html_url":"https://github.com/robpike/ivy/pull/44","id":306729674,"node_id":"MDExOlB1bGxSZXF1ZXN0MTc2MDg5MjM0","number":44,"title":"fix doc example","user":{"login":"posener","id":919294,"node_id":"MDQ6VXNlcjkxOTI5NA==","avatar_url":"https://avatars.githubusercontent.com/u/919294?v=4","gravatar_id":"","url":"https://api.github.com/users/posener","html_url":"https://github.com/posener","followers_url":"https://api.github.com/users/posener/followers","following_url":"https://api.github.com/users/posener/following{/other_user}","gists_url":"https://api.github.com/users/posener/gists{/gist_id}","starred_url":"https://api.github.com/users/posener/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/posener/subscriptions","organizations_url":"https://api.github.com/users/posener/orgs","repos_url":"https://api.github.com/users/posener/repos","events_url":"https://api.github.com/users/posener/events{/privacy}","received_events_url":"https://api.github.com/users/posener/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2018-03-20T04:56:35Z","updated_at":"2018-03-20T12:20:20Z","closed_at":"2018-03-20T12:20:20Z","author_association":"NONE","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/44","html_url":"https://github.com/robpike/ivy/pull/44","diff_url":"https://github.com/robpike/ivy/pull/44.diff","patch_url":"https://github.com/robpike/ivy/pull/44.patch","merged_at":null},"body":"","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/44/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/44/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/46","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/46/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/46/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/46/events","html_url":"https://github.com/robpike/ivy/pull/46","id":308422704,"node_id":"MDExOlB1bGxSZXF1ZXN0MTc3MzM1MDYz","number":46,"title":"Add a Go import comment","user":{"login":"dsymonds","id":31506,"node_id":"MDQ6VXNlcjMxNTA2","avatar_url":"https://avatars.githubusercontent.com/u/31506?v=4","gravatar_id":"","url":"https://api.github.com/users/dsymonds","html_url":"https://github.com/dsymonds","followers_url":"https://api.github.com/users/dsymonds/followers","following_url":"https://api.github.com/users/dsymonds/following{/other_user}","gists_url":"https://api.github.com/users/dsymonds/gists{/gist_id}","starred_url":"https://api.github.com/users/dsymonds/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dsymonds/subscriptions","organizations_url":"https://api.github.com/users/dsymonds/orgs","repos_url":"https://api.github.com/users/dsymonds/repos","events_url":"https://api.github.com/users/dsymonds/events{/privacy}","received_events_url":"https://api.github.com/users/dsymonds/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-03-26T03:32:14Z","updated_at":"2018-03-26T03:33:04Z","closed_at":"2018-03-26T03:33:04Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/46","html_url":"https://github.com/robpike/ivy/pull/46","diff_url":"https://github.com/robpike/ivy/pull/46.diff","patch_url":"https://github.com/robpike/ivy/pull/46.patch","merged_at":"2018-03-26T03:33:04Z"},"body":"This pull request was made with an automated tool.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/46/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/46/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/45","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/45/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/45/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/45/events","html_url":"https://github.com/robpike/ivy/pull/45","id":308422402,"node_id":"MDExOlB1bGxSZXF1ZXN0MTc3MzM0ODU5","number":45,"title":"Add a Go import comment","user":{"login":"dsymonds","id":31506,"node_id":"MDQ6VXNlcjMxNTA2","avatar_url":"https://avatars.githubusercontent.com/u/31506?v=4","gravatar_id":"","url":"https://api.github.com/users/dsymonds","html_url":"https://github.com/dsymonds","followers_url":"https://api.github.com/users/dsymonds/followers","following_url":"https://api.github.com/users/dsymonds/following{/other_user}","gists_url":"https://api.github.com/users/dsymonds/gists{/gist_id}","starred_url":"https://api.github.com/users/dsymonds/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dsymonds/subscriptions","organizations_url":"https://api.github.com/users/dsymonds/orgs","repos_url":"https://api.github.com/users/dsymonds/repos","events_url":"https://api.github.com/users/dsymonds/events{/privacy}","received_events_url":"https://api.github.com/users/dsymonds/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2018-03-26T03:29:58Z","updated_at":"2018-03-26T04:50:08Z","closed_at":"2018-03-26T03:30:38Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/45","html_url":"https://github.com/robpike/ivy/pull/45","diff_url":"https://github.com/robpike/ivy/pull/45.diff","patch_url":"https://github.com/robpike/ivy/pull/45.patch","merged_at":"2018-03-26T03:30:38Z"},"body":"This pull request was made with an automated tool.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/45/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/45/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/48","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/48/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/48/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/48/events","html_url":"https://github.com/robpike/ivy/pull/48","id":312393593,"node_id":"MDExOlB1bGxSZXF1ZXN0MTgwMjExMDI3","number":48,"title":"Add a Go import comment","user":{"login":"dsymonds","id":31506,"node_id":"MDQ6VXNlcjMxNTA2","avatar_url":"https://avatars.githubusercontent.com/u/31506?v=4","gravatar_id":"","url":"https://api.github.com/users/dsymonds","html_url":"https://github.com/dsymonds","followers_url":"https://api.github.com/users/dsymonds/followers","following_url":"https://api.github.com/users/dsymonds/following{/other_user}","gists_url":"https://api.github.com/users/dsymonds/gists{/gist_id}","starred_url":"https://api.github.com/users/dsymonds/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dsymonds/subscriptions","organizations_url":"https://api.github.com/users/dsymonds/orgs","repos_url":"https://api.github.com/users/dsymonds/repos","events_url":"https://api.github.com/users/dsymonds/events{/privacy}","received_events_url":"https://api.github.com/users/dsymonds/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2018-04-09T04:58:02Z","updated_at":"2018-04-09T04:59:07Z","closed_at":"2018-04-09T04:58:59Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/48","html_url":"https://github.com/robpike/ivy/pull/48","diff_url":"https://github.com/robpike/ivy/pull/48.diff","patch_url":"https://github.com/robpike/ivy/pull/48.patch","merged_at":null},"body":"This pull request was made with an automated tool.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/48/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/48/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/49","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/49/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/49/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/49/events","html_url":"https://github.com/robpike/ivy/pull/49","id":312394201,"node_id":"MDExOlB1bGxSZXF1ZXN0MTgwMjExMzcy","number":49,"title":"Add a Go import comment","user":{"login":"dsymonds","id":31506,"node_id":"MDQ6VXNlcjMxNTA2","avatar_url":"https://avatars.githubusercontent.com/u/31506?v=4","gravatar_id":"","url":"https://api.github.com/users/dsymonds","html_url":"https://github.com/dsymonds","followers_url":"https://api.github.com/users/dsymonds/followers","following_url":"https://api.github.com/users/dsymonds/following{/other_user}","gists_url":"https://api.github.com/users/dsymonds/gists{/gist_id}","starred_url":"https://api.github.com/users/dsymonds/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dsymonds/subscriptions","organizations_url":"https://api.github.com/users/dsymonds/orgs","repos_url":"https://api.github.com/users/dsymonds/repos","events_url":"https://api.github.com/users/dsymonds/events{/privacy}","received_events_url":"https://api.github.com/users/dsymonds/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2018-04-09T05:02:16Z","updated_at":"2018-04-10T00:41:09Z","closed_at":"2018-04-10T00:39:41Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/49","html_url":"https://github.com/robpike/ivy/pull/49","diff_url":"https://github.com/robpike/ivy/pull/49.diff","patch_url":"https://github.com/robpike/ivy/pull/49.patch","merged_at":null},"body":"This pull request was made with an automated tool.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/49/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/49/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/51","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/51/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/51/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/51/events","html_url":"https://github.com/robpike/ivy/pull/51","id":312740473,"node_id":"MDExOlB1bGxSZXF1ZXN0MTgwNDY2Njc0","number":51,"title":"Add a Go import comment","user":{"login":"functionary","id":37858349,"node_id":"MDQ6VXNlcjM3ODU4MzQ5","avatar_url":"https://avatars.githubusercontent.com/u/37858349?v=4","gravatar_id":"","url":"https://api.github.com/users/functionary","html_url":"https://github.com/functionary","followers_url":"https://api.github.com/users/functionary/followers","following_url":"https://api.github.com/users/functionary/following{/other_user}","gists_url":"https://api.github.com/users/functionary/gists{/gist_id}","starred_url":"https://api.github.com/users/functionary/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/functionary/subscriptions","organizations_url":"https://api.github.com/users/functionary/orgs","repos_url":"https://api.github.com/users/functionary/repos","events_url":"https://api.github.com/users/functionary/events{/privacy}","received_events_url":"https://api.github.com/users/functionary/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-04-10T01:20:13Z","updated_at":"2018-04-10T01:21:29Z","closed_at":"2018-04-10T01:21:29Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/51","html_url":"https://github.com/robpike/ivy/pull/51","diff_url":"https://github.com/robpike/ivy/pull/51.diff","patch_url":"https://github.com/robpike/ivy/pull/51.patch","merged_at":"2018-04-10T01:21:29Z"},"body":"This pull request was made with an automated tool.\n\nThe suggested change adds an import comment to a file in the package\nto ensure that this package is always imported using its canonical\nimport path. With this comment in place, the go tool guarantees\nthat the package can be imported only from this path.\n\nFor more information, see https://golang.org/s/go14customimport,\nin particular the \"Proposal\" section.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/51/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/51/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/50","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/50/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/50/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/50/events","html_url":"https://github.com/robpike/ivy/pull/50","id":312736858,"node_id":"MDExOlB1bGxSZXF1ZXN0MTgwNDY0MDYx","number":50,"title":"Add a Go import comment","user":{"login":"functionary","id":37858349,"node_id":"MDQ6VXNlcjM3ODU4MzQ5","avatar_url":"https://avatars.githubusercontent.com/u/37858349?v=4","gravatar_id":"","url":"https://api.github.com/users/functionary","html_url":"https://github.com/functionary","followers_url":"https://api.github.com/users/functionary/followers","following_url":"https://api.github.com/users/functionary/following{/other_user}","gists_url":"https://api.github.com/users/functionary/gists{/gist_id}","starred_url":"https://api.github.com/users/functionary/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/functionary/subscriptions","organizations_url":"https://api.github.com/users/functionary/orgs","repos_url":"https://api.github.com/users/functionary/repos","events_url":"https://api.github.com/users/functionary/events{/privacy}","received_events_url":"https://api.github.com/users/functionary/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2018-04-10T00:55:54Z","updated_at":"2018-04-10T03:07:48Z","closed_at":"2018-04-10T03:07:48Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/50","html_url":"https://github.com/robpike/ivy/pull/50","diff_url":"https://github.com/robpike/ivy/pull/50.diff","patch_url":"https://github.com/robpike/ivy/pull/50.patch","merged_at":null},"body":"This pull request was made with an automated tool.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/50/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/50/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/52","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/52/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/52/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/52/events","html_url":"https://github.com/robpike/ivy/pull/52","id":312786838,"node_id":"MDExOlB1bGxSZXF1ZXN0MTgwNTAwMDUy","number":52,"title":"Add Go import comments.","user":{"login":"functionary","id":37858349,"node_id":"MDQ6VXNlcjM3ODU4MzQ5","avatar_url":"https://avatars.githubusercontent.com/u/37858349?v=4","gravatar_id":"","url":"https://api.github.com/users/functionary","html_url":"https://github.com/functionary","followers_url":"https://api.github.com/users/functionary/followers","following_url":"https://api.github.com/users/functionary/following{/other_user}","gists_url":"https://api.github.com/users/functionary/gists{/gist_id}","starred_url":"https://api.github.com/users/functionary/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/functionary/subscriptions","organizations_url":"https://api.github.com/users/functionary/orgs","repos_url":"https://api.github.com/users/functionary/repos","events_url":"https://api.github.com/users/functionary/events{/privacy}","received_events_url":"https://api.github.com/users/functionary/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2018-04-10T06:19:56Z","updated_at":"2018-04-10T06:22:23Z","closed_at":"2018-04-10T06:22:22Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/52","html_url":"https://github.com/robpike/ivy/pull/52","diff_url":"https://github.com/robpike/ivy/pull/52.diff","patch_url":"https://github.com/robpike/ivy/pull/52.patch","merged_at":null},"body":"This pull request was made with an automated tool.\n\nThe suggested change adds an import comment to a file in each package\nto ensure that the package is always imported using its canonical\nimport path. With this comment in place, the go tool guarantees\nthat the package can be imported only from this path.\n\nFor more information, see https://golang.org/s/go14customimport,\nin particular the \"Proposal\" section.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/52/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/52/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/53","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/53/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/53/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/53/events","html_url":"https://github.com/robpike/ivy/pull/53","id":312787294,"node_id":"MDExOlB1bGxSZXF1ZXN0MTgwNTAwMzkx","number":53,"title":"Add a Go import comment.","user":{"login":"functionary","id":37858349,"node_id":"MDQ6VXNlcjM3ODU4MzQ5","avatar_url":"https://avatars.githubusercontent.com/u/37858349?v=4","gravatar_id":"","url":"https://api.github.com/users/functionary","html_url":"https://github.com/functionary","followers_url":"https://api.github.com/users/functionary/followers","following_url":"https://api.github.com/users/functionary/following{/other_user}","gists_url":"https://api.github.com/users/functionary/gists{/gist_id}","starred_url":"https://api.github.com/users/functionary/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/functionary/subscriptions","organizations_url":"https://api.github.com/users/functionary/orgs","repos_url":"https://api.github.com/users/functionary/repos","events_url":"https://api.github.com/users/functionary/events{/privacy}","received_events_url":"https://api.github.com/users/functionary/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-04-10T06:22:25Z","updated_at":"2018-04-10T06:23:24Z","closed_at":"2018-04-10T06:23:23Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/53","html_url":"https://github.com/robpike/ivy/pull/53","diff_url":"https://github.com/robpike/ivy/pull/53.diff","patch_url":"https://github.com/robpike/ivy/pull/53.patch","merged_at":"2018-04-10T06:23:23Z"},"body":"This pull request was made with an automated tool.\n\nThe suggested change adds an import comment to a file in each package\nto ensure that the package is always imported using its canonical\nimport path. With this comment in place, the go tool guarantees\nthat the package can be imported only from this path.\n\nFor more information, see https://golang.org/s/go14customimport,\nin particular the \"Proposal\" section.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/53/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/53/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/55","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/55/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/55/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/55/events","html_url":"https://github.com/robpike/ivy/issues/55","id":360353540,"node_id":"MDU6SXNzdWUzNjAzNTM1NDA=","number":55,"title":"WebAssembly port","user":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2018-09-14T15:32:28Z","updated_at":"2018-10-07T18:20:47Z","closed_at":"2018-10-06T22:12:40Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"Go 1.11 has added an [experimental port to WebAssembly](https://golang.org/doc/go1.11#wasm). ivy already supports iOS and Android via x/mobile, and if I'm not mistaken, the code for that lives in this repository.\r\n\r\n@robpike, are you interested in a WebAssembly port being added to this repository?\r\n\r\nI've ported ivy to run in a browser via GopherJS in the past, see demo at https://dmitri.shuralyov.com/projects/ivy/. It was very easy to port it to use `syscall/js` package and compile with `GOOS=js GOARCH=wasm`. See https://github.com/shurcooL/ivybrowser/commit/44e3bb3d594d10a1a9726bc0e2631e0d86e43d12.\r\n\r\nIf you choose to accept it, I'm happy to help maintain it. If you'd rather not, that's fine, I will just keep it in [my fork](https://github.com/shurcooL/ivybrowser) then.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/55/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/55/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/58","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/58/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/58/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/58/events","html_url":"https://github.com/robpike/ivy/issues/58","id":402705313,"node_id":"MDU6SXNzdWU0MDI3MDUzMTM=","number":58,"title":"Parse hex numbers when loading a file","user":{"login":"baskerville","id":159419,"node_id":"MDQ6VXNlcjE1OTQxOQ==","avatar_url":"https://avatars.githubusercontent.com/u/159419?v=4","gravatar_id":"","url":"https://api.github.com/users/baskerville","html_url":"https://github.com/baskerville","followers_url":"https://api.github.com/users/baskerville/followers","following_url":"https://api.github.com/users/baskerville/following{/other_user}","gists_url":"https://api.github.com/users/baskerville/gists{/gist_id}","starred_url":"https://api.github.com/users/baskerville/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/baskerville/subscriptions","organizations_url":"https://api.github.com/users/baskerville/orgs","repos_url":"https://api.github.com/users/baskerville/repos","events_url":"https://api.github.com/users/baskerville/events{/privacy}","received_events_url":"https://api.github.com/users/baskerville/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2019-01-24T13:24:31Z","updated_at":"2019-01-25T22:01:38Z","closed_at":"2019-01-25T22:01:38Z","author_association":"NONE","active_lock_reason":null,"body":"If a file named `abc.ivy` contains `a = 0xff` (and nothing else), then the output of `)get \"abc.ivy\"` is `\"error: bad number syntax: 0x\"`.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/58/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/58/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/13","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/13/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/13/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/13/events","html_url":"https://github.com/robpike/ivy/issues/13","id":114002645,"node_id":"MDU6SXNzdWUxMTQwMDI2NDU=","number":13,"title":") help should print godoc content","user":{"login":"frederich","id":274349,"node_id":"MDQ6VXNlcjI3NDM0OQ==","avatar_url":"https://avatars.githubusercontent.com/u/274349?v=4","gravatar_id":"","url":"https://api.github.com/users/frederich","html_url":"https://github.com/frederich","followers_url":"https://api.github.com/users/frederich/followers","following_url":"https://api.github.com/users/frederich/following{/other_user}","gists_url":"https://api.github.com/users/frederich/gists{/gist_id}","starred_url":"https://api.github.com/users/frederich/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/frederich/subscriptions","organizations_url":"https://api.github.com/users/frederich/orgs","repos_url":"https://api.github.com/users/frederich/repos","events_url":"https://api.github.com/users/frederich/events{/privacy}","received_events_url":"https://api.github.com/users/frederich/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2015-10-29T08:35:46Z","updated_at":"2020-01-03T03:46:41Z","closed_at":"2020-01-03T03:46:41Z","author_association":"NONE","active_lock_reason":null,"body":"The special command ) help print the special command list, but the mobile version prints the hole godoc content. I find it very useful to see the supported APL operators inside ivy.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/13/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/13/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/22","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/22/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/22/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/22/events","html_url":"https://github.com/robpike/ivy/issues/22","id":128883651,"node_id":"MDU6SXNzdWUxMjg4ODM2NTE=","number":22,"title":"Should floatPower be moved to the math/big package?","user":{"login":"zboralski","id":104316,"node_id":"MDQ6VXNlcjEwNDMxNg==","avatar_url":"https://avatars.githubusercontent.com/u/104316?v=4","gravatar_id":"","url":"https://api.github.com/users/zboralski","html_url":"https://github.com/zboralski","followers_url":"https://api.github.com/users/zboralski/followers","following_url":"https://api.github.com/users/zboralski/following{/other_user}","gists_url":"https://api.github.com/users/zboralski/gists{/gist_id}","starred_url":"https://api.github.com/users/zboralski/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zboralski/subscriptions","organizations_url":"https://api.github.com/users/zboralski/orgs","repos_url":"https://api.github.com/users/zboralski/repos","events_url":"https://api.github.com/users/zboralski/events{/privacy}","received_events_url":"https://api.github.com/users/zboralski/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":4,"created_at":"2016-01-26T17:16:35Z","updated_at":"2020-01-04T00:15:55Z","closed_at":"2020-01-04T00:15:55Z","author_association":"NONE","active_lock_reason":null,"body":"@robpike we're using this function in our code now and I was wondering if it was any reason for not having it in the math/big package. Cheers :)\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/22/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/22/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/54","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/54/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/54/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/54/events","html_url":"https://github.com/robpike/ivy/issues/54","id":318769580,"node_id":"MDU6SXNzdWUzMTg3Njk1ODA=","number":54,"title":"value: binary iota is incorrect","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2018-04-30T01:46:26Z","updated_at":"2020-01-04T00:21:21Z","closed_at":"2020-01-04T00:21:21Z","author_association":"OWNER","active_lock_reason":null,"body":"Given\r\n\r\n scalar binop vector\r\n\r\nthe scalar will be promoted to vector; that's how ivy works. But it's not how APL works. It usually doesn't matter, but for binary iota (index) it does. 3 iota 3 should yield 3, not 1. It yields 1 because the LHS becomes 3 3 3.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/54/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/54/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/59","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/59/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/59/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/59/events","html_url":"https://github.com/robpike/ivy/pull/59","id":532575567,"node_id":"MDExOlB1bGxSZXF1ZXN0MzQ4Nzk2ODEz","number":59,"title":"talks: fix dropped error","user":{"login":"alrs","id":28523,"node_id":"MDQ6VXNlcjI4NTIz","avatar_url":"https://avatars.githubusercontent.com/u/28523?v=4","gravatar_id":"","url":"https://api.github.com/users/alrs","html_url":"https://github.com/alrs","followers_url":"https://api.github.com/users/alrs/followers","following_url":"https://api.github.com/users/alrs/following{/other_user}","gists_url":"https://api.github.com/users/alrs/gists{/gist_id}","starred_url":"https://api.github.com/users/alrs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/alrs/subscriptions","organizations_url":"https://api.github.com/users/alrs/orgs","repos_url":"https://api.github.com/users/alrs/repos","events_url":"https://api.github.com/users/alrs/events{/privacy}","received_events_url":"https://api.github.com/users/alrs/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2019-12-04T10:04:29Z","updated_at":"2020-04-06T22:24:06Z","closed_at":"2019-12-04T19:52:43Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/59","html_url":"https://github.com/robpike/ivy/pull/59","diff_url":"https://github.com/robpike/ivy/pull/59.diff","patch_url":"https://github.com/robpike/ivy/pull/59.patch","merged_at":"2019-12-04T19:52:42Z"},"body":"This picks up a dropped error in the `talks` package.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/59/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/59/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/63","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/63/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/63/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/63/events","html_url":"https://github.com/robpike/ivy/issues/63","id":642597343,"node_id":"MDU6SXNzdWU2NDI1OTczNDM=","number":63,"title":"Monadic Flip and rot destructrively modify their input, Matrix product","user":{"login":"ghost","id":10137,"node_id":"MDQ6VXNlcjEwMTM3","avatar_url":"https://avatars.githubusercontent.com/u/10137?v=4","gravatar_id":"","url":"https://api.github.com/users/ghost","html_url":"https://github.com/ghost","followers_url":"https://api.github.com/users/ghost/followers","following_url":"https://api.github.com/users/ghost/following{/other_user}","gists_url":"https://api.github.com/users/ghost/gists{/gist_id}","starred_url":"https://api.github.com/users/ghost/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ghost/subscriptions","organizations_url":"https://api.github.com/users/ghost/orgs","repos_url":"https://api.github.com/users/ghost/repos","events_url":"https://api.github.com/users/ghost/events{/privacy}","received_events_url":"https://api.github.com/users/ghost/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2020-06-21T16:35:39Z","updated_at":"2020-06-21T23:33:42Z","closed_at":"2020-06-21T23:33:42Z","author_association":"NONE","active_lock_reason":null,"body":"Hi,\r\n\r\nThe monadic 'flip' and 'rot' operators destructrively modify their input. That doesn't look right to me. The matrix product +.* only works for square matrices.\r\n\r\nSee attached session transcript:\r\n\r\nterm% ivy\r\na=(2,3) rho iota 6\r\n\r\nb=(2,2) rho 4 -1 -1 4\r\n\r\nc=(2,2) rho iota 4\r\n\r\na\r\n1 2 3\r\n4 5 6\r\n\r\nb\r\n 4 -1\r\n-1 4\r\n\r\nc\r\n1 2\r\n3 4\r\n\r\nflip a\r\n4 5 6\r\n1 2 3\r\n\r\na\r\n4 5 6\r\n1 2 3\r\n\r\nflip a\r\n1 2 3\r\n4 5 6\r\n\r\n\r\n\r\na\r\n1 2 3\r\n4 5 6\r\n\r\na +.* b\r\nshape mismatch for inner product (2 3) times (2 2)\r\n\r\nb +.* c\r\n 1 4\r\n11 14\r\n\r\nb\r\n 4 -1\r\n-1 4\r\n\r\nc\r\n1 2\r\n3 4\r\n\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/63/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/63/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/62","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/62/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/62/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/62/events","html_url":"https://github.com/robpike/ivy/pull/62","id":607079257,"node_id":"MDExOlB1bGxSZXF1ZXN0NDA5MTMzMjM5","number":62,"title":"ivy/scan: try recognize bad numbers like \".\" and \"3e.\"","user":{"login":"yuanhh","id":1298735,"node_id":"MDQ6VXNlcjEyOTg3MzU=","avatar_url":"https://avatars.githubusercontent.com/u/1298735?v=4","gravatar_id":"","url":"https://api.github.com/users/yuanhh","html_url":"https://github.com/yuanhh","followers_url":"https://api.github.com/users/yuanhh/followers","following_url":"https://api.github.com/users/yuanhh/following{/other_user}","gists_url":"https://api.github.com/users/yuanhh/gists{/gist_id}","starred_url":"https://api.github.com/users/yuanhh/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yuanhh/subscriptions","organizations_url":"https://api.github.com/users/yuanhh/orgs","repos_url":"https://api.github.com/users/yuanhh/repos","events_url":"https://api.github.com/users/yuanhh/events{/privacy}","received_events_url":"https://api.github.com/users/yuanhh/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2020-04-26T18:22:36Z","updated_at":"2020-06-28T06:46:27Z","closed_at":"2020-06-28T06:46:27Z","author_association":"NONE","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/62","html_url":"https://github.com/robpike/ivy/pull/62","diff_url":"https://github.com/robpike/ivy/pull/62.diff","patch_url":"https://github.com/robpike/ivy/pull/62.patch","merged_at":null},"body":"maybe it could help recognize some bad number patterns","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/62/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/62/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/64","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/64/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/64/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/64/events","html_url":"https://github.com/robpike/ivy/issues/64","id":792757501,"node_id":"MDU6SXNzdWU3OTI3NTc1MDE=","number":64,"title":"text needs to understand formats","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2021-01-24T09:42:40Z","updated_at":"2021-04-27T00:15:46Z","closed_at":"2021-04-27T00:15:46Z","author_association":"OWNER","active_lock_reason":null,"body":"`\r\n\"%x\" text 1\r\n`\r\n\r\ndoes not produce what you'd expect. The problem is that formatOne assumes that the argument should be converted to float first. Instead, it should find the verb in the format and convert the argument according to that verb. For instance \"%d\" should be print 1/2 as 1/2, not %!d(*big.Float=0.5).\r\n\r\n\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/64/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/64/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/66","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/66/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/66/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/66/events","html_url":"https://github.com/robpike/ivy/issues/66","id":925457416,"node_id":"MDU6SXNzdWU5MjU0NTc0MTY=","number":66,"title":"Running \"ivy\" with empty vectors...","user":{"login":"jojomoore2007","id":31520139,"node_id":"MDQ6VXNlcjMxNTIwMTM5","avatar_url":"https://avatars.githubusercontent.com/u/31520139?v=4","gravatar_id":"","url":"https://api.github.com/users/jojomoore2007","html_url":"https://github.com/jojomoore2007","followers_url":"https://api.github.com/users/jojomoore2007/followers","following_url":"https://api.github.com/users/jojomoore2007/following{/other_user}","gists_url":"https://api.github.com/users/jojomoore2007/gists{/gist_id}","starred_url":"https://api.github.com/users/jojomoore2007/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jojomoore2007/subscriptions","organizations_url":"https://api.github.com/users/jojomoore2007/orgs","repos_url":"https://api.github.com/users/jojomoore2007/repos","events_url":"https://api.github.com/users/jojomoore2007/events{/privacy}","received_events_url":"https://api.github.com/users/jojomoore2007/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2021-06-19T19:55:15Z","updated_at":"2021-07-01T20:47:53Z","closed_at":"2021-07-01T20:43:36Z","author_association":"NONE","active_lock_reason":null,"body":"The 'ivy' operation returns the result of a given expression. This is usually perfectly fine, but becomes an issue when given an empty vector:\r\n```\r\nivy ''\r\n```\r\nThe above code returns `nil`. Not a vector, or a number. Just `nil`. This isn't enough to crash ivy on its own. However, when attempting to use it in an operation... things break. Attempting to run `ivy ivy ''` will cause Go to fully crash, returning the following error:\r\n```\r\npanic: runtime error: invalid memory address or nil pointer dereference [recovered]\r\n\tpanic: runtime error: invalid memory address or nil pointer dereference\r\n[signal SIGSEGV: segmentation violation code=0x1 addr=0x20 pc=0x503e46]\r\n\r\ngoroutine 1 [running]:\r\nrobpike.io/ivy/run.Run.func1(0x623ba0, 0xc4200ee000, 0xc42004fd01, 0x57a340, 0xc42009a008, 0xc42004fe48)\r\n\t/home/joey/go/src/robpike.io/ivy/run/run.go:58 +0x270\r\npanic(0x532aa0, 0x61b3c0)\r\n\t/usr/lib/go-1.10/src/runtime/panic.go:502 +0x229\r\nrobpike.io/ivy/parse.(*unary).Eval(0xc42008c2a0, 0x57ae20, 0xc42009f0e0, 0x499607, 0xc4200f4000)\r\n\t/home/joey/go/src/robpike.io/ivy/parse/parse.go:186 +0x56\r\nrobpike.io/ivy/exec.(*Context).Eval(0xc42009f0e0, 0xc420082370, 0x1, 0x1, 0x1, 0x0, 0x0)\r\n\t/home/joey/go/src/robpike.io/ivy/exec/context.go:116 +0xa1\r\nrobpike.io/ivy/run.Run(0xc4200ee000, 0x57ae20, 0xc42009f0e0, 0xc4200ea001, 0x1000)\r\n\t/home/joey/go/src/robpike.io/ivy/run/run.go:69 +0x1a1\r\nmain.main()\r\n\t/home/joey/go/src/robpike.io/ivy/ivy.go:101 +0x584\r\n```\r\n\r\nAs far as I can tell, the same problem occurs when `ivy ''` is passed as an argument to *any* operation.\r\n\r\nPossible fixes:\r\n\r\n- Make `ivy x` return the text result of an expression\r\n - Possibly also create a `val x` (or `value x`) operation that returns the actual value of an expression\r\n- Remove `ivy x`\r\n- Change `nil` values to empty vectors","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/66/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/66/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/61","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/61/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/61/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/61/events","html_url":"https://github.com/robpike/ivy/issues/61","id":577700319,"node_id":"MDU6SXNzdWU1Nzc3MDAzMTk=","number":61,"title":"Ivy Doc doesn't explain indexing operation '[ ]'","user":{"login":"9nut","id":616755,"node_id":"MDQ6VXNlcjYxNjc1NQ==","avatar_url":"https://avatars.githubusercontent.com/u/616755?v=4","gravatar_id":"","url":"https://api.github.com/users/9nut","html_url":"https://github.com/9nut","followers_url":"https://api.github.com/users/9nut/followers","following_url":"https://api.github.com/users/9nut/following{/other_user}","gists_url":"https://api.github.com/users/9nut/gists{/gist_id}","starred_url":"https://api.github.com/users/9nut/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/9nut/subscriptions","organizations_url":"https://api.github.com/users/9nut/orgs","repos_url":"https://api.github.com/users/9nut/repos","events_url":"https://api.github.com/users/9nut/events{/privacy}","received_events_url":"https://api.github.com/users/9nut/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2020-03-09T07:08:26Z","updated_at":"2021-07-05T21:42:10Z","closed_at":"2021-07-05T21:42:10Z","author_association":"NONE","active_lock_reason":null,"body":"Although there is an explanation of the indexing operation in demo.ivy, the doc only hints at it in the 'largest' op example.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/61/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/61/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/65","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/65/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/65/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/65/events","html_url":"https://github.com/robpike/ivy/issues/65","id":902691096,"node_id":"MDU6SXNzdWU5MDI2OTEwOTY=","number":65,"title":"Working Recursive Function","user":{"login":"jojomoore2007","id":31520139,"node_id":"MDQ6VXNlcjMxNTIwMTM5","avatar_url":"https://avatars.githubusercontent.com/u/31520139?v=4","gravatar_id":"","url":"https://api.github.com/users/jojomoore2007","html_url":"https://github.com/jojomoore2007","followers_url":"https://api.github.com/users/jojomoore2007/followers","following_url":"https://api.github.com/users/jojomoore2007/following{/other_user}","gists_url":"https://api.github.com/users/jojomoore2007/gists{/gist_id}","starred_url":"https://api.github.com/users/jojomoore2007/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jojomoore2007/subscriptions","organizations_url":"https://api.github.com/users/jojomoore2007/orgs","repos_url":"https://api.github.com/users/jojomoore2007/repos","events_url":"https://api.github.com/users/jojomoore2007/events{/privacy}","received_events_url":"https://api.github.com/users/jojomoore2007/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":5,"created_at":"2021-05-26T17:03:34Z","updated_at":"2021-07-08T03:31:41Z","closed_at":"2021-07-07T05:44:40Z","author_association":"NONE","active_lock_reason":null,"body":"Just thought you might want to see this:\r\n\r\n```\r\nop recursive x =\r\nivy (((x==0) sel '__=0'),((x==1) sel '__=1'),((x>=2) sel ('__=(recursive ',(text x-2),')+(recursive ',(text x-1),')')))\r\n__\r\n\r\n```\r\n\r\nIt uses the 'ivy' operator to run a command that sets '__' to a different type of value based on one of three conditions:\r\n\r\n1. if x==0, run `__=0`\r\n2. if x==1, run `__=1`\r\n3. if x>=2, run `__=(recursive x-2)+(recursive x-1)` (`x-2` and `x-1` are calculated first, then converted to text format and added to the string)\r\n\r\nIf you haven't noticed yet, this is a recursive implementation of the Fibonacci Sequence.\r\nThe command selector utilizes two properties I noticed in the 'sel' operator:\r\n\r\n- (0 sel x) is an empty vector\r\n- (1 sel x) is equivalent to x\r\n\r\nThe only other thing you need to do is concatenate the strings and execute the result. The output value gets stored in __, which can then easily be returned by the function.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/65/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/65/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/67","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/67/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/67/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/67/events","html_url":"https://github.com/robpike/ivy/pull/67","id":1071261585,"node_id":"PR_kwDOAZPgIc4vZN8w","number":67,"title":"ivy: fix buggy interaction between take and comma","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2021-12-04T17:55:22Z","updated_at":"2021-12-04T20:44:28Z","closed_at":"2021-12-04T20:30:37Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/67","html_url":"https://github.com/robpike/ivy/pull/67","diff_url":"https://github.com/robpike/ivy/pull/67.diff","patch_url":"https://github.com/robpike/ivy/pull/67.patch","merged_at":"2021-12-04T20:30:37Z"},"body":"\tx = 1 2 3 4 5\r\n\t(2 take x), 6 7\r\n\tx\r\n\r\nBecause (2 take x) slices x and comma appends,\r\nthis was overwriting x to be 1 2 6 7 5.\r\n\r\nFix twice, by making both take and comma trim capacity.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/67/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/67/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/68","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/68/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/68/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/68/events","html_url":"https://github.com/robpike/ivy/pull/68","id":1072396909,"node_id":"PR_kwDOAZPgIc4vc3Rc","number":68,"title":"ivy: various matrix-related improvements","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2021-12-06T17:12:53Z","updated_at":"2021-12-07T09:10:34Z","closed_at":"2021-12-07T09:10:34Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/68","html_url":"https://github.com/robpike/ivy/pull/68","diff_url":"https://github.com/robpike/ivy/pull/68.diff","patch_url":"https://github.com/robpike/ivy/pull/68.patch","merged_at":"2021-12-07T09:10:34Z"},"body":"Seven commits. Probably easiest to read the commits individually.\r\n\r\n- Add dyadic transpose, like 1 3 2 transp 3 4 5 rho 24:\r\n\r\n 1 3 2 transp 2 3 4 rho iota 24\r\n 1 5 9\r\n 2 6 10\r\n 3 7 11\r\n 4 8 12\r\n \r\n 13 17 21\r\n 14 18 22\r\n 15 19 23\r\n 16 20 24\r\n\r\n- Generalize catenate on matrices to handle existing vector generalizations, following APL semantics.\r\n Vectors have always handled combinations of scalars and vectors:\r\n\r\n 1, 2 3 4 5\r\n 1 2 3 4, 1\r\n 1 2, 3 4 4\r\n\r\n But matrices have had shape (n ...), (...) -> (n+1 ...) only (single element append). Added:\r\n\r\n (n ...), (...) -> (n+1 ...) # list, elem\r\n (...), (n ...) -> (n+1 ...) # elem, list\r\n (n ...), (m ...) -> (n+m ...) # list, list\r\n (1), (n ...) -> (n+1 ...) # scalar (extended), list\r\n (n ...), (1) -> (n+1 ...) # list, scalar (extended)\r\n\r\n- Preserve shape of left argument in 'in'. Now these two have the same result:\r\n\r\n (3 4 rho iota 12) == 4\r\n (3 4 rho iota 12) in 4\r\n\r\n Before the second result was a plain vector, not a (3 4).\r\n\r\n- Add context in conversion failures.\r\n\r\n (2 2 rho 1) transp (2 2 rho 1)\r\n transp: cannot convert matrix to vector\r\n\r\n (The \"transp: \" is new.)\r\n\r\n- Implement sel on matrices. Formerly only worked on vectors.\r\n\r\n 2 0 1 sel (2 3 rho iota 6)\r\n 1 1 3\r\n 4 4 6\r\n\r\n Following APL X/Y, sel applies to last axis. Can get first (X⌿Y) easily using transpose.\r\n\r\n- Implement take and drop on matrices. Formerly only worked on vectors.\r\n\r\n -1 2 take 3 4 5 rho iota 60\r\n 41 42 43 44 45\r\n 46 47 48 49 50\r\n \r\n 2 -2 drop 3 4 5 rho iota 60\r\n 41 42 43 44 45\r\n 46 47 48 49 50\r\n\r\n- Don't overparenthesize x[1] in )op display.\r\n\r\n op f x = x[1] + x[2]\r\n )op f\r\n op f x = x[1] + x[2]\r\n\r\n Used to print `(x[1])`.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/68/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/68/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/70","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/70/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/70/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/70/events","html_url":"https://github.com/robpike/ivy/issues/70","id":1075086111,"node_id":"I_kwDOAZPgIc5AFIMf","number":70,"title":"inverted arithmetic in matrix op vector","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2021-12-09T02:57:44Z","updated_at":"2021-12-09T07:33:02Z","closed_at":"2021-12-09T07:32:15Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"Been staring at this for a while and I think it must be a bug.\r\nA surprising one, but either that or I've missed something quite fundamental.\r\n\r\n```\r\n(2 2 rho 2 3 5 7) / (11 13)\r\n11/2 13/3\r\n11/5 13/7\r\n```\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/70/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/70/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/71","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/71/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/71/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/71/events","html_url":"https://github.com/robpike/ivy/issues/71","id":1076067464,"node_id":"I_kwDOAZPgIc5AI3yI","number":71,"title":"demo: crash since Config.bigOrigin is nil ","user":{"login":"arl","id":476650,"node_id":"MDQ6VXNlcjQ3NjY1MA==","avatar_url":"https://avatars.githubusercontent.com/u/476650?v=4","gravatar_id":"","url":"https://api.github.com/users/arl","html_url":"https://github.com/arl","followers_url":"https://api.github.com/users/arl/followers","following_url":"https://api.github.com/users/arl/following{/other_user}","gists_url":"https://api.github.com/users/arl/gists{/gist_id}","starred_url":"https://api.github.com/users/arl/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/arl/subscriptions","organizations_url":"https://api.github.com/users/arl/orgs","repos_url":"https://api.github.com/users/arl/repos","events_url":"https://api.github.com/users/arl/events{/privacy}","received_events_url":"https://api.github.com/users/arl/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2021-12-09T21:41:58Z","updated_at":"2021-12-09T22:48:38Z","closed_at":"2021-12-09T22:48:38Z","author_association":"NONE","active_lock_reason":null,"body":"Reproducer:\r\n```\r\n) demo\r\n# This is a demo of ivy. Type a newline to advance to each new step. Type one now.\r\n? 2 ** 32\r\npanic: runtime error: invalid memory address or nil pointer dereference [recovered]\r\n panic: runtime error: invalid memory address or nil pointer dereference [recovered]\r\n panic: runtime error: invalid memory address or nil pointer dereference\r\n[signal SIGSEGV: segmentation violation code=0x1 addr=0x0 pc=0x49ace4]\r\n\r\ngoroutine 6 [running]:\r\nrobpike.io/ivy/parse.(*Parser).runFromReader.func1()\r\n /home/aurelien/godev/pkg/mod/robpike.io/ivy@v0.1.7/parse/special.go:358 +0x1ea\r\npanic({0x4fa4e0, 0x5fbc80})\r\n /home/aurelien/sdk/go1.17.4/src/runtime/panic.go:1038 +0x215\r\nrobpike.io/ivy/parse.(*Parser).runUntilError.func1()\r\n /home/aurelien/godev/pkg/mod/robpike.io/ivy@v0.1.7/parse/special.go:384 +0x1ea\r\npanic({0x4fa4e0, 0x5fbc80})\r\n /home/aurelien/sdk/go1.17.4/src/runtime/panic.go:1038 +0x215\r\nmath/big.(*Int).Add(0xc0000a8080, 0x49a93f, 0x0)\r\n /home/aurelien/sdk/go1.17.4/src/math/big/int.go:118 +0x24\r\nrobpike.io/ivy/value.bigIntRand({0x544d70, 0xc0000753e0}, 0xffffffffffffffff, 0x4108b7)\r\n /home/aurelien/godev/pkg/mod/robpike.io/ivy@v0.1.7/value/unary.go:56 +0x77\r\nrobpike.io/ivy/value.unaryBigIntOp({0x544d70, 0xc0000753e0}, 0x5201e0, {0x544eb0, 0xc0000a8060})\r\n /home/aurelien/godev/pkg/mod/robpike.io/ivy@v0.1.7/value/unary.go:21 +0x8d\r\nrobpike.io/ivy/value.init.1.func2({0x544d70, 0xc0000753e0}, {0x544eb0, 0xc0000a8060})\r\n /home/aurelien/godev/pkg/mod/robpike.io/ivy@v0.1.7/value/unary.go:137 +0x71\r\nrobpike.io/ivy/value.(*unaryOp).EvalUnary(0xc00007e050, {0x544d70, 0xc0000753e0}, {0x544eb0, 0xc0000a8060})\r\n /home/aurelien/godev/pkg/mod/robpike.io/ivy@v0.1.7/value/eval.go:52 +0x119\r\nrobpike.io/ivy/exec.(*Context).EvalUnary(0xc0000753e0, {0xc0000a2020, 0x1}, {0x544eb0, 0xc0000a8060})\r\n /home/aurelien/godev/pkg/mod/robpike.io/ivy@v0.1.7/exec/context.go:138 +0x128\r\nrobpike.io/ivy/parse.(*unary).Eval(0xc0000a8000, {0x544d70, 0xc0000753e0})\r\n /home/aurelien/godev/pkg/mod/robpike.io/ivy@v0.1.7/parse/parse.go:193 +0x62\r\nrobpike.io/ivy/parse.(*Parser).runUntilError(0xc00009c000, {0x50f24a, 0x0})\r\n /home/aurelien/godev/pkg/mod/robpike.io/ivy@v0.1.7/parse/special.go:389 +0x113\r\nrobpike.io/ivy/parse.(*Parser).runFromReader(0xc000154d80, {0x544d70, 0xc0000753e0}, {0x50f24a, 0x0}, {0x541ca0, 0xc000176d80}, 0x0)\r\n /home/aurelien/godev/pkg/mod/robpike.io/ivy@v0.1.7/parse/special.go:362 +0x3ca\r\ncreated by robpike.io/ivy/parse.DemoRunner\r\n /home/aurelien/godev/pkg/mod/robpike.io/ivy@v0.1.7/parse/special.go:434 +0x1ef\r\n```\r\n\r\nThe fix is easy but since this is relatively minor (only happens during demo) and since there are different ways to fix it I'm not opening a PR, preferring to check if you're interested to fix this, and how.\r\n\r\nWhen the demo starts, `DemoRunner` is provided a zero-valued default `config.Config`. `Config.bigOrigin` is a nil `big.Int`. Also, `Config.BigOrigin()` doesn't call `Config.init()`. Finally, `Config.init` doesn't initialize `Config.bigOrigin`.\r\n\r\nOne possible fix:\r\n```\r\ndiff --git a/config/config.go b/config/config.go\r\nindex 74b2a8e..4c210d3 100644\r\n--- a/config/config.go\r\n+++ b/config/config.go\r\n@@ -57,6 +57,7 @@ func (c *Config) init() {\r\n \t\tc.output = os.Stdout\r\n \t\tc.errOutput = os.Stderr\r\n \t\tc.origin = 1\r\n+\t\tc.bigOrigin = big.NewInt(1)\r\n \t\tc.seed = time.Now().UnixNano()\r\n \t\tc.source = rand.NewSource(c.seed)\r\n \t\tc.random = rand.New(c.source)\r\n@@ -171,6 +172,7 @@ func (c *Config) Origin() int {\r\n \r\n // BigOrigin returns the index origin as a *big.Int.\r\n func (c *Config) BigOrigin() *big.Int {\r\n+\tc.init()\r\n \treturn c.bigOrigin\r\n }\r\n ```","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/71/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/71/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/73","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/73/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/73/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/73/events","html_url":"https://github.com/robpike/ivy/issues/73","id":1078828177,"node_id":"I_kwDOAZPgIc5ATZyR","number":73,"title":"comment in eval.go","user":{"login":"magical","id":175539,"node_id":"MDQ6VXNlcjE3NTUzOQ==","avatar_url":"https://avatars.githubusercontent.com/u/175539?v=4","gravatar_id":"","url":"https://api.github.com/users/magical","html_url":"https://github.com/magical","followers_url":"https://api.github.com/users/magical/followers","following_url":"https://api.github.com/users/magical/following{/other_user}","gists_url":"https://api.github.com/users/magical/gists{/gist_id}","starred_url":"https://api.github.com/users/magical/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/magical/subscriptions","organizations_url":"https://api.github.com/users/magical/orgs","repos_url":"https://api.github.com/users/magical/repos","events_url":"https://api.github.com/users/magical/events{/privacy}","received_events_url":"https://api.github.com/users/magical/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2021-12-13T18:05:24Z","updated_at":"2021-12-14T00:30:18Z","closed_at":"2021-12-14T00:30:06Z","author_association":"NONE","active_lock_reason":null,"body":"In binaryMatrixOp (eval.go):\r\n\r\nhttps://github.com/robpike/ivy/blob/485a172e0ebd748a16269f7d7bfffd753a44292a/value/eval.go#L394\r\n\r\nI believe this comment is backwards and this is actually the `Matrix op Vector` case. (Both this case and the previous one are labeled `Vector op Matrix`)","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/73/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/73/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/78","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/78/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/78/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/78/events","html_url":"https://github.com/robpike/ivy/pull/78","id":1081801376,"node_id":"PR_kwDOAZPgIc4v7bMo","number":78,"title":"doc: fix -1 in sgn operator","user":{"login":"posener","id":919294,"node_id":"MDQ6VXNlcjkxOTI5NA==","avatar_url":"https://avatars.githubusercontent.com/u/919294?v=4","gravatar_id":"","url":"https://api.github.com/users/posener","html_url":"https://github.com/posener","followers_url":"https://api.github.com/users/posener/followers","following_url":"https://api.github.com/users/posener/following{/other_user}","gists_url":"https://api.github.com/users/posener/gists{/gist_id}","starred_url":"https://api.github.com/users/posener/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/posener/subscriptions","organizations_url":"https://api.github.com/users/posener/orgs","repos_url":"https://api.github.com/users/posener/repos","events_url":"https://api.github.com/users/posener/events{/privacy}","received_events_url":"https://api.github.com/users/posener/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2021-12-16T05:58:07Z","updated_at":"2021-12-16T15:13:08Z","closed_at":"2021-12-16T15:13:01Z","author_association":"NONE","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/78","html_url":"https://github.com/robpike/ivy/pull/78","diff_url":"https://github.com/robpike/ivy/pull/78.diff","patch_url":"https://github.com/robpike/ivy/pull/78.patch","merged_at":null},"body":null,"reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/78/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/78/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/72","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/72/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/72/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/72/events","html_url":"https://github.com/robpike/ivy/pull/72","id":1077667199,"node_id":"PR_kwDOAZPgIc4vt2GY","number":72,"title":"ivy: in binary iota return highest index of left argument when not found","user":{"login":"pstuifzand","id":64524,"node_id":"MDQ6VXNlcjY0NTI0","avatar_url":"https://avatars.githubusercontent.com/u/64524?v=4","gravatar_id":"","url":"https://api.github.com/users/pstuifzand","html_url":"https://github.com/pstuifzand","followers_url":"https://api.github.com/users/pstuifzand/followers","following_url":"https://api.github.com/users/pstuifzand/following{/other_user}","gists_url":"https://api.github.com/users/pstuifzand/gists{/gist_id}","starred_url":"https://api.github.com/users/pstuifzand/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pstuifzand/subscriptions","organizations_url":"https://api.github.com/users/pstuifzand/orgs","repos_url":"https://api.github.com/users/pstuifzand/repos","events_url":"https://api.github.com/users/pstuifzand/events{/privacy}","received_events_url":"https://api.github.com/users/pstuifzand/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":4,"created_at":"2021-12-11T22:42:02Z","updated_at":"2021-12-16T20:08:44Z","closed_at":"2021-12-16T20:07:44Z","author_association":"NONE","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/72","html_url":"https://github.com/robpike/ivy/pull/72","diff_url":"https://github.com/robpike/ivy/pull/72.diff","patch_url":"https://github.com/robpike/ivy/pull/72.patch","merged_at":null},"body":"When origin is set to 0, currently iota will return 0 for missing items\r\nand the first items. When origin is set to 1, iota will also return for\r\nmissing items, but these can't be used as an index.\r\nThis change makes it so itota returns the max index of the left\r\nargument. This value can be used to index in an array.\r\n\r\n 1 -1 0[\"()\" iota \"(1 + (4 * 5))\"]\r\n 1 0 0 0 0 1 0 0 0 0 0 -1 -1","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/72/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/72/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/75","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/75/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/75/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/75/events","html_url":"https://github.com/robpike/ivy/pull/75","id":1081569164,"node_id":"PR_kwDOAZPgIc4v6qw9","number":75,"title":"ivy: fix indexed assignment bugs","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2021-12-15T22:22:30Z","updated_at":"2021-12-16T22:54:42Z","closed_at":"2021-12-16T22:54:42Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/75","html_url":"https://github.com/robpike/ivy/pull/75","diff_url":"https://github.com/robpike/ivy/pull/75.diff","patch_url":"https://github.com/robpike/ivy/pull/75.patch","merged_at":"2021-12-16T22:54:42Z"},"body":"Formerly:\r\n\r\n\tx = iota 3; x[1+2] = 4; x\r\n\trank error assigning (4) to x[1 + 2]\r\n\r\n\tx = 4 4 rho 0; y = 4 4; x[y[1]][y[2]] = 3; x\r\n\t0 3 0 0\r\n\t0 0 0 0\r\n\t0 0 0 0\r\n\t0 0 0 0\r\n\r\nNow:\r\n\r\n\tx = iota 3; x[1+2] = 4; x\r\n\t1 2 4\r\n\r\n\tx = 4 4 rho 0; y = 4 4; x[y[1]][y[2]] = 3; x\r\n\t0 0 0 0\r\n\t0 0 0 0\r\n\t0 0 0 0\r\n\t0 0 0 3","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/75/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/75/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/60","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/60/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/60/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/60/events","html_url":"https://github.com/robpike/ivy/issues/60","id":573201993,"node_id":"MDU6SXNzdWU1NzMyMDE5OTM=","number":60,"title":"inner product should be more forgiving about dimensionality","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2020-02-29T06:08:30Z","updated_at":"2021-12-16T22:56:25Z","closed_at":"2021-12-16T22:56:25Z","author_association":"OWNER","active_lock_reason":null,"body":"a=4 4 rho iota 16 \r\n\r\nb=4 2 rho iota 8\r\n\r\na+.*b\r\nshape mismatch for inner product (4 4) times (4 2)\r\n\r\nshould be:\r\n\r\n50 60\r\n114 140\r\n178 220\r\n242 300\r\n\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/60/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/60/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/79","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/79/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/79/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/79/events","html_url":"https://github.com/robpike/ivy/pull/79","id":1082306570,"node_id":"PR_kwDOAZPgIc4v9Fvu","number":79,"title":"scan: improve complexity for some cases","user":{"login":"posener","id":919294,"node_id":"MDQ6VXNlcjkxOTI5NA==","avatar_url":"https://avatars.githubusercontent.com/u/919294?v=4","gravatar_id":"","url":"https://api.github.com/users/posener","html_url":"https://github.com/posener","followers_url":"https://api.github.com/users/posener/followers","following_url":"https://api.github.com/users/posener/following{/other_user}","gists_url":"https://api.github.com/users/posener/gists{/gist_id}","starred_url":"https://api.github.com/users/posener/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/posener/subscriptions","organizations_url":"https://api.github.com/users/posener/orgs","repos_url":"https://api.github.com/users/posener/repos","events_url":"https://api.github.com/users/posener/events{/privacy}","received_events_url":"https://api.github.com/users/posener/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2021-12-16T15:08:44Z","updated_at":"2021-12-17T06:24:25Z","closed_at":"2021-12-17T06:09:44Z","author_association":"NONE","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/79","html_url":"https://github.com/robpike/ivy/pull/79","diff_url":"https://github.com/robpike/ivy/pull/79.diff","patch_url":"https://github.com/robpike/ivy/pull/79.patch","merged_at":null},"body":"Improve complexity for associative scan operators and for the \"-\" and \"/\" operators.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/79/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/79/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/84","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/84/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/84/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/84/events","html_url":"https://github.com/robpike/ivy/pull/84","id":1095837155,"node_id":"PR_kwDOAZPgIc4woqlS","number":84,"title":"ivy: use parallel execution when possible","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":4,"created_at":"2022-01-07T00:17:35Z","updated_at":"2022-01-08T21:34:55Z","closed_at":"2022-01-08T07:58:24Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/84","html_url":"https://github.com/robpike/ivy/pull/84","diff_url":"https://github.com/robpike/ivy/pull/84.diff","patch_url":"https://github.com/robpike/ivy/pull/84.patch","merged_at":"2022-01-08T07:58:24Z"},"body":"At least for built-in functions, element-wise or row-wise\r\noperations can safely run each element/row in parallel.\r\nThis lets Ivy use all of a computer instead of 1 core.\r\n\r\nOn my 8-physical, 16-logical core MacBook Pro:\r\n\r\n```\r\n% echo '+/+/+/2*(500 500 500 rho 1)*(iota 500)' | time ./ivy.old\r\n62625000000\r\n\r\n 35.34 real 45.45 user 6.66 sys\r\n% echo '+/+/+/2*(500 500 500 rho 1)*(iota 500)' | time ./ivy.new\r\n62625000000\r\n\r\n 8.27 real 84.08 user 8.75 sys\r\n%\r\n```\r\n\r\nI don't believe the doubled user time is real.\r\nIt is counting logical-core-user-time, and the two logical cores\r\nare both running and are therefore running at half speed.\r\nThat is, using the 16 cores is mostly the same as:\r\n\r\n```\r\n% echo '+/+/+/2*(500 500 500 rho 1)*(iota 500)' | GOMAXPROCS=8 time ./ivy.new\r\n62625000000\r\n\r\n 8.27 real 44.89 user 5.00 sys\r\n%\r\n```\r\n\r\nexcept of course for the bad accounting.\r\n\r\nPasses 'go test -race' but only in Go dev branch\r\n(needs CL 375935 fixing math/big).","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/84/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/84/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/85","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/85/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/85/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/85/events","html_url":"https://github.com/robpike/ivy/issues/85","id":1095854754,"node_id":"I_kwDOAZPgIc5BUWqi","number":85,"title":"vector-indexed indexing and assignment don't generalize","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2022-01-07T00:30:00Z","updated_at":"2022-01-09T00:59:19Z","closed_at":"2022-01-09T00:59:19Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"Consider:\n\n\t% ivy\n\tx = 3 4 rho iota 9\n\n\tx[2][2 3]\n\t6 7\n\nThis works fine today. But now consider\n\n\tx[2 3]\n\t5 6 7 8\n\t9 1 2 3\n\n\tx[2 3][1 4]\n\tindex 4 out of range (shape (2 4))\n\n\ty=x[2 3]; y[1 4]\n\tindex 4 out of range (shape (2 4))\n\nHere, x[2 3][1 4] is being treated the same as the y= version,\njust without the y.\n\nThere is no way in Ivy today to extract a sub-shape of a matrix,\nwhat in APL would be x[2 3; 1 4].\n\nI started working on making vector-indexed assignment work,\nso that things like APL's (from tryapl.org):\n\n\t x ← 3 4 ⍴⍳9\n\t x[2 3; 1 4] ← 0\n\t x\n\t1 2 3 4\n\t0 6 7 0\n\t0 1 2 0\n\nor\n\n\t x ← 3 4 ⍴⍳12\n\t x[2 3; 1 4] ← -2 2 ⍴⍳4\n\t x\n\t 1 2 3 4\n\t¯1 6 7 ¯2\n\t¯3 10 11 ¯4\n\nwould work. Those both work (in Ivy syntax) in my copy now,\nbut then I noticed that x[2 3][1 4] = x[2 3][1 4] does not,\nbecause x[2 3][1 4] didn't mean what I expected it to.\n\nI see three possible options:\n\n1. Do nothing, just don't provide that functionality.\n\n2. Switch to ; for separating indexes, like APL.\n\n3. Define that x[i][j][k] is processing 3 dimensions of x, not ((x[i])[j])[k]. Perhaps code that wants the latter interpretation can add parens.\n\nPerhaps there are more.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/85/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/85/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/89","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/89/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/89/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/89/events","html_url":"https://github.com/robpike/ivy/pull/89","id":1097264754,"node_id":"PR_kwDOAZPgIc4ws7sy","number":89,"title":"ivy: fix divide by zero in parallel binary transp with zero dimension","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2022-01-09T18:13:16Z","updated_at":"2022-01-13T15:11:14Z","closed_at":"2022-01-09T19:59:02Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/89","html_url":"https://github.com/robpike/ivy/pull/89","diff_url":"https://github.com/robpike/ivy/pull/89.diff","patch_url":"https://github.com/robpike/ivy/pull/89.patch","merged_at":"2022-01-09T19:59:02Z"},"body":"This used to crash with a divide-by-zero due to the new\r\n“start in the middle” calculation for the parallel case.\r\n\r\n\trho transp 1 0 2 rho 0\r\n\t\t2 0 1\r\n\r\nDon't do that.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/89/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/89/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/88","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/88/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/88/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/88/events","html_url":"https://github.com/robpike/ivy/pull/88","id":1097264664,"node_id":"PR_kwDOAZPgIc4ws7rq","number":88,"title":"ivy: make scan linear for associative operators","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2022-01-09T18:12:50Z","updated_at":"2022-01-13T15:11:17Z","closed_at":"2022-01-09T19:59:47Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/88","html_url":"https://github.com/robpike/ivy/pull/88","diff_url":"https://github.com/robpike/ivy/pull/88.diff","patch_url":"https://github.com/robpike/ivy/pull/88.patch","merged_at":"2022-01-09T19:59:47Z"},"body":"Scan is in general a quadratic operation, but associative operators\r\n(arguably the most useful ones for a scan) can run in linear time instead\r\nby working left-to-right and reusing results, instead of right-to-left.\r\n\r\nFor example:\r\n\r\n\t+\\ iota 100000\r\n\r\nruns in a small fraction of a second left-to-right\r\nbut takes about 10 minutes right-to-left.\r\n\r\nWork left-to-right for known associative operators for speed.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/88/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/88/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/87","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/87/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/87/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/87/events","html_url":"https://github.com/robpike/ivy/pull/87","id":1097264353,"node_id":"PR_kwDOAZPgIc4ws7oX","number":87,"title":"value: avoid spurious blank line at end of high-dimension matrix","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2022-01-09T18:11:35Z","updated_at":"2022-01-13T15:11:21Z","closed_at":"2022-01-09T19:58:43Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/87","html_url":"https://github.com/robpike/ivy/pull/87","diff_url":"https://github.com/robpike/ivy/pull/87.diff","patch_url":"https://github.com/robpike/ivy/pull/87.patch","merged_at":"2022-01-09T19:58:43Z"},"body":"Starting at 4-dimensional matrixes, the formatting ends with a blank line,\r\ncausing two blank lines in interactive mode as well as a trailing blank line\r\nin all tests.\r\n\r\n\t\"<\"; 2 rho 0; \">\"\r\n\t< 0 0 >\r\n\r\n\t\"<\"; 2 2 rho 0; \">\"\r\n\t< 0 0\r\n\t0 0 >\r\n\r\n\t\"<\"; 2 2 2 rho 0; \">\"\r\n\t< 0 0\r\n\t0 0\r\n\r\n\t0 0\r\n\t0 0 >\r\n\r\n\t\"<\"; 2 2 2 2 rho 0; \">\"\r\n\t<[1 * * *]:\r\n\t 0 0\r\n\t 0 0\r\n\r\n\t 0 0\r\n\t 0 0\r\n\r\n\t[2 * * *]:\r\n\t 0 0\r\n\t 0 0\r\n\r\n\t 0 0\r\n\t 0 0\r\n\t >\r\n\r\nNote the \">\" has moved to its own line starting at rank 4.\r\nThis commit removes that blank line.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/87/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/87/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/74","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/74/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/74/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/74/events","html_url":"https://github.com/robpike/ivy/pull/74","id":1081568917,"node_id":"PR_kwDOAZPgIc4v6qtf","number":74,"title":"ivy: make logs with integer values be integers","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":5,"created_at":"2021-12-15T22:22:07Z","updated_at":"2022-01-13T15:11:52Z","closed_at":"2022-01-07T00:40:37Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/74","html_url":"https://github.com/robpike/ivy/pull/74","diff_url":"https://github.com/robpike/ivy/pull/74.diff","patch_url":"https://github.com/robpike/ivy/pull/74.patch","merged_at":"2022-01-07T00:40:37Z"},"body":"Formerly:\r\n\r\n\t(2 log 8) rho 1\r\n\tbad shape for rho: (3) is not a small integer","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/74/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/74/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/81","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/81/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/81/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/81/events","html_url":"https://github.com/robpike/ivy/pull/81","id":1087175204,"node_id":"PR_kwDOAZPgIc4wM9Ct","number":81,"title":"ivy: fix multi-frame variable lookup bug","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2021-12-22T20:39:28Z","updated_at":"2022-01-13T15:11:55Z","closed_at":"2021-12-23T00:46:15Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/81","html_url":"https://github.com/robpike/ivy/pull/81","diff_url":"https://github.com/robpike/ivy/pull/81.diff","patch_url":"https://github.com/robpike/ivy/pull/81.patch","merged_at":"2021-12-23T00:46:15Z"},"body":"If g is calling f, f should never read or write g's variables.\r\nBut that's what Lookup was doing: reading g's variables\r\ninstead of globals of the same name. Assignment was correct.\r\nThis change factors out the lookup to share it between both.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/81/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/81/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/80","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/80/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/80/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/80/events","html_url":"https://github.com/robpike/ivy/pull/80","id":1087156328,"node_id":"PR_kwDOAZPgIc4wM5BG","number":80,"title":"ivy: optimize binary 'in' operator","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":4,"created_at":"2021-12-22T20:06:37Z","updated_at":"2022-01-13T15:11:56Z","closed_at":"2021-12-27T03:59:40Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/80","html_url":"https://github.com/robpike/ivy/pull/80","diff_url":"https://github.com/robpike/ivy/pull/80.diff","patch_url":"https://github.com/robpike/ivy/pull/80.patch","merged_at":null},"body":"The old 'in' implementation took quadratic time,\r\nwhich makes (iota 30000) in iota 30000 take 30 seconds\r\non my 2021 MacBook Pro.\r\n\r\nThis map-based implementation runs in a fraction of a second.\r\nFor very large or fractional values it degrades back to the quadratic\r\nlookup.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/80/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/80/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/76","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/76/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/76/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/76/events","html_url":"https://github.com/robpike/ivy/pull/76","id":1081570082,"node_id":"PR_kwDOAZPgIc4v6q9d","number":76,"title":"ivy: implement various multidimensional operators","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2021-12-15T22:23:49Z","updated_at":"2022-01-13T15:12:10Z","closed_at":"2021-12-16T22:56:24Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/76","html_url":"https://github.com/robpike/ivy/pull/76","diff_url":"https://github.com/robpike/ivy/pull/76.diff","patch_url":"https://github.com/robpike/ivy/pull/76.patch","merged_at":"2021-12-16T22:56:24Z"},"body":"The individual commits treat each operator or operator pair separately:\r\n\r\n - encode/decode\r\n - up/down\r\n - binary iota\r\n - inner product\r\n\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/76/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/76/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/77","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/77/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/77/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/77/events","html_url":"https://github.com/robpike/ivy/pull/77","id":1081681990,"node_id":"PR_kwDOAZPgIc4v7CjK","number":77,"title":"ivy: finish generalized indexing, fix shape of index result","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2021-12-16T01:46:02Z","updated_at":"2022-01-13T15:12:21Z","closed_at":"2021-12-16T22:53:10Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/77","html_url":"https://github.com/robpike/ivy/pull/77","diff_url":"https://github.com/robpike/ivy/pull/77.diff","patch_url":"https://github.com/robpike/ivy/pull/77.patch","merged_at":"2021-12-16T22:53:10Z"},"body":"Generalized indexing like 'ab'[3 3 rho 1 2] handled a few special cases.\r\nMake it handle all cases, simplifying the code. Also fix a few small\r\nsemantic problems in the process.\r\n\r\nFor example:\r\n\r\nIndexing a vector by a vector produces a vector nearly all the time.\r\nThis CL changes that to all the time, so that programs can have a\r\nconsistent expectation about the rank of the result and whether\r\nit can be indexed. For example, suppose we have a vector of values\r\nand want to extract the positive ones, extract those indexes from\r\na vector v, and then sort v.\r\n\r\n\tv = v[(x > 0) sel x]\r\n\tv = v[up v]\r\n\r\n(x > 0) sel x is always a vector. If it has length > 1, then v[(x > 0) sel x]\r\nis always a vector. But if it has length == 1, then before this CL,\r\nv[(x > 0) sel x] was a scalar, not a vector, making the indexing in\r\nv[up v] disallowed.\r\n\r\nThe shrinking of v in the single-element vector case was important\r\nbecause it made v[1] be a scalar: the code promoted both v and i\r\nin v[i] to the same overall type, meaning the scalar 1 was promoted\r\nto a vector 1, and then v[1] needed to drop the result back to scalar\r\nto be useful. Taking advantage of the recently added ability to have\r\ndifferent types for the two parts, this CL drops the promotion and\r\nthen preserves the form.\r\n\r\nThere were also a few other lesser surprises arising from promoting\r\nboth v and i in v[i] to the same overall type. For example (before this CL):\r\n\r\n\t1[1]\r\n\r\n\t1[1 2 3]\r\n\r\nNow both of those are diagnosed as erroneous.\r\n\r\nThese semantic problems are now tested, and the cleanup and changes\r\ndid not affect any existing test, suggesting that all the important\r\nbehaviors have been preserved.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/77/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/77/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/86","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/86/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/86/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/86/events","html_url":"https://github.com/robpike/ivy/pull/86","id":1096839227,"node_id":"PR_kwDOAZPgIc4wr2Db","number":86,"title":"ivy: add x[i;j;k] indexing syntax, including vector-indexed assignment","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":4,"created_at":"2022-01-08T05:23:46Z","updated_at":"2022-01-13T15:12:33Z","closed_at":"2022-01-09T00:59:19Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/86","html_url":"https://github.com/robpike/ivy/pull/86","diff_url":"https://github.com/robpike/ivy/pull/86.diff","patch_url":"https://github.com/robpike/ivy/pull/86.patch","merged_at":"2022-01-09T00:59:18Z"},"body":"This PR has two commits. \r\n\r\nThe first changes multidimensional indexing syntax from x[i][j][k] to x[i; j; k].\r\nEvaluating the old syntax works the same as before;\r\nthe new syntax is more efficient, because it doesn't\r\nmake temporary copies of x[i] and x[i][j].\r\nAssigning to the old syntax is now an error,\r\nbut the error message shows the new syntax.\r\n\r\nThe second rewrites indexing to fully support\r\nvectors and matrices as indexes, including in assignments.\r\n\r\nSee the individual commit messages for details.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/86/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/86/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/92","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/92/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/92/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/92/events","html_url":"https://github.com/robpike/ivy/pull/92","id":1101915743,"node_id":"PR_kwDOAZPgIc4w8N4z","number":92,"title":"ivy: avoid use of semantically-significant trailing whitespace in tests","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2022-01-13T15:09:47Z","updated_at":"2022-01-13T23:45:45Z","closed_at":"2022-01-13T23:45:45Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/92","html_url":"https://github.com/robpike/ivy/pull/92","diff_url":"https://github.com/robpike/ivy/pull/92.diff","patch_url":"https://github.com/robpike/ivy/pull/92.patch","merged_at":"2022-01-13T23:45:45Z"},"body":"Many editors today are configured to trim trailing spaces from files,\r\na kind of 'txtfmt' applied to all files to avoid spurious diffs when editing code.\r\nThe ivy test results depend on having tab-indented blank lines,\r\nwhich are difficult to preserve in those editors (and difficult to see in even more).\r\n\r\nThis commit changes the test reader to treat blank lines followed by\r\nindented lines as part of output, and blank lines followed by\r\nunindented lines as part of input, removing the need for\r\ntab-indented blank lines.\r\n\r\nSome test outputs check for a leading blank line, which cannot be\r\nexpressed directly using this rule. For those, any golden output line\r\nconsisting of a single \"#\" is read as a blank line.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/92/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/92/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/93","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/93/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/93/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/93/events","html_url":"https://github.com/robpike/ivy/pull/93","id":1101923819,"node_id":"PR_kwDOAZPgIc4w8Pl8","number":93,"title":"ivy: print real, user, and system time in )debug cpu","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2022-01-13T15:16:32Z","updated_at":"2022-01-14T03:42:47Z","closed_at":"2022-01-14T03:23:16Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/93","html_url":"https://github.com/robpike/ivy/pull/93","diff_url":"https://github.com/robpike/ivy/pull/93.diff","patch_url":"https://github.com/robpike/ivy/pull/93.patch","merged_at":"2022-01-14T03:23:16Z"},"body":"Now that ivy can run on multiple CPUs,\r\nit can be interesting to see exactly how\r\nmuch of the machine is being used.\r\nThis commit adds user and system time\r\nto the )debug cpu print, on systems that can.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/93/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/93/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/96","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/96/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/96/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/96/events","html_url":"https://github.com/robpike/ivy/issues/96","id":1102970408,"node_id":"I_kwDOAZPgIc5Bvf4o","number":96,"title":"Unary exp(-1) returns zero","user":{"login":"glxxyz","id":12117022,"node_id":"MDQ6VXNlcjEyMTE3MDIy","avatar_url":"https://avatars.githubusercontent.com/u/12117022?v=4","gravatar_id":"","url":"https://api.github.com/users/glxxyz","html_url":"https://github.com/glxxyz","followers_url":"https://api.github.com/users/glxxyz/followers","following_url":"https://api.github.com/users/glxxyz/following{/other_user}","gists_url":"https://api.github.com/users/glxxyz/gists{/gist_id}","starred_url":"https://api.github.com/users/glxxyz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/glxxyz/subscriptions","organizations_url":"https://api.github.com/users/glxxyz/orgs","repos_url":"https://api.github.com/users/glxxyz/repos","events_url":"https://api.github.com/users/glxxyz/events{/privacy}","received_events_url":"https://api.github.com/users/glxxyz/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2022-01-14T04:58:22Z","updated_at":"2022-01-14T09:19:32Z","closed_at":"2022-01-14T09:18:52Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"Values close to -1 are correct, but `**-1` returns zero:\r\n\r\n```\r\n**-.9999999999999\r\n0.367879441171\r\n\r\n**-1\r\n0\r\n\r\n**-1.000000000001\r\n0.367879441171\r\n```","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/96/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/96/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/98","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/98/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/98/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/98/events","html_url":"https://github.com/robpike/ivy/issues/98","id":1104052895,"node_id":"I_kwDOAZPgIc5BzoKf","number":98,"title":"Infinity crashes / hangs","user":{"login":"glxxyz","id":12117022,"node_id":"MDQ6VXNlcjEyMTE3MDIy","avatar_url":"https://avatars.githubusercontent.com/u/12117022?v=4","gravatar_id":"","url":"https://api.github.com/users/glxxyz","html_url":"https://github.com/glxxyz","followers_url":"https://api.github.com/users/glxxyz/followers","following_url":"https://api.github.com/users/glxxyz/following{/other_user}","gists_url":"https://api.github.com/users/glxxyz/gists{/gist_id}","starred_url":"https://api.github.com/users/glxxyz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/glxxyz/subscriptions","organizations_url":"https://api.github.com/users/glxxyz/orgs","repos_url":"https://api.github.com/users/glxxyz/repos","events_url":"https://api.github.com/users/glxxyz/events{/privacy}","received_events_url":"https://api.github.com/users/glxxyz/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2022-01-14T19:34:50Z","updated_at":"2022-01-14T20:08:22Z","closed_at":"2022-01-14T20:08:22Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"In #97 there's a way to return infinity but there may be other ways. Is it expected to have an infinity float within Ivy? Many operations work correctly, with some exceptions:\r\n\r\n```\r\n1 log 2\r\n+Inf\r\n\r\n# Exits with stack trace\r\n(1 log 2) - 1 log 2\r\npanic: subtraction of infinities with equal signs\r\n\r\n# Hangs, same for 'cos' and 'tan'\r\nsin 1 log 2\r\n```\r\n\r\nThere are similar issues with `+`, `/`, unary `**`, `cos`, and `tan`. Some others such as `log` and binary `**` don't converge.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/98/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/98/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/99","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/99/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/99/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/99/events","html_url":"https://github.com/robpike/ivy/pull/99","id":1104240594,"node_id":"PR_kwDOAZPgIc4xEPlk","number":99,"title":"value: prevent trig function endless loops for infinite argument","user":{"login":"glxxyz","id":12117022,"node_id":"MDQ6VXNlcjEyMTE3MDIy","avatar_url":"https://avatars.githubusercontent.com/u/12117022?v=4","gravatar_id":"","url":"https://api.github.com/users/glxxyz","html_url":"https://github.com/glxxyz","followers_url":"https://api.github.com/users/glxxyz/followers","following_url":"https://api.github.com/users/glxxyz/following{/other_user}","gists_url":"https://api.github.com/users/glxxyz/gists{/gist_id}","starred_url":"https://api.github.com/users/glxxyz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/glxxyz/subscriptions","organizations_url":"https://api.github.com/users/glxxyz/orgs","repos_url":"https://api.github.com/users/glxxyz/repos","events_url":"https://api.github.com/users/glxxyz/events{/privacy}","received_events_url":"https://api.github.com/users/glxxyz/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2022-01-15T00:39:50Z","updated_at":"2022-01-15T08:01:10Z","closed_at":"2022-01-15T08:01:10Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/99","html_url":"https://github.com/robpike/ivy/pull/99","diff_url":"https://github.com/robpike/ivy/pull/99.diff","patch_url":"https://github.com/robpike/ivy/pull/99.patch","merged_at":"2022-01-15T08:01:10Z"},"body":"sin, cos, and tan of infinity all looped endlessly inside twoPiReduce.\r\n\r\nPartial fix for #98 ","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/99/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/99/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/94","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/94/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/94/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/94/events","html_url":"https://github.com/robpike/ivy/pull/94","id":1101942848,"node_id":"PR_kwDOAZPgIc4w8TpK","number":94,"title":"ivy: fix )save of new index expression, multiline functions","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2022-01-13T15:32:29Z","updated_at":"2022-01-16T09:48:51Z","closed_at":"2022-01-16T09:48:51Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/94","html_url":"https://github.com/robpike/ivy/pull/94","diff_url":"https://github.com/robpike/ivy/pull/94.diff","patch_url":"https://github.com/robpike/ivy/pull/94.patch","merged_at":"2022-01-16T09:48:51Z"},"body":"The new index expression was not accounted for in the\r\nreference walk. This commit adds that.\r\n\r\nAlso, multiline functions were not followed by a blank line\r\nin the save output, meaning that the output of )save\r\ncould not be parsed back with )get. This commit adds a\r\nblank line in )save.\r\n\r\nI considered adding a blank line to Function.String,\r\nbut that changed the output of )op f to end in two blank lines,\r\none provided by Function.String and one provided by the\r\ninterpreter loop. That seemed like too much, so I put the\r\nspecial case into )save itself.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/94/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/94/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/91","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/91/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/91/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/91/events","html_url":"https://github.com/robpike/ivy/pull/91","id":1101914008,"node_id":"PR_kwDOAZPgIc4w8Ng6","number":91,"title":"ivy: make rectangle assignments run in parallel","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2022-01-13T15:08:22Z","updated_at":"2022-01-16T21:21:23Z","closed_at":"2022-01-16T20:33:39Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/91","html_url":"https://github.com/robpike/ivy/pull/91","diff_url":"https://github.com/robpike/ivy/pull/91.diff","patch_url":"https://github.com/robpike/ivy/pull/91.patch","merged_at":"2022-01-16T20:33:39Z"},"body":"Now that assignment can be multidimensional,\r\nit can be expensive. Make it cheaper when there are many CPUs.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/91/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/91/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/100","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/100/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/100/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/100/events","html_url":"https://github.com/robpike/ivy/issues/100","id":1105392622,"node_id":"I_kwDOAZPgIc5B4vPu","number":100,"title":"op on a vector using text","user":{"login":"hagna","id":216688,"node_id":"MDQ6VXNlcjIxNjY4OA==","avatar_url":"https://avatars.githubusercontent.com/u/216688?v=4","gravatar_id":"","url":"https://api.github.com/users/hagna","html_url":"https://github.com/hagna","followers_url":"https://api.github.com/users/hagna/followers","following_url":"https://api.github.com/users/hagna/following{/other_user}","gists_url":"https://api.github.com/users/hagna/gists{/gist_id}","starred_url":"https://api.github.com/users/hagna/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hagna/subscriptions","organizations_url":"https://api.github.com/users/hagna/orgs","repos_url":"https://api.github.com/users/hagna/repos","events_url":"https://api.github.com/users/hagna/events{/privacy}","received_events_url":"https://api.github.com/users/hagna/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2022-01-17T05:19:51Z","updated_at":"2022-01-17T19:25:58Z","closed_at":"2022-01-17T19:25:57Z","author_association":"NONE","active_lock_reason":null,"body":"```\r\nop pal x = t = '%d' text x; (rot t) *.== t\r\n```\r\n\r\nIs an attempt at palindrome, and it almost works:\r\n\r\n```\r\npal 1001\r\n1\r\n\r\npal 98\r\n0\r\n```\r\n\r\nI expected:\r\n\r\n```\r\npal 1001 1002\r\n1 0\r\n```\r\n\r\n\r\nBut I get\r\n\r\n```\r\npal 1001 1002\r\n0\r\n```\r\n\r\n\r\nThe text operator seems to include spaces, so maybe that's part of the problem?\r\n\r\n```\r\nrho \"%d\" text 1 2 3\r\n5\r\n```\r\n\r\n\r\n\r\n\r\n\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/100/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/100/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/102","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/102/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/102/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/102/events","html_url":"https://github.com/robpike/ivy/pull/102","id":1108107176,"node_id":"PR_kwDOAZPgIc4xQ5jC","number":102,"title":"demo: fix error handling","user":{"login":"alrs","id":28523,"node_id":"MDQ6VXNlcjI4NTIz","avatar_url":"https://avatars.githubusercontent.com/u/28523?v=4","gravatar_id":"","url":"https://api.github.com/users/alrs","html_url":"https://github.com/alrs","followers_url":"https://api.github.com/users/alrs/followers","following_url":"https://api.github.com/users/alrs/following{/other_user}","gists_url":"https://api.github.com/users/alrs/gists{/gist_id}","starred_url":"https://api.github.com/users/alrs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/alrs/subscriptions","organizations_url":"https://api.github.com/users/alrs/orgs","repos_url":"https://api.github.com/users/alrs/repos","events_url":"https://api.github.com/users/alrs/events{/privacy}","received_events_url":"https://api.github.com/users/alrs/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2022-01-19T13:32:28Z","updated_at":"2022-01-20T00:49:02Z","closed_at":"2022-01-20T00:49:02Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/102","html_url":"https://github.com/robpike/ivy/pull/102","diff_url":"https://github.com/robpike/ivy/pull/102.diff","patch_url":"https://github.com/robpike/ivy/pull/102.patch","merged_at":"2022-01-20T00:49:01Z"},"body":"This fixes the dropped `err` on `ioutil.WriteFile(\"demo.bad\"...)`, adds some constants for `demo.out` and `demo.bad`, and logs when cleanup of `demo.bad` fails.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/102/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/102/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/103","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/103/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/103/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/103/events","html_url":"https://github.com/robpike/ivy/issues/103","id":1111629993,"node_id":"I_kwDOAZPgIc5CQiCp","number":103,"title":"pfor doesn't catch panics","user":{"login":"rogpeppe","id":66491,"node_id":"MDQ6VXNlcjY2NDkx","avatar_url":"https://avatars.githubusercontent.com/u/66491?v=4","gravatar_id":"","url":"https://api.github.com/users/rogpeppe","html_url":"https://github.com/rogpeppe","followers_url":"https://api.github.com/users/rogpeppe/followers","following_url":"https://api.github.com/users/rogpeppe/following{/other_user}","gists_url":"https://api.github.com/users/rogpeppe/gists{/gist_id}","starred_url":"https://api.github.com/users/rogpeppe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rogpeppe/subscriptions","organizations_url":"https://api.github.com/users/rogpeppe/orgs","repos_url":"https://api.github.com/users/rogpeppe/repos","events_url":"https://api.github.com/users/rogpeppe/events{/privacy}","received_events_url":"https://api.github.com/users/rogpeppe/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2022-01-22T17:22:30Z","updated_at":"2022-01-23T01:01:29Z","closed_at":"2022-01-23T01:01:29Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"@rsc The parallel execution introduced by #84 doesn't seem to guard against the possibility of legitimate exceptions such as division by zero.\r\n\r\nFor example:\r\n\r\n```\r\n% ivy\r\n1 / 200 6 rho 0\r\npanic: division by zero\r\n\r\ngoroutine 46 [running]:\r\nrobpike.io/ivy/value.Errorf(...)\r\n\t/home/rogpeppe/src/go/src/github.com/rsc/ivy/value/value.go:49\r\nrobpike.io/ivy/value.init.0.func13({0x57cd88?, 0x543509?}, {0x57cce8?, 0xc000126400?}, {0x57cce8?, 0xc000126440?})\r\n\t/home/rogpeppe/src/go/src/github.com/rsc/ivy/value/binary.go:277 +0xab\r\nrobpike.io/ivy/value.(*binaryOp).EvalBinary(0xc0001242a0, {0x57cab8, 0xc000125260}, {0x57cd88, 0x632148}, {0x57cd88, 0x632140})\r\n\t/home/rogpeppe/src/go/src/github.com/rsc/ivy/value/eval.go:112 +0x2a8\r\nrobpike.io/ivy/exec.(*Context).EvalBinary(0xc000125260, {0x57cd88, 0x632148}, {0x543509, 0x1}, {0x57cd88, 0x632140})\r\n\t/home/rogpeppe/src/go/src/github.com/rsc/ivy/exec/context.go:172 +0x189\r\nrobpike.io/ivy/value.binaryMatrixOp.func1(0x0?, 0x4b0)\r\n\t/home/rogpeppe/src/go/src/github.com/rsc/ivy/value/eval.go:597 +0xfb\r\nrobpike.io/ivy/value.pfor.func1()\r\n\t/home/rogpeppe/src/go/src/github.com/rsc/ivy/value/eval.go:188 +0x67\r\ncreated by robpike.io/ivy/value.pfor\r\n\t/home/rogpeppe/src/go/src/github.com/rsc/ivy/value/eval.go:186 +0x107\r\n```\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/103/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/103/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/104","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/104/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/104/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/104/events","html_url":"https://github.com/robpike/ivy/pull/104","id":1111676302,"node_id":"PR_kwDOAZPgIc4xcqmB","number":104,"title":"ivy: bring panics back to main goroutine in pfor","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2022-01-22T20:15:28Z","updated_at":"2022-01-23T01:01:29Z","closed_at":"2022-01-23T01:01:29Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/104","html_url":"https://github.com/robpike/ivy/pull/104","diff_url":"https://github.com/robpike/ivy/pull/104.diff","patch_url":"https://github.com/robpike/ivy/pull/104.patch","merged_at":"2022-01-23T01:01:29Z"},"body":"This handles panics for problems like 'division by zero'.\r\n\r\nFixes #103.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/104/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/104/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/95","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/95/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/95/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/95/events","html_url":"https://github.com/robpike/ivy/issues/95","id":1102153717,"node_id":"I_kwDOAZPgIc5BsYf1","number":95,"title":"possible order of evaluation bug","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2022-01-13T18:40:15Z","updated_at":"2022-01-25T03:03:53Z","closed_at":"2022-01-25T03:03:53Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"Here is a way to test order of evaluation.\r\n\r\n```\r\n# Order of evaluation\r\ntags = 0 rho 0\r\nop f tag = tags; tags = tags, tag; 1\r\nop order x = x = tags; tags = 0 rho 0; x\r\nm = 1 1 rho 0\r\norder (f 1) + (f 2)\r\norder m[f 1; f 2]\r\norder +/ (f 1) (f 2)\r\n\t2 1\r\n\t2 1\r\n\t1 2\r\n```\r\n\r\nIt shows that in `(f 1) + (f 2)`, `(f 2)` runs first.\r\nAnd in `m[f 1; f 2]`, `f 2` runs first, which I preserved from the binary case.\r\nBut it also shows that in `+/ (f 1) (f 2)` and `g (f 1) (f 2)`, `(f 1)` runs first.\r\n\r\nThis confused me because to use a complex\r\nexpression multiple times,\r\nthe idiom from APL is something like\r\n\r\n m+m=complex thing\r\n\r\nbut it turns out to use it multiple times in a vector its the other way around:\r\n\r\n +/ (m=complex thing) m \r\n \r\nIs this correct?\r\nIs it documented somewhere?","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/95/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/95/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/97","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/97/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/97/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/97/events","html_url":"https://github.com/robpike/ivy/issues/97","id":1104047351,"node_id":"I_kwDOAZPgIc5Bzmz3","number":97,"title":"Possible base 1 log issue","user":{"login":"glxxyz","id":12117022,"node_id":"MDQ6VXNlcjEyMTE3MDIy","avatar_url":"https://avatars.githubusercontent.com/u/12117022?v=4","gravatar_id":"","url":"https://api.github.com/users/glxxyz","html_url":"https://github.com/glxxyz","followers_url":"https://api.github.com/users/glxxyz/followers","following_url":"https://api.github.com/users/glxxyz/following{/other_user}","gists_url":"https://api.github.com/users/glxxyz/gists{/gist_id}","starred_url":"https://api.github.com/users/glxxyz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/glxxyz/subscriptions","organizations_url":"https://api.github.com/users/glxxyz/orgs","repos_url":"https://api.github.com/users/glxxyz/repos","events_url":"https://api.github.com/users/glxxyz/events{/privacy}","received_events_url":"https://api.github.com/users/glxxyz/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2022-01-14T19:32:12Z","updated_at":"2022-01-25T07:42:36Z","closed_at":"2022-01-25T07:42:35Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"Base 1 logs give results that I didn't expect. I compared with a couple of other sources:\r\n\r\n```\r\n Ivy tryapl.org WolframAlpha\r\n ----------- ------------- ----------------\r\n1 log .5 | -Inf DOMAIN ERROR complex infinity\r\n |\r\n1 log 1 | 0 1 (undefined)\r\n |\r\n1 log 2 | +Inf DOMAIN ERROR complex infinity\r\n```\r\n\r\nPerhaps all three should report a base error?","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/97/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/97/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/105","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/105/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/105/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/105/events","html_url":"https://github.com/robpike/ivy/pull/105","id":1113356598,"node_id":"PR_kwDOAZPgIc4xiDkz","number":105,"title":"ivy: statically distinguish local from global variables","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2022-01-25T02:39:45Z","updated_at":"2022-01-25T23:27:09Z","closed_at":"2022-01-25T23:27:09Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/105","html_url":"https://github.com/robpike/ivy/pull/105","diff_url":"https://github.com/robpike/ivy/pull/105.diff","patch_url":"https://github.com/robpike/ivy/pull/105.patch","merged_at":"2022-01-25T23:27:08Z"},"body":"Following Python's lead, a local variable is one that is written\r\nbefore being read in the program execution order, and\r\na global variable is one that is read before being written.\r\n\r\nThe statement 'x;' serves to declare x as a global, assuming\r\nx has not been assigned yet. We could always define an operator too.\r\n\r\nBecause we have this analysis, we can also count the number\r\nof local variables, assign them indices, and use a slice instead of a map\r\nto hold them, so this change does that as well.\r\n\r\nFOR DISCUSSION. It is unclear whether this is the right rule,\r\nand probably there is still polishing to do. It is unclear where\r\ndoc changes should be applied, for example.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/105/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/105/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/82","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/82/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/82/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/82/events","html_url":"https://github.com/robpike/ivy/issues/82","id":1087197705,"node_id":"I_kwDOAZPgIc5AzVIJ","number":82,"title":"locals vs globals is unclear and can change unexpectedly","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2021-12-22T21:21:10Z","updated_at":"2022-01-25T23:27:10Z","closed_at":"2022-01-25T23:27:10Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"What does the variable name x mean in a function (user-defined operator) body?\r\nRight now the rule in function f is:\r\n(1) if x is the name of one of f's argument, then x refers to that local variable.\r\n(2) if x is the name of a global, then x refers to that global.\r\n(3) otherwise, x refers to a local variable (possibly not yet created).\r\n\r\nI sent PR #81 to fix a bug where Ivy wasn't respecting these rules (a definite bug fix),\r\nbut I wonder whether the rules should be changed anyway.\r\nConsider some function that uses (intended as local) variables in its implementation,\r\nlike this not-very-good Fibonacci function:\r\n\r\n```\r\n% ivy\r\nop fib n =\r\n\tn <= 1: n\r\n\ta = fib n-1\r\n\tb = fib n-2\r\n\ta + b\r\n\r\n\r\nfib 10\r\n55\r\n```\r\n\r\nNow suppose that is loaded from a library and we don't know how its implemented.\r\nAnd we are playing around:\r\n\r\n```\r\n% ivy -f fib.ivy\r\nfib 10\r\n55\r\n\r\na\r\nundefined variable \"a\"\r\n\r\na = 1\r\n\r\nfib 10\r\n5\r\n```\r\n\r\nCreating the global named 'a' changes the meaning of the fib function:\r\nwhat used to be a local variable becomes a global variable.\r\nThis means that functions using local variables aren't robust\r\nagainst the creation of globals that happen to use the same names.\r\nI think probably something should be done about that.\r\n\r\nPython has this problem too, and solves it by saying that the first\r\nuse of a variable in the function determines what it is.\r\nIf the first use is a write, then the name refers to a new local.\r\nIf the first use is a read, then the name can refer to a global.\r\nIf you want to override this, the special statement 'global x'\r\nforces the name to refer to a global. \r\nUse is not strictly in writing-code order: x = x+1 reads x before writing it,\r\nso it refers to a global if one exists.\r\nIvy could adopt this rule too, but in Python, I have a hard time remembering it,\r\nand while it usually does the right thing, it's mysterious when it doesn't.\r\nDefinitely one option though.\r\n\r\nAnother option would be to require saying 'global x' any time you\r\nwant to refer to a global. That would be easier to remember at least.\r\nbut maybe a bit too annoying.\r\n\r\nA third option would be, in a nod to Go's export rule, to say that\r\ninside functions, capitalized variables are always globals,\r\nwhile lowercase variables are always locals.\r\nThis would make it very clear at all mentions of a variable\r\nwhether it was private to the function or not.\r\nYou could still manipulate lowercase globals in the interactive loop,\r\nbut those would not be available to functions.\r\nLowercase globals would essentially be the local variables for the interactive loop.\r\n\r\nNot sure what the right answer is here.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/82/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/82/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/106","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/106/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/106/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/106/events","html_url":"https://github.com/robpike/ivy/issues/106","id":1118581297,"node_id":"I_kwDOAZPgIc5CrDIx","number":106,"title":"`)Erase` for global variables. ","user":{"login":"mselh","id":79106885,"node_id":"MDQ6VXNlcjc5MTA2ODg1","avatar_url":"https://avatars.githubusercontent.com/u/79106885?v=4","gravatar_id":"","url":"https://api.github.com/users/mselh","html_url":"https://github.com/mselh","followers_url":"https://api.github.com/users/mselh/followers","following_url":"https://api.github.com/users/mselh/following{/other_user}","gists_url":"https://api.github.com/users/mselh/gists{/gist_id}","starred_url":"https://api.github.com/users/mselh/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mselh/subscriptions","organizations_url":"https://api.github.com/users/mselh/orgs","repos_url":"https://api.github.com/users/mselh/repos","events_url":"https://api.github.com/users/mselh/events{/privacy}","received_events_url":"https://api.github.com/users/mselh/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2022-01-30T15:23:51Z","updated_at":"2022-01-31T04:10:34Z","closed_at":"2022-01-31T04:10:34Z","author_association":"NONE","active_lock_reason":null,"body":"with the commit, \r\n0290510180ee94f5732abf39074d5acf2b73432f\r\n\r\nAm I right in thinking, this makes sense now?\r\n\r\n![image](https://user-images.githubusercontent.com/79106885/151705436-eaab5c46-036e-42e5-bcd6-0c970721428e.png)\r\n\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/106/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/106/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/90","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/90/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/90/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/90/events","html_url":"https://github.com/robpike/ivy/pull/90","id":1098207385,"node_id":"PR_kwDOAZPgIc4wv-2x","number":90,"title":"ivy: complex number support","user":{"login":"glxxyz","id":12117022,"node_id":"MDQ6VXNlcjEyMTE3MDIy","avatar_url":"https://avatars.githubusercontent.com/u/12117022?v=4","gravatar_id":"","url":"https://api.github.com/users/glxxyz","html_url":"https://github.com/glxxyz","followers_url":"https://api.github.com/users/glxxyz/followers","following_url":"https://api.github.com/users/glxxyz/following{/other_user}","gists_url":"https://api.github.com/users/glxxyz/gists{/gist_id}","starred_url":"https://api.github.com/users/glxxyz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/glxxyz/subscriptions","organizations_url":"https://api.github.com/users/glxxyz/orgs","repos_url":"https://api.github.com/users/glxxyz/repos","events_url":"https://api.github.com/users/glxxyz/events{/privacy}","received_events_url":"https://api.github.com/users/glxxyz/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2022-01-10T17:59:52Z","updated_at":"2022-02-06T05:25:14Z","closed_at":"2022-01-11T05:18:34Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/90","html_url":"https://github.com/robpike/ivy/pull/90","diff_url":"https://github.com/robpike/ivy/pull/90.diff","patch_url":"https://github.com/robpike/ivy/pull/90.patch","merged_at":null},"body":"An idea for complex number support in ivy. Uses a Go-like complex number syntax instead of APL's `J`. Go's complex numbers weren't used for the implementation, instead the real and imaginary parts can be any ivy number type.\r\n\r\nAdds 3 unary operators real, imag, and phase. An `i` suffix that allows complex numbers to be input e.g. `2+3i`. \r\n The `value.Complex` implementation could be improved by removing some of the EvalUnary/EvalBinary; this was quick to implement and it maintains the number types wherever possible. Tests aren't exhaustive- the whole approach may be a non-starter.\r\n\r\nThis may not be something that's even desirable to have in ivy, I noticed a mention of 'imaginary' in scan.go though so maybe complex number support was considered at one time? https://github.com/robpike/ivy/blob/c38c34e9eb24ab33e88f1a92ff5d825b32296e6b/scan/scan.go#L451","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/90/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/90/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/107","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/107/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/107/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/107/events","html_url":"https://github.com/robpike/ivy/issues/107","id":1125494750,"node_id":"I_kwDOAZPgIc5DFa_e","number":107,"title":"value: internal evaluation must use builtins","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2022-02-07T04:27:44Z","updated_at":"2022-02-07T09:33:28Z","closed_at":"2022-02-07T09:33:28Z","author_association":"OWNER","active_lock_reason":null,"body":"This program:\r\n\r\nop atan x = 0j0.5 * log(1-x)/1+z\r\n\r\nis the formula for the atan of complex x. The formula is right but the evaluation is not, because internally log of a complex number will call atan, and get this one instead of the real atan. Trouble ensues, to put it politely.\r\n\r\nInternal calls to things like EvalUnary(c, \"atan\") should be guaranteed to get the real one. Should be easy if we have a builtin context. Or maybe not.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/107/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/107/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/108","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/108/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/108/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/108/events","html_url":"https://github.com/robpike/ivy/issues/108","id":1140323474,"node_id":"I_kwDOAZPgIc5D9_SS","number":108,"title":"For A in [-2, 0) and B an even number, A**B returns 1","user":{"login":"n-riesco","id":6199391,"node_id":"MDQ6VXNlcjYxOTkzOTE=","avatar_url":"https://avatars.githubusercontent.com/u/6199391?v=4","gravatar_id":"","url":"https://api.github.com/users/n-riesco","html_url":"https://github.com/n-riesco","followers_url":"https://api.github.com/users/n-riesco/followers","following_url":"https://api.github.com/users/n-riesco/following{/other_user}","gists_url":"https://api.github.com/users/n-riesco/gists{/gist_id}","starred_url":"https://api.github.com/users/n-riesco/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/n-riesco/subscriptions","organizations_url":"https://api.github.com/users/n-riesco/orgs","repos_url":"https://api.github.com/users/n-riesco/repos","events_url":"https://api.github.com/users/n-riesco/events{/privacy}","received_events_url":"https://api.github.com/users/n-riesco/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2022-02-16T17:08:18Z","updated_at":"2022-02-16T21:48:04Z","closed_at":"2022-02-16T21:48:04Z","author_association":"NONE","active_lock_reason":null,"body":"```\r\n$ go version\r\ngo version go1.17.7 linux/amd64\r\n\r\n$ go install robpike.io/ivy@latest\r\ngo: downloading robpike.io/ivy v0.2.6\r\n\r\n$ ivy\r\n-0.01 -0.1 -0.2 -0.21 -0.201 -0.3 ** 0\r\n1 1 1 1 1 1\r\n\r\n-0.01 -0.1 -0.2 -0.21 -0.201 -0.3 ** 1\r\n-1/100 -1/10 -1/5 -21/100 -201/1000 -3/10\r\n\r\n-0.01 -0.1 -0.2 -0.21 -0.201 -0.3 ** 2\r\n1 1 1 441/10000 40401/1000000 9/100\r\n\r\n-0.01 -0.1 -0.2 -0.21 -0.201 -0.3 ** 3\r\n-1/100 -1/10 -1/5 -9261/1000000 -8120601/1000000000 -27/1000\r\n\r\n-0.01 -0.1 -0.2 -0.21 -0.201 -0.3 ** 4\r\n1 1 1 194481/100000000 1632240801/1000000000000 81/10000\r\n\r\n-0.01 -0.1 -0.2 -0.21 -0.201 -0.3 ** 6\r\n1 1 1 85766121/1000000000000 65944160601201/1000000000000000000 729/1000000\r\n```","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/108/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/108/timeline","performed_via_github_app":null,"state_reason":"completed"}]179 127451 GET https://api.github.com/repositories/26468385/issues?direction=asc&page=2&per_page=100&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:47 GMT Etag: W/"dfdd1e57d024c9c57fcb32477f0f56cbd35e16b5a02769ad8b21252c0a60e38e" Link: <https://api.github.com/repositories/26468385/issues?direction=asc&page=1&per_page=100&sort=updated&state=all>; rel="prev", <https://api.github.com/repositories/26468385/issues?direction=asc&page=1&per_page=100&sort=updated&state=all>; rel="first" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EB34C:334589:665E33AF X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4998 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 2 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/robpike/ivy/issues/101","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/101/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/101/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/101/events","html_url":"https://github.com/robpike/ivy/pull/101","id":1107205733,"node_id":"PR_kwDOAZPgIc4xN9km","number":101,"title":"run: add // +build comment to fix build on go 1.16","user":{"login":"smasher164","id":12636891,"node_id":"MDQ6VXNlcjEyNjM2ODkx","avatar_url":"https://avatars.githubusercontent.com/u/12636891?v=4","gravatar_id":"","url":"https://api.github.com/users/smasher164","html_url":"https://github.com/smasher164","followers_url":"https://api.github.com/users/smasher164/followers","following_url":"https://api.github.com/users/smasher164/following{/other_user}","gists_url":"https://api.github.com/users/smasher164/gists{/gist_id}","starred_url":"https://api.github.com/users/smasher164/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/smasher164/subscriptions","organizations_url":"https://api.github.com/users/smasher164/orgs","repos_url":"https://api.github.com/users/smasher164/repos","events_url":"https://api.github.com/users/smasher164/events{/privacy}","received_events_url":"https://api.github.com/users/smasher164/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2022-01-18T18:00:35Z","updated_at":"2022-02-28T05:30:17Z","closed_at":"2022-01-18T21:04:22Z","author_association":"NONE","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/101","html_url":"https://github.com/robpike/ivy/pull/101","diff_url":"https://github.com/robpike/ivy/pull/101.diff","patch_url":"https://github.com/robpike/ivy/pull/101.patch","merged_at":null},"body":"Per the go 1.16 directive in the go.mod, fix the error\r\n\r\n\t//go:build comment without // +build comment\r\n\r\nencountered on go 1.16 by adding the legacy build comment.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/101/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/101/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/109","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/109/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/109/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/109/events","html_url":"https://github.com/robpike/ivy/pull/109","id":1170594137,"node_id":"PR_kwDOAZPgIc40gsMo","number":109,"title":"ivy: update go.mod version to agree with README and update a comment in scanner","user":{"login":"wgrr","id":16732610,"node_id":"MDQ6VXNlcjE2NzMyNjEw","avatar_url":"https://avatars.githubusercontent.com/u/16732610?v=4","gravatar_id":"","url":"https://api.github.com/users/wgrr","html_url":"https://github.com/wgrr","followers_url":"https://api.github.com/users/wgrr/followers","following_url":"https://api.github.com/users/wgrr/following{/other_user}","gists_url":"https://api.github.com/users/wgrr/gists{/gist_id}","starred_url":"https://api.github.com/users/wgrr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wgrr/subscriptions","organizations_url":"https://api.github.com/users/wgrr/orgs","repos_url":"https://api.github.com/users/wgrr/repos","events_url":"https://api.github.com/users/wgrr/events{/privacy}","received_events_url":"https://api.github.com/users/wgrr/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2022-03-16T06:20:37Z","updated_at":"2022-03-18T01:23:03Z","closed_at":"2022-03-18T01:23:03Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/109","html_url":"https://github.com/robpike/ivy/pull/109","diff_url":"https://github.com/robpike/ivy/pull/109.diff","patch_url":"https://github.com/robpike/ivy/pull/109.patch","merged_at":"2022-03-18T01:23:03Z"},"body":null,"reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/109/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/109/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/110","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/110/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/110/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/110/events","html_url":"https://github.com/robpike/ivy/issues/110","id":1170596019,"node_id":"I_kwDOAZPgIc5FxeCz","number":110,"title":"scanner doesn't understand go 1.13 number syntax","user":{"login":"wgrr","id":16732610,"node_id":"MDQ6VXNlcjE2NzMyNjEw","avatar_url":"https://avatars.githubusercontent.com/u/16732610?v=4","gravatar_id":"","url":"https://api.github.com/users/wgrr","html_url":"https://github.com/wgrr","followers_url":"https://api.github.com/users/wgrr/followers","following_url":"https://api.github.com/users/wgrr/following{/other_user}","gists_url":"https://api.github.com/users/wgrr/gists{/gist_id}","starred_url":"https://api.github.com/users/wgrr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wgrr/subscriptions","organizations_url":"https://api.github.com/users/wgrr/orgs","repos_url":"https://api.github.com/users/wgrr/repos","events_url":"https://api.github.com/users/wgrr/events{/privacy}","received_events_url":"https://api.github.com/users/wgrr/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":4,"created_at":"2022-03-16T06:23:16Z","updated_at":"2022-03-18T12:50:37Z","closed_at":"2022-03-18T12:50:37Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"i quickly gonne through the code to understand this so correct me if i'm wrong, *i think* who do the job in ivy to actually parse the number is the parser with Go's strconv.ParseInt, but that changed in go 1.13, so such input to ivy does nothing, no errors neither yields results.\r\n\r\n```\r\n1_0 ** 2\r\n\r\n```","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/110/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/110/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/111","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/111/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/111/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/111/events","html_url":"https://github.com/robpike/ivy/issues/111","id":1229700676,"node_id":"I_kwDOAZPgIc5JS75E","number":111,"title":"multi-dimensional indexing question","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2022-05-09T13:20:47Z","updated_at":"2022-05-10T01:37:39Z","closed_at":"2022-05-10T01:37:39Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"_Originally posted by @fumin in https://github.com/robpike/ivy/issues/28#issuecomment-1120686350_:\r\n\r\nWhy does `(5 5 rho iota 25)[3 2; 1 2 3]` return the following?\r\n\r\n```\r\n11 12\r\n13 6\r\n 7 8\r\n```\r\n\r\nI was expecting\r\n\r\n```\r\n11 12 13 \r\n6 7 8\r\n```\r\n\r\nwhich is also what's returned by https://tryapl.org/ with the expression `(5 5 ⍴ ⍳ 25)[3 2; 1 2 3]`.\r\n\r\n<details>\r\n <summary>Below is my investigation</summary> \r\n\r\n```\r\n(5 5 rho iota 25)[3 2; 1]\r\n11 6\r\n\r\n(5 5 rho iota 25)[3 2; 1 2]\r\n11 12\r\n 6 7\r\n\r\n(5 5 rho iota 25)[3 2; 1 2 3]\r\n11 12\r\n13 6\r\n 7 8\r\n```\r\n</details>\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/111/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/111/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/112","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/112/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/112/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/112/events","html_url":"https://github.com/robpike/ivy/pull/112","id":1229741334,"node_id":"PR_kwDOAZPgIc43gQH9","number":112,"title":"ivy: fix matrix index of matrix","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2022-05-09T13:47:59Z","updated_at":"2022-05-10T01:37:39Z","closed_at":"2022-05-10T01:37:39Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/112","html_url":"https://github.com/robpike/ivy/pull/112","diff_url":"https://github.com/robpike/ivy/pull/112.diff","patch_url":"https://github.com/robpike/ivy/pull/112.patch","merged_at":"2022-05-10T01:37:39Z"},"body":"The right-to-left evaluation order for indexes was causing the\r\naccumulation of the shape to end up reversed. Fix that by doing\r\nan additional reverse after the loop.\r\n\r\nFixes #111.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/112/reactions","total_count":2,"+1":0,"-1":0,"laugh":0,"hooray":2,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/112/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/114","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/114/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/114/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/114/events","html_url":"https://github.com/robpike/ivy/issues/114","id":1276624511,"node_id":"I_kwDOAZPgIc5MF75_","number":114,"title":"bad number syntax for 08 & 09","user":{"login":"sylr","id":153052,"node_id":"MDQ6VXNlcjE1MzA1Mg==","avatar_url":"https://avatars.githubusercontent.com/u/153052?v=4","gravatar_id":"","url":"https://api.github.com/users/sylr","html_url":"https://github.com/sylr","followers_url":"https://api.github.com/users/sylr/followers","following_url":"https://api.github.com/users/sylr/following{/other_user}","gists_url":"https://api.github.com/users/sylr/gists{/gist_id}","starred_url":"https://api.github.com/users/sylr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sylr/subscriptions","organizations_url":"https://api.github.com/users/sylr/orgs","repos_url":"https://api.github.com/users/sylr/repos","events_url":"https://api.github.com/users/sylr/events{/privacy}","received_events_url":"https://api.github.com/users/sylr/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2022-06-20T09:19:38Z","updated_at":"2022-06-20T10:26:56Z","closed_at":"2022-06-20T10:08:43Z","author_association":"NONE","active_lock_reason":null,"body":"```\r\n0 60 decode 1 07\r\n67\r\n\r\n0 60 decode 1 08\r\nbad number syntax: 08\r\n\r\n0 60 decode 1 09\r\nbad number syntax: 09\r\n\r\n0 60 decode 1 10\r\n70\r\n```\r\n\r\n```\r\n$ go version -m $(which ivy)\r\n/Users/sylvain/go/bin/ivy: go1.18.3\r\n\tpath\trobpike.io/ivy\r\n\tmod\trobpike.io/ivy\tv0.2.8\th1:Z6y5MU6p415h2cMo1ab8A5EOuIdnIh2ES905k4DSMAI=\r\n\tbuild\t-compiler=gc\r\n\tbuild\tCGO_ENABLED=1\r\n\tbuild\tCGO_CFLAGS=\r\n\tbuild\tCGO_CPPFLAGS=\r\n\tbuild\tCGO_CXXFLAGS=\r\n\tbuild\tCGO_LDFLAGS=\r\n\tbuild\tGOARCH=arm64\r\n\tbuild\tGOOS=darwin\r\n```","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/114/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/114/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/115","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/115/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/115/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/115/events","html_url":"https://github.com/robpike/ivy/issues/115","id":1391736089,"node_id":"I_kwDOAZPgIc5S9DUZ","number":115,"title":"iOS app fails to open, missing from the app store.","user":{"login":"tavi-vi","id":94469945,"node_id":"U_kgDOBaF_OQ","avatar_url":"https://avatars.githubusercontent.com/u/94469945?v=4","gravatar_id":"","url":"https://api.github.com/users/tavi-vi","html_url":"https://github.com/tavi-vi","followers_url":"https://api.github.com/users/tavi-vi/followers","following_url":"https://api.github.com/users/tavi-vi/following{/other_user}","gists_url":"https://api.github.com/users/tavi-vi/gists{/gist_id}","starred_url":"https://api.github.com/users/tavi-vi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tavi-vi/subscriptions","organizations_url":"https://api.github.com/users/tavi-vi/orgs","repos_url":"https://api.github.com/users/tavi-vi/repos","events_url":"https://api.github.com/users/tavi-vi/events{/privacy}","received_events_url":"https://api.github.com/users/tavi-vi/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2022-09-30T02:40:55Z","updated_at":"2022-09-30T06:11:47Z","closed_at":"2022-09-30T04:34:41Z","author_association":"NONE","active_lock_reason":null,"body":"The iOS app seems to not work anymore, it simply fails to open. I recently updated to iOS 16.0, but that could just be coincidental timing. It seems to be missing from the app store as well.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/115/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/115/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/116","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/116/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/116/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/116/events","html_url":"https://github.com/robpike/ivy/issues/116","id":1402141075,"node_id":"I_kwDOAZPgIc5TkvmT","number":116,"title":"print version number","user":{"login":"smasher164","id":12636891,"node_id":"MDQ6VXNlcjEyNjM2ODkx","avatar_url":"https://avatars.githubusercontent.com/u/12636891?v=4","gravatar_id":"","url":"https://api.github.com/users/smasher164","html_url":"https://github.com/smasher164","followers_url":"https://api.github.com/users/smasher164/followers","following_url":"https://api.github.com/users/smasher164/following{/other_user}","gists_url":"https://api.github.com/users/smasher164/gists{/gist_id}","starred_url":"https://api.github.com/users/smasher164/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/smasher164/subscriptions","organizations_url":"https://api.github.com/users/smasher164/orgs","repos_url":"https://api.github.com/users/smasher164/repos","events_url":"https://api.github.com/users/smasher164/events{/privacy}","received_events_url":"https://api.github.com/users/smasher164/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2022-10-09T03:58:23Z","updated_at":"2022-10-09T14:12:56Z","closed_at":"2022-10-09T14:12:56Z","author_association":"NONE","active_lock_reason":null,"body":"I've been updating the [ivy package](https://github.com/NixOS/nixpkgs/blob/nixos-unstable/pkgs/development/interpreters/ivy/default.nix#L20) for the Nix package manager, and when trying to validate that the new binary I had built was working correctly, I noticed there was no way to get the version number from the ivy command.\r\n\r\nThis isn't strictly necessary since I compared the hash of the previous binary to the current one, but it would be convenient to know from just running `ivy -version`. Is this something you'd be interested in supporting?","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/116/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/116/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/119","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/119/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/119/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/119/events","html_url":"https://github.com/robpike/ivy/issues/119","id":1473843407,"node_id":"I_kwDOAZPgIc5X2RDP","number":119,"title":"\"unknown <nil> in references\" when defining an op which uses placeholder indices","user":{"login":"magical","id":175539,"node_id":"MDQ6VXNlcjE3NTUzOQ==","avatar_url":"https://avatars.githubusercontent.com/u/175539?v=4","gravatar_id":"","url":"https://api.github.com/users/magical","html_url":"https://github.com/magical","followers_url":"https://api.github.com/users/magical/followers","following_url":"https://api.github.com/users/magical/following{/other_user}","gists_url":"https://api.github.com/users/magical/gists{/gist_id}","starred_url":"https://api.github.com/users/magical/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/magical/subscriptions","organizations_url":"https://api.github.com/users/magical/orgs","repos_url":"https://api.github.com/users/magical/repos","events_url":"https://api.github.com/users/magical/events{/privacy}","received_events_url":"https://api.github.com/users/magical/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2022-12-03T08:21:05Z","updated_at":"2022-12-03T08:47:52Z","closed_at":"2022-12-03T08:47:52Z","author_association":"NONE","active_lock_reason":null,"body":"```\r\n% rlwrap ivy\r\n> op foo a = a[;1]\r\nunknown <nil> in references\r\n\r\n> foo 3 3 rho iota 9 # still works ok\r\n1 4 7\r\n\r\n```","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/119/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/119/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/118","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/118/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/118/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/118/events","html_url":"https://github.com/robpike/ivy/issues/118","id":1473819422,"node_id":"I_kwDOAZPgIc5X2LMe","number":118,"title":"iota is inconsistent about which index it returns when there are mulitple matches","user":{"login":"magical","id":175539,"node_id":"MDQ6VXNlcjE3NTUzOQ==","avatar_url":"https://avatars.githubusercontent.com/u/175539?v=4","gravatar_id":"","url":"https://api.github.com/users/magical","html_url":"https://github.com/magical","followers_url":"https://api.github.com/users/magical/followers","following_url":"https://api.github.com/users/magical/following{/other_user}","gists_url":"https://api.github.com/users/magical/gists{/gist_id}","starred_url":"https://api.github.com/users/magical/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/magical/subscriptions","organizations_url":"https://api.github.com/users/magical/orgs","repos_url":"https://api.github.com/users/magical/repos","events_url":"https://api.github.com/users/magical/events{/privacy}","received_events_url":"https://api.github.com/users/magical/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":4,"created_at":"2022-12-03T07:15:15Z","updated_at":"2022-12-03T09:45:49Z","closed_at":"2022-12-03T09:45:49Z","author_association":"NONE","active_lock_reason":null,"body":"testcase.ivy:\r\n```\r\n\"12301230\" iota \"1\"\r\n\"12301230\" iota \"2\"\r\n\"12301230\" iota \"3\"\r\n\"12301230\" iota \"0\"\r\n```\r\n\r\nI would expect this to print 1 2 3 4, but using the latest version (0.2.9) I get:\r\n\r\n```\r\n% ivy testcase.ivy\r\n1\r\n6\r\n3\r\n8\r\n```\r\n\r\nUsing an earlier version of ivy, i see the expected results. (Not sure which version exactly, but it's about a year old)\r\n```\r\n% earlier/bin/ivy testcase.ivy\r\n1\r\n2\r\n3\r\n4\r\n```","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/118/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/118/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/121","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/121/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/121/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/121/events","html_url":"https://github.com/robpike/ivy/issues/121","id":1507567660,"node_id":"I_kwDOAZPgIc5Z26gs","number":121,"title":"Where to as questions about Ivy ?","user":{"login":"kpym","id":3142701,"node_id":"MDQ6VXNlcjMxNDI3MDE=","avatar_url":"https://avatars.githubusercontent.com/u/3142701?v=4","gravatar_id":"","url":"https://api.github.com/users/kpym","html_url":"https://github.com/kpym","followers_url":"https://api.github.com/users/kpym/followers","following_url":"https://api.github.com/users/kpym/following{/other_user}","gists_url":"https://api.github.com/users/kpym/gists{/gist_id}","starred_url":"https://api.github.com/users/kpym/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kpym/subscriptions","organizations_url":"https://api.github.com/users/kpym/orgs","repos_url":"https://api.github.com/users/kpym/repos","events_url":"https://api.github.com/users/kpym/events{/privacy}","received_events_url":"https://api.github.com/users/kpym/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2022-12-22T09:52:29Z","updated_at":"2022-12-22T12:41:51Z","closed_at":"2022-12-22T12:41:51Z","author_association":"NONE","active_lock_reason":null,"body":"Where is the place to ask (stupid) questions about Ivy ?\r\n\r\n- on stack exchange https://stackoverflow.com/questions/tagged/ivy is about Apache Ivy,\r\n- on reddit https://www.reddit.com/r/Ivy/ is about ... I don't know what.\r\n\r\nMaybe opening the discussions for this project could help?","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/121/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/121/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/28","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/28/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/28/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/28/events","html_url":"https://github.com/robpike/ivy/issues/28","id":160803987,"node_id":"MDU6SXNzdWUxNjA4MDM5ODc=","number":28,"title":"Need an Ivy discussion forum to ask user questions - e.g. where Alpha and Omega commands?","user":{"login":"benjamin-rood","id":10102132,"node_id":"MDQ6VXNlcjEwMTAyMTMy","avatar_url":"https://avatars.githubusercontent.com/u/10102132?v=4","gravatar_id":"","url":"https://api.github.com/users/benjamin-rood","html_url":"https://github.com/benjamin-rood","followers_url":"https://api.github.com/users/benjamin-rood/followers","following_url":"https://api.github.com/users/benjamin-rood/following{/other_user}","gists_url":"https://api.github.com/users/benjamin-rood/gists{/gist_id}","starred_url":"https://api.github.com/users/benjamin-rood/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/benjamin-rood/subscriptions","organizations_url":"https://api.github.com/users/benjamin-rood/orgs","repos_url":"https://api.github.com/users/benjamin-rood/repos","events_url":"https://api.github.com/users/benjamin-rood/events{/privacy}","received_events_url":"https://api.github.com/users/benjamin-rood/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":12,"created_at":"2016-06-17T03:13:31Z","updated_at":"2022-12-22T12:51:20Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"Hi Rob, sorry to bother you here, but I don't see how in Ivy you can use the APL α and ω commands, e.g. if I wanted to create a gcd operator like so:\n\n![screen shot 2016-06-17 at 3 08 20 pm](https://cloud.githubusercontent.com/assets/10102132/16139651/d8f3713a-349d-11e6-80bf-f32f44a99e63.png)\n\nsrc: http://dfns.dyalog.com/n_gcd.htm\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/28/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/28/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/120","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/120/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/120/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/120/events","html_url":"https://github.com/robpike/ivy/issues/120","id":1507006831,"node_id":"I_kwDOAZPgIc5Z0xlv","number":120,"title":"Division vs fraction ambiguity","user":{"login":"kpym","id":3142701,"node_id":"MDQ6VXNlcjMxNDI3MDE=","avatar_url":"https://avatars.githubusercontent.com/u/3142701?v=4","gravatar_id":"","url":"https://api.github.com/users/kpym","html_url":"https://github.com/kpym","followers_url":"https://api.github.com/users/kpym/followers","following_url":"https://api.github.com/users/kpym/following{/other_user}","gists_url":"https://api.github.com/users/kpym/gists{/gist_id}","starred_url":"https://api.github.com/users/kpym/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kpym/subscriptions","organizations_url":"https://api.github.com/users/kpym/orgs","repos_url":"https://api.github.com/users/kpym/repos","events_url":"https://api.github.com/users/kpym/events{/privacy}","received_events_url":"https://api.github.com/users/kpym/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":10,"created_at":"2022-12-21T22:50:35Z","updated_at":"2022-12-23T08:40:30Z","closed_at":"2022-12-22T22:37:18Z","author_association":"NONE","active_lock_reason":null,"body":"I understand that `/` has (at least) three different meanings: \r\n- fraction, like in `1/2`, \r\n- division, like in `(1 2)/3`, \r\n- distribution, like in `+/1 2`.\r\n\r\nThe problems starts when we mix them: \r\n- `1/2/3` is the same as`(1/2)/3`. Why the precedence is left to right, why not `1/(2/3)` ?\r\n- `1/2/3/4` is the same as `(1/2)/(3/4)`, but `//1 2 3 4` is `1/(2/(3/4))`, three divisions, which is not the same.\r\n\r\nI can guess that the scanner works left to right and if it finds a fraction, it grabs it.\r\nIMO this creates some inconsistency between fractions and divisions.\r\n\r\nMy first idea was to simply abandon the \"fraction meaning\" and to consider only divisions, where a fraction is just the result of a division of integers. But in this case `1 2/3` will be `(1 2)/3 == (1/3) (2/3)` and not `1 (2/3)`. So to write vectors with fractions will be painful.\r\n\r\nI don't know if it is possible to scan right to left for fractions, or may be to give precedence to division over fraction where the ambiguity is present, like in expressions `1/2/3/4/5...` ?","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/120/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/120/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/126","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/126/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/126/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/126/events","html_url":"https://github.com/robpike/ivy/issues/126","id":1624686118,"node_id":"I_kwDOAZPgIc5g1r4m","number":126,"title":"Ivy iOS App Broken as of iOS 16 +","user":{"login":"carlomunguia","id":43321570,"node_id":"MDQ6VXNlcjQzMzIxNTcw","avatar_url":"https://avatars.githubusercontent.com/u/43321570?v=4","gravatar_id":"","url":"https://api.github.com/users/carlomunguia","html_url":"https://github.com/carlomunguia","followers_url":"https://api.github.com/users/carlomunguia/followers","following_url":"https://api.github.com/users/carlomunguia/following{/other_user}","gists_url":"https://api.github.com/users/carlomunguia/gists{/gist_id}","starred_url":"https://api.github.com/users/carlomunguia/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/carlomunguia/subscriptions","organizations_url":"https://api.github.com/users/carlomunguia/orgs","repos_url":"https://api.github.com/users/carlomunguia/repos","events_url":"https://api.github.com/users/carlomunguia/events{/privacy}","received_events_url":"https://api.github.com/users/carlomunguia/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2023-03-15T03:51:23Z","updated_at":"2023-03-15T05:34:34Z","closed_at":"2023-03-15T05:34:34Z","author_association":"NONE","active_lock_reason":null,"body":"After iOS 16 landed, Ivy no longer loads properly - it flashes the main screen & input field and promptly exits the program - hence making it unusable. \n\nWhile I know it's running an old version of Ivy, none the less it was great to experiment with it via mobile. \n\nFYI & thanks again for Ivy @robpike !","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/126/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/126/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/128","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/128/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/128/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/128/events","html_url":"https://github.com/robpike/ivy/pull/128","id":1760177367,"node_id":"PR_kwDOAZPgIc5TKqx7","number":128,"title":"Fix `base` op example in demo","user":{"login":"Blackmane","id":6045018,"node_id":"MDQ6VXNlcjYwNDUwMTg=","avatar_url":"https://avatars.githubusercontent.com/u/6045018?v=4","gravatar_id":"","url":"https://api.github.com/users/Blackmane","html_url":"https://github.com/Blackmane","followers_url":"https://api.github.com/users/Blackmane/followers","following_url":"https://api.github.com/users/Blackmane/following{/other_user}","gists_url":"https://api.github.com/users/Blackmane/gists{/gist_id}","starred_url":"https://api.github.com/users/Blackmane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Blackmane/subscriptions","organizations_url":"https://api.github.com/users/Blackmane/orgs","repos_url":"https://api.github.com/users/Blackmane/repos","events_url":"https://api.github.com/users/Blackmane/events{/privacy}","received_events_url":"https://api.github.com/users/Blackmane/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-06-16T08:29:11Z","updated_at":"2023-06-16T11:05:25Z","closed_at":"2023-06-16T11:05:24Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/128","html_url":"https://github.com/robpike/ivy/pull/128","diff_url":"https://github.com/robpike/ivy/pull/128.diff","patch_url":"https://github.com/robpike/ivy/pull/128.patch","merged_at":"2023-06-16T11:05:24Z"},"body":"The op `base` doesn't work properly with numbers that are power of the base.\r\n\r\nFor example:\r\n```\r\n8 base 2\r\n0 0 0\r\n\r\n9 base 3\r\n0 0\r\n```\r\n\r\nThis is caused by a mismatch between the log operation that return the power and the representation that in this case need a one more number.\r\n\r\nThis is evident in the op `popcount` that with the powers of two doesn't work:\r\n```\r\npopcount 8\r\n0\r\n\r\npopcount 16\r\n0\r\n\r\npopcount 32\r\n0\r\n\r\npopcount 64\r\n0\r\n```\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/128/reactions","total_count":1,"+1":0,"-1":0,"laugh":0,"hooray":1,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/128/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/127","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/127/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/127/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/127/events","html_url":"https://github.com/robpike/ivy/pull/127","id":1635010500,"node_id":"PR_kwDOAZPgIc5MmneP","number":127,"title":"improve ivy usage in scripts","user":{"login":"wgrr","id":16732610,"node_id":"MDQ6VXNlcjE2NzMyNjEw","avatar_url":"https://avatars.githubusercontent.com/u/16732610?v=4","gravatar_id":"","url":"https://api.github.com/users/wgrr","html_url":"https://github.com/wgrr","followers_url":"https://api.github.com/users/wgrr/followers","following_url":"https://api.github.com/users/wgrr/following{/other_user}","gists_url":"https://api.github.com/users/wgrr/gists{/gist_id}","starred_url":"https://api.github.com/users/wgrr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wgrr/subscriptions","organizations_url":"https://api.github.com/users/wgrr/orgs","repos_url":"https://api.github.com/users/wgrr/repos","events_url":"https://api.github.com/users/wgrr/events{/privacy}","received_events_url":"https://api.github.com/users/wgrr/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2023-03-22T03:51:52Z","updated_at":"2023-06-29T01:53:48Z","closed_at":"2023-06-29T01:53:47Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/127","html_url":"https://github.com/robpike/ivy/pull/127","diff_url":"https://github.com/robpike/ivy/pull/127.diff","patch_url":"https://github.com/robpike/ivy/pull/127.patch","merged_at":null},"body":"recent changes made in ivy made it always write cpu profiles in /tmp, even in my system tmp being a ramfs, i noticed a substantial slowdown in some scripts i have using ivy, i did what most things in go ecosystem do which is turn off by default and enable it with a flag, while doing this i also merge an old change i made to stop printing an extra new line when reading stdin from pipes, this saves an extra `| sed` i had to use to remove them, but the only annoying piece is the slowdown to exit ivy, i'm ok if you just cherry-pick this change.\r\n\r\nBR.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/127/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/127/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/130","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/130/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/130/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/130/events","html_url":"https://github.com/robpike/ivy/pull/130","id":1780062991,"node_id":"PR_kwDOAZPgIc5UM51y","number":130,"title":"ivy: close profile file","user":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-06-29T03:26:58Z","updated_at":"2023-06-29T04:59:24Z","closed_at":"2023-06-29T04:46:58Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/130","html_url":"https://github.com/robpike/ivy/pull/130","diff_url":"https://github.com/robpike/ivy/pull/130.diff","patch_url":"https://github.com/robpike/ivy/pull/130.patch","merged_at":"2023-06-29T04:46:58Z"},"body":"Balance out `f.Create` with an `f.Close`.\r\n\r\nAlso bail out if `StartCPUProfile` returns a non-`nil` error while here.\r\n\r\nI'm not sure if this matters or is helpful, but figured I'd ask by sending this PR.\r\n(Issue golang/go#26970 suggests there may be some benefit.)","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/130/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/130/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/117","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/117/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/117/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/117/events","html_url":"https://github.com/robpike/ivy/issues/117","id":1470780150,"node_id":"I_kwDOAZPgIc5XqlL2","number":117,"title":"a way to construct multidimensional array without rho?","user":{"login":"smasher164","id":12636891,"node_id":"MDQ6VXNlcjEyNjM2ODkx","avatar_url":"https://avatars.githubusercontent.com/u/12636891?v=4","gravatar_id":"","url":"https://api.github.com/users/smasher164","html_url":"https://github.com/smasher164","followers_url":"https://api.github.com/users/smasher164/followers","following_url":"https://api.github.com/users/smasher164/following{/other_user}","gists_url":"https://api.github.com/users/smasher164/gists{/gist_id}","starred_url":"https://api.github.com/users/smasher164/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/smasher164/subscriptions","organizations_url":"https://api.github.com/users/smasher164/orgs","repos_url":"https://api.github.com/users/smasher164/repos","events_url":"https://api.github.com/users/smasher164/events{/privacy}","received_events_url":"https://api.github.com/users/smasher164/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":5,"created_at":"2022-12-01T06:56:08Z","updated_at":"2023-07-05T07:19:02Z","closed_at":"2023-07-05T07:19:02Z","author_association":"NONE","active_lock_reason":null,"body":"Is there a way to construct a multidimensional array with regular data entry?\r\nIn Dyalog, you can just write\r\n```\r\n> (1 2 3)(4 5)\r\n┌─────┬───┐\r\n│1 2 3│4 5│\r\n└─────┴───┘\r\n```\r\n\r\nThanks","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/117/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/117/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/129","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/129/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/129/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/129/events","html_url":"https://github.com/robpike/ivy/pull/129","id":1763392556,"node_id":"PR_kwDOAZPgIc5TVVsU","number":129,"title":"Add `unique` operator","user":{"login":"Blackmane","id":6045018,"node_id":"MDQ6VXNlcjYwNDUwMTg=","avatar_url":"https://avatars.githubusercontent.com/u/6045018?v=4","gravatar_id":"","url":"https://api.github.com/users/Blackmane","html_url":"https://github.com/Blackmane","followers_url":"https://api.github.com/users/Blackmane/followers","following_url":"https://api.github.com/users/Blackmane/following{/other_user}","gists_url":"https://api.github.com/users/Blackmane/gists{/gist_id}","starred_url":"https://api.github.com/users/Blackmane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Blackmane/subscriptions","organizations_url":"https://api.github.com/users/Blackmane/orgs","repos_url":"https://api.github.com/users/Blackmane/repos","events_url":"https://api.github.com/users/Blackmane/events{/privacy}","received_events_url":"https://api.github.com/users/Blackmane/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":8,"created_at":"2023-06-19T12:02:18Z","updated_at":"2023-07-05T21:58:06Z","closed_at":"2023-07-05T21:58:05Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/129","html_url":"https://github.com/robpike/ivy/pull/129","diff_url":"https://github.com/robpike/ivy/pull/129.diff","patch_url":"https://github.com/robpike/ivy/pull/129.patch","merged_at":null},"body":"Hello,\r\nI tried adding the `unique` operator, based on how the same operator works on APL https://aplwiki.com/wiki/Unique\r\n\r\nThe `unique` operator remove duplicates from a vector.\r\nIt's implemented as a unary operator.\r\n\r\nSome example of the implementation:\r\n```\r\nunique iota 9\r\n1 2 3 4 5 6 7 8 9\r\n\r\nunique 1\r\n1\r\n\r\nunique 1 1 1 1 1 1 1 1 1\r\n1\r\n\r\nunique 'Missisipi'\r\nMisp\r\n```\r\n\r\nI hope it could be a useful operator.\r\nIt's my first time with Go. Let me know if something in the implementation is missing.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/129/reactions","total_count":1,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":1,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/129/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/36","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/36/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/36/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/36/events","html_url":"https://github.com/robpike/ivy/issues/36","id":215199232,"node_id":"MDU6SXNzdWUyMTUxOTkyMzI=","number":36,"title":"value: verify that we never attempt to index a zero-length vector","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-03-18T14:56:51Z","updated_at":"2023-07-10T12:49:22Z","closed_at":"2023-07-10T12:49:22Z","author_association":"OWNER","active_lock_reason":null,"body":"We have found a couple of places that assume a vector has at least one element. It's conceivable that is an unwise assumption.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/36/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/36/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/113","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/113/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/113/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/113/events","html_url":"https://github.com/robpike/ivy/issues/113","id":1249963397,"node_id":"I_kwDOAZPgIc5KgO2F","number":113,"title":"ability to list variable names","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2022-05-26T19:32:49Z","updated_at":"2023-07-11T00:13:04Z","closed_at":"2023-07-11T00:13:04Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"Sometimes I would like to see the user-defined variables and functions, e.g. in a long-running session, or after I loaded a library or a saved session. I can list the function names with `)op`, but there is no way to list the variable names.\r\n\r\nTwo possible implementations come to my mind: either a new special command for variables, like `)var` or `)vars`, or list them under the `)op` command as \"nullary\" ops or simply as variables. In this case it might make sense to rename `)op` to a more generic name like `)defs`.\r\n\r\nDyalog APL has the commands `)VARS`, `)FNS` and `)OPS`.\r\n\r\nThere is another use-case for this feature: I have written a line editor wrapper for the `ivy` command: https://github.com/fzipp/ivy-prompt It supports among other things tab-completion for built-in keywords, but also for user-defined functions. It queries their names with the `)op` command. I would like to support it for user-defined variables, too.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/113/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/113/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/131","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/131/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/131/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/131/events","html_url":"https://github.com/robpike/ivy/issues/131","id":1799212737,"node_id":"I_kwDOAZPgIc5rPc7B","number":131,"title":"support large takes (with zero fill) and large drops for matrices","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-07-11T15:34:44Z","updated_at":"2023-07-22T07:24:31Z","closed_at":"2023-07-22T07:24:30Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"Commit https://github.com/robpike/ivy/commit/05a8373fa28de7b4812be8e1d210f6dc3eec65d6 added support for large takes (with zero fill) and large drops (returning an empty vector) for vectors, but it doesn't work with matrices:\r\n\r\n```\r\n4 4 take 3 3 rho iota 9\r\n\ttake: left operand (4) out of range for 3 in shape (3 3)\r\n\r\n4 4 drop 3 3 rho iota 9\r\n\tdrop: left operand (4) out of range for 3 in shape (3 3)\r\n```\r\n\r\nExpected behavior (consistent with APL):\r\n\r\n```\r\n4 4 take 3 3 rho iota 9\r\n\t1 2 3 0\r\n\t4 5 6 0\r\n\t7 8 9 0\r\n\t0 0 0 0\r\n\r\n4 4 drop 3 3 rho iota 9\r\n\t\r\n```\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/131/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/131/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/47","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/47/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/47/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/47/events","html_url":"https://github.com/robpike/ivy/issues/47","id":308432796,"node_id":"MDU6SXNzdWUzMDg0MzI3OTY=","number":47,"title":"mobile: generator needs updating","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-03-26T04:54:47Z","updated_at":"2023-07-23T00:45:27Z","closed_at":"2023-07-23T00:45:27Z","author_association":"OWNER","active_lock_reason":null,"body":"There is no import comment in the generated code.\r\nAlso the DO NOT EDIT should be brought up to current standard.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/47/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/47/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/132","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/132/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/132/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/132/events","html_url":"https://github.com/robpike/ivy/issues/132","id":1820858424,"node_id":"I_kwDOAZPgIc5siBg4","number":132,"title":"provide enclose and disclose operations","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":10,"created_at":"2023-07-25T18:01:02Z","updated_at":"2023-07-28T12:29:44Z","closed_at":"2023-07-28T11:13:11Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"One can implement equivalent operations to APL's monadic ⊂ and ⊃ like this:\r\n\r\n\top enclose a = 1 take a a\r\n\top disclose a = a[1]\r\n\r\nUnfortunately, the implementation of `disclose` depends on the origin.\r\nWould it perhaps make sense to provide them as builtins?\r\n\r\nOther names could be `box` or `nest` for enclose, and `first` for disclose.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/132/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/132/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/133","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/133/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/133/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/133/events","html_url":"https://github.com/robpike/ivy/issues/133","id":1827810096,"node_id":"I_kwDOAZPgIc5s8isw","number":133,"title":"help texts for `sys \"date\"` and `sys \"time\"` are swapped","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":9,"created_at":"2023-07-30T05:29:50Z","updated_at":"2023-08-02T00:05:50Z","closed_at":"2023-08-01T06:14:51Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"The help texts for `sys \"date\"` and `sys \"time\"` say:\r\n\r\n```\r\n\"date\": the current time as a vector of numbers:\r\n year month day hour minute second\r\n\"time\": the current time in Unix format\r\n```\r\n\r\nThe actual outputs are exactly the other way around:\r\n\r\n```\r\nsys \"date\"\r\nSun Jul 30 00:22:20 CEST 2023\r\n\r\nsys \"time\"\r\n2023 7 30 0 22 35.044431\r\n```\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/133/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/133/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/137","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/137/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/137/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/137/events","html_url":"https://github.com/robpike/ivy/pull/137","id":1833465022,"node_id":"PR_kwDOAZPgIc5XBmt0","number":137,"title":"ivy: fix nil panic on indexed assignment of rationals, floats or big ints","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-08-02T16:00:14Z","updated_at":"2023-08-02T22:22:28Z","closed_at":"2023-08-02T22:22:27Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/137","html_url":"https://github.com/robpike/ivy/pull/137","diff_url":"https://github.com/robpike/ivy/pull/137.diff","patch_url":"https://github.com/robpike/ivy/pull/137.patch","merged_at":"2023-08-02T22:22:27Z"},"body":"Indexed assignment did not work for rationals, floats, and big integers because in the Copy methods of the types BigRat, BigFloat, and BigInt, relevant variables were not allocated before being used, leading to a nil panic. The following assignments now work:\r\n\r\n x = iota 3\r\n x[1] = 1/2\r\n x[2] = float 0.5\r\n x[3] = 10000000000","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/137/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/137/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/141","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/141/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/141/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/141/events","html_url":"https://github.com/robpike/ivy/pull/141","id":1837375164,"node_id":"PR_kwDOAZPgIc5XOyOJ","number":141,"title":"ivy: implement 'sgn' for complex numbers","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-08-04T21:41:34Z","updated_at":"2023-08-04T21:53:07Z","closed_at":"2023-08-04T21:53:07Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/141","html_url":"https://github.com/robpike/ivy/pull/141","diff_url":"https://github.com/robpike/ivy/pull/141.diff","patch_url":"https://github.com/robpike/ivy/pull/141.patch","merged_at":null},"body":"The generalization of the signum function for complex numbers is\r\n\r\n sgn z = z/|z| if z≠0, and 0 if z=0\r\n\r\nSee https://en.wikipedia.org/wiki/Sign_function#Complex_signum","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/141/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/141/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/136","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/136/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/136/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/136/events","html_url":"https://github.com/robpike/ivy/issues/136","id":1831027272,"node_id":"I_kwDOAZPgIc5tI0JI","number":136,"title":"encode: support non-integer rhs","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-08-01T11:06:32Z","updated_at":"2023-08-05T00:00:35Z","closed_at":"2023-08-05T00:00:35Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"```\r\n0 24 60 60 encode 1234.567\r\nencode: cannot convert rational to big int\r\n```\r\n\r\n```\r\nt = sys \"sec\"\r\n0 24 60 60 encode (sys \"sec\") - t\r\nencode: cannot convert float to big int\r\n```\r\n\r\nThe APL I tried supports this:\r\n\r\n```\r\n0 24 60 60 ⊤ 1234.567\r\n0 0 20 34.567\r\n```\r\n\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/136/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/136/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/140","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/140/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/140/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/140/events","html_url":"https://github.com/robpike/ivy/pull/140","id":1837024047,"node_id":"PR_kwDOAZPgIc5XNl4x","number":140,"title":"ivy: fix function undefinition","user":{"login":"yishailerner","id":47819491,"node_id":"MDQ6VXNlcjQ3ODE5NDkx","avatar_url":"https://avatars.githubusercontent.com/u/47819491?v=4","gravatar_id":"","url":"https://api.github.com/users/yishailerner","html_url":"https://github.com/yishailerner","followers_url":"https://api.github.com/users/yishailerner/followers","following_url":"https://api.github.com/users/yishailerner/following{/other_user}","gists_url":"https://api.github.com/users/yishailerner/gists{/gist_id}","starred_url":"https://api.github.com/users/yishailerner/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yishailerner/subscriptions","organizations_url":"https://api.github.com/users/yishailerner/orgs","repos_url":"https://api.github.com/users/yishailerner/repos","events_url":"https://api.github.com/users/yishailerner/events{/privacy}","received_events_url":"https://api.github.com/users/yishailerner/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-08-04T16:13:45Z","updated_at":"2023-08-05T00:19:48Z","closed_at":"2023-08-05T00:19:44Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/140","html_url":"https://github.com/robpike/ivy/pull/140","diff_url":"https://github.com/robpike/ivy/pull/140.diff","patch_url":"https://github.com/robpike/ivy/pull/140.patch","merged_at":"2023-08-05T00:19:44Z"},"body":"Function undefinition did not work because the previous definition was overwritten before being saved, and so restoring it was a no-op.\r\n\r\nThis meant functions with intermediate state could be produced, potentially violating invariants. For example, the following creates a function with a partial body but without any locals, eventually leading to an index out of range when trying to access the local `b`:\r\n\r\n```\r\nop inc b =\r\n b + 1\r\n |\r\n\r\ninc 1\r\n```\r\n\r\n```\r\n$ ivy <crash.ivy\r\nunexpected EOF\r\n\r\n\r\npanic: runtime error: index out of range [-1] [recovered]\r\n panic: runtime error: index out of range [-1]\r\n\r\ngoroutine 1 [running]:\r\n...\r\n```","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/140/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/140/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/143","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/143/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/143/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/143/events","html_url":"https://github.com/robpike/ivy/issues/143","id":1837405032,"node_id":"I_kwDOAZPgIc5thJNo","number":143,"title":"support raising a negative number to a non-integer power","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-08-04T22:25:39Z","updated_at":"2023-08-05T03:28:39Z","closed_at":"2023-08-05T03:28:39Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"Currently, the following operations are not possible:\r\n```\r\n-4 ** 0.5\r\nsquare root of negative number\r\n-4 ** 0.25\r\nlog of non-positive value\r\n```\r\n\r\nThis seems inconsistent, because `sqrt -4` and `log -4` work fine, resulting in complex numbers.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/143/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/143/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/146","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/146/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/146/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/146/events","html_url":"https://github.com/robpike/ivy/issues/146","id":1838084110,"node_id":"I_kwDOAZPgIc5tjvAO","number":146,"title":"ivy: generalize matrix inverse to Moore-Penrose pseudoinverse","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-08-06T07:09:18Z","updated_at":"2023-08-06T07:09:18Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"This would allow for more general linear algebra calculations. It shouldn't be hard as the components of its creation are already in place.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/146/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/146/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/134","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/134/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/134/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/134/events","html_url":"https://github.com/robpike/ivy/pull/134","id":1828112121,"node_id":"PR_kwDOAZPgIc5WvepS","number":134,"title":"APL unique is ∪","user":{"login":"mndrix","id":43997,"node_id":"MDQ6VXNlcjQzOTk3","avatar_url":"https://avatars.githubusercontent.com/u/43997?v=4","gravatar_id":"","url":"https://api.github.com/users/mndrix","html_url":"https://github.com/mndrix","followers_url":"https://api.github.com/users/mndrix/followers","following_url":"https://api.github.com/users/mndrix/following{/other_user}","gists_url":"https://api.github.com/users/mndrix/gists{/gist_id}","starred_url":"https://api.github.com/users/mndrix/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mndrix/subscriptions","organizations_url":"https://api.github.com/users/mndrix/orgs","repos_url":"https://api.github.com/users/mndrix/repos","events_url":"https://api.github.com/users/mndrix/events{/privacy}","received_events_url":"https://api.github.com/users/mndrix/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-07-30T22:42:04Z","updated_at":"2023-08-10T21:18:05Z","closed_at":"2023-07-31T00:10:06Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/134","html_url":"https://github.com/robpike/ivy/pull/134","diff_url":"https://github.com/robpike/ivy/pull/134.diff","patch_url":"https://github.com/robpike/ivy/pull/134.patch","merged_at":null},"body":null,"reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/134/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/134/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/151","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/151/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/151/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/151/events","html_url":"https://github.com/robpike/ivy/issues/151","id":1846134050,"node_id":"I_kwDOAZPgIc5uCcUi","number":151,"title":"TestAll failure in sys.ivy","user":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-08-11T03:10:47Z","updated_at":"2023-08-11T04:50:33Z","closed_at":"2023-08-11T04:50:33Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"When I run ivy's tests at its latest commit (d707516ba1bba12d98edbbcbe0186618054260fa) using `go version go1.21.0 darwin/arm64`, I'm seeing the following test failure:\r\n\r\n```\r\n$ go test -run=TestAll robpike.io/ivy\r\n--- FAIL: TestAll (0.48s)\r\n[...]\r\n ivy_test.go:47: reduce.ivy\r\n ivy_test.go:47: sys.ivy\r\n ivy_test.go:102: \r\n testdata/sys.ivy:85:\r\n \t('T' encode 0)[1 2 3]\r\n got:\r\n \t1969 12 31\r\n \t\r\n want:\r\n \t1970 1 1\r\n ivy_test.go:47: unary_matrix.ivy\r\n ivy_test.go:47: inner.ivy\r\n[...]\r\nFAIL\r\nFAIL\trobpike.io/ivy\t0.668s\r\nFAIL\r\n```\r\n\r\nMy local timezone is -0400 EDT if that happens to be relevant.\r\n\r\nReporting this in case it's helpful.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/151/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/151/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/145","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/145/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/145/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/145/events","html_url":"https://github.com/robpike/ivy/issues/145","id":1838080227,"node_id":"I_kwDOAZPgIc5tjuDj","number":145,"title":"how to recover redefined core operator ?","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-08-06T06:55:00Z","updated_at":"2023-08-11T06:11:13Z","closed_at":"2023-08-11T06:11:13Z","author_association":"OWNER","active_lock_reason":null,"body":"### Discussed in https://github.com/robpike/ivy/discussions/125\r\n\r\n<div type='discussions-op-text'>\r\n\r\n<sup>Originally posted by **kpym** December 23, 2022</sup>\r\nIf I redefine for example `mod` by `op a mod b = 0` how can I recover the original `mod` ?</div>","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/145/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/145/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/152","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/152/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/152/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/152/events","html_url":"https://github.com/robpike/ivy/pull/152","id":1846151216,"node_id":"PR_kwDOAZPgIc5XsNNs","number":152,"title":"value: add BigInt.Float64 for Go 1.20 and older","user":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2023-08-11T03:42:41Z","updated_at":"2023-08-11T06:22:19Z","closed_at":"2023-08-11T05:53:29Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/152","html_url":"https://github.com/robpike/ivy/pull/152","diff_url":"https://github.com/robpike/ivy/pull/152.diff","patch_url":"https://github.com/robpike/ivy/pull/152.patch","merged_at":null},"body":"In Go 1.21, `big.Int` got a new method `Float64` (proposal golang/go#56984).\r\nIn Go 1.21, `BigInt` has that method because it embeds `*big.Int`.\r\nIn Go 1.20 and older, it's possible to implement it ourselves.\r\n\r\nThe README and go.mod say that ivy requires Go 1.17 to be built, so\r\nadd the `Float64` implementation with an appropriate build constraint.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/152/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/152/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/149","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/149/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/149/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/149/events","html_url":"https://github.com/robpike/ivy/pull/149","id":1845918103,"node_id":"PR_kwDOAZPgIc5XrbZ6","number":149,"title":"Require Go 1.21","user":{"login":"mndrix","id":43997,"node_id":"MDQ6VXNlcjQzOTk3","avatar_url":"https://avatars.githubusercontent.com/u/43997?v=4","gravatar_id":"","url":"https://api.github.com/users/mndrix","html_url":"https://github.com/mndrix","followers_url":"https://api.github.com/users/mndrix/followers","following_url":"https://api.github.com/users/mndrix/following{/other_user}","gists_url":"https://api.github.com/users/mndrix/gists{/gist_id}","starred_url":"https://api.github.com/users/mndrix/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mndrix/subscriptions","organizations_url":"https://api.github.com/users/mndrix/orgs","repos_url":"https://api.github.com/users/mndrix/repos","events_url":"https://api.github.com/users/mndrix/events{/privacy}","received_events_url":"https://api.github.com/users/mndrix/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2023-08-10T21:23:09Z","updated_at":"2023-08-11T09:18:01Z","closed_at":"2023-08-11T04:26:10Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/149","html_url":"https://github.com/robpike/ivy/pull/149","diff_url":"https://github.com/robpike/ivy/pull/149.diff","patch_url":"https://github.com/robpike/ivy/pull/149.patch","merged_at":"2023-08-11T04:26:10Z"},"body":"Commit f024fcaf17 uses math/big.Int.Float64 which was introduced in Go version 1.21","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/149/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/149/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/150","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/150/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/150/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/150/events","html_url":"https://github.com/robpike/ivy/issues/150","id":1845939884,"node_id":"I_kwDOAZPgIc5uBs6s","number":150,"title":"test failure: stack overflow calling \"gcd\"","user":{"login":"mndrix","id":43997,"node_id":"MDQ6VXNlcjQzOTk3","avatar_url":"https://avatars.githubusercontent.com/u/43997?v=4","gravatar_id":"","url":"https://api.github.com/users/mndrix","html_url":"https://github.com/mndrix","followers_url":"https://api.github.com/users/mndrix/followers","following_url":"https://api.github.com/users/mndrix/following{/other_user}","gists_url":"https://api.github.com/users/mndrix/gists{/gist_id}","starred_url":"https://api.github.com/users/mndrix/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mndrix/subscriptions","organizations_url":"https://api.github.com/users/mndrix/orgs","repos_url":"https://api.github.com/users/mndrix/repos","events_url":"https://api.github.com/users/mndrix/events{/privacy}","received_events_url":"https://api.github.com/users/mndrix/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2023-08-10T21:46:20Z","updated_at":"2023-08-11T21:30:30Z","closed_at":"2023-08-11T21:30:30Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"Relevant portion of the test output:\r\n\r\n```\r\n--- FAIL: TestAll (0.39s)\r\n...\r\n ivy_test.go:47: function.ivy\r\n ivy_test.go:95:\r\n execution failure ( :11: stack overflow calling \"gcd\"\r\n ) at testdata/function.ivy:199:\r\n op fac n =\r\n n <= 1 : 1\r\n n * fac n - 1\r\n\r\n op a gcd b =\r\n a == b: a\r\n a > b: b gcd a-b\r\n a gcd b-a\r\n\r\n fac 10\r\n 1562 gcd fac 11\r\nFAIL\r\nFAIL robpike.io/ivy 0.615s\r\nFAIL\r\n```\r\n\r\nGit bisect says that commit f024fcaf177 introduced the failure, and tests pass with it reverted. I can't see why.\r\n\r\nThis is with Go 1.21.0 on an Ubuntu Linux VM. I can't reproduce the failure on macOS, OpenBSD, or Alpine Linux.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/150/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/150/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/154","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/154/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/154/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/154/events","html_url":"https://github.com/robpike/ivy/issues/154","id":1846692605,"node_id":"I_kwDOAZPgIc5uEkr9","number":154,"title":"`mix` and `split` are not inverses of each other","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-08-11T11:52:56Z","updated_at":"2023-08-11T23:41:15Z","closed_at":"2023-08-11T23:41:15Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"`mix` and `split` are supposed to be each other's inverses, but currently they are not:\r\n\r\n```\r\nA = 3 3 3 rho iota 9; A\r\n\t1 2 3\r\n\t4 5 6\r\n\t7 8 9\r\n\t\r\n\t1 2 3\r\n\t4 5 6\r\n\t7 8 9\r\n\t\r\n\t1 2 3\r\n\t4 5 6\r\n\t7 8 9\r\nsplit A\r\n\t(1 2 3 4 5 6 7 8 9) (1 2 3 4 5 6 7 8 9) (1 2 3 4 5 6 7 8 9)\r\nmix split A\r\n\t1 2 3 4 5 6 7 8 9\r\n\t1 2 3 4 5 6 7 8 9\r\n\t1 2 3 4 5 6 7 8 9\r\n```\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/154/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/154/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/153","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/153/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/153/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/153/events","html_url":"https://github.com/robpike/ivy/pull/153","id":1846178547,"node_id":"PR_kwDOAZPgIc5XsS6U","number":153,"title":"Revert \"Require Go 1.21\"","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-08-11T04:28:56Z","updated_at":"2023-08-12T03:57:39Z","closed_at":"2023-08-11T04:29:09Z","author_association":"OWNER","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/153","html_url":"https://github.com/robpike/ivy/pull/153","diff_url":"https://github.com/robpike/ivy/pull/153.diff","patch_url":"https://github.com/robpike/ivy/pull/153.patch","merged_at":"2023-08-11T04:29:09Z"},"body":"Reverts robpike/ivy#149","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/153/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/153/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/142","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/142/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/142/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/142/events","html_url":"https://github.com/robpike/ivy/pull/142","id":1837385638,"node_id":"PR_kwDOAZPgIc5XO0eU","number":142,"title":"ivy: implement 'sgn' for complex numbers","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2023-08-04T21:56:26Z","updated_at":"2023-08-13T07:54:20Z","closed_at":"2023-08-05T06:34:08Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/142","html_url":"https://github.com/robpike/ivy/pull/142","diff_url":"https://github.com/robpike/ivy/pull/142.diff","patch_url":"https://github.com/robpike/ivy/pull/142.patch","merged_at":"2023-08-05T06:34:08Z"},"body":"The generalization of the signum function for complex numbers is\r\n\r\nsgn z = z/|z| if z≠0, and 0 if z=0\r\n\r\nSee https://en.wikipedia.org/wiki/Sign_function#Complex_signum","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/142/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/142/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/144","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/144/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/144/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/144/events","html_url":"https://github.com/robpike/ivy/pull/144","id":1837685076,"node_id":"PR_kwDOAZPgIc5XPyjS","number":144,"title":"ivy: add a missing line in the help text about user-defined operators","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-08-05T10:24:35Z","updated_at":"2023-08-13T07:54:23Z","closed_at":"2023-08-05T10:48:56Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/144","html_url":"https://github.com/robpike/ivy/pull/144","diff_url":"https://github.com/robpike/ivy/pull/144.diff","patch_url":"https://github.com/robpike/ivy/pull/144.patch","merged_at":"2023-08-05T10:48:56Z"},"body":"The example in the help text about global variables in user-defined operators was lacking the actual operator calls.\r\nWithout this line, the described result wouldn't be produced.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/144/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/144/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/148","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/148/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/148/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/148/events","html_url":"https://github.com/robpike/ivy/pull/148","id":1838229438,"node_id":"PR_kwDOAZPgIc5XRYPZ","number":148,"title":"ivy: implement 'floor' and 'ceil' for complex numbers","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":10,"created_at":"2023-08-06T14:27:35Z","updated_at":"2023-08-13T07:54:25Z","closed_at":"2023-08-07T05:36:44Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/148","html_url":"https://github.com/robpike/ivy/pull/148","diff_url":"https://github.com/robpike/ivy/pull/148.diff","patch_url":"https://github.com/robpike/ivy/pull/148.patch","merged_at":"2023-08-07T05:36:44Z"},"body":"The implementation uses the definition of 'floor' and 'ceil' for complex numbers set by\r\n\r\n\tMcDonnell, E. E. \"Complex Floor, APL Congress 73.\" (1973).\r\n\thttps://www.jsoftware.com/papers/eem/complexfloor.htm\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/148/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/148/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/155","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/155/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/155/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/155/events","html_url":"https://github.com/robpike/ivy/pull/155","id":1847236115,"node_id":"PR_kwDOAZPgIc5Xv6c4","number":155,"title":"ivy: reset 'maxstack' between test runs","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-08-11T18:14:12Z","updated_at":"2023-08-13T07:54:27Z","closed_at":"2023-08-11T21:30:28Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/155","html_url":"https://github.com/robpike/ivy/pull/155","diff_url":"https://github.com/robpike/ivy/pull/155.diff","patch_url":"https://github.com/robpike/ivy/pull/155.patch","merged_at":"2023-08-11T21:30:28Z"},"body":"This ensures that tests are independent of the execution order of test files.\r\n\r\nFixes #150","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/155/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/155/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/157","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/157/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/157/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/157/events","html_url":"https://github.com/robpike/ivy/pull/157","id":1861875327,"node_id":"PR_kwDOAZPgIc5YhVqh","number":157,"title":"[run/time_unix.go] Support all current and future UNIX variations","user":{"login":"SamuelMarks","id":807580,"node_id":"MDQ6VXNlcjgwNzU4MA==","avatar_url":"https://avatars.githubusercontent.com/u/807580?v=4","gravatar_id":"","url":"https://api.github.com/users/SamuelMarks","html_url":"https://github.com/SamuelMarks","followers_url":"https://api.github.com/users/SamuelMarks/followers","following_url":"https://api.github.com/users/SamuelMarks/following{/other_user}","gists_url":"https://api.github.com/users/SamuelMarks/gists{/gist_id}","starred_url":"https://api.github.com/users/SamuelMarks/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SamuelMarks/subscriptions","organizations_url":"https://api.github.com/users/SamuelMarks/orgs","repos_url":"https://api.github.com/users/SamuelMarks/repos","events_url":"https://api.github.com/users/SamuelMarks/events{/privacy}","received_events_url":"https://api.github.com/users/SamuelMarks/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-08-22T17:09:07Z","updated_at":"2023-08-22T21:35:55Z","closed_at":"2023-08-22T21:35:54Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/157","html_url":"https://github.com/robpike/ivy/pull/157","diff_url":"https://github.com/robpike/ivy/pull/157.diff","patch_url":"https://github.com/robpike/ivy/pull/157.patch","merged_at":"2023-08-22T21:35:54Z"},"body":"Thanks to your issue from 6 years ago https://github.com/golang/go/issues/20322","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/157/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/157/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/156","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/156/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/156/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/156/events","html_url":"https://github.com/robpike/ivy/pull/156","id":1861870547,"node_id":"PR_kwDOAZPgIc5YhUn3","number":156,"title":"Correct spelling","user":{"login":"SamuelMarks","id":807580,"node_id":"MDQ6VXNlcjgwNzU4MA==","avatar_url":"https://avatars.githubusercontent.com/u/807580?v=4","gravatar_id":"","url":"https://api.github.com/users/SamuelMarks","html_url":"https://github.com/SamuelMarks","followers_url":"https://api.github.com/users/SamuelMarks/followers","following_url":"https://api.github.com/users/SamuelMarks/following{/other_user}","gists_url":"https://api.github.com/users/SamuelMarks/gists{/gist_id}","starred_url":"https://api.github.com/users/SamuelMarks/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SamuelMarks/subscriptions","organizations_url":"https://api.github.com/users/SamuelMarks/orgs","repos_url":"https://api.github.com/users/SamuelMarks/repos","events_url":"https://api.github.com/users/SamuelMarks/events{/privacy}","received_events_url":"https://api.github.com/users/SamuelMarks/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-08-22T17:05:29Z","updated_at":"2023-08-22T21:36:47Z","closed_at":"2023-08-22T21:36:47Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/156","html_url":"https://github.com/robpike/ivy/pull/156","diff_url":"https://github.com/robpike/ivy/pull/156.diff","patch_url":"https://github.com/robpike/ivy/pull/156.patch","merged_at":"2023-08-22T21:36:47Z"},"body":null,"reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/156/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/156/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/135","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/135/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/135/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/135/events","html_url":"https://github.com/robpike/ivy/issues/135","id":1830537471,"node_id":"I_kwDOAZPgIc5tG8j_","number":135,"title":"time zone support","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-08-01T06:14:24Z","updated_at":"2023-09-26T02:57:24Z","closed_at":"2023-09-26T02:57:24Z","author_association":"OWNER","active_lock_reason":null,"body":"The new time facilities should understand (to some extent at least) time zones.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/135/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/135/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/robpike/ivy/issues/158","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/158/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/158/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/158/events","html_url":"https://github.com/robpike/ivy/issues/158","id":1912825303,"node_id":"I_kwDOAZPgIc5yA2XX","number":158,"title":"time zones not working correctly","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":7,"created_at":"2023-09-26T07:04:57Z","updated_at":"2023-10-03T07:22:32Z","closed_at":null,"author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"I start Ivy and enter:\r\n\r\n```\r\n)timezone \r\n\tCEST 0\r\n```\r\n\r\nCEST is correct for my location, but offset 0 isn't. CEST is UTC+2, so the offset should be 7200.\r\n\r\nNow I switch the time zone:\r\n\r\n```\r\n)timezone \"CET\"\r\n\tCET 7200\r\n```\r\n\r\nCET is expected, but offset 7200 isn't. CET is UTC+1, so the offset should be 3600.\r\n\r\nNow I want to switch back to the original time zone:\r\n\r\n```\r\n)timezone \"CEST\"\r\n\tno such time zone: no such time zone\r\n```\r\n\r\nEven though Ivy told me this zone name at the beginning, so it should be known.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/158/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/158/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/159","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/159/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/159/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/159/events","html_url":"https://github.com/robpike/ivy/pull/159","id":1923998489,"node_id":"PR_kwDOAZPgIc5byJA0","number":159,"title":"Fix fmt.Sprint typo","user":{"login":"mndrix","id":43997,"node_id":"MDQ6VXNlcjQzOTk3","avatar_url":"https://avatars.githubusercontent.com/u/43997?v=4","gravatar_id":"","url":"https://api.github.com/users/mndrix","html_url":"https://github.com/mndrix","followers_url":"https://api.github.com/users/mndrix/followers","following_url":"https://api.github.com/users/mndrix/following{/other_user}","gists_url":"https://api.github.com/users/mndrix/gists{/gist_id}","starred_url":"https://api.github.com/users/mndrix/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mndrix/subscriptions","organizations_url":"https://api.github.com/users/mndrix/orgs","repos_url":"https://api.github.com/users/mndrix/repos","events_url":"https://api.github.com/users/mndrix/events{/privacy}","received_events_url":"https://api.github.com/users/mndrix/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-10-03T12:15:08Z","updated_at":"2023-10-03T21:20:36Z","closed_at":"2023-10-03T21:20:36Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/159","html_url":"https://github.com/robpike/ivy/pull/159","diff_url":"https://github.com/robpike/ivy/pull/159.diff","patch_url":"https://github.com/robpike/ivy/pull/159.patch","merged_at":"2023-10-03T21:20:36Z"},"body":"Noticed via\r\n\r\n\t$ go test ./...\r\n\t# robpike.io/ivy/value\r\n\tvalue/sys.go:159:25: fmt.Sprint call has possible Printf\r\n\tformatting directive %d","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/159/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/159/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/83","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/83/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/83/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/83/events","html_url":"https://github.com/robpike/ivy/pull/83","id":1089248875,"node_id":"PR_kwDOAZPgIc4wTd6D","number":83,"title":"ivy: add @ operator modifier","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":5,"created_at":"2021-12-27T13:35:36Z","updated_at":"2024-04-16T22:06:45Z","closed_at":null,"author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/83","html_url":"https://github.com/robpike/ivy/pull/83","diff_url":"https://github.com/robpike/ivy/pull/83.diff","patch_url":"https://github.com/robpike/ivy/pull/83.patch","merged_at":null},"body":"The @ operator modifier is a bit like APL's each/map.\r\nApplied to the left or right of an operator, it produces an operator\r\nthat applies to each element of its left or right argument and then\r\nreturns an array of those results.\r\n\r\nFor example consider a vector of x,y points and the operator\r\ncomputing the Manhattan distance between two points:\r\n\r\n\td = 3 2 rho iota 6\r\n\r\n\top x dist y = +/ abs x-y\r\n\r\n\t0 0 dist d\r\n\t3 7 11\r\n\r\nWhat if we want the Manhattan distance between all pairs of points?\r\nThis is a kind of outer product but only matching pairs of points;\r\nthe actual outer product matches all pairs of numbers.\r\n\r\nThe outer product does 'for all' over all dimensions of its\r\nleft and right arguments, while @ only does 'for all' over a\r\nsingle dimension of the argument on the side where the @ appears.\r\nSo the pairwise Manhattan distances of the points is @dist@:\r\n\r\n\td @dist@ d\r\n\t0 4 8\r\n\t4 0 4\r\n\t8 4 0\r\n\r\nWhat if we have a binary operator and want to apply it with\r\na fixed left argument to each of a list of left or right arguments?\r\nIn this example, because Manhattan distance only uses +/, abs, and -,\r\nand those automatically replicate a vector to match with a matrix,\r\nit works to say:\r\n\r\n\t0 0 dist d\r\n\t3 7 1\r\n\r\n\td dist 1 1\r\n\t1 5 9\r\n\r\nbut in general it would not. In the general case, dist@ and @dist work:\r\n\r\n\t0 0 dist@ d\r\n\t3 7 11\r\n\r\n\td @dist 1 1\r\n\t1 5 9\r\n\r\nWhat if we have an operator to compute pairwise distances\r\nof a list of points and want to apply it to a list of point sets?\r\nThen we can use a single @ on the right\r\n(for a unary operator, it would never make sense to use @ on the left):\r\n\r\n\top dists d = d @dist@ d\r\n\r\n\tdx = 4 3 2 rho iota 24\r\n\r\n\tdists@ dx\r\n\t0 4 8\r\n\t4 0 4\r\n\t8 4 0\r\n\r\n\t0 4 8\r\n\t4 0 4\r\n\t8 4 0\r\n\r\n\t0 4 8\r\n\t4 0 4\r\n\t8 4 0\r\n\r\n\t0 4 8\r\n\t4 0 4\r\n\t8 4 0\r\n\r\nOuter product can be viewed as a special case of @.\r\nSpecifically, x o.f y is x @...@f@..@ where there are\r\n(rho rho x) @s on the left and (rho rho y) @s on the right.\r\n\r\n\t(2 rho iota 3) o.^ 2 2 rho iota 4\r\n\t0 3\r\n\t2 5\r\n\r\n\t3 0\r\n\t1 6\r\n\r\n\t(2 rho iota 3) @^@@ 2 2 rho iota 4\r\n\t0 3\r\n\t2 5\r\n\r\n\t3 0\r\n\t1 6","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/83/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/83/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/69","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/69/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/69/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/69/events","html_url":"https://github.com/robpike/ivy/issues/69","id":1073323729,"node_id":"I_kwDOAZPgIc4_-Z7R","number":69,"title":"missing each/map (¨)","user":{"login":"tcolgate","id":76019,"node_id":"MDQ6VXNlcjc2MDE5","avatar_url":"https://avatars.githubusercontent.com/u/76019?v=4","gravatar_id":"","url":"https://api.github.com/users/tcolgate","html_url":"https://github.com/tcolgate","followers_url":"https://api.github.com/users/tcolgate/followers","following_url":"https://api.github.com/users/tcolgate/following{/other_user}","gists_url":"https://api.github.com/users/tcolgate/gists{/gist_id}","starred_url":"https://api.github.com/users/tcolgate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tcolgate/subscriptions","organizations_url":"https://api.github.com/users/tcolgate/orgs","repos_url":"https://api.github.com/users/tcolgate/repos","events_url":"https://api.github.com/users/tcolgate/events{/privacy}","received_events_url":"https://api.github.com/users/tcolgate/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":17,"created_at":"2021-12-07T12:58:47Z","updated_at":"2024-05-13T16:48:09Z","closed_at":null,"author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"It might be that I'm missing something, but mapping an operator over a vector is super useful and I had to jump through some hoops to do it. \r\n\r\nGiven a vector, compute the triangle number for each element (but any function would apply). I ended up defining the function as an operator that ignored one of its args. then reducing over a vector of pairs...\r\n\r\n```\r\nop a triangle b = (b * (b + 1)) / 2 \r\n\r\nop trianglevs vs = triangle/ (rho vs) 2 rho ((rho vs) rho 2) sel vs\r\n```\r\nIs a map / each syntactically difficult to support though, feels like it should be similar to reduce?\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/69/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/69/timeline","performed_via_github_app":null,"state_reason":null}]161 53006 GET https://api.github.com/repos/robpike/ivy/issues/comments?direction=asc&page=1&sort=updated HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:47 GMT Etag: W/"c72a916c67a116b68401637b0d342ed49b07b27c134486ba8a46fc6d0618871b" Link: <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=2&sort=updated>; rel="next", <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=11&sort=updated>; rel="last" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EB463:334757:665E33AF X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4997 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 3 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/68659987","html_url":"https://github.com/robpike/ivy/pull/1#issuecomment-68659987","issue_url":"https://api.github.com/repos/robpike/ivy/issues/1","id":68659987,"node_id":"MDEyOklzc3VlQ29tbWVudDY4NjU5OTg3","user":{"login":"hfern","id":1041838,"node_id":"MDQ6VXNlcjEwNDE4Mzg=","avatar_url":"https://avatars.githubusercontent.com/u/1041838?v=4","gravatar_id":"","url":"https://api.github.com/users/hfern","html_url":"https://github.com/hfern","followers_url":"https://api.github.com/users/hfern/followers","following_url":"https://api.github.com/users/hfern/following{/other_user}","gists_url":"https://api.github.com/users/hfern/gists{/gist_id}","starred_url":"https://api.github.com/users/hfern/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hfern/subscriptions","organizations_url":"https://api.github.com/users/hfern/orgs","repos_url":"https://api.github.com/users/hfern/repos","events_url":"https://api.github.com/users/hfern/events{/privacy}","received_events_url":"https://api.github.com/users/hfern/received_events","type":"User","site_admin":false},"created_at":"2015-01-05T01:50:41Z","updated_at":"2015-01-05T01:50:41Z","author_association":"NONE","body":"Both issues fixed\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/68659987/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/68670422","html_url":"https://github.com/robpike/ivy/pull/1#issuecomment-68670422","issue_url":"https://api.github.com/repos/robpike/ivy/issues/1","id":68670422,"node_id":"MDEyOklzc3VlQ29tbWVudDY4NjcwNDIy","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2015-01-05T05:41:10Z","updated_at":"2015-01-05T05:41:10Z","author_association":"OWNER","body":"I fixed this another more general way, I believe.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/68670422/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/69133270","html_url":"https://github.com/robpike/ivy/pull/2#issuecomment-69133270","issue_url":"https://api.github.com/repos/robpike/ivy/issues/2","id":69133270,"node_id":"MDEyOklzc3VlQ29tbWVudDY5MTMzMjcw","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2015-01-08T04:05:47Z","updated_at":"2015-01-08T04:05:47Z","author_association":"OWNER","body":"Thanks for the report and test case.\n\nThis project does not accept (or look at the code in) pull requests, but I will address the bug.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/69133270/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/69191556","html_url":"https://github.com/robpike/ivy/pull/2#issuecomment-69191556","issue_url":"https://api.github.com/repos/robpike/ivy/issues/2","id":69191556,"node_id":"MDEyOklzc3VlQ29tbWVudDY5MTkxNTU2","user":{"login":"jiridanek","id":442720,"node_id":"MDQ6VXNlcjQ0MjcyMA==","avatar_url":"https://avatars.githubusercontent.com/u/442720?v=4","gravatar_id":"","url":"https://api.github.com/users/jiridanek","html_url":"https://github.com/jiridanek","followers_url":"https://api.github.com/users/jiridanek/followers","following_url":"https://api.github.com/users/jiridanek/following{/other_user}","gists_url":"https://api.github.com/users/jiridanek/gists{/gist_id}","starred_url":"https://api.github.com/users/jiridanek/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jiridanek/subscriptions","organizations_url":"https://api.github.com/users/jiridanek/orgs","repos_url":"https://api.github.com/users/jiridanek/repos","events_url":"https://api.github.com/users/jiridanek/events{/privacy}","received_events_url":"https://api.github.com/users/jiridanek/received_events","type":"User","site_admin":false},"created_at":"2015-01-08T15:08:11Z","updated_at":"2015-01-08T17:35:59Z","author_association":"NONE","body":"(fixed in e9ae3638521bb151c93f7d12f84fdf9ddc302d9e, if anybody reading this wants a quick link)\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/69191556/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/120763508","html_url":"https://github.com/robpike/ivy/issues/4#issuecomment-120763508","issue_url":"https://api.github.com/repos/robpike/ivy/issues/4","id":120763508,"node_id":"MDEyOklzc3VlQ29tbWVudDEyMDc2MzUwOA==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2015-07-12T21:35:30Z","updated_at":"2015-07-12T21:35:30Z","author_association":"OWNER","body":"Documented:\n\n```\n If the base is greater than 10, any identifier formed from\n valid numerals in the base system, such as abe for base 16,\n is taken to be a number.\n```\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/120763508/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/120767931","html_url":"https://github.com/robpike/ivy/issues/4#issuecomment-120767931","issue_url":"https://api.github.com/repos/robpike/ivy/issues/4","id":120767931,"node_id":"MDEyOklzc3VlQ29tbWVudDEyMDc2NzkzMQ==","user":{"login":"mirtchovski","id":2047078,"node_id":"MDQ6VXNlcjIwNDcwNzg=","avatar_url":"https://avatars.githubusercontent.com/u/2047078?v=4","gravatar_id":"","url":"https://api.github.com/users/mirtchovski","html_url":"https://github.com/mirtchovski","followers_url":"https://api.github.com/users/mirtchovski/followers","following_url":"https://api.github.com/users/mirtchovski/following{/other_user}","gists_url":"https://api.github.com/users/mirtchovski/gists{/gist_id}","starred_url":"https://api.github.com/users/mirtchovski/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mirtchovski/subscriptions","organizations_url":"https://api.github.com/users/mirtchovski/orgs","repos_url":"https://api.github.com/users/mirtchovski/repos","events_url":"https://api.github.com/users/mirtchovski/events{/privacy}","received_events_url":"https://api.github.com/users/mirtchovski/received_events","type":"User","site_admin":false},"created_at":"2015-07-12T22:10:26Z","updated_at":"2015-07-12T22:10:26Z","author_association":"NONE","body":"I read that paragraph and according to it I expected \"def\" to be evaluated as \"def\" in base 16, not \"expected [Identifier], got Newline\".\n\n```\n> ) base 10\n\n> def \nerror: expected [Identifier], got Newline: \"\\n\"\n> dee\nerror: undefined variable \"dee\"\n> dee = 10\n\n> dee\n10\n\n> ) base 16\n\n> def\nerror: expected [Identifier], got Newline: \"\\n\"\n> dee\ndee\n```\n\nI expected \"def\" and \"dee\" to be treated equally. \n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/120767931/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/120775005","html_url":"https://github.com/robpike/ivy/issues/4#issuecomment-120775005","issue_url":"https://api.github.com/repos/robpike/ivy/issues/4","id":120775005,"node_id":"MDEyOklzc3VlQ29tbWVudDEyMDc3NTAwNQ==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2015-07-13T00:06:15Z","updated_at":"2015-07-13T00:06:15Z","author_association":"OWNER","body":"def is a keyword, not an identifier, but you have a point. I will investigate.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/120775005/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/120780573","html_url":"https://github.com/robpike/ivy/issues/4#issuecomment-120780573","issue_url":"https://api.github.com/repos/robpike/ivy/issues/4","id":120780573,"node_id":"MDEyOklzc3VlQ29tbWVudDEyMDc4MDU3Mw==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2015-07-13T01:33:03Z","updated_at":"2015-07-13T01:33:03Z","author_association":"OWNER","body":"The \"def\" keyword is indeed a keyword. I think the right fix is to make sure the keyword is not a valid hexadecimal number, so I'll do that: \"op\" is a good, maybe better choice.\n\nCompatibility is not an issue here.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/120780573/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/120785291","html_url":"https://github.com/robpike/ivy/issues/4#issuecomment-120785291","issue_url":"https://api.github.com/repos/robpike/ivy/issues/4","id":120785291,"node_id":"MDEyOklzc3VlQ29tbWVudDEyMDc4NTI5MQ==","user":{"login":"mirtchovski","id":2047078,"node_id":"MDQ6VXNlcjIwNDcwNzg=","avatar_url":"https://avatars.githubusercontent.com/u/2047078?v=4","gravatar_id":"","url":"https://api.github.com/users/mirtchovski","html_url":"https://github.com/mirtchovski","followers_url":"https://api.github.com/users/mirtchovski/followers","following_url":"https://api.github.com/users/mirtchovski/following{/other_user}","gists_url":"https://api.github.com/users/mirtchovski/gists{/gist_id}","starred_url":"https://api.github.com/users/mirtchovski/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mirtchovski/subscriptions","organizations_url":"https://api.github.com/users/mirtchovski/orgs","repos_url":"https://api.github.com/users/mirtchovski/repos","events_url":"https://api.github.com/users/mirtchovski/events{/privacy}","received_events_url":"https://api.github.com/users/mirtchovski/received_events","type":"User","site_admin":false},"created_at":"2015-07-13T02:10:47Z","updated_at":"2015-07-13T02:11:18Z","author_association":"NONE","body":"but wouldn't you possibly run into the same issue at higher bases? from the original issue post, here's a clash between the \"log\" function and the valid number 'log₃₀' (21:24:16₃₀ according to wolfram alpha). \"lpg\" works fine:\n\n```\n> ) base 30\n\n> abc + log\nerror: unexpecred Newline: \"\\n\"\n> abc + lpg\n126s\n```\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/120785291/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/120788912","html_url":"https://github.com/robpike/ivy/issues/4#issuecomment-120788912","issue_url":"https://api.github.com/repos/robpike/ivy/issues/4","id":120788912,"node_id":"MDEyOklzc3VlQ29tbWVudDEyMDc4ODkxMg==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2015-07-13T02:35:34Z","updated_at":"2015-07-13T02:35:34Z","author_association":"OWNER","body":"Yes, you will run into it at higher bases. At higher bases, more and more identifiers will disappear. Use upper case.\n\nThis is just a toy, remember.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/120788912/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/122168531","html_url":"https://github.com/robpike/ivy/pull/5#issuecomment-122168531","issue_url":"https://api.github.com/repos/robpike/ivy/issues/5","id":122168531,"node_id":"MDEyOklzc3VlQ29tbWVudDEyMjE2ODUzMQ==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2015-07-17T04:32:09Z","updated_at":"2015-07-17T04:32:09Z","author_association":"OWNER","body":"I don't accept pull requests, but I will fix this bug. Thanks.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/122168531/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/122177119","html_url":"https://github.com/robpike/ivy/pull/5#issuecomment-122177119","issue_url":"https://api.github.com/repos/robpike/ivy/issues/5","id":122177119,"node_id":"MDEyOklzc3VlQ29tbWVudDEyMjE3NzExOQ==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2015-07-17T05:08:16Z","updated_at":"2015-07-17T05:08:16Z","author_association":"OWNER","body":"Fixed.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/122177119/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/124241234","html_url":"https://github.com/robpike/ivy/issues/6#issuecomment-124241234","issue_url":"https://api.github.com/repos/robpike/ivy/issues/6","id":124241234,"node_id":"MDEyOklzc3VlQ29tbWVudDEyNDI0MTIzNA==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2015-07-23T21:10:00Z","updated_at":"2015-07-23T21:10:00Z","author_association":"OWNER","body":"done\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/124241234/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/126139098","html_url":"https://github.com/robpike/ivy/issues/7#issuecomment-126139098","issue_url":"https://api.github.com/repos/robpike/ivy/issues/7","id":126139098,"node_id":"MDEyOklzc3VlQ29tbWVudDEyNjEzOTA5OA==","user":{"login":"mdmarek","id":241294,"node_id":"MDQ6VXNlcjI0MTI5NA==","avatar_url":"https://avatars.githubusercontent.com/u/241294?v=4","gravatar_id":"","url":"https://api.github.com/users/mdmarek","html_url":"https://github.com/mdmarek","followers_url":"https://api.github.com/users/mdmarek/followers","following_url":"https://api.github.com/users/mdmarek/following{/other_user}","gists_url":"https://api.github.com/users/mdmarek/gists{/gist_id}","starred_url":"https://api.github.com/users/mdmarek/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mdmarek/subscriptions","organizations_url":"https://api.github.com/users/mdmarek/orgs","repos_url":"https://api.github.com/users/mdmarek/repos","events_url":"https://api.github.com/users/mdmarek/events{/privacy}","received_events_url":"https://api.github.com/users/mdmarek/received_events","type":"User","site_admin":false},"created_at":"2015-07-30T00:31:26Z","updated_at":"2015-07-30T00:31:26Z","author_association":"NONE","body":"Sorry, says right on the front page.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/126139098/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/131668084","html_url":"https://github.com/robpike/ivy/issues/8#issuecomment-131668084","issue_url":"https://api.github.com/repos/robpike/ivy/issues/8","id":131668084,"node_id":"MDEyOklzc3VlQ29tbWVudDEzMTY2ODA4NA==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2015-08-17T03:18:58Z","updated_at":"2015-08-17T03:18:58Z","author_association":"OWNER","body":"Parentheses are not needed for function application. Your expression sqrt(5)+1.0 is exactly the same, parsewise, as sqrt 5 + 1.0, or sqrt 6.\n\nYou might like to turn on\n)debug parse\nto help you understand how it parses. It's APL's rules, and you get used to them after a while. :)\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/131668084/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/131739675","html_url":"https://github.com/robpike/ivy/issues/8#issuecomment-131739675","issue_url":"https://api.github.com/repos/robpike/ivy/issues/8","id":131739675,"node_id":"MDEyOklzc3VlQ29tbWVudDEzMTczOTY3NQ==","user":{"login":"robert-wallis","id":145938,"node_id":"MDQ6VXNlcjE0NTkzOA==","avatar_url":"https://avatars.githubusercontent.com/u/145938?v=4","gravatar_id":"","url":"https://api.github.com/users/robert-wallis","html_url":"https://github.com/robert-wallis","followers_url":"https://api.github.com/users/robert-wallis/followers","following_url":"https://api.github.com/users/robert-wallis/following{/other_user}","gists_url":"https://api.github.com/users/robert-wallis/gists{/gist_id}","starred_url":"https://api.github.com/users/robert-wallis/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robert-wallis/subscriptions","organizations_url":"https://api.github.com/users/robert-wallis/orgs","repos_url":"https://api.github.com/users/robert-wallis/repos","events_url":"https://api.github.com/users/robert-wallis/events{/privacy}","received_events_url":"https://api.github.com/users/robert-wallis/received_events","type":"User","site_admin":false},"created_at":"2015-08-17T09:11:00Z","updated_at":"2015-08-17T09:11:00Z","author_association":"NONE","body":"Thank you! Sorry, I should have read the 'fine' manual instead of skim it.\n\nConstant time Fibonacci:\n\n```\ndef fib x = floor(((((1+sqrt 5)/2)**x)/sqrt 5)+1/2)\n\nfib 10000\n```\n\nOn Sun, Aug 16, 2015, 8:19 PM Rob Pike notifications@github.com wrote:\n\n> Parentheses are not needed for function application. Your expression\n> sqrt(5)+1.0 is exactly the same, parsewise, as sqrt 5 + 1.0, or sqrt 6.\n> \n> You might like to turn on\n> )debug parse\n> to help you understand how it parses. It's APL's rules, and you get used\n> to them after a while. :)\n> \n> —\n> Reply to this email directly or view it on GitHub\n> https://github.com/robpike/ivy/issues/8#issuecomment-131668084.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/131739675/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/131983725","html_url":"https://github.com/robpike/ivy/issues/8#issuecomment-131983725","issue_url":"https://api.github.com/repos/robpike/ivy/issues/8","id":131983725,"node_id":"MDEyOklzc3VlQ29tbWVudDEzMTk4MzcyNQ==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2015-08-17T22:36:57Z","updated_at":"2015-08-17T22:36:57Z","author_association":"OWNER","body":"Too many parens!\n\ndef fib x = floor 1/2 + ((1/2 \\* 1+sqrt 5)**x) / sqrt 5\n\nYou learn the style after a while.\n\nNote that 1/2 is a rational, but 1 / 2 is a division. APL had the divide symbol, which avoided the ambiguity, but then required a special symbol for negative. Ivy does it lexically: -1 vs. - 1.\n\nAlso: When the next release comes out, I hope soon (it's gated by mobile), the 'def' word will become 'op' to avoid issues when in base 16.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/131983725/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/133003289","html_url":"https://github.com/robpike/ivy/issues/9#issuecomment-133003289","issue_url":"https://api.github.com/repos/robpike/ivy/issues/9","id":133003289,"node_id":"MDEyOklzc3VlQ29tbWVudDEzMzAwMzI4OQ==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2015-08-20T13:11:30Z","updated_at":"2015-08-20T13:11:30Z","author_association":"OWNER","body":"4 is a scalar, so it has no dimension. Its shape is null.\n\nrho 1 rho 4 \n\ngives 1 because 1 rho 4 is a 1-element vector.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/133003289/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/133159820","html_url":"https://github.com/robpike/ivy/issues/9#issuecomment-133159820","issue_url":"https://api.github.com/repos/robpike/ivy/issues/9","id":133159820,"node_id":"MDEyOklzc3VlQ29tbWVudDEzMzE1OTgyMA==","user":{"login":"db47h","id":879556,"node_id":"MDQ6VXNlcjg3OTU1Ng==","avatar_url":"https://avatars.githubusercontent.com/u/879556?v=4","gravatar_id":"","url":"https://api.github.com/users/db47h","html_url":"https://github.com/db47h","followers_url":"https://api.github.com/users/db47h/followers","following_url":"https://api.github.com/users/db47h/following{/other_user}","gists_url":"https://api.github.com/users/db47h/gists{/gist_id}","starred_url":"https://api.github.com/users/db47h/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/db47h/subscriptions","organizations_url":"https://api.github.com/users/db47h/orgs","repos_url":"https://api.github.com/users/db47h/repos","events_url":"https://api.github.com/users/db47h/events{/privacy}","received_events_url":"https://api.github.com/users/db47h/received_events","type":"User","site_admin":false},"created_at":"2015-08-20T20:21:55Z","updated_at":"2015-08-20T20:21:55Z","author_association":"NONE","body":"Makes sense, thanks for the clarification. The fact that some binary operators internally cast scalars to single element vectors got me confused.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/133159820/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/149255357","html_url":"https://github.com/robpike/ivy/issues/11#issuecomment-149255357","issue_url":"https://api.github.com/repos/robpike/ivy/issues/11","id":149255357,"node_id":"MDEyOklzc3VlQ29tbWVudDE0OTI1NTM1Nw==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2015-10-19T15:50:03Z","updated_at":"2015-10-19T15:50:03Z","author_association":"OWNER","body":"This is a bug in the android wrapper. I will forward it to the authors of that program.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/149255357/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/150592388","html_url":"https://github.com/robpike/ivy/issues/12#issuecomment-150592388","issue_url":"https://api.github.com/repos/robpike/ivy/issues/12","id":150592388,"node_id":"MDEyOklzc3VlQ29tbWVudDE1MDU5MjM4OA==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2015-10-23T14:35:39Z","updated_at":"2015-10-23T14:36:02Z","author_association":"OWNER","body":"Working as intended. You are not supposed to go get github.com/robpike/ivy, you are supposed to go get robpike.io/ivy. This restriction in go get is so that when a \"vanity\" address is in place you don't import the same package multiple times in different directories.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/150592388/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/156914540","html_url":"https://github.com/robpike/ivy/issues/15#issuecomment-156914540","issue_url":"https://api.github.com/repos/robpike/ivy/issues/15","id":156914540,"node_id":"MDEyOklzc3VlQ29tbWVudDE1NjkxNDU0MA==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2015-11-16T04:47:14Z","updated_at":"2015-11-16T04:47:14Z","author_association":"OWNER","body":"Working as intended and as documented.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/156914540/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/157469780","html_url":"https://github.com/robpike/ivy/issues/16#issuecomment-157469780","issue_url":"https://api.github.com/repos/robpike/ivy/issues/16","id":157469780,"node_id":"MDEyOklzc3VlQ29tbWVudDE1NzQ2OTc4MA==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2015-11-17T18:55:06Z","updated_at":"2015-11-17T18:55:06Z","author_association":"OWNER","body":"Already there: it's called _ (underscore). Might not be documented though - I should fix that.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/157469780/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/157473041","html_url":"https://github.com/robpike/ivy/issues/16#issuecomment-157473041","issue_url":"https://api.github.com/repos/robpike/ivy/issues/16","id":157473041,"node_id":"MDEyOklzc3VlQ29tbWVudDE1NzQ3MzA0MQ==","user":{"login":"tomtom","id":39156,"node_id":"MDQ6VXNlcjM5MTU2","avatar_url":"https://avatars.githubusercontent.com/u/39156?v=4","gravatar_id":"","url":"https://api.github.com/users/tomtom","html_url":"https://github.com/tomtom","followers_url":"https://api.github.com/users/tomtom/followers","following_url":"https://api.github.com/users/tomtom/following{/other_user}","gists_url":"https://api.github.com/users/tomtom/gists{/gist_id}","starred_url":"https://api.github.com/users/tomtom/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tomtom/subscriptions","organizations_url":"https://api.github.com/users/tomtom/orgs","repos_url":"https://api.github.com/users/tomtom/repos","events_url":"https://api.github.com/users/tomtom/events{/privacy}","received_events_url":"https://api.github.com/users/tomtom/received_events","type":"User","site_admin":false},"created_at":"2015-11-17T19:08:12Z","updated_at":"2015-11-17T19:08:12Z","author_association":"NONE","body":"Thanks.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/157473041/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/161734990","html_url":"https://github.com/robpike/ivy/pull/17#issuecomment-161734990","issue_url":"https://api.github.com/repos/robpike/ivy/issues/17","id":161734990,"node_id":"MDEyOklzc3VlQ29tbWVudDE2MTczNDk5MA==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2015-12-03T18:08:55Z","updated_at":"2015-12-03T18:08:55Z","author_association":"OWNER","body":"Do all the tests still pass?\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/161734990/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/161736645","html_url":"https://github.com/robpike/ivy/pull/17#issuecomment-161736645","issue_url":"https://api.github.com/repos/robpike/ivy/issues/17","id":161736645,"node_id":"MDEyOklzc3VlQ29tbWVudDE2MTczNjY0NQ==","user":{"login":"surma","id":234957,"node_id":"MDQ6VXNlcjIzNDk1Nw==","avatar_url":"https://avatars.githubusercontent.com/u/234957?v=4","gravatar_id":"","url":"https://api.github.com/users/surma","html_url":"https://github.com/surma","followers_url":"https://api.github.com/users/surma/followers","following_url":"https://api.github.com/users/surma/following{/other_user}","gists_url":"https://api.github.com/users/surma/gists{/gist_id}","starred_url":"https://api.github.com/users/surma/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/surma/subscriptions","organizations_url":"https://api.github.com/users/surma/orgs","repos_url":"https://api.github.com/users/surma/repos","events_url":"https://api.github.com/users/surma/events{/privacy}","received_events_url":"https://api.github.com/users/surma/received_events","type":"User","site_admin":false},"created_at":"2015-12-03T18:16:15Z","updated_at":"2015-12-03T18:16:15Z","author_association":"CONTRIBUTOR","body":"I have to admit I didn’t run them when I submitted the PR (shame on me!), but they do:\n\n```\nsurma@ws ~/s/r/ivy ❯❯❯ go test ./... rand\nok robpike.io/ivy 1.169s\n? robpike.io/ivy/config [no test files]\n? robpike.io/ivy/exec [no test files]\nok robpike.io/ivy/mobile 0.774s\n? robpike.io/ivy/parse [no test files]\n? robpike.io/ivy/parse/exec [no test files]\n? robpike.io/ivy/run [no test files]\n? robpike.io/ivy/scan [no test files]\n? robpike.io/ivy/talks [no test files]\n? robpike.io/ivy/value [no test files]\n```\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/161736645/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/161739905","html_url":"https://github.com/robpike/ivy/pull/17#issuecomment-161739905","issue_url":"https://api.github.com/repos/robpike/ivy/issues/17","id":161739905,"node_id":"MDEyOklzc3VlQ29tbWVudDE2MTczOTkwNQ==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2015-12-03T18:29:13Z","updated_at":"2015-12-03T18:29:13Z","author_association":"OWNER","body":"Oh hell, I screwed up. This should have gone into the dev branch, not the master branch. (I am very unaccustomed to pull requests.) Please keep that in mind for any future tweaks.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/161739905/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/161740665","html_url":"https://github.com/robpike/ivy/pull/17#issuecomment-161740665","issue_url":"https://api.github.com/repos/robpike/ivy/issues/17","id":161740665,"node_id":"MDEyOklzc3VlQ29tbWVudDE2MTc0MDY2NQ==","user":{"login":"surma","id":234957,"node_id":"MDQ6VXNlcjIzNDk1Nw==","avatar_url":"https://avatars.githubusercontent.com/u/234957?v=4","gravatar_id":"","url":"https://api.github.com/users/surma","html_url":"https://github.com/surma","followers_url":"https://api.github.com/users/surma/followers","following_url":"https://api.github.com/users/surma/following{/other_user}","gists_url":"https://api.github.com/users/surma/gists{/gist_id}","starred_url":"https://api.github.com/users/surma/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/surma/subscriptions","organizations_url":"https://api.github.com/users/surma/orgs","repos_url":"https://api.github.com/users/surma/repos","events_url":"https://api.github.com/users/surma/events{/privacy}","received_events_url":"https://api.github.com/users/surma/received_events","type":"User","site_admin":false},"created_at":"2015-12-03T18:31:52Z","updated_at":"2015-12-03T18:31:52Z","author_association":"CONTRIBUTOR","body":"Noted. Btw: You can change the default branch in the settings of the repository under “branches” (although that will also change the default branch when you open the repository’s URL just to look at it).\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/161740665/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/161773636","html_url":"https://github.com/robpike/ivy/pull/17#issuecomment-161773636","issue_url":"https://api.github.com/repos/robpike/ivy/issues/17","id":161773636,"node_id":"MDEyOklzc3VlQ29tbWVudDE2MTc3MzYzNg==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2015-12-03T20:29:51Z","updated_at":"2015-12-03T20:29:51Z","author_association":"OWNER","body":"It really should have a \"release\" branch so the mobile stuff can connect to it, but I lazily let the master branch serve that purpose. I wasn't expecting so much attention when all this started!\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/161773636/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/162262857","html_url":"https://github.com/robpike/ivy/pull/17#issuecomment-162262857","issue_url":"https://api.github.com/repos/robpike/ivy/issues/17","id":162262857,"node_id":"MDEyOklzc3VlQ29tbWVudDE2MjI2Mjg1Nw==","user":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"created_at":"2015-12-06T01:47:28Z","updated_at":"2015-12-06T01:48:09Z","author_association":"CONTRIBUTOR","body":"> This should have gone into the dev branch, not the master branch. Please keep that in mind for any future tweaks.\n\nOne way to communicate this information to future contributors is to note it in a `CONTRIBUTING.md` file. It shows up when people start creating a PR.\n\nOtherwise, the default convention is to submit PRs against the default branch of the repository (typically `master`).\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/162262857/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}]165 55360 GET https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=2&sort=updated HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:48 GMT Etag: W/"3a112e3680121ba77bce8547083b6936361ab8dc23abd6370b22a7584c909aae" Link: <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=1&sort=updated>; rel="prev", <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=3&sort=updated>; rel="next", <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=11&sort=updated>; rel="last", <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=1&sort=updated>; rel="first" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EB5CD:3349A8:665E33AF X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4996 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 4 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/165613262","html_url":"https://github.com/robpike/ivy/issues/18#issuecomment-165613262","issue_url":"https://api.github.com/repos/robpike/ivy/issues/18","id":165613262,"node_id":"MDEyOklzc3VlQ29tbWVudDE2NTYxMzI2Mg==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2015-12-17T23:21:52Z","updated_at":"2015-12-17T23:21:52Z","author_association":"OWNER","body":"Fixed in dev branch.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/165613262/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/169157303","html_url":"https://github.com/robpike/ivy/issues/19#issuecomment-169157303","issue_url":"https://api.github.com/repos/robpike/ivy/issues/19","id":169157303,"node_id":"MDEyOklzc3VlQ29tbWVudDE2OTE1NzMwMw==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2016-01-05T22:39:41Z","updated_at":"2016-01-05T22:39:41Z","author_association":"OWNER","body":"See the import comment, or listen to the error message. Ivy uses a custom import.\n\ngo get robpike.io/ivy\n\nIt is a fair point though that this should be explained in the README. I will fix that.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/169157303/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/170978137","html_url":"https://github.com/robpike/ivy/issues/20#issuecomment-170978137","issue_url":"https://api.github.com/repos/robpike/ivy/issues/20","id":170978137,"node_id":"MDEyOklzc3VlQ29tbWVudDE3MDk3ODEzNw==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2016-01-12T17:10:33Z","updated_at":"2016-01-12T17:10:33Z","author_association":"OWNER","body":"Precedence is APL-like. See the documentation near the top of https://godoc.org/robpike.io/ivy\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/170978137/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/175190605","html_url":"https://github.com/robpike/ivy/issues/21#issuecomment-175190605","issue_url":"https://api.github.com/repos/robpike/ivy/issues/21","id":175190605,"node_id":"MDEyOklzc3VlQ29tbWVudDE3NTE5MDYwNQ==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2016-01-26T19:30:36Z","updated_at":"2016-01-26T19:31:35Z","author_association":"OWNER","body":"`2/3**2` is `(2/3) ** 2` because the the scanner is greedy about grabbing fractions. 2/3 is one rational number: two-thirds, not separately two divided by three.\n\nYou are correct however that this is not explained well in the documentation. I will fix that in the next release.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/175190605/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/175191554","html_url":"https://github.com/robpike/ivy/issues/22#issuecomment-175191554","issue_url":"https://api.github.com/repos/robpike/ivy/issues/22","id":175191554,"node_id":"MDEyOklzc3VlQ29tbWVudDE3NTE5MTU1NA==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2016-01-26T19:32:29Z","updated_at":"2016-01-26T19:32:29Z","author_association":"OWNER","body":"@griesemer is considering borrowing some ivy code and adapting it into math/big. Some of it will already happen in 1.6\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/175191554/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/175253391","html_url":"https://github.com/robpike/ivy/issues/21#issuecomment-175253391","issue_url":"https://api.github.com/repos/robpike/ivy/issues/21","id":175253391,"node_id":"MDEyOklzc3VlQ29tbWVudDE3NTI1MzM5MQ==","user":{"login":"mpl","id":626071,"node_id":"MDQ6VXNlcjYyNjA3MQ==","avatar_url":"https://avatars.githubusercontent.com/u/626071?v=4","gravatar_id":"","url":"https://api.github.com/users/mpl","html_url":"https://github.com/mpl","followers_url":"https://api.github.com/users/mpl/followers","following_url":"https://api.github.com/users/mpl/following{/other_user}","gists_url":"https://api.github.com/users/mpl/gists{/gist_id}","starred_url":"https://api.github.com/users/mpl/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mpl/subscriptions","organizations_url":"https://api.github.com/users/mpl/orgs","repos_url":"https://api.github.com/users/mpl/repos","events_url":"https://api.github.com/users/mpl/events{/privacy}","received_events_url":"https://api.github.com/users/mpl/received_events","type":"User","site_admin":false},"created_at":"2016-01-26T22:04:18Z","updated_at":"2016-01-26T22:04:18Z","author_association":"NONE","body":"I see, thanks.\nI understand the merit and convenience of being able to represent fractional numbers, but it's a bit unfortunate that the behaviour in effect looks like an exception to an otherwise beautifully simple rule.\n\nI suppose it's just a matter of getting used to it once documented.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/175253391/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/175282567","html_url":"https://github.com/robpike/ivy/issues/21#issuecomment-175282567","issue_url":"https://api.github.com/repos/robpike/ivy/issues/21","id":175282567,"node_id":"MDEyOklzc3VlQ29tbWVudDE3NTI4MjU2Nw==","user":{"login":"benjamin-rood","id":10102132,"node_id":"MDQ6VXNlcjEwMTAyMTMy","avatar_url":"https://avatars.githubusercontent.com/u/10102132?v=4","gravatar_id":"","url":"https://api.github.com/users/benjamin-rood","html_url":"https://github.com/benjamin-rood","followers_url":"https://api.github.com/users/benjamin-rood/followers","following_url":"https://api.github.com/users/benjamin-rood/following{/other_user}","gists_url":"https://api.github.com/users/benjamin-rood/gists{/gist_id}","starred_url":"https://api.github.com/users/benjamin-rood/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/benjamin-rood/subscriptions","organizations_url":"https://api.github.com/users/benjamin-rood/orgs","repos_url":"https://api.github.com/users/benjamin-rood/repos","events_url":"https://api.github.com/users/benjamin-rood/events{/privacy}","received_events_url":"https://api.github.com/users/benjamin-rood/received_events","type":"User","site_admin":false},"created_at":"2016-01-26T22:59:45Z","updated_at":"2016-01-26T22:59:45Z","author_association":"NONE","body":"Two cents:\nWhen the given expression is written as `(2/3) ** 2` then the logical result:\n\n![screen shot 2016-01-27 at 11 51 33 am](https://cloud.githubusercontent.com/assets/10102132/12597948/65d75278-c4ec-11e5-95f8-2b6a1f00c15f.png)\n\nWill always be sensible. Perhaps the thing to do (in the documentation) is to emphasise the use of brackets, rather than making assumptions. Maybe I'm crazy (or just bad at math) but I always group operations when there is any chance of any ambiguity, whether on a Casio or when coding.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/175282567/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/175516899","html_url":"https://github.com/robpike/ivy/issues/22#issuecomment-175516899","issue_url":"https://api.github.com/repos/robpike/ivy/issues/22","id":175516899,"node_id":"MDEyOklzc3VlQ29tbWVudDE3NTUxNjg5OQ==","user":{"login":"zboralski","id":104316,"node_id":"MDQ6VXNlcjEwNDMxNg==","avatar_url":"https://avatars.githubusercontent.com/u/104316?v=4","gravatar_id":"","url":"https://api.github.com/users/zboralski","html_url":"https://github.com/zboralski","followers_url":"https://api.github.com/users/zboralski/followers","following_url":"https://api.github.com/users/zboralski/following{/other_user}","gists_url":"https://api.github.com/users/zboralski/gists{/gist_id}","starred_url":"https://api.github.com/users/zboralski/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zboralski/subscriptions","organizations_url":"https://api.github.com/users/zboralski/orgs","repos_url":"https://api.github.com/users/zboralski/repos","events_url":"https://api.github.com/users/zboralski/events{/privacy}","received_events_url":"https://api.github.com/users/zboralski/received_events","type":"User","site_admin":false},"created_at":"2016-01-27T09:48:11Z","updated_at":"2016-01-27T09:48:11Z","author_association":"NONE","body":"That's great :) \n\nWe adapted some of the ivy code into our math/big fork (App Engine is still using 1.4.2, and big Floats are only available in 1.5)\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/175516899/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/175715756","html_url":"https://github.com/robpike/ivy/issues/22#issuecomment-175715756","issue_url":"https://api.github.com/repos/robpike/ivy/issues/22","id":175715756,"node_id":"MDEyOklzc3VlQ29tbWVudDE3NTcxNTc1Ng==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2016-01-27T16:09:26Z","updated_at":"2016-01-27T16:09:41Z","author_association":"OWNER","body":"Be aware that there are certainly better algorithms for most of the transcendentals in ivy. I wrote the obvious code using my physicist's understanding of mathematics, which is not the same as expert understanding of floating-point arithmetic.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/175715756/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/184059610","html_url":"https://github.com/robpike/ivy/issues/16#issuecomment-184059610","issue_url":"https://api.github.com/repos/robpike/ivy/issues/16","id":184059610,"node_id":"MDEyOklzc3VlQ29tbWVudDE4NDA1OTYxMA==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2016-02-15T04:08:33Z","updated_at":"2016-02-15T04:08:33Z","author_association":"OWNER","body":"Now documented on master.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/184059610/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/188513657","html_url":"https://github.com/robpike/ivy/issues/23#issuecomment-188513657","issue_url":"https://api.github.com/repos/robpike/ivy/issues/23","id":188513657,"node_id":"MDEyOklzc3VlQ29tbWVudDE4ODUxMzY1Nw==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2016-02-24T23:28:38Z","updated_at":"2016-02-24T23:28:38Z","author_association":"OWNER","body":"Thank you for the report. I rewrote the code for simpler correctness.\n\nFixed in the dev branch.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/188513657/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/201707482","html_url":"https://github.com/robpike/ivy/issues/25#issuecomment-201707482","issue_url":"https://api.github.com/repos/robpike/ivy/issues/25","id":201707482,"node_id":"MDEyOklzc3VlQ29tbWVudDIwMTcwNzQ4Mg==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2016-03-26T05:30:09Z","updated_at":"2016-03-26T05:30:09Z","author_association":"OWNER","body":"Nice catch. Fixed in the dev branch.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/201707482/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/201707501","html_url":"https://github.com/robpike/ivy/issues/24#issuecomment-201707501","issue_url":"https://api.github.com/repos/robpike/ivy/issues/24","id":201707501,"node_id":"MDEyOklzc3VlQ29tbWVudDIwMTcwNzUwMQ==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2016-03-26T05:30:40Z","updated_at":"2016-03-26T05:30:40Z","author_association":"OWNER","body":"Fixed in the dev branch.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/201707501/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/202317818","html_url":"https://github.com/robpike/ivy/issues/21#issuecomment-202317818","issue_url":"https://api.github.com/repos/robpike/ivy/issues/21","id":202317818,"node_id":"MDEyOklzc3VlQ29tbWVudDIwMjMxNzgxOA==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2016-03-28T09:17:46Z","updated_at":"2016-03-28T09:17:46Z","author_association":"OWNER","body":"Fixed in the dev branch.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/202317818/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/209993940","html_url":"https://github.com/robpike/ivy/issues/26#issuecomment-209993940","issue_url":"https://api.github.com/repos/robpike/ivy/issues/26","id":209993940,"node_id":"MDEyOklzc3VlQ29tbWVudDIwOTk5Mzk0MA==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2016-04-14T15:12:54Z","updated_at":"2016-04-14T15:12:54Z","author_association":"OWNER","body":"I thought about this when writing ivy, and although I understand the desire for compatibility with APL, ivy is really not APL in many ways, and never will be. For the particular case of modulo, it seemed to confusing to write A mod B to mean B mod A! So no, this won't happen.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/209993940/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/226378936","html_url":"https://github.com/robpike/ivy/issues/14#issuecomment-226378936","issue_url":"https://api.github.com/repos/robpike/ivy/issues/14","id":226378936,"node_id":"MDEyOklzc3VlQ29tbWVudDIyNjM3ODkzNg==","user":{"login":"benjamin-rood","id":10102132,"node_id":"MDQ6VXNlcjEwMTAyMTMy","avatar_url":"https://avatars.githubusercontent.com/u/10102132?v=4","gravatar_id":"","url":"https://api.github.com/users/benjamin-rood","html_url":"https://github.com/benjamin-rood","followers_url":"https://api.github.com/users/benjamin-rood/followers","following_url":"https://api.github.com/users/benjamin-rood/following{/other_user}","gists_url":"https://api.github.com/users/benjamin-rood/gists{/gist_id}","starred_url":"https://api.github.com/users/benjamin-rood/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/benjamin-rood/subscriptions","organizations_url":"https://api.github.com/users/benjamin-rood/orgs","repos_url":"https://api.github.com/users/benjamin-rood/repos","events_url":"https://api.github.com/users/benjamin-rood/events{/privacy}","received_events_url":"https://api.github.com/users/benjamin-rood/received_events","type":"User","site_admin":false},"created_at":"2016-06-16T03:23:49Z","updated_at":"2016-06-16T03:23:49Z","author_association":"NONE","body":"Very good idea.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/226378936/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/226816093","html_url":"https://github.com/robpike/ivy/issues/28#issuecomment-226816093","issue_url":"https://api.github.com/repos/robpike/ivy/issues/28","id":226816093,"node_id":"MDEyOklzc3VlQ29tbWVudDIyNjgxNjA5Mw==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2016-06-17T16:27:46Z","updated_at":"2016-06-17T16:44:49Z","author_association":"OWNER","body":"You can't, at least not yet. Ivy is far from a complete mapping of APL's features, even APL\\360. I believe the more powerful versions α and ω came much later, perhaps in APL2. I'm not sure.\n\nOf course you can always define a unary or binary operator and name the arguments yourself; there are examples in the ivy help text. But looping and conditionals are not available.\n\nI may do something about that one day but have no plans to do so.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/226816093/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/226893441","html_url":"https://github.com/robpike/ivy/issues/28#issuecomment-226893441","issue_url":"https://api.github.com/repos/robpike/ivy/issues/28","id":226893441,"node_id":"MDEyOklzc3VlQ29tbWVudDIyNjg5MzQ0MQ==","user":{"login":"benjamin-rood","id":10102132,"node_id":"MDQ6VXNlcjEwMTAyMTMy","avatar_url":"https://avatars.githubusercontent.com/u/10102132?v=4","gravatar_id":"","url":"https://api.github.com/users/benjamin-rood","html_url":"https://github.com/benjamin-rood","followers_url":"https://api.github.com/users/benjamin-rood/followers","following_url":"https://api.github.com/users/benjamin-rood/following{/other_user}","gists_url":"https://api.github.com/users/benjamin-rood/gists{/gist_id}","starred_url":"https://api.github.com/users/benjamin-rood/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/benjamin-rood/subscriptions","organizations_url":"https://api.github.com/users/benjamin-rood/orgs","repos_url":"https://api.github.com/users/benjamin-rood/repos","events_url":"https://api.github.com/users/benjamin-rood/events{/privacy}","received_events_url":"https://api.github.com/users/benjamin-rood/received_events","type":"User","site_admin":false},"created_at":"2016-06-17T22:10:07Z","updated_at":"2016-06-17T22:10:07Z","author_association":"NONE","body":"Thanks for the response. I wonder how one could do a recursive gcd operator then without conditionals? Ultimately I wanted to try to implement a binary coprime operator where `op x coprime n` produces a vector with all natural numbers ≤ n which are coprime to x.\n\nI do appreciate that as you say, this is a plaything. I very much enjoyed the implementation in Go presentation and I learnt a lot from it, so thank you.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/226893441/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/248025315","html_url":"https://github.com/robpike/ivy/issues/29#issuecomment-248025315","issue_url":"https://api.github.com/repos/robpike/ivy/issues/29","id":248025315,"node_id":"MDEyOklzc3VlQ29tbWVudDI0ODAyNTMxNQ==","user":{"login":"bronze1man","id":1107541,"node_id":"MDQ6VXNlcjExMDc1NDE=","avatar_url":"https://avatars.githubusercontent.com/u/1107541?v=4","gravatar_id":"","url":"https://api.github.com/users/bronze1man","html_url":"https://github.com/bronze1man","followers_url":"https://api.github.com/users/bronze1man/followers","following_url":"https://api.github.com/users/bronze1man/following{/other_user}","gists_url":"https://api.github.com/users/bronze1man/gists{/gist_id}","starred_url":"https://api.github.com/users/bronze1man/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bronze1man/subscriptions","organizations_url":"https://api.github.com/users/bronze1man/orgs","repos_url":"https://api.github.com/users/bronze1man/repos","events_url":"https://api.github.com/users/bronze1man/events{/privacy}","received_events_url":"https://api.github.com/users/bronze1man/received_events","type":"User","site_admin":false},"created_at":"2016-09-19T15:24:07Z","updated_at":"2016-09-19T15:24:15Z","author_association":"NONE","body":"I have known ios10 and golang 1.6 is not compatible.\nGolang1.7.1 and ios10 is compatible.\nThe ivy may need recompile with golang1.7.1\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/248025315/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/250945716","html_url":"https://github.com/robpike/ivy/pull/27#issuecomment-250945716","issue_url":"https://api.github.com/repos/robpike/ivy/issues/27","id":250945716,"node_id":"MDEyOklzc3VlQ29tbWVudDI1MDk0NTcxNg==","user":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"created_at":"2016-10-02T00:15:36Z","updated_at":"2016-10-02T00:54:12Z","author_association":"CONTRIBUTOR","body":"LGTM.\n\n`unconvert` tool by @mdempsky finds these opportunities to simplify code, and one more in `robpike.io/ivy/value` package.\n\n``` bash\nivy $ unconvert ./...\nsrc/robpike.io/ivy/scan/scan.go:112:19: unnecessary conversion\nsrc/robpike.io/ivy/scan/scan.go:115:24: unnecessary conversion\nsrc/robpike.io/ivy/value/binary.go:885:21: unnecessary conversion\n```\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/250945716/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/252816510","html_url":"https://github.com/robpike/ivy/issues/29#issuecomment-252816510","issue_url":"https://api.github.com/repos/robpike/ivy/issues/29","id":252816510,"node_id":"MDEyOklzc3VlQ29tbWVudDI1MjgxNjUxMA==","user":{"login":"morriswinkler","id":4302527,"node_id":"MDQ6VXNlcjQzMDI1Mjc=","avatar_url":"https://avatars.githubusercontent.com/u/4302527?v=4","gravatar_id":"","url":"https://api.github.com/users/morriswinkler","html_url":"https://github.com/morriswinkler","followers_url":"https://api.github.com/users/morriswinkler/followers","following_url":"https://api.github.com/users/morriswinkler/following{/other_user}","gists_url":"https://api.github.com/users/morriswinkler/gists{/gist_id}","starred_url":"https://api.github.com/users/morriswinkler/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/morriswinkler/subscriptions","organizations_url":"https://api.github.com/users/morriswinkler/orgs","repos_url":"https://api.github.com/users/morriswinkler/repos","events_url":"https://api.github.com/users/morriswinkler/events{/privacy}","received_events_url":"https://api.github.com/users/morriswinkler/received_events","type":"User","site_admin":false},"created_at":"2016-10-11T05:21:04Z","updated_at":"2016-10-11T05:21:04Z","author_association":"NONE","body":"Yep, that is right, I tested it and it works after a recompile with 1.7, would be nice if the version in the app store get's an update. 👍 \n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/252816510/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/252959752","html_url":"https://github.com/robpike/ivy/issues/29#issuecomment-252959752","issue_url":"https://api.github.com/repos/robpike/ivy/issues/29","id":252959752,"node_id":"MDEyOklzc3VlQ29tbWVudDI1Mjk1OTc1Mg==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2016-10-11T15:53:58Z","updated_at":"2016-10-11T15:53:58Z","author_association":"OWNER","body":"We are working on it. It's not nearly as easy as \"git push\".\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/252959752/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/253695779","html_url":"https://github.com/robpike/ivy/issues/29#issuecomment-253695779","issue_url":"https://api.github.com/repos/robpike/ivy/issues/29","id":253695779,"node_id":"MDEyOklzc3VlQ29tbWVudDI1MzY5NTc3OQ==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2016-10-14T02:43:35Z","updated_at":"2016-10-14T02:44:02Z","author_association":"OWNER","body":"The update is in the App store thanks to David Crawshaw.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/253695779/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/253701772","html_url":"https://github.com/robpike/ivy/issues/29#issuecomment-253701772","issue_url":"https://api.github.com/repos/robpike/ivy/issues/29","id":253701772,"node_id":"MDEyOklzc3VlQ29tbWVudDI1MzcwMTc3Mg==","user":{"login":"griesemer","id":8528975,"node_id":"MDQ6VXNlcjg1Mjg5NzU=","avatar_url":"https://avatars.githubusercontent.com/u/8528975?v=4","gravatar_id":"","url":"https://api.github.com/users/griesemer","html_url":"https://github.com/griesemer","followers_url":"https://api.github.com/users/griesemer/followers","following_url":"https://api.github.com/users/griesemer/following{/other_user}","gists_url":"https://api.github.com/users/griesemer/gists{/gist_id}","starred_url":"https://api.github.com/users/griesemer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/griesemer/subscriptions","organizations_url":"https://api.github.com/users/griesemer/orgs","repos_url":"https://api.github.com/users/griesemer/repos","events_url":"https://api.github.com/users/griesemer/events{/privacy}","received_events_url":"https://api.github.com/users/griesemer/received_events","type":"User","site_admin":false},"created_at":"2016-10-14T03:37:18Z","updated_at":"2016-10-14T03:37:18Z","author_association":"NONE","body":"Confirming that it works on my phone. Thanks.\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/253701772/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/277348377","html_url":"https://github.com/robpike/ivy/issues/31#issuecomment-277348377","issue_url":"https://api.github.com/repos/robpike/ivy/issues/31","id":277348377,"node_id":"MDEyOklzc3VlQ29tbWVudDI3NzM0ODM3Nw==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2017-02-03T20:04:32Z","updated_at":"2017-02-03T20:04:56Z","author_association":"OWNER","body":"Since the loops are all Taylor or Maclaurin series, it seems that a delta of zero is good, since the series are strictly convergent. But due to numerical issues, the delta might be very small but not zero; once it stops changing, it's time to stop the loop.\r\n\r\nThat's the idea, found empirically. I suppose a comment would help.\r\n\r\nIf you like, try your method and see if it works. Maybe it does now; there's been a lot of change since that code was written.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/277348377/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/277358929","html_url":"https://github.com/robpike/ivy/issues/31#issuecomment-277358929","issue_url":"https://api.github.com/repos/robpike/ivy/issues/31","id":277358929,"node_id":"MDEyOklzc3VlQ29tbWVudDI3NzM1ODkyOQ==","user":{"login":"RaduBerinde","id":16544120,"node_id":"MDQ6VXNlcjE2NTQ0MTIw","avatar_url":"https://avatars.githubusercontent.com/u/16544120?v=4","gravatar_id":"","url":"https://api.github.com/users/RaduBerinde","html_url":"https://github.com/RaduBerinde","followers_url":"https://api.github.com/users/RaduBerinde/followers","following_url":"https://api.github.com/users/RaduBerinde/following{/other_user}","gists_url":"https://api.github.com/users/RaduBerinde/gists{/gist_id}","starred_url":"https://api.github.com/users/RaduBerinde/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RaduBerinde/subscriptions","organizations_url":"https://api.github.com/users/RaduBerinde/orgs","repos_url":"https://api.github.com/users/RaduBerinde/repos","events_url":"https://api.github.com/users/RaduBerinde/events{/privacy}","received_events_url":"https://api.github.com/users/RaduBerinde/received_events","type":"User","site_admin":false},"created_at":"2017-02-03T20:51:10Z","updated_at":"2017-02-03T20:51:10Z","author_association":"CONTRIBUTOR","body":"Thanks Rob - I am still struggling with why seeing the same delta between consecutive estimates is the relevant condition. Why is it time to stop the loop if the delta isn't changing (again, consider the example `0, 10, 20, 30, 33, 35, 34`)? If the delta was the difference between the estimate and some *fixed* \"target\" value, this would absolutely make sense, but this is not what is happening.\r\n\r\nA non-zero delta means that the estimate is changing; so the next computation in the series will be different, so unlikely to yield the same delta. Is the idea that the estimate might \"wiggle\" by `+/-eps` , where `eps` is the smallest number that can be represented with the precision we are using, or something to that effect?\r\n\r\nEven if consecutive delta equality is indeed the condition that we want, I think we should still check that the delta itself is small (it would be better than the `l.stallCount > 3` hack..)","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/277358929/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/277372877","html_url":"https://github.com/robpike/ivy/issues/31#issuecomment-277372877","issue_url":"https://api.github.com/repos/robpike/ivy/issues/31","id":277372877,"node_id":"MDEyOklzc3VlQ29tbWVudDI3NzM3Mjg3Nw==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2017-02-03T21:55:14Z","updated_at":"2017-02-03T21:55:14Z","author_association":"OWNER","body":"As I said, this criterion was developed empirically, and it works, empirically. Also, as I said, these are all Taylor and Maclaurin series and they are strictly convergent, so you won't see a series like the one you mentioned.\r\n\r\nI am not a numerical expert, but I have tested this code quite thoroughly and except for some noise in the very low bits of some of the nastier trig functions, it is accurate.\r\n\r\nHowever, it isn't rigorous, I know, so if you can construct a simpler test that is easier to explain and passes the test suite, I am happy to hear about it.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/277372877/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/277390742","html_url":"https://github.com/robpike/ivy/issues/31#issuecomment-277390742","issue_url":"https://api.github.com/repos/robpike/ivy/issues/31","id":277390742,"node_id":"MDEyOklzc3VlQ29tbWVudDI3NzM5MDc0Mg==","user":{"login":"RaduBerinde","id":16544120,"node_id":"MDQ6VXNlcjE2NTQ0MTIw","avatar_url":"https://avatars.githubusercontent.com/u/16544120?v=4","gravatar_id":"","url":"https://api.github.com/users/RaduBerinde","html_url":"https://github.com/RaduBerinde","followers_url":"https://api.github.com/users/RaduBerinde/followers","following_url":"https://api.github.com/users/RaduBerinde/following{/other_user}","gists_url":"https://api.github.com/users/RaduBerinde/gists{/gist_id}","starred_url":"https://api.github.com/users/RaduBerinde/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RaduBerinde/subscriptions","organizations_url":"https://api.github.com/users/RaduBerinde/orgs","repos_url":"https://api.github.com/users/RaduBerinde/repos","events_url":"https://api.github.com/users/RaduBerinde/events{/privacy}","received_events_url":"https://api.github.com/users/RaduBerinde/received_events","type":"User","site_admin":false},"created_at":"2017-02-03T23:26:17Z","updated_at":"2017-02-03T23:26:17Z","author_association":"CONTRIBUTOR","body":"I understand, thanks.\r\n\r\nI took a look and the cases that were covered by this check are cases where the delta alternated between `+/- eps` where `eps` is the last bit of precision. For example:\r\n\r\n```\r\nZ: (0.979795897113) delta: (8.63616855509e-78) zprec: 256 zexp: 0\r\nZ: (0.979795897113) delta: (-8.63616855509e-78) zprec: 256 zexp: 0\r\nZ: (0.979795897113) delta: (8.63616855509e-78) zprec: 256 zexp: 0\r\nZ: (0.979795897113) delta: (-8.63616855509e-78) zprec: 256 zexp: 0\r\nZ: (0.979795897113) delta: (8.63616855509e-78) zprec: 256 zexp: 0\r\n```\r\n`8.63616855509e-78` is ~`2^-256`\r\n\r\nAnother:\r\n```\r\nZ: (14142135623.7) delta: (1.48368246027e-67) zprec: 256 zexp: 34\r\nZ: (14142135623.7) delta: (-1.48368246027e-67) zprec: 256 zexp: 34\r\nZ: (14142135623.7) delta: (1.48368246027e-67) zprec: 256 zexp: 34\r\n```\r\n`1.48368246027e-67` is ~`2^-(256-34)`.\r\n\r\nWe can check if delta is smaller than this value, which makes sense conceptually: https://github.com/robpike/ivy/commit/7d424cdf6f25b091a3ca3b28016817fc256ed136\r\n\r\nIf you think this is better, I'll open a PR.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/277390742/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/277396571","html_url":"https://github.com/robpike/ivy/issues/31#issuecomment-277396571","issue_url":"https://api.github.com/repos/robpike/ivy/issues/31","id":277396571,"node_id":"MDEyOklzc3VlQ29tbWVudDI3NzM5NjU3MQ==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2017-02-04T00:03:49Z","updated_at":"2017-02-04T00:03:49Z","author_association":"OWNER","body":"That sounds good. Thanks for investigating.\r\n\r\nBefore I can accept a PR from you, I will need to have you sign the Google CLA at https://cla.developers.google.com/about/google-individual. Sorry about that.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/277396571/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/277403215","html_url":"https://github.com/robpike/ivy/issues/31#issuecomment-277403215","issue_url":"https://api.github.com/repos/robpike/ivy/issues/31","id":277403215,"node_id":"MDEyOklzc3VlQ29tbWVudDI3NzQwMzIxNQ==","user":{"login":"RaduBerinde","id":16544120,"node_id":"MDQ6VXNlcjE2NTQ0MTIw","avatar_url":"https://avatars.githubusercontent.com/u/16544120?v=4","gravatar_id":"","url":"https://api.github.com/users/RaduBerinde","html_url":"https://github.com/RaduBerinde","followers_url":"https://api.github.com/users/RaduBerinde/followers","following_url":"https://api.github.com/users/RaduBerinde/following{/other_user}","gists_url":"https://api.github.com/users/RaduBerinde/gists{/gist_id}","starred_url":"https://api.github.com/users/RaduBerinde/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RaduBerinde/subscriptions","organizations_url":"https://api.github.com/users/RaduBerinde/orgs","repos_url":"https://api.github.com/users/RaduBerinde/repos","events_url":"https://api.github.com/users/RaduBerinde/events{/privacy}","received_events_url":"https://api.github.com/users/RaduBerinde/received_events","type":"User","site_admin":false},"created_at":"2017-02-04T00:55:46Z","updated_at":"2017-02-04T00:55:46Z","author_association":"CONTRIBUTOR","body":"I already signed it (I contributed to `go` before), thanks.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/277403215/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}]165 53813 GET https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=3&sort=updated HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:48 GMT Etag: W/"7b3e460ff7ee4bd2c9447a37af40afb9e8969855859ed59e6bbcdec2c6994eb8" Link: <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=2&sort=updated>; rel="prev", <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=4&sort=updated>; rel="next", <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=11&sort=updated>; rel="last", <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=1&sort=updated>; rel="first" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EB6F1:334B91:665E33B0 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4995 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 5 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/277459694","html_url":"https://github.com/robpike/ivy/issues/31#issuecomment-277459694","issue_url":"https://api.github.com/repos/robpike/ivy/issues/31","id":277459694,"node_id":"MDEyOklzc3VlQ29tbWVudDI3NzQ1OTY5NA==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2017-02-04T17:04:45Z","updated_at":"2017-02-04T17:04:45Z","author_association":"OWNER","body":"I couldn't find your github address, but now I have found your email address, and indeed you are all set. Apologies for the false alarm.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/277459694/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/284034006","html_url":"https://github.com/robpike/ivy/pull/33#issuecomment-284034006","issue_url":"https://api.github.com/repos/robpike/ivy/issues/33","id":284034006,"node_id":"MDEyOklzc3VlQ29tbWVudDI4NDAzNDAwNg==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2017-03-03T18:35:51Z","updated_at":"2017-03-03T18:35:51Z","author_association":"OWNER","body":"All edits go into dev branch, not master.\r\n\r\nThe change looks good otherwise. Thanks.\r\n\r\nThe one-liner is a great goal. In my nearly nonexistent spare time I'm trying to make ops be first-class, which will make some things easier to do, including the one-liner. Long way to go yet though.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/284034006/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/284060577","html_url":"https://github.com/robpike/ivy/pull/33#issuecomment-284060577","issue_url":"https://api.github.com/repos/robpike/ivy/issues/33","id":284060577,"node_id":"MDEyOklzc3VlQ29tbWVudDI4NDA2MDU3Nw==","user":{"login":"tcolgate","id":76019,"node_id":"MDQ6VXNlcjc2MDE5","avatar_url":"https://avatars.githubusercontent.com/u/76019?v=4","gravatar_id":"","url":"https://api.github.com/users/tcolgate","html_url":"https://github.com/tcolgate","followers_url":"https://api.github.com/users/tcolgate/followers","following_url":"https://api.github.com/users/tcolgate/following{/other_user}","gists_url":"https://api.github.com/users/tcolgate/gists{/gist_id}","starred_url":"https://api.github.com/users/tcolgate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tcolgate/subscriptions","organizations_url":"https://api.github.com/users/tcolgate/orgs","repos_url":"https://api.github.com/users/tcolgate/repos","events_url":"https://api.github.com/users/tcolgate/events{/privacy}","received_events_url":"https://api.github.com/users/tcolgate/received_events","type":"User","site_admin":false},"created_at":"2017-03-03T20:22:12Z","updated_at":"2017-03-03T20:22:12Z","author_association":"CONTRIBUTOR","body":"I've updated the pull base, and rebased on dev.\r\nI've had a rough hack and removing the restrictions on matricies, to permit scalar matricies, it probably breaks lots of things. I added an `enclose` op, and doing `(-1 0 1) o.rot enc 4 4 rho iota 16`, display breaks horribly, but the actual data looks OK. Doing things properly will require some proper design, so I'll get some more experience with other things first.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/284060577/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/284106971","html_url":"https://github.com/robpike/ivy/pull/33#issuecomment-284106971","issue_url":"https://api.github.com/repos/robpike/ivy/issues/33","id":284106971,"node_id":"MDEyOklzc3VlQ29tbWVudDI4NDEwNjk3MQ==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2017-03-04T00:21:48Z","updated_at":"2017-03-04T00:21:48Z","author_association":"OWNER","body":"Please delete the leading space inside the parens of the example","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/284106971/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/284131125","html_url":"https://github.com/robpike/ivy/pull/33#issuecomment-284131125","issue_url":"https://api.github.com/repos/robpike/ivy/issues/33","id":284131125,"node_id":"MDEyOklzc3VlQ29tbWVudDI4NDEzMTEyNQ==","user":{"login":"tcolgate","id":76019,"node_id":"MDQ6VXNlcjc2MDE5","avatar_url":"https://avatars.githubusercontent.com/u/76019?v=4","gravatar_id":"","url":"https://api.github.com/users/tcolgate","html_url":"https://github.com/tcolgate","followers_url":"https://api.github.com/users/tcolgate/followers","following_url":"https://api.github.com/users/tcolgate/following{/other_user}","gists_url":"https://api.github.com/users/tcolgate/gists{/gist_id}","starred_url":"https://api.github.com/users/tcolgate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tcolgate/subscriptions","organizations_url":"https://api.github.com/users/tcolgate/orgs","repos_url":"https://api.github.com/users/tcolgate/repos","events_url":"https://api.github.com/users/tcolgate/events{/privacy}","received_events_url":"https://api.github.com/users/tcolgate/received_events","type":"User","site_admin":false},"created_at":"2017-03-04T06:12:08Z","updated_at":"2017-03-04T06:12:08Z","author_association":"CONTRIBUTOR","body":"Can't squash the commit from the web interface. I'll have to leave it until Wednesday.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/284131125/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/284789149","html_url":"https://github.com/robpike/ivy/pull/33#issuecomment-284789149","issue_url":"https://api.github.com/repos/robpike/ivy/issues/33","id":284789149,"node_id":"MDEyOklzc3VlQ29tbWVudDI4NDc4OTE0OQ==","user":{"login":"tcolgate","id":76019,"node_id":"MDQ6VXNlcjc2MDE5","avatar_url":"https://avatars.githubusercontent.com/u/76019?v=4","gravatar_id":"","url":"https://api.github.com/users/tcolgate","html_url":"https://github.com/tcolgate","followers_url":"https://api.github.com/users/tcolgate/followers","following_url":"https://api.github.com/users/tcolgate/following{/other_user}","gists_url":"https://api.github.com/users/tcolgate/gists{/gist_id}","starred_url":"https://api.github.com/users/tcolgate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tcolgate/subscriptions","organizations_url":"https://api.github.com/users/tcolgate/orgs","repos_url":"https://api.github.com/users/tcolgate/repos","events_url":"https://api.github.com/users/tcolgate/events{/privacy}","received_events_url":"https://api.github.com/users/tcolgate/received_events","type":"User","site_admin":false},"created_at":"2017-03-07T17:07:52Z","updated_at":"2017-03-07T17:07:52Z","author_association":"CONTRIBUTOR","body":"@robpike squashed and pushed. (FYI, I should already have signed the CLA, tcolgate at gmail dot com)","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/284789149/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/284871759","html_url":"https://github.com/robpike/ivy/pull/33#issuecomment-284871759","issue_url":"https://api.github.com/repos/robpike/ivy/issues/33","id":284871759,"node_id":"MDEyOklzc3VlQ29tbWVudDI4NDg3MTc1OQ==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2017-03-07T21:53:26Z","updated_at":"2017-03-07T21:53:26Z","author_association":"OWNER","body":"Thanks!","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/284871759/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/284872158","html_url":"https://github.com/robpike/ivy/pull/33#issuecomment-284872158","issue_url":"https://api.github.com/repos/robpike/ivy/issues/33","id":284872158,"node_id":"MDEyOklzc3VlQ29tbWVudDI4NDg3MjE1OA==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2017-03-07T21:54:53Z","updated_at":"2017-03-07T21:54:53Z","author_association":"OWNER","body":"Sigh, I should have cherry-picked before merge. It doesn't build in the dev branch at tip:\r\n\r\nvalue/eval.go:200: undefined: Binary\r\nvalue/eval.go:200: undefined: opName\r\n\r\n\r\nCan you please investigate and fix?","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/284872158/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/284902888","html_url":"https://github.com/robpike/ivy/pull/33#issuecomment-284902888","issue_url":"https://api.github.com/repos/robpike/ivy/issues/33","id":284902888,"node_id":"MDEyOklzc3VlQ29tbWVudDI4NDkwMjg4OA==","user":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"created_at":"2017-03-08T00:09:12Z","updated_at":"2017-03-08T00:09:12Z","author_association":"CONTRIBUTOR","body":"> investigate\r\n\r\nBased on the code in the similar case for `Vector` above, the fix is:\r\n\r\n```diff\r\n-m.data[index] = Binary(c, vu, opName, vv)\r\n+m.data[index] = c.EvalBinary(vu, op, vv)\r\n```\r\n\r\nThis is needed after the clean up refactor in commit eaf0cfd208d900e6b659c7032a6b76266631a833, which [changed the Vector case in that way](https://github.com/robpike/ivy/commit/eaf0cfd208d900e6b659c7032a6b76266631a833#diff-45736597303cd689ac33ab0b6925f475R186).","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/284902888/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/285133952","html_url":"https://github.com/robpike/ivy/pull/35#issuecomment-285133952","issue_url":"https://api.github.com/repos/robpike/ivy/issues/35","id":285133952,"node_id":"MDEyOklzc3VlQ29tbWVudDI4NTEzMzk1Mg==","user":{"login":"tcolgate","id":76019,"node_id":"MDQ6VXNlcjc2MDE5","avatar_url":"https://avatars.githubusercontent.com/u/76019?v=4","gravatar_id":"","url":"https://api.github.com/users/tcolgate","html_url":"https://github.com/tcolgate","followers_url":"https://api.github.com/users/tcolgate/followers","following_url":"https://api.github.com/users/tcolgate/following{/other_user}","gists_url":"https://api.github.com/users/tcolgate/gists{/gist_id}","starred_url":"https://api.github.com/users/tcolgate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tcolgate/subscriptions","organizations_url":"https://api.github.com/users/tcolgate/orgs","repos_url":"https://api.github.com/users/tcolgate/repos","events_url":"https://api.github.com/users/tcolgate/events{/privacy}","received_events_url":"https://api.github.com/users/tcolgate/received_events","type":"User","site_admin":false},"created_at":"2017-03-08T18:58:28Z","updated_at":"2017-03-08T18:58:56Z","author_association":"CONTRIBUTOR","body":"Not too sure on the function name. Also, the APL rot/vrot support picking the dimension to rotate over, I could adapt the vrotate function to support that if preferred. Actually supporting it would require updates to the syntax to support dimension selection on binary ops (which I don't think is supported at the moment)","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/285133952/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/285705679","html_url":"https://github.com/robpike/ivy/pull/35#issuecomment-285705679","issue_url":"https://api.github.com/repos/robpike/ivy/issues/35","id":285705679,"node_id":"MDEyOklzc3VlQ29tbWVudDI4NTcwNTY3OQ==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2017-03-10T15:55:08Z","updated_at":"2017-03-10T15:55:08Z","author_association":"OWNER","body":"The error messages say rot not vrot.\r\n\r\nI would like to figure out a way to use proper code review tools for pull requests. I find pull requests almost overwhelming difficult to work with otherwise.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/285705679/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/285715104","html_url":"https://github.com/robpike/ivy/pull/35#issuecomment-285715104","issue_url":"https://api.github.com/repos/robpike/ivy/issues/35","id":285715104,"node_id":"MDEyOklzc3VlQ29tbWVudDI4NTcxNTEwNA==","user":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"created_at":"2017-03-10T16:28:06Z","updated_at":"2017-03-10T16:28:06Z","author_association":"CONTRIBUTOR","body":"@robpike Have you read through the documentation on pull requests?\r\n\r\nhttps://help.github.com/articles/reviewing-changes-in-pull-requests/\r\n\r\nPerhaps there's something there that would be helpful to make them easier to use. You're able to leave inline comments, and draft multiple comments before sending, just like in Gerrit.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/285715104/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/285721950","html_url":"https://github.com/robpike/ivy/pull/35#issuecomment-285721950","issue_url":"https://api.github.com/repos/robpike/ivy/issues/35","id":285721950,"node_id":"MDEyOklzc3VlQ29tbWVudDI4NTcyMTk1MA==","user":{"login":"tcolgate","id":76019,"node_id":"MDQ6VXNlcjc2MDE5","avatar_url":"https://avatars.githubusercontent.com/u/76019?v=4","gravatar_id":"","url":"https://api.github.com/users/tcolgate","html_url":"https://github.com/tcolgate","followers_url":"https://api.github.com/users/tcolgate/followers","following_url":"https://api.github.com/users/tcolgate/following{/other_user}","gists_url":"https://api.github.com/users/tcolgate/gists{/gist_id}","starred_url":"https://api.github.com/users/tcolgate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tcolgate/subscriptions","organizations_url":"https://api.github.com/users/tcolgate/orgs","repos_url":"https://api.github.com/users/tcolgate/repos","events_url":"https://api.github.com/users/tcolgate/events{/privacy}","received_events_url":"https://api.github.com/users/tcolgate/received_events","type":"User","site_admin":false},"created_at":"2017-03-10T16:52:31Z","updated_at":"2017-03-10T16:52:31Z","author_association":"CONTRIBUTOR","body":"If your preference is for gerrit, but don't want to use googlesource, then\nthere's a service called GerritHub. I tried it once, without much luck, but\nit may be worth looking at.\n\nOn Fri, 10 Mar 2017 at 16:28 Dmitri Shuralyov <notifications@github.com>\nwrote:\n\n> @robpike <https://github.com/robpike> Have you read through the\n> documentation on pull requests?\n>\n> https://help.github.com/articles/reviewing-changes-in-pull-requests/\n>\n> Perhaps there's something there that would be helpful to make them easier\n> to use. You're able to leave inline comments, and draft multiple comments\n> before sending, just like in Gerrit.\n>\n> —\n> You are receiving this because you authored the thread.\n> Reply to this email directly, view it on GitHub\n> <https://github.com/robpike/ivy/pull/35#issuecomment-285715104>, or mute\n> the thread\n> <https://github.com/notifications/unsubscribe-auth/AAEo82UB-Lt65BCCk9sRbHvRIFKqK7nMks5rkXoWgaJpZM4MXKY4>\n> .\n>\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/285721950/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/285868810","html_url":"https://github.com/robpike/ivy/pull/35#issuecomment-285868810","issue_url":"https://api.github.com/repos/robpike/ivy/issues/35","id":285868810,"node_id":"MDEyOklzc3VlQ29tbWVudDI4NTg2ODgxMA==","user":{"login":"tcolgate","id":76019,"node_id":"MDQ6VXNlcjc2MDE5","avatar_url":"https://avatars.githubusercontent.com/u/76019?v=4","gravatar_id":"","url":"https://api.github.com/users/tcolgate","html_url":"https://github.com/tcolgate","followers_url":"https://api.github.com/users/tcolgate/followers","following_url":"https://api.github.com/users/tcolgate/following{/other_user}","gists_url":"https://api.github.com/users/tcolgate/gists{/gist_id}","starred_url":"https://api.github.com/users/tcolgate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tcolgate/subscriptions","organizations_url":"https://api.github.com/users/tcolgate/orgs","repos_url":"https://api.github.com/users/tcolgate/repos","events_url":"https://api.github.com/users/tcolgate/events{/privacy}","received_events_url":"https://api.github.com/users/tcolgate/received_events","type":"User","site_admin":false},"created_at":"2017-03-11T14:05:38Z","updated_at":"2017-03-11T14:05:38Z","author_association":"CONTRIBUTOR","body":"@robpike I've updated the error message","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/285868810/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/286855527","html_url":"https://github.com/robpike/ivy/pull/35#issuecomment-286855527","issue_url":"https://api.github.com/repos/robpike/ivy/issues/35","id":286855527,"node_id":"MDEyOklzc3VlQ29tbWVudDI4Njg1NTUyNw==","user":{"login":"tcolgate","id":76019,"node_id":"MDQ6VXNlcjc2MDE5","avatar_url":"https://avatars.githubusercontent.com/u/76019?v=4","gravatar_id":"","url":"https://api.github.com/users/tcolgate","html_url":"https://github.com/tcolgate","followers_url":"https://api.github.com/users/tcolgate/followers","following_url":"https://api.github.com/users/tcolgate/following{/other_user}","gists_url":"https://api.github.com/users/tcolgate/gists{/gist_id}","starred_url":"https://api.github.com/users/tcolgate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tcolgate/subscriptions","organizations_url":"https://api.github.com/users/tcolgate/orgs","repos_url":"https://api.github.com/users/tcolgate/repos","events_url":"https://api.github.com/users/tcolgate/events{/privacy}","received_events_url":"https://api.github.com/users/tcolgate/received_events","type":"User","site_admin":false},"created_at":"2017-03-15T19:38:23Z","updated_at":"2017-03-15T19:38:23Z","author_association":"CONTRIBUTOR","body":"@robpike Updates as requested.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/286855527/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/287209340","html_url":"https://github.com/robpike/ivy/pull/35#issuecomment-287209340","issue_url":"https://api.github.com/repos/robpike/ivy/issues/35","id":287209340,"node_id":"MDEyOklzc3VlQ29tbWVudDI4NzIwOTM0MA==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2017-03-16T22:23:30Z","updated_at":"2017-03-16T22:23:30Z","author_association":"OWNER","body":"Aha, I have the right answer about the names. The mistake is in the original, but let's fix it now.\r\n\r\nrev and flip in ivy correspond to ⌽ and ⊖ in APL, and both work as unary and binary operators. I believe the right way to solve this problem is to rename (unary) rev to rot, and then your vrot becomes the binary version of flip.\r\n\r\nMake sense?","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/287209340/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/287273568","html_url":"https://github.com/robpike/ivy/pull/35#issuecomment-287273568","issue_url":"https://api.github.com/repos/robpike/ivy/issues/35","id":287273568,"node_id":"MDEyOklzc3VlQ29tbWVudDI4NzI3MzU2OA==","user":{"login":"tcolgate","id":76019,"node_id":"MDQ6VXNlcjc2MDE5","avatar_url":"https://avatars.githubusercontent.com/u/76019?v=4","gravatar_id":"","url":"https://api.github.com/users/tcolgate","html_url":"https://github.com/tcolgate","followers_url":"https://api.github.com/users/tcolgate/followers","following_url":"https://api.github.com/users/tcolgate/following{/other_user}","gists_url":"https://api.github.com/users/tcolgate/gists{/gist_id}","starred_url":"https://api.github.com/users/tcolgate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tcolgate/subscriptions","organizations_url":"https://api.github.com/users/tcolgate/orgs","repos_url":"https://api.github.com/users/tcolgate/repos","events_url":"https://api.github.com/users/tcolgate/events{/privacy}","received_events_url":"https://api.github.com/users/tcolgate/received_events","type":"User","site_admin":false},"created_at":"2017-03-17T05:55:12Z","updated_at":"2017-03-17T05:55:12Z","author_association":"CONTRIBUTOR","body":"@ribpike, yes, makes sense now.\r\n\r\nI've pushed the renames, but perhaps you'd prefer the rename in a separate commit within this PR?","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/287273568/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/287380530","html_url":"https://github.com/robpike/ivy/pull/35#issuecomment-287380530","issue_url":"https://api.github.com/repos/robpike/ivy/issues/35","id":287380530,"node_id":"MDEyOklzc3VlQ29tbWVudDI4NzM4MDUzMA==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2017-03-17T15:09:09Z","updated_at":"2017-03-17T15:09:09Z","author_association":"OWNER","body":"Yes, that's a good idea. Let's do the rename and then add the new binary for flip.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/287380530/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/287389363","html_url":"https://github.com/robpike/ivy/pull/35#issuecomment-287389363","issue_url":"https://api.github.com/repos/robpike/ivy/issues/35","id":287389363,"node_id":"MDEyOklzc3VlQ29tbWVudDI4NzM4OTM2Mw==","user":{"login":"tcolgate","id":76019,"node_id":"MDQ6VXNlcjc2MDE5","avatar_url":"https://avatars.githubusercontent.com/u/76019?v=4","gravatar_id":"","url":"https://api.github.com/users/tcolgate","html_url":"https://github.com/tcolgate","followers_url":"https://api.github.com/users/tcolgate/followers","following_url":"https://api.github.com/users/tcolgate/following{/other_user}","gists_url":"https://api.github.com/users/tcolgate/gists{/gist_id}","starred_url":"https://api.github.com/users/tcolgate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tcolgate/subscriptions","organizations_url":"https://api.github.com/users/tcolgate/orgs","repos_url":"https://api.github.com/users/tcolgate/repos","events_url":"https://api.github.com/users/tcolgate/events{/privacy}","received_events_url":"https://api.github.com/users/tcolgate/received_events","type":"User","site_admin":false},"created_at":"2017-03-17T15:40:00Z","updated_at":"2017-03-17T15:40:11Z","author_association":"CONTRIBUTOR","body":"@robpike Two separate commits, (`git add --patch` is a wonderful thing!).","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/287389363/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/287620756","html_url":"https://github.com/robpike/ivy/pull/35#issuecomment-287620756","issue_url":"https://api.github.com/repos/robpike/ivy/issues/35","id":287620756,"node_id":"MDEyOklzc3VlQ29tbWVudDI4NzYyMDc1Ng==","user":{"login":"tcolgate","id":76019,"node_id":"MDQ6VXNlcjc2MDE5","avatar_url":"https://avatars.githubusercontent.com/u/76019?v=4","gravatar_id":"","url":"https://api.github.com/users/tcolgate","html_url":"https://github.com/tcolgate","followers_url":"https://api.github.com/users/tcolgate/followers","following_url":"https://api.github.com/users/tcolgate/following{/other_user}","gists_url":"https://api.github.com/users/tcolgate/gists{/gist_id}","starred_url":"https://api.github.com/users/tcolgate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tcolgate/subscriptions","organizations_url":"https://api.github.com/users/tcolgate/orgs","repos_url":"https://api.github.com/users/tcolgate/repos","events_url":"https://api.github.com/users/tcolgate/events{/privacy}","received_events_url":"https://api.github.com/users/tcolgate/received_events","type":"User","site_admin":false},"created_at":"2017-03-19T14:35:53Z","updated_at":"2017-03-19T14:35:53Z","author_association":"CONTRIBUTOR","body":"@robpike pushed fix for the length check.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/287620756/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/287622484","html_url":"https://github.com/robpike/ivy/pull/35#issuecomment-287622484","issue_url":"https://api.github.com/repos/robpike/ivy/issues/35","id":287622484,"node_id":"MDEyOklzc3VlQ29tbWVudDI4NzYyMjQ4NA==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2017-03-19T15:02:01Z","updated_at":"2017-03-19T15:02:01Z","author_association":"OWNER","body":"Thanks for your patience.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/287622484/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/301982545","html_url":"https://github.com/robpike/ivy/pull/27#issuecomment-301982545","issue_url":"https://api.github.com/repos/robpike/ivy/issues/27","id":301982545,"node_id":"MDEyOklzc3VlQ29tbWVudDMwMTk4MjU0NQ==","user":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"created_at":"2017-05-17T04:32:09Z","updated_at":"2017-05-17T04:32:09Z","author_association":"CONTRIBUTOR","body":"Friendly ping @robpike. Would you mind reviewing this PR and merging it if it looks good to you?","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/301982545/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/305042883","html_url":"https://github.com/robpike/ivy/issues/38#issuecomment-305042883","issue_url":"https://api.github.com/repos/robpike/ivy/issues/38","id":305042883,"node_id":"MDEyOklzc3VlQ29tbWVudDMwNTA0Mjg4Mw==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2017-05-31T00:02:02Z","updated_at":"2017-05-31T00:02:02Z","author_association":"OWNER","body":"This was fixed some time in the \"dev\" branch. I have now rolled the latest fixes to master. How long that will take to get to the App Store I can't say.\r\n\r\nApologies for the bug.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/305042883/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/305062710","html_url":"https://github.com/robpike/ivy/issues/38#issuecomment-305062710","issue_url":"https://api.github.com/repos/robpike/ivy/issues/38","id":305062710,"node_id":"MDEyOklzc3VlQ29tbWVudDMwNTA2MjcxMA==","user":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"created_at":"2017-05-31T02:15:43Z","updated_at":"2017-05-31T02:15:43Z","author_association":"CONTRIBUTOR","body":"@robpike, while ivy and the `dev` branch are fresh on your mind, could you please review (and merge, if they LGTY) two outstanding PRs at https://github.com/robpike/ivy/pulls?\r\n\r\nI've personally reviewed both and they LGTM (but, I'm also the author of one of them).","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/305062710/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/305076881","html_url":"https://github.com/robpike/ivy/pull/27#issuecomment-305076881","issue_url":"https://api.github.com/repos/robpike/ivy/issues/27","id":305076881,"node_id":"MDEyOklzc3VlQ29tbWVudDMwNTA3Njg4MQ==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2017-05-31T04:06:51Z","updated_at":"2017-05-31T04:06:51Z","author_association":"OWNER","body":"I cannot merge because @randall2602 has not signed the CLA, and the CL is too simple for me to bother him to do so.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/305076881/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/305077709","html_url":"https://github.com/robpike/ivy/pull/37#issuecomment-305077709","issue_url":"https://api.github.com/repos/robpike/ivy/issues/37","id":305077709,"node_id":"MDEyOklzc3VlQ29tbWVudDMwNTA3NzcwOQ==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2017-05-31T04:13:02Z","updated_at":"2017-05-31T04:13:02Z","author_association":"OWNER","body":"I'd rather not merge this. It's somewhat magical that the code fails correctly without the Exit call, and much clearer as written.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/305077709/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/305088644","html_url":"https://github.com/robpike/ivy/pull/37#issuecomment-305088644","issue_url":"https://api.github.com/repos/robpike/ivy/issues/37","id":305088644,"node_id":"MDEyOklzc3VlQ29tbWVudDMwNTA4ODY0NA==","user":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"created_at":"2017-05-31T05:38:37Z","updated_at":"2017-05-31T05:38:37Z","author_association":"CONTRIBUTOR","body":"All right, it's your project. Thanks for your consideration.\r\n\r\n> It's somewhat magical that the code fails correctly without the Exit call\r\n\r\nJust wondering, did you get a chance to read the commit message in https://upspin-review.googlesource.com/c/9642/? Was its motivation unconvincing?\r\n\r\nThis is unfortunate to hear, because this is the actual API of `flag` package, which we can't change in Go 1. I thought understanding the documented behavior and using it correctly was the best direction to go, but now I'm unsure.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/305088644/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/305091044","html_url":"https://github.com/robpike/ivy/issues/38#issuecomment-305091044","issue_url":"https://api.github.com/repos/robpike/ivy/issues/38","id":305091044,"node_id":"MDEyOklzc3VlQ29tbWVudDMwNTA5MTA0NA==","user":{"login":"suryaabhi","id":15243985,"node_id":"MDQ6VXNlcjE1MjQzOTg1","avatar_url":"https://avatars.githubusercontent.com/u/15243985?v=4","gravatar_id":"","url":"https://api.github.com/users/suryaabhi","html_url":"https://github.com/suryaabhi","followers_url":"https://api.github.com/users/suryaabhi/followers","following_url":"https://api.github.com/users/suryaabhi/following{/other_user}","gists_url":"https://api.github.com/users/suryaabhi/gists{/gist_id}","starred_url":"https://api.github.com/users/suryaabhi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/suryaabhi/subscriptions","organizations_url":"https://api.github.com/users/suryaabhi/orgs","repos_url":"https://api.github.com/users/suryaabhi/repos","events_url":"https://api.github.com/users/suryaabhi/events{/privacy}","received_events_url":"https://api.github.com/users/suryaabhi/received_events","type":"User","site_admin":false},"created_at":"2017-05-31T05:55:10Z","updated_at":"2017-05-31T05:55:10Z","author_association":"NONE","body":"Glad to hear that! ","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/305091044/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/305317135","html_url":"https://github.com/robpike/ivy/pull/37#issuecomment-305317135","issue_url":"https://api.github.com/repos/robpike/ivy/issues/37","id":305317135,"node_id":"MDEyOklzc3VlQ29tbWVudDMwNTMxNzEzNQ==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2017-05-31T21:04:53Z","updated_at":"2017-05-31T21:04:53Z","author_association":"OWNER","body":"I understand your motivation, but it doesn't apply in this case and I prefer the code as written. I do not disagree with doing the deletion in some cases, but it's not an improvement here.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/305317135/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/317882194","html_url":"https://github.com/robpike/ivy/issues/39#issuecomment-317882194","issue_url":"https://api.github.com/repos/robpike/ivy/issues/39","id":317882194,"node_id":"MDEyOklzc3VlQ29tbWVudDMxNzg4MjE5NA==","user":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"created_at":"2017-07-25T21:45:55Z","updated_at":"2017-07-25T21:46:13Z","author_association":"CONTRIBUTOR","body":"> Are there any demos for: Mac laptops, Windows.\r\n\r\nCan you clarify what you mean by \"demos\", exactly?\r\n\r\n`ivy`, as available in this repository, is just a command-line application. You can run it in any terminal on macOS, Linux, or Windows. You can maximize said terminal on a 4K or 5K monitor.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/317882194/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}]165 52627 GET https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=4&sort=updated HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:48 GMT Etag: W/"8ea6d87d6abc349c1b216da088cb5277ef1f6bc9f092e9804e7a024155078bb8" Link: <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=3&sort=updated>; rel="prev", <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=5&sort=updated>; rel="next", <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=11&sort=updated>; rel="last", <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=1&sort=updated>; rel="first" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EB7DB:334D09:665E33B0 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4994 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 6 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/317911986","html_url":"https://github.com/robpike/ivy/issues/39#issuecomment-317911986","issue_url":"https://api.github.com/repos/robpike/ivy/issues/39","id":317911986,"node_id":"MDEyOklzc3VlQ29tbWVudDMxNzkxMTk4Ng==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2017-07-26T00:31:29Z","updated_at":"2017-07-26T00:36:03Z","author_association":"OWNER","body":"The phone demo is just a wrapping of the command-line one. Check out ivy from github, then `cd robpike.io/ivy/demo` and type `go run demo.go`.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/317911986/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/318400354","html_url":"https://github.com/robpike/ivy/issues/39#issuecomment-318400354","issue_url":"https://api.github.com/repos/robpike/ivy/issues/39","id":318400354,"node_id":"MDEyOklzc3VlQ29tbWVudDMxODQwMDM1NA==","user":{"login":"z505","id":15078798,"node_id":"MDQ6VXNlcjE1MDc4Nzk4","avatar_url":"https://avatars.githubusercontent.com/u/15078798?v=4","gravatar_id":"","url":"https://api.github.com/users/z505","html_url":"https://github.com/z505","followers_url":"https://api.github.com/users/z505/followers","following_url":"https://api.github.com/users/z505/following{/other_user}","gists_url":"https://api.github.com/users/z505/gists{/gist_id}","starred_url":"https://api.github.com/users/z505/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/z505/subscriptions","organizations_url":"https://api.github.com/users/z505/orgs","repos_url":"https://api.github.com/users/z505/repos","events_url":"https://api.github.com/users/z505/events{/privacy}","received_events_url":"https://api.github.com/users/z505/received_events","type":"User","site_admin":false},"created_at":"2017-07-27T15:39:30Z","updated_at":"2017-07-27T15:42:25Z","author_association":"NONE","body":"shurcooL, likely by demo I mean where you can easily copy and paste numbers in a GUI environment, without the terminal getting in your way. In fact, as far as I researched, you even wrote a demo in HTML a while back which I recently found somewhere! I may expand on this html/css demo. The issue with a terminal compared to a proper GUI is it is simply much harder to expand upon and utilize efficiently: say I want to add a gui Button for commonly used maths, or to store values. \r\n\r\nCalculators have buttons: you can \"store\" certain values in memory, as an example, then recall them later. Or calculators have buttons to show you functions you wouldn't remember otherwise. Doing this at a terminal still is possible, but... I prefer to have a GUI for some things.\r\n\r\nAnyway, thanks for Ivy, I'm needing to work with some massive numbers right now :-)\r\n\r\nI'll likely make my own HTML 5 /css demo, possibly based on shurcooL's code if that is in fact yours that I found.\r\n\r\nI do not mean to reopen this issue: this is just a comment. It should go in a discussion forum rather than an issue: but, there is not likely one that exists for Ivy.\r\n\r\nI did find a potential bug in Ivy where if you do powering it causes the calculator to no longer work; I'll report this as a separate issue and give you a patch if I can resolve the bug myself! Seems like a clear cut case of it breaking when you do a large power operation, probably some error check code will fix it.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/318400354/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/318436838","html_url":"https://github.com/robpike/ivy/issues/39#issuecomment-318436838","issue_url":"https://api.github.com/repos/robpike/ivy/issues/39","id":318436838,"node_id":"MDEyOklzc3VlQ29tbWVudDMxODQzNjgzOA==","user":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"created_at":"2017-07-27T17:50:56Z","updated_at":"2017-07-27T17:50:56Z","author_association":"CONTRIBUTOR","body":"> shurcooL, likely by demo I mean where you can easily copy and paste numbers in a GUI environment, without the terminal getting in your way.\r\n\r\nI see. Isn't that usually referred to as an \"application\", \"app\", \"program\", or \"GUI application\", etc.? I haven't heard it called \"demo\" before. To me, \"demo\" means a demonstration. Either a trial version of a paid video game, or a demonstration of how something can be used.\r\n\r\n> In fact, as far as I researched, you even wrote a demo in HTML a while back which I recently found somewhere!\r\n\r\nYes, I ported ivy to the browser at https://github.com/shurcooL/ivybrowser. The port is very [simple](https://github.com/shurcooL/ivybrowser/blob/51aad7aae4cb24b1491671eb5a187cbc0658b50f/io_js.go) and just creates a terminal-like environment in HTML, with a \\<pre\\> and \\<input\\> elements.\r\n\r\n> I'll likely make my own HTML 5 /css demo, possibly based on shurcooL's code if that is in fact yours that I found.\r\n\r\nFeel free!","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/318436838/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/350169076","html_url":"https://github.com/robpike/ivy/issues/14#issuecomment-350169076","issue_url":"https://api.github.com/repos/robpike/ivy/issues/14","id":350169076,"node_id":"MDEyOklzc3VlQ29tbWVudDM1MDE2OTA3Ng==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2017-12-08T04:27:09Z","updated_at":"2017-12-08T04:27:09Z","author_association":"OWNER","body":"Done, and available in the dev branch.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/350169076/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/352880626","html_url":"https://github.com/robpike/ivy/pull/40#issuecomment-352880626","issue_url":"https://api.github.com/repos/robpike/ivy/issues/40","id":352880626,"node_id":"MDEyOklzc3VlQ29tbWVudDM1Mjg4MDYyNg==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2017-12-19T20:43:26Z","updated_at":"2017-12-19T20:43:26Z","author_association":"OWNER","body":"Please apply all PRs to the dev branch, not the master.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/352880626/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/353416042","html_url":"https://github.com/robpike/ivy/pull/40#issuecomment-353416042","issue_url":"https://api.github.com/repos/robpike/ivy/issues/40","id":353416042,"node_id":"MDEyOklzc3VlQ29tbWVudDM1MzQxNjA0Mg==","user":{"login":"rogpeppe","id":66491,"node_id":"MDQ6VXNlcjY2NDkx","avatar_url":"https://avatars.githubusercontent.com/u/66491?v=4","gravatar_id":"","url":"https://api.github.com/users/rogpeppe","html_url":"https://github.com/rogpeppe","followers_url":"https://api.github.com/users/rogpeppe/followers","following_url":"https://api.github.com/users/rogpeppe/following{/other_user}","gists_url":"https://api.github.com/users/rogpeppe/gists{/gist_id}","starred_url":"https://api.github.com/users/rogpeppe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rogpeppe/subscriptions","organizations_url":"https://api.github.com/users/rogpeppe/orgs","repos_url":"https://api.github.com/users/rogpeppe/repos","events_url":"https://api.github.com/users/rogpeppe/events{/privacy}","received_events_url":"https://api.github.com/users/rogpeppe/received_events","type":"User","site_admin":false},"created_at":"2017-12-21T17:57:47Z","updated_at":"2017-12-21T17:57:47Z","author_association":"CONTRIBUTOR","body":"Sorry, I wasn't aware of the dev branch. I've changed the target of the PR to dev.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/353416042/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/352880870","html_url":"https://github.com/robpike/ivy/pull/40#issuecomment-352880870","issue_url":"https://api.github.com/repos/robpike/ivy/issues/40","id":352880870,"node_id":"MDEyOklzc3VlQ29tbWVudDM1Mjg4MDg3MA==","user":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"created_at":"2017-12-19T20:44:31Z","updated_at":"2017-12-21T19:05:04Z","author_association":"CONTRIBUTOR","body":"It's possible for the PR author to change the base branch of a PR (~~perhaps only when the PR is open~~ looks like it can be done while PR is closed too).","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/352880870/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/365109818","html_url":"https://github.com/robpike/ivy/issues/41#issuecomment-365109818","issue_url":"https://api.github.com/repos/robpike/ivy/issues/41","id":365109818,"node_id":"MDEyOklzc3VlQ29tbWVudDM2NTEwOTgxOA==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2018-02-13T00:26:45Z","updated_at":"2018-02-13T00:26:45Z","author_association":"OWNER","body":"Simple bug in ceil (and perhaps some others). Fix coming.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/365109818/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/365110681","html_url":"https://github.com/robpike/ivy/issues/41#issuecomment-365110681","issue_url":"https://api.github.com/repos/robpike/ivy/issues/41","id":365110681,"node_id":"MDEyOklzc3VlQ29tbWVudDM2NTExMDY4MQ==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2018-02-13T00:32:04Z","updated_at":"2018-02-13T00:32:04Z","author_association":"OWNER","body":"Fixed in the dev branch by 5a2065c4984e4e4accfdb4868e132f0e273cc298","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/365110681/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/374067209","html_url":"https://github.com/robpike/ivy/pull/42#issuecomment-374067209","issue_url":"https://api.github.com/repos/robpike/ivy/issues/42","id":374067209,"node_id":"MDEyOklzc3VlQ29tbWVudDM3NDA2NzIwOQ==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2018-03-18T23:39:03Z","updated_at":"2018-03-18T23:39:03Z","author_association":"OWNER","body":"Thanks for the suggestion. (No need for syntax highlighting, please.)\r\n\r\nYou'll need to sign thee copyright license agreement (see https://golang.org/doc/contribute.html#cla) before I can accept your pull request. Sorry about that.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/374067209/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/374101879","html_url":"https://github.com/robpike/ivy/pull/42#issuecomment-374101879","issue_url":"https://api.github.com/repos/robpike/ivy/issues/42","id":374101879,"node_id":"MDEyOklzc3VlQ29tbWVudDM3NDEwMTg3OQ==","user":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"created_at":"2018-03-19T05:01:12Z","updated_at":"2018-03-19T05:01:12Z","author_association":"CONTRIBUTOR","body":"I wanted to make some suggestions how I think the formatting can be improved even further, but it's quite hard to do via code review here. I just sent an alternative PR #43, please consider it as my code review suggestion. I've signed the copyright license agreement.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/374101879/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/374103129","html_url":"https://github.com/robpike/ivy/pull/43#issuecomment-374103129","issue_url":"https://api.github.com/repos/robpike/ivy/issues/43","id":374103129,"node_id":"MDEyOklzc3VlQ29tbWVudDM3NDEwMzEyOQ==","user":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"created_at":"2018-03-19T05:12:35Z","updated_at":"2018-03-19T05:12:35Z","author_association":"CONTRIBUTOR","body":"(I tried to preserve credit to @BDMorrell by using GitHub's [co-author feature](https://help.github.com/articles/creating-a-commit-with-multiple-authors/).)","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/374103129/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/374342571","html_url":"https://github.com/robpike/ivy/pull/43#issuecomment-374342571","issue_url":"https://api.github.com/repos/robpike/ivy/issues/43","id":374342571,"node_id":"MDEyOklzc3VlQ29tbWVudDM3NDM0MjU3MQ==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2018-03-19T19:38:13Z","updated_at":"2018-03-19T19:38:13Z","author_association":"OWNER","body":"I see. Thanks.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/374342571/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/374342707","html_url":"https://github.com/robpike/ivy/pull/42#issuecomment-374342707","issue_url":"https://api.github.com/repos/robpike/ivy/issues/42","id":374342707,"node_id":"MDEyOklzc3VlQ29tbWVudDM3NDM0MjcwNw==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2018-03-19T19:38:33Z","updated_at":"2018-03-19T19:38:33Z","author_association":"OWNER","body":"Superseded.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/374342707/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/374360049","html_url":"https://github.com/robpike/ivy/pull/43#issuecomment-374360049","issue_url":"https://api.github.com/repos/robpike/ivy/issues/43","id":374360049,"node_id":"MDEyOklzc3VlQ29tbWVudDM3NDM2MDA0OQ==","user":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"created_at":"2018-03-19T20:22:47Z","updated_at":"2018-03-19T20:22:47Z","author_association":"CONTRIBUTOR","body":"Thank you!","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/374360049/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/374577580","html_url":"https://github.com/robpike/ivy/pull/44#issuecomment-374577580","issue_url":"https://api.github.com/repos/robpike/ivy/issues/44","id":374577580,"node_id":"MDEyOklzc3VlQ29tbWVudDM3NDU3NzU4MA==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2018-03-20T12:20:20Z","updated_at":"2018-03-20T12:20:20Z","author_association":"OWNER","body":"Thanks but this has already been fixed long ago in the dev branch. It's probably time for me to update master.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/374577580/reactions","total_count":2,"+1":1,"-1":0,"laugh":0,"hooray":1,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/376040330","html_url":"https://github.com/robpike/ivy/pull/45#issuecomment-376040330","issue_url":"https://api.github.com/repos/robpike/ivy/issues/45","id":376040330,"node_id":"MDEyOklzc3VlQ29tbWVudDM3NjA0MDMzMA==","user":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"created_at":"2018-03-26T04:02:03Z","updated_at":"2018-03-26T04:02:03Z","author_association":"CONTRIBUTOR","body":"Shouldn't this be merged into `dev` branch, or does it not matter?","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/376040330/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/376045455","html_url":"https://github.com/robpike/ivy/pull/45#issuecomment-376045455","issue_url":"https://api.github.com/repos/robpike/ivy/issues/45","id":376045455,"node_id":"MDEyOklzc3VlQ29tbWVudDM3NjA0NTQ1NQ==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2018-03-26T04:50:08Z","updated_at":"2018-03-26T04:50:08Z","author_association":"OWNER","body":"This was just a test of a tool.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/376045455/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/379631835","html_url":"https://github.com/robpike/ivy/pull/48#issuecomment-379631835","issue_url":"https://api.github.com/repos/robpike/ivy/issues/48","id":379631835,"node_id":"MDEyOklzc3VlQ29tbWVudDM3OTYzMTgzNQ==","user":{"login":"dsymonds","id":31506,"node_id":"MDQ6VXNlcjMxNTA2","avatar_url":"https://avatars.githubusercontent.com/u/31506?v=4","gravatar_id":"","url":"https://api.github.com/users/dsymonds","html_url":"https://github.com/dsymonds","followers_url":"https://api.github.com/users/dsymonds/followers","following_url":"https://api.github.com/users/dsymonds/following{/other_user}","gists_url":"https://api.github.com/users/dsymonds/gists{/gist_id}","starred_url":"https://api.github.com/users/dsymonds/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dsymonds/subscriptions","organizations_url":"https://api.github.com/users/dsymonds/orgs","repos_url":"https://api.github.com/users/dsymonds/repos","events_url":"https://api.github.com/users/dsymonds/events{/privacy}","received_events_url":"https://api.github.com/users/dsymonds/received_events","type":"User","site_admin":false},"created_at":"2018-04-09T04:58:59Z","updated_at":"2018-04-09T04:58:59Z","author_association":"CONTRIBUTOR","body":"ignore.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/379631835/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/379937125","html_url":"https://github.com/robpike/ivy/pull/49#issuecomment-379937125","issue_url":"https://api.github.com/repos/robpike/ivy/issues/49","id":379937125,"node_id":"MDEyOklzc3VlQ29tbWVudDM3OTkzNzEyNQ==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2018-04-10T00:39:41Z","updated_at":"2018-04-10T00:39:41Z","author_association":"OWNER","body":"Deferring.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/379937125/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/379959514","html_url":"https://github.com/robpike/ivy/pull/50#issuecomment-379959514","issue_url":"https://api.github.com/repos/robpike/ivy/issues/50","id":379959514,"node_id":"MDEyOklzc3VlQ29tbWVudDM3OTk1OTUxNA==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2018-04-10T03:07:48Z","updated_at":"2018-04-10T03:07:48Z","author_association":"OWNER","body":"Obsolete.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/379959514/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/379987438","html_url":"https://github.com/robpike/ivy/pull/52#issuecomment-379987438","issue_url":"https://api.github.com/repos/robpike/ivy/issues/52","id":379987438,"node_id":"MDEyOklzc3VlQ29tbWVudDM3OTk4NzQzOA==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2018-04-10T06:22:22Z","updated_at":"2018-04-10T06:22:22Z","author_association":"OWNER","body":"Wrong branch.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/379987438/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/385601608","html_url":"https://github.com/robpike/ivy/issues/54#issuecomment-385601608","issue_url":"https://api.github.com/repos/robpike/ivy/issues/54","id":385601608,"node_id":"MDEyOklzc3VlQ29tbWVudDM4NTYwMTYwOA==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2018-05-01T05:18:59Z","updated_at":"2018-05-01T05:18:59Z","author_association":"OWNER","body":"It's not that simple. The operator technically doesn't accept a scalar on the left.\r\n\r\nNeeds to be tested and verified better.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/385601608/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/421521298","html_url":"https://github.com/robpike/ivy/issues/55#issuecomment-421521298","issue_url":"https://api.github.com/repos/robpike/ivy/issues/55","id":421521298,"node_id":"MDEyOklzc3VlQ29tbWVudDQyMTUyMTI5OA==","user":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"created_at":"2018-09-15T01:35:45Z","updated_at":"2018-09-15T01:36:03Z","author_association":"CONTRIBUTOR","body":"> if I'm not mistaken, the code for [iOS/Android apps] lives in this repository.\r\n\r\nI was mistaken, it looks like what lives here is a small part of the mobile ports. The actual iOS/Android app projects are at [`golang.org/x/mobile/example/ivy/...`](https://github.com/golang/mobile/tree/master/example/ivy).","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/421521298/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/427610042","html_url":"https://github.com/robpike/ivy/issues/55#issuecomment-427610042","issue_url":"https://api.github.com/repos/robpike/ivy/issues/55","id":427610042,"node_id":"MDEyOklzc3VlQ29tbWVudDQyNzYxMDA0Mg==","user":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"created_at":"2018-10-06T22:12:40Z","updated_at":"2018-10-06T22:12:40Z","author_association":"CONTRIBUTOR","body":"I'll consider no answer as a \"no\", which is not a problem. I'll finish and keep the WebAssembly port in [my browser fork](https://github.com/shurcooL/ivybrowser).\r\n\r\nI'm always happy to discuss this further, but I'll close the issue for now.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/427610042/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/427674907","html_url":"https://github.com/robpike/ivy/issues/55#issuecomment-427674907","issue_url":"https://api.github.com/repos/robpike/ivy/issues/55","id":427674907,"node_id":"MDEyOklzc3VlQ29tbWVudDQyNzY3NDkwNw==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2018-10-07T18:20:47Z","updated_at":"2018-10-07T18:20:47Z","author_association":"OWNER","body":"Sorry, this fell off my radar but I'd rather not make the repo more complex. Thanks.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/427674907/reactions","total_count":2,"+1":2,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/457745936","html_url":"https://github.com/robpike/ivy/issues/58#issuecomment-457745936","issue_url":"https://api.github.com/repos/robpike/ivy/issues/58","id":457745936,"node_id":"MDEyOklzc3VlQ29tbWVudDQ1Nzc0NTkzNg==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2019-01-25T22:01:38Z","updated_at":"2019-01-25T22:01:38Z","author_association":"OWNER","body":"Good catch, easy fix. Now fixed at head in the dev branch.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/457745936/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/570736558","html_url":"https://github.com/robpike/ivy/issues/22#issuecomment-570736558","issue_url":"https://api.github.com/repos/robpike/ivy/issues/22","id":570736558,"node_id":"MDEyOklzc3VlQ29tbWVudDU3MDczNjU1OA==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2020-01-04T00:15:55Z","updated_at":"2020-01-04T00:15:55Z","author_association":"OWNER","body":"Closing as not really about this program.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/570736558/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/570737295","html_url":"https://github.com/robpike/ivy/issues/54#issuecomment-570737295","issue_url":"https://api.github.com/repos/robpike/ivy/issues/54","id":570737295,"node_id":"MDEyOklzc3VlQ29tbWVudDU3MDczNzI5NQ==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2020-01-04T00:21:21Z","updated_at":"2020-01-04T00:21:21Z","author_association":"OWNER","body":"The analysis in this issue is incorrect. 3 iota 1 2 3 works fine, honoring the documentation even if tryapl.org says it's a rank error. So closing.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/570737295/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/593024010","html_url":"https://github.com/robpike/ivy/issues/60#issuecomment-593024010","issue_url":"https://api.github.com/repos/robpike/ivy/issues/60","id":593024010,"node_id":"MDEyOklzc3VlQ29tbWVudDU5MzAyNDAxMA==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2020-03-01T00:45:24Z","updated_at":"2020-03-01T00:45:24Z","author_association":"OWNER","body":"Should be able to handle dimensions larger than 2. For the moment, only 2-d matrices work. (And vectors times matrices).","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/593024010/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}]165 54395 GET https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=5&sort=updated HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:49 GMT Etag: W/"25d39da294a7e9ed12ba206f29f26ed4ba3eddb7fe46fe2697b29be27e83f2f5" Link: <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=4&sort=updated>; rel="prev", <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=6&sort=updated>; rel="next", <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=11&sort=updated>; rel="last", <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=1&sort=updated>; rel="first" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EB91A:334F1A:665E33B0 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4993 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 7 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/647187879","html_url":"https://github.com/robpike/ivy/issues/63#issuecomment-647187879","issue_url":"https://api.github.com/repos/robpike/ivy/issues/63","id":647187879,"node_id":"MDEyOklzc3VlQ29tbWVudDY0NzE4Nzg3OQ==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2020-06-21T22:06:49Z","updated_at":"2020-06-21T22:06:49Z","author_association":"OWNER","body":"Thanks for the report. I tried to track down all the argument-overwriting operators but clearly missed a couple. Will fix.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/647187879/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/647188000","html_url":"https://github.com/robpike/ivy/issues/63#issuecomment-647188000","issue_url":"https://api.github.com/repos/robpike/ivy/issues/63","id":647188000,"node_id":"MDEyOklzc3VlQ29tbWVudDY0NzE4ODAwMA==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2020-06-21T22:07:57Z","updated_at":"2020-06-21T22:07:57Z","author_association":"OWNER","body":"P.S. You don't need to parenthesize the rank vector for rho.\r\n2 3 rho iota 6\r\nworks fine because 2 3 is a single operand - a vector.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/647188000/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/647196135","html_url":"https://github.com/robpike/ivy/issues/63#issuecomment-647196135","issue_url":"https://api.github.com/repos/robpike/ivy/issues/63","id":647196135,"node_id":"MDEyOklzc3VlQ29tbWVudDY0NzE5NjEzNQ==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2020-06-21T23:33:40Z","updated_at":"2020-06-21T23:33:40Z","author_association":"OWNER","body":"Ah, I did track all these down. This has been fixed in the dev branch. I need to update master.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/647196135/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/872102869","html_url":"https://github.com/robpike/ivy/issues/65#issuecomment-872102869","issue_url":"https://api.github.com/repos/robpike/ivy/issues/65","id":872102869,"node_id":"MDEyOklzc3VlQ29tbWVudDg3MjEwMjg2OQ==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2021-07-01T09:58:14Z","updated_at":"2021-07-01T09:58:14Z","author_association":"OWNER","body":"That is insane. Well done.\r\n\r\nI really should do something to make control flow easier.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/872102869/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/872131623","html_url":"https://github.com/robpike/ivy/issues/66#issuecomment-872131623","issue_url":"https://api.github.com/repos/robpike/ivy/issues/66","id":872131623,"node_id":"MDEyOklzc3VlQ29tbWVudDg3MjEzMTYyMw==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2021-07-01T10:46:50Z","updated_at":"2021-07-01T10:46:50Z","author_association":"OWNER","body":"This one seems to be just a bug, a missing nil check in run/eval. The fix is obvious.\r\nIf you think there's a deeper problem, let me know.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/872131623/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/872534738","html_url":"https://github.com/robpike/ivy/issues/66#issuecomment-872534738","issue_url":"https://api.github.com/repos/robpike/ivy/issues/66","id":872534738,"node_id":"MDEyOklzc3VlQ29tbWVudDg3MjUzNDczOA==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2021-07-01T20:37:07Z","updated_at":"2021-07-01T20:37:07Z","author_association":"OWNER","body":"That fix has other problems.\r\nThinking.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/872534738/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/872540044","html_url":"https://github.com/robpike/ivy/issues/66#issuecomment-872540044","issue_url":"https://api.github.com/repos/robpike/ivy/issues/66","id":872540044,"node_id":"MDEyOklzc3VlQ29tbWVudDg3MjU0MDA0NA==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2021-07-01T20:47:44Z","updated_at":"2021-07-01T20:47:53Z","author_association":"OWNER","body":"Changed in [072b8a](https://github.com/robpike/ivy/commit/04bfaf6224c8e8d59306a04753719f0881072b8a) to return an empty vector.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/872540044/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/874192780","html_url":"https://github.com/robpike/ivy/issues/61#issuecomment-874192780","issue_url":"https://api.github.com/repos/robpike/ivy/issues/61","id":874192780,"node_id":"MDEyOklzc3VlQ29tbWVudDg3NDE5Mjc4MA==","user":{"login":"glxxyz","id":12117022,"node_id":"MDQ6VXNlcjEyMTE3MDIy","avatar_url":"https://avatars.githubusercontent.com/u/12117022?v=4","gravatar_id":"","url":"https://api.github.com/users/glxxyz","html_url":"https://github.com/glxxyz","followers_url":"https://api.github.com/users/glxxyz/followers","following_url":"https://api.github.com/users/glxxyz/following{/other_user}","gists_url":"https://api.github.com/users/glxxyz/gists{/gist_id}","starred_url":"https://api.github.com/users/glxxyz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/glxxyz/subscriptions","organizations_url":"https://api.github.com/users/glxxyz/orgs","repos_url":"https://api.github.com/users/glxxyz/repos","events_url":"https://api.github.com/users/glxxyz/events{/privacy}","received_events_url":"https://api.github.com/users/glxxyz/received_events","type":"User","site_admin":false},"created_at":"2021-07-05T15:25:57Z","updated_at":"2021-07-05T15:25:57Z","author_association":"CONTRIBUTOR","body":"Wasn't this fixed by https://github.com/robpike/ivy/commit/a0b4ddf4aab83b1a917ef13a1e914f41ed1c2764 ?","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/874192780/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/874341265","html_url":"https://github.com/robpike/ivy/issues/61#issuecomment-874341265","issue_url":"https://api.github.com/repos/robpike/ivy/issues/61","id":874341265,"node_id":"MDEyOklzc3VlQ29tbWVudDg3NDM0MTI2NQ==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2021-07-05T21:42:10Z","updated_at":"2021-07-05T21:42:10Z","author_association":"OWNER","body":"Yes, thanks.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/874341265/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/875385565","html_url":"https://github.com/robpike/ivy/issues/65#issuecomment-875385565","issue_url":"https://api.github.com/repos/robpike/ivy/issues/65","id":875385565,"node_id":"MDEyOklzc3VlQ29tbWVudDg3NTM4NTU2NQ==","user":{"login":"tcolgate","id":76019,"node_id":"MDQ6VXNlcjc2MDE5","avatar_url":"https://avatars.githubusercontent.com/u/76019?v=4","gravatar_id":"","url":"https://api.github.com/users/tcolgate","html_url":"https://github.com/tcolgate","followers_url":"https://api.github.com/users/tcolgate/followers","following_url":"https://api.github.com/users/tcolgate/following{/other_user}","gists_url":"https://api.github.com/users/tcolgate/gists{/gist_id}","starred_url":"https://api.github.com/users/tcolgate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tcolgate/subscriptions","organizations_url":"https://api.github.com/users/tcolgate/orgs","repos_url":"https://api.github.com/users/tcolgate/repos","events_url":"https://api.github.com/users/tcolgate/events{/privacy}","received_events_url":"https://api.github.com/users/tcolgate/received_events","type":"User","site_admin":false},"created_at":"2021-07-07T08:06:19Z","updated_at":"2021-07-07T08:06:19Z","author_association":"CONTRIBUTOR","body":"This is a really elegant feature. The Decomposable interface in the implementation is an interesting approach I'd never have considered.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/875385565/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/875437419","html_url":"https://github.com/robpike/ivy/issues/65#issuecomment-875437419","issue_url":"https://api.github.com/repos/robpike/ivy/issues/65","id":875437419,"node_id":"MDEyOklzc3VlQ29tbWVudDg3NTQzNzQxOQ==","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2021-07-07T09:15:54Z","updated_at":"2021-07-07T09:15:54Z","author_association":"OWNER","body":"Thanks, but know it's just a hack to break isolation. Also, if I were starting ivy over I might do a different package layout; the import graph is hard to keep from going circular. Everything ends up in package value.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/875437419/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/874190728","html_url":"https://github.com/robpike/ivy/issues/65#issuecomment-874190728","issue_url":"https://api.github.com/repos/robpike/ivy/issues/65","id":874190728,"node_id":"MDEyOklzc3VlQ29tbWVudDg3NDE5MDcyOA==","user":{"login":"glxxyz","id":12117022,"node_id":"MDQ6VXNlcjEyMTE3MDIy","avatar_url":"https://avatars.githubusercontent.com/u/12117022?v=4","gravatar_id":"","url":"https://api.github.com/users/glxxyz","html_url":"https://github.com/glxxyz","followers_url":"https://api.github.com/users/glxxyz/followers","following_url":"https://api.github.com/users/glxxyz/following{/other_user}","gists_url":"https://api.github.com/users/glxxyz/gists{/gist_id}","starred_url":"https://api.github.com/users/glxxyz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/glxxyz/subscriptions","organizations_url":"https://api.github.com/users/glxxyz/orgs","repos_url":"https://api.github.com/users/glxxyz/repos","events_url":"https://api.github.com/users/glxxyz/events{/privacy}","received_events_url":"https://api.github.com/users/glxxyz/received_events","type":"User","site_admin":false},"created_at":"2021-07-05T15:22:29Z","updated_at":"2021-07-07T14:38:17Z","author_association":"CONTRIBUTOR","body":"Dyalog APL's dynamic functions have [Guards](https://help.dyalog.com/18.0/#Language/Defined%20Functions%20and%20Operators/DynamicFunctions/Guards.htm) with short-circuit evaluation. Could user defined functions support something like this?\r\n```\r\nop fib x =\r\n x == 0: 0\r\n x == 1: 1\r\n (fib x - 1) + fib x - 2\r\n```","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/874190728/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/876095590","html_url":"https://github.com/robpike/ivy/issues/65#issuecomment-876095590","issue_url":"https://api.github.com/repos/robpike/ivy/issues/65","id":876095590,"node_id":"MDEyOklzc3VlQ29tbWVudDg3NjA5NTU5MA==","user":{"login":"glxxyz","id":12117022,"node_id":"MDQ6VXNlcjEyMTE3MDIy","avatar_url":"https://avatars.githubusercontent.com/u/12117022?v=4","gravatar_id":"","url":"https://api.github.com/users/glxxyz","html_url":"https://github.com/glxxyz","followers_url":"https://api.github.com/users/glxxyz/followers","following_url":"https://api.github.com/users/glxxyz/following{/other_user}","gists_url":"https://api.github.com/users/glxxyz/gists{/gist_id}","starred_url":"https://api.github.com/users/glxxyz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/glxxyz/subscriptions","organizations_url":"https://api.github.com/users/glxxyz/orgs","repos_url":"https://api.github.com/users/glxxyz/repos","events_url":"https://api.github.com/users/glxxyz/events{/privacy}","received_events_url":"https://api.github.com/users/glxxyz/received_events","type":"User","site_admin":false},"created_at":"2021-07-08T03:31:41Z","updated_at":"2021-07-08T03:31:41Z","author_association":"CONTRIBUTOR","body":"That's amazing, I was just brainstorming. Very clean implementation too. Thanks!","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/876095590/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/986090077","html_url":"https://github.com/robpike/ivy/pull/67#issuecomment-986090077","issue_url":"https://api.github.com/repos/robpike/ivy/issues/67","id":986090077,"node_id":"IC_kwDOAZPgIc46xopd","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2021-12-04T20:44:28Z","updated_at":"2021-12-04T20:44:28Z","author_association":"OWNER","body":"Tagged as v0.1.5\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/986090077/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/987425379","html_url":"https://github.com/robpike/ivy/pull/68#issuecomment-987425379","issue_url":"https://api.github.com/repos/robpike/ivy/issues/68","id":987425379,"node_id":"IC_kwDOAZPgIc462upj","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2021-12-07T00:27:32Z","updated_at":"2021-12-07T00:27:32Z","author_association":"OWNER","body":"Mostly good, and thanks for the changes, but I have a few minor comments.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/987425379/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/987552530","html_url":"https://github.com/robpike/ivy/pull/68#issuecomment-987552530","issue_url":"https://api.github.com/repos/robpike/ivy/issues/68","id":987552530,"node_id":"IC_kwDOAZPgIc463NsS","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2021-12-07T04:14:37Z","updated_at":"2021-12-07T04:14:37Z","author_association":"CONTRIBUTOR","body":"I pushed a new sequence with the changes applied except for the suggested use of shrink. Long comment above about that.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/987552530/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/987903214","html_url":"https://github.com/robpike/ivy/issues/69#issuecomment-987903214","issue_url":"https://api.github.com/repos/robpike/ivy/issues/69","id":987903214,"node_id":"IC_kwDOAZPgIc464jTu","user":{"login":"tcolgate","id":76019,"node_id":"MDQ6VXNlcjc2MDE5","avatar_url":"https://avatars.githubusercontent.com/u/76019?v=4","gravatar_id":"","url":"https://api.github.com/users/tcolgate","html_url":"https://github.com/tcolgate","followers_url":"https://api.github.com/users/tcolgate/followers","following_url":"https://api.github.com/users/tcolgate/following{/other_user}","gists_url":"https://api.github.com/users/tcolgate/gists{/gist_id}","starred_url":"https://api.github.com/users/tcolgate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tcolgate/subscriptions","organizations_url":"https://api.github.com/users/tcolgate/orgs","repos_url":"https://api.github.com/users/tcolgate/repos","events_url":"https://api.github.com/users/tcolgate/events{/privacy}","received_events_url":"https://api.github.com/users/tcolgate/received_events","type":"User","site_admin":false},"created_at":"2021-12-07T12:59:37Z","updated_at":"2021-12-07T12:59:37Z","author_association":"CONTRIBUTOR","body":"I fancy having a go at implementing this one myself, but was curious if there was an obvious reason it was left out.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/987903214/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/988334610","html_url":"https://github.com/robpike/ivy/issues/69#issuecomment-988334610","issue_url":"https://api.github.com/repos/robpike/ivy/issues/69","id":988334610,"node_id":"IC_kwDOAZPgIc466MoS","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2021-12-07T23:21:03Z","updated_at":"2021-12-07T23:23:30Z","author_association":"OWNER","body":"I've wanted it too. Let me tackle it, although it's a bit tricky. It might require a long-desired feature of having operators be first class, although special parser support might be enough.\r\n\r\nIn the meantime you can write a loop for a specific case, but you'd need a different loop for each operator.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/988334610/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/988635680","html_url":"https://github.com/robpike/ivy/issues/69#issuecomment-988635680","issue_url":"https://api.github.com/repos/robpike/ivy/issues/69","id":988635680,"node_id":"IC_kwDOAZPgIc467WIg","user":{"login":"tcolgate","id":76019,"node_id":"MDQ6VXNlcjc2MDE5","avatar_url":"https://avatars.githubusercontent.com/u/76019?v=4","gravatar_id":"","url":"https://api.github.com/users/tcolgate","html_url":"https://github.com/tcolgate","followers_url":"https://api.github.com/users/tcolgate/followers","following_url":"https://api.github.com/users/tcolgate/following{/other_user}","gists_url":"https://api.github.com/users/tcolgate/gists{/gist_id}","starred_url":"https://api.github.com/users/tcolgate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tcolgate/subscriptions","organizations_url":"https://api.github.com/users/tcolgate/orgs","repos_url":"https://api.github.com/users/tcolgate/repos","events_url":"https://api.github.com/users/tcolgate/events{/privacy}","received_events_url":"https://api.github.com/users/tcolgate/received_events","type":"User","site_admin":false},"created_at":"2021-12-08T09:19:12Z","updated_at":"2021-12-08T09:19:12Z","author_association":"CONTRIBUTOR","body":"Brilliant, thanks (I suspected it wasn't going to be as simple as adding another style of / or .).\r\n\r\n> In the meantime you can write a loop for a specific case, but you'd need a different loop for each operator.\r\n\r\nBy way of an experience report, I hit similar issues to as @rsc discussed in his recent PR when writing loops over matrices, where it was sometimes hard to work out the terminal conditions reliably.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/988635680/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/988738887","html_url":"https://github.com/robpike/ivy/issues/69#issuecomment-988738887","issue_url":"https://api.github.com/repos/robpike/ivy/issues/69","id":988738887,"node_id":"IC_kwDOAZPgIc467vVH","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2021-12-08T11:41:23Z","updated_at":"2021-12-08T11:41:23Z","author_association":"OWNER","body":"The core issue is that there is nothing in ivy corresponding to what are called operators in APL (ivy's operators are functions in APL speak). The \"each\" token represents an operator, which is something that modifies the behavior of a function.\r\n\r\nI spent some time on this today and found a couple of ways to hack it in, but nothing that I'm happy with yet. As I said, I might go back to my original (and also not easy; I didn't plan for this) idea of allowing operators to be values themselves. Then an operator could also be an operand, which has many benefits (including allowing anonymous blocks of code to be operators).","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/988738887/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/988819976","html_url":"https://github.com/robpike/ivy/issues/69#issuecomment-988819976","issue_url":"https://api.github.com/repos/robpike/ivy/issues/69","id":988819976,"node_id":"IC_kwDOAZPgIc468DII","user":{"login":"tcolgate","id":76019,"node_id":"MDQ6VXNlcjc2MDE5","avatar_url":"https://avatars.githubusercontent.com/u/76019?v=4","gravatar_id":"","url":"https://api.github.com/users/tcolgate","html_url":"https://github.com/tcolgate","followers_url":"https://api.github.com/users/tcolgate/followers","following_url":"https://api.github.com/users/tcolgate/following{/other_user}","gists_url":"https://api.github.com/users/tcolgate/gists{/gist_id}","starred_url":"https://api.github.com/users/tcolgate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tcolgate/subscriptions","organizations_url":"https://api.github.com/users/tcolgate/orgs","repos_url":"https://api.github.com/users/tcolgate/repos","events_url":"https://api.github.com/users/tcolgate/events{/privacy}","received_events_url":"https://api.github.com/users/tcolgate/received_events","type":"User","site_admin":false},"created_at":"2021-12-08T13:35:26Z","updated_at":"2021-12-08T13:35:26Z","author_association":"CONTRIBUTOR","body":"Thanks for the elaboration. Reading around it seems that /, \\ etc are also operators (and o. is a special cased one), all very interesting! Sounds like there a good argument for skipping later APL's approaches, and doing something more regular like J's approach (talking way beyond what I understand here).\r\nThanks for the time, thought, and information. I look forward to seeing what, if anything, comes from it all!\r\n\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/988819976/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/989342150","html_url":"https://github.com/robpike/ivy/issues/69#issuecomment-989342150","issue_url":"https://api.github.com/repos/robpike/ivy/issues/69","id":989342150,"node_id":"IC_kwDOAZPgIc46-CnG","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2021-12-09T00:37:39Z","updated_at":"2021-12-09T00:37:39Z","author_association":"CONTRIBUTOR","body":"I've been thinking a lot about this. I agree that something's missing, and also that APL's each is not exactly right as is.\r\n\r\nOne thing I was considering is saying `x op@ y` to mean you run x op y[i] for all i in iota (rho y)[1] and then puts the results back along the first axis. You could imagine it cascading too, so that `x op@@ y` applies to all y[i][j] and reassembles the results into the first two axes. I think that would handle the majority of the tail-recursive loops I have written over the past week.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/989342150/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/989381362","html_url":"https://github.com/robpike/ivy/issues/69#issuecomment-989381362","issue_url":"https://api.github.com/repos/robpike/ivy/issues/69","id":989381362,"node_id":"IC_kwDOAZPgIc46-MLy","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2021-12-09T01:22:32Z","updated_at":"2021-12-09T01:22:32Z","author_association":"CONTRIBUTOR","body":"I forgot the second half of what I'd been thinking with @. It could be made to work on the other side, too, so that `x @op y` would mean to reassemble the results of x[i] op y. And then if it was on both sides, the indexes would be matched. So if you had a binary operator f written in such a way that its arguments must be scalars, then all of these would apply f elementwise same as a builtin like +.\r\n\r\n 1 f@ iota 5\r\n (iota 5) f@ 1\r\n (iota 5) @f@ (iota 5)\r\n (3 3 rho iota 9) @@f@@ (3 3 rho iota 9)\r\n\r\nor if you had something that needed vectors on both sides then\r\n\r\n z = 3 3 rho iota 9\r\n x = z @f@ z\r\n\r\nwould be given by x[i] = z[i] f z[i]\r\n\r\nIt's a little weird looking.\r\n\r\nAnother thing I've been wondering is whether there's any way to say what the maximum rank of an argument is, a kind of optional type in the operator definition. If you could define something like `op x(1) f y(1)` to mean that f can't handle more than a vector, then something like `z f z` could automatically figure out that it needs to iterate over axes until both sides are down to vectors, even more like +.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/989381362/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/989385417","html_url":"https://github.com/robpike/ivy/issues/28#issuecomment-989385417","issue_url":"https://api.github.com/repos/robpike/ivy/issues/28","id":989385417,"node_id":"IC_kwDOAZPgIc46-NLJ","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2021-12-09T01:25:43Z","updated_at":"2021-12-09T01:25:43Z","author_association":"CONTRIBUTOR","body":"I noticed this is still open, presumably because of the 'need an Ivy discussion forum' part since the conditional execution now exists. One possibility would be to enable GitHub Discussions on this repo. We've used them for Go discussions that are expected to be too much for the issue tracker, and the single level of threading is really helpful. \r\n\r\nWe tend to only use them for big things in Go, but projects often use them now for Q&A etc.\r\nhttps://github.com/golang/go/discussions/47141 is one of our smaller discussions.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/989385417/reactions","total_count":2,"+1":2,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/989431367","html_url":"https://github.com/robpike/ivy/issues/69#issuecomment-989431367","issue_url":"https://api.github.com/repos/robpike/ivy/issues/69","id":989431367,"node_id":"IC_kwDOAZPgIc46-YZH","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2021-12-09T01:59:44Z","updated_at":"2021-12-09T01:59:44Z","author_association":"OWNER","body":"> I've been thinking a lot about this. I agree that something's missing, and also that APL's each is not exactly right as is.\r\n> \r\n> One thing I was considering is saying `x op@ y` to mean you run x op y[i] for all i in iota (rho y)[1] and then puts the results back along the first axis. You could imagine it cascading too, so that `x op@@ y` applies to all y[i][j] and reassembles the results into the first two axes. I think that would handle the majority of the tail-recursive loops I have written over the past week.\r\n\r\nThis is pretty much what I've had in mind. The doubling action of the modifier is a nice wrinkle. I hadn't come up with a character yet, though. Not sure I like @ but that's what bikeshedding is for.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/989431367/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/989432801","html_url":"https://github.com/robpike/ivy/issues/28#issuecomment-989432801","issue_url":"https://api.github.com/repos/robpike/ivy/issues/28","id":989432801,"node_id":"IC_kwDOAZPgIc46-Yvh","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2021-12-09T02:02:19Z","updated_at":"2021-12-09T02:02:35Z","author_association":"OWNER","body":"Could do that. It hasn't really had enough users to be worth doing until you started posting all these power-user videos :)","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/989432801/reactions","total_count":7,"+1":0,"-1":0,"laugh":7,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/989568858","html_url":"https://github.com/robpike/ivy/issues/70#issuecomment-989568858","issue_url":"https://api.github.com/repos/robpike/ivy/issues/70","id":989568858,"node_id":"IC_kwDOAZPgIc46-59a","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2021-12-09T06:58:42Z","updated_at":"2021-12-09T06:58:42Z","author_association":"OWNER","body":"Very nice. Obviously upside down but I think the real error is trying to evaluate it at all. The ranks are mismatched. Even dyalog doesn't handle it.\r\n\r\nSo I've missed something fundamental. What did you expect to happen? (Other than numerator and denominator the right way around.)\r\n\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/989568858/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/989569838","html_url":"https://github.com/robpike/ivy/issues/70#issuecomment-989569838","issue_url":"https://api.github.com/repos/robpike/ivy/issues/70","id":989569838,"node_id":"IC_kwDOAZPgIc46-6Mu","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2021-12-09T07:00:22Z","updated_at":"2021-12-09T07:00:22Z","author_association":"OWNER","body":"But I notice that + for example \"works\" in ivy but not in dyalog. Interesting. Will investigate.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/989569838/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/989587998","html_url":"https://github.com/robpike/ivy/issues/70#issuecomment-989587998","issue_url":"https://api.github.com/repos/robpike/ivy/issues/70","id":989587998,"node_id":"IC_kwDOAZPgIc46--oe","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2021-12-09T07:33:02Z","updated_at":"2021-12-09T07:33:02Z","author_association":"OWNER","body":"Spectacular failure. Thanks for reporting it.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/989587998/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/990368592","html_url":"https://github.com/robpike/ivy/issues/71#issuecomment-990368592","issue_url":"https://api.github.com/repos/robpike/ivy/issues/71","id":990368592,"node_id":"IC_kwDOAZPgIc47B9NQ","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2021-12-09T22:44:54Z","updated_at":"2021-12-09T22:44:54Z","author_association":"OWNER","body":"What is the platform you are on? And what version of ivy are you (what is the head commit)? I can't reproduce it. I'd like to do that so I can write a test to verify the fix.\r\n\r\nBut I'm sure the fix looks right.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/990368592/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}]165 56371 GET https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=6&sort=updated HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:49 GMT Etag: W/"ca232a9cc5195a3c9e05b57a5f49c06a4b63b7bb5e4d4cbb8bc1cfe8910a5aa2" Link: <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=5&sort=updated>; rel="prev", <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=7&sort=updated>; rel="next", <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=11&sort=updated>; rel="last", <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=1&sort=updated>; rel="first" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EB9ED:335068:665E33B1 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4992 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 8 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/990369569","html_url":"https://github.com/robpike/ivy/issues/71#issuecomment-990369569","issue_url":"https://api.github.com/repos/robpike/ivy/issues/71","id":990369569,"node_id":"IC_kwDOAZPgIc47B9ch","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2021-12-09T22:46:05Z","updated_at":"2021-12-09T22:46:05Z","author_association":"OWNER","body":"Ok, I've been able to reproduce it on my nth try. Thanks for the bug report.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/990369569/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/991450079","html_url":"https://github.com/robpike/ivy/issues/69#issuecomment-991450079","issue_url":"https://api.github.com/repos/robpike/ivy/issues/69","id":991450079,"node_id":"IC_kwDOAZPgIc47GFPf","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2021-12-11T04:16:49Z","updated_at":"2021-12-11T04:16:49Z","author_association":"OWNER","body":"I implemented, by analogy with o.<binary op>, map.<unary op>, to iterate over the elements of the right hand side. So\r\n\r\nmap.! 1 2 3\r\n\r\nprints\r\n\r\n1 2 6\r\n\r\nIt was easy to do but it's not useful. Almost all the unary operators already apply elementwise, including simple user-defined ones. The few that don't, such as rho and iota, produce results of varying sizes, and it's not easy to see how the results should pack given ivy's data model.\r\n\r\nmap.iota 1 2 3\r\n\r\nwould produce the integers 1 1 2 1 2 3 but not as a simple vector of scalars, but as 1 (1 2) (1 2 3), and ivy's data model does not allow compound elements in vectors, so this is an error.\r\n\r\nSo I think simple map is out. Dyalog's each (¨) works, but dyalog has a richer data model. The rhs of tryapl.org's example of its use is illegal in ivy.\r\n\r\nStill thinking about rsc's idea.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/991450079/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/991807608","html_url":"https://github.com/robpike/ivy/pull/72#issuecomment-991807608","issue_url":"https://api.github.com/repos/robpike/ivy/issues/72","id":991807608,"node_id":"IC_kwDOAZPgIc47Hch4","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2021-12-12T00:03:33Z","updated_at":"2021-12-12T00:03:33Z","author_association":"OWNER","body":"There is a bug, but this isn't the fix for that particular bug. The problem is that binary iota doesn't subtract the origin from the response; it always returns zero. Easy to fix. But....\r\n\r\nYour CL changes the behavior to contradict the documentation, although it doesn't update the documentation, which points out that ivy differs from APL here. Maybe it shouldn't. Perhaps the behavior you want (and APL shares) is the way to go, as it avoids -1 indexes. But if so, the docs have to be updated as well as the tests.\r\n\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/991807608/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/993037897","html_url":"https://github.com/robpike/ivy/issues/73#issuecomment-993037897","issue_url":"https://api.github.com/repos/robpike/ivy/issues/73","id":993037897,"node_id":"IC_kwDOAZPgIc47MI5J","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2021-12-14T00:30:18Z","updated_at":"2021-12-14T00:30:18Z","author_association":"OWNER","body":"Thanks for the report.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/993037897/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/995250882","html_url":"https://github.com/robpike/ivy/issues/69#issuecomment-995250882","issue_url":"https://api.github.com/repos/robpike/ivy/issues/69","id":995250882,"node_id":"IC_kwDOAZPgIc47UlLC","user":{"login":"glxxyz","id":12117022,"node_id":"MDQ6VXNlcjEyMTE3MDIy","avatar_url":"https://avatars.githubusercontent.com/u/12117022?v=4","gravatar_id":"","url":"https://api.github.com/users/glxxyz","html_url":"https://github.com/glxxyz","followers_url":"https://api.github.com/users/glxxyz/followers","following_url":"https://api.github.com/users/glxxyz/following{/other_user}","gists_url":"https://api.github.com/users/glxxyz/gists{/gist_id}","starred_url":"https://api.github.com/users/glxxyz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/glxxyz/subscriptions","organizations_url":"https://api.github.com/users/glxxyz/orgs","repos_url":"https://api.github.com/users/glxxyz/repos","events_url":"https://api.github.com/users/glxxyz/events{/privacy}","received_events_url":"https://api.github.com/users/glxxyz/received_events","type":"User","site_admin":false},"created_at":"2021-12-15T22:06:33Z","updated_at":"2021-12-15T22:06:33Z","author_association":"CONTRIBUTOR","body":"> I ended up defining the function as an operator that ignored one of its args. then reducing over a vector of pairs\r\n\r\nIn this example you could define a unary operator:\r\n\r\n```\r\nop triangle b = (b * (b + 1)) / 2\r\n\r\ntriangle 10\r\n55\r\n\r\ntriangle iota 10\r\n1 3 6 10 15 21 28 36 45 55\r\n```\r\n\r\n(some more complex functions require map/each as described in the rest of the thread)","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/995250882/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/995261675","html_url":"https://github.com/robpike/ivy/pull/72#issuecomment-995261675","issue_url":"https://api.github.com/repos/robpike/ivy/issues/72","id":995261675,"node_id":"IC_kwDOAZPgIc47Unzr","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2021-12-15T22:24:50Z","updated_at":"2021-12-15T22:25:56Z","author_association":"CONTRIBUTOR","body":"I don't believe we should change something this fundamental at this point. \r\n0 is just as good as the max index, and arguably better (because it's false in the default 1-origin world).\r\nIt should just be -1+origin instead of a hard-coded 0.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/995261675/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/995368613","html_url":"https://github.com/robpike/ivy/pull/72#issuecomment-995368613","issue_url":"https://api.github.com/repos/robpike/ivy/issues/72","id":995368613,"node_id":"IC_kwDOAZPgIc47VB6l","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2021-12-16T01:55:56Z","updated_at":"2021-12-16T01:55:56Z","author_association":"CONTRIBUTOR","body":"I have a pending PR fully implementing multidimensional binary iota.\r\nI've added a commit in that stack to fix the failure result to match the docs (origin-1).\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/995368613/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/995368867","html_url":"https://github.com/robpike/ivy/pull/76#issuecomment-995368867","issue_url":"https://api.github.com/repos/robpike/ivy/issues/76","id":995368867,"node_id":"IC_kwDOAZPgIc47VB-j","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2021-12-16T01:56:43Z","updated_at":"2021-12-16T01:56:43Z","author_association":"CONTRIBUTOR","body":"Added a commit changing failure in 0-origin mode to return -1, like docs say (alternative to #72).\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/995368867/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/995386616","html_url":"https://github.com/robpike/ivy/issues/69#issuecomment-995386616","issue_url":"https://api.github.com/repos/robpike/ivy/issues/69","id":995386616,"node_id":"IC_kwDOAZPgIc47VGT4","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2021-12-16T02:38:45Z","updated_at":"2021-12-16T02:40:24Z","author_association":"CONTRIBUTOR","body":"I implemented @ in my copy of my Ivy, but I haven't sent it out. The implementation needs work and I don't know if it's the right idea anyway. \r\n\r\nBut it has one property that seems pretty nice. I was wrong about what `xs @op@ ys` would mean. I had said it would run op on corresponding pairs of x and y and collect the results, but that's inconsistent with the single-@ cases. If `xs @op y` means \"for all x in xs, x op y\" and \"x op@ ys\" means \"for all y in ys, x op y\", then the only consistent meaning of `xs @op@ ys` is \"for all x in xs, for all y in ys, x op y\". That is, it's an outer product, at least if xs and ys are vectors. More generally, `x @...@op@...@ y` is the outer product when the number of @'s on the left equals the rank of x and the number on the right equals the rank of y.\r\n\r\nAfter using this for a few days ([for example, here in this video](https://www.youtube.com/watch?v=JbfC2ggsnpw&list=PLrwpzH1_9ufMLOB6BAdzO08Qx-9jHGfGg&index=13&t=70s)) I find it much easier to think of the outer product this way. I never really got used to `o.==` but seeing `@==@` as two loops works much better for me. \r\n\r\nRob's comment about map not being needed for the basic operators is absolutely true: they all automatically extend to vectors well already. It is far more useful for user-defined operators, which are often defined in ways that don't automatically extend to vectors ([for example, later in the video](https://www.youtube.com/watch?v=JbfC2ggsnpw&list=PLrwpzH1_9ufMLOB6BAdzO08Qx-9jHGfGg&index=13&t=550s)).\r\n\r\nOne basic operator that does benefit is transp. If you have, say, a 5 16 16 called x, interpreted as 5 16x16 matrices and you want to transpose them all, you can (now) do 1 3 2 transp x, but transp@ x is a bit clearer.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/995386616/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/995899352","html_url":"https://github.com/robpike/ivy/pull/78#issuecomment-995899352","issue_url":"https://api.github.com/repos/robpike/ivy/issues/78","id":995899352,"node_id":"IC_kwDOAZPgIc47XDfY","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2021-12-16T15:03:09Z","updated_at":"2021-12-16T15:03:09Z","author_association":"CONTRIBUTOR","body":"FWIW, the docs are using APL spellings for explanations, and that's an APL minus sign.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/995899352/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/995908050","html_url":"https://github.com/robpike/ivy/pull/78#issuecomment-995908050","issue_url":"https://api.github.com/repos/robpike/ivy/issues/78","id":995908050,"node_id":"IC_kwDOAZPgIc47XFnS","user":{"login":"posener","id":919294,"node_id":"MDQ6VXNlcjkxOTI5NA==","avatar_url":"https://avatars.githubusercontent.com/u/919294?v=4","gravatar_id":"","url":"https://api.github.com/users/posener","html_url":"https://github.com/posener","followers_url":"https://api.github.com/users/posener/followers","following_url":"https://api.github.com/users/posener/following{/other_user}","gists_url":"https://api.github.com/users/posener/gists{/gist_id}","starred_url":"https://api.github.com/users/posener/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/posener/subscriptions","organizations_url":"https://api.github.com/users/posener/orgs","repos_url":"https://api.github.com/users/posener/repos","events_url":"https://api.github.com/users/posener/events{/privacy}","received_events_url":"https://api.github.com/users/posener/received_events","type":"User","site_admin":false},"created_at":"2021-12-16T15:13:01Z","updated_at":"2021-12-16T15:13:01Z","author_association":"NONE","body":"OK, sorry, I'll close this one.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/995908050/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/996158562","html_url":"https://github.com/robpike/ivy/pull/72#issuecomment-996158562","issue_url":"https://api.github.com/repos/robpike/ivy/issues/72","id":996158562,"node_id":"IC_kwDOAZPgIc47YCxi","user":{"login":"pstuifzand","id":64524,"node_id":"MDQ6VXNlcjY0NTI0","avatar_url":"https://avatars.githubusercontent.com/u/64524?v=4","gravatar_id":"","url":"https://api.github.com/users/pstuifzand","html_url":"https://github.com/pstuifzand","followers_url":"https://api.github.com/users/pstuifzand/followers","following_url":"https://api.github.com/users/pstuifzand/following{/other_user}","gists_url":"https://api.github.com/users/pstuifzand/gists{/gist_id}","starred_url":"https://api.github.com/users/pstuifzand/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pstuifzand/subscriptions","organizations_url":"https://api.github.com/users/pstuifzand/orgs","repos_url":"https://api.github.com/users/pstuifzand/repos","events_url":"https://api.github.com/users/pstuifzand/events{/privacy}","received_events_url":"https://api.github.com/users/pstuifzand/received_events","type":"User","site_admin":false},"created_at":"2021-12-16T20:08:43Z","updated_at":"2021-12-16T20:08:43Z","author_association":"NONE","body":"@rsc Thank you for fixing the bug and showing how useful ivy is in the AoC videos :)","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/996158562/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/999834174","html_url":"https://github.com/robpike/ivy/pull/80#issuecomment-999834174","issue_url":"https://api.github.com/repos/robpike/ivy/issues/80","id":999834174,"node_id":"IC_kwDOAZPgIc47mEI-","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2021-12-22T20:09:03Z","updated_at":"2021-12-22T20:09:03Z","author_association":"CONTRIBUTOR","body":"This is meant to provoke further thought. It made a big difference for my program but it's not complete. And iota should probably do the same thing. I wonder if there should be a Key method in the Value interface (usable only for scalars) that returns some valid map key representation. The non-Int,Char types could return some efficient string.\r\n\r\nThere's also the question of what to do with binary iota, especially the multidimensional case.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/999834174/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/999888082","html_url":"https://github.com/robpike/ivy/pull/81#issuecomment-999888082","issue_url":"https://api.github.com/repos/robpike/ivy/issues/81","id":999888082,"node_id":"IC_kwDOAZPgIc47mRTS","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2021-12-22T21:22:42Z","updated_at":"2021-12-22T21:22:42Z","author_association":"CONTRIBUTOR","body":"Fixed comment.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/999888082/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/999916500","html_url":"https://github.com/robpike/ivy/pull/74#issuecomment-999916500","issue_url":"https://api.github.com/repos/robpike/ivy/issues/74","id":999916500,"node_id":"IC_kwDOAZPgIc47mYPU","user":{"login":"glxxyz","id":12117022,"node_id":"MDQ6VXNlcjEyMTE3MDIy","avatar_url":"https://avatars.githubusercontent.com/u/12117022?v=4","gravatar_id":"","url":"https://api.github.com/users/glxxyz","html_url":"https://github.com/glxxyz","followers_url":"https://api.github.com/users/glxxyz/followers","following_url":"https://api.github.com/users/glxxyz/following{/other_user}","gists_url":"https://api.github.com/users/glxxyz/gists{/gist_id}","starred_url":"https://api.github.com/users/glxxyz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/glxxyz/subscriptions","organizations_url":"https://api.github.com/users/glxxyz/orgs","repos_url":"https://api.github.com/users/glxxyz/repos","events_url":"https://api.github.com/users/glxxyz/events{/privacy}","received_events_url":"https://api.github.com/users/glxxyz/received_events","type":"User","site_admin":false},"created_at":"2021-12-22T22:23:41Z","updated_at":"2021-12-22T22:23:41Z","author_association":"CONTRIBUTOR","body":"> it might be OK to put a shrink call into the transcendental operations, but I'm of two minds.\r\n\r\nA missing shrink can also cause other unexpected effects. I'm not sure whether `log` or `==` is at fault but this seems like a bug:\r\n\r\n```\r\n(2 log 8) == 3\r\n0\r\n```","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/999916500/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/999964196","html_url":"https://github.com/robpike/ivy/pull/81#issuecomment-999964196","issue_url":"https://api.github.com/repos/robpike/ivy/issues/81","id":999964196,"node_id":"IC_kwDOAZPgIc47mj4k","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2021-12-23T00:46:11Z","updated_at":"2021-12-23T00:46:11Z","author_association":"OWNER","body":"Good catch.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/999964196/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/999965145","html_url":"https://github.com/robpike/ivy/issues/82#issuecomment-999965145","issue_url":"https://api.github.com/repos/robpike/ivy/issues/82","id":999965145,"node_id":"IC_kwDOAZPgIc47mkHZ","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2021-12-23T00:49:17Z","updated_at":"2021-12-23T00:49:17Z","author_association":"OWNER","body":"I kinda like python's rule: new writes are local, reads can be global. But then I'm not sure what \"first\" should be. What is\r\na = a ?\r\n\r\nAnd I'd like to avoid more special words.\r\n\r\nNeed to think more.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/999965145/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/999968619","html_url":"https://github.com/robpike/ivy/pull/74#issuecomment-999968619","issue_url":"https://api.github.com/repos/robpike/ivy/issues/74","id":999968619,"node_id":"IC_kwDOAZPgIc47mk9r","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2021-12-23T00:59:32Z","updated_at":"2021-12-23T05:03:11Z","author_association":"OWNER","body":"The result of 2 log 8 in ivy is not exactly 3 - the last bit is 1, not 0. Floating point is funny that way. This is why your (@glxxyz) test fails. In general, though, one should never depend on == in floating point calculations. And shrink wouldn't help in this case, or in many others.\r\n\r\nThe right fix to this, if a fix is needed, is to do what the original change proposes, and do the calculation exactly when possible. But I would like a more efficient solution.\r\n\r\n\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/999968619/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1000404891","html_url":"https://github.com/robpike/ivy/pull/74#issuecomment-1000404891","issue_url":"https://api.github.com/repos/robpike/ivy/issues/74","id":1000404891,"node_id":"IC_kwDOAZPgIc47oPeb","user":{"login":"glxxyz","id":12117022,"node_id":"MDQ6VXNlcjEyMTE3MDIy","avatar_url":"https://avatars.githubusercontent.com/u/12117022?v=4","gravatar_id":"","url":"https://api.github.com/users/glxxyz","html_url":"https://github.com/glxxyz","followers_url":"https://api.github.com/users/glxxyz/followers","following_url":"https://api.github.com/users/glxxyz/following{/other_user}","gists_url":"https://api.github.com/users/glxxyz/gists{/gist_id}","starred_url":"https://api.github.com/users/glxxyz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/glxxyz/subscriptions","organizations_url":"https://api.github.com/users/glxxyz/orgs","repos_url":"https://api.github.com/users/glxxyz/repos","events_url":"https://api.github.com/users/glxxyz/events{/privacy}","received_events_url":"https://api.github.com/users/glxxyz/received_events","type":"User","site_admin":false},"created_at":"2021-12-23T16:18:50Z","updated_at":"2021-12-23T16:18:50Z","author_association":"CONTRIBUTOR","body":"Thanks, I missed that somehow when comparing with Dyalog APL, which seems to give exact answers where possible:\r\n\r\nivy:\r\n```\r\n(2 log 8) - 3\r\n2.41812719543e-76\r\n```\r\n\r\ntryapl.org:\r\n```\r\n(2 ⍟ 8) - 3\r\n0\r\n```","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1000404891/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1000516984","html_url":"https://github.com/robpike/ivy/pull/74#issuecomment-1000516984","issue_url":"https://api.github.com/repos/robpike/ivy/issues/74","id":1000516984,"node_id":"IC_kwDOAZPgIc47oq14","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2021-12-23T20:46:51Z","updated_at":"2021-12-23T20:46:51Z","author_association":"OWNER","body":"Dyalog could well be using exact arithmetic, but it might just be getting the right answer because it's using normal floating point numbers. If that's the case, Dyalog only has to handle 53 bits of mantissa, and for IEEE-754 floats the logarithm algorithms (and intrinsic instructions) are well known and well behaved. Ivy has 256 by default, and those algorithms don't cut it. Logs are hard.\r\n\r\nThe true lesson remains: don't expect exact results with floating point calculations, especially when you have huge mantissas.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1000516984/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1000688070","html_url":"https://github.com/robpike/ivy/pull/80#issuecomment-1000688070","issue_url":"https://api.github.com/repos/robpike/ivy/issues/80","id":1000688070,"node_id":"IC_kwDOAZPgIc47pUnG","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2021-12-24T07:00:40Z","updated_at":"2021-12-24T07:00:40Z","author_association":"OWNER","body":"Interesting approach, but easily defeated. A general answer is better.\r\n\r\nWhat about this? It does your test (which takes 40s on my machine) in 94ms, and should be fine for any type. I am happy with it but won't commit it until I hear from you.\r\n\r\n```\r\n// membership creates a vector of size len(u) reporting\r\n// whether each element is an element of v.\r\n// Algorithm is O(nV log nV + nU * log nV) where nU==len(u) and nV==len(V).\r\nfunc membership(c Context, u, v Vector) []Value {\r\n\tvalues := make([]Value, len(u))\r\n\tsortedV := make([]Value, len(v))\r\n\tcopy(sortedV, v)\r\n\tsort.Slice(sortedV, func(i, j int) bool {\r\n\t\treturn c.EvalBinary(sortedV[i], \"<\", sortedV[j]) == Int(1)\r\n\t})\r\n\tfor i, x := range u {\r\n\t\tvalues[i] = Int(0)\r\n\t\tpos := sort.Search(len(v), func(j int) bool {\r\n\t\t\treturn c.EvalBinary(sortedV[j], \">=\", x) == Int(1)\r\n\t\t})\r\n\t\tif pos < len(v) && c.EvalBinary(sortedV[pos], \"==\", x) == Int(1) {\r\n\t\t\tvalues[i] = Int(1)\r\n\t\t}\r\n\t}\r\n\treturn values\r\n}\r\n```\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1000688070/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1001259590","html_url":"https://github.com/robpike/ivy/pull/80#issuecomment-1001259590","issue_url":"https://api.github.com/repos/robpike/ivy/issues/80","id":1001259590,"node_id":"IC_kwDOAZPgIc47rgJG","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2021-12-27T00:03:34Z","updated_at":"2021-12-27T00:03:34Z","author_association":"CONTRIBUTOR","body":"This looks like a better general approach. It should work well for iota too, even in the non-scalar search case.\r\n\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1001259590/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1001318637","html_url":"https://github.com/robpike/ivy/pull/80#issuecomment-1001318637","issue_url":"https://api.github.com/repos/robpike/ivy/issues/80","id":1001318637,"node_id":"IC_kwDOAZPgIc47rujt","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2021-12-27T03:59:40Z","updated_at":"2021-12-27T03:59:40Z","author_association":"OWNER","body":"Fixed by 1729446a026729e223d837473f6a750f4d63a10c\r\n\r\nAlso applied the idea to binary iota for vectors. Matrices are much messier, maybe not worthwhile.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1001318637/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1001573856","html_url":"https://github.com/robpike/ivy/pull/83#issuecomment-1001573856","issue_url":"https://api.github.com/repos/robpike/ivy/issues/83","id":1001573856,"node_id":"IC_kwDOAZPgIc47ss3g","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2021-12-27T13:36:17Z","updated_at":"2021-12-27T13:36:17Z","author_association":"CONTRIBUTOR","body":"Not for review. To support conversation in #69.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1001573856/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1001575266","html_url":"https://github.com/robpike/ivy/issues/69#issuecomment-1001575266","issue_url":"https://api.github.com/repos/robpike/ivy/issues/69","id":1001575266,"node_id":"IC_kwDOAZPgIc47stNi","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2021-12-27T13:40:05Z","updated_at":"2021-12-27T13:40:05Z","author_association":"CONTRIBUTOR","body":"I pushed my @ implementation in #83. It's not for review, just for discussion.\r\nIt does seem to work well at least for the Ivy programs I have been writing,\r\nand I like that it is a simpler building block than outer product\r\n(that is, outer product can be built naturally from it).\r\n\r\nOne possible alternative spelling would be \"e.\" and \".e\" instead of \"@\",\r\nso that the example in the PR would be `x e.dist.e y` instead of `x @dist@ y`.\r\nI'm not sure whether that's significantly better.\r\ne is a reserved word and can't be the name of a user-defined operator,\r\nso at least it's not ambiguous with inner product.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1001575266/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1001808769","html_url":"https://github.com/robpike/ivy/issues/69#issuecomment-1001808769","issue_url":"https://api.github.com/repos/robpike/ivy/issues/69","id":1001808769,"node_id":"IC_kwDOAZPgIc47tmOB","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2021-12-28T00:20:22Z","updated_at":"2021-12-28T00:20:22Z","author_association":"OWNER","body":"I admit a purely subjective dislike for the notation '@', but do like what your functor can achieve. The letter 'e' seems an improvement to me, by analogy with 'o', but then 'o' didn't intentionally stand for \"outer\" but rather as an analog for the APL ∘ functor. As a result, to me, although 'e' is short, 'each' says more, and reads well:\r\n\r\nx each.dist.each y\r\n\r\nAlthough that is more verbose, it reads clearly. We'd probably get used to the single letter in time, though.\r\n\r\nAnalogy with dyalog is probably not worth pursuing, as I shied away (perhaps for simplicity, perhaps for timidity) of having elements of matrices and vectors be anything other than scalars.\r\n\r\nSo I'm leaning towards following your lead, but must also admit I'm not fully conversant with it yet.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1001808769/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1001809838","html_url":"https://github.com/robpike/ivy/pull/83#issuecomment-1001809838","issue_url":"https://api.github.com/repos/robpike/ivy/issues/83","id":1001809838,"node_id":"IC_kwDOAZPgIc47tmeu","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2021-12-28T00:26:08Z","updated_at":"2021-12-28T00:26:08Z","author_association":"OWNER","body":"I'd need to see the documentation.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1001809838/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1007036608","html_url":"https://github.com/robpike/ivy/pull/74#issuecomment-1007036608","issue_url":"https://api.github.com/repos/robpike/ivy/issues/74","id":1007036608,"node_id":"IC_kwDOAZPgIc48BijA","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2022-01-07T00:18:51Z","updated_at":"2022-01-07T00:18:51Z","author_association":"CONTRIBUTOR","body":"I can't figure out how to mark the '1 change requested' as done.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1007036608/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1007042420","html_url":"https://github.com/robpike/ivy/pull/84#issuecomment-1007042420","issue_url":"https://api.github.com/repos/robpike/ivy/issues/84","id":1007042420,"node_id":"IC_kwDOAZPgIc48Bj90","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2022-01-07T00:31:08Z","updated_at":"2022-01-07T00:31:08Z","author_association":"CONTRIBUTOR","body":"I should add that I think it's possible to identify user-defined functions that parallelize too, but I thought I'd start with the simple cases (builtins), which already a significant win.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1007042420/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1007096264","html_url":"https://github.com/robpike/ivy/issues/85#issuecomment-1007096264","issue_url":"https://api.github.com/repos/robpike/ivy/issues/85","id":1007096264,"node_id":"IC_kwDOAZPgIc48BxHI","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2022-01-07T02:44:09Z","updated_at":"2022-01-07T02:44:38Z","author_association":"OWNER","body":"I've been thinking that array indexing should probably use semicolons for some time now. But it's tricky because, by a piece of magic, [ can be treated as a binary operator, but then what is 1 2; 3 4? It's not an expression. So it will require a deeper reworking than might first seem necessary, as you may be discovering.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1007096264/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}]165 54181 GET https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=7&sort=updated HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:49 GMT Etag: W/"dfd8f73afcafb42e48044d7f45f220d1e10dc6085bddb0fbca59d5c14d936144" Link: <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=6&sort=updated>; rel="prev", <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=8&sort=updated>; rel="next", <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=11&sort=updated>; rel="last", <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=1&sort=updated>; rel="first" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EBAF3:33520C:665E33B1 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4991 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 9 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1007889518","html_url":"https://github.com/robpike/ivy/issues/85#issuecomment-1007889518","issue_url":"https://api.github.com/repos/robpike/ivy/issues/85","id":1007889518,"node_id":"IC_kwDOAZPgIc48Eyxu","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2022-01-08T05:24:50Z","updated_at":"2022-01-08T05:24:50Z","author_association":"CONTRIBUTOR","body":"Sent PR #86, which does both the syntax change and the implementation of rectangle assignment.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1007889518/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1007889871","html_url":"https://github.com/robpike/ivy/pull/86#issuecomment-1007889871","issue_url":"https://api.github.com/repos/robpike/ivy/issues/86","id":1007889871,"node_id":"IC_kwDOAZPgIc48Ey3P","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2022-01-08T05:28:26Z","updated_at":"2022-01-08T05:28:26Z","author_association":"OWNER","body":"P.S. After updating doc.go, run\r\ngo generate ./...\r\nto generate the help files","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1007889871/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1007889923","html_url":"https://github.com/robpike/ivy/pull/84#issuecomment-1007889923","issue_url":"https://api.github.com/repos/robpike/ivy/issues/84","id":1007889923,"node_id":"IC_kwDOAZPgIc48Ey4D","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2022-01-08T05:28:55Z","updated_at":"2022-01-08T05:28:55Z","author_association":"CONTRIBUTOR","body":"Made requested changes; still don't know how to tell GitHub that.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1007889923/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1007988530","html_url":"https://github.com/robpike/ivy/pull/84#issuecomment-1007988530","issue_url":"https://api.github.com/repos/robpike/ivy/issues/84","id":1007988530,"node_id":"IC_kwDOAZPgIc48FK8y","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2022-01-08T13:23:48Z","updated_at":"2022-01-08T13:23:48Z","author_association":"CONTRIBUTOR","body":"Probably it should be < MinWork*2, since that is the condition that is going to result in a single goroutine running. Not sure why I did 3/2.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1007988530/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1008126167","html_url":"https://github.com/robpike/ivy/pull/86#issuecomment-1008126167","issue_url":"https://api.github.com/repos/robpike/ivy/issues/86","id":1008126167,"node_id":"IC_kwDOAZPgIc48FsjX","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2022-01-08T19:49:14Z","updated_at":"2022-01-08T19:49:14Z","author_association":"CONTRIBUTOR","body":"Will take a look at doc.go.\r\n\r\n```\r\n% git change 86\r\ngit-codereview: changed to PR 86.\r\n\tivy: implement multidimensional vector-indexed assignment\r\n% go build\r\n% ./ivy\r\na = 4 4 rho iota 16\r\n\r\na\r\n 1 2 3 4\r\n 5 6 7 8\r\n 9 10 11 12\r\n13 14 15 16\r\n\r\na[1 2; 3 4]\r\n3 4\r\n7 8\r\n\r\na[1 2][3 4]\r\nindex a[1 2][(3)] out of range for shape (2 4)\r\n\r\na[1 2; 3 4 5]\r\nindex a[_; (5)] out of range for shape (4 4)\r\n\r\n```\r\n\r\nThe ( ) were not intentional - Int.String must be adding them? - but I kind of like them.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1008126167/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1008128256","html_url":"https://github.com/robpike/ivy/pull/86#issuecomment-1008128256","issue_url":"https://api.github.com/repos/robpike/ivy/issues/86","id":1008128256,"node_id":"IC_kwDOAZPgIc48FtEA","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2022-01-08T19:58:19Z","updated_at":"2022-01-08T19:58:19Z","author_association":"CONTRIBUTOR","body":"Updated doc.go, added a line to demo.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1008128256/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1008158526","html_url":"https://github.com/robpike/ivy/pull/84#issuecomment-1008158526","issue_url":"https://api.github.com/repos/robpike/ivy/issues/84","id":1008158526,"node_id":"IC_kwDOAZPgIc48F0c-","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2022-01-08T21:34:54Z","updated_at":"2022-01-08T21:34:54Z","author_association":"OWNER","body":"OK, I put it back to 2.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1008158526/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1008203354","html_url":"https://github.com/robpike/ivy/pull/86#issuecomment-1008203354","issue_url":"https://api.github.com/repos/robpike/ivy/issues/86","id":1008203354,"node_id":"IC_kwDOAZPgIc48F_Za","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2022-01-09T00:59:24Z","updated_at":"2022-01-09T00:59:24Z","author_association":"OWNER","body":"I'll fix the one tweak in the other.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1008203354/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1009608277","html_url":"https://github.com/robpike/ivy/pull/90#issuecomment-1009608277","issue_url":"https://api.github.com/repos/robpike/ivy/issues/90","id":1009608277,"node_id":"IC_kwDOAZPgIc48LWZV","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2022-01-11T05:18:34Z","updated_at":"2022-01-11T05:18:34Z","author_association":"OWNER","body":"This is an interesting idea, but I am not sure it's a worthwhile path to take. To do it, it must be done well, which is a lot of work. The transcendental functions and logarithms must work, not to mention the surprising challenge of division.\r\n\r\nBut leaving aside whether to do it at all, this is not the best way to introduce them. The parsing problems introduced by using Go's notation here are severe.\r\n\r\nOn my morning constitutional I thought about the problem and realized that the right APL way (and hence ivy way) is to use operators. I thought of 'i' for the operator, but that is stealing a very common variable, so I decided that 'j' would be better, as the electrical engineers use. Then the unary 'j' returns an imaginary number, or perhaps just multiplies its argument by sqrt(-1). The binary 'j' takes a real and an imaginary part:\r\n\r\n```\r\nj 3 == (0+3i)\r\n2 j 4 == (2+3i)\r\n```\r\n\r\nThis has a strong analogy with how rationals are built, by overloading (but not really) the / operator. As with rationals, the lexer could promote the form directly and avoid most of the parsing mess. Then you get things like this to work well:\r\n\r\n```\r\nj iota 3 == (0+1i) (0+2i) (0+3i)\r\n2 j iota 3 = (2+1i) (2+2i) (2+3i)\r\n1j1 2j2 3j3 == (1+1i) (2+2i) (3+3i)\r\n```\r\n\r\nand so on. If you executed those, you wouldn't get Go notation of course:\r\n\r\n```\r\nj iota 3 \r\n 0j1 0j2 0j3\r\n\r\n2 j iota 3\r\n 2j1 2j2 2j3\r\n\r\n1j1 2j2 3j3\r\n 1j1 2j2 3j3\r\n```\r\n\r\n\r\nWhen I got home, I looked up what dyalog did, and at least for syntax, guess what? 2J3 is their notation for 2+3i. So that is an endorsement of my suggestion.\r\n\r\nBut to go back to the main point, thank you for suggesting the idea, but this is not the way to go, and I'm not sure it's worth doing at all, because the work involved is substantial. Introducing a new basic type into ivy is hard enough; doing it for such an unusual type is all the more work.\r\n\r\nSo I am going to close this PR, but I promise to think hard about doing it.\r\n\r\n\r\n\r\n\r\n\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1009608277/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1012225874","html_url":"https://github.com/robpike/ivy/pull/92#issuecomment-1012225874","issue_url":"https://api.github.com/repos/robpike/ivy/issues/92","id":1012225874,"node_id":"IC_kwDOAZPgIc48VVdS","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2022-01-13T15:10:27Z","updated_at":"2022-01-13T15:10:27Z","author_association":"CONTRIBUTOR","body":"No worries at all if you'd rather not, but it seemed like this might be worth making a little less invisible.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1012225874/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1012346400","html_url":"https://github.com/robpike/ivy/pull/90#issuecomment-1012346400","issue_url":"https://api.github.com/repos/robpike/ivy/issues/90","id":1012346400,"node_id":"IC_kwDOAZPgIc48Vy4g","user":{"login":"glxxyz","id":12117022,"node_id":"MDQ6VXNlcjEyMTE3MDIy","avatar_url":"https://avatars.githubusercontent.com/u/12117022?v=4","gravatar_id":"","url":"https://api.github.com/users/glxxyz","html_url":"https://github.com/glxxyz","followers_url":"https://api.github.com/users/glxxyz/followers","following_url":"https://api.github.com/users/glxxyz/following{/other_user}","gists_url":"https://api.github.com/users/glxxyz/gists{/gist_id}","starred_url":"https://api.github.com/users/glxxyz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/glxxyz/subscriptions","organizations_url":"https://api.github.com/users/glxxyz/orgs","repos_url":"https://api.github.com/users/glxxyz/repos","events_url":"https://api.github.com/users/glxxyz/events{/privacy}","received_events_url":"https://api.github.com/users/glxxyz/received_events","type":"User","site_admin":false},"created_at":"2022-01-13T17:22:17Z","updated_at":"2022-01-13T17:24:04Z","author_association":"CONTRIBUTOR","body":"Thanks for taking a look. Yes some of the transcendentals would be a significant amount of work. I had already implemented complex division and have now added log. It wasn't difficult to add the basic interaction with other number types because they can all be promoted to Complex.\r\n\r\nI switched to the 'j' operator and separator on my fork and your examples work. I'll keep refining it over there. Here are few of the tests:\r\n\r\n```\r\nj 3\r\n\t0j3\r\n\r\n2 j 4\r\n\t2j4\r\n\r\n2/4j3/9\r\n\t1/2j1/3\r\n\r\nj iota 3\r\n\t0j1 0j2 0j3\r\n\r\n2 j iota 3\r\n\t2j1 2j2 2j3\r\n\r\n1j1 2j2 3j3\r\n\t1j1 2j2 3j3\r\n\r\nsqrt -2\r\n\t0j1.41421356237\r\n\r\n2j3 / 5j7\r\n\t31/74j1/74\r\n\r\nlog 1j1\r\n\t0.34657359028j0.785398163397\r\n\r\n1j1 log 2j2\r\n\t1.32596797216j-0.738702122273\r\n\r\nphase 1j1\r\n\t0.785398163397\r\n\r\nabs 1j1\r\n\t1.41421356237\r\n\r\nfloor 1.1j2.2\r\n\t1j2\r\n```","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1012346400/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1012418172","html_url":"https://github.com/robpike/ivy/issues/82#issuecomment-1012418172","issue_url":"https://api.github.com/repos/robpike/ivy/issues/82","id":1012418172,"node_id":"IC_kwDOAZPgIc48WEZ8","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2022-01-13T18:56:06Z","updated_at":"2022-01-13T18:56:06Z","author_association":"CONTRIBUTOR","body":"After discovering the walk in parse.references (because I'd broken it with the new index code), which is almost exactly what you need for the read/write analysis, I implemented the Python approach. There's no special word needed. You can start a function with one of:\r\n\r\n x # x is global\r\n _ = x # x is global\r\n\r\nOf course even that's not necessary at all unless the function is writing blindly to x, without reading it.\r\n\r\nThe commit is https://github.com/rsc/ivy/commit/25e84e22d79f70daa8b53171614917c543cf7dcf if anyone wants to take a look. The stack changed to be a simple []value.Value, instead of a slice of maps, indexing backward from the end to get at the current function's variables. That was not strictly necessary but fell out easily.\r\n\r\nI haven't made it a PR, both because the approach is not decided and because it depends on the )save fix PR, and that seemed too confusing to have the )save fix commit appear in two different PRs.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1012418172/reactions","total_count":1,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":1},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1012422932","html_url":"https://github.com/robpike/ivy/issues/95#issuecomment-1012422932","issue_url":"https://api.github.com/repos/robpike/ivy/issues/95","id":1012422932,"node_id":"IC_kwDOAZPgIc48WFkU","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2022-01-13T19:02:32Z","updated_at":"2022-01-13T19:49:53Z","author_association":"CONTRIBUTOR","body":"Occurred to me I could look at TryAPL, which behaves differently from Ivy. So probably this is a bug?\r\n\r\nIt's weirder than I thought, too. TryAPL:\r\n\r\n```\r\n x ← 1\r\n x (x←2)\r\n2 2\r\n (x←3) x\r\n3 2\r\n```\r\n\r\nIvy:\r\n\r\n```\r\nx=1\r\n\r\nx (x=2)\r\n2 2\r\n\r\n(x=3) x\r\n3 3\r\n\r\n(x=4) x (x=5)\r\n4 5 5\r\n```\r\n\r\n\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1012422932/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1012619866","html_url":"https://github.com/robpike/ivy/pull/92#issuecomment-1012619866","issue_url":"https://api.github.com/repos/robpike/ivy/issues/92","id":1012619866,"node_id":"IC_kwDOAZPgIc48W1pa","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2022-01-13T23:45:39Z","updated_at":"2022-01-13T23:45:39Z","author_association":"OWNER","body":"Thanks. I like.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1012619866/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1012670638","html_url":"https://github.com/robpike/ivy/pull/91#issuecomment-1012670638","issue_url":"https://api.github.com/repos/robpike/ivy/issues/91","id":1012670638,"node_id":"IC_kwDOAZPgIc48XCCu","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2022-01-14T01:36:29Z","updated_at":"2022-01-14T01:36:29Z","author_association":"CONTRIBUTOR","body":"Sorry, I meant to keep those in a separate commit sent as a separate PR.\r\nThey help a bit with operations involving large boolean matrices because\r\nthey remove the allocation of Int->Value conversion by reusing an existing Value.\r\nI will pull them out separate.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1012670638/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1012715617","html_url":"https://github.com/robpike/ivy/pull/91#issuecomment-1012715617","issue_url":"https://api.github.com/repos/robpike/ivy/issues/91","id":1012715617,"node_id":"IC_kwDOAZPgIc48XNBh","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2022-01-14T03:24:27Z","updated_at":"2022-01-14T03:24:27Z","author_association":"OWNER","body":"Thanks. They deserve a comment or perhaps a clever helper function?","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1012715617/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1012944381","html_url":"https://github.com/robpike/ivy/issues/96#issuecomment-1012944381","issue_url":"https://api.github.com/repos/robpike/ivy/issues/96","id":1012944381,"node_id":"IC_kwDOAZPgIc48YE39","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2022-01-14T09:19:32Z","updated_at":"2022-01-14T09:19:32Z","author_association":"OWNER","body":"What a lovely bug. Thanks for reporting it.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1012944381/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1013433189","html_url":"https://github.com/robpike/ivy/issues/97#issuecomment-1013433189","issue_url":"https://api.github.com/repos/robpike/ivy/issues/97","id":1013433189,"node_id":"IC_kwDOAZPgIc48Z8Nl","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2022-01-14T19:55:58Z","updated_at":"2022-01-14T19:55:58Z","author_association":"OWNER","body":"The answers seem reasonable to me. There are other valid interpretations of logs base 1, but ivy's is as reasonable as the others.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1013433189/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1013434167","html_url":"https://github.com/robpike/ivy/issues/98#issuecomment-1013434167","issue_url":"https://api.github.com/repos/robpike/ivy/issues/98","id":1013434167,"node_id":"IC_kwDOAZPgIc48Z8c3","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2022-01-14T19:57:36Z","updated_at":"2022-01-14T19:57:36Z","author_association":"OWNER","body":"Good question. I haven't thought about infinities and other funny values like negative zero; I've just called math/big and handed back the result. But it's worth doing, and that panic isn't good.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1013434167/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1013435230","html_url":"https://github.com/robpike/ivy/issues/98#issuecomment-1013435230","issue_url":"https://api.github.com/repos/robpike/ivy/issues/98","id":1013435230,"node_id":"IC_kwDOAZPgIc48Z8te","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2022-01-14T19:59:13Z","updated_at":"2022-01-14T19:59:13Z","author_association":"OWNER","body":"Note to self: math/big exports ErrNan, and could recognize it.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1013435230/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1013885881","html_url":"https://github.com/robpike/ivy/pull/91#issuecomment-1013885881","issue_url":"https://api.github.com/repos/robpike/ivy/issues/91","id":1013885881,"node_id":"IC_kwDOAZPgIc48bqu5","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2022-01-16T14:26:15Z","updated_at":"2022-01-16T14:26:15Z","author_association":"CONTRIBUTOR","body":"I've removed the Value allocation optimizations and will send them separately once I have more careful measurements.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1013885881/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1014816851","html_url":"https://github.com/robpike/ivy/issues/100#issuecomment-1014816851","issue_url":"https://api.github.com/repos/robpike/ivy/issues/100","id":1014816851,"node_id":"IC_kwDOAZPgIc48fOBT","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2022-01-17T18:58:31Z","updated_at":"2022-01-17T18:58:31Z","author_association":"OWNER","body":"This is related to https://github.com/robpike/ivy/issues/69, the lack of a way to force an operator on a vector to run an element at a time.\r\n\r\nIn the meantime, you can write a recursive loop:\r\n\r\n```\r\nop pal x =\r\n\t(rho x) <= 1: (rot t) *.== t = '%d' text x\r\n\t(pal x[1]), pal 1 drop x\r\n\r\n\r\npal 1\r\n1\r\n\r\npal 234\r\n0\r\n\r\npal 202\r\n1\r\n\r\npal 202 301\r\n1 0\r\n\r\n```\r\n\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1014816851/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1014833245","html_url":"https://github.com/robpike/ivy/issues/100#issuecomment-1014833245","issue_url":"https://api.github.com/repos/robpike/ivy/issues/100","id":1014833245,"node_id":"IC_kwDOAZPgIc48fSBd","user":{"login":"hagna","id":216688,"node_id":"MDQ6VXNlcjIxNjY4OA==","avatar_url":"https://avatars.githubusercontent.com/u/216688?v=4","gravatar_id":"","url":"https://api.github.com/users/hagna","html_url":"https://github.com/hagna","followers_url":"https://api.github.com/users/hagna/followers","following_url":"https://api.github.com/users/hagna/following{/other_user}","gists_url":"https://api.github.com/users/hagna/gists{/gist_id}","starred_url":"https://api.github.com/users/hagna/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hagna/subscriptions","organizations_url":"https://api.github.com/users/hagna/orgs","repos_url":"https://api.github.com/users/hagna/repos","events_url":"https://api.github.com/users/hagna/events{/privacy}","received_events_url":"https://api.github.com/users/hagna/received_events","type":"User","site_admin":false},"created_at":"2022-01-17T19:25:57Z","updated_at":"2022-01-17T19:25:57Z","author_association":"NONE","body":"Oh nice!\r\n\r\nOh right @rsc mentions \"tail recursion\" in #69.\r\n\r\nIn light of this personal lesson and #69, I'll close.\r\n\r\nThanks","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1014833245/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1015832024","html_url":"https://github.com/robpike/ivy/pull/101#issuecomment-1015832024","issue_url":"https://api.github.com/repos/robpike/ivy/issues/101","id":1015832024,"node_id":"IC_kwDOAZPgIc48jF3Y","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2022-01-18T21:04:22Z","updated_at":"2022-01-18T21:04:22Z","author_association":"OWNER","body":"The README says\r\n\r\nTo be built, ivy requires Go 1.17.\r\n\r\nso it is documented not to work 1.16. And there are plans for other things in the code that will depend on 1.17.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1015832024/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1019350895","html_url":"https://github.com/robpike/ivy/issues/103#issuecomment-1019350895","issue_url":"https://api.github.com/repos/robpike/ivy/issues/103","id":1019350895,"node_id":"IC_kwDOAZPgIc48wg9v","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2022-01-22T20:15:38Z","updated_at":"2022-01-22T20:15:38Z","author_association":"CONTRIBUTOR","body":"Fixed in #104, thanks.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1019350895/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1020752547","html_url":"https://github.com/robpike/ivy/pull/105#issuecomment-1020752547","issue_url":"https://api.github.com/repos/robpike/ivy/issues/105","id":1020752547,"node_id":"IC_kwDOAZPgIc4813Kj","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2022-01-25T02:40:34Z","updated_at":"2022-01-25T02:40:34Z","author_association":"CONTRIBUTOR","body":"This still needs docs, and the exact code details will depend on the fix for #95, because the read/write checker should match the order of evaluation at run time. But here it is as a PR for now.\r\n\r\nWhere would be a good place to document this behavior?\r\n\r\n\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1020752547/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1020753128","html_url":"https://github.com/robpike/ivy/issues/97#issuecomment-1020753128","issue_url":"https://api.github.com/repos/robpike/ivy/issues/97","id":1020753128,"node_id":"IC_kwDOAZPgIc4813To","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2022-01-25T02:41:59Z","updated_at":"2022-01-25T02:41:59Z","author_association":"CONTRIBUTOR","body":"I agree about these being reasonable answers.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1020753128/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1020764523","html_url":"https://github.com/robpike/ivy/pull/105#issuecomment-1020764523","issue_url":"https://api.github.com/repos/robpike/ivy/issues/105","id":1020764523,"node_id":"IC_kwDOAZPgIc4816Fr","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2022-01-25T03:07:18Z","updated_at":"2022-01-25T03:07:18Z","author_association":"OWNER","body":"I landed the fix to #95, which was trivial. Documentation for the behavior here should go in doc.go in the section on ops (\")help ops\"). The final paragraph needs an update - it even mentions a possible change this CL addresses.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1020764523/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1021225282","html_url":"https://github.com/robpike/ivy/pull/105#issuecomment-1021225282","issue_url":"https://api.github.com/repos/robpike/ivy/issues/105","id":1021225282,"node_id":"IC_kwDOAZPgIc483qlC","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2022-01-25T14:15:35Z","updated_at":"2022-01-25T14:15:35Z","author_association":"CONTRIBUTOR","body":"Applied all suggestions, added docs.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1021225282/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1025222606","html_url":"https://github.com/robpike/ivy/issues/106#issuecomment-1025222606","issue_url":"https://api.github.com/repos/robpike/ivy/issues/106","id":1025222606,"node_id":"IC_kwDOAZPgIc49G6fO","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2022-01-30T20:20:03Z","updated_at":"2022-01-30T20:20:03Z","author_association":"OWNER","body":"In ivy, it's sufficient to say\r\n\r\nx = 0\r\n\r\nto free up the variable name x and use it as an operator. Given that, I'm not sure an erase helper is necessary.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1025222606/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}]165 54584 GET https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=8&sort=updated HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:50 GMT Etag: W/"844b7c1e2ed9df2fc20fc2ee58bb9a31c77d92e91a23fa054952d0f38d501274" Link: <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=7&sort=updated>; rel="prev", <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=9&sort=updated>; rel="next", <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=11&sort=updated>; rel="last", <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=1&sort=updated>; rel="first" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EBBF8:3353D7:665E33B1 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4990 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 10 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1030755195","html_url":"https://github.com/robpike/ivy/pull/90#issuecomment-1030755195","issue_url":"https://api.github.com/repos/robpike/ivy/issues/90","id":1030755195,"node_id":"IC_kwDOAZPgIc49cBN7","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2022-02-06T05:25:14Z","updated_at":"2022-02-06T05:25:14Z","author_association":"OWNER","body":"You triggered me making this change myself. I decided it would be fun. I didn't borrow or even look at your code, as I really wanted the joy of doing it myself. Hope that's OK.\r\nI still need to do log and non-integer power, as well as the arctrigs and hyperbolics, but the foundations are there.\r\nI also fixed a ton of bugs this exposed that were already there.\r\n\r\nThanks for suggesting it.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1030755195/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1042328421","html_url":"https://github.com/robpike/ivy/issues/108#issuecomment-1042328421","issue_url":"https://api.github.com/repos/robpike/ivy/issues/108","id":1042328421,"node_id":"IC_kwDOAZPgIc4-IKtl","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2022-02-16T21:30:14Z","updated_at":"2022-02-16T21:31:31Z","author_association":"OWNER","body":"I will investigate. It's an old bug.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1042328421/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1068784917","html_url":"https://github.com/robpike/ivy/issues/110#issuecomment-1068784917","issue_url":"https://api.github.com/repos/robpike/ivy/issues/110","id":1068784917,"node_id":"IC_kwDOAZPgIc4_tF0V","user":{"login":"wgrr","id":16732610,"node_id":"MDQ6VXNlcjE2NzMyNjEw","avatar_url":"https://avatars.githubusercontent.com/u/16732610?v=4","gravatar_id":"","url":"https://api.github.com/users/wgrr","html_url":"https://github.com/wgrr","followers_url":"https://api.github.com/users/wgrr/followers","following_url":"https://api.github.com/users/wgrr/following{/other_user}","gists_url":"https://api.github.com/users/wgrr/gists{/gist_id}","starred_url":"https://api.github.com/users/wgrr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wgrr/subscriptions","organizations_url":"https://api.github.com/users/wgrr/orgs","repos_url":"https://api.github.com/users/wgrr/repos","events_url":"https://api.github.com/users/wgrr/events{/privacy}","received_events_url":"https://api.github.com/users/wgrr/received_events","type":"User","site_admin":false},"created_at":"2022-03-16T06:33:54Z","updated_at":"2022-03-16T06:33:54Z","author_association":"CONTRIBUTOR","body":"that seens to be the case, with this quick change the above input yields correctly 100\r\n\r\n```patch\r\ndiff --git a/scan/scan.go b/scan/scan.go\r\nindex e63bded..6bd6d6d 100644\r\n--- a/scan/scan.go\r\n+++ b/scan/scan.go\r\n@@ -492,7 +492,7 @@ func (l *Scanner) scanNumber(followingSlashOK, followingJOK bool) bool {\r\n \t\t// We can't set it to 8 in case it's a leading-0 float like 0.69 or 09e4.\r\n \t}\r\n \tl.acceptRun(digits)\r\n-\tif l.accept(\".\") {\r\n+\tif l.accept(\".\") || l.accept(\"_\") {\r\n \t\tl.acceptRun(digits)\r\n \t}\r\n \tif l.accept(\"eE\") {\r\n```\r\n\r\nmy question is, @robpike you think ivy should use the number syntax of go1.13 or keep the current and replace strconv.ParseInt ?","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1068784917/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1071933385","html_url":"https://github.com/robpike/ivy/issues/110#issuecomment-1071933385","issue_url":"https://api.github.com/repos/robpike/ivy/issues/110","id":1071933385,"node_id":"IC_kwDOAZPgIc4_5GfJ","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2022-03-18T01:30:43Z","updated_at":"2022-03-18T01:30:43Z","author_association":"OWNER","body":"I might be talked into it but I don't think it's very important to add this ability. It's actually rather fiddly to do this right - your change isn't enough. The right fix would be to add the underscore to the constants used in digitsForBase. It's probably OK not to worry about all the corner cases but let the strconv routines do the heavy lifting, which is what's done now anyway.\r\n\r\nStill, does this matter?\r\n\r\nWhat bothers me more is the lack of an error in your example. That's a problem.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1071933385/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1071938284","html_url":"https://github.com/robpike/ivy/issues/110#issuecomment-1071938284","issue_url":"https://api.github.com/repos/robpike/ivy/issues/110","id":1071938284,"node_id":"IC_kwDOAZPgIc4_5Hrs","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2022-03-18T01:41:04Z","updated_at":"2022-03-18T01:41:04Z","author_association":"OWNER","body":"I found and fixed the scanner problem in commit be03b1486a4aed05119fc8f4f1e6a7625082e311","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1071938284/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1072380316","html_url":"https://github.com/robpike/ivy/issues/110#issuecomment-1072380316","issue_url":"https://api.github.com/repos/robpike/ivy/issues/110","id":1072380316,"node_id":"IC_kwDOAZPgIc4_6zmc","user":{"login":"wgrr","id":16732610,"node_id":"MDQ6VXNlcjE2NzMyNjEw","avatar_url":"https://avatars.githubusercontent.com/u/16732610?v=4","gravatar_id":"","url":"https://api.github.com/users/wgrr","html_url":"https://github.com/wgrr","followers_url":"https://api.github.com/users/wgrr/followers","following_url":"https://api.github.com/users/wgrr/following{/other_user}","gists_url":"https://api.github.com/users/wgrr/gists{/gist_id}","starred_url":"https://api.github.com/users/wgrr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wgrr/subscriptions","organizations_url":"https://api.github.com/users/wgrr/orgs","repos_url":"https://api.github.com/users/wgrr/repos","events_url":"https://api.github.com/users/wgrr/events{/privacy}","received_events_url":"https://api.github.com/users/wgrr/received_events","type":"User","site_admin":false},"created_at":"2022-03-18T12:50:37Z","updated_at":"2022-03-18T12:50:37Z","author_association":"CONTRIBUTOR","body":"the issue for me was the lack of an error too, i thought strconv.ParseInt was the problem because i had a working build from go 1.11 (yeilding an error) and go1.17 doesn't, apparently i was wrong. be03b14 fixes the problem.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1072380316/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1120610743","html_url":"https://github.com/robpike/ivy/issues/28#issuecomment-1120610743","issue_url":"https://api.github.com/repos/robpike/ivy/issues/28","id":1120610743,"node_id":"IC_kwDOAZPgIc5Cyym3","user":{"login":"fumin","id":765222,"node_id":"MDQ6VXNlcjc2NTIyMg==","avatar_url":"https://avatars.githubusercontent.com/u/765222?v=4","gravatar_id":"","url":"https://api.github.com/users/fumin","html_url":"https://github.com/fumin","followers_url":"https://api.github.com/users/fumin/followers","following_url":"https://api.github.com/users/fumin/following{/other_user}","gists_url":"https://api.github.com/users/fumin/gists{/gist_id}","starred_url":"https://api.github.com/users/fumin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fumin/subscriptions","organizations_url":"https://api.github.com/users/fumin/orgs","repos_url":"https://api.github.com/users/fumin/repos","events_url":"https://api.github.com/users/fumin/events{/privacy}","received_events_url":"https://api.github.com/users/fumin/received_events","type":"User","site_admin":false},"created_at":"2022-05-09T03:52:31Z","updated_at":"2022-05-09T03:52:31Z","author_association":"NONE","body":"Could we not panic in [`value.Errorf`](https://github.com/robpike/ivy/blob/v0.2.7/value/value.go#L54)?\r\nIn particular, [`value.index`](https://github.com/robpike/ivy/blob/v0.2.7/value/index.go#L47) already does bounds checking, so repanicking seems wierd.\r\n\r\nBy the way, sincere gratitude for creating this wonderful piece of software!!\r\n<details>\r\n <summary>A bit of background why I prefer not panicking</summary>\r\n \r\n I actually want to use ivy as a script language embedded in a Go programme.\r\n The Go programme is doing image manipulation on [Gerber](https://en.wikipedia.org/wiki/Gerber_format) images.\r\n In particular, it is trying to match parts of an image to a golden image.\r\n Due to the fragmentation of the PCB industry, there are myriad ways how our suppliers\r\n describe their manufactured parts.\r\n I can't handle all these different ways, so I am thinking of letting operators figure out the image mapping with their own eyeballs, and script it out to the programme.\r\n You may ask why not simply let operators input three numbers denoting the X, Y translations and theta for rotation.\r\n This is because in order to increase mechanical efficiency, some parts may contain multiple heads and work on many units simulatenously.\r\n In other words, the image mapping is something like:\r\n ```\r\n op panel p = \r\n p[0] > 0 && p[1] > 0: p[0]*cos(theta) + p[1]*sin(theta)\r\n p[0] < 0 && p[1] > 0: ...\r\n ... \r\n ```\r\n\r\n I was initially thinking of using https://github.com/pkujhd/goloader to allow operators to write in Go, but hacking Go's linker seems to fragile.\r\n Then I thought of `GOARCH=wasm`, but moving slices in and out of wasm is a pain in the ass.\r\n Moreover, `GOARCH=wasm` in it's current state is not much faster than an interpreter.\r\n In the end, I found ivy, which seems suited for these kinds of mathematical tasks.\r\n However, if ivy's `value.Errorf` panics, I would need to `recover` which feels like I am commiting a sin.\r\n</details>","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1120610743/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1120727724","html_url":"https://github.com/robpike/ivy/issues/28#issuecomment-1120727724","issue_url":"https://api.github.com/repos/robpike/ivy/issues/28","id":1120727724,"node_id":"IC_kwDOAZPgIc5CzPKs","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2022-05-09T07:14:30Z","updated_at":"2022-05-09T07:14:30Z","author_association":"OWNER","body":"`value.Errorf` panics because that is how the interpreter does error recovery. it's an easy way to do exception handling. Otherwise the control flow from deep in the interpreter during a calculation would require threading errors through a vast collection of code.\r\n\r\nIt's common for language implementations and related systems to work like this.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1120727724/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1120686350","html_url":"https://github.com/robpike/ivy/issues/28#issuecomment-1120686350","issue_url":"https://api.github.com/repos/robpike/ivy/issues/28","id":1120686350,"node_id":"IC_kwDOAZPgIc5CzFEO","user":{"login":"fumin","id":765222,"node_id":"MDQ6VXNlcjc2NTIyMg==","avatar_url":"https://avatars.githubusercontent.com/u/765222?v=4","gravatar_id":"","url":"https://api.github.com/users/fumin","html_url":"https://github.com/fumin","followers_url":"https://api.github.com/users/fumin/followers","following_url":"https://api.github.com/users/fumin/following{/other_user}","gists_url":"https://api.github.com/users/fumin/gists{/gist_id}","starred_url":"https://api.github.com/users/fumin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fumin/subscriptions","organizations_url":"https://api.github.com/users/fumin/orgs","repos_url":"https://api.github.com/users/fumin/repos","events_url":"https://api.github.com/users/fumin/events{/privacy}","received_events_url":"https://api.github.com/users/fumin/received_events","type":"User","site_admin":false},"created_at":"2022-05-09T06:16:36Z","updated_at":"2022-05-09T07:24:31Z","author_association":"NONE","body":"Why does `(5 5 rho iota 25)[3 2; 1 2 3]` return the following?\r\n\r\n```\r\n11 12\r\n13 6\r\n 7 8\r\n```\r\n\r\nI was expecting\r\n\r\n```\r\n11 12 13 \r\n6 7 8\r\n```\r\n\r\nwhich is also what's returned by https://tryapl.org/ with the expression `(5 5 ⍴ ⍳ 25)[3 2; 1 2 3]`.\r\n\r\n<details>\r\n <summary>Below is my investigation</summary> \r\n\r\n```\r\n(5 5 rho iota 25)[3 2; 1]\r\n11 6\r\n\r\n(5 5 rho iota 25)[3 2; 1 2]\r\n11 12\r\n 6 7\r\n\r\n(5 5 rho iota 25)[3 2; 1 2 3]\r\n11 12\r\n13 6\r\n 7 8\r\n```\r\n</details>","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1120686350/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1120740464","html_url":"https://github.com/robpike/ivy/issues/28#issuecomment-1120740464","issue_url":"https://api.github.com/repos/robpike/ivy/issues/28","id":1120740464,"node_id":"IC_kwDOAZPgIc5CzSRw","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2022-05-09T07:25:25Z","updated_at":"2022-05-09T07:25:25Z","author_association":"OWNER","body":"Regarding the indexing example, that's the usual APL way, as you can see by trying the example on https://tryapl.org/. The vector left of the semicolon selects the first axis, while the vector on the right selects the second.\r\n\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1120740464/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1120744485","html_url":"https://github.com/robpike/ivy/issues/28#issuecomment-1120744485","issue_url":"https://api.github.com/repos/robpike/ivy/issues/28","id":1120744485,"node_id":"IC_kwDOAZPgIc5CzTQl","user":{"login":"fumin","id":765222,"node_id":"MDQ6VXNlcjc2NTIyMg==","avatar_url":"https://avatars.githubusercontent.com/u/765222?v=4","gravatar_id":"","url":"https://api.github.com/users/fumin","html_url":"https://github.com/fumin","followers_url":"https://api.github.com/users/fumin/followers","following_url":"https://api.github.com/users/fumin/following{/other_user}","gists_url":"https://api.github.com/users/fumin/gists{/gist_id}","starred_url":"https://api.github.com/users/fumin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fumin/subscriptions","organizations_url":"https://api.github.com/users/fumin/orgs","repos_url":"https://api.github.com/users/fumin/repos","events_url":"https://api.github.com/users/fumin/events{/privacy}","received_events_url":"https://api.github.com/users/fumin/received_events","type":"User","site_admin":false},"created_at":"2022-05-09T07:30:00Z","updated_at":"2022-05-09T07:30:00Z","author_association":"NONE","body":"@robpike thanks for your explanation and for sharing your experience in language and systems implementation. I have few experience in language and systems implementation, so it's enlightening to learn that `panic` and `recover` can be useful in these circumstances.\r\n\r\nI tried the expression `(5 5 ⍴ ⍳ 25)[3 2; 1 2 3]` in https://tryapl.org/ , and it returned\r\n```\r\n11 12 13\r\n 6 7 8\r\n```\r\n\r\nI guess it makes sense for ivy to return this, too?","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1120744485/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1120839010","html_url":"https://github.com/robpike/ivy/issues/28#issuecomment-1120839010","issue_url":"https://api.github.com/repos/robpike/ivy/issues/28","id":1120839010,"node_id":"IC_kwDOAZPgIc5CzqVi","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2022-05-09T09:04:06Z","updated_at":"2022-05-09T09:04:06Z","author_association":"OWNER","body":"Oh, fair point. I misread your issue.\r\n\r\n@rsc did the rewrite that got us here so over to him.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1120839010/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1121095622","html_url":"https://github.com/robpike/ivy/issues/28#issuecomment-1121095622","issue_url":"https://api.github.com/repos/robpike/ivy/issues/28","id":1121095622,"node_id":"IC_kwDOAZPgIc5C0o_G","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2022-05-09T13:21:23Z","updated_at":"2022-05-09T13:21:23Z","author_association":"CONTRIBUTOR","body":"@fumin @robpike I opened #111 for the indexing question.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1121095622/reactions","total_count":1,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":1,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1121097124","html_url":"https://github.com/robpike/ivy/issues/111#issuecomment-1121097124","issue_url":"https://api.github.com/repos/robpike/ivy/issues/111","id":1121097124,"node_id":"IC_kwDOAZPgIc5C0pWk","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2022-05-09T13:22:43Z","updated_at":"2022-05-09T13:22:43Z","author_association":"CONTRIBUTOR","body":"Definitely a bug. Will look into a fix.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1121097124/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1121126906","html_url":"https://github.com/robpike/ivy/issues/111#issuecomment-1121126906","issue_url":"https://api.github.com/repos/robpike/ivy/issues/111","id":1121126906,"node_id":"IC_kwDOAZPgIc5C0wn6","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2022-05-09T13:48:18Z","updated_at":"2022-05-09T13:48:18Z","author_association":"CONTRIBUTOR","body":"Sent #112 with a fix.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1121126906/reactions","total_count":1,"+1":0,"-1":0,"laugh":0,"hooray":1,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1121722169","html_url":"https://github.com/robpike/ivy/issues/111#issuecomment-1121722169","issue_url":"https://api.github.com/repos/robpike/ivy/issues/111","id":1121722169,"node_id":"IC_kwDOAZPgIc5C3B85","user":{"login":"fumin","id":765222,"node_id":"MDQ6VXNlcjc2NTIyMg==","avatar_url":"https://avatars.githubusercontent.com/u/765222?v=4","gravatar_id":"","url":"https://api.github.com/users/fumin","html_url":"https://github.com/fumin","followers_url":"https://api.github.com/users/fumin/followers","following_url":"https://api.github.com/users/fumin/following{/other_user}","gists_url":"https://api.github.com/users/fumin/gists{/gist_id}","starred_url":"https://api.github.com/users/fumin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fumin/subscriptions","organizations_url":"https://api.github.com/users/fumin/orgs","repos_url":"https://api.github.com/users/fumin/repos","events_url":"https://api.github.com/users/fumin/events{/privacy}","received_events_url":"https://api.github.com/users/fumin/received_events","type":"User","site_admin":false},"created_at":"2022-05-10T00:38:33Z","updated_at":"2022-05-10T00:38:33Z","author_association":"NONE","body":"Thanks @rsc , I confirm #112 works for all the variants I can think of.\r\nIt's also good to see the internals of ivy in this change in action, enlightening! : )","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1121722169/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1160244527","html_url":"https://github.com/robpike/ivy/issues/114#issuecomment-1160244527","issue_url":"https://api.github.com/repos/robpike/ivy/issues/114","id":1160244527,"node_id":"IC_kwDOAZPgIc5FJ-0v","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2022-06-20T10:07:46Z","updated_at":"2022-06-20T10:07:46Z","author_association":"OWNER","body":"You are in base 0, the default, which means that 0x is a hex prefix and 0 is an octal prefix. 08 is not an octal number.\r\n\r\n```\r\n\r\n\r\n% ivy\r\n0 60 decode 1 09\r\nbad number syntax: 09\r\n\r\n08 \r\nbad number syntax: 08\r\n\r\n)base \r\nibase\t0\r\nobase\t0\r\n\r\n)base 10\r\n\r\n08\r\n8\r\n\r\n0 60 decode 1 09\r\n69\r\n\r\n```\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1160244527/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1160264903","html_url":"https://github.com/robpike/ivy/issues/114#issuecomment-1160264903","issue_url":"https://api.github.com/repos/robpike/ivy/issues/114","id":1160264903,"node_id":"IC_kwDOAZPgIc5FKDzH","user":{"login":"sylr","id":153052,"node_id":"MDQ6VXNlcjE1MzA1Mg==","avatar_url":"https://avatars.githubusercontent.com/u/153052?v=4","gravatar_id":"","url":"https://api.github.com/users/sylr","html_url":"https://github.com/sylr","followers_url":"https://api.github.com/users/sylr/followers","following_url":"https://api.github.com/users/sylr/following{/other_user}","gists_url":"https://api.github.com/users/sylr/gists{/gist_id}","starred_url":"https://api.github.com/users/sylr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sylr/subscriptions","organizations_url":"https://api.github.com/users/sylr/orgs","repos_url":"https://api.github.com/users/sylr/repos","events_url":"https://api.github.com/users/sylr/events{/privacy}","received_events_url":"https://api.github.com/users/sylr/received_events","type":"User","site_admin":false},"created_at":"2022-06-20T10:26:56Z","updated_at":"2022-06-20T10:26:56Z","author_association":"NONE","body":"Thanks!","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1160264903/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1263091785","html_url":"https://github.com/robpike/ivy/issues/115#issuecomment-1263091785","issue_url":"https://api.github.com/repos/robpike/ivy/issues/115","id":1263091785,"node_id":"IC_kwDOAZPgIc5LSUBJ","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2022-09-30T04:34:41Z","updated_at":"2022-09-30T04:34:41Z","author_association":"OWNER","body":"Yes, it's been removed. It wasn't practical to update it for Google's iOS guidelines. I am considering relaunching it privately, but of course it remains available as a Unix program.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1263091785/reactions","total_count":2,"+1":2,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1263113830","html_url":"https://github.com/robpike/ivy/issues/115#issuecomment-1263113830","issue_url":"https://api.github.com/repos/robpike/ivy/issues/115","id":1263113830,"node_id":"IC_kwDOAZPgIc5LSZZm","user":{"login":"tavi-vi","id":94469945,"node_id":"U_kgDOBaF_OQ","avatar_url":"https://avatars.githubusercontent.com/u/94469945?v=4","gravatar_id":"","url":"https://api.github.com/users/tavi-vi","html_url":"https://github.com/tavi-vi","followers_url":"https://api.github.com/users/tavi-vi/followers","following_url":"https://api.github.com/users/tavi-vi/following{/other_user}","gists_url":"https://api.github.com/users/tavi-vi/gists{/gist_id}","starred_url":"https://api.github.com/users/tavi-vi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tavi-vi/subscriptions","organizations_url":"https://api.github.com/users/tavi-vi/orgs","repos_url":"https://api.github.com/users/tavi-vi/repos","events_url":"https://api.github.com/users/tavi-vi/events{/privacy}","received_events_url":"https://api.github.com/users/tavi-vi/received_events","type":"User","site_admin":false},"created_at":"2022-09-30T05:18:54Z","updated_at":"2022-09-30T05:18:54Z","author_association":"NONE","body":"I appreciate the clarification!","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1263113830/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1263146055","html_url":"https://github.com/robpike/ivy/issues/115#issuecomment-1263146055","issue_url":"https://api.github.com/repos/robpike/ivy/issues/115","id":1263146055,"node_id":"IC_kwDOAZPgIc5LShRH","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2022-09-30T06:11:47Z","updated_at":"2022-09-30T06:11:47Z","author_association":"OWNER","body":"You can also build and install it on your device yourself, as I have done.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1263146055/reactions","total_count":1,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":1,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1272499251","html_url":"https://github.com/robpike/ivy/issues/116#issuecomment-1272499251","issue_url":"https://api.github.com/repos/robpike/ivy/issues/116","id":1272499251,"node_id":"IC_kwDOAZPgIc5L2Mwz","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2022-10-09T09:27:51Z","updated_at":"2022-10-09T09:27:51Z","author_association":"OWNER","body":"Use the \"go version\" command, like this:\r\n\r\n```\r\n$ go version -m ./ivy | sed 1q\r\n./ivy: devel go1.20-63d05642d4 Sun Sep 18 01:17:32 2022 +0000\r\n$ \r\n```\r\n\r\nI could add a version flag, but it's not needed.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1272499251/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1272551552","html_url":"https://github.com/robpike/ivy/issues/116#issuecomment-1272551552","issue_url":"https://api.github.com/repos/robpike/ivy/issues/116","id":1272551552,"node_id":"IC_kwDOAZPgIc5L2ZiA","user":{"login":"smasher164","id":12636891,"node_id":"MDQ6VXNlcjEyNjM2ODkx","avatar_url":"https://avatars.githubusercontent.com/u/12636891?v=4","gravatar_id":"","url":"https://api.github.com/users/smasher164","html_url":"https://github.com/smasher164","followers_url":"https://api.github.com/users/smasher164/followers","following_url":"https://api.github.com/users/smasher164/following{/other_user}","gists_url":"https://api.github.com/users/smasher164/gists{/gist_id}","starred_url":"https://api.github.com/users/smasher164/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/smasher164/subscriptions","organizations_url":"https://api.github.com/users/smasher164/orgs","repos_url":"https://api.github.com/users/smasher164/repos","events_url":"https://api.github.com/users/smasher164/events{/privacy}","received_events_url":"https://api.github.com/users/smasher164/received_events","type":"User","site_admin":false},"created_at":"2022-10-09T14:12:56Z","updated_at":"2022-10-09T14:12:56Z","author_association":"NONE","body":"Makes sense. Thanks!","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1272551552/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1333474658","html_url":"https://github.com/robpike/ivy/issues/117#issuecomment-1333474658","issue_url":"https://api.github.com/repos/robpike/ivy/issues/117","id":1333474658,"node_id":"IC_kwDOAZPgIc5PezVi","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2022-12-01T09:28:42Z","updated_at":"2022-12-01T09:28:42Z","author_association":"OWNER","body":"No, there is not. It was a deliberate decision for simplicity. It could be changed but would be a fair bit of work.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1333474658/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1334720944","html_url":"https://github.com/robpike/ivy/issues/117#issuecomment-1334720944","issue_url":"https://api.github.com/repos/robpike/ivy/issues/117","id":1334720944,"node_id":"IC_kwDOAZPgIc5Pjjmw","user":{"login":"smasher164","id":12636891,"node_id":"MDQ6VXNlcjEyNjM2ODkx","avatar_url":"https://avatars.githubusercontent.com/u/12636891?v=4","gravatar_id":"","url":"https://api.github.com/users/smasher164","html_url":"https://github.com/smasher164","followers_url":"https://api.github.com/users/smasher164/followers","following_url":"https://api.github.com/users/smasher164/following{/other_user}","gists_url":"https://api.github.com/users/smasher164/gists{/gist_id}","starred_url":"https://api.github.com/users/smasher164/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/smasher164/subscriptions","organizations_url":"https://api.github.com/users/smasher164/orgs","repos_url":"https://api.github.com/users/smasher164/repos","events_url":"https://api.github.com/users/smasher164/events{/privacy}","received_events_url":"https://api.github.com/users/smasher164/received_events","type":"User","site_admin":false},"created_at":"2022-12-02T03:36:18Z","updated_at":"2022-12-02T03:37:20Z","author_association":"NONE","body":"I see. Is there a recommendation or hack for constructing such arrays if such syntax doesn't exist? I was trying to do simple processing over an array like\r\n```\r\n[1000 2000 3000]\r\n\r\n[4000]\r\n\r\n[5000 6000]\r\n\r\n[7000 8000 9000]\r\n```\r\nyesterday for Advent of Code, but gave up since I couldn't get the input into ivy.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1334720944/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1334798357","html_url":"https://github.com/robpike/ivy/issues/117#issuecomment-1334798357","issue_url":"https://api.github.com/repos/robpike/ivy/issues/117","id":1334798357,"node_id":"IC_kwDOAZPgIc5Pj2gV","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2022-12-02T06:00:10Z","updated_at":"2022-12-02T06:00:10Z","author_association":"OWNER","body":"The engine doesn't support them, so there is no way to inject them.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1334798357/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1336115124","html_url":"https://github.com/robpike/ivy/issues/118#issuecomment-1336115124","issue_url":"https://api.github.com/repos/robpike/ivy/issues/118","id":1336115124,"node_id":"IC_kwDOAZPgIc5Po3-0","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2022-12-03T08:41:02Z","updated_at":"2022-12-03T08:41:02Z","author_association":"OWNER","body":"I could not reproduce this, but there was a non-stable sort, so I will change it to a stable sort and add a test. Please tell me if that fixes it.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1336115124/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1336116060","html_url":"https://github.com/robpike/ivy/issues/118#issuecomment-1336116060","issue_url":"https://api.github.com/repos/robpike/ivy/issues/118","id":1336116060,"node_id":"IC_kwDOAZPgIc5Po4Nc","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2022-12-03T08:48:24Z","updated_at":"2022-12-03T08:48:24Z","author_association":"OWNER","body":"Reopening until fix is confirmed","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1336116060/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1336120364","html_url":"https://github.com/robpike/ivy/issues/118#issuecomment-1336120364","issue_url":"https://api.github.com/repos/robpike/ivy/issues/118","id":1336120364,"node_id":"IC_kwDOAZPgIc5Po5Qs","user":{"login":"magical","id":175539,"node_id":"MDQ6VXNlcjE3NTUzOQ==","avatar_url":"https://avatars.githubusercontent.com/u/175539?v=4","gravatar_id":"","url":"https://api.github.com/users/magical","html_url":"https://github.com/magical","followers_url":"https://api.github.com/users/magical/followers","following_url":"https://api.github.com/users/magical/following{/other_user}","gists_url":"https://api.github.com/users/magical/gists{/gist_id}","starred_url":"https://api.github.com/users/magical/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/magical/subscriptions","organizations_url":"https://api.github.com/users/magical/orgs","repos_url":"https://api.github.com/users/magical/repos","events_url":"https://api.github.com/users/magical/events{/privacy}","received_events_url":"https://api.github.com/users/magical/received_events","type":"User","site_admin":false},"created_at":"2022-12-03T09:16:04Z","updated_at":"2022-12-03T09:16:04Z","author_association":"NONE","body":"Yep, that seems to fix it. Thanks!\r\n\r\nIf it helps, i built ivy with go1.17.6. I think the sorting algorithm has changed since then; that might be why you couldn't reproduce.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1336120364/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1336124435","html_url":"https://github.com/robpike/ivy/issues/118#issuecomment-1336124435","issue_url":"https://api.github.com/repos/robpike/ivy/issues/118","id":1336124435,"node_id":"IC_kwDOAZPgIc5Po6QT","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2022-12-03T09:45:49Z","updated_at":"2022-12-03T09:45:49Z","author_association":"OWNER","body":"Yes, I think it has. A while back a similar issue in ivy was fixed the same way, but I missed this one.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1336124435/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}]165 58604 GET https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=9&sort=updated HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:50 GMT Etag: W/"89f39fe752b86f09e4fda951e3c45045d7f3d0e6e0d4976a050104e9f97454e9" Link: <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=8&sort=updated>; rel="prev", <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=10&sort=updated>; rel="next", <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=11&sort=updated>; rel="last", <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=1&sort=updated>; rel="first" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EBCEC:335582:665E33B2 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4989 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 11 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1355275314","html_url":"https://github.com/robpike/ivy/issues/117#issuecomment-1355275314","issue_url":"https://api.github.com/repos/robpike/ivy/issues/117","id":1355275314,"node_id":"IC_kwDOAZPgIc5Qx9wy","user":{"login":"mykhal","id":5636433,"node_id":"MDQ6VXNlcjU2MzY0MzM=","avatar_url":"https://avatars.githubusercontent.com/u/5636433?v=4","gravatar_id":"","url":"https://api.github.com/users/mykhal","html_url":"https://github.com/mykhal","followers_url":"https://api.github.com/users/mykhal/followers","following_url":"https://api.github.com/users/mykhal/following{/other_user}","gists_url":"https://api.github.com/users/mykhal/gists{/gist_id}","starred_url":"https://api.github.com/users/mykhal/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mykhal/subscriptions","organizations_url":"https://api.github.com/users/mykhal/orgs","repos_url":"https://api.github.com/users/mykhal/repos","events_url":"https://api.github.com/users/mykhal/events{/privacy}","received_events_url":"https://api.github.com/users/mykhal/received_events","type":"User","site_admin":false},"created_at":"2022-12-16T17:31:40Z","updated_at":"2022-12-19T14:30:23Z","author_association":"NONE","body":"Sometimes, vectors inside vector is obtained, looking flat at first sight:\r\n```\r\nx = ,\\iota 3\r\n\r\nx\r\nresult: 1 1 2 1 2 3\r\n\r\nrho x\r\nresult: 3\r\n\r\nx[1]\r\nresult: 1\r\n\r\nx[2]\r\nresult: 1 2\r\n\r\nx[3]\r\nresult: 1 2 3\r\n```\r\n\r\n.. So if these cannot be constructed literally, shouldn't the result be flat and/or *\"Everything in ivy can be placed into a vector\"* statement from the demo be corrected?\r\n\r\nUPDATE: the same result [here](https://github.com/robpike/ivy/issues/69#issuecomment-991450079) considered an error","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1355275314/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1362260937","html_url":"https://github.com/robpike/ivy/issues/120#issuecomment-1362260937","issue_url":"https://api.github.com/repos/robpike/ivy/issues/120","id":1362260937,"node_id":"IC_kwDOAZPgIc5RMnPJ","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2022-12-22T00:44:33Z","updated_at":"2022-12-22T00:44:33Z","author_association":"OWNER","body":"It is indeed the scanner. 1/2 is tokenized as a single rational value. Yes, it's clumsy sometimes, but spaces help. Not sure there's really much that can be done, and spaces are easy to use and add clarity. There is no set goal here of minimum keystrokes, unlike the culture of APL.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1362260937/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1362507693","html_url":"https://github.com/robpike/ivy/issues/120#issuecomment-1362507693","issue_url":"https://api.github.com/repos/robpike/ivy/issues/120","id":1362507693,"node_id":"IC_kwDOAZPgIc5RNjet","user":{"login":"kpym","id":3142701,"node_id":"MDQ6VXNlcjMxNDI3MDE=","avatar_url":"https://avatars.githubusercontent.com/u/3142701?v=4","gravatar_id":"","url":"https://api.github.com/users/kpym","html_url":"https://github.com/kpym","followers_url":"https://api.github.com/users/kpym/followers","following_url":"https://api.github.com/users/kpym/following{/other_user}","gists_url":"https://api.github.com/users/kpym/gists{/gist_id}","starred_url":"https://api.github.com/users/kpym/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kpym/subscriptions","organizations_url":"https://api.github.com/users/kpym/orgs","repos_url":"https://api.github.com/users/kpym/repos","events_url":"https://api.github.com/users/kpym/events{/privacy}","received_events_url":"https://api.github.com/users/kpym/received_events","type":"User","site_admin":false},"created_at":"2022-12-22T07:33:55Z","updated_at":"2022-12-22T07:33:55Z","author_association":"NONE","body":"> There is no set goal here of minimum keystrokes, unlike the culture of APL.\r\n\r\nIf this is the case, we don't need the fraction separator because we can write vectors like this `1 (2/3) 4 ...` and all ambiguity is removed. A fraction will just be the result of a division and all precedence rules will be respected. \r\n\r\nAfter thinking about it last night, my proposal is more of a compromise between the current behavior (scanning for fractions first and avoiding parentheses in vectors) and the more lengthy to type, but unambiguous, case without fraction separators. \r\n\r\nIMO, we can consider `/` as a fraction separator **only** in a vector of length greater than 1, not a simple number. In all other cases consider it as a division.\r\n\r\nExamples : \r\n- `2/3 + 4` is considered as `2/(3+4)` in the same way as `2*3+4` is `14` and not `10`;\r\n- `1 2/3 + 4` is considered as `(1 2/3) + 4` as it is actually, because `2/3` is part of the vector `1 2/3`;\r\n- `1/2 3 + 4` is considered as `(1/2 3) + 4` as it is actually, because `1/2` is part of the vector `1/2 3`;\r\n- `1/2/3` have two divisions and not a fraction, and is the same as `//1 2 3`; \r\n\r\nThis is a simple idea and there are probably some corner cases, or the way the scanner works, that make this change impossible. And of course there is the backwards compatibility. For all these reasons I can consider my suggestion as a purely theoretical proposal :)\r\n\r\n> Yes, it's clumsy sometimes, but spaces help.\r\n\r\nOh, I didn't know that `1 2/3` is not the same as `1 2/ 3`. Is this documented somewhere?\r\n\r\nAnother possibility might be just to limit fractions to `\\d+/\\d+[^/]` ? In this way in ambiguous expressions like `1/2/3/4` there will be no fraction separators, only divisions, and putting spaces inside will not change the meaning.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1362507693/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1362550521","html_url":"https://github.com/robpike/ivy/issues/120#issuecomment-1362550521","issue_url":"https://api.github.com/repos/robpike/ivy/issues/120","id":1362550521,"node_id":"IC_kwDOAZPgIc5RNt75","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2022-12-22T08:28:17Z","updated_at":"2022-12-22T08:28:17Z","author_association":"OWNER","body":"It's documented in the help, or go doc:\r\n\r\nAs a special but important case, note that 1/3, with no intervening\r\nspaces, is a single rational number, not the expression 1 divided\r\nby 3. This can affect precedence: 3/6*4 is 2 while 3 / 6*4 is 1/8\r\nsince the spacing turns the / into a division operator. Use parentheses\r\nor spaces to disambiguate: 3/(6*4) or 3 /6*4.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1362550521/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1362603393","html_url":"https://github.com/robpike/ivy/issues/120#issuecomment-1362603393","issue_url":"https://api.github.com/repos/robpike/ivy/issues/120","id":1362603393,"node_id":"IC_kwDOAZPgIc5RN62B","user":{"login":"kpym","id":3142701,"node_id":"MDQ6VXNlcjMxNDI3MDE=","avatar_url":"https://avatars.githubusercontent.com/u/3142701?v=4","gravatar_id":"","url":"https://api.github.com/users/kpym","html_url":"https://github.com/kpym","followers_url":"https://api.github.com/users/kpym/followers","following_url":"https://api.github.com/users/kpym/following{/other_user}","gists_url":"https://api.github.com/users/kpym/gists{/gist_id}","starred_url":"https://api.github.com/users/kpym/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kpym/subscriptions","organizations_url":"https://api.github.com/users/kpym/orgs","repos_url":"https://api.github.com/users/kpym/repos","events_url":"https://api.github.com/users/kpym/events{/privacy}","received_events_url":"https://api.github.com/users/kpym/received_events","type":"User","site_admin":false},"created_at":"2022-12-22T09:22:31Z","updated_at":"2022-12-22T09:22:31Z","author_association":"NONE","body":"> It's documented in the help, or go doc\r\n\r\nThank you, I had missed this point.\r\n\r\nI'm closing this issue (which is not an issue), but one last thought: maybe in cases like `1/2/3` there should be a warning \"ambiguous expression: add spaces to clarify what is a fraction and what is a division\", because I don't see in the documentation why it should be `1/2 / 3` and not `1 / 2/3`. It seems to be a simple consequence of the way the scanner works (from left to right). ","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1362603393/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1362630482","html_url":"https://github.com/robpike/ivy/issues/120#issuecomment-1362630482","issue_url":"https://api.github.com/repos/robpike/ivy/issues/120","id":1362630482,"node_id":"IC_kwDOAZPgIc5ROBdS","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2022-12-22T09:50:10Z","updated_at":"2022-12-22T09:50:10Z","author_association":"OWNER","body":"One easy possibility is to add a config option to disable aggressive scanning of fractions, as that behavior is only important when one is doing rationals, which although interesting is unusual for most purposes.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1362630482/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1362751325","html_url":"https://github.com/robpike/ivy/issues/121#issuecomment-1362751325","issue_url":"https://api.github.com/repos/robpike/ivy/issues/121","id":1362751325,"node_id":"IC_kwDOAZPgIc5ROe9d","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2022-12-22T11:54:15Z","updated_at":"2022-12-22T11:54:15Z","author_association":"OWNER","body":"I read the issues, so this works, but I have opened the discussions as well.\r\n\r\nThe user community is pretty small, so don't expect much discussing. And also ivy was made as a demo of some ideas, not as a serious attempt at a full programming language. It's just not built that way.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1362751325/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1362793290","html_url":"https://github.com/robpike/ivy/issues/121#issuecomment-1362793290","issue_url":"https://api.github.com/repos/robpike/ivy/issues/121","id":1362793290,"node_id":"IC_kwDOAZPgIc5ROpNK","user":{"login":"kpym","id":3142701,"node_id":"MDQ6VXNlcjMxNDI3MDE=","avatar_url":"https://avatars.githubusercontent.com/u/3142701?v=4","gravatar_id":"","url":"https://api.github.com/users/kpym","html_url":"https://github.com/kpym","followers_url":"https://api.github.com/users/kpym/followers","following_url":"https://api.github.com/users/kpym/following{/other_user}","gists_url":"https://api.github.com/users/kpym/gists{/gist_id}","starred_url":"https://api.github.com/users/kpym/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kpym/subscriptions","organizations_url":"https://api.github.com/users/kpym/orgs","repos_url":"https://api.github.com/users/kpym/repos","events_url":"https://api.github.com/users/kpym/events{/privacy}","received_events_url":"https://api.github.com/users/kpym/received_events","type":"User","site_admin":false},"created_at":"2022-12-22T12:41:50Z","updated_at":"2022-12-22T12:41:50Z","author_association":"NONE","body":"Thanks !","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1362793290/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1362801104","html_url":"https://github.com/robpike/ivy/issues/28#issuecomment-1362801104","issue_url":"https://api.github.com/repos/robpike/ivy/issues/28","id":1362801104,"node_id":"IC_kwDOAZPgIc5ROrHQ","user":{"login":"kpym","id":3142701,"node_id":"MDQ6VXNlcjMxNDI3MDE=","avatar_url":"https://avatars.githubusercontent.com/u/3142701?v=4","gravatar_id":"","url":"https://api.github.com/users/kpym","html_url":"https://github.com/kpym","followers_url":"https://api.github.com/users/kpym/followers","following_url":"https://api.github.com/users/kpym/following{/other_user}","gists_url":"https://api.github.com/users/kpym/gists{/gist_id}","starred_url":"https://api.github.com/users/kpym/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kpym/subscriptions","organizations_url":"https://api.github.com/users/kpym/orgs","repos_url":"https://api.github.com/users/kpym/repos","events_url":"https://api.github.com/users/kpym/events{/privacy}","received_events_url":"https://api.github.com/users/kpym/received_events","type":"User","site_admin":false},"created_at":"2022-12-22T12:51:19Z","updated_at":"2022-12-22T12:51:19Z","author_association":"NONE","body":"> I noticed this is still open, presumably because of the 'need an Ivy discussion forum' part since the conditional execution now exists. One possibility would be to enable GitHub Discussions on this repo. We've used them for Go discussions that are expected to be too much for the issue tracker, and the single level of threading is really helpful.\r\n> \r\n> We tend to only use them for big things in Go, but projects often use them now for Q&A etc. [golang/go#47141](https://github.com/golang/go/discussions/47141) is one of our smaller discussions.\r\n\r\n@rsc this can be moved to disucssions now ?","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1362801104/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1363335328","html_url":"https://github.com/robpike/ivy/issues/69#issuecomment-1363335328","issue_url":"https://api.github.com/repos/robpike/ivy/issues/69","id":1363335328,"node_id":"IC_kwDOAZPgIc5RQtig","user":{"login":"kpym","id":3142701,"node_id":"MDQ6VXNlcjMxNDI3MDE=","avatar_url":"https://avatars.githubusercontent.com/u/3142701?v=4","gravatar_id":"","url":"https://api.github.com/users/kpym","html_url":"https://github.com/kpym","followers_url":"https://api.github.com/users/kpym/followers","following_url":"https://api.github.com/users/kpym/following{/other_user}","gists_url":"https://api.github.com/users/kpym/gists{/gist_id}","starred_url":"https://api.github.com/users/kpym/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kpym/subscriptions","organizations_url":"https://api.github.com/users/kpym/orgs","repos_url":"https://api.github.com/users/kpym/repos","events_url":"https://api.github.com/users/kpym/events{/privacy}","received_events_url":"https://api.github.com/users/kpym/received_events","type":"User","site_admin":false},"created_at":"2022-12-22T21:00:50Z","updated_at":"2022-12-22T21:00:50Z","author_association":"NONE","body":"> map.iota 1 2 3\r\n> \r\n> would produce the integers 1 1 2 1 2 3 but not as a simple vector of scalars, but as 1 (1 2) (1 2 3), and ivy's data model does not allow compound elements in vectors, so this is an error.\r\n\r\nWhat if we follow the `<binary>.<binary>` \"strategy\" for something like `<binary>.<uintary>`, where `<unitary>` will be applied to each element and `<binary>` will be used to reduce the result. For example `,.iota 1 2 3` will produce `(iota 1), (iota 2), (iota 3)` which is `1 1 2 1 2 3`. Another example : \r\n```\r\nop ssq x = x>0: x**2; -x**2 # signed square\r\n+.ssq 1 -2 3\r\n6\r\n```\r\nbecause `+.ssq 1 -2 3` will be the same as `(ssq 1) + (ssq -2) + (ssq 3)`.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1363335328/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1363691728","html_url":"https://github.com/robpike/ivy/issues/120#issuecomment-1363691728","issue_url":"https://api.github.com/repos/robpike/ivy/issues/120","id":1363691728,"node_id":"IC_kwDOAZPgIc5RSEjQ","user":{"login":"kpym","id":3142701,"node_id":"MDQ6VXNlcjMxNDI3MDE=","avatar_url":"https://avatars.githubusercontent.com/u/3142701?v=4","gravatar_id":"","url":"https://api.github.com/users/kpym","html_url":"https://github.com/kpym","followers_url":"https://api.github.com/users/kpym/followers","following_url":"https://api.github.com/users/kpym/following{/other_user}","gists_url":"https://api.github.com/users/kpym/gists{/gist_id}","starred_url":"https://api.github.com/users/kpym/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kpym/subscriptions","organizations_url":"https://api.github.com/users/kpym/orgs","repos_url":"https://api.github.com/users/kpym/repos","events_url":"https://api.github.com/users/kpym/events{/privacy}","received_events_url":"https://api.github.com/users/kpym/received_events","type":"User","site_admin":false},"created_at":"2022-12-23T07:27:14Z","updated_at":"2022-12-23T07:32:18Z","author_association":"NONE","body":"Thanks for considering this !\r\n\r\n- there is a typo in [doc.go](https://github.com/robpike/ivy/blob/98277766548f5fcf8a0d4d34f26f26ad2f0089ce/doc.go#L40) : `scanrationals` should be `scandivision `.\r\n- I was thinking that with `scandivision 1` we can use fractions inside vectors by concatenating with comma, like this `1,2/3,4` but: \r\n```\r\n1,2/3,4\r\n1 2/3 1/2\r\n``` \r\nThis looks like a bug no ? `1,2/3,4` should be `(1) (2/3) (4)` or `(1 2)/(3 4)`, IMO. \r\nThis is probably one more situation where the scanner decides to grab something or not ? When we scan for a vector, should we stop at comma or not ?\r\n\r\n**EDIT:** Oh I see, the comma is a normal binary operator and it is evaluated before on the right and after on the left. That makes sense.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1363691728/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1363702861","html_url":"https://github.com/robpike/ivy/issues/120#issuecomment-1363702861","issue_url":"https://api.github.com/repos/robpike/ivy/issues/120","id":1363702861,"node_id":"IC_kwDOAZPgIc5RSHRN","user":{"login":"kpym","id":3142701,"node_id":"MDQ6VXNlcjMxNDI3MDE=","avatar_url":"https://avatars.githubusercontent.com/u/3142701?v=4","gravatar_id":"","url":"https://api.github.com/users/kpym","html_url":"https://github.com/kpym","followers_url":"https://api.github.com/users/kpym/followers","following_url":"https://api.github.com/users/kpym/following{/other_user}","gists_url":"https://api.github.com/users/kpym/gists{/gist_id}","starred_url":"https://api.github.com/users/kpym/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kpym/subscriptions","organizations_url":"https://api.github.com/users/kpym/orgs","repos_url":"https://api.github.com/users/kpym/repos","events_url":"https://api.github.com/users/kpym/events{/privacy}","received_events_url":"https://api.github.com/users/kpym/received_events","type":"User","site_admin":false},"created_at":"2022-12-23T07:47:15Z","updated_at":"2022-12-23T07:47:15Z","author_association":"NONE","body":"It looks like there is a bad behaviour now with `scandivision 1`\r\n```\r\n1,2/3,4\r\n1 2/3 1/2\r\n```\r\nand if we copy/paste the result we get\r\n```\r\n1 2/3 1/2\r\n2/3 4\r\n```\r\nThus, the string representation of a vector does not produce the vector itself. This makes me think that my first proposal to keep scanning for fractions inside vectors is the right one.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1363702861/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1363713666","html_url":"https://github.com/robpike/ivy/issues/120#issuecomment-1363713666","issue_url":"https://api.github.com/repos/robpike/ivy/issues/120","id":1363713666,"node_id":"IC_kwDOAZPgIc5RSJ6C","user":{"login":"kpym","id":3142701,"node_id":"MDQ6VXNlcjMxNDI3MDE=","avatar_url":"https://avatars.githubusercontent.com/u/3142701?v=4","gravatar_id":"","url":"https://api.github.com/users/kpym","html_url":"https://github.com/kpym","followers_url":"https://api.github.com/users/kpym/followers","following_url":"https://api.github.com/users/kpym/following{/other_user}","gists_url":"https://api.github.com/users/kpym/gists{/gist_id}","starred_url":"https://api.github.com/users/kpym/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kpym/subscriptions","organizations_url":"https://api.github.com/users/kpym/orgs","repos_url":"https://api.github.com/users/kpym/repos","events_url":"https://api.github.com/users/kpym/events{/privacy}","received_events_url":"https://api.github.com/users/kpym/received_events","type":"User","site_admin":false},"created_at":"2022-12-23T08:03:56Z","updated_at":"2022-12-23T08:03:56Z","author_association":"NONE","body":"Perhaps `scandivision` can have two levels ?\r\n```\r\n)scandivision 0 # (default) always scan for fractions\r\n)scandivision 1 # scan for fractions only inside vectors with length > 1\r\n)scandivision 2 # never scan for fractions\r\n```","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1363713666/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1363731990","html_url":"https://github.com/robpike/ivy/issues/120#issuecomment-1363731990","issue_url":"https://api.github.com/repos/robpike/ivy/issues/120","id":1363731990,"node_id":"IC_kwDOAZPgIc5RSOYW","user":{"login":"kpym","id":3142701,"node_id":"MDQ6VXNlcjMxNDI3MDE=","avatar_url":"https://avatars.githubusercontent.com/u/3142701?v=4","gravatar_id":"","url":"https://api.github.com/users/kpym","html_url":"https://github.com/kpym","followers_url":"https://api.github.com/users/kpym/followers","following_url":"https://api.github.com/users/kpym/following{/other_user}","gists_url":"https://api.github.com/users/kpym/gists{/gist_id}","starred_url":"https://api.github.com/users/kpym/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kpym/subscriptions","organizations_url":"https://api.github.com/users/kpym/orgs","repos_url":"https://api.github.com/users/kpym/repos","events_url":"https://api.github.com/users/kpym/events{/privacy}","received_events_url":"https://api.github.com/users/kpym/received_events","type":"User","site_admin":false},"created_at":"2022-12-23T08:28:40Z","updated_at":"2022-12-23T08:28:40Z","author_association":"NONE","body":"Another possibility is with the current `)scandivision 1` to change the string repsresentation of the fractions to be always enclosed in parenthesis.\r\n```\r\n1 2/3 4\r\n(1/3) (1/2)\r\n```\r\nwhich makes sense, since there is no more syntax for fractions, except as a result of division.\r\n\r\nI'm very chatty, sorry. I'll stop now, I promise.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1363731990/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1363739560","html_url":"https://github.com/robpike/ivy/issues/120#issuecomment-1363739560","issue_url":"https://api.github.com/repos/robpike/ivy/issues/120","id":1363739560,"node_id":"IC_kwDOAZPgIc5RSQOo","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2022-12-23T08:40:30Z","updated_at":"2022-12-23T08:40:30Z","author_association":"OWNER","body":"I don't like where this is going. I'm going to roll it back and rethink.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1363739560/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1469324366","html_url":"https://github.com/robpike/ivy/issues/126#issuecomment-1469324366","issue_url":"https://api.github.com/repos/robpike/ivy/issues/126","id":1469324366,"node_id":"IC_kwDOAZPgIc5XlBxO","user":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"created_at":"2023-03-15T04:47:41Z","updated_at":"2023-03-15T04:47:41Z","author_association":"CONTRIBUTOR","body":"Issue #115 is related.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1469324366/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1469370075","html_url":"https://github.com/robpike/ivy/issues/126#issuecomment-1469370075","issue_url":"https://api.github.com/repos/robpike/ivy/issues/126","id":1469370075,"node_id":"IC_kwDOAZPgIc5XlM7b","user":{"login":"carlomunguia","id":43321570,"node_id":"MDQ6VXNlcjQzMzIxNTcw","avatar_url":"https://avatars.githubusercontent.com/u/43321570?v=4","gravatar_id":"","url":"https://api.github.com/users/carlomunguia","html_url":"https://github.com/carlomunguia","followers_url":"https://api.github.com/users/carlomunguia/followers","following_url":"https://api.github.com/users/carlomunguia/following{/other_user}","gists_url":"https://api.github.com/users/carlomunguia/gists{/gist_id}","starred_url":"https://api.github.com/users/carlomunguia/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/carlomunguia/subscriptions","organizations_url":"https://api.github.com/users/carlomunguia/orgs","repos_url":"https://api.github.com/users/carlomunguia/repos","events_url":"https://api.github.com/users/carlomunguia/events{/privacy}","received_events_url":"https://api.github.com/users/carlomunguia/received_events","type":"User","site_admin":false},"created_at":"2023-03-15T05:34:12Z","updated_at":"2023-03-15T05:34:12Z","author_association":"NONE","body":"Closing considering #115 (which is closed) - didn't realize it's been removed from App Store. ","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1469370075/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1471915788","html_url":"https://github.com/robpike/ivy/pull/83#issuecomment-1471915788","issue_url":"https://api.github.com/repos/robpike/ivy/issues/83","id":1471915788,"node_id":"IC_kwDOAZPgIc5Xu6cM","user":{"login":"tcolgate","id":76019,"node_id":"MDQ6VXNlcjc2MDE5","avatar_url":"https://avatars.githubusercontent.com/u/76019?v=4","gravatar_id":"","url":"https://api.github.com/users/tcolgate","html_url":"https://github.com/tcolgate","followers_url":"https://api.github.com/users/tcolgate/followers","following_url":"https://api.github.com/users/tcolgate/following{/other_user}","gists_url":"https://api.github.com/users/tcolgate/gists{/gist_id}","starred_url":"https://api.github.com/users/tcolgate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tcolgate/subscriptions","organizations_url":"https://api.github.com/users/tcolgate/orgs","repos_url":"https://api.github.com/users/tcolgate/repos","events_url":"https://api.github.com/users/tcolgate/events{/privacy}","received_events_url":"https://api.github.com/users/tcolgate/received_events","type":"User","site_admin":false},"created_at":"2023-03-16T13:02:59Z","updated_at":"2023-03-16T13:02:59Z","author_association":"CONTRIBUTOR","body":"If we swtiched `@` to `each` and added docs, (in line with the discussion in #69), would this PR be acceptable?","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1471915788/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1480203419","html_url":"https://github.com/robpike/ivy/pull/127#issuecomment-1480203419","issue_url":"https://api.github.com/repos/robpike/ivy/issues/127","id":1480203419,"node_id":"IC_kwDOAZPgIc5YOhyb","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2023-03-22T20:14:25Z","updated_at":"2023-03-22T20:14:25Z","author_association":"OWNER","body":"My apologies. This was put in for debugging a couple of years ago and should have been removed. Please don't add the flag, just delete the automatic creation of a profile.\r\n\r\nThanks for catching this.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1480203419/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1597745449","html_url":"https://github.com/robpike/ivy/pull/129#issuecomment-1597745449","issue_url":"https://api.github.com/repos/robpike/ivy/issues/129","id":1597745449,"node_id":"IC_kwDOAZPgIc5fO6kp","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2023-06-19T20:56:52Z","updated_at":"2023-06-19T20:56:52Z","author_association":"OWNER","body":"Thanks for this, it's an interesting addition. Some important components are missing though. It should be implemented for matrix type. I believe in APL it just compares the top items (rows of a matrix for a 2d one, for instance) but that should be verified. Also, of course, you need tests.\r\n\r\nI'm happy to take this over, or leave it with you. Let me know.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1597745449/reactions","total_count":1,"+1":0,"-1":0,"laugh":1,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1598249437","html_url":"https://github.com/robpike/ivy/pull/129#issuecomment-1598249437","issue_url":"https://api.github.com/repos/robpike/ivy/issues/129","id":1598249437,"node_id":"IC_kwDOAZPgIc5fQ1nd","user":{"login":"Blackmane","id":6045018,"node_id":"MDQ6VXNlcjYwNDUwMTg=","avatar_url":"https://avatars.githubusercontent.com/u/6045018?v=4","gravatar_id":"","url":"https://api.github.com/users/Blackmane","html_url":"https://github.com/Blackmane","followers_url":"https://api.github.com/users/Blackmane/followers","following_url":"https://api.github.com/users/Blackmane/following{/other_user}","gists_url":"https://api.github.com/users/Blackmane/gists{/gist_id}","starred_url":"https://api.github.com/users/Blackmane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Blackmane/subscriptions","organizations_url":"https://api.github.com/users/Blackmane/orgs","repos_url":"https://api.github.com/users/Blackmane/repos","events_url":"https://api.github.com/users/Blackmane/events{/privacy}","received_events_url":"https://api.github.com/users/Blackmane/received_events","type":"User","site_admin":false},"created_at":"2023-06-20T07:20:21Z","updated_at":"2023-06-20T07:20:21Z","author_association":"CONTRIBUTOR","body":"I can try to implement for the matrix type too.\r\nWith a colleague I was discussing the implementation.\r\nHopefully later we update the PR.\r\n\r\nI also check for the missing components too.\r\nThank you!","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1598249437/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1599233755","html_url":"https://github.com/robpike/ivy/pull/129#issuecomment-1599233755","issue_url":"https://api.github.com/repos/robpike/ivy/issues/129","id":1599233755,"node_id":"IC_kwDOAZPgIc5fUl7b","user":{"login":"Blackmane","id":6045018,"node_id":"MDQ6VXNlcjYwNDUwMTg=","avatar_url":"https://avatars.githubusercontent.com/u/6045018?v=4","gravatar_id":"","url":"https://api.github.com/users/Blackmane","html_url":"https://github.com/Blackmane","followers_url":"https://api.github.com/users/Blackmane/followers","following_url":"https://api.github.com/users/Blackmane/following{/other_user}","gists_url":"https://api.github.com/users/Blackmane/gists{/gist_id}","starred_url":"https://api.github.com/users/Blackmane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Blackmane/subscriptions","organizations_url":"https://api.github.com/users/Blackmane/orgs","repos_url":"https://api.github.com/users/Blackmane/repos","events_url":"https://api.github.com/users/Blackmane/events{/privacy}","received_events_url":"https://api.github.com/users/Blackmane/received_events","type":"User","site_admin":false},"created_at":"2023-06-20T17:37:44Z","updated_at":"2023-06-20T17:37:44Z","author_association":"CONTRIBUTOR","body":"I have implemented unique for matrix too.\r\nI added some tests and a line of documentation.\r\nI'm not sure if is all or if something is still missing.\r\n\r\nI'm open to any suggestion or modification.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1599233755/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1600051921","html_url":"https://github.com/robpike/ivy/pull/129#issuecomment-1600051921","issue_url":"https://api.github.com/repos/robpike/ivy/issues/129","id":1600051921,"node_id":"IC_kwDOAZPgIc5fXtrR","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2023-06-21T04:22:25Z","updated_at":"2023-06-21T04:22:25Z","author_association":"OWNER","body":"Thanks for the update.\r\n\r\nYour solution to the matrix operation is quite expensive, both in CPU time and in allocations. I believe that because of the way memory is laid out in matrices, which is not accidental, this can be done more efficiently. Also, there are some secondary operations that might be worth adding, either internally or explicitly in what is available to the user. There should probably be a equality operator for matrix and vector comparisons, and perhaps also a hash function.\r\n\r\nLet me think about these for a while.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1600051921/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1603481239","html_url":"https://github.com/robpike/ivy/pull/129#issuecomment-1603481239","issue_url":"https://api.github.com/repos/robpike/ivy/issues/129","id":1603481239,"node_id":"IC_kwDOAZPgIc5fky6X","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2023-06-23T00:43:21Z","updated_at":"2023-06-23T00:43:50Z","author_association":"OWNER","body":"Here's my thinking so far.\r\n\r\nIt bothers me that your vector and matrix implementations are so different. They should be able to share a lot of their operation. But some pieces are missing to make that possible, such as general equality and general ordering. They could be provided, maybe.\r\n\r\nAlso, the \"unique\" operation in APL is declared as a monadic version of a general set operation. (I forget which one, but it doesn't matter for the moment.) Ivy should also have set operations, but to provide union and intersection would require similar mechanisms to what unique needs.\r\n\r\nThe key to all this is, I think, efficient search within a slice of Values. That is what both Vector and Matrix are under the covers.\r\n\r\nI am thinking about the best way to provide that.\r\n\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1603481239/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1607436365","html_url":"https://github.com/robpike/ivy/pull/129#issuecomment-1607436365","issue_url":"https://api.github.com/repos/robpike/ivy/issues/129","id":1607436365,"node_id":"IC_kwDOAZPgIc5fz4hN","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2023-06-26T13:08:06Z","updated_at":"2023-06-26T13:08:06Z","author_association":"OWNER","body":"I've thought about this quite a bit, and unfortunately it's harder than it looks. Most relevant here, you can't put a Value in a map and be ivy-correct about the results because the (in effect) == operator used by the Go map implementation has different semantics than ivy's. For instance: (float 1) == 1 in ivy, but the comparison will yield false in the interface comparison used in map lookup. And that's leaving aside the panic that will occur should a Vector show up in the map.\r\n\r\nThis is turning into a bit of a rabbit hole but I have a handle on things now, and plan to add union, intersection, unique, and perhaps whole-object comparison operations (not element-wise). I have some of it working, if slowly, and once it's passing all the tests I'll see what I can do about making it fast, which may require some structural changes. And doing it with minimal code duplication is another challenge. Plus there are issues around char vs. int.\r\n\r\nIt's all fun, but this PR is not the place to start, and I'm going to close it.\r\n\r\nThat said, I'd like to thank you for raising the issue and taking it on, which should lead to some cool new functionality in a few days.\r\n\r\n\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1607436365/reactions","total_count":4,"+1":1,"-1":0,"laugh":1,"hooray":0,"confused":0,"heart":0,"rocket":2,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1610977373","html_url":"https://github.com/robpike/ivy/pull/129#issuecomment-1610977373","issue_url":"https://api.github.com/repos/robpike/ivy/issues/129","id":1610977373,"node_id":"IC_kwDOAZPgIc5gBZBd","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2023-06-28T08:21:04Z","updated_at":"2023-06-28T08:21:04Z","author_association":"OWNER","body":"Done!\r\n\r\nFixed by [3d1d0ff6912e8c12725cec1c178f908c53f12d44](https://github.com/robpike/ivy/commit/3d1d0ff6912e8c12725cec1c178f908c53f12d44)","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1610977373/reactions","total_count":4,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":3,"rocket":1,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1611067963","html_url":"https://github.com/robpike/ivy/pull/129#issuecomment-1611067963","issue_url":"https://api.github.com/repos/robpike/ivy/issues/129","id":1611067963,"node_id":"IC_kwDOAZPgIc5gBvI7","user":{"login":"Blackmane","id":6045018,"node_id":"MDQ6VXNlcjYwNDUwMTg=","avatar_url":"https://avatars.githubusercontent.com/u/6045018?v=4","gravatar_id":"","url":"https://api.github.com/users/Blackmane","html_url":"https://github.com/Blackmane","followers_url":"https://api.github.com/users/Blackmane/followers","following_url":"https://api.github.com/users/Blackmane/following{/other_user}","gists_url":"https://api.github.com/users/Blackmane/gists{/gist_id}","starred_url":"https://api.github.com/users/Blackmane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Blackmane/subscriptions","organizations_url":"https://api.github.com/users/Blackmane/orgs","repos_url":"https://api.github.com/users/Blackmane/repos","events_url":"https://api.github.com/users/Blackmane/events{/privacy}","received_events_url":"https://api.github.com/users/Blackmane/received_events","type":"User","site_admin":false},"created_at":"2023-06-28T09:22:52Z","updated_at":"2023-06-28T09:22:52Z","author_association":"CONTRIBUTOR","body":"Amazing! Thank you!!","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1611067963/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1612318558","html_url":"https://github.com/robpike/ivy/pull/127#issuecomment-1612318558","issue_url":"https://api.github.com/repos/robpike/ivy/issues/127","id":1612318558,"node_id":"IC_kwDOAZPgIc5gGgde","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2023-06-29T01:53:47Z","updated_at":"2023-06-29T01:53:47Z","author_association":"OWNER","body":"I added a flag to enable profiling when desired.\r\n\r\n89f602241fc4ff63b840681788d9eabbb4354eaf","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1612318558/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1612433263","html_url":"https://github.com/robpike/ivy/pull/130#issuecomment-1612433263","issue_url":"https://api.github.com/repos/robpike/ivy/issues/130","id":1612433263,"node_id":"IC_kwDOAZPgIc5gG8dv","user":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"created_at":"2023-06-29T04:59:11Z","updated_at":"2023-06-29T04:59:11Z","author_association":"CONTRIBUTOR","body":"Thanks.\r\n\r\n> I don't know how StartCPUProfile can error, but I suppose it can. Learn something every day.\r\n\r\nMe too, learned from looking at the example at https://pkg.go.dev/runtime/pprof#hdr-Profiling_a_Go_program. Its docs say \"StartCPUProfile returns an error if profiling is already enabled.\" and today's implementation indeed seems to only do that.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1612433263/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1616341251","html_url":"https://github.com/robpike/ivy/issues/117#issuecomment-1616341251","issue_url":"https://api.github.com/repos/robpike/ivy/issues/117","id":1616341251,"node_id":"IC_kwDOAZPgIc5gV2kD","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2023-07-02T03:49:11Z","updated_at":"2023-07-02T03:49:11Z","author_association":"OWNER","body":"As you can see from the commit above, you got what you wanted.\r\n\r\nI suspect there remain rough edges. I know that printing still needs work, but have a handle on that. I'll leave this issue open at least until that is resolved.\r\n\r\nThanks for the prod.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1616341251/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}]166 53530 GET https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=10&sort=updated HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:50 GMT Etag: W/"f4908404e22fcdf81c7f79dee821eea9a042a0989ddb5e09ca7d6c3218ea898b" Link: <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=9&sort=updated>; rel="prev", <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=11&sort=updated>; rel="next", <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=11&sort=updated>; rel="last", <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=1&sort=updated>; rel="first" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EBDD7:3356FF:665E33B2 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4988 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 12 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1636342803","html_url":"https://github.com/robpike/ivy/issues/131#issuecomment-1636342803","issue_url":"https://api.github.com/repos/robpike/ivy/issues/131","id":1636342803,"node_id":"IC_kwDOAZPgIc5hiJwT","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"created_at":"2023-07-14T19:50:07Z","updated_at":"2023-07-14T19:50:07Z","author_association":"CONTRIBUTOR","body":"There is another issue with the zero fill:\r\n\r\n```\r\nx = 3 3 rho iota 9; x\r\n1 2 3\r\n4 5 6\r\n7 8 9\r\n\r\ny = 1 take x x; y\r\n(1 2 3|\r\n|4 5 6|\r\n|7 8 9)\r\n\r\n2 take y\r\n(1 2 3| 0\r\n|4 5 6|\r\n|7 8 9)\r\n```\r\n\r\nThe second element is a scalar, while the first element is a matrix.\r\nComare with APL:\r\n\r\n```\r\nx←3 3 ⍴ ⍳9\r\n1 2 3\r\n4 5 6\r\n7 8 9\r\n\r\ny←⊂x\r\n┌─────┐\r\n│1 2 3│\r\n│4 5 6│\r\n│7 8 9│\r\n└─────┘\r\n\r\n2↑y\r\n┌─────┬─────┐\r\n│1 2 3│0 0 0│\r\n│4 5 6│0 0 0│\r\n│7 8 9│0 0 0│\r\n└─────┴─────┘\r\n```\r\nHere, both elements are matrices.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1636342803/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1650394738","html_url":"https://github.com/robpike/ivy/issues/132#issuecomment-1650394738","issue_url":"https://api.github.com/repos/robpike/ivy/issues/132","id":1650394738,"node_id":"IC_kwDOAZPgIc5iXwZy","user":{"login":"arl","id":476650,"node_id":"MDQ6VXNlcjQ3NjY1MA==","avatar_url":"https://avatars.githubusercontent.com/u/476650?v=4","gravatar_id":"","url":"https://api.github.com/users/arl","html_url":"https://github.com/arl","followers_url":"https://api.github.com/users/arl/followers","following_url":"https://api.github.com/users/arl/following{/other_user}","gists_url":"https://api.github.com/users/arl/gists{/gist_id}","starred_url":"https://api.github.com/users/arl/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/arl/subscriptions","organizations_url":"https://api.github.com/users/arl/orgs","repos_url":"https://api.github.com/users/arl/repos","events_url":"https://api.github.com/users/arl/events{/privacy}","received_events_url":"https://api.github.com/users/arl/received_events","type":"User","site_admin":false},"created_at":"2023-07-25T19:15:13Z","updated_at":"2023-07-25T19:15:13Z","author_association":"NONE","body":"> Unfortunately, the implementation of disclose depends on the origin.\r\n\r\nIsn't there a way to programmatically query whether the origin is 0 or 1 ? In which case the implementation of `disclose` could be made in pure ivy.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1650394738/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1650396924","html_url":"https://github.com/robpike/ivy/issues/132#issuecomment-1650396924","issue_url":"https://api.github.com/repos/robpike/ivy/issues/132","id":1650396924,"node_id":"IC_kwDOAZPgIc5iXw78","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"created_at":"2023-07-25T19:16:54Z","updated_at":"2023-07-25T19:16:54Z","author_association":"CONTRIBUTOR","body":"> Isn't there a way to programmatically query whether the origin is 0 or 1 ?\r\n\r\nYou can query the origin via the `)origin` command, but that's not an expression.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1650396924/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1652654919","html_url":"https://github.com/robpike/ivy/issues/132#issuecomment-1652654919","issue_url":"https://api.github.com/repos/robpike/ivy/issues/132","id":1652654919,"node_id":"IC_kwDOAZPgIc5igYNH","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"created_at":"2023-07-26T23:00:36Z","updated_at":"2023-07-26T23:01:49Z","author_association":"CONTRIBUTOR","body":"I tried `iota 1` and `(0 iota 1)+1` (*) to get the origin, but both return a vector of length 1, not a scalar, so I can't use them as the index for disclose.\r\n\r\n*) because `A iota B` returns origin-1 if B not found in A","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1652654919/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1652672408","html_url":"https://github.com/robpike/ivy/issues/132#issuecomment-1652672408","issue_url":"https://api.github.com/repos/robpike/ivy/issues/132","id":1652672408,"node_id":"IC_kwDOAZPgIc5igceY","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2023-07-26T23:19:04Z","updated_at":"2023-07-26T23:19:04Z","author_association":"OWNER","body":"What's missing first is the equivalent of the quad \"operator\", and I've been thinking about a good way to provide that. I actually had a prototype working but want to proceed carefully.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1652672408/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1653169198","html_url":"https://github.com/robpike/ivy/issues/132#issuecomment-1653169198","issue_url":"https://api.github.com/repos/robpike/ivy/issues/132","id":1653169198,"node_id":"IC_kwDOAZPgIc5iiVwu","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"created_at":"2023-07-27T08:42:43Z","updated_at":"2023-07-27T08:42:53Z","author_association":"CONTRIBUTOR","body":"Thanks for the response. I assume you mean something like `⎕IO` (index origin).\r\n\r\nIt just came to me that I can get the origin as a scalar if I add up the result of `iota 1`.\r\nThe implementations of enclose and disclose in my `lib.ivy` are now:\r\n\r\n```\r\nop enclose a = 1 take a 0\r\nop disclose a = a[+/iota 1]\r\n```\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1653169198/reactions","total_count":1,"+1":0,"-1":0,"laugh":0,"hooray":1,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1653310594","html_url":"https://github.com/robpike/ivy/issues/132#issuecomment-1653310594","issue_url":"https://api.github.com/repos/robpike/ivy/issues/132","id":1653310594,"node_id":"IC_kwDOAZPgIc5ii4SC","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2023-07-27T10:08:33Z","updated_at":"2023-07-27T10:08:33Z","author_association":"OWNER","body":"Clever!\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1653310594/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1655211475","html_url":"https://github.com/robpike/ivy/issues/132#issuecomment-1655211475","issue_url":"https://api.github.com/repos/robpike/ivy/issues/132","id":1655211475,"node_id":"IC_kwDOAZPgIc5iqIXT","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"created_at":"2023-07-28T07:48:13Z","updated_at":"2023-07-28T07:48:13Z","author_association":"CONTRIBUTOR","body":"@robpike `first` does not yet work as expected:\r\n\r\n first first box box 3 3 rho iota 9\r\n ((0 1 2||\r\n ||3 4 5||\r\n ||6 7 8))\r\n\r\nExpected:\r\n\r\n first first box box 3 3 rho iota 9\r\n 0 1 2\r\n 3 4 5\r\n 6 7 8\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1655211475/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1655506018","html_url":"https://github.com/robpike/ivy/issues/132#issuecomment-1655506018","issue_url":"https://api.github.com/repos/robpike/ivy/issues/132","id":1655506018,"node_id":"IC_kwDOAZPgIc5irQRi","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2023-07-28T11:09:52Z","updated_at":"2023-07-28T11:09:52Z","author_association":"OWNER","body":"The documentation I can find is unclear. Maybe the next round will be correct by your understanding.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1655506018/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1655536461","html_url":"https://github.com/robpike/ivy/issues/132#issuecomment-1655536461","issue_url":"https://api.github.com/repos/robpike/ivy/issues/132","id":1655536461,"node_id":"IC_kwDOAZPgIc5irXtN","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"created_at":"2023-07-28T11:37:29Z","updated_at":"2023-07-28T11:37:29Z","author_association":"CONTRIBUTOR","body":"Thank you, I'm happy with it now.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1655536461/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1655609349","html_url":"https://github.com/robpike/ivy/issues/132#issuecomment-1655609349","issue_url":"https://api.github.com/repos/robpike/ivy/issues/132","id":1655609349,"node_id":"IC_kwDOAZPgIc5irpgF","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2023-07-28T12:29:44Z","updated_at":"2023-07-28T12:29:44Z","author_association":"OWNER","body":"Glad to hear it. Thanks for the bug reports.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1655609349/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1657061413","html_url":"https://github.com/robpike/ivy/issues/133#issuecomment-1657061413","issue_url":"https://api.github.com/repos/robpike/ivy/issues/133","id":1657061413,"node_id":"IC_kwDOAZPgIc5ixMAl","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"created_at":"2023-07-30T06:58:54Z","updated_at":"2023-07-30T06:58:54Z","author_association":"CONTRIBUTOR","body":"As a side note: I am somewhat skeptical whether the textual format is particularly useful in a language primarily designed for calculations. My suggestion would be to have a system function to obtain the value of UnixNano, and perhaps also the option to convert back and forth between this timestamp and the date representation as a numeric vector.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1657061413/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1657075999","html_url":"https://github.com/robpike/ivy/issues/133#issuecomment-1657075999","issue_url":"https://api.github.com/repos/robpike/ivy/issues/133","id":1657075999,"node_id":"IC_kwDOAZPgIc5ixPkf","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2023-07-30T08:17:34Z","updated_at":"2023-07-30T08:17:34Z","author_association":"OWNER","body":"Well that's embarrassing, but of course trivial to fix.\r\n\r\nHaving a date as a string seems helpful to me, but of course you also have the broken down time. Regardless, your suggestion of a single nanosecond counter sounds worthwhile.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1657075999/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1657084270","html_url":"https://github.com/robpike/ivy/issues/133#issuecomment-1657084270","issue_url":"https://api.github.com/repos/robpike/ivy/issues/133","id":1657084270,"node_id":"IC_kwDOAZPgIc5ixRlu","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"created_at":"2023-07-30T09:00:42Z","updated_at":"2023-07-30T09:24:02Z","author_association":"CONTRIBUTOR","body":"> Having a date as a string seems helpful to me\r\n\r\nThen it would be nice to have this functionality for any date, not just the current date. I was thinking of something along these lines:\r\n\r\n```\r\nsys \"time\"\r\n\t1690705612844048000\r\n\r\nfmttime sys \"time\"\r\n\tSun Jul 30 10:26:52 CEST 2023\r\n\r\ntodate sys \"time\"\r\n\t2023 7 30 10 26 52.844048\r\n\r\ntotime 2023 7 30 10 26 52.844048\r\n\t1690705612844048000\r\n\t\r\ndiff = (totime 2023 7 31 0 0 0) - sys \"time\"\r\ndiff\r\n\t55987155952000\r\n\r\n24 60 60 1000 1000 1000 encode diff\r\n\t15 33 7 155 952 0\t # read as \"15h 33m 7s 155ms 952μs 0ns\"\r\n```\r\n\r\nThe numeric vector representation would also require a time zone offset.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1657084270/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1657094995","html_url":"https://github.com/robpike/ivy/issues/133#issuecomment-1657094995","issue_url":"https://api.github.com/repos/robpike/ivy/issues/133","id":1657094995,"node_id":"IC_kwDOAZPgIc5ixUNT","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2023-07-30T09:52:41Z","updated_at":"2023-07-30T09:52:41Z","author_association":"OWNER","body":"That's too many new functions. Date formatting is a black hole. I suggest instead that\r\n \"T\" text sys \"ns\"\r\nproduce the Unix date format. Maybe one new function to go the other way, but I want to think about it more.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1657094995/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1657095427","html_url":"https://github.com/robpike/ivy/issues/133#issuecomment-1657095427","issue_url":"https://api.github.com/repos/robpike/ivy/issues/133","id":1657095427,"node_id":"IC_kwDOAZPgIc5ixUUD","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2023-07-30T09:54:45Z","updated_at":"2023-07-30T09:54:45Z","author_association":"OWNER","body":"commit d6118f9 updates this.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1657095427/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1657096539","html_url":"https://github.com/robpike/ivy/issues/133#issuecomment-1657096539","issue_url":"https://api.github.com/repos/robpike/ivy/issues/133","id":1657096539,"node_id":"IC_kwDOAZPgIc5ixUlb","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2023-07-30T10:00:10Z","updated_at":"2023-07-30T10:00:10Z","author_association":"OWNER","body":"Perhaps encode and decode with a special-purpose LHS is the way to pack and unpack a time integer.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1657096539/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1657304148","html_url":"https://github.com/robpike/ivy/pull/134#issuecomment-1657304148","issue_url":"https://api.github.com/repos/robpike/ivy/issues/134","id":1657304148,"node_id":"IC_kwDOAZPgIc5iyHRU","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2023-07-31T00:10:36Z","updated_at":"2023-07-31T00:10:36Z","author_association":"OWNER","body":"Thanks. There are three files, not two. I pushed out a fix.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1657304148/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1659911293","html_url":"https://github.com/robpike/ivy/issues/133#issuecomment-1659911293","issue_url":"https://api.github.com/repos/robpike/ivy/issues/133","id":1659911293,"node_id":"IC_kwDOAZPgIc5i8Dx9","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"created_at":"2023-08-01T09:16:33Z","updated_at":"2023-08-01T09:40:49Z","author_association":"CONTRIBUTOR","body":"I like that the base unit is now in seconds.\r\n\r\n`sys \"date\"` and `sys \"time\"` are somewhat redundant since there are now `\"T\" text sys \"sec\"` and `\"T\" encode sys \"sec\"`. However, if you think that they are common enough to have their own system functions, then I trust your judgement.\r\n\r\nI would expect to find the documentation for \"T\" primarily in the help texts for `text` and `encode`/`decode`, and only secondarily under `sys \"help\"`.\r\n\r\nA future extension could be adding time zone support, for example, `\"T:JST\" text sys \"sec\"` to get the current time in Japan, but this may not be necessary for now. **Edit:** I see you already created #135 for that.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1659911293/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1660218763","html_url":"https://github.com/robpike/ivy/issues/133#issuecomment-1660218763","issue_url":"https://api.github.com/repos/robpike/ivy/issues/133","id":1660218763,"node_id":"IC_kwDOAZPgIc5i9O2L","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"created_at":"2023-08-01T12:30:47Z","updated_at":"2023-08-01T12:30:47Z","author_association":"CONTRIBUTOR","body":"I noticed that I intuitively wrote `sys \"now\"` several times instead of `sys \"sec\"` while trying it out. The former communicates the intent, while the latter communicates the unit. It's certainly just a matter of getting used to it, but I just wanted to note it as an observation.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1660218763/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1661266466","html_url":"https://github.com/robpike/ivy/issues/133#issuecomment-1661266466","issue_url":"https://api.github.com/repos/robpike/ivy/issues/133","id":1661266466,"node_id":"IC_kwDOAZPgIc5jBOoi","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2023-08-02T00:05:50Z","updated_at":"2023-08-02T00:05:50Z","author_association":"OWNER","body":"I went back and forth on where to document these features, but I agree now. I will put it in both places.\r\nI will also add sys \"now\" as an undocumented synonym, just for you :)","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1661266466/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1663134492","html_url":"https://github.com/robpike/ivy/issues/136#issuecomment-1663134492","issue_url":"https://api.github.com/repos/robpike/ivy/issues/136","id":1663134492,"node_id":"IC_kwDOAZPgIc5jIWsc","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2023-08-03T00:34:54Z","updated_at":"2023-08-03T00:34:54Z","author_association":"OWNER","body":"I did some research last night and have a plan. It's much easier to implement in APL because there is really only one internal number type, not 5. But I figured out a way to make it manageable to implement general modulus, which is the holdup here.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1663134492/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1666218998","html_url":"https://github.com/robpike/ivy/pull/142#issuecomment-1666218998","issue_url":"https://api.github.com/repos/robpike/ivy/issues/142","id":1666218998,"node_id":"IC_kwDOAZPgIc5jUHv2","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"created_at":"2023-08-04T21:58:34Z","updated_at":"2023-08-04T21:58:34Z","author_association":"CONTRIBUTOR","body":"Sorry for the botched pull request #141.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1666218998/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1666297700","html_url":"https://github.com/robpike/ivy/pull/140#issuecomment-1666297700","issue_url":"https://api.github.com/repos/robpike/ivy/issues/140","id":1666297700,"node_id":"IC_kwDOAZPgIc5jUa9k","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2023-08-05T00:19:48Z","updated_at":"2023-08-05T00:19:48Z","author_association":"OWNER","body":"Nice catch, thanks.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1666297700/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1666412172","html_url":"https://github.com/robpike/ivy/pull/142#issuecomment-1666412172","issue_url":"https://api.github.com/repos/robpike/ivy/issues/142","id":1666412172,"node_id":"IC_kwDOAZPgIc5jU26M","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2023-08-05T06:34:01Z","updated_at":"2023-08-05T06:34:01Z","author_association":"OWNER","body":"Thanks.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1666412172/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1667120864","html_url":"https://github.com/robpike/ivy/pull/148#issuecomment-1667120864","issue_url":"https://api.github.com/repos/robpike/ivy/issues/148","id":1667120864,"node_id":"IC_kwDOAZPgIc5jXj7g","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2023-08-07T03:11:11Z","updated_at":"2023-08-07T03:11:11Z","author_association":"OWNER","body":"Let's check in this code, after editing the comment (or not; your choice). I then have some refactoring I could do that would help smooth it out. At the very least, floor should be factored out of this.\r\n\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1667120864/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1667187810","html_url":"https://github.com/robpike/ivy/pull/148#issuecomment-1667187810","issue_url":"https://api.github.com/repos/robpike/ivy/issues/148","id":1667187810,"node_id":"IC_kwDOAZPgIc5jX0Ri","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"created_at":"2023-08-07T04:59:18Z","updated_at":"2023-08-07T04:59:18Z","author_association":"CONTRIBUTOR","body":"> Let's check in this code, after editing the comment (or not; your choice). I then have some refactoring I could do that would help smooth it out. At the very least, floor should be factored out of this.\r\n\r\nThanks","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1667187810/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1667194219","html_url":"https://github.com/robpike/ivy/pull/148#issuecomment-1667194219","issue_url":"https://api.github.com/repos/robpike/ivy/issues/148","id":1667194219,"node_id":"IC_kwDOAZPgIc5jX11r","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"created_at":"2023-08-07T05:08:49Z","updated_at":"2023-08-07T05:30:43Z","author_association":"CONTRIBUTOR","body":"The next step would be to make `mod` work for complex numbers, as defined in the paper:\r\n\r\n```\r\nop z mod w = z - w * floor z / w + w == 0\r\n```\r\n\r\nThis would be a straight forward translation:\r\n\r\n```\r\nfunc (c Complex) mod(ctx Context, w Complex) Complex {\r\n\tzeroFlag := complexZero\r\n\tif isZero(w) {\r\n\t\tzeroFlag = complexOne\r\n\t}\r\n\treturn c.sub(ctx, w.mul(ctx, (c.div(ctx, w.add(ctx, zeroFlag))).floor(ctx)))\r\n}\r\n```\r\n\r\nIt involves several costly Eval calls as well.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1667194219/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1667226599","html_url":"https://github.com/robpike/ivy/pull/148#issuecomment-1667226599","issue_url":"https://api.github.com/repos/robpike/ivy/issues/148","id":1667226599,"node_id":"IC_kwDOAZPgIc5jX9vn","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2023-08-07T05:50:04Z","updated_at":"2023-08-07T05:50:04Z","author_association":"OWNER","body":"I leave this to you.\r\n\r\nDyalog, which claims to implement the same algorithm, says\r\n\r\n⌊2.9j3.9\r\n2J4\r\n\r\nWhile ivy says\r\n\r\nfloor 2.9j3.9\r\n3j3\r\n\r\nOne of them is wrong.\r\n\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1667226599/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1667229707","html_url":"https://github.com/robpike/ivy/pull/148#issuecomment-1667229707","issue_url":"https://api.github.com/repos/robpike/ivy/issues/148","id":1667229707,"node_id":"IC_kwDOAZPgIc5jX-gL","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2023-08-07T05:54:01Z","updated_at":"2023-08-07T05:54:01Z","author_association":"OWNER","body":"It's possibly a rounding error because 0.9 is not representable exactly in a float64, while ivy uses rationals. However,\r\n\r\nfloor 2.9j2.9\r\n3j2\r\n\r\n ⌊2.9j2.9\r\n2J3\r\n\r\nwhich is peculiar.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1667229707/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}]166 57340 GET https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=11&sort=updated HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:50 GMT Etag: W/"cd476d3fc0c738cdb03fbf27db9c08c4f408316e83550630be622784016e67a3" Link: <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=10&sort=updated>; rel="prev", <https://api.github.com/repositories/26468385/issues/comments?direction=asc&page=1&sort=updated>; rel="first" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EBEF0:3358BE:665E33B2 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4987 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 13 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1667233056","html_url":"https://github.com/robpike/ivy/pull/148#issuecomment-1667233056","issue_url":"https://api.github.com/repos/robpike/ivy/issues/148","id":1667233056,"node_id":"IC_kwDOAZPgIc5jX_Ug","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"created_at":"2023-08-07T05:58:17Z","updated_at":"2023-08-07T05:58:17Z","author_association":"CONTRIBUTOR","body":"I noticed this as well. Dyalog uses `>` instead of `>=` in the following condition, deviating from the paper:\r\n\r\n```\r\n\tif isTrue(\"floor\", ctx.EvalBinary(x, \">=\", y)) {\r\n```\r\n\r\nOur current implementation follows the paper. I have not found a publicly stated reason for why Dyalog does it differently.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1667233056/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1667242693","html_url":"https://github.com/robpike/ivy/pull/148#issuecomment-1667242693","issue_url":"https://api.github.com/repos/robpike/ivy/issues/148","id":1667242693,"node_id":"IC_kwDOAZPgIc5jYBrF","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2023-08-07T06:09:16Z","updated_at":"2023-08-07T06:09:16Z","author_association":"OWNER","body":"So when it's on the diagonal, it could go either way. That makes sense. Peculiar though...\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1667242693/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1667259886","html_url":"https://github.com/robpike/ivy/pull/148#issuecomment-1667259886","issue_url":"https://api.github.com/repos/robpike/ivy/issues/148","id":1667259886,"node_id":"IC_kwDOAZPgIc5jYF3u","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"created_at":"2023-08-07T06:27:20Z","updated_at":"2023-08-07T06:27:20Z","author_association":"CONTRIBUTOR","body":"J (see playground https://www.jdoodle.com/ia/KFQ) and GNU APL both return `3j2`, in accordance with the paper.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1667259886/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1667274511","html_url":"https://github.com/robpike/ivy/pull/148#issuecomment-1667274511","issue_url":"https://api.github.com/repos/robpike/ivy/issues/148","id":1667274511,"node_id":"IC_kwDOAZPgIc5jYJcP","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2023-08-07T06:41:03Z","updated_at":"2023-08-07T06:41:03Z","author_association":"OWNER","body":"Thanks for investigating. I'll add this test case.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1667274511/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1667281860","html_url":"https://github.com/robpike/ivy/pull/148#issuecomment-1667281860","issue_url":"https://api.github.com/repos/robpike/ivy/issues/148","id":1667281860,"node_id":"IC_kwDOAZPgIc5jYLPE","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"created_at":"2023-08-07T06:47:34Z","updated_at":"2023-08-07T06:54:49Z","author_association":"CONTRIBUTOR","body":"It's indirectly covered by these test cases for `ceil`, but more test cases are a good idea, especially one explicitly for `floor`. \r\n```\r\nceil -0.5j0.5\r\n\t-1j1\r\n\r\nceil -0.5j-0.5\r\n\t-1\r\n```","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1667281860/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1673623596","html_url":"https://github.com/robpike/ivy/issues/69#issuecomment-1673623596","issue_url":"https://api.github.com/repos/robpike/ivy/issues/69","id":1673623596,"node_id":"IC_kwDOAZPgIc5jwXgs","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"created_at":"2023-08-10T17:28:54Z","updated_at":"2023-08-10T17:28:54Z","author_association":"CONTRIBUTOR","body":"> I pushed my @ implementation in #83. It's not for review, just for discussion. It does seem to work well at least for the Ivy programs I have been writing\r\n\r\n@rsc, I have [rebased](https://github.com/fzipp/ivy/tree/each_rebased) your demo branch onto master to try it out it with the latest Ivy features.\r\n\r\nI'm trying to make use of `@` in the [Game of Life in Ivy](https://github.com/robpike/ivy/discussions/139). In the original APL code, the ¨ operator is used to eliminate the repetitive `rot` operations in this part:\r\n\r\n\t+/ +/% 1 0 -1 o.flip (1 rot R) (0 rot R) (-1 rot R)\r\n\r\nI'm curious if it's feasible to use the `@` operator in this context. `1 0 -1 @rot R` unfortunately results in a matrix with dimensions `3 5 7` rather than the desired vector of length 3. I would need a way to split the 3d matrix into its constituent [major cells](https://aplwiki.com/wiki/Major_cell), but I haven't found a way to do this in Ivy.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1673623596/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1673956365","html_url":"https://github.com/robpike/ivy/pull/149#issuecomment-1673956365","issue_url":"https://api.github.com/repos/robpike/ivy/issues/149","id":1673956365,"node_id":"IC_kwDOAZPgIc5jxowN","user":{"login":"mndrix","id":43997,"node_id":"MDQ6VXNlcjQzOTk3","avatar_url":"https://avatars.githubusercontent.com/u/43997?v=4","gravatar_id":"","url":"https://api.github.com/users/mndrix","html_url":"https://github.com/mndrix","followers_url":"https://api.github.com/users/mndrix/followers","following_url":"https://api.github.com/users/mndrix/following{/other_user}","gists_url":"https://api.github.com/users/mndrix/gists{/gist_id}","starred_url":"https://api.github.com/users/mndrix/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mndrix/subscriptions","organizations_url":"https://api.github.com/users/mndrix/orgs","repos_url":"https://api.github.com/users/mndrix/repos","events_url":"https://api.github.com/users/mndrix/events{/privacy}","received_events_url":"https://api.github.com/users/mndrix/received_events","type":"User","site_admin":false},"created_at":"2023-08-10T21:41:38Z","updated_at":"2023-08-10T21:41:38Z","author_association":"CONTRIBUTOR","body":"Point taken. Since Rob used `Float64`, I assumed the 1.21 dependency was intentional. If not, I withdraw the PR.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1673956365/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1673943027","html_url":"https://github.com/robpike/ivy/pull/149#issuecomment-1673943027","issue_url":"https://api.github.com/repos/robpike/ivy/issues/149","id":1673943027,"node_id":"IC_kwDOAZPgIc5jxlfz","user":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"created_at":"2023-08-10T21:27:37Z","updated_at":"2023-08-11T03:42:54Z","author_association":"CONTRIBUTOR","body":"Note that right now, Go 1.21 and Go 1.20 are the two major Go releases supported per the [Go release policy](https://go.dev/doc/devel/release#policy). Go 1.20.x will be supported for another 6 months or so until Go 1.22.0 [comes out](https://go.dev/s/release#overview).\r\n\r\nSetting the go line to 1.21 makes that the minimum required version for this module, meaning Go users who haven't yet upgraded from Go 1.20 to 1.21 will not be able to import the latest versions of packages from this module, not unless they too upgrade their module to require 1.21.\r\n\r\nPerhaps that's fine, just wanted to point this out.\r\n\r\nAn alternative to consider is to keep the go.mod go line at a lower version (like 1.20) and use a `//go:build go1.21` build constraint in .go files that need it, and `//go:build !go1.20` that provides a fallback implementation for Go 1.20 and older. (Edit: See PR #152 that illustrates this idea.)","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1673943027/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1674178223","html_url":"https://github.com/robpike/ivy/pull/152#issuecomment-1674178223","issue_url":"https://api.github.com/repos/robpike/ivy/issues/152","id":1674178223,"node_id":"IC_kwDOAZPgIc5jye6v","user":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"created_at":"2023-08-11T03:47:11Z","updated_at":"2023-08-11T03:47:11Z","author_association":"CONTRIBUTOR","body":"I tested this on Go 1.17.13 by running `GOTOOLCHAIN=go1.17.13 go test ./...`. It fixes the build error, and all tests pass other than testdata/sys.ivy:85 (this is #151) and TestHelp (not related).","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1674178223/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1674196895","html_url":"https://github.com/robpike/ivy/pull/149#issuecomment-1674196895","issue_url":"https://api.github.com/repos/robpike/ivy/issues/149","id":1674196895,"node_id":"IC_kwDOAZPgIc5jyjef","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2023-08-11T04:26:06Z","updated_at":"2023-08-11T04:26:06Z","author_association":"OWNER","body":"This particular result was not intentional, but I was planning to move to 1.21 pretty soon. Might as well do it now!","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1674196895/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1674199331","html_url":"https://github.com/robpike/ivy/pull/153#issuecomment-1674199331","issue_url":"https://api.github.com/repos/robpike/ivy/issues/153","id":1674199331,"node_id":"IC_kwDOAZPgIc5jykEj","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2023-08-11T04:31:24Z","updated_at":"2023-08-11T04:31:24Z","author_association":"OWNER","body":"Reverted because of awful merge problems. I will restore the update when I sort it all out.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1674199331/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1674242961","html_url":"https://github.com/robpike/ivy/pull/152#issuecomment-1674242961","issue_url":"https://api.github.com/repos/robpike/ivy/issues/152","id":1674242961,"node_id":"IC_kwDOAZPgIc5jyuuR","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2023-08-11T05:53:29Z","updated_at":"2023-08-11T05:53:29Z","author_association":"OWNER","body":"Thanks but I just bumped to 1.21\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1674242961/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1674253937","html_url":"https://github.com/robpike/ivy/issues/145#issuecomment-1674253937","issue_url":"https://api.github.com/repos/robpike/ivy/issues/145","id":1674253937,"node_id":"IC_kwDOAZPgIc5jyxZx","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2023-08-11T06:11:10Z","updated_at":"2023-08-11T06:11:10Z","author_association":"OWNER","body":"Fixed by c7523a413aa10a66ee87e3a5ac5882784e0f4d5d","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1674253937/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1674261879","html_url":"https://github.com/robpike/ivy/pull/152#issuecomment-1674261879","issue_url":"https://api.github.com/repos/robpike/ivy/issues/152","id":1674261879,"node_id":"IC_kwDOAZPgIc5jyzV3","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"created_at":"2023-08-11T06:22:19Z","updated_at":"2023-08-11T06:22:19Z","author_association":"CONTRIBUTOR","body":"Just a suggestion:\r\nYou can create a `.github/workflows/build.yml` file [like this](https://github.com/fzipp/ivy-prompt/blob/main/.github/workflows/build.yml) in the repository, and GitHub will run the tests for you with the Go version specified by \"go-version\" on each push, and notify you on failure.\r\n\r\nIt being in a dotfile directory and YAML is not beautiful, but it does the job.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1674261879/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1675092911","html_url":"https://github.com/robpike/ivy/issues/150#issuecomment-1675092911","issue_url":"https://api.github.com/repos/robpike/ivy/issues/150","id":1675092911,"node_id":"IC_kwDOAZPgIc5j1-Ov","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"created_at":"2023-08-11T16:55:23Z","updated_at":"2023-08-11T17:00:55Z","author_association":"CONTRIBUTOR","body":"One test case in `sys.ivy` added by this commit reduces \"maxstack\" to 999: \r\n\r\n```\r\n)maxstack 999\r\nsys 'maxstack'\r\n\t999\r\n```\r\n\r\n`gcd` is a recursive function called with a large value (fac 11). If `sys.ivy` is run before `function.ivy` it will cause a stack overflow, because \"maxstack\" is too small. On Linux `dir.Readdirnames(0)` in `ivy_test.go` probably returns the files in a different order than the other systems.\r\n\r\nIt might be reasonable to reset the context between each test file.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1675092911/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1675197243","html_url":"https://github.com/robpike/ivy/issues/150#issuecomment-1675197243","issue_url":"https://api.github.com/repos/robpike/ivy/issues/150","id":1675197243,"node_id":"IC_kwDOAZPgIc5j2Xs7","user":{"login":"mndrix","id":43997,"node_id":"MDQ6VXNlcjQzOTk3","avatar_url":"https://avatars.githubusercontent.com/u/43997?v=4","gravatar_id":"","url":"https://api.github.com/users/mndrix","html_url":"https://github.com/mndrix","followers_url":"https://api.github.com/users/mndrix/followers","following_url":"https://api.github.com/users/mndrix/following{/other_user}","gists_url":"https://api.github.com/users/mndrix/gists{/gist_id}","starred_url":"https://api.github.com/users/mndrix/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mndrix/subscriptions","organizations_url":"https://api.github.com/users/mndrix/orgs","repos_url":"https://api.github.com/users/mndrix/repos","events_url":"https://api.github.com/users/mndrix/events{/privacy}","received_events_url":"https://api.github.com/users/mndrix/received_events","type":"User","site_admin":false},"created_at":"2023-08-11T18:25:22Z","updated_at":"2023-08-11T18:25:22Z","author_association":"CONTRIBUTOR","body":"I confirm @fzipp diagnosis. I applied the following patch to randomize test order, to uncover other inter-test dependencies. Every time that `sys.ivy` occurs before `function.ivy`, I see a failure on all platforms.\r\n\r\n```\r\ndiff --git a/ivy_test.go b/ivy_test.go\r\nindex b18bceb..e766ceb 100644\r\n--- a/ivy_test.go\r\n+++ b/ivy_test.go\r\n@@ -8,6 +8,7 @@ import (\r\n \"bytes\"\r\n \"fmt\"\r\n \"io/ioutil\"\r\n+ \"math/rand\"\r\n \"os\"\r\n \"path/filepath\"\r\n \"strings\"\r\n@@ -40,6 +41,9 @@ func TestAll(t *testing.T) {\r\n check()\r\n names, err := dir.Readdirnames(0)\r\n check()\r\n+ rand.Shuffle(len(names), func(i, j int) {\r\n+ names[i], names[j] = names[j], names[i]\r\n+ })\r\n for _, name := range names {\r\n if !strings.HasSuffix(name, \".ivy\") {\r\n continue\r\n```\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1675197243/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1675200555","html_url":"https://github.com/robpike/ivy/pull/155#issuecomment-1675200555","issue_url":"https://api.github.com/repos/robpike/ivy/issues/155","id":1675200555,"node_id":"IC_kwDOAZPgIc5j2Ygr","user":{"login":"mndrix","id":43997,"node_id":"MDQ6VXNlcjQzOTk3","avatar_url":"https://avatars.githubusercontent.com/u/43997?v=4","gravatar_id":"","url":"https://api.github.com/users/mndrix","html_url":"https://github.com/mndrix","followers_url":"https://api.github.com/users/mndrix/followers","following_url":"https://api.github.com/users/mndrix/following{/other_user}","gists_url":"https://api.github.com/users/mndrix/gists{/gist_id}","starred_url":"https://api.github.com/users/mndrix/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mndrix/subscriptions","organizations_url":"https://api.github.com/users/mndrix/orgs","repos_url":"https://api.github.com/users/mndrix/repos","events_url":"https://api.github.com/users/mndrix/events{/privacy}","received_events_url":"https://api.github.com/users/mndrix/received_events","type":"User","site_admin":false},"created_at":"2023-08-11T18:28:42Z","updated_at":"2023-08-11T18:28:42Z","author_association":"CONTRIBUTOR","body":"I confirm that this patch fixes #150 on my affected system. Thanks @fzipp ","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1675200555/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1677633647","html_url":"https://github.com/robpike/ivy/issues/69#issuecomment-1677633647","issue_url":"https://api.github.com/repos/robpike/ivy/issues/69","id":1677633647,"node_id":"IC_kwDOAZPgIc5j_qhv","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"created_at":"2023-08-14T16:12:48Z","updated_at":"2023-08-14T16:12:48Z","author_association":"CONTRIBUTOR","body":"> I'm curious if it's feasible to use the `@` operator in this context.\r\n\r\nOk, I figured it out myself:\r\n```\r\n+/% +/% 1 0 -1 @flip@ 1 0 -1 @rot R\r\n```","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1677633647/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1688963537","html_url":"https://github.com/robpike/ivy/pull/157#issuecomment-1688963537","issue_url":"https://api.github.com/repos/robpike/ivy/issues/157","id":1688963537,"node_id":"IC_kwDOAZPgIc5kq4nR","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2023-08-22T21:35:52Z","updated_at":"2023-08-22T21:35:52Z","author_association":"OWNER","body":"Ah yes!\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1688963537/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1736543319","html_url":"https://github.com/robpike/ivy/issues/158#issuecomment-1736543319","issue_url":"https://api.github.com/repos/robpike/ivy/issues/158","id":1736543319,"node_id":"IC_kwDOAZPgIc5ngYxX","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2023-09-27T01:46:26Z","updated_at":"2023-09-27T01:46:26Z","author_association":"OWNER","body":"There's a lot going on here, and some of it is caused by the peculiarities of the timezone database. I presume you're using Unix in some form, because otherwise I believe none of this will work.\r\n\r\nOne thing to understand (it's really subtle, and I am still missing some nuance; read on) is how time.Location works in Go. They are not time zones per se, they are locations in which time can be determined. Have a look:\r\n\r\n```\r\n% ivy\r\n)timezone\r\nAEST 36000\r\n\r\n)timezone \"EST\"\r\n\r\n)timezone\r\nEST -14400\r\n\r\n)timezone \"EDT\"\r\n\r\n)timezone\r\nEDT -14400\r\n```\r\n\r\nFirst, note that my timezone, AEST, prints correctly. That's a property of the system, somehow, and for the life of me I can't figure out where it comes from.\r\n\r\nSecond, note that it knows about EST and EDT but both print with the same offset, which is actually the _current_ offset to UTC at the location in which EST is a valid time zone, e.g. New York. You can see this happening a bit in the test suite, which asks the time at the Unix epoch. The test has the wrong offset for that date, and will break when the US goes back to standard time. I should probably have commented that, and will return to it then.\r\n\r\nThird, I can't explain why you see zero for CEST, but on my machine CEST is not a known zone so I can't get ivy into that state. I can do this though:\r\n\r\n```\r\n% ivy\r\n)timezone \"GMT\"\r\n\r\n)timezone\r\nGMT 3600\r\n\r\n)timezone \"UTC\"\r\n\r\n)timezone\r\nUTC 0\r\n\r\n)timezone \"Europe/Paris\"\r\n\r\n)timezone\r\nEurope/Paris 7200\r\n```\r\n\r\nTry that and see what you get. You could also try setting the TZ environment variable and explore what happens then.\r\n\r\nDespite this explanation, I do believe there are bugs, I just don't know how to deal with the inconsistencies in the timezone database and its interaction with what the local system says.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1736543319/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1736789781","html_url":"https://github.com/robpike/ivy/issues/158#issuecomment-1736789781","issue_url":"https://api.github.com/repos/robpike/ivy/issues/158","id":1736789781,"node_id":"IC_kwDOAZPgIc5nhU8V","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"created_at":"2023-09-27T06:38:03Z","updated_at":"2023-09-27T08:28:57Z","author_association":"CONTRIBUTOR","body":"I'm using macOS. If you have a macOS machine you should be able to my reproduce my behavior:\r\n\r\nSystem Settings -> General -> Date & Time\r\n- Uncheck \"Set time zone automatically using your current location\"\r\n- Set \"Closest city\" to \"Berlin - Germany\"\r\n\r\nNow the time zone should be \"Central European Summer Time\" (until Oct 29).\r\n\r\n---\r\n\r\nIn the following experiments I'll use this short Go program for comparison with Ivy:\r\n\r\n```\r\npackage main\r\n\r\nimport (\r\n\t\"fmt\"\r\n\t\"time\"\r\n)\r\n\r\nfunc main() {\r\n\tfmt.Println(time.Now().Zone())\r\n}\r\n```\r\n\r\nFirst experiment, with my system settings (location \"Berlin - Germany\"):\r\n\r\n```\r\n% go run main.go\r\nCEST 7200\r\n% ivy -e \")timezone\"\r\nCEST 0\r\n```\r\n\r\nHere, the Go program prints what I expected, because CEST is UTC+2.\r\n\r\nIn the next experiment, the time zone database doesn't seem to know about CEST and falls back to UTC if I specify TZ=CEST:\r\n\r\n```\r\n% TZ=CEST go run main.go\r\nUTC 0\r\n% TZ=CEST ivy -e \")timezone\"\r\nUTC 0\r\n```\r\n\r\nIn the next experiment both interpret TZ=CET as a location (which I'm not a fan of, but perhaps I'll have to accept it) and switch to CEST:\r\n\r\n```\r\n% TZ=CET go run main.go \r\nCEST 7200\r\n% TZ=CET ivy -e \")timezone\"\r\nCEST 0\r\n```\r\n\r\nThe output of the short Go program is the consistent one.\r\n\r\nNext experiment with TZ=GMT:\r\n\r\n```\r\n% TZ=GMT go run main.go\r\nGMT 0\r\n% TZ=GMT ivy -e \")timezone\"\r\nGMT 3600\r\n```\r\n\r\nIn my understanding GMT is defined as UTC+0 and should always have the offset 0. However, Ivy interprets it as location \"Europe/London\", which is currently on British Summer Time (BST, UTC+1) rather than GMT.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1736789781/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1736959559","html_url":"https://github.com/robpike/ivy/issues/158#issuecomment-1736959559","issue_url":"https://api.github.com/repos/robpike/ivy/issues/158","id":1736959559,"node_id":"IC_kwDOAZPgIc5nh-ZH","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2023-09-27T08:40:32Z","updated_at":"2023-09-27T08:40:32Z","author_association":"OWNER","body":"Thanks for the good report.\r\n\r\nI know what's wrong with GMT - I have it mapped to Europe/London instead of UTC - and that's trivial to fix.\r\n\r\nThe others require more investigation.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1736959559/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1737705856","html_url":"https://github.com/robpike/ivy/issues/158#issuecomment-1737705856","issue_url":"https://api.github.com/repos/robpike/ivy/issues/158","id":1737705856,"node_id":"IC_kwDOAZPgIc5nk0mA","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"created_at":"2023-09-27T16:16:57Z","updated_at":"2023-09-27T16:16:57Z","author_association":"CONTRIBUTOR","body":"> There is no general lookup mechanism from a \"Time zone abbreviation\" string to its corresponding \"UTC Offset\", at least not in Go's time package.\r\n\r\nSince this lookup direction doesn't exist in the public API, I wondered if Go manages to parse \"2023-09-27 18:00:00 CEST\" correctly. So I ran the following program:\r\n\r\n```\r\n\r\nimport (\r\n\t\"fmt\"\r\n\t\"log\"\r\n\t\"time\"\r\n)\r\n\r\nfunc main() {\r\n\tt, err := time.Parse(\"2006-01-02 15:04:05 MST\", \"2023-09-27 18:00:00 CEST\")\r\n\tif err != nil {\r\n\t\tlog.Fatal(err)\r\n\t}\r\n\tfmt.Println(t)\r\n}\r\n```\r\nThe output\r\n\r\n```\r\n2023-09-27 18:00:00 +0200 CEST\r\n```\r\n\r\nis correct. Then I changed my location from \"Berlin - Germany\" to \"New York, NY - United States\" in the macOS system settings, and now the output is wrong!\r\n\r\n```\r\n2023-09-27 18:00:00 +0000 CEST\r\n```\r\n\r\nI find it surprising that Go's time parsing, when provided with an explicit time zone, is dependent on the location setting.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1737705856/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1737629126","html_url":"https://github.com/robpike/ivy/issues/158#issuecomment-1737629126","issue_url":"https://api.github.com/repos/robpike/ivy/issues/158","id":1737629126,"node_id":"IC_kwDOAZPgIc5nkh3G","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"created_at":"2023-09-27T15:28:33Z","updated_at":"2023-09-27T16:39:13Z","author_association":"CONTRIBUTOR","body":"The following is my understanding when looking at this table: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List\r\n\r\n- The TZ database maps from the column \"TZ identifier\" (I would have called it \"Location\") to the current \"Time zone abbreviation\" along with its \"UTC Offset\".\r\n\r\n- Some \"Time zone abbreviations\" (such as \"CET\") also live a double life as \"TZ identifiers\" in the TZ database, which is unfortunate in my opinion.\r\n\r\n- There is no general lookup mechanism from a \"Time zone abbreviation\" string to its corresponding \"UTC Offset\", at least not in Go's time package. Such a lookup is required to map \"CEST\" to its corresponding offset. However, Ivy attempts to perform this lookup via time.LoadLocation (which is not the right lookup mechanism for this direction) and fails, ultimately defaulting to 0.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1737629126/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1738071131","html_url":"https://github.com/robpike/ivy/issues/158#issuecomment-1738071131","issue_url":"https://api.github.com/repos/robpike/ivy/issues/158","id":1738071131,"node_id":"IC_kwDOAZPgIc5nmNxb","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2023-09-27T21:00:28Z","updated_at":"2023-09-27T21:00:28Z","author_association":"OWNER","body":"Yes, you've put your finger on something that's at the heart of this. I plan to investigate with the Go team.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1738071131/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1744351713","html_url":"https://github.com/robpike/ivy/issues/158#issuecomment-1744351713","issue_url":"https://api.github.com/repos/robpike/ivy/issues/158","id":1744351713,"node_id":"IC_kwDOAZPgIc5n-LHh","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2023-10-03T07:22:32Z","updated_at":"2023-10-03T07:22:32Z","author_association":"OWNER","body":"https://github.com/golang/go/issues/63345","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/1744351713/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/2059562060","html_url":"https://github.com/robpike/ivy/pull/83#issuecomment-2059562060","issue_url":"https://api.github.com/repos/robpike/ivy/issues/83","id":2059562060,"node_id":"IC_kwDOAZPgIc56wmxM","user":{"login":"bear8642","id":16313068,"node_id":"MDQ6VXNlcjE2MzEzMDY4","avatar_url":"https://avatars.githubusercontent.com/u/16313068?v=4","gravatar_id":"","url":"https://api.github.com/users/bear8642","html_url":"https://github.com/bear8642","followers_url":"https://api.github.com/users/bear8642/followers","following_url":"https://api.github.com/users/bear8642/following{/other_user}","gists_url":"https://api.github.com/users/bear8642/gists{/gist_id}","starred_url":"https://api.github.com/users/bear8642/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bear8642/subscriptions","organizations_url":"https://api.github.com/users/bear8642/orgs","repos_url":"https://api.github.com/users/bear8642/repos","events_url":"https://api.github.com/users/bear8642/events{/privacy}","received_events_url":"https://api.github.com/users/bear8642/received_events","type":"User","site_admin":false},"created_at":"2024-04-16T17:11:40Z","updated_at":"2024-04-16T17:11:40Z","author_association":"NONE","body":"These seem fairly similar to K's [each-left and each-right](https://code.kx.com/q/ref/maps/#each-left-and-each-right), which you can model in APL using the [rank(⍤) operator](https://aplwiki.com/wiki/Rank_(operator)). Were you aware of those when you were designing these?\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/2059562060/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/2059995144","html_url":"https://github.com/robpike/ivy/pull/83#issuecomment-2059995144","issue_url":"https://api.github.com/repos/robpike/ivy/issues/83","id":2059995144,"node_id":"IC_kwDOAZPgIc56yQgI","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"created_at":"2024-04-16T22:06:45Z","updated_at":"2024-04-16T22:06:45Z","author_association":"OWNER","body":"The rank operator applies to \"functions\" as a first-class data type, which Ivy does not have. I'd like it to have them but it's a big change internally and I've never managed to make it happen. It may happen one day. I still think about it.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/2059995144/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/2108195162","html_url":"https://github.com/robpike/ivy/issues/69#issuecomment-2108195162","issue_url":"https://api.github.com/repos/robpike/ivy/issues/69","id":2108195162,"node_id":"IC_kwDOAZPgIc59qIFa","user":{"login":"superfrink","id":1542770,"node_id":"MDQ6VXNlcjE1NDI3NzA=","avatar_url":"https://avatars.githubusercontent.com/u/1542770?v=4","gravatar_id":"","url":"https://api.github.com/users/superfrink","html_url":"https://github.com/superfrink","followers_url":"https://api.github.com/users/superfrink/followers","following_url":"https://api.github.com/users/superfrink/following{/other_user}","gists_url":"https://api.github.com/users/superfrink/gists{/gist_id}","starred_url":"https://api.github.com/users/superfrink/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/superfrink/subscriptions","organizations_url":"https://api.github.com/users/superfrink/orgs","repos_url":"https://api.github.com/users/superfrink/repos","events_url":"https://api.github.com/users/superfrink/events{/privacy}","received_events_url":"https://api.github.com/users/superfrink/received_events","type":"User","site_admin":false},"created_at":"2024-05-13T16:48:07Z","updated_at":"2024-05-13T16:48:07Z","author_association":"NONE","body":"I was looking for an \"each\" for a user defined operation and added the `opmap` keyword.\r\n\r\n```\r\n# mulunder20 returns the multiples of the input values that are under under 20.\r\nop mulunder20 M = ((T mod M) == 0) sel T = -1 drop iota 20\r\n\r\nopmap mulunder20 3\r\n3 6 9 12 15 18\r\n\r\nopmap mulunder20 3 5\r\n(3 6 9 12 15 18) (5 10 15)\r\n```\r\n\r\nIt does seem like it could be adding complexity and it might be better to make user defined operations first-class.\r\n\r\nPR: https://github.com/superfrink/ivy/pull/1","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/comments/2108195162/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}]145 376926 GET https://api.github.com/repos/robpike/ivy/issues/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:51 GMT Etag: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" Link: <https://api.github.com/repositories/26468385/issues/events?page=2&per_page=100>; rel="next", <https://api.github.com/repositories/26468385/issues/events?page=5&per_page=100>; rel="last" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EC00B:335AA2:665E33B2 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4986 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 14 X-Xss-Protection: 0 [{"id":10543516825,"node_id":"CE_lADOAZPgIc5yreMZzwAAAAJ0cUyZ","url":"https://api.github.com/repos/robpike/ivy/issues/events/10543516825","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-10-03T21:20:36Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/159","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/159/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/159/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/159/events","html_url":"https://github.com/robpike/ivy/pull/159","id":1923998489,"node_id":"PR_kwDOAZPgIc5byJA0","number":159,"title":"Fix fmt.Sprint typo","user":{"login":"mndrix","id":43997,"node_id":"MDQ6VXNlcjQzOTk3","avatar_url":"https://avatars.githubusercontent.com/u/43997?v=4","gravatar_id":"","url":"https://api.github.com/users/mndrix","html_url":"https://github.com/mndrix","followers_url":"https://api.github.com/users/mndrix/followers","following_url":"https://api.github.com/users/mndrix/following{/other_user}","gists_url":"https://api.github.com/users/mndrix/gists{/gist_id}","starred_url":"https://api.github.com/users/mndrix/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mndrix/subscriptions","organizations_url":"https://api.github.com/users/mndrix/orgs","repos_url":"https://api.github.com/users/mndrix/repos","events_url":"https://api.github.com/users/mndrix/events{/privacy}","received_events_url":"https://api.github.com/users/mndrix/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-10-03T12:15:08Z","updated_at":"2023-10-03T21:20:36Z","closed_at":"2023-10-03T21:20:36Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/159","html_url":"https://github.com/robpike/ivy/pull/159","diff_url":"https://github.com/robpike/ivy/pull/159.diff","patch_url":"https://github.com/robpike/ivy/pull/159.patch","merged_at":"2023-10-03T21:20:36Z"},"body":"Noticed via\r\n\r\n\t$ go test ./...\r\n\t# robpike.io/ivy/value\r\n\tvalue/sys.go:159:25: fmt.Sprint call has possible Printf\r\n\tformatting directive %d","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/159/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/159/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10543516816,"node_id":"ME_lADOAZPgIc5yreMZzwAAAAJ0cUyQ","url":"https://api.github.com/repos/robpike/ivy/issues/events/10543516816","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"25fc5bceedb22fe1f1de97824342cf7e77edb89a","commit_url":"https://api.github.com/repos/robpike/ivy/commits/25fc5bceedb22fe1f1de97824342cf7e77edb89a","created_at":"2023-10-03T21:20:36Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/159","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/159/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/159/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/159/events","html_url":"https://github.com/robpike/ivy/pull/159","id":1923998489,"node_id":"PR_kwDOAZPgIc5byJA0","number":159,"title":"Fix fmt.Sprint typo","user":{"login":"mndrix","id":43997,"node_id":"MDQ6VXNlcjQzOTk3","avatar_url":"https://avatars.githubusercontent.com/u/43997?v=4","gravatar_id":"","url":"https://api.github.com/users/mndrix","html_url":"https://github.com/mndrix","followers_url":"https://api.github.com/users/mndrix/followers","following_url":"https://api.github.com/users/mndrix/following{/other_user}","gists_url":"https://api.github.com/users/mndrix/gists{/gist_id}","starred_url":"https://api.github.com/users/mndrix/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mndrix/subscriptions","organizations_url":"https://api.github.com/users/mndrix/orgs","repos_url":"https://api.github.com/users/mndrix/repos","events_url":"https://api.github.com/users/mndrix/events{/privacy}","received_events_url":"https://api.github.com/users/mndrix/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-10-03T12:15:08Z","updated_at":"2023-10-03T21:20:36Z","closed_at":"2023-10-03T21:20:36Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/159","html_url":"https://github.com/robpike/ivy/pull/159","diff_url":"https://github.com/robpike/ivy/pull/159.diff","patch_url":"https://github.com/robpike/ivy/pull/159.patch","merged_at":"2023-10-03T21:20:36Z"},"body":"Noticed via\r\n\r\n\t$ go test ./...\r\n\t# robpike.io/ivy/value\r\n\tvalue/sys.go:159:25: fmt.Sprint call has possible Printf\r\n\tformatting directive %d","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/159/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/159/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10543516807,"node_id":"REFE_lADOAZPgIc5yreMZzwAAAAJ0cUyH","url":"https://api.github.com/repos/robpike/ivy/issues/events/10543516807","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"25fc5bceedb22fe1f1de97824342cf7e77edb89a","commit_url":"https://api.github.com/repos/robpike/ivy/commits/25fc5bceedb22fe1f1de97824342cf7e77edb89a","created_at":"2023-10-03T21:20:36Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/159","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/159/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/159/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/159/events","html_url":"https://github.com/robpike/ivy/pull/159","id":1923998489,"node_id":"PR_kwDOAZPgIc5byJA0","number":159,"title":"Fix fmt.Sprint typo","user":{"login":"mndrix","id":43997,"node_id":"MDQ6VXNlcjQzOTk3","avatar_url":"https://avatars.githubusercontent.com/u/43997?v=4","gravatar_id":"","url":"https://api.github.com/users/mndrix","html_url":"https://github.com/mndrix","followers_url":"https://api.github.com/users/mndrix/followers","following_url":"https://api.github.com/users/mndrix/following{/other_user}","gists_url":"https://api.github.com/users/mndrix/gists{/gist_id}","starred_url":"https://api.github.com/users/mndrix/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mndrix/subscriptions","organizations_url":"https://api.github.com/users/mndrix/orgs","repos_url":"https://api.github.com/users/mndrix/repos","events_url":"https://api.github.com/users/mndrix/events{/privacy}","received_events_url":"https://api.github.com/users/mndrix/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-10-03T12:15:08Z","updated_at":"2023-10-03T21:20:36Z","closed_at":"2023-10-03T21:20:36Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/159","html_url":"https://github.com/robpike/ivy/pull/159","diff_url":"https://github.com/robpike/ivy/pull/159.diff","patch_url":"https://github.com/robpike/ivy/pull/159.patch","merged_at":"2023-10-03T21:20:36Z"},"body":"Noticed via\r\n\r\n\t$ go test ./...\r\n\t# robpike.io/ivy/value\r\n\tvalue/sys.go:159:25: fmt.Sprint call has possible Printf\r\n\tformatting directive %d","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/159/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/159/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10521697235,"node_id":"REFE_lADOAZPgIc5yA2XXzwAAAAJzJFvT","url":"https://api.github.com/repos/robpike/ivy/issues/events/10521697235","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"86fbca480032c5ebcbf91b48f557cb500aebf9c3","commit_url":"https://api.github.com/repos/robpike/ivy/commits/86fbca480032c5ebcbf91b48f557cb500aebf9c3","created_at":"2023-10-02T03:57:27Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/158","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/158/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/158/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/158/events","html_url":"https://github.com/robpike/ivy/issues/158","id":1912825303,"node_id":"I_kwDOAZPgIc5yA2XX","number":158,"title":"time zones not working correctly","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":7,"created_at":"2023-09-26T07:04:57Z","updated_at":"2023-10-03T07:22:32Z","closed_at":null,"author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"I start Ivy and enter:\r\n\r\n```\r\n)timezone \r\n\tCEST 0\r\n```\r\n\r\nCEST is correct for my location, but offset 0 isn't. CEST is UTC+2, so the offset should be 7200.\r\n\r\nNow I switch the time zone:\r\n\r\n```\r\n)timezone \"CET\"\r\n\tCET 7200\r\n```\r\n\r\nCET is expected, but offset 7200 isn't. CET is UTC+1, so the offset should be 3600.\r\n\r\nNow I want to switch back to the original time zone:\r\n\r\n```\r\n)timezone \"CEST\"\r\n\tno such time zone: no such time zone\r\n```\r\n\r\nEven though Ivy told me this zone name at the beginning, so it should be known.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/158/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/158/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10521556656,"node_id":"REFE_lADOAZPgIc5yA2XXzwAAAAJzIjaw","url":"https://api.github.com/repos/robpike/ivy/issues/events/10521556656","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"f0eb8600456919d8988a5d86358b66b5cbde70a5","commit_url":"https://api.github.com/repos/robpike/ivy/commits/f0eb8600456919d8988a5d86358b66b5cbde70a5","created_at":"2023-10-02T03:18:45Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/158","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/158/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/158/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/158/events","html_url":"https://github.com/robpike/ivy/issues/158","id":1912825303,"node_id":"I_kwDOAZPgIc5yA2XX","number":158,"title":"time zones not working correctly","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":7,"created_at":"2023-09-26T07:04:57Z","updated_at":"2023-10-03T07:22:32Z","closed_at":null,"author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"I start Ivy and enter:\r\n\r\n```\r\n)timezone \r\n\tCEST 0\r\n```\r\n\r\nCEST is correct for my location, but offset 0 isn't. CEST is UTC+2, so the offset should be 7200.\r\n\r\nNow I switch the time zone:\r\n\r\n```\r\n)timezone \"CET\"\r\n\tCET 7200\r\n```\r\n\r\nCET is expected, but offset 7200 isn't. CET is UTC+1, so the offset should be 3600.\r\n\r\nNow I want to switch back to the original time zone:\r\n\r\n```\r\n)timezone \"CEST\"\r\n\tno such time zone: no such time zone\r\n```\r\n\r\nEven though Ivy told me this zone name at the beginning, so it should be known.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/158/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/158/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10469377904,"node_id":"CE_lADOAZPgIc5tG8j_zwAAAAJwBgdw","url":"https://api.github.com/repos/robpike/ivy/issues/events/10469377904","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"ead7718d17fcfb6c524e2a6883c884c24893edf1","commit_url":"https://api.github.com/repos/robpike/ivy/commits/ead7718d17fcfb6c524e2a6883c884c24893edf1","created_at":"2023-09-26T02:57:24Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/135","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/135/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/135/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/135/events","html_url":"https://github.com/robpike/ivy/issues/135","id":1830537471,"node_id":"I_kwDOAZPgIc5tG8j_","number":135,"title":"time zone support","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-08-01T06:14:24Z","updated_at":"2023-09-26T02:57:24Z","closed_at":"2023-09-26T02:57:24Z","author_association":"OWNER","active_lock_reason":null,"body":"The new time facilities should understand (to some extent at least) time zones.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/135/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/135/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":10163376549,"node_id":"CE_lADOAZPgIc5u-ePTzwAAAAJdyNGl","url":"https://api.github.com/repos/robpike/ivy/issues/events/10163376549","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-08-22T21:36:47Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/156","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/156/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/156/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/156/events","html_url":"https://github.com/robpike/ivy/pull/156","id":1861870547,"node_id":"PR_kwDOAZPgIc5YhUn3","number":156,"title":"Correct spelling","user":{"login":"SamuelMarks","id":807580,"node_id":"MDQ6VXNlcjgwNzU4MA==","avatar_url":"https://avatars.githubusercontent.com/u/807580?v=4","gravatar_id":"","url":"https://api.github.com/users/SamuelMarks","html_url":"https://github.com/SamuelMarks","followers_url":"https://api.github.com/users/SamuelMarks/followers","following_url":"https://api.github.com/users/SamuelMarks/following{/other_user}","gists_url":"https://api.github.com/users/SamuelMarks/gists{/gist_id}","starred_url":"https://api.github.com/users/SamuelMarks/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SamuelMarks/subscriptions","organizations_url":"https://api.github.com/users/SamuelMarks/orgs","repos_url":"https://api.github.com/users/SamuelMarks/repos","events_url":"https://api.github.com/users/SamuelMarks/events{/privacy}","received_events_url":"https://api.github.com/users/SamuelMarks/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-08-22T17:05:29Z","updated_at":"2023-08-22T21:36:47Z","closed_at":"2023-08-22T21:36:47Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/156","html_url":"https://github.com/robpike/ivy/pull/156","diff_url":"https://github.com/robpike/ivy/pull/156.diff","patch_url":"https://github.com/robpike/ivy/pull/156.patch","merged_at":"2023-08-22T21:36:47Z"},"body":null,"reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/156/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/156/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10163376534,"node_id":"ME_lADOAZPgIc5u-ePTzwAAAAJdyNGW","url":"https://api.github.com/repos/robpike/ivy/issues/events/10163376534","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"d8b6bd03456731e29a54a274a0fb29333cb7f0f6","commit_url":"https://api.github.com/repos/robpike/ivy/commits/d8b6bd03456731e29a54a274a0fb29333cb7f0f6","created_at":"2023-08-22T21:36:47Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/156","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/156/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/156/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/156/events","html_url":"https://github.com/robpike/ivy/pull/156","id":1861870547,"node_id":"PR_kwDOAZPgIc5YhUn3","number":156,"title":"Correct spelling","user":{"login":"SamuelMarks","id":807580,"node_id":"MDQ6VXNlcjgwNzU4MA==","avatar_url":"https://avatars.githubusercontent.com/u/807580?v=4","gravatar_id":"","url":"https://api.github.com/users/SamuelMarks","html_url":"https://github.com/SamuelMarks","followers_url":"https://api.github.com/users/SamuelMarks/followers","following_url":"https://api.github.com/users/SamuelMarks/following{/other_user}","gists_url":"https://api.github.com/users/SamuelMarks/gists{/gist_id}","starred_url":"https://api.github.com/users/SamuelMarks/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SamuelMarks/subscriptions","organizations_url":"https://api.github.com/users/SamuelMarks/orgs","repos_url":"https://api.github.com/users/SamuelMarks/repos","events_url":"https://api.github.com/users/SamuelMarks/events{/privacy}","received_events_url":"https://api.github.com/users/SamuelMarks/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-08-22T17:05:29Z","updated_at":"2023-08-22T21:36:47Z","closed_at":"2023-08-22T21:36:47Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/156","html_url":"https://github.com/robpike/ivy/pull/156","diff_url":"https://github.com/robpike/ivy/pull/156.diff","patch_url":"https://github.com/robpike/ivy/pull/156.patch","merged_at":"2023-08-22T21:36:47Z"},"body":null,"reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/156/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/156/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10163376529,"node_id":"REFE_lADOAZPgIc5u-ePTzwAAAAJdyNGR","url":"https://api.github.com/repos/robpike/ivy/issues/events/10163376529","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"d8b6bd03456731e29a54a274a0fb29333cb7f0f6","commit_url":"https://api.github.com/repos/robpike/ivy/commits/d8b6bd03456731e29a54a274a0fb29333cb7f0f6","created_at":"2023-08-22T21:36:47Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/156","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/156/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/156/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/156/events","html_url":"https://github.com/robpike/ivy/pull/156","id":1861870547,"node_id":"PR_kwDOAZPgIc5YhUn3","number":156,"title":"Correct spelling","user":{"login":"SamuelMarks","id":807580,"node_id":"MDQ6VXNlcjgwNzU4MA==","avatar_url":"https://avatars.githubusercontent.com/u/807580?v=4","gravatar_id":"","url":"https://api.github.com/users/SamuelMarks","html_url":"https://github.com/SamuelMarks","followers_url":"https://api.github.com/users/SamuelMarks/followers","following_url":"https://api.github.com/users/SamuelMarks/following{/other_user}","gists_url":"https://api.github.com/users/SamuelMarks/gists{/gist_id}","starred_url":"https://api.github.com/users/SamuelMarks/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SamuelMarks/subscriptions","organizations_url":"https://api.github.com/users/SamuelMarks/orgs","repos_url":"https://api.github.com/users/SamuelMarks/repos","events_url":"https://api.github.com/users/SamuelMarks/events{/privacy}","received_events_url":"https://api.github.com/users/SamuelMarks/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-08-22T17:05:29Z","updated_at":"2023-08-22T21:36:47Z","closed_at":"2023-08-22T21:36:47Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/156","html_url":"https://github.com/robpike/ivy/pull/156","diff_url":"https://github.com/robpike/ivy/pull/156.diff","patch_url":"https://github.com/robpike/ivy/pull/156.patch","merged_at":"2023-08-22T21:36:47Z"},"body":null,"reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/156/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/156/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10163371026,"node_id":"CE_lADOAZPgIc5u-fZ_zwAAAAJdyLwS","url":"https://api.github.com/repos/robpike/ivy/issues/events/10163371026","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-08-22T21:35:55Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/157","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/157/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/157/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/157/events","html_url":"https://github.com/robpike/ivy/pull/157","id":1861875327,"node_id":"PR_kwDOAZPgIc5YhVqh","number":157,"title":"[run/time_unix.go] Support all current and future UNIX variations","user":{"login":"SamuelMarks","id":807580,"node_id":"MDQ6VXNlcjgwNzU4MA==","avatar_url":"https://avatars.githubusercontent.com/u/807580?v=4","gravatar_id":"","url":"https://api.github.com/users/SamuelMarks","html_url":"https://github.com/SamuelMarks","followers_url":"https://api.github.com/users/SamuelMarks/followers","following_url":"https://api.github.com/users/SamuelMarks/following{/other_user}","gists_url":"https://api.github.com/users/SamuelMarks/gists{/gist_id}","starred_url":"https://api.github.com/users/SamuelMarks/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SamuelMarks/subscriptions","organizations_url":"https://api.github.com/users/SamuelMarks/orgs","repos_url":"https://api.github.com/users/SamuelMarks/repos","events_url":"https://api.github.com/users/SamuelMarks/events{/privacy}","received_events_url":"https://api.github.com/users/SamuelMarks/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-08-22T17:09:07Z","updated_at":"2023-08-22T21:35:55Z","closed_at":"2023-08-22T21:35:54Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/157","html_url":"https://github.com/robpike/ivy/pull/157","diff_url":"https://github.com/robpike/ivy/pull/157.diff","patch_url":"https://github.com/robpike/ivy/pull/157.patch","merged_at":"2023-08-22T21:35:54Z"},"body":"Thanks to your issue from 6 years ago https://github.com/golang/go/issues/20322","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/157/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/157/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10163371009,"node_id":"ME_lADOAZPgIc5u-fZ_zwAAAAJdyLwB","url":"https://api.github.com/repos/robpike/ivy/issues/events/10163371009","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"26507895fa7eea9691fba3155aeab06aceef9a55","commit_url":"https://api.github.com/repos/robpike/ivy/commits/26507895fa7eea9691fba3155aeab06aceef9a55","created_at":"2023-08-22T21:35:54Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/157","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/157/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/157/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/157/events","html_url":"https://github.com/robpike/ivy/pull/157","id":1861875327,"node_id":"PR_kwDOAZPgIc5YhVqh","number":157,"title":"[run/time_unix.go] Support all current and future UNIX variations","user":{"login":"SamuelMarks","id":807580,"node_id":"MDQ6VXNlcjgwNzU4MA==","avatar_url":"https://avatars.githubusercontent.com/u/807580?v=4","gravatar_id":"","url":"https://api.github.com/users/SamuelMarks","html_url":"https://github.com/SamuelMarks","followers_url":"https://api.github.com/users/SamuelMarks/followers","following_url":"https://api.github.com/users/SamuelMarks/following{/other_user}","gists_url":"https://api.github.com/users/SamuelMarks/gists{/gist_id}","starred_url":"https://api.github.com/users/SamuelMarks/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SamuelMarks/subscriptions","organizations_url":"https://api.github.com/users/SamuelMarks/orgs","repos_url":"https://api.github.com/users/SamuelMarks/repos","events_url":"https://api.github.com/users/SamuelMarks/events{/privacy}","received_events_url":"https://api.github.com/users/SamuelMarks/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-08-22T17:09:07Z","updated_at":"2023-08-22T21:35:55Z","closed_at":"2023-08-22T21:35:54Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/157","html_url":"https://github.com/robpike/ivy/pull/157","diff_url":"https://github.com/robpike/ivy/pull/157.diff","patch_url":"https://github.com/robpike/ivy/pull/157.patch","merged_at":"2023-08-22T21:35:54Z"},"body":"Thanks to your issue from 6 years ago https://github.com/golang/go/issues/20322","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/157/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/157/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10163370996,"node_id":"REFE_lADOAZPgIc5u-fZ_zwAAAAJdyLv0","url":"https://api.github.com/repos/robpike/ivy/issues/events/10163370996","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"26507895fa7eea9691fba3155aeab06aceef9a55","commit_url":"https://api.github.com/repos/robpike/ivy/commits/26507895fa7eea9691fba3155aeab06aceef9a55","created_at":"2023-08-22T21:35:54Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/157","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/157/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/157/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/157/events","html_url":"https://github.com/robpike/ivy/pull/157","id":1861875327,"node_id":"PR_kwDOAZPgIc5YhVqh","number":157,"title":"[run/time_unix.go] Support all current and future UNIX variations","user":{"login":"SamuelMarks","id":807580,"node_id":"MDQ6VXNlcjgwNzU4MA==","avatar_url":"https://avatars.githubusercontent.com/u/807580?v=4","gravatar_id":"","url":"https://api.github.com/users/SamuelMarks","html_url":"https://github.com/SamuelMarks","followers_url":"https://api.github.com/users/SamuelMarks/followers","following_url":"https://api.github.com/users/SamuelMarks/following{/other_user}","gists_url":"https://api.github.com/users/SamuelMarks/gists{/gist_id}","starred_url":"https://api.github.com/users/SamuelMarks/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SamuelMarks/subscriptions","organizations_url":"https://api.github.com/users/SamuelMarks/orgs","repos_url":"https://api.github.com/users/SamuelMarks/repos","events_url":"https://api.github.com/users/SamuelMarks/events{/privacy}","received_events_url":"https://api.github.com/users/SamuelMarks/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-08-22T17:09:07Z","updated_at":"2023-08-22T21:35:55Z","closed_at":"2023-08-22T21:35:54Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/157","html_url":"https://github.com/robpike/ivy/pull/157","diff_url":"https://github.com/robpike/ivy/pull/157.diff","patch_url":"https://github.com/robpike/ivy/pull/157.patch","merged_at":"2023-08-22T21:35:54Z"},"body":"Thanks to your issue from 6 years ago https://github.com/golang/go/issues/20322","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/157/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/157/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10079294783,"node_id":"HRDE_lADOAZPgIc5uGpYTzwAAAAJYxdU_","url":"https://api.github.com/repos/robpike/ivy/issues/events/10079294783","actor":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2023-08-13T07:54:27Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/155","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/155/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/155/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/155/events","html_url":"https://github.com/robpike/ivy/pull/155","id":1847236115,"node_id":"PR_kwDOAZPgIc5Xv6c4","number":155,"title":"ivy: reset 'maxstack' between test runs","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-08-11T18:14:12Z","updated_at":"2023-08-13T07:54:27Z","closed_at":"2023-08-11T21:30:28Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/155","html_url":"https://github.com/robpike/ivy/pull/155","diff_url":"https://github.com/robpike/ivy/pull/155.diff","patch_url":"https://github.com/robpike/ivy/pull/155.patch","merged_at":"2023-08-11T21:30:28Z"},"body":"This ensures that tests are independent of the execution order of test files.\r\n\r\nFixes #150","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/155/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/155/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10079294728,"node_id":"HRDE_lADOAZPgIc5tkSe-zwAAAAJYxdUI","url":"https://api.github.com/repos/robpike/ivy/issues/events/10079294728","actor":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2023-08-13T07:54:25Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/148","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/148/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/148/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/148/events","html_url":"https://github.com/robpike/ivy/pull/148","id":1838229438,"node_id":"PR_kwDOAZPgIc5XRYPZ","number":148,"title":"ivy: implement 'floor' and 'ceil' for complex numbers","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":10,"created_at":"2023-08-06T14:27:35Z","updated_at":"2023-08-13T07:54:25Z","closed_at":"2023-08-07T05:36:44Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/148","html_url":"https://github.com/robpike/ivy/pull/148","diff_url":"https://github.com/robpike/ivy/pull/148.diff","patch_url":"https://github.com/robpike/ivy/pull/148.patch","merged_at":"2023-08-07T05:36:44Z"},"body":"The implementation uses the definition of 'floor' and 'ceil' for complex numbers set by\r\n\r\n\tMcDonnell, E. E. \"Complex Floor, APL Congress 73.\" (1973).\r\n\thttps://www.jsoftware.com/papers/eem/complexfloor.htm\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/148/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/148/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10079294689,"node_id":"HRDE_lADOAZPgIc5tiNlUzwAAAAJYxdTh","url":"https://api.github.com/repos/robpike/ivy/issues/events/10079294689","actor":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2023-08-13T07:54:23Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/144","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/144/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/144/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/144/events","html_url":"https://github.com/robpike/ivy/pull/144","id":1837685076,"node_id":"PR_kwDOAZPgIc5XPyjS","number":144,"title":"ivy: add a missing line in the help text about user-defined operators","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-08-05T10:24:35Z","updated_at":"2023-08-13T07:54:23Z","closed_at":"2023-08-05T10:48:56Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/144","html_url":"https://github.com/robpike/ivy/pull/144","diff_url":"https://github.com/robpike/ivy/pull/144.diff","patch_url":"https://github.com/robpike/ivy/pull/144.patch","merged_at":"2023-08-05T10:48:56Z"},"body":"The example in the help text about global variables in user-defined operators was lacking the actual operator calls.\r\nWithout this line, the described result wouldn't be produced.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/144/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/144/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10079294622,"node_id":"HRDE_lADOAZPgIc5thEemzwAAAAJYxdSe","url":"https://api.github.com/repos/robpike/ivy/issues/events/10079294622","actor":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2023-08-13T07:54:20Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/142","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/142/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/142/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/142/events","html_url":"https://github.com/robpike/ivy/pull/142","id":1837385638,"node_id":"PR_kwDOAZPgIc5XO0eU","number":142,"title":"ivy: implement 'sgn' for complex numbers","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2023-08-04T21:56:26Z","updated_at":"2023-08-13T07:54:20Z","closed_at":"2023-08-05T06:34:08Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/142","html_url":"https://github.com/robpike/ivy/pull/142","diff_url":"https://github.com/robpike/ivy/pull/142.diff","patch_url":"https://github.com/robpike/ivy/pull/142.patch","merged_at":"2023-08-05T06:34:08Z"},"body":"The generalization of the signum function for complex numbers is\r\n\r\nsgn z = z/|z| if z≠0, and 0 if z=0\r\n\r\nSee https://en.wikipedia.org/wiki/Sign_function#Complex_signum","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/142/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/142/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10075436308,"node_id":"HRDE_lADOAZPgIc5uCnLzzwAAAAJYivUU","url":"https://api.github.com/repos/robpike/ivy/issues/events/10075436308","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2023-08-12T03:57:39Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/153","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/153/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/153/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/153/events","html_url":"https://github.com/robpike/ivy/pull/153","id":1846178547,"node_id":"PR_kwDOAZPgIc5XsS6U","number":153,"title":"Revert \"Require Go 1.21\"","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-08-11T04:28:56Z","updated_at":"2023-08-12T03:57:39Z","closed_at":"2023-08-11T04:29:09Z","author_association":"OWNER","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/153","html_url":"https://github.com/robpike/ivy/pull/153","diff_url":"https://github.com/robpike/ivy/pull/153.diff","patch_url":"https://github.com/robpike/ivy/pull/153.patch","merged_at":"2023-08-11T04:29:09Z"},"body":"Reverts robpike/ivy#149","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/153/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/153/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10074542669,"node_id":"CE_lADOAZPgIc5uEkr9zwAAAAJYfVJN","url":"https://api.github.com/repos/robpike/ivy/issues/events/10074542669","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"588d28d1e6122d1890422ed962b3fd4d54e02fa2","commit_url":"https://api.github.com/repos/robpike/ivy/commits/588d28d1e6122d1890422ed962b3fd4d54e02fa2","created_at":"2023-08-11T23:41:15Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/154","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/154/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/154/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/154/events","html_url":"https://github.com/robpike/ivy/issues/154","id":1846692605,"node_id":"I_kwDOAZPgIc5uEkr9","number":154,"title":"`mix` and `split` are not inverses of each other","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-08-11T11:52:56Z","updated_at":"2023-08-11T23:41:15Z","closed_at":"2023-08-11T23:41:15Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"`mix` and `split` are supposed to be each other's inverses, but currently they are not:\r\n\r\n```\r\nA = 3 3 3 rho iota 9; A\r\n\t1 2 3\r\n\t4 5 6\r\n\t7 8 9\r\n\t\r\n\t1 2 3\r\n\t4 5 6\r\n\t7 8 9\r\n\t\r\n\t1 2 3\r\n\t4 5 6\r\n\t7 8 9\r\nsplit A\r\n\t(1 2 3 4 5 6 7 8 9) (1 2 3 4 5 6 7 8 9) (1 2 3 4 5 6 7 8 9)\r\nmix split A\r\n\t1 2 3 4 5 6 7 8 9\r\n\t1 2 3 4 5 6 7 8 9\r\n\t1 2 3 4 5 6 7 8 9\r\n```\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/154/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/154/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":10074388113,"node_id":"REFE_lADOAZPgIc5uEkr9zwAAAAJYevaR","url":"https://api.github.com/repos/robpike/ivy/issues/events/10074388113","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"c694a82ae4e33cd88544f6ec2aaf5f7dff172a37","commit_url":"https://api.github.com/repos/robpike/ivy/commits/c694a82ae4e33cd88544f6ec2aaf5f7dff172a37","created_at":"2023-08-11T23:08:33Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/154","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/154/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/154/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/154/events","html_url":"https://github.com/robpike/ivy/issues/154","id":1846692605,"node_id":"I_kwDOAZPgIc5uEkr9","number":154,"title":"`mix` and `split` are not inverses of each other","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-08-11T11:52:56Z","updated_at":"2023-08-11T23:41:15Z","closed_at":"2023-08-11T23:41:15Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"`mix` and `split` are supposed to be each other's inverses, but currently they are not:\r\n\r\n```\r\nA = 3 3 3 rho iota 9; A\r\n\t1 2 3\r\n\t4 5 6\r\n\t7 8 9\r\n\t\r\n\t1 2 3\r\n\t4 5 6\r\n\t7 8 9\r\n\t\r\n\t1 2 3\r\n\t4 5 6\r\n\t7 8 9\r\nsplit A\r\n\t(1 2 3 4 5 6 7 8 9) (1 2 3 4 5 6 7 8 9) (1 2 3 4 5 6 7 8 9)\r\nmix split A\r\n\t1 2 3 4 5 6 7 8 9\r\n\t1 2 3 4 5 6 7 8 9\r\n\t1 2 3 4 5 6 7 8 9\r\n```\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/154/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/154/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":10073911888,"node_id":"REFE_lADOAZPgIc5uBs6szwAAAAJYc7JQ","url":"https://api.github.com/repos/robpike/ivy/issues/events/10073911888","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"45e03f75c77709659189c569685d77d308974919","commit_url":"https://api.github.com/repos/robpike/ivy/commits/45e03f75c77709659189c569685d77d308974919","created_at":"2023-08-11T21:30:30Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/150","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/150/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/150/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/150/events","html_url":"https://github.com/robpike/ivy/issues/150","id":1845939884,"node_id":"I_kwDOAZPgIc5uBs6s","number":150,"title":"test failure: stack overflow calling \"gcd\"","user":{"login":"mndrix","id":43997,"node_id":"MDQ6VXNlcjQzOTk3","avatar_url":"https://avatars.githubusercontent.com/u/43997?v=4","gravatar_id":"","url":"https://api.github.com/users/mndrix","html_url":"https://github.com/mndrix","followers_url":"https://api.github.com/users/mndrix/followers","following_url":"https://api.github.com/users/mndrix/following{/other_user}","gists_url":"https://api.github.com/users/mndrix/gists{/gist_id}","starred_url":"https://api.github.com/users/mndrix/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mndrix/subscriptions","organizations_url":"https://api.github.com/users/mndrix/orgs","repos_url":"https://api.github.com/users/mndrix/repos","events_url":"https://api.github.com/users/mndrix/events{/privacy}","received_events_url":"https://api.github.com/users/mndrix/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2023-08-10T21:46:20Z","updated_at":"2023-08-11T21:30:30Z","closed_at":"2023-08-11T21:30:30Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"Relevant portion of the test output:\r\n\r\n```\r\n--- FAIL: TestAll (0.39s)\r\n...\r\n ivy_test.go:47: function.ivy\r\n ivy_test.go:95:\r\n execution failure ( :11: stack overflow calling \"gcd\"\r\n ) at testdata/function.ivy:199:\r\n op fac n =\r\n n <= 1 : 1\r\n n * fac n - 1\r\n\r\n op a gcd b =\r\n a == b: a\r\n a > b: b gcd a-b\r\n a gcd b-a\r\n\r\n fac 10\r\n 1562 gcd fac 11\r\nFAIL\r\nFAIL robpike.io/ivy 0.615s\r\nFAIL\r\n```\r\n\r\nGit bisect says that commit f024fcaf177 introduced the failure, and tests pass with it reverted. I can't see why.\r\n\r\nThis is with Go 1.21.0 on an Ubuntu Linux VM. I can't reproduce the failure on macOS, OpenBSD, or Alpine Linux.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/150/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/150/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":10073911834,"node_id":"CE_lADOAZPgIc5uBs6szwAAAAJYc7Ia","url":"https://api.github.com/repos/robpike/ivy/issues/events/10073911834","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-08-11T21:30:30Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/150","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/150/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/150/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/150/events","html_url":"https://github.com/robpike/ivy/issues/150","id":1845939884,"node_id":"I_kwDOAZPgIc5uBs6s","number":150,"title":"test failure: stack overflow calling \"gcd\"","user":{"login":"mndrix","id":43997,"node_id":"MDQ6VXNlcjQzOTk3","avatar_url":"https://avatars.githubusercontent.com/u/43997?v=4","gravatar_id":"","url":"https://api.github.com/users/mndrix","html_url":"https://github.com/mndrix","followers_url":"https://api.github.com/users/mndrix/followers","following_url":"https://api.github.com/users/mndrix/following{/other_user}","gists_url":"https://api.github.com/users/mndrix/gists{/gist_id}","starred_url":"https://api.github.com/users/mndrix/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mndrix/subscriptions","organizations_url":"https://api.github.com/users/mndrix/orgs","repos_url":"https://api.github.com/users/mndrix/repos","events_url":"https://api.github.com/users/mndrix/events{/privacy}","received_events_url":"https://api.github.com/users/mndrix/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2023-08-10T21:46:20Z","updated_at":"2023-08-11T21:30:30Z","closed_at":"2023-08-11T21:30:30Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"Relevant portion of the test output:\r\n\r\n```\r\n--- FAIL: TestAll (0.39s)\r\n...\r\n ivy_test.go:47: function.ivy\r\n ivy_test.go:95:\r\n execution failure ( :11: stack overflow calling \"gcd\"\r\n ) at testdata/function.ivy:199:\r\n op fac n =\r\n n <= 1 : 1\r\n n * fac n - 1\r\n\r\n op a gcd b =\r\n a == b: a\r\n a > b: b gcd a-b\r\n a gcd b-a\r\n\r\n fac 10\r\n 1562 gcd fac 11\r\nFAIL\r\nFAIL robpike.io/ivy 0.615s\r\nFAIL\r\n```\r\n\r\nGit bisect says that commit f024fcaf177 introduced the failure, and tests pass with it reverted. I can't see why.\r\n\r\nThis is with Go 1.21.0 on an Ubuntu Linux VM. I can't reproduce the failure on macOS, OpenBSD, or Alpine Linux.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/150/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/150/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":10073911733,"node_id":"CE_lADOAZPgIc5uGpYTzwAAAAJYc7G1","url":"https://api.github.com/repos/robpike/ivy/issues/events/10073911733","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-08-11T21:30:29Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/155","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/155/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/155/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/155/events","html_url":"https://github.com/robpike/ivy/pull/155","id":1847236115,"node_id":"PR_kwDOAZPgIc5Xv6c4","number":155,"title":"ivy: reset 'maxstack' between test runs","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-08-11T18:14:12Z","updated_at":"2023-08-13T07:54:27Z","closed_at":"2023-08-11T21:30:28Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/155","html_url":"https://github.com/robpike/ivy/pull/155","diff_url":"https://github.com/robpike/ivy/pull/155.diff","patch_url":"https://github.com/robpike/ivy/pull/155.patch","merged_at":"2023-08-11T21:30:28Z"},"body":"This ensures that tests are independent of the execution order of test files.\r\n\r\nFixes #150","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/155/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/155/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10073911724,"node_id":"ME_lADOAZPgIc5uGpYTzwAAAAJYc7Gs","url":"https://api.github.com/repos/robpike/ivy/issues/events/10073911724","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"45e03f75c77709659189c569685d77d308974919","commit_url":"https://api.github.com/repos/robpike/ivy/commits/45e03f75c77709659189c569685d77d308974919","created_at":"2023-08-11T21:30:28Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/155","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/155/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/155/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/155/events","html_url":"https://github.com/robpike/ivy/pull/155","id":1847236115,"node_id":"PR_kwDOAZPgIc5Xv6c4","number":155,"title":"ivy: reset 'maxstack' between test runs","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-08-11T18:14:12Z","updated_at":"2023-08-13T07:54:27Z","closed_at":"2023-08-11T21:30:28Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/155","html_url":"https://github.com/robpike/ivy/pull/155","diff_url":"https://github.com/robpike/ivy/pull/155.diff","patch_url":"https://github.com/robpike/ivy/pull/155.patch","merged_at":"2023-08-11T21:30:28Z"},"body":"This ensures that tests are independent of the execution order of test files.\r\n\r\nFixes #150","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/155/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/155/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10073911718,"node_id":"REFE_lADOAZPgIc5uGpYTzwAAAAJYc7Gm","url":"https://api.github.com/repos/robpike/ivy/issues/events/10073911718","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"45e03f75c77709659189c569685d77d308974919","commit_url":"https://api.github.com/repos/robpike/ivy/commits/45e03f75c77709659189c569685d77d308974919","created_at":"2023-08-11T21:30:28Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/155","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/155/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/155/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/155/events","html_url":"https://github.com/robpike/ivy/pull/155","id":1847236115,"node_id":"PR_kwDOAZPgIc5Xv6c4","number":155,"title":"ivy: reset 'maxstack' between test runs","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-08-11T18:14:12Z","updated_at":"2023-08-13T07:54:27Z","closed_at":"2023-08-11T21:30:28Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/155","html_url":"https://github.com/robpike/ivy/pull/155","diff_url":"https://github.com/robpike/ivy/pull/155.diff","patch_url":"https://github.com/robpike/ivy/pull/155.patch","merged_at":"2023-08-11T21:30:28Z"},"body":"This ensures that tests are independent of the execution order of test files.\r\n\r\nFixes #150","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/155/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/155/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10072719348,"node_id":"SE_lADOAZPgIc5uGpYTzwAAAAJYYX_0","url":"https://api.github.com/repos/robpike/ivy/issues/events/10072719348","actor":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2023-08-11T18:28:42Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/155","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/155/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/155/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/155/events","html_url":"https://github.com/robpike/ivy/pull/155","id":1847236115,"node_id":"PR_kwDOAZPgIc5Xv6c4","number":155,"title":"ivy: reset 'maxstack' between test runs","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-08-11T18:14:12Z","updated_at":"2023-08-13T07:54:27Z","closed_at":"2023-08-11T21:30:28Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/155","html_url":"https://github.com/robpike/ivy/pull/155","diff_url":"https://github.com/robpike/ivy/pull/155.diff","patch_url":"https://github.com/robpike/ivy/pull/155.patch","merged_at":"2023-08-11T21:30:28Z"},"body":"This ensures that tests are independent of the execution order of test files.\r\n\r\nFixes #150","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/155/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/155/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10072719346,"node_id":"MEE_lADOAZPgIc5uGpYTzwAAAAJYYX_y","url":"https://api.github.com/repos/robpike/ivy/issues/events/10072719346","actor":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2023-08-11T18:28:42Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/155","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/155/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/155/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/155/events","html_url":"https://github.com/robpike/ivy/pull/155","id":1847236115,"node_id":"PR_kwDOAZPgIc5Xv6c4","number":155,"title":"ivy: reset 'maxstack' between test runs","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-08-11T18:14:12Z","updated_at":"2023-08-13T07:54:27Z","closed_at":"2023-08-11T21:30:28Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/155","html_url":"https://github.com/robpike/ivy/pull/155","diff_url":"https://github.com/robpike/ivy/pull/155.diff","patch_url":"https://github.com/robpike/ivy/pull/155.patch","merged_at":"2023-08-11T21:30:28Z"},"body":"This ensures that tests are independent of the execution order of test files.\r\n\r\nFixes #150","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/155/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/155/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10072693671,"node_id":"SE_lADOAZPgIc5uBs6szwAAAAJYYRun","url":"https://api.github.com/repos/robpike/ivy/issues/events/10072693671","actor":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2023-08-11T18:25:22Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/150","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/150/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/150/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/150/events","html_url":"https://github.com/robpike/ivy/issues/150","id":1845939884,"node_id":"I_kwDOAZPgIc5uBs6s","number":150,"title":"test failure: stack overflow calling \"gcd\"","user":{"login":"mndrix","id":43997,"node_id":"MDQ6VXNlcjQzOTk3","avatar_url":"https://avatars.githubusercontent.com/u/43997?v=4","gravatar_id":"","url":"https://api.github.com/users/mndrix","html_url":"https://github.com/mndrix","followers_url":"https://api.github.com/users/mndrix/followers","following_url":"https://api.github.com/users/mndrix/following{/other_user}","gists_url":"https://api.github.com/users/mndrix/gists{/gist_id}","starred_url":"https://api.github.com/users/mndrix/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mndrix/subscriptions","organizations_url":"https://api.github.com/users/mndrix/orgs","repos_url":"https://api.github.com/users/mndrix/repos","events_url":"https://api.github.com/users/mndrix/events{/privacy}","received_events_url":"https://api.github.com/users/mndrix/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2023-08-10T21:46:20Z","updated_at":"2023-08-11T21:30:30Z","closed_at":"2023-08-11T21:30:30Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"Relevant portion of the test output:\r\n\r\n```\r\n--- FAIL: TestAll (0.39s)\r\n...\r\n ivy_test.go:47: function.ivy\r\n ivy_test.go:95:\r\n execution failure ( :11: stack overflow calling \"gcd\"\r\n ) at testdata/function.ivy:199:\r\n op fac n =\r\n n <= 1 : 1\r\n n * fac n - 1\r\n\r\n op a gcd b =\r\n a == b: a\r\n a > b: b gcd a-b\r\n a gcd b-a\r\n\r\n fac 10\r\n 1562 gcd fac 11\r\nFAIL\r\nFAIL robpike.io/ivy 0.615s\r\nFAIL\r\n```\r\n\r\nGit bisect says that commit f024fcaf177 introduced the failure, and tests pass with it reverted. I can't see why.\r\n\r\nThis is with Go 1.21.0 on an Ubuntu Linux VM. I can't reproduce the failure on macOS, OpenBSD, or Alpine Linux.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/150/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/150/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":10072693663,"node_id":"MEE_lADOAZPgIc5uBs6szwAAAAJYYRuf","url":"https://api.github.com/repos/robpike/ivy/issues/events/10072693663","actor":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2023-08-11T18:25:22Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/150","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/150/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/150/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/150/events","html_url":"https://github.com/robpike/ivy/issues/150","id":1845939884,"node_id":"I_kwDOAZPgIc5uBs6s","number":150,"title":"test failure: stack overflow calling \"gcd\"","user":{"login":"mndrix","id":43997,"node_id":"MDQ6VXNlcjQzOTk3","avatar_url":"https://avatars.githubusercontent.com/u/43997?v=4","gravatar_id":"","url":"https://api.github.com/users/mndrix","html_url":"https://github.com/mndrix","followers_url":"https://api.github.com/users/mndrix/followers","following_url":"https://api.github.com/users/mndrix/following{/other_user}","gists_url":"https://api.github.com/users/mndrix/gists{/gist_id}","starred_url":"https://api.github.com/users/mndrix/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mndrix/subscriptions","organizations_url":"https://api.github.com/users/mndrix/orgs","repos_url":"https://api.github.com/users/mndrix/repos","events_url":"https://api.github.com/users/mndrix/events{/privacy}","received_events_url":"https://api.github.com/users/mndrix/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2023-08-10T21:46:20Z","updated_at":"2023-08-11T21:30:30Z","closed_at":"2023-08-11T21:30:30Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"Relevant portion of the test output:\r\n\r\n```\r\n--- FAIL: TestAll (0.39s)\r\n...\r\n ivy_test.go:47: function.ivy\r\n ivy_test.go:95:\r\n execution failure ( :11: stack overflow calling \"gcd\"\r\n ) at testdata/function.ivy:199:\r\n op fac n =\r\n n <= 1 : 1\r\n n * fac n - 1\r\n\r\n op a gcd b =\r\n a == b: a\r\n a > b: b gcd a-b\r\n a gcd b-a\r\n\r\n fac 10\r\n 1562 gcd fac 11\r\nFAIL\r\nFAIL robpike.io/ivy 0.615s\r\nFAIL\r\n```\r\n\r\nGit bisect says that commit f024fcaf177 introduced the failure, and tests pass with it reverted. I can't see why.\r\n\r\nThis is with Go 1.21.0 on an Ubuntu Linux VM. I can't reproduce the failure on macOS, OpenBSD, or Alpine Linux.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/150/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/150/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":10072608099,"node_id":"REFE_lADOAZPgIc5uBs6szwAAAAJYX81j","url":"https://api.github.com/repos/robpike/ivy/issues/events/10072608099","actor":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"1693f721bfa22e2d3d0255ab2cf963895eb7e0e2","commit_url":"https://api.github.com/repos/fzipp/ivy/commits/1693f721bfa22e2d3d0255ab2cf963895eb7e0e2","created_at":"2023-08-11T18:13:35Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/150","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/150/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/150/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/150/events","html_url":"https://github.com/robpike/ivy/issues/150","id":1845939884,"node_id":"I_kwDOAZPgIc5uBs6s","number":150,"title":"test failure: stack overflow calling \"gcd\"","user":{"login":"mndrix","id":43997,"node_id":"MDQ6VXNlcjQzOTk3","avatar_url":"https://avatars.githubusercontent.com/u/43997?v=4","gravatar_id":"","url":"https://api.github.com/users/mndrix","html_url":"https://github.com/mndrix","followers_url":"https://api.github.com/users/mndrix/followers","following_url":"https://api.github.com/users/mndrix/following{/other_user}","gists_url":"https://api.github.com/users/mndrix/gists{/gist_id}","starred_url":"https://api.github.com/users/mndrix/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mndrix/subscriptions","organizations_url":"https://api.github.com/users/mndrix/orgs","repos_url":"https://api.github.com/users/mndrix/repos","events_url":"https://api.github.com/users/mndrix/events{/privacy}","received_events_url":"https://api.github.com/users/mndrix/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2023-08-10T21:46:20Z","updated_at":"2023-08-11T21:30:30Z","closed_at":"2023-08-11T21:30:30Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"Relevant portion of the test output:\r\n\r\n```\r\n--- FAIL: TestAll (0.39s)\r\n...\r\n ivy_test.go:47: function.ivy\r\n ivy_test.go:95:\r\n execution failure ( :11: stack overflow calling \"gcd\"\r\n ) at testdata/function.ivy:199:\r\n op fac n =\r\n n <= 1 : 1\r\n n * fac n - 1\r\n\r\n op a gcd b =\r\n a == b: a\r\n a > b: b gcd a-b\r\n a gcd b-a\r\n\r\n fac 10\r\n 1562 gcd fac 11\r\nFAIL\r\nFAIL robpike.io/ivy 0.615s\r\nFAIL\r\n```\r\n\r\nGit bisect says that commit f024fcaf177 introduced the failure, and tests pass with it reverted. I can't see why.\r\n\r\nThis is with Go 1.21.0 on an Ubuntu Linux VM. I can't reproduce the failure on macOS, OpenBSD, or Alpine Linux.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/150/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/150/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":10067602796,"node_id":"HRDE_lADOAZPgIc5uBnmXzwAAAAJYE21s","url":"https://api.github.com/repos/robpike/ivy/issues/events/10067602796","actor":{"login":"mndrix","id":43997,"node_id":"MDQ6VXNlcjQzOTk3","avatar_url":"https://avatars.githubusercontent.com/u/43997?v=4","gravatar_id":"","url":"https://api.github.com/users/mndrix","html_url":"https://github.com/mndrix","followers_url":"https://api.github.com/users/mndrix/followers","following_url":"https://api.github.com/users/mndrix/following{/other_user}","gists_url":"https://api.github.com/users/mndrix/gists{/gist_id}","starred_url":"https://api.github.com/users/mndrix/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mndrix/subscriptions","organizations_url":"https://api.github.com/users/mndrix/orgs","repos_url":"https://api.github.com/users/mndrix/repos","events_url":"https://api.github.com/users/mndrix/events{/privacy}","received_events_url":"https://api.github.com/users/mndrix/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2023-08-11T09:18:01Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/149","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/149/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/149/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/149/events","html_url":"https://github.com/robpike/ivy/pull/149","id":1845918103,"node_id":"PR_kwDOAZPgIc5XrbZ6","number":149,"title":"Require Go 1.21","user":{"login":"mndrix","id":43997,"node_id":"MDQ6VXNlcjQzOTk3","avatar_url":"https://avatars.githubusercontent.com/u/43997?v=4","gravatar_id":"","url":"https://api.github.com/users/mndrix","html_url":"https://github.com/mndrix","followers_url":"https://api.github.com/users/mndrix/followers","following_url":"https://api.github.com/users/mndrix/following{/other_user}","gists_url":"https://api.github.com/users/mndrix/gists{/gist_id}","starred_url":"https://api.github.com/users/mndrix/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mndrix/subscriptions","organizations_url":"https://api.github.com/users/mndrix/orgs","repos_url":"https://api.github.com/users/mndrix/repos","events_url":"https://api.github.com/users/mndrix/events{/privacy}","received_events_url":"https://api.github.com/users/mndrix/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2023-08-10T21:23:09Z","updated_at":"2023-08-11T09:18:01Z","closed_at":"2023-08-11T04:26:10Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/149","html_url":"https://github.com/robpike/ivy/pull/149","diff_url":"https://github.com/robpike/ivy/pull/149.diff","patch_url":"https://github.com/robpike/ivy/pull/149.patch","merged_at":"2023-08-11T04:26:10Z"},"body":"Commit f024fcaf17 uses math/big.Int.Float64 which was introduced in Go version 1.21","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/149/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/149/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10066162887,"node_id":"CE_lADOAZPgIc5tjuDjzwAAAAJX_XTH","url":"https://api.github.com/repos/robpike/ivy/issues/events/10066162887","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-08-11T06:11:13Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/145","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/145/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/145/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/145/events","html_url":"https://github.com/robpike/ivy/issues/145","id":1838080227,"node_id":"I_kwDOAZPgIc5tjuDj","number":145,"title":"how to recover redefined core operator ?","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-08-06T06:55:00Z","updated_at":"2023-08-11T06:11:13Z","closed_at":"2023-08-11T06:11:13Z","author_association":"OWNER","active_lock_reason":null,"body":"### Discussed in https://github.com/robpike/ivy/discussions/125\r\n\r\n<div type='discussions-op-text'>\r\n\r\n<sup>Originally posted by **kpym** December 23, 2022</sup>\r\nIf I redefine for example `mod` by `op a mod b = 0` how can I recover the original `mod` ?</div>","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/145/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/145/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":10066075158,"node_id":"HRDE_lADOAZPgIc5uCggwzwAAAAJX_B4W","url":"https://api.github.com/repos/robpike/ivy/issues/events/10066075158","actor":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2023-08-11T05:53:43Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/152","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/152/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/152/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/152/events","html_url":"https://github.com/robpike/ivy/pull/152","id":1846151216,"node_id":"PR_kwDOAZPgIc5XsNNs","number":152,"title":"value: add BigInt.Float64 for Go 1.20 and older","user":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2023-08-11T03:42:41Z","updated_at":"2023-08-11T06:22:19Z","closed_at":"2023-08-11T05:53:29Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/152","html_url":"https://github.com/robpike/ivy/pull/152","diff_url":"https://github.com/robpike/ivy/pull/152.diff","patch_url":"https://github.com/robpike/ivy/pull/152.patch","merged_at":null},"body":"In Go 1.21, `big.Int` got a new method `Float64` (proposal golang/go#56984).\r\nIn Go 1.21, `BigInt` has that method because it embeds `*big.Int`.\r\nIn Go 1.20 and older, it's possible to implement it ourselves.\r\n\r\nThe README and go.mod say that ivy requires Go 1.17 to be built, so\r\nadd the `Float64` implementation with an appropriate build constraint.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/152/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/152/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10066074104,"node_id":"CE_lADOAZPgIc5uCggwzwAAAAJX_Bn4","url":"https://api.github.com/repos/robpike/ivy/issues/events/10066074104","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-08-11T05:53:29Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/152","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/152/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/152/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/152/events","html_url":"https://github.com/robpike/ivy/pull/152","id":1846151216,"node_id":"PR_kwDOAZPgIc5XsNNs","number":152,"title":"value: add BigInt.Float64 for Go 1.20 and older","user":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2023-08-11T03:42:41Z","updated_at":"2023-08-11T06:22:19Z","closed_at":"2023-08-11T05:53:29Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/152","html_url":"https://github.com/robpike/ivy/pull/152","diff_url":"https://github.com/robpike/ivy/pull/152.diff","patch_url":"https://github.com/robpike/ivy/pull/152.patch","merged_at":null},"body":"In Go 1.21, `big.Int` got a new method `Float64` (proposal golang/go#56984).\r\nIn Go 1.21, `BigInt` has that method because it embeds `*big.Int`.\r\nIn Go 1.20 and older, it's possible to implement it ourselves.\r\n\r\nThe README and go.mod say that ivy requires Go 1.17 to be built, so\r\nadd the `Float64` implementation with an appropriate build constraint.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/152/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/152/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10065823358,"node_id":"CE_lADOAZPgIc5uCcUizwAAAAJX-EZ-","url":"https://api.github.com/repos/robpike/ivy/issues/events/10065823358","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"71f06f4c7b028aa16159c942501ca01a23727efb","commit_url":"https://api.github.com/repos/robpike/ivy/commits/71f06f4c7b028aa16159c942501ca01a23727efb","created_at":"2023-08-11T04:50:33Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/151","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/151/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/151/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/151/events","html_url":"https://github.com/robpike/ivy/issues/151","id":1846134050,"node_id":"I_kwDOAZPgIc5uCcUi","number":151,"title":"TestAll failure in sys.ivy","user":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-08-11T03:10:47Z","updated_at":"2023-08-11T04:50:33Z","closed_at":"2023-08-11T04:50:33Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"When I run ivy's tests at its latest commit (d707516ba1bba12d98edbbcbe0186618054260fa) using `go version go1.21.0 darwin/arm64`, I'm seeing the following test failure:\r\n\r\n```\r\n$ go test -run=TestAll robpike.io/ivy\r\n--- FAIL: TestAll (0.48s)\r\n[...]\r\n ivy_test.go:47: reduce.ivy\r\n ivy_test.go:47: sys.ivy\r\n ivy_test.go:102: \r\n testdata/sys.ivy:85:\r\n \t('T' encode 0)[1 2 3]\r\n got:\r\n \t1969 12 31\r\n \t\r\n want:\r\n \t1970 1 1\r\n ivy_test.go:47: unary_matrix.ivy\r\n ivy_test.go:47: inner.ivy\r\n[...]\r\nFAIL\r\nFAIL\trobpike.io/ivy\t0.668s\r\nFAIL\r\n```\r\n\r\nMy local timezone is -0400 EDT if that happens to be relevant.\r\n\r\nReporting this in case it's helpful.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/151/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/151/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":10065823330,"node_id":"REFE_lADOAZPgIc5tG8j_zwAAAAJX-EZi","url":"https://api.github.com/repos/robpike/ivy/issues/events/10065823330","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"71f06f4c7b028aa16159c942501ca01a23727efb","commit_url":"https://api.github.com/repos/robpike/ivy/commits/71f06f4c7b028aa16159c942501ca01a23727efb","created_at":"2023-08-11T04:50:33Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/135","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/135/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/135/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/135/events","html_url":"https://github.com/robpike/ivy/issues/135","id":1830537471,"node_id":"I_kwDOAZPgIc5tG8j_","number":135,"title":"time zone support","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-08-01T06:14:24Z","updated_at":"2023-09-26T02:57:24Z","closed_at":"2023-09-26T02:57:24Z","author_association":"OWNER","active_lock_reason":null,"body":"The new time facilities should understand (to some extent at least) time zones.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/135/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/135/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":10065741668,"node_id":"REFE_lADOAZPgIc5uBnmXzwAAAAJX9wdk","url":"https://api.github.com/repos/robpike/ivy/issues/events/10065741668","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"38f65b8f882fbf65e26ff7a6bd1a5c9cb8b26abb","commit_url":"https://api.github.com/repos/robpike/ivy/commits/38f65b8f882fbf65e26ff7a6bd1a5c9cb8b26abb","created_at":"2023-08-11T04:29:11Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/149","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/149/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/149/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/149/events","html_url":"https://github.com/robpike/ivy/pull/149","id":1845918103,"node_id":"PR_kwDOAZPgIc5XrbZ6","number":149,"title":"Require Go 1.21","user":{"login":"mndrix","id":43997,"node_id":"MDQ6VXNlcjQzOTk3","avatar_url":"https://avatars.githubusercontent.com/u/43997?v=4","gravatar_id":"","url":"https://api.github.com/users/mndrix","html_url":"https://github.com/mndrix","followers_url":"https://api.github.com/users/mndrix/followers","following_url":"https://api.github.com/users/mndrix/following{/other_user}","gists_url":"https://api.github.com/users/mndrix/gists{/gist_id}","starred_url":"https://api.github.com/users/mndrix/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mndrix/subscriptions","organizations_url":"https://api.github.com/users/mndrix/orgs","repos_url":"https://api.github.com/users/mndrix/repos","events_url":"https://api.github.com/users/mndrix/events{/privacy}","received_events_url":"https://api.github.com/users/mndrix/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2023-08-10T21:23:09Z","updated_at":"2023-08-11T09:18:01Z","closed_at":"2023-08-11T04:26:10Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/149","html_url":"https://github.com/robpike/ivy/pull/149","diff_url":"https://github.com/robpike/ivy/pull/149.diff","patch_url":"https://github.com/robpike/ivy/pull/149.patch","merged_at":"2023-08-11T04:26:10Z"},"body":"Commit f024fcaf17 uses math/big.Int.Float64 which was introduced in Go version 1.21","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/149/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/149/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10065741560,"node_id":"CE_lADOAZPgIc5uCnLzzwAAAAJX9wb4","url":"https://api.github.com/repos/robpike/ivy/issues/events/10065741560","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-08-11T04:29:09Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/153","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/153/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/153/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/153/events","html_url":"https://github.com/robpike/ivy/pull/153","id":1846178547,"node_id":"PR_kwDOAZPgIc5XsS6U","number":153,"title":"Revert \"Require Go 1.21\"","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-08-11T04:28:56Z","updated_at":"2023-08-12T03:57:39Z","closed_at":"2023-08-11T04:29:09Z","author_association":"OWNER","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/153","html_url":"https://github.com/robpike/ivy/pull/153","diff_url":"https://github.com/robpike/ivy/pull/153.diff","patch_url":"https://github.com/robpike/ivy/pull/153.patch","merged_at":"2023-08-11T04:29:09Z"},"body":"Reverts robpike/ivy#149","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/153/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/153/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10065741552,"node_id":"ME_lADOAZPgIc5uCnLzzwAAAAJX9wbw","url":"https://api.github.com/repos/robpike/ivy/issues/events/10065741552","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"38f65b8f882fbf65e26ff7a6bd1a5c9cb8b26abb","commit_url":"https://api.github.com/repos/robpike/ivy/commits/38f65b8f882fbf65e26ff7a6bd1a5c9cb8b26abb","created_at":"2023-08-11T04:29:09Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/153","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/153/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/153/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/153/events","html_url":"https://github.com/robpike/ivy/pull/153","id":1846178547,"node_id":"PR_kwDOAZPgIc5XsS6U","number":153,"title":"Revert \"Require Go 1.21\"","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-08-11T04:28:56Z","updated_at":"2023-08-12T03:57:39Z","closed_at":"2023-08-11T04:29:09Z","author_association":"OWNER","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/153","html_url":"https://github.com/robpike/ivy/pull/153","diff_url":"https://github.com/robpike/ivy/pull/153.diff","patch_url":"https://github.com/robpike/ivy/pull/153.patch","merged_at":"2023-08-11T04:29:09Z"},"body":"Reverts robpike/ivy#149","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/153/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/153/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10065741548,"node_id":"REFE_lADOAZPgIc5uCnLzzwAAAAJX9wbs","url":"https://api.github.com/repos/robpike/ivy/issues/events/10065741548","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"38f65b8f882fbf65e26ff7a6bd1a5c9cb8b26abb","commit_url":"https://api.github.com/repos/robpike/ivy/commits/38f65b8f882fbf65e26ff7a6bd1a5c9cb8b26abb","created_at":"2023-08-11T04:29:09Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/153","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/153/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/153/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/153/events","html_url":"https://github.com/robpike/ivy/pull/153","id":1846178547,"node_id":"PR_kwDOAZPgIc5XsS6U","number":153,"title":"Revert \"Require Go 1.21\"","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-08-11T04:28:56Z","updated_at":"2023-08-12T03:57:39Z","closed_at":"2023-08-11T04:29:09Z","author_association":"OWNER","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/153","html_url":"https://github.com/robpike/ivy/pull/153","diff_url":"https://github.com/robpike/ivy/pull/153.diff","patch_url":"https://github.com/robpike/ivy/pull/153.patch","merged_at":"2023-08-11T04:29:09Z"},"body":"Reverts robpike/ivy#149","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/153/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/153/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10065740381,"node_id":"REFE_lADOAZPgIc5uBnmXzwAAAAJX9wJd","url":"https://api.github.com/repos/robpike/ivy/issues/events/10065740381","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"337020a90df908e99abe2d8520cc20e6cbe9c78f","commit_url":"https://api.github.com/repos/robpike/ivy/commits/337020a90df908e99abe2d8520cc20e6cbe9c78f","created_at":"2023-08-11T04:28:53Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/149","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/149/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/149/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/149/events","html_url":"https://github.com/robpike/ivy/pull/149","id":1845918103,"node_id":"PR_kwDOAZPgIc5XrbZ6","number":149,"title":"Require Go 1.21","user":{"login":"mndrix","id":43997,"node_id":"MDQ6VXNlcjQzOTk3","avatar_url":"https://avatars.githubusercontent.com/u/43997?v=4","gravatar_id":"","url":"https://api.github.com/users/mndrix","html_url":"https://github.com/mndrix","followers_url":"https://api.github.com/users/mndrix/followers","following_url":"https://api.github.com/users/mndrix/following{/other_user}","gists_url":"https://api.github.com/users/mndrix/gists{/gist_id}","starred_url":"https://api.github.com/users/mndrix/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mndrix/subscriptions","organizations_url":"https://api.github.com/users/mndrix/orgs","repos_url":"https://api.github.com/users/mndrix/repos","events_url":"https://api.github.com/users/mndrix/events{/privacy}","received_events_url":"https://api.github.com/users/mndrix/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2023-08-10T21:23:09Z","updated_at":"2023-08-11T09:18:01Z","closed_at":"2023-08-11T04:26:10Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/149","html_url":"https://github.com/robpike/ivy/pull/149","diff_url":"https://github.com/robpike/ivy/pull/149.diff","patch_url":"https://github.com/robpike/ivy/pull/149.patch","merged_at":"2023-08-11T04:26:10Z"},"body":"Commit f024fcaf17 uses math/big.Int.Float64 which was introduced in Go version 1.21","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/149/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/149/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10065730865,"node_id":"CE_lADOAZPgIc5uBnmXzwAAAAJX9t0x","url":"https://api.github.com/repos/robpike/ivy/issues/events/10065730865","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-08-11T04:26:10Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/149","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/149/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/149/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/149/events","html_url":"https://github.com/robpike/ivy/pull/149","id":1845918103,"node_id":"PR_kwDOAZPgIc5XrbZ6","number":149,"title":"Require Go 1.21","user":{"login":"mndrix","id":43997,"node_id":"MDQ6VXNlcjQzOTk3","avatar_url":"https://avatars.githubusercontent.com/u/43997?v=4","gravatar_id":"","url":"https://api.github.com/users/mndrix","html_url":"https://github.com/mndrix","followers_url":"https://api.github.com/users/mndrix/followers","following_url":"https://api.github.com/users/mndrix/following{/other_user}","gists_url":"https://api.github.com/users/mndrix/gists{/gist_id}","starred_url":"https://api.github.com/users/mndrix/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mndrix/subscriptions","organizations_url":"https://api.github.com/users/mndrix/orgs","repos_url":"https://api.github.com/users/mndrix/repos","events_url":"https://api.github.com/users/mndrix/events{/privacy}","received_events_url":"https://api.github.com/users/mndrix/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2023-08-10T21:23:09Z","updated_at":"2023-08-11T09:18:01Z","closed_at":"2023-08-11T04:26:10Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/149","html_url":"https://github.com/robpike/ivy/pull/149","diff_url":"https://github.com/robpike/ivy/pull/149.diff","patch_url":"https://github.com/robpike/ivy/pull/149.patch","merged_at":"2023-08-11T04:26:10Z"},"body":"Commit f024fcaf17 uses math/big.Int.Float64 which was introduced in Go version 1.21","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/149/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/149/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10065730850,"node_id":"ME_lADOAZPgIc5uBnmXzwAAAAJX9t0i","url":"https://api.github.com/repos/robpike/ivy/issues/events/10065730850","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"5f934e0faacb3790daf5335103fb07c63aca182f","commit_url":"https://api.github.com/repos/robpike/ivy/commits/5f934e0faacb3790daf5335103fb07c63aca182f","created_at":"2023-08-11T04:26:10Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/149","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/149/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/149/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/149/events","html_url":"https://github.com/robpike/ivy/pull/149","id":1845918103,"node_id":"PR_kwDOAZPgIc5XrbZ6","number":149,"title":"Require Go 1.21","user":{"login":"mndrix","id":43997,"node_id":"MDQ6VXNlcjQzOTk3","avatar_url":"https://avatars.githubusercontent.com/u/43997?v=4","gravatar_id":"","url":"https://api.github.com/users/mndrix","html_url":"https://github.com/mndrix","followers_url":"https://api.github.com/users/mndrix/followers","following_url":"https://api.github.com/users/mndrix/following{/other_user}","gists_url":"https://api.github.com/users/mndrix/gists{/gist_id}","starred_url":"https://api.github.com/users/mndrix/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mndrix/subscriptions","organizations_url":"https://api.github.com/users/mndrix/orgs","repos_url":"https://api.github.com/users/mndrix/repos","events_url":"https://api.github.com/users/mndrix/events{/privacy}","received_events_url":"https://api.github.com/users/mndrix/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2023-08-10T21:23:09Z","updated_at":"2023-08-11T09:18:01Z","closed_at":"2023-08-11T04:26:10Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/149","html_url":"https://github.com/robpike/ivy/pull/149","diff_url":"https://github.com/robpike/ivy/pull/149.diff","patch_url":"https://github.com/robpike/ivy/pull/149.patch","merged_at":"2023-08-11T04:26:10Z"},"body":"Commit f024fcaf17 uses math/big.Int.Float64 which was introduced in Go version 1.21","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/149/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/149/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10065730844,"node_id":"REFE_lADOAZPgIc5uBnmXzwAAAAJX9t0c","url":"https://api.github.com/repos/robpike/ivy/issues/events/10065730844","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"5f934e0faacb3790daf5335103fb07c63aca182f","commit_url":"https://api.github.com/repos/robpike/ivy/commits/5f934e0faacb3790daf5335103fb07c63aca182f","created_at":"2023-08-11T04:26:09Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/149","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/149/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/149/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/149/events","html_url":"https://github.com/robpike/ivy/pull/149","id":1845918103,"node_id":"PR_kwDOAZPgIc5XrbZ6","number":149,"title":"Require Go 1.21","user":{"login":"mndrix","id":43997,"node_id":"MDQ6VXNlcjQzOTk3","avatar_url":"https://avatars.githubusercontent.com/u/43997?v=4","gravatar_id":"","url":"https://api.github.com/users/mndrix","html_url":"https://github.com/mndrix","followers_url":"https://api.github.com/users/mndrix/followers","following_url":"https://api.github.com/users/mndrix/following{/other_user}","gists_url":"https://api.github.com/users/mndrix/gists{/gist_id}","starred_url":"https://api.github.com/users/mndrix/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mndrix/subscriptions","organizations_url":"https://api.github.com/users/mndrix/orgs","repos_url":"https://api.github.com/users/mndrix/repos","events_url":"https://api.github.com/users/mndrix/events{/privacy}","received_events_url":"https://api.github.com/users/mndrix/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2023-08-10T21:23:09Z","updated_at":"2023-08-11T09:18:01Z","closed_at":"2023-08-11T04:26:10Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/149","html_url":"https://github.com/robpike/ivy/pull/149","diff_url":"https://github.com/robpike/ivy/pull/149.diff","patch_url":"https://github.com/robpike/ivy/pull/149.patch","merged_at":"2023-08-11T04:26:10Z"},"body":"Commit f024fcaf17 uses math/big.Int.Float64 which was introduced in Go version 1.21","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/149/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/149/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10064122616,"node_id":"HRDE_lADOAZPgIc5s9sb5zwAAAAJX3lL4","url":"https://api.github.com/repos/robpike/ivy/issues/events/10064122616","actor":{"login":"mndrix","id":43997,"node_id":"MDQ6VXNlcjQzOTk3","avatar_url":"https://avatars.githubusercontent.com/u/43997?v=4","gravatar_id":"","url":"https://api.github.com/users/mndrix","html_url":"https://github.com/mndrix","followers_url":"https://api.github.com/users/mndrix/followers","following_url":"https://api.github.com/users/mndrix/following{/other_user}","gists_url":"https://api.github.com/users/mndrix/gists{/gist_id}","starred_url":"https://api.github.com/users/mndrix/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mndrix/subscriptions","organizations_url":"https://api.github.com/users/mndrix/orgs","repos_url":"https://api.github.com/users/mndrix/repos","events_url":"https://api.github.com/users/mndrix/events{/privacy}","received_events_url":"https://api.github.com/users/mndrix/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2023-08-10T21:18:05Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/134","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/134/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/134/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/134/events","html_url":"https://github.com/robpike/ivy/pull/134","id":1828112121,"node_id":"PR_kwDOAZPgIc5WvepS","number":134,"title":"APL unique is ∪","user":{"login":"mndrix","id":43997,"node_id":"MDQ6VXNlcjQzOTk3","avatar_url":"https://avatars.githubusercontent.com/u/43997?v=4","gravatar_id":"","url":"https://api.github.com/users/mndrix","html_url":"https://github.com/mndrix","followers_url":"https://api.github.com/users/mndrix/followers","following_url":"https://api.github.com/users/mndrix/following{/other_user}","gists_url":"https://api.github.com/users/mndrix/gists{/gist_id}","starred_url":"https://api.github.com/users/mndrix/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mndrix/subscriptions","organizations_url":"https://api.github.com/users/mndrix/orgs","repos_url":"https://api.github.com/users/mndrix/repos","events_url":"https://api.github.com/users/mndrix/events{/privacy}","received_events_url":"https://api.github.com/users/mndrix/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-07-30T22:42:04Z","updated_at":"2023-08-10T21:18:05Z","closed_at":"2023-07-31T00:10:06Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/134","html_url":"https://github.com/robpike/ivy/pull/134","diff_url":"https://github.com/robpike/ivy/pull/134.diff","patch_url":"https://github.com/robpike/ivy/pull/134.patch","merged_at":null},"body":null,"reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/134/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/134/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10062083241,"node_id":"SE_lADOAZPgIc4_-Z7RzwAAAAJXvzSp","url":"https://api.github.com/repos/robpike/ivy/issues/events/10062083241","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2023-08-10T17:28:55Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/69","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/69/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/69/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/69/events","html_url":"https://github.com/robpike/ivy/issues/69","id":1073323729,"node_id":"I_kwDOAZPgIc4_-Z7R","number":69,"title":"missing each/map (¨)","user":{"login":"tcolgate","id":76019,"node_id":"MDQ6VXNlcjc2MDE5","avatar_url":"https://avatars.githubusercontent.com/u/76019?v=4","gravatar_id":"","url":"https://api.github.com/users/tcolgate","html_url":"https://github.com/tcolgate","followers_url":"https://api.github.com/users/tcolgate/followers","following_url":"https://api.github.com/users/tcolgate/following{/other_user}","gists_url":"https://api.github.com/users/tcolgate/gists{/gist_id}","starred_url":"https://api.github.com/users/tcolgate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tcolgate/subscriptions","organizations_url":"https://api.github.com/users/tcolgate/orgs","repos_url":"https://api.github.com/users/tcolgate/repos","events_url":"https://api.github.com/users/tcolgate/events{/privacy}","received_events_url":"https://api.github.com/users/tcolgate/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":17,"created_at":"2021-12-07T12:58:47Z","updated_at":"2024-05-13T16:48:09Z","closed_at":null,"author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"It might be that I'm missing something, but mapping an operator over a vector is super useful and I had to jump through some hoops to do it. \r\n\r\nGiven a vector, compute the triangle number for each element (but any function would apply). I ended up defining the function as an operator that ignored one of its args. then reducing over a vector of pairs...\r\n\r\n```\r\nop a triangle b = (b * (b + 1)) / 2 \r\n\r\nop trianglevs vs = triangle/ (rho vs) 2 rho ((rho vs) rho 2) sel vs\r\n```\r\nIs a map / each syntactically difficult to support though, feels like it should be similar to reduce?\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/69/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/69/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10062083237,"node_id":"MEE_lADOAZPgIc4_-Z7RzwAAAAJXvzSl","url":"https://api.github.com/repos/robpike/ivy/issues/events/10062083237","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2023-08-10T17:28:55Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/69","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/69/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/69/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/69/events","html_url":"https://github.com/robpike/ivy/issues/69","id":1073323729,"node_id":"I_kwDOAZPgIc4_-Z7R","number":69,"title":"missing each/map (¨)","user":{"login":"tcolgate","id":76019,"node_id":"MDQ6VXNlcjc2MDE5","avatar_url":"https://avatars.githubusercontent.com/u/76019?v=4","gravatar_id":"","url":"https://api.github.com/users/tcolgate","html_url":"https://github.com/tcolgate","followers_url":"https://api.github.com/users/tcolgate/followers","following_url":"https://api.github.com/users/tcolgate/following{/other_user}","gists_url":"https://api.github.com/users/tcolgate/gists{/gist_id}","starred_url":"https://api.github.com/users/tcolgate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tcolgate/subscriptions","organizations_url":"https://api.github.com/users/tcolgate/orgs","repos_url":"https://api.github.com/users/tcolgate/repos","events_url":"https://api.github.com/users/tcolgate/events{/privacy}","received_events_url":"https://api.github.com/users/tcolgate/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":17,"created_at":"2021-12-07T12:58:47Z","updated_at":"2024-05-13T16:48:09Z","closed_at":null,"author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"It might be that I'm missing something, but mapping an operator over a vector is super useful and I had to jump through some hoops to do it. \r\n\r\nGiven a vector, compute the triangle number for each element (but any function would apply). I ended up defining the function as an operator that ignored one of its args. then reducing over a vector of pairs...\r\n\r\n```\r\nop a triangle b = (b * (b + 1)) / 2 \r\n\r\nop trianglevs vs = triangle/ (rho vs) 2 rho ((rho vs) rho 2) sel vs\r\n```\r\nIs a map / each syntactically difficult to support though, feels like it should be similar to reduce?\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/69/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/69/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10019572973,"node_id":"CE_lADOAZPgIc5tkSe-zwAAAAJVNozt","url":"https://api.github.com/repos/robpike/ivy/issues/events/10019572973","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-08-07T05:36:44Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/148","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/148/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/148/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/148/events","html_url":"https://github.com/robpike/ivy/pull/148","id":1838229438,"node_id":"PR_kwDOAZPgIc5XRYPZ","number":148,"title":"ivy: implement 'floor' and 'ceil' for complex numbers","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":10,"created_at":"2023-08-06T14:27:35Z","updated_at":"2023-08-13T07:54:25Z","closed_at":"2023-08-07T05:36:44Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/148","html_url":"https://github.com/robpike/ivy/pull/148","diff_url":"https://github.com/robpike/ivy/pull/148.diff","patch_url":"https://github.com/robpike/ivy/pull/148.patch","merged_at":"2023-08-07T05:36:44Z"},"body":"The implementation uses the definition of 'floor' and 'ceil' for complex numbers set by\r\n\r\n\tMcDonnell, E. E. \"Complex Floor, APL Congress 73.\" (1973).\r\n\thttps://www.jsoftware.com/papers/eem/complexfloor.htm\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/148/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/148/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10019572964,"node_id":"ME_lADOAZPgIc5tkSe-zwAAAAJVNozk","url":"https://api.github.com/repos/robpike/ivy/issues/events/10019572964","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"e795d661d5f60a7b7339486d88f2b3eabbccbbc2","commit_url":"https://api.github.com/repos/robpike/ivy/commits/e795d661d5f60a7b7339486d88f2b3eabbccbbc2","created_at":"2023-08-07T05:36:44Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/148","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/148/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/148/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/148/events","html_url":"https://github.com/robpike/ivy/pull/148","id":1838229438,"node_id":"PR_kwDOAZPgIc5XRYPZ","number":148,"title":"ivy: implement 'floor' and 'ceil' for complex numbers","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":10,"created_at":"2023-08-06T14:27:35Z","updated_at":"2023-08-13T07:54:25Z","closed_at":"2023-08-07T05:36:44Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/148","html_url":"https://github.com/robpike/ivy/pull/148","diff_url":"https://github.com/robpike/ivy/pull/148.diff","patch_url":"https://github.com/robpike/ivy/pull/148.patch","merged_at":"2023-08-07T05:36:44Z"},"body":"The implementation uses the definition of 'floor' and 'ceil' for complex numbers set by\r\n\r\n\tMcDonnell, E. E. \"Complex Floor, APL Congress 73.\" (1973).\r\n\thttps://www.jsoftware.com/papers/eem/complexfloor.htm\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/148/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/148/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10019572957,"node_id":"REFE_lADOAZPgIc5tkSe-zwAAAAJVNozd","url":"https://api.github.com/repos/robpike/ivy/issues/events/10019572957","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"e795d661d5f60a7b7339486d88f2b3eabbccbbc2","commit_url":"https://api.github.com/repos/robpike/ivy/commits/e795d661d5f60a7b7339486d88f2b3eabbccbbc2","created_at":"2023-08-07T05:36:44Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/148","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/148/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/148/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/148/events","html_url":"https://github.com/robpike/ivy/pull/148","id":1838229438,"node_id":"PR_kwDOAZPgIc5XRYPZ","number":148,"title":"ivy: implement 'floor' and 'ceil' for complex numbers","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":10,"created_at":"2023-08-06T14:27:35Z","updated_at":"2023-08-13T07:54:25Z","closed_at":"2023-08-07T05:36:44Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/148","html_url":"https://github.com/robpike/ivy/pull/148","diff_url":"https://github.com/robpike/ivy/pull/148.diff","patch_url":"https://github.com/robpike/ivy/pull/148.patch","merged_at":"2023-08-07T05:36:44Z"},"body":"The implementation uses the definition of 'floor' and 'ceil' for complex numbers set by\r\n\r\n\tMcDonnell, E. E. \"Complex Floor, APL Congress 73.\" (1973).\r\n\thttps://www.jsoftware.com/papers/eem/complexfloor.htm\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/148/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/148/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10016759146,"node_id":"REFE_lADOAZPgIc5tjvAOzwAAAAJVC51q","url":"https://api.github.com/repos/robpike/ivy/issues/events/10016759146","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"94a7a4c33fe67c0a9cc3f8ce210d4632fef2d918","commit_url":"https://api.github.com/repos/robpike/ivy/commits/94a7a4c33fe67c0a9cc3f8ce210d4632fef2d918","created_at":"2023-08-06T07:23:06Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/146","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/146/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/146/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/146/events","html_url":"https://github.com/robpike/ivy/issues/146","id":1838084110,"node_id":"I_kwDOAZPgIc5tjvAO","number":146,"title":"ivy: generalize matrix inverse to Moore-Penrose pseudoinverse","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-08-06T07:09:18Z","updated_at":"2023-08-06T07:09:18Z","closed_at":null,"author_association":"OWNER","active_lock_reason":null,"body":"This would allow for more general linear algebra calculations. It shouldn't be hard as the components of its creation are already in place.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/146/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/146/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10014994153,"node_id":"CE_lADOAZPgIc5tiNlUzwAAAAJU8K7p","url":"https://api.github.com/repos/robpike/ivy/issues/events/10014994153","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-08-05T10:48:56Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/144","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/144/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/144/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/144/events","html_url":"https://github.com/robpike/ivy/pull/144","id":1837685076,"node_id":"PR_kwDOAZPgIc5XPyjS","number":144,"title":"ivy: add a missing line in the help text about user-defined operators","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-08-05T10:24:35Z","updated_at":"2023-08-13T07:54:23Z","closed_at":"2023-08-05T10:48:56Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/144","html_url":"https://github.com/robpike/ivy/pull/144","diff_url":"https://github.com/robpike/ivy/pull/144.diff","patch_url":"https://github.com/robpike/ivy/pull/144.patch","merged_at":"2023-08-05T10:48:56Z"},"body":"The example in the help text about global variables in user-defined operators was lacking the actual operator calls.\r\nWithout this line, the described result wouldn't be produced.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/144/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/144/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10014994141,"node_id":"ME_lADOAZPgIc5tiNlUzwAAAAJU8K7d","url":"https://api.github.com/repos/robpike/ivy/issues/events/10014994141","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"65de3e1c3a5dbd72ccded587596bd7e3c4e4800f","commit_url":"https://api.github.com/repos/robpike/ivy/commits/65de3e1c3a5dbd72ccded587596bd7e3c4e4800f","created_at":"2023-08-05T10:48:56Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/144","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/144/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/144/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/144/events","html_url":"https://github.com/robpike/ivy/pull/144","id":1837685076,"node_id":"PR_kwDOAZPgIc5XPyjS","number":144,"title":"ivy: add a missing line in the help text about user-defined operators","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-08-05T10:24:35Z","updated_at":"2023-08-13T07:54:23Z","closed_at":"2023-08-05T10:48:56Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/144","html_url":"https://github.com/robpike/ivy/pull/144","diff_url":"https://github.com/robpike/ivy/pull/144.diff","patch_url":"https://github.com/robpike/ivy/pull/144.patch","merged_at":"2023-08-05T10:48:56Z"},"body":"The example in the help text about global variables in user-defined operators was lacking the actual operator calls.\r\nWithout this line, the described result wouldn't be produced.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/144/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/144/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10014994138,"node_id":"REFE_lADOAZPgIc5tiNlUzwAAAAJU8K7a","url":"https://api.github.com/repos/robpike/ivy/issues/events/10014994138","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"65de3e1c3a5dbd72ccded587596bd7e3c4e4800f","commit_url":"https://api.github.com/repos/robpike/ivy/commits/65de3e1c3a5dbd72ccded587596bd7e3c4e4800f","created_at":"2023-08-05T10:48:56Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/144","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/144/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/144/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/144/events","html_url":"https://github.com/robpike/ivy/pull/144","id":1837685076,"node_id":"PR_kwDOAZPgIc5XPyjS","number":144,"title":"ivy: add a missing line in the help text about user-defined operators","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-08-05T10:24:35Z","updated_at":"2023-08-13T07:54:23Z","closed_at":"2023-08-05T10:48:56Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/144","html_url":"https://github.com/robpike/ivy/pull/144","diff_url":"https://github.com/robpike/ivy/pull/144.diff","patch_url":"https://github.com/robpike/ivy/pull/144.patch","merged_at":"2023-08-05T10:48:56Z"},"body":"The example in the help text about global variables in user-defined operators was lacking the actual operator calls.\r\nWithout this line, the described result wouldn't be produced.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/144/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/144/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10014582263,"node_id":"CE_lADOAZPgIc5thEemzwAAAAJU6mX3","url":"https://api.github.com/repos/robpike/ivy/issues/events/10014582263","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-08-05T06:34:08Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/142","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/142/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/142/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/142/events","html_url":"https://github.com/robpike/ivy/pull/142","id":1837385638,"node_id":"PR_kwDOAZPgIc5XO0eU","number":142,"title":"ivy: implement 'sgn' for complex numbers","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2023-08-04T21:56:26Z","updated_at":"2023-08-13T07:54:20Z","closed_at":"2023-08-05T06:34:08Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/142","html_url":"https://github.com/robpike/ivy/pull/142","diff_url":"https://github.com/robpike/ivy/pull/142.diff","patch_url":"https://github.com/robpike/ivy/pull/142.patch","merged_at":"2023-08-05T06:34:08Z"},"body":"The generalization of the signum function for complex numbers is\r\n\r\nsgn z = z/|z| if z≠0, and 0 if z=0\r\n\r\nSee https://en.wikipedia.org/wiki/Sign_function#Complex_signum","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/142/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/142/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10014582253,"node_id":"ME_lADOAZPgIc5thEemzwAAAAJU6mXt","url":"https://api.github.com/repos/robpike/ivy/issues/events/10014582253","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"dc11e5539c6ac6a9f17da42e196566938efa2f09","commit_url":"https://api.github.com/repos/robpike/ivy/commits/dc11e5539c6ac6a9f17da42e196566938efa2f09","created_at":"2023-08-05T06:34:08Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/142","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/142/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/142/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/142/events","html_url":"https://github.com/robpike/ivy/pull/142","id":1837385638,"node_id":"PR_kwDOAZPgIc5XO0eU","number":142,"title":"ivy: implement 'sgn' for complex numbers","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2023-08-04T21:56:26Z","updated_at":"2023-08-13T07:54:20Z","closed_at":"2023-08-05T06:34:08Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/142","html_url":"https://github.com/robpike/ivy/pull/142","diff_url":"https://github.com/robpike/ivy/pull/142.diff","patch_url":"https://github.com/robpike/ivy/pull/142.patch","merged_at":"2023-08-05T06:34:08Z"},"body":"The generalization of the signum function for complex numbers is\r\n\r\nsgn z = z/|z| if z≠0, and 0 if z=0\r\n\r\nSee https://en.wikipedia.org/wiki/Sign_function#Complex_signum","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/142/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/142/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10014582248,"node_id":"REFE_lADOAZPgIc5thEemzwAAAAJU6mXo","url":"https://api.github.com/repos/robpike/ivy/issues/events/10014582248","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"dc11e5539c6ac6a9f17da42e196566938efa2f09","commit_url":"https://api.github.com/repos/robpike/ivy/commits/dc11e5539c6ac6a9f17da42e196566938efa2f09","created_at":"2023-08-05T06:34:08Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/142","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/142/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/142/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/142/events","html_url":"https://github.com/robpike/ivy/pull/142","id":1837385638,"node_id":"PR_kwDOAZPgIc5XO0eU","number":142,"title":"ivy: implement 'sgn' for complex numbers","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2023-08-04T21:56:26Z","updated_at":"2023-08-13T07:54:20Z","closed_at":"2023-08-05T06:34:08Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/142","html_url":"https://github.com/robpike/ivy/pull/142","diff_url":"https://github.com/robpike/ivy/pull/142.diff","patch_url":"https://github.com/robpike/ivy/pull/142.patch","merged_at":"2023-08-05T06:34:08Z"},"body":"The generalization of the signum function for complex numbers is\r\n\r\nsgn z = z/|z| if z≠0, and 0 if z=0\r\n\r\nSee https://en.wikipedia.org/wiki/Sign_function#Complex_signum","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/142/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/142/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10014306080,"node_id":"CE_lADOAZPgIc5thJNozwAAAAJU5i8g","url":"https://api.github.com/repos/robpike/ivy/issues/events/10014306080","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"a5f79b8c8d20877b1e0193ec25500233132bb48c","commit_url":"https://api.github.com/repos/robpike/ivy/commits/a5f79b8c8d20877b1e0193ec25500233132bb48c","created_at":"2023-08-05T03:28:39Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/143","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/143/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/143/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/143/events","html_url":"https://github.com/robpike/ivy/issues/143","id":1837405032,"node_id":"I_kwDOAZPgIc5thJNo","number":143,"title":"support raising a negative number to a non-integer power","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-08-04T22:25:39Z","updated_at":"2023-08-05T03:28:39Z","closed_at":"2023-08-05T03:28:39Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"Currently, the following operations are not possible:\r\n```\r\n-4 ** 0.5\r\nsquare root of negative number\r\n-4 ** 0.25\r\nlog of non-positive value\r\n```\r\n\r\nThis seems inconsistent, because `sqrt -4` and `log -4` work fine, resulting in complex numbers.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/143/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/143/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":10013843425,"node_id":"CE_lADOAZPgIc5tfsMvzwAAAAJU3x_h","url":"https://api.github.com/repos/robpike/ivy/issues/events/10013843425","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-08-05T00:19:45Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/140","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/140/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/140/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/140/events","html_url":"https://github.com/robpike/ivy/pull/140","id":1837024047,"node_id":"PR_kwDOAZPgIc5XNl4x","number":140,"title":"ivy: fix function undefinition","user":{"login":"yishailerner","id":47819491,"node_id":"MDQ6VXNlcjQ3ODE5NDkx","avatar_url":"https://avatars.githubusercontent.com/u/47819491?v=4","gravatar_id":"","url":"https://api.github.com/users/yishailerner","html_url":"https://github.com/yishailerner","followers_url":"https://api.github.com/users/yishailerner/followers","following_url":"https://api.github.com/users/yishailerner/following{/other_user}","gists_url":"https://api.github.com/users/yishailerner/gists{/gist_id}","starred_url":"https://api.github.com/users/yishailerner/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yishailerner/subscriptions","organizations_url":"https://api.github.com/users/yishailerner/orgs","repos_url":"https://api.github.com/users/yishailerner/repos","events_url":"https://api.github.com/users/yishailerner/events{/privacy}","received_events_url":"https://api.github.com/users/yishailerner/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-08-04T16:13:45Z","updated_at":"2023-08-05T00:19:48Z","closed_at":"2023-08-05T00:19:44Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/140","html_url":"https://github.com/robpike/ivy/pull/140","diff_url":"https://github.com/robpike/ivy/pull/140.diff","patch_url":"https://github.com/robpike/ivy/pull/140.patch","merged_at":"2023-08-05T00:19:44Z"},"body":"Function undefinition did not work because the previous definition was overwritten before being saved, and so restoring it was a no-op.\r\n\r\nThis meant functions with intermediate state could be produced, potentially violating invariants. For example, the following creates a function with a partial body but without any locals, eventually leading to an index out of range when trying to access the local `b`:\r\n\r\n```\r\nop inc b =\r\n b + 1\r\n |\r\n\r\ninc 1\r\n```\r\n\r\n```\r\n$ ivy <crash.ivy\r\nunexpected EOF\r\n\r\n\r\npanic: runtime error: index out of range [-1] [recovered]\r\n panic: runtime error: index out of range [-1]\r\n\r\ngoroutine 1 [running]:\r\n...\r\n```","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/140/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/140/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10013843424,"node_id":"ME_lADOAZPgIc5tfsMvzwAAAAJU3x_g","url":"https://api.github.com/repos/robpike/ivy/issues/events/10013843424","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"f234eff32377fb89e87240e917d62c1f079e7229","commit_url":"https://api.github.com/repos/robpike/ivy/commits/f234eff32377fb89e87240e917d62c1f079e7229","created_at":"2023-08-05T00:19:44Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/140","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/140/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/140/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/140/events","html_url":"https://github.com/robpike/ivy/pull/140","id":1837024047,"node_id":"PR_kwDOAZPgIc5XNl4x","number":140,"title":"ivy: fix function undefinition","user":{"login":"yishailerner","id":47819491,"node_id":"MDQ6VXNlcjQ3ODE5NDkx","avatar_url":"https://avatars.githubusercontent.com/u/47819491?v=4","gravatar_id":"","url":"https://api.github.com/users/yishailerner","html_url":"https://github.com/yishailerner","followers_url":"https://api.github.com/users/yishailerner/followers","following_url":"https://api.github.com/users/yishailerner/following{/other_user}","gists_url":"https://api.github.com/users/yishailerner/gists{/gist_id}","starred_url":"https://api.github.com/users/yishailerner/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yishailerner/subscriptions","organizations_url":"https://api.github.com/users/yishailerner/orgs","repos_url":"https://api.github.com/users/yishailerner/repos","events_url":"https://api.github.com/users/yishailerner/events{/privacy}","received_events_url":"https://api.github.com/users/yishailerner/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-08-04T16:13:45Z","updated_at":"2023-08-05T00:19:48Z","closed_at":"2023-08-05T00:19:44Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/140","html_url":"https://github.com/robpike/ivy/pull/140","diff_url":"https://github.com/robpike/ivy/pull/140.diff","patch_url":"https://github.com/robpike/ivy/pull/140.patch","merged_at":"2023-08-05T00:19:44Z"},"body":"Function undefinition did not work because the previous definition was overwritten before being saved, and so restoring it was a no-op.\r\n\r\nThis meant functions with intermediate state could be produced, potentially violating invariants. For example, the following creates a function with a partial body but without any locals, eventually leading to an index out of range when trying to access the local `b`:\r\n\r\n```\r\nop inc b =\r\n b + 1\r\n |\r\n\r\ninc 1\r\n```\r\n\r\n```\r\n$ ivy <crash.ivy\r\nunexpected EOF\r\n\r\n\r\npanic: runtime error: index out of range [-1] [recovered]\r\n panic: runtime error: index out of range [-1]\r\n\r\ngoroutine 1 [running]:\r\n...\r\n```","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/140/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/140/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10013843423,"node_id":"REFE_lADOAZPgIc5tfsMvzwAAAAJU3x_f","url":"https://api.github.com/repos/robpike/ivy/issues/events/10013843423","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"f234eff32377fb89e87240e917d62c1f079e7229","commit_url":"https://api.github.com/repos/robpike/ivy/commits/f234eff32377fb89e87240e917d62c1f079e7229","created_at":"2023-08-05T00:19:44Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/140","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/140/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/140/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/140/events","html_url":"https://github.com/robpike/ivy/pull/140","id":1837024047,"node_id":"PR_kwDOAZPgIc5XNl4x","number":140,"title":"ivy: fix function undefinition","user":{"login":"yishailerner","id":47819491,"node_id":"MDQ6VXNlcjQ3ODE5NDkx","avatar_url":"https://avatars.githubusercontent.com/u/47819491?v=4","gravatar_id":"","url":"https://api.github.com/users/yishailerner","html_url":"https://github.com/yishailerner","followers_url":"https://api.github.com/users/yishailerner/followers","following_url":"https://api.github.com/users/yishailerner/following{/other_user}","gists_url":"https://api.github.com/users/yishailerner/gists{/gist_id}","starred_url":"https://api.github.com/users/yishailerner/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yishailerner/subscriptions","organizations_url":"https://api.github.com/users/yishailerner/orgs","repos_url":"https://api.github.com/users/yishailerner/repos","events_url":"https://api.github.com/users/yishailerner/events{/privacy}","received_events_url":"https://api.github.com/users/yishailerner/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-08-04T16:13:45Z","updated_at":"2023-08-05T00:19:48Z","closed_at":"2023-08-05T00:19:44Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/140","html_url":"https://github.com/robpike/ivy/pull/140","diff_url":"https://github.com/robpike/ivy/pull/140.diff","patch_url":"https://github.com/robpike/ivy/pull/140.patch","merged_at":"2023-08-05T00:19:44Z"},"body":"Function undefinition did not work because the previous definition was overwritten before being saved, and so restoring it was a no-op.\r\n\r\nThis meant functions with intermediate state could be produced, potentially violating invariants. For example, the following creates a function with a partial body but without any locals, eventually leading to an index out of range when trying to access the local `b`:\r\n\r\n```\r\nop inc b =\r\n b + 1\r\n |\r\n\r\ninc 1\r\n```\r\n\r\n```\r\n$ ivy <crash.ivy\r\nunexpected EOF\r\n\r\n\r\npanic: runtime error: index out of range [-1] [recovered]\r\n panic: runtime error: index out of range [-1]\r\n\r\ngoroutine 1 [running]:\r\n...\r\n```","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/140/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/140/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":10013792520,"node_id":"CE_lADOAZPgIc5tI0JIzwAAAAJU3lkI","url":"https://api.github.com/repos/robpike/ivy/issues/events/10013792520","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"d8acf33049000f19f95b027bf44a8dd983e24037","commit_url":"https://api.github.com/repos/robpike/ivy/commits/d8acf33049000f19f95b027bf44a8dd983e24037","created_at":"2023-08-05T00:00:35Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/136","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/136/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/136/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/136/events","html_url":"https://github.com/robpike/ivy/issues/136","id":1831027272,"node_id":"I_kwDOAZPgIc5tI0JI","number":136,"title":"encode: support non-integer rhs","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-08-01T11:06:32Z","updated_at":"2023-08-05T00:00:35Z","closed_at":"2023-08-05T00:00:35Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"```\r\n0 24 60 60 encode 1234.567\r\nencode: cannot convert rational to big int\r\n```\r\n\r\n```\r\nt = sys \"sec\"\r\n0 24 60 60 encode (sys \"sec\") - t\r\nencode: cannot convert float to big int\r\n```\r\n\r\nThe APL I tried supports this:\r\n\r\n```\r\n0 24 60 60 ⊤ 1234.567\r\n0 0 20 34.567\r\n```\r\n\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/136/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/136/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":10013354993,"node_id":"CE_lADOAZPgIc5thB68zwAAAAJU16vx","url":"https://api.github.com/repos/robpike/ivy/issues/events/10013354993","actor":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-08-04T21:53:07Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/141","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/141/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/141/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/141/events","html_url":"https://github.com/robpike/ivy/pull/141","id":1837375164,"node_id":"PR_kwDOAZPgIc5XOyOJ","number":141,"title":"ivy: implement 'sgn' for complex numbers","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-08-04T21:41:34Z","updated_at":"2023-08-04T21:53:07Z","closed_at":"2023-08-04T21:53:07Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/141","html_url":"https://github.com/robpike/ivy/pull/141","diff_url":"https://github.com/robpike/ivy/pull/141.diff","patch_url":"https://github.com/robpike/ivy/pull/141.patch","merged_at":null},"body":"The generalization of the signum function for complex numbers is\r\n\r\n sgn z = z/|z| if z≠0, and 0 if z=0\r\n\r\nSee https://en.wikipedia.org/wiki/Sign_function#Complex_signum","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/141/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/141/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":9992842055,"node_id":"CE_lADOAZPgIc5tSHS-zwAAAAJTnqtH","url":"https://api.github.com/repos/robpike/ivy/issues/events/9992842055","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-08-02T22:22:27Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/137","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/137/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/137/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/137/events","html_url":"https://github.com/robpike/ivy/pull/137","id":1833465022,"node_id":"PR_kwDOAZPgIc5XBmt0","number":137,"title":"ivy: fix nil panic on indexed assignment of rationals, floats or big ints","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-08-02T16:00:14Z","updated_at":"2023-08-02T22:22:28Z","closed_at":"2023-08-02T22:22:27Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/137","html_url":"https://github.com/robpike/ivy/pull/137","diff_url":"https://github.com/robpike/ivy/pull/137.diff","patch_url":"https://github.com/robpike/ivy/pull/137.patch","merged_at":"2023-08-02T22:22:27Z"},"body":"Indexed assignment did not work for rationals, floats, and big integers because in the Copy methods of the types BigRat, BigFloat, and BigInt, relevant variables were not allocated before being used, leading to a nil panic. The following assignments now work:\r\n\r\n x = iota 3\r\n x[1] = 1/2\r\n x[2] = float 0.5\r\n x[3] = 10000000000","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/137/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/137/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":9992842045,"node_id":"ME_lADOAZPgIc5tSHS-zwAAAAJTnqs9","url":"https://api.github.com/repos/robpike/ivy/issues/events/9992842045","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"d6af9e73a9990261f120fd136ecc54b44736f338","commit_url":"https://api.github.com/repos/robpike/ivy/commits/d6af9e73a9990261f120fd136ecc54b44736f338","created_at":"2023-08-02T22:22:27Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/137","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/137/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/137/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/137/events","html_url":"https://github.com/robpike/ivy/pull/137","id":1833465022,"node_id":"PR_kwDOAZPgIc5XBmt0","number":137,"title":"ivy: fix nil panic on indexed assignment of rationals, floats or big ints","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-08-02T16:00:14Z","updated_at":"2023-08-02T22:22:28Z","closed_at":"2023-08-02T22:22:27Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/137","html_url":"https://github.com/robpike/ivy/pull/137","diff_url":"https://github.com/robpike/ivy/pull/137.diff","patch_url":"https://github.com/robpike/ivy/pull/137.patch","merged_at":"2023-08-02T22:22:27Z"},"body":"Indexed assignment did not work for rationals, floats, and big integers because in the Copy methods of the types BigRat, BigFloat, and BigInt, relevant variables were not allocated before being used, leading to a nil panic. The following assignments now work:\r\n\r\n x = iota 3\r\n x[1] = 1/2\r\n x[2] = float 0.5\r\n x[3] = 10000000000","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/137/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/137/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":9992842040,"node_id":"REFE_lADOAZPgIc5tSHS-zwAAAAJTnqs4","url":"https://api.github.com/repos/robpike/ivy/issues/events/9992842040","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"d6af9e73a9990261f120fd136ecc54b44736f338","commit_url":"https://api.github.com/repos/robpike/ivy/commits/d6af9e73a9990261f120fd136ecc54b44736f338","created_at":"2023-08-02T22:22:27Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/137","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/137/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/137/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/137/events","html_url":"https://github.com/robpike/ivy/pull/137","id":1833465022,"node_id":"PR_kwDOAZPgIc5XBmt0","number":137,"title":"ivy: fix nil panic on indexed assignment of rationals, floats or big ints","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-08-02T16:00:14Z","updated_at":"2023-08-02T22:22:28Z","closed_at":"2023-08-02T22:22:27Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/137","html_url":"https://github.com/robpike/ivy/pull/137","diff_url":"https://github.com/robpike/ivy/pull/137.diff","patch_url":"https://github.com/robpike/ivy/pull/137.patch","merged_at":"2023-08-02T22:22:27Z"},"body":"Indexed assignment did not work for rationals, floats, and big integers because in the Copy methods of the types BigRat, BigFloat, and BigInt, relevant variables were not allocated before being used, leading to a nil panic. The following assignments now work:\r\n\r\n x = iota 3\r\n x[1] = 1/2\r\n x[2] = float 0.5\r\n x[3] = 10000000000","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/137/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/137/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":9982137549,"node_id":"REFE_lADOAZPgIc5siBg4zwAAAAJS-1TN","url":"https://api.github.com/repos/robpike/ivy/issues/events/9982137549","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"5e296b64d383089446d15f2a659134b4a7af4ed9","commit_url":"https://api.github.com/repos/robpike/ivy/commits/5e296b64d383089446d15f2a659134b4a7af4ed9","created_at":"2023-08-02T00:07:17Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/132","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/132/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/132/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/132/events","html_url":"https://github.com/robpike/ivy/issues/132","id":1820858424,"node_id":"I_kwDOAZPgIc5siBg4","number":132,"title":"provide enclose and disclose operations","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":10,"created_at":"2023-07-25T18:01:02Z","updated_at":"2023-07-28T12:29:44Z","closed_at":"2023-07-28T11:13:11Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"One can implement equivalent operations to APL's monadic ⊂ and ⊃ like this:\r\n\r\n\top enclose a = 1 take a a\r\n\top disclose a = a[1]\r\n\r\nUnfortunately, the implementation of `disclose` depends on the origin.\r\nWould it perhaps make sense to provide them as builtins?\r\n\r\nOther names could be `box` or `nest` for enclose, and `first` for disclose.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/132/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/132/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":9972222371,"node_id":"CE_lADOAZPgIc5s8iswzwAAAAJSZAmj","url":"https://api.github.com/repos/robpike/ivy/issues/events/9972222371","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"f024fcaf177590116ff01bc63de6592cef8afa5a","commit_url":"https://api.github.com/repos/robpike/ivy/commits/f024fcaf177590116ff01bc63de6592cef8afa5a","created_at":"2023-08-01T06:14:51Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/133","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/133/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/133/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/133/events","html_url":"https://github.com/robpike/ivy/issues/133","id":1827810096,"node_id":"I_kwDOAZPgIc5s8isw","number":133,"title":"help texts for `sys \"date\"` and `sys \"time\"` are swapped","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":9,"created_at":"2023-07-30T05:29:50Z","updated_at":"2023-08-02T00:05:50Z","closed_at":"2023-08-01T06:14:51Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"The help texts for `sys \"date\"` and `sys \"time\"` say:\r\n\r\n```\r\n\"date\": the current time as a vector of numbers:\r\n year month day hour minute second\r\n\"time\": the current time in Unix format\r\n```\r\n\r\nThe actual outputs are exactly the other way around:\r\n\r\n```\r\nsys \"date\"\r\nSun Jul 30 00:22:20 CEST 2023\r\n\r\nsys \"time\"\r\n2023 7 30 0 22 35.044431\r\n```\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/133/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/133/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":9957723160,"node_id":"CE_lADOAZPgIc5s9sb5zwAAAAJRhswY","url":"https://api.github.com/repos/robpike/ivy/issues/events/9957723160","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"756ab84da627b4d1d3b93c2f72aa81730b3051ca","commit_url":"https://api.github.com/repos/robpike/ivy/commits/756ab84da627b4d1d3b93c2f72aa81730b3051ca","created_at":"2023-07-31T00:10:06Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/134","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/134/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/134/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/134/events","html_url":"https://github.com/robpike/ivy/pull/134","id":1828112121,"node_id":"PR_kwDOAZPgIc5WvepS","number":134,"title":"APL unique is ∪","user":{"login":"mndrix","id":43997,"node_id":"MDQ6VXNlcjQzOTk3","avatar_url":"https://avatars.githubusercontent.com/u/43997?v=4","gravatar_id":"","url":"https://api.github.com/users/mndrix","html_url":"https://github.com/mndrix","followers_url":"https://api.github.com/users/mndrix/followers","following_url":"https://api.github.com/users/mndrix/following{/other_user}","gists_url":"https://api.github.com/users/mndrix/gists{/gist_id}","starred_url":"https://api.github.com/users/mndrix/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mndrix/subscriptions","organizations_url":"https://api.github.com/users/mndrix/orgs","repos_url":"https://api.github.com/users/mndrix/repos","events_url":"https://api.github.com/users/mndrix/events{/privacy}","received_events_url":"https://api.github.com/users/mndrix/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-07-30T22:42:04Z","updated_at":"2023-08-10T21:18:05Z","closed_at":"2023-07-31T00:10:06Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/134","html_url":"https://github.com/robpike/ivy/pull/134","diff_url":"https://github.com/robpike/ivy/pull/134.diff","patch_url":"https://github.com/robpike/ivy/pull/134.patch","merged_at":null},"body":null,"reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/134/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/134/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":9946935585,"node_id":"CE_lADOAZPgIc5siBg4zwAAAAJQ4jEh","url":"https://api.github.com/repos/robpike/ivy/issues/events/9946935585","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"1d412ad769812e6f85396cdf64d0a1310c1ea72e","commit_url":"https://api.github.com/repos/robpike/ivy/commits/1d412ad769812e6f85396cdf64d0a1310c1ea72e","created_at":"2023-07-28T11:13:11Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/132","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/132/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/132/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/132/events","html_url":"https://github.com/robpike/ivy/issues/132","id":1820858424,"node_id":"I_kwDOAZPgIc5siBg4","number":132,"title":"provide enclose and disclose operations","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":10,"created_at":"2023-07-25T18:01:02Z","updated_at":"2023-07-28T12:29:44Z","closed_at":"2023-07-28T11:13:11Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"One can implement equivalent operations to APL's monadic ⊂ and ⊃ like this:\r\n\r\n\top enclose a = 1 take a a\r\n\top disclose a = a[1]\r\n\r\nUnfortunately, the implementation of `disclose` depends on the origin.\r\nWould it perhaps make sense to provide them as builtins?\r\n\r\nOther names could be `box` or `nest` for enclose, and `first` for disclose.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/132/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/132/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":9946912019,"node_id":"REE_lADOAZPgIc5siBg4zwAAAAJQ4dUT","url":"https://api.github.com/repos/robpike/ivy/issues/events/9946912019","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"reopened","commit_id":null,"commit_url":null,"created_at":"2023-07-28T11:09:52Z","state_reason":"reopened","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/132","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/132/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/132/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/132/events","html_url":"https://github.com/robpike/ivy/issues/132","id":1820858424,"node_id":"I_kwDOAZPgIc5siBg4","number":132,"title":"provide enclose and disclose operations","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":10,"created_at":"2023-07-25T18:01:02Z","updated_at":"2023-07-28T12:29:44Z","closed_at":"2023-07-28T11:13:11Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"One can implement equivalent operations to APL's monadic ⊂ and ⊃ like this:\r\n\r\n\top enclose a = 1 take a a\r\n\top disclose a = a[1]\r\n\r\nUnfortunately, the implementation of `disclose` depends on the origin.\r\nWould it perhaps make sense to provide them as builtins?\r\n\r\nOther names could be `box` or `nest` for enclose, and `first` for disclose.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/132/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/132/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":9945058820,"node_id":"SE_lADOAZPgIc5siBg4zwAAAAJQxY4E","url":"https://api.github.com/repos/robpike/ivy/issues/events/9945058820","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2023-07-28T07:48:13Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/132","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/132/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/132/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/132/events","html_url":"https://github.com/robpike/ivy/issues/132","id":1820858424,"node_id":"I_kwDOAZPgIc5siBg4","number":132,"title":"provide enclose and disclose operations","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":10,"created_at":"2023-07-25T18:01:02Z","updated_at":"2023-07-28T12:29:44Z","closed_at":"2023-07-28T11:13:11Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"One can implement equivalent operations to APL's monadic ⊂ and ⊃ like this:\r\n\r\n\top enclose a = 1 take a a\r\n\top disclose a = a[1]\r\n\r\nUnfortunately, the implementation of `disclose` depends on the origin.\r\nWould it perhaps make sense to provide them as builtins?\r\n\r\nOther names could be `box` or `nest` for enclose, and `first` for disclose.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/132/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/132/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":9945058810,"node_id":"MEE_lADOAZPgIc5siBg4zwAAAAJQxY36","url":"https://api.github.com/repos/robpike/ivy/issues/events/9945058810","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2023-07-28T07:48:13Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/132","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/132/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/132/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/132/events","html_url":"https://github.com/robpike/ivy/issues/132","id":1820858424,"node_id":"I_kwDOAZPgIc5siBg4","number":132,"title":"provide enclose and disclose operations","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":10,"created_at":"2023-07-25T18:01:02Z","updated_at":"2023-07-28T12:29:44Z","closed_at":"2023-07-28T11:13:11Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"One can implement equivalent operations to APL's monadic ⊂ and ⊃ like this:\r\n\r\n\top enclose a = 1 take a a\r\n\top disclose a = a[1]\r\n\r\nUnfortunately, the implementation of `disclose` depends on the origin.\r\nWould it perhaps make sense to provide them as builtins?\r\n\r\nOther names could be `box` or `nest` for enclose, and `first` for disclose.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/132/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/132/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":9944405401,"node_id":"CE_lADOAZPgIc5siBg4zwAAAAJQu5WZ","url":"https://api.github.com/repos/robpike/ivy/issues/events/9944405401","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"ac8c8db69159bb39b6ccea35bbf7b0d4768548be","commit_url":"https://api.github.com/repos/robpike/ivy/commits/ac8c8db69159bb39b6ccea35bbf7b0d4768548be","created_at":"2023-07-28T06:30:38Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/132","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/132/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/132/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/132/events","html_url":"https://github.com/robpike/ivy/issues/132","id":1820858424,"node_id":"I_kwDOAZPgIc5siBg4","number":132,"title":"provide enclose and disclose operations","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":10,"created_at":"2023-07-25T18:01:02Z","updated_at":"2023-07-28T12:29:44Z","closed_at":"2023-07-28T11:13:11Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"One can implement equivalent operations to APL's monadic ⊂ and ⊃ like this:\r\n\r\n\top enclose a = 1 take a a\r\n\top disclose a = a[1]\r\n\r\nUnfortunately, the implementation of `disclose` depends on the origin.\r\nWould it perhaps make sense to provide them as builtins?\r\n\r\nOther names could be `box` or `nest` for enclose, and `first` for disclose.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/132/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/132/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":9891913704,"node_id":"CE_lADOAZPgIc4SYk-czwAAAAJNmp_o","url":"https://api.github.com/repos/robpike/ivy/issues/events/9891913704","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"8c87d5cf6cd0098df65522253d23ff3cd960ea68","commit_url":"https://api.github.com/repos/robpike/ivy/commits/8c87d5cf6cd0098df65522253d23ff3cd960ea68","created_at":"2023-07-23T00:45:28Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/47","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/47/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/47/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/47/events","html_url":"https://github.com/robpike/ivy/issues/47","id":308432796,"node_id":"MDU6SXNzdWUzMDg0MzI3OTY=","number":47,"title":"mobile: generator needs updating","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2018-03-26T04:54:47Z","updated_at":"2023-07-23T00:45:27Z","closed_at":"2023-07-23T00:45:27Z","author_association":"OWNER","active_lock_reason":null,"body":"There is no import comment in the generated code.\r\nAlso the DO NOT EDIT should be brought up to current standard.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/47/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/47/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":9890678466,"node_id":"CE_lADOAZPgIc5rPc7BzwAAAAJNh8bC","url":"https://api.github.com/repos/robpike/ivy/issues/events/9890678466","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"8b8bebc998dd4fd8048543abc3945425cbbf925d","commit_url":"https://api.github.com/repos/robpike/ivy/commits/8b8bebc998dd4fd8048543abc3945425cbbf925d","created_at":"2023-07-22T07:24:31Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/131","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/131/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/131/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/131/events","html_url":"https://github.com/robpike/ivy/issues/131","id":1799212737,"node_id":"I_kwDOAZPgIc5rPc7B","number":131,"title":"support large takes (with zero fill) and large drops for matrices","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-07-11T15:34:44Z","updated_at":"2023-07-22T07:24:31Z","closed_at":"2023-07-22T07:24:30Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"Commit https://github.com/robpike/ivy/commit/05a8373fa28de7b4812be8e1d210f6dc3eec65d6 added support for large takes (with zero fill) and large drops (returning an empty vector) for vectors, but it doesn't work with matrices:\r\n\r\n```\r\n4 4 take 3 3 rho iota 9\r\n\ttake: left operand (4) out of range for 3 in shape (3 3)\r\n\r\n4 4 drop 3 3 rho iota 9\r\n\tdrop: left operand (4) out of range for 3 in shape (3 3)\r\n```\r\n\r\nExpected behavior (consistent with APL):\r\n\r\n```\r\n4 4 take 3 3 rho iota 9\r\n\t1 2 3 0\r\n\t4 5 6 0\r\n\t7 8 9 0\r\n\t0 0 0 0\r\n\r\n4 4 drop 3 3 rho iota 9\r\n\t\r\n```\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/131/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/131/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":9890575310,"node_id":"REFE_lADOAZPgIc5rPc7BzwAAAAJNhjPO","url":"https://api.github.com/repos/robpike/ivy/issues/events/9890575310","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"79cc16b834ed364a584756ba65b3562fc440ccfb","commit_url":"https://api.github.com/repos/robpike/ivy/commits/79cc16b834ed364a584756ba65b3562fc440ccfb","created_at":"2023-07-22T06:00:15Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/131","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/131/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/131/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/131/events","html_url":"https://github.com/robpike/ivy/issues/131","id":1799212737,"node_id":"I_kwDOAZPgIc5rPc7B","number":131,"title":"support large takes (with zero fill) and large drops for matrices","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-07-11T15:34:44Z","updated_at":"2023-07-22T07:24:31Z","closed_at":"2023-07-22T07:24:30Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"Commit https://github.com/robpike/ivy/commit/05a8373fa28de7b4812be8e1d210f6dc3eec65d6 added support for large takes (with zero fill) and large drops (returning an empty vector) for vectors, but it doesn't work with matrices:\r\n\r\n```\r\n4 4 take 3 3 rho iota 9\r\n\ttake: left operand (4) out of range for 3 in shape (3 3)\r\n\r\n4 4 drop 3 3 rho iota 9\r\n\tdrop: left operand (4) out of range for 3 in shape (3 3)\r\n```\r\n\r\nExpected behavior (consistent with APL):\r\n\r\n```\r\n4 4 take 3 3 rho iota 9\r\n\t1 2 3 0\r\n\t4 5 6 0\r\n\t7 8 9 0\r\n\t0 0 0 0\r\n\r\n4 4 drop 3 3 rho iota 9\r\n\t\r\n```\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/131/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/131/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":9805356048,"node_id":"REFE_lADOAZPgIc5rPc7BzwAAAAJIcdwQ","url":"https://api.github.com/repos/robpike/ivy/issues/events/9805356048","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"0d0f44f7fa665c18f34bc518715c2e047f198c20","commit_url":"https://api.github.com/repos/robpike/ivy/commits/0d0f44f7fa665c18f34bc518715c2e047f198c20","created_at":"2023-07-13T01:45:30Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/131","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/131/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/131/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/131/events","html_url":"https://github.com/robpike/ivy/issues/131","id":1799212737,"node_id":"I_kwDOAZPgIc5rPc7B","number":131,"title":"support large takes (with zero fill) and large drops for matrices","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-07-11T15:34:44Z","updated_at":"2023-07-22T07:24:31Z","closed_at":"2023-07-22T07:24:30Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"Commit https://github.com/robpike/ivy/commit/05a8373fa28de7b4812be8e1d210f6dc3eec65d6 added support for large takes (with zero fill) and large drops (returning an empty vector) for vectors, but it doesn't work with matrices:\r\n\r\n```\r\n4 4 take 3 3 rho iota 9\r\n\ttake: left operand (4) out of range for 3 in shape (3 3)\r\n\r\n4 4 drop 3 3 rho iota 9\r\n\tdrop: left operand (4) out of range for 3 in shape (3 3)\r\n```\r\n\r\nExpected behavior (consistent with APL):\r\n\r\n```\r\n4 4 take 3 3 rho iota 9\r\n\t1 2 3 0\r\n\t4 5 6 0\r\n\t7 8 9 0\r\n\t0 0 0 0\r\n\r\n4 4 drop 3 3 rho iota 9\r\n\t\r\n```\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/131/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/131/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":9781027808,"node_id":"CE_lADOAZPgIc5KgO2FzwAAAAJG_qPg","url":"https://api.github.com/repos/robpike/ivy/issues/events/9781027808","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"f7e4c14f094b7cee09997d1436a336de4bda736f","commit_url":"https://api.github.com/repos/robpike/ivy/commits/f7e4c14f094b7cee09997d1436a336de4bda736f","created_at":"2023-07-11T00:13:04Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/113","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/113/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/113/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/113/events","html_url":"https://github.com/robpike/ivy/issues/113","id":1249963397,"node_id":"I_kwDOAZPgIc5KgO2F","number":113,"title":"ability to list variable names","user":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2022-05-26T19:32:49Z","updated_at":"2023-07-11T00:13:04Z","closed_at":"2023-07-11T00:13:04Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"Sometimes I would like to see the user-defined variables and functions, e.g. in a long-running session, or after I loaded a library or a saved session. I can list the function names with `)op`, but there is no way to list the variable names.\r\n\r\nTwo possible implementations come to my mind: either a new special command for variables, like `)var` or `)vars`, or list them under the `)op` command as \"nullary\" ops or simply as variables. In this case it might make sense to rename `)op` to a more generic name like `)defs`.\r\n\r\nDyalog APL has the commands `)VARS`, `)FNS` and `)OPS`.\r\n\r\nThere is another use-case for this feature: I have written a line editor wrapper for the `ivy` command: https://github.com/fzipp/ivy-prompt It supports among other things tab-completion for built-in keywords, but also for user-defined functions. It queries their names with the `)op` command. I would like to support it for user-defined variables, too.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/113/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/113/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":9774406525,"node_id":"CE_lADOAZPgIc4M064AzwAAAAJGmZt9","url":"https://api.github.com/repos/robpike/ivy/issues/events/9774406525","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-07-10T12:49:22Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/36","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/36/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/36/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/36/events","html_url":"https://github.com/robpike/ivy/issues/36","id":215199232,"node_id":"MDU6SXNzdWUyMTUxOTkyMzI=","number":36,"title":"value: verify that we never attempt to index a zero-length vector","user":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-03-18T14:56:51Z","updated_at":"2023-07-10T12:49:22Z","closed_at":"2023-07-10T12:49:22Z","author_association":"OWNER","active_lock_reason":null,"body":"We have found a couple of places that assume a vector has at least one element. It's conceivable that is an unwise assumption.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/36/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/36/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":9736976739,"node_id":"CE_lADOAZPgIc5pGzwszwAAAAJEXnlj","url":"https://api.github.com/repos/robpike/ivy/issues/events/9736976739","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-07-05T21:58:06Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/129","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/129/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/129/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/129/events","html_url":"https://github.com/robpike/ivy/pull/129","id":1763392556,"node_id":"PR_kwDOAZPgIc5TVVsU","number":129,"title":"Add `unique` operator","user":{"login":"Blackmane","id":6045018,"node_id":"MDQ6VXNlcjYwNDUwMTg=","avatar_url":"https://avatars.githubusercontent.com/u/6045018?v=4","gravatar_id":"","url":"https://api.github.com/users/Blackmane","html_url":"https://github.com/Blackmane","followers_url":"https://api.github.com/users/Blackmane/followers","following_url":"https://api.github.com/users/Blackmane/following{/other_user}","gists_url":"https://api.github.com/users/Blackmane/gists{/gist_id}","starred_url":"https://api.github.com/users/Blackmane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Blackmane/subscriptions","organizations_url":"https://api.github.com/users/Blackmane/orgs","repos_url":"https://api.github.com/users/Blackmane/repos","events_url":"https://api.github.com/users/Blackmane/events{/privacy}","received_events_url":"https://api.github.com/users/Blackmane/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":8,"created_at":"2023-06-19T12:02:18Z","updated_at":"2023-07-05T21:58:06Z","closed_at":"2023-07-05T21:58:05Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/129","html_url":"https://github.com/robpike/ivy/pull/129","diff_url":"https://github.com/robpike/ivy/pull/129.diff","patch_url":"https://github.com/robpike/ivy/pull/129.patch","merged_at":null},"body":"Hello,\r\nI tried adding the `unique` operator, based on how the same operator works on APL https://aplwiki.com/wiki/Unique\r\n\r\nThe `unique` operator remove duplicates from a vector.\r\nIt's implemented as a unary operator.\r\n\r\nSome example of the implementation:\r\n```\r\nunique iota 9\r\n1 2 3 4 5 6 7 8 9\r\n\r\nunique 1\r\n1\r\n\r\nunique 1 1 1 1 1 1 1 1 1\r\n1\r\n\r\nunique 'Missisipi'\r\nMisp\r\n```\r\n\r\nI hope it could be a useful operator.\r\nIt's my first time with Go. Let me know if something in the implementation is missing.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/129/reactions","total_count":1,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":1,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/129/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":9736974784,"node_id":"REE_lADOAZPgIc5pGzwszwAAAAJEXnHA","url":"https://api.github.com/repos/robpike/ivy/issues/events/9736974784","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"reopened","commit_id":null,"commit_url":null,"created_at":"2023-07-05T21:57:41Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/129","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/129/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/129/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/129/events","html_url":"https://github.com/robpike/ivy/pull/129","id":1763392556,"node_id":"PR_kwDOAZPgIc5TVVsU","number":129,"title":"Add `unique` operator","user":{"login":"Blackmane","id":6045018,"node_id":"MDQ6VXNlcjYwNDUwMTg=","avatar_url":"https://avatars.githubusercontent.com/u/6045018?v=4","gravatar_id":"","url":"https://api.github.com/users/Blackmane","html_url":"https://github.com/Blackmane","followers_url":"https://api.github.com/users/Blackmane/followers","following_url":"https://api.github.com/users/Blackmane/following{/other_user}","gists_url":"https://api.github.com/users/Blackmane/gists{/gist_id}","starred_url":"https://api.github.com/users/Blackmane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Blackmane/subscriptions","organizations_url":"https://api.github.com/users/Blackmane/orgs","repos_url":"https://api.github.com/users/Blackmane/repos","events_url":"https://api.github.com/users/Blackmane/events{/privacy}","received_events_url":"https://api.github.com/users/Blackmane/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":8,"created_at":"2023-06-19T12:02:18Z","updated_at":"2023-07-05T21:58:06Z","closed_at":"2023-07-05T21:58:05Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/129","html_url":"https://github.com/robpike/ivy/pull/129","diff_url":"https://github.com/robpike/ivy/pull/129.diff","patch_url":"https://github.com/robpike/ivy/pull/129.patch","merged_at":null},"body":"Hello,\r\nI tried adding the `unique` operator, based on how the same operator works on APL https://aplwiki.com/wiki/Unique\r\n\r\nThe `unique` operator remove duplicates from a vector.\r\nIt's implemented as a unary operator.\r\n\r\nSome example of the implementation:\r\n```\r\nunique iota 9\r\n1 2 3 4 5 6 7 8 9\r\n\r\nunique 1\r\n1\r\n\r\nunique 1 1 1 1 1 1 1 1 1\r\n1\r\n\r\nunique 'Missisipi'\r\nMisp\r\n```\r\n\r\nI hope it could be a useful operator.\r\nIt's my first time with Go. Let me know if something in the implementation is missing.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/129/reactions","total_count":1,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":1,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/129/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":9727764948,"node_id":"CE_lADOAZPgIc5XqlL2zwAAAAJD0enU","url":"https://api.github.com/repos/robpike/ivy/issues/events/9727764948","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"07efe1fcb32ffbc8e962390644905ad4d88edec7","commit_url":"https://api.github.com/repos/robpike/ivy/commits/07efe1fcb32ffbc8e962390644905ad4d88edec7","created_at":"2023-07-05T07:19:02Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/117","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/117/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/117/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/117/events","html_url":"https://github.com/robpike/ivy/issues/117","id":1470780150,"node_id":"I_kwDOAZPgIc5XqlL2","number":117,"title":"a way to construct multidimensional array without rho?","user":{"login":"smasher164","id":12636891,"node_id":"MDQ6VXNlcjEyNjM2ODkx","avatar_url":"https://avatars.githubusercontent.com/u/12636891?v=4","gravatar_id":"","url":"https://api.github.com/users/smasher164","html_url":"https://github.com/smasher164","followers_url":"https://api.github.com/users/smasher164/followers","following_url":"https://api.github.com/users/smasher164/following{/other_user}","gists_url":"https://api.github.com/users/smasher164/gists{/gist_id}","starred_url":"https://api.github.com/users/smasher164/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/smasher164/subscriptions","organizations_url":"https://api.github.com/users/smasher164/orgs","repos_url":"https://api.github.com/users/smasher164/repos","events_url":"https://api.github.com/users/smasher164/events{/privacy}","received_events_url":"https://api.github.com/users/smasher164/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":5,"created_at":"2022-12-01T06:56:08Z","updated_at":"2023-07-05T07:19:02Z","closed_at":"2023-07-05T07:19:02Z","author_association":"NONE","active_lock_reason":null,"body":"Is there a way to construct a multidimensional array with regular data entry?\r\nIn Dyalog, you can just write\r\n```\r\n> (1 2 3)(4 5)\r\n┌─────┬───┐\r\n│1 2 3│4 5│\r\n└─────┴───┘\r\n```\r\n\r\nThanks","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/117/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/117/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":9720135379,"node_id":"REFE_lADOAZPgIc5XqlL2zwAAAAJDXX7T","url":"https://api.github.com/repos/robpike/ivy/issues/events/9720135379","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"2d2539c8b67897869278c95937b428393297828d","commit_url":"https://api.github.com/repos/robpike/ivy/commits/2d2539c8b67897869278c95937b428393297828d","created_at":"2023-07-04T10:21:36Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/117","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/117/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/117/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/117/events","html_url":"https://github.com/robpike/ivy/issues/117","id":1470780150,"node_id":"I_kwDOAZPgIc5XqlL2","number":117,"title":"a way to construct multidimensional array without rho?","user":{"login":"smasher164","id":12636891,"node_id":"MDQ6VXNlcjEyNjM2ODkx","avatar_url":"https://avatars.githubusercontent.com/u/12636891?v=4","gravatar_id":"","url":"https://api.github.com/users/smasher164","html_url":"https://github.com/smasher164","followers_url":"https://api.github.com/users/smasher164/followers","following_url":"https://api.github.com/users/smasher164/following{/other_user}","gists_url":"https://api.github.com/users/smasher164/gists{/gist_id}","starred_url":"https://api.github.com/users/smasher164/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/smasher164/subscriptions","organizations_url":"https://api.github.com/users/smasher164/orgs","repos_url":"https://api.github.com/users/smasher164/repos","events_url":"https://api.github.com/users/smasher164/events{/privacy}","received_events_url":"https://api.github.com/users/smasher164/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":5,"created_at":"2022-12-01T06:56:08Z","updated_at":"2023-07-05T07:19:02Z","closed_at":"2023-07-05T07:19:02Z","author_association":"NONE","active_lock_reason":null,"body":"Is there a way to construct a multidimensional array with regular data entry?\r\nIn Dyalog, you can just write\r\n```\r\n> (1 2 3)(4 5)\r\n┌─────┬───┐\r\n│1 2 3│4 5│\r\n└─────┴───┘\r\n```\r\n\r\nThanks","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/117/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/117/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":9698602927,"node_id":"REFE_lADOAZPgIc5XqlL2zwAAAAJCFO-v","url":"https://api.github.com/repos/robpike/ivy/issues/events/9698602927","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"a0c08b0577677d34fa45b66cc1df5a62f480e124","commit_url":"https://api.github.com/repos/robpike/ivy/commits/a0c08b0577677d34fa45b66cc1df5a62f480e124","created_at":"2023-07-02T03:47:36Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/117","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/117/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/117/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/117/events","html_url":"https://github.com/robpike/ivy/issues/117","id":1470780150,"node_id":"I_kwDOAZPgIc5XqlL2","number":117,"title":"a way to construct multidimensional array without rho?","user":{"login":"smasher164","id":12636891,"node_id":"MDQ6VXNlcjEyNjM2ODkx","avatar_url":"https://avatars.githubusercontent.com/u/12636891?v=4","gravatar_id":"","url":"https://api.github.com/users/smasher164","html_url":"https://github.com/smasher164","followers_url":"https://api.github.com/users/smasher164/followers","following_url":"https://api.github.com/users/smasher164/following{/other_user}","gists_url":"https://api.github.com/users/smasher164/gists{/gist_id}","starred_url":"https://api.github.com/users/smasher164/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/smasher164/subscriptions","organizations_url":"https://api.github.com/users/smasher164/orgs","repos_url":"https://api.github.com/users/smasher164/repos","events_url":"https://api.github.com/users/smasher164/events{/privacy}","received_events_url":"https://api.github.com/users/smasher164/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":5,"created_at":"2022-12-01T06:56:08Z","updated_at":"2023-07-05T07:19:02Z","closed_at":"2023-07-05T07:19:02Z","author_association":"NONE","active_lock_reason":null,"body":"Is there a way to construct a multidimensional array with regular data entry?\r\nIn Dyalog, you can just write\r\n```\r\n> (1 2 3)(4 5)\r\n┌─────┬───┐\r\n│1 2 3│4 5│\r\n└─────┴───┘\r\n```\r\n\r\nThanks","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/117/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/117/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":9672620588,"node_id":"HRDE_lADOAZPgIc5qGZsPzwAAAAJAiHos","url":"https://api.github.com/repos/robpike/ivy/issues/events/9672620588","actor":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2023-06-29T04:59:24Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/130","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/130/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/130/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/130/events","html_url":"https://github.com/robpike/ivy/pull/130","id":1780062991,"node_id":"PR_kwDOAZPgIc5UM51y","number":130,"title":"ivy: close profile file","user":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-06-29T03:26:58Z","updated_at":"2023-06-29T04:59:24Z","closed_at":"2023-06-29T04:46:58Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/130","html_url":"https://github.com/robpike/ivy/pull/130","diff_url":"https://github.com/robpike/ivy/pull/130.diff","patch_url":"https://github.com/robpike/ivy/pull/130.patch","merged_at":"2023-06-29T04:46:58Z"},"body":"Balance out `f.Create` with an `f.Close`.\r\n\r\nAlso bail out if `StartCPUProfile` returns a non-`nil` error while here.\r\n\r\nI'm not sure if this matters or is helpful, but figured I'd ask by sending this PR.\r\n(Issue golang/go#26970 suggests there may be some benefit.)","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/130/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/130/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":9672535784,"node_id":"CE_lADOAZPgIc5qGZsPzwAAAAJAhy7o","url":"https://api.github.com/repos/robpike/ivy/issues/events/9672535784","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-06-29T04:46:58Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/130","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/130/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/130/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/130/events","html_url":"https://github.com/robpike/ivy/pull/130","id":1780062991,"node_id":"PR_kwDOAZPgIc5UM51y","number":130,"title":"ivy: close profile file","user":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-06-29T03:26:58Z","updated_at":"2023-06-29T04:59:24Z","closed_at":"2023-06-29T04:46:58Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/130","html_url":"https://github.com/robpike/ivy/pull/130","diff_url":"https://github.com/robpike/ivy/pull/130.diff","patch_url":"https://github.com/robpike/ivy/pull/130.patch","merged_at":"2023-06-29T04:46:58Z"},"body":"Balance out `f.Create` with an `f.Close`.\r\n\r\nAlso bail out if `StartCPUProfile` returns a non-`nil` error while here.\r\n\r\nI'm not sure if this matters or is helpful, but figured I'd ask by sending this PR.\r\n(Issue golang/go#26970 suggests there may be some benefit.)","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/130/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/130/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":9672535762,"node_id":"ME_lADOAZPgIc5qGZsPzwAAAAJAhy7S","url":"https://api.github.com/repos/robpike/ivy/issues/events/9672535762","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"e48b9133a51650272ffd68937066d6875961b5ee","commit_url":"https://api.github.com/repos/robpike/ivy/commits/e48b9133a51650272ffd68937066d6875961b5ee","created_at":"2023-06-29T04:46:58Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/130","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/130/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/130/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/130/events","html_url":"https://github.com/robpike/ivy/pull/130","id":1780062991,"node_id":"PR_kwDOAZPgIc5UM51y","number":130,"title":"ivy: close profile file","user":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-06-29T03:26:58Z","updated_at":"2023-06-29T04:59:24Z","closed_at":"2023-06-29T04:46:58Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/130","html_url":"https://github.com/robpike/ivy/pull/130","diff_url":"https://github.com/robpike/ivy/pull/130.diff","patch_url":"https://github.com/robpike/ivy/pull/130.patch","merged_at":"2023-06-29T04:46:58Z"},"body":"Balance out `f.Create` with an `f.Close`.\r\n\r\nAlso bail out if `StartCPUProfile` returns a non-`nil` error while here.\r\n\r\nI'm not sure if this matters or is helpful, but figured I'd ask by sending this PR.\r\n(Issue golang/go#26970 suggests there may be some benefit.)","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/130/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/130/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":9672535752,"node_id":"REFE_lADOAZPgIc5qGZsPzwAAAAJAhy7I","url":"https://api.github.com/repos/robpike/ivy/issues/events/9672535752","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"e48b9133a51650272ffd68937066d6875961b5ee","commit_url":"https://api.github.com/repos/robpike/ivy/commits/e48b9133a51650272ffd68937066d6875961b5ee","created_at":"2023-06-29T04:46:58Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/130","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/130/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/130/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/130/events","html_url":"https://github.com/robpike/ivy/pull/130","id":1780062991,"node_id":"PR_kwDOAZPgIc5UM51y","number":130,"title":"ivy: close profile file","user":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-06-29T03:26:58Z","updated_at":"2023-06-29T04:59:24Z","closed_at":"2023-06-29T04:46:58Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/130","html_url":"https://github.com/robpike/ivy/pull/130","diff_url":"https://github.com/robpike/ivy/pull/130.diff","patch_url":"https://github.com/robpike/ivy/pull/130.patch","merged_at":"2023-06-29T04:46:58Z"},"body":"Balance out `f.Create` with an `f.Close`.\r\n\r\nAlso bail out if `StartCPUProfile` returns a non-`nil` error while here.\r\n\r\nI'm not sure if this matters or is helpful, but figured I'd ask by sending this PR.\r\n(Issue golang/go#26970 suggests there may be some benefit.)","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/130/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/130/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":9671666434,"node_id":"CE_lADOAZPgIc5hdEfEzwAAAAJAeesC","url":"https://api.github.com/repos/robpike/ivy/issues/events/9671666434","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-06-29T01:53:47Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/127","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/127/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/127/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/127/events","html_url":"https://github.com/robpike/ivy/pull/127","id":1635010500,"node_id":"PR_kwDOAZPgIc5MmneP","number":127,"title":"improve ivy usage in scripts","user":{"login":"wgrr","id":16732610,"node_id":"MDQ6VXNlcjE2NzMyNjEw","avatar_url":"https://avatars.githubusercontent.com/u/16732610?v=4","gravatar_id":"","url":"https://api.github.com/users/wgrr","html_url":"https://github.com/wgrr","followers_url":"https://api.github.com/users/wgrr/followers","following_url":"https://api.github.com/users/wgrr/following{/other_user}","gists_url":"https://api.github.com/users/wgrr/gists{/gist_id}","starred_url":"https://api.github.com/users/wgrr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wgrr/subscriptions","organizations_url":"https://api.github.com/users/wgrr/orgs","repos_url":"https://api.github.com/users/wgrr/repos","events_url":"https://api.github.com/users/wgrr/events{/privacy}","received_events_url":"https://api.github.com/users/wgrr/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2023-03-22T03:51:52Z","updated_at":"2023-06-29T01:53:48Z","closed_at":"2023-06-29T01:53:47Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/127","html_url":"https://github.com/robpike/ivy/pull/127","diff_url":"https://github.com/robpike/ivy/pull/127.diff","patch_url":"https://github.com/robpike/ivy/pull/127.patch","merged_at":null},"body":"recent changes made in ivy made it always write cpu profiles in /tmp, even in my system tmp being a ramfs, i noticed a substantial slowdown in some scripts i have using ivy, i did what most things in go ecosystem do which is turn off by default and enable it with a flag, while doing this i also merge an old change i made to stop printing an extra new line when reading stdin from pipes, this saves an extra `| sed` i had to use to remove them, but the only annoying piece is the slowdown to exit ivy, i'm ok if you just cherry-pick this change.\r\n\r\nBR.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/127/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/127/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":9638744566,"node_id":"CE_lADOAZPgIc5pGzwszwAAAAI-g5H2","url":"https://api.github.com/repos/robpike/ivy/issues/events/9638744566","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-06-26T13:08:06Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/129","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/129/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/129/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/129/events","html_url":"https://github.com/robpike/ivy/pull/129","id":1763392556,"node_id":"PR_kwDOAZPgIc5TVVsU","number":129,"title":"Add `unique` operator","user":{"login":"Blackmane","id":6045018,"node_id":"MDQ6VXNlcjYwNDUwMTg=","avatar_url":"https://avatars.githubusercontent.com/u/6045018?v=4","gravatar_id":"","url":"https://api.github.com/users/Blackmane","html_url":"https://github.com/Blackmane","followers_url":"https://api.github.com/users/Blackmane/followers","following_url":"https://api.github.com/users/Blackmane/following{/other_user}","gists_url":"https://api.github.com/users/Blackmane/gists{/gist_id}","starred_url":"https://api.github.com/users/Blackmane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Blackmane/subscriptions","organizations_url":"https://api.github.com/users/Blackmane/orgs","repos_url":"https://api.github.com/users/Blackmane/repos","events_url":"https://api.github.com/users/Blackmane/events{/privacy}","received_events_url":"https://api.github.com/users/Blackmane/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":8,"created_at":"2023-06-19T12:02:18Z","updated_at":"2023-07-05T21:58:06Z","closed_at":"2023-07-05T21:58:05Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/129","html_url":"https://github.com/robpike/ivy/pull/129","diff_url":"https://github.com/robpike/ivy/pull/129.diff","patch_url":"https://github.com/robpike/ivy/pull/129.patch","merged_at":null},"body":"Hello,\r\nI tried adding the `unique` operator, based on how the same operator works on APL https://aplwiki.com/wiki/Unique\r\n\r\nThe `unique` operator remove duplicates from a vector.\r\nIt's implemented as a unary operator.\r\n\r\nSome example of the implementation:\r\n```\r\nunique iota 9\r\n1 2 3 4 5 6 7 8 9\r\n\r\nunique 1\r\n1\r\n\r\nunique 1 1 1 1 1 1 1 1 1\r\n1\r\n\r\nunique 'Missisipi'\r\nMisp\r\n```\r\n\r\nI hope it could be a useful operator.\r\nIt's my first time with Go. Let me know if something in the implementation is missing.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/129/reactions","total_count":1,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":1,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/129/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":9582511542,"node_id":"HRFPE_lADOAZPgIc5pGzwszwAAAAI7KYW2","url":"https://api.github.com/repos/robpike/ivy/issues/events/9582511542","actor":{"login":"Blackmane","id":6045018,"node_id":"MDQ6VXNlcjYwNDUwMTg=","avatar_url":"https://avatars.githubusercontent.com/u/6045018?v=4","gravatar_id":"","url":"https://api.github.com/users/Blackmane","html_url":"https://github.com/Blackmane","followers_url":"https://api.github.com/users/Blackmane/followers","following_url":"https://api.github.com/users/Blackmane/following{/other_user}","gists_url":"https://api.github.com/users/Blackmane/gists{/gist_id}","starred_url":"https://api.github.com/users/Blackmane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Blackmane/subscriptions","organizations_url":"https://api.github.com/users/Blackmane/orgs","repos_url":"https://api.github.com/users/Blackmane/repos","events_url":"https://api.github.com/users/Blackmane/events{/privacy}","received_events_url":"https://api.github.com/users/Blackmane/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2023-06-20T17:42:03Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/129","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/129/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/129/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/129/events","html_url":"https://github.com/robpike/ivy/pull/129","id":1763392556,"node_id":"PR_kwDOAZPgIc5TVVsU","number":129,"title":"Add `unique` operator","user":{"login":"Blackmane","id":6045018,"node_id":"MDQ6VXNlcjYwNDUwMTg=","avatar_url":"https://avatars.githubusercontent.com/u/6045018?v=4","gravatar_id":"","url":"https://api.github.com/users/Blackmane","html_url":"https://github.com/Blackmane","followers_url":"https://api.github.com/users/Blackmane/followers","following_url":"https://api.github.com/users/Blackmane/following{/other_user}","gists_url":"https://api.github.com/users/Blackmane/gists{/gist_id}","starred_url":"https://api.github.com/users/Blackmane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Blackmane/subscriptions","organizations_url":"https://api.github.com/users/Blackmane/orgs","repos_url":"https://api.github.com/users/Blackmane/repos","events_url":"https://api.github.com/users/Blackmane/events{/privacy}","received_events_url":"https://api.github.com/users/Blackmane/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":8,"created_at":"2023-06-19T12:02:18Z","updated_at":"2023-07-05T21:58:06Z","closed_at":"2023-07-05T21:58:05Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/129","html_url":"https://github.com/robpike/ivy/pull/129","diff_url":"https://github.com/robpike/ivy/pull/129.diff","patch_url":"https://github.com/robpike/ivy/pull/129.patch","merged_at":null},"body":"Hello,\r\nI tried adding the `unique` operator, based on how the same operator works on APL https://aplwiki.com/wiki/Unique\r\n\r\nThe `unique` operator remove duplicates from a vector.\r\nIt's implemented as a unary operator.\r\n\r\nSome example of the implementation:\r\n```\r\nunique iota 9\r\n1 2 3 4 5 6 7 8 9\r\n\r\nunique 1\r\n1\r\n\r\nunique 1 1 1 1 1 1 1 1 1\r\n1\r\n\r\nunique 'Missisipi'\r\nMisp\r\n```\r\n\r\nI hope it could be a useful operator.\r\nIt's my first time with Go. Let me know if something in the implementation is missing.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/129/reactions","total_count":1,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":1,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/129/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":9582412874,"node_id":"HRFPE_lADOAZPgIc5pGzwszwAAAAI7KARK","url":"https://api.github.com/repos/robpike/ivy/issues/events/9582412874","actor":{"login":"Blackmane","id":6045018,"node_id":"MDQ6VXNlcjYwNDUwMTg=","avatar_url":"https://avatars.githubusercontent.com/u/6045018?v=4","gravatar_id":"","url":"https://api.github.com/users/Blackmane","html_url":"https://github.com/Blackmane","followers_url":"https://api.github.com/users/Blackmane/followers","following_url":"https://api.github.com/users/Blackmane/following{/other_user}","gists_url":"https://api.github.com/users/Blackmane/gists{/gist_id}","starred_url":"https://api.github.com/users/Blackmane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Blackmane/subscriptions","organizations_url":"https://api.github.com/users/Blackmane/orgs","repos_url":"https://api.github.com/users/Blackmane/repos","events_url":"https://api.github.com/users/Blackmane/events{/privacy}","received_events_url":"https://api.github.com/users/Blackmane/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2023-06-20T17:32:40Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/129","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/129/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/129/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/129/events","html_url":"https://github.com/robpike/ivy/pull/129","id":1763392556,"node_id":"PR_kwDOAZPgIc5TVVsU","number":129,"title":"Add `unique` operator","user":{"login":"Blackmane","id":6045018,"node_id":"MDQ6VXNlcjYwNDUwMTg=","avatar_url":"https://avatars.githubusercontent.com/u/6045018?v=4","gravatar_id":"","url":"https://api.github.com/users/Blackmane","html_url":"https://github.com/Blackmane","followers_url":"https://api.github.com/users/Blackmane/followers","following_url":"https://api.github.com/users/Blackmane/following{/other_user}","gists_url":"https://api.github.com/users/Blackmane/gists{/gist_id}","starred_url":"https://api.github.com/users/Blackmane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Blackmane/subscriptions","organizations_url":"https://api.github.com/users/Blackmane/orgs","repos_url":"https://api.github.com/users/Blackmane/repos","events_url":"https://api.github.com/users/Blackmane/events{/privacy}","received_events_url":"https://api.github.com/users/Blackmane/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":8,"created_at":"2023-06-19T12:02:18Z","updated_at":"2023-07-05T21:58:06Z","closed_at":"2023-07-05T21:58:05Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/129","html_url":"https://github.com/robpike/ivy/pull/129","diff_url":"https://github.com/robpike/ivy/pull/129.diff","patch_url":"https://github.com/robpike/ivy/pull/129.patch","merged_at":null},"body":"Hello,\r\nI tried adding the `unique` operator, based on how the same operator works on APL https://aplwiki.com/wiki/Unique\r\n\r\nThe `unique` operator remove duplicates from a vector.\r\nIt's implemented as a unary operator.\r\n\r\nSome example of the implementation:\r\n```\r\nunique iota 9\r\n1 2 3 4 5 6 7 8 9\r\n\r\nunique 1\r\n1\r\n\r\nunique 1 1 1 1 1 1 1 1 1\r\n1\r\n\r\nunique 'Missisipi'\r\nMisp\r\n```\r\n\r\nI hope it could be a useful operator.\r\nIt's my first time with Go. Let me know if something in the implementation is missing.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/129/reactions","total_count":1,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":1,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/129/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":9572563316,"node_id":"HRFPE_lADOAZPgIc5pGzwszwAAAAI6kbl0","url":"https://api.github.com/repos/robpike/ivy/issues/events/9572563316","actor":{"login":"Blackmane","id":6045018,"node_id":"MDQ6VXNlcjYwNDUwMTg=","avatar_url":"https://avatars.githubusercontent.com/u/6045018?v=4","gravatar_id":"","url":"https://api.github.com/users/Blackmane","html_url":"https://github.com/Blackmane","followers_url":"https://api.github.com/users/Blackmane/followers","following_url":"https://api.github.com/users/Blackmane/following{/other_user}","gists_url":"https://api.github.com/users/Blackmane/gists{/gist_id}","starred_url":"https://api.github.com/users/Blackmane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Blackmane/subscriptions","organizations_url":"https://api.github.com/users/Blackmane/orgs","repos_url":"https://api.github.com/users/Blackmane/repos","events_url":"https://api.github.com/users/Blackmane/events{/privacy}","received_events_url":"https://api.github.com/users/Blackmane/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2023-06-19T21:20:36Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/129","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/129/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/129/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/129/events","html_url":"https://github.com/robpike/ivy/pull/129","id":1763392556,"node_id":"PR_kwDOAZPgIc5TVVsU","number":129,"title":"Add `unique` operator","user":{"login":"Blackmane","id":6045018,"node_id":"MDQ6VXNlcjYwNDUwMTg=","avatar_url":"https://avatars.githubusercontent.com/u/6045018?v=4","gravatar_id":"","url":"https://api.github.com/users/Blackmane","html_url":"https://github.com/Blackmane","followers_url":"https://api.github.com/users/Blackmane/followers","following_url":"https://api.github.com/users/Blackmane/following{/other_user}","gists_url":"https://api.github.com/users/Blackmane/gists{/gist_id}","starred_url":"https://api.github.com/users/Blackmane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Blackmane/subscriptions","organizations_url":"https://api.github.com/users/Blackmane/orgs","repos_url":"https://api.github.com/users/Blackmane/repos","events_url":"https://api.github.com/users/Blackmane/events{/privacy}","received_events_url":"https://api.github.com/users/Blackmane/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":8,"created_at":"2023-06-19T12:02:18Z","updated_at":"2023-07-05T21:58:06Z","closed_at":"2023-07-05T21:58:05Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/129","html_url":"https://github.com/robpike/ivy/pull/129","diff_url":"https://github.com/robpike/ivy/pull/129.diff","patch_url":"https://github.com/robpike/ivy/pull/129.patch","merged_at":null},"body":"Hello,\r\nI tried adding the `unique` operator, based on how the same operator works on APL https://aplwiki.com/wiki/Unique\r\n\r\nThe `unique` operator remove duplicates from a vector.\r\nIt's implemented as a unary operator.\r\n\r\nSome example of the implementation:\r\n```\r\nunique iota 9\r\n1 2 3 4 5 6 7 8 9\r\n\r\nunique 1\r\n1\r\n\r\nunique 1 1 1 1 1 1 1 1 1\r\n1\r\n\r\nunique 'Missisipi'\r\nMisp\r\n```\r\n\r\nI hope it could be a useful operator.\r\nIt's my first time with Go. Let me know if something in the implementation is missing.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/129/reactions","total_count":1,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":1,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/129/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":9569129505,"node_id":"HRFPE_lADOAZPgIc5pGzwszwAAAAI6XVQh","url":"https://api.github.com/repos/robpike/ivy/issues/events/9569129505","actor":{"login":"Blackmane","id":6045018,"node_id":"MDQ6VXNlcjYwNDUwMTg=","avatar_url":"https://avatars.githubusercontent.com/u/6045018?v=4","gravatar_id":"","url":"https://api.github.com/users/Blackmane","html_url":"https://github.com/Blackmane","followers_url":"https://api.github.com/users/Blackmane/followers","following_url":"https://api.github.com/users/Blackmane/following{/other_user}","gists_url":"https://api.github.com/users/Blackmane/gists{/gist_id}","starred_url":"https://api.github.com/users/Blackmane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Blackmane/subscriptions","organizations_url":"https://api.github.com/users/Blackmane/orgs","repos_url":"https://api.github.com/users/Blackmane/repos","events_url":"https://api.github.com/users/Blackmane/events{/privacy}","received_events_url":"https://api.github.com/users/Blackmane/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2023-06-19T14:24:35Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/129","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/129/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/129/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/129/events","html_url":"https://github.com/robpike/ivy/pull/129","id":1763392556,"node_id":"PR_kwDOAZPgIc5TVVsU","number":129,"title":"Add `unique` operator","user":{"login":"Blackmane","id":6045018,"node_id":"MDQ6VXNlcjYwNDUwMTg=","avatar_url":"https://avatars.githubusercontent.com/u/6045018?v=4","gravatar_id":"","url":"https://api.github.com/users/Blackmane","html_url":"https://github.com/Blackmane","followers_url":"https://api.github.com/users/Blackmane/followers","following_url":"https://api.github.com/users/Blackmane/following{/other_user}","gists_url":"https://api.github.com/users/Blackmane/gists{/gist_id}","starred_url":"https://api.github.com/users/Blackmane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Blackmane/subscriptions","organizations_url":"https://api.github.com/users/Blackmane/orgs","repos_url":"https://api.github.com/users/Blackmane/repos","events_url":"https://api.github.com/users/Blackmane/events{/privacy}","received_events_url":"https://api.github.com/users/Blackmane/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":8,"created_at":"2023-06-19T12:02:18Z","updated_at":"2023-07-05T21:58:06Z","closed_at":"2023-07-05T21:58:05Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/129","html_url":"https://github.com/robpike/ivy/pull/129","diff_url":"https://github.com/robpike/ivy/pull/129.diff","patch_url":"https://github.com/robpike/ivy/pull/129.patch","merged_at":null},"body":"Hello,\r\nI tried adding the `unique` operator, based on how the same operator works on APL https://aplwiki.com/wiki/Unique\r\n\r\nThe `unique` operator remove duplicates from a vector.\r\nIt's implemented as a unary operator.\r\n\r\nSome example of the implementation:\r\n```\r\nunique iota 9\r\n1 2 3 4 5 6 7 8 9\r\n\r\nunique 1\r\n1\r\n\r\nunique 1 1 1 1 1 1 1 1 1\r\n1\r\n\r\nunique 'Missisipi'\r\nMisp\r\n```\r\n\r\nI hope it could be a useful operator.\r\nIt's my first time with Go. Let me know if something in the implementation is missing.","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/129/reactions","total_count":1,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":1,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/129/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":9550125264,"node_id":"CE_lADOAZPgIc5o6izXzwAAAAI5O1jQ","url":"https://api.github.com/repos/robpike/ivy/issues/events/9550125264","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-06-16T11:05:24Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/128","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/128/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/128/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/128/events","html_url":"https://github.com/robpike/ivy/pull/128","id":1760177367,"node_id":"PR_kwDOAZPgIc5TKqx7","number":128,"title":"Fix `base` op example in demo","user":{"login":"Blackmane","id":6045018,"node_id":"MDQ6VXNlcjYwNDUwMTg=","avatar_url":"https://avatars.githubusercontent.com/u/6045018?v=4","gravatar_id":"","url":"https://api.github.com/users/Blackmane","html_url":"https://github.com/Blackmane","followers_url":"https://api.github.com/users/Blackmane/followers","following_url":"https://api.github.com/users/Blackmane/following{/other_user}","gists_url":"https://api.github.com/users/Blackmane/gists{/gist_id}","starred_url":"https://api.github.com/users/Blackmane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Blackmane/subscriptions","organizations_url":"https://api.github.com/users/Blackmane/orgs","repos_url":"https://api.github.com/users/Blackmane/repos","events_url":"https://api.github.com/users/Blackmane/events{/privacy}","received_events_url":"https://api.github.com/users/Blackmane/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-06-16T08:29:11Z","updated_at":"2023-06-16T11:05:25Z","closed_at":"2023-06-16T11:05:24Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/128","html_url":"https://github.com/robpike/ivy/pull/128","diff_url":"https://github.com/robpike/ivy/pull/128.diff","patch_url":"https://github.com/robpike/ivy/pull/128.patch","merged_at":"2023-06-16T11:05:24Z"},"body":"The op `base` doesn't work properly with numbers that are power of the base.\r\n\r\nFor example:\r\n```\r\n8 base 2\r\n0 0 0\r\n\r\n9 base 3\r\n0 0\r\n```\r\n\r\nThis is caused by a mismatch between the log operation that return the power and the representation that in this case need a one more number.\r\n\r\nThis is evident in the op `popcount` that with the powers of two doesn't work:\r\n```\r\npopcount 8\r\n0\r\n\r\npopcount 16\r\n0\r\n\r\npopcount 32\r\n0\r\n\r\npopcount 64\r\n0\r\n```\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/128/reactions","total_count":1,"+1":0,"-1":0,"laugh":0,"hooray":1,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/128/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":9550125237,"node_id":"ME_lADOAZPgIc5o6izXzwAAAAI5O1i1","url":"https://api.github.com/repos/robpike/ivy/issues/events/9550125237","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"210aa685a514dc62df9b486319ccf0529014ce0f","commit_url":"https://api.github.com/repos/robpike/ivy/commits/210aa685a514dc62df9b486319ccf0529014ce0f","created_at":"2023-06-16T11:05:24Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/128","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/128/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/128/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/128/events","html_url":"https://github.com/robpike/ivy/pull/128","id":1760177367,"node_id":"PR_kwDOAZPgIc5TKqx7","number":128,"title":"Fix `base` op example in demo","user":{"login":"Blackmane","id":6045018,"node_id":"MDQ6VXNlcjYwNDUwMTg=","avatar_url":"https://avatars.githubusercontent.com/u/6045018?v=4","gravatar_id":"","url":"https://api.github.com/users/Blackmane","html_url":"https://github.com/Blackmane","followers_url":"https://api.github.com/users/Blackmane/followers","following_url":"https://api.github.com/users/Blackmane/following{/other_user}","gists_url":"https://api.github.com/users/Blackmane/gists{/gist_id}","starred_url":"https://api.github.com/users/Blackmane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Blackmane/subscriptions","organizations_url":"https://api.github.com/users/Blackmane/orgs","repos_url":"https://api.github.com/users/Blackmane/repos","events_url":"https://api.github.com/users/Blackmane/events{/privacy}","received_events_url":"https://api.github.com/users/Blackmane/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-06-16T08:29:11Z","updated_at":"2023-06-16T11:05:25Z","closed_at":"2023-06-16T11:05:24Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/128","html_url":"https://github.com/robpike/ivy/pull/128","diff_url":"https://github.com/robpike/ivy/pull/128.diff","patch_url":"https://github.com/robpike/ivy/pull/128.patch","merged_at":"2023-06-16T11:05:24Z"},"body":"The op `base` doesn't work properly with numbers that are power of the base.\r\n\r\nFor example:\r\n```\r\n8 base 2\r\n0 0 0\r\n\r\n9 base 3\r\n0 0\r\n```\r\n\r\nThis is caused by a mismatch between the log operation that return the power and the representation that in this case need a one more number.\r\n\r\nThis is evident in the op `popcount` that with the powers of two doesn't work:\r\n```\r\npopcount 8\r\n0\r\n\r\npopcount 16\r\n0\r\n\r\npopcount 32\r\n0\r\n\r\npopcount 64\r\n0\r\n```\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/128/reactions","total_count":1,"+1":0,"-1":0,"laugh":0,"hooray":1,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/128/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":9550125227,"node_id":"REFE_lADOAZPgIc5o6izXzwAAAAI5O1ir","url":"https://api.github.com/repos/robpike/ivy/issues/events/9550125227","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"210aa685a514dc62df9b486319ccf0529014ce0f","commit_url":"https://api.github.com/repos/robpike/ivy/commits/210aa685a514dc62df9b486319ccf0529014ce0f","created_at":"2023-06-16T11:05:24Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/128","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/128/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/128/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/128/events","html_url":"https://github.com/robpike/ivy/pull/128","id":1760177367,"node_id":"PR_kwDOAZPgIc5TKqx7","number":128,"title":"Fix `base` op example in demo","user":{"login":"Blackmane","id":6045018,"node_id":"MDQ6VXNlcjYwNDUwMTg=","avatar_url":"https://avatars.githubusercontent.com/u/6045018?v=4","gravatar_id":"","url":"https://api.github.com/users/Blackmane","html_url":"https://github.com/Blackmane","followers_url":"https://api.github.com/users/Blackmane/followers","following_url":"https://api.github.com/users/Blackmane/following{/other_user}","gists_url":"https://api.github.com/users/Blackmane/gists{/gist_id}","starred_url":"https://api.github.com/users/Blackmane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Blackmane/subscriptions","organizations_url":"https://api.github.com/users/Blackmane/orgs","repos_url":"https://api.github.com/users/Blackmane/repos","events_url":"https://api.github.com/users/Blackmane/events{/privacy}","received_events_url":"https://api.github.com/users/Blackmane/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-06-16T08:29:11Z","updated_at":"2023-06-16T11:05:25Z","closed_at":"2023-06-16T11:05:24Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/128","html_url":"https://github.com/robpike/ivy/pull/128","diff_url":"https://github.com/robpike/ivy/pull/128.diff","patch_url":"https://github.com/robpike/ivy/pull/128.patch","merged_at":"2023-06-16T11:05:24Z"},"body":"The op `base` doesn't work properly with numbers that are power of the base.\r\n\r\nFor example:\r\n```\r\n8 base 2\r\n0 0 0\r\n\r\n9 base 3\r\n0 0\r\n```\r\n\r\nThis is caused by a mismatch between the log operation that return the power and the representation that in this case need a one more number.\r\n\r\nThis is evident in the op `popcount` that with the powers of two doesn't work:\r\n```\r\npopcount 8\r\n0\r\n\r\npopcount 16\r\n0\r\n\r\npopcount 32\r\n0\r\n\r\npopcount 64\r\n0\r\n```\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/128/reactions","total_count":1,"+1":0,"-1":0,"laugh":0,"hooray":1,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/128/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":8821951841,"node_id":"HRFPE_lADOAZPgIc5hdEfEzwAAAAIN1E1h","url":"https://api.github.com/repos/robpike/ivy/issues/events/8821951841","actor":{"login":"wgrr","id":16732610,"node_id":"MDQ6VXNlcjE2NzMyNjEw","avatar_url":"https://avatars.githubusercontent.com/u/16732610?v=4","gravatar_id":"","url":"https://api.github.com/users/wgrr","html_url":"https://github.com/wgrr","followers_url":"https://api.github.com/users/wgrr/followers","following_url":"https://api.github.com/users/wgrr/following{/other_user}","gists_url":"https://api.github.com/users/wgrr/gists{/gist_id}","starred_url":"https://api.github.com/users/wgrr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wgrr/subscriptions","organizations_url":"https://api.github.com/users/wgrr/orgs","repos_url":"https://api.github.com/users/wgrr/repos","events_url":"https://api.github.com/users/wgrr/events{/privacy}","received_events_url":"https://api.github.com/users/wgrr/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2023-03-22T23:15:30Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/127","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/127/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/127/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/127/events","html_url":"https://github.com/robpike/ivy/pull/127","id":1635010500,"node_id":"PR_kwDOAZPgIc5MmneP","number":127,"title":"improve ivy usage in scripts","user":{"login":"wgrr","id":16732610,"node_id":"MDQ6VXNlcjE2NzMyNjEw","avatar_url":"https://avatars.githubusercontent.com/u/16732610?v=4","gravatar_id":"","url":"https://api.github.com/users/wgrr","html_url":"https://github.com/wgrr","followers_url":"https://api.github.com/users/wgrr/followers","following_url":"https://api.github.com/users/wgrr/following{/other_user}","gists_url":"https://api.github.com/users/wgrr/gists{/gist_id}","starred_url":"https://api.github.com/users/wgrr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wgrr/subscriptions","organizations_url":"https://api.github.com/users/wgrr/orgs","repos_url":"https://api.github.com/users/wgrr/repos","events_url":"https://api.github.com/users/wgrr/events{/privacy}","received_events_url":"https://api.github.com/users/wgrr/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2023-03-22T03:51:52Z","updated_at":"2023-06-29T01:53:48Z","closed_at":"2023-06-29T01:53:47Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/robpike/ivy/pulls/127","html_url":"https://github.com/robpike/ivy/pull/127","diff_url":"https://github.com/robpike/ivy/pull/127.diff","patch_url":"https://github.com/robpike/ivy/pull/127.patch","merged_at":null},"body":"recent changes made in ivy made it always write cpu profiles in /tmp, even in my system tmp being a ramfs, i noticed a substantial slowdown in some scripts i have using ivy, i did what most things in go ecosystem do which is turn off by default and enable it with a flag, while doing this i also merge an old change i made to stop printing an extra new line when reading stdin from pipes, this saves an extra `| sed` i had to use to remove them, but the only annoying piece is the slowdown to exit ivy, i'm ok if you just cherry-pick this change.\r\n\r\nBR.\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/127/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/127/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":8751230003,"node_id":"CE_lADOAZPgIc5g1r4mzwAAAAIJnSwz","url":"https://api.github.com/repos/robpike/ivy/issues/events/8751230003","actor":{"login":"carlomunguia","id":43321570,"node_id":"MDQ6VXNlcjQzMzIxNTcw","avatar_url":"https://avatars.githubusercontent.com/u/43321570?v=4","gravatar_id":"","url":"https://api.github.com/users/carlomunguia","html_url":"https://github.com/carlomunguia","followers_url":"https://api.github.com/users/carlomunguia/followers","following_url":"https://api.github.com/users/carlomunguia/following{/other_user}","gists_url":"https://api.github.com/users/carlomunguia/gists{/gist_id}","starred_url":"https://api.github.com/users/carlomunguia/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/carlomunguia/subscriptions","organizations_url":"https://api.github.com/users/carlomunguia/orgs","repos_url":"https://api.github.com/users/carlomunguia/repos","events_url":"https://api.github.com/users/carlomunguia/events{/privacy}","received_events_url":"https://api.github.com/users/carlomunguia/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-03-15T05:34:34Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/126","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/126/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/126/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/126/events","html_url":"https://github.com/robpike/ivy/issues/126","id":1624686118,"node_id":"I_kwDOAZPgIc5g1r4m","number":126,"title":"Ivy iOS App Broken as of iOS 16 +","user":{"login":"carlomunguia","id":43321570,"node_id":"MDQ6VXNlcjQzMzIxNTcw","avatar_url":"https://avatars.githubusercontent.com/u/43321570?v=4","gravatar_id":"","url":"https://api.github.com/users/carlomunguia","html_url":"https://github.com/carlomunguia","followers_url":"https://api.github.com/users/carlomunguia/followers","following_url":"https://api.github.com/users/carlomunguia/following{/other_user}","gists_url":"https://api.github.com/users/carlomunguia/gists{/gist_id}","starred_url":"https://api.github.com/users/carlomunguia/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/carlomunguia/subscriptions","organizations_url":"https://api.github.com/users/carlomunguia/orgs","repos_url":"https://api.github.com/users/carlomunguia/repos","events_url":"https://api.github.com/users/carlomunguia/events{/privacy}","received_events_url":"https://api.github.com/users/carlomunguia/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2023-03-15T03:51:23Z","updated_at":"2023-03-15T05:34:34Z","closed_at":"2023-03-15T05:34:34Z","author_association":"NONE","active_lock_reason":null,"body":"After iOS 16 landed, Ivy no longer loads properly - it flashes the main screen & input field and promptly exits the program - hence making it unusable. \n\nWhile I know it's running an old version of Ivy, none the less it was great to experiment with it via mobile. \n\nFYI & thanks again for Ivy @robpike !","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/126/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/126/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":8750712658,"node_id":"SE_lADOAZPgIc5g1r4mzwAAAAIJlUdS","url":"https://api.github.com/repos/robpike/ivy/issues/events/8750712658","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2023-03-15T03:51:23Z","issue":{"url":"https://api.github.com/repos/robpike/ivy/issues/126","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/126/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/126/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/126/events","html_url":"https://github.com/robpike/ivy/issues/126","id":1624686118,"node_id":"I_kwDOAZPgIc5g1r4m","number":126,"title":"Ivy iOS App Broken as of iOS 16 +","user":{"login":"carlomunguia","id":43321570,"node_id":"MDQ6VXNlcjQzMzIxNTcw","avatar_url":"https://avatars.githubusercontent.com/u/43321570?v=4","gravatar_id":"","url":"https://api.github.com/users/carlomunguia","html_url":"https://github.com/carlomunguia","followers_url":"https://api.github.com/users/carlomunguia/followers","following_url":"https://api.github.com/users/carlomunguia/following{/other_user}","gists_url":"https://api.github.com/users/carlomunguia/gists{/gist_id}","starred_url":"https://api.github.com/users/carlomunguia/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/carlomunguia/subscriptions","organizations_url":"https://api.github.com/users/carlomunguia/orgs","repos_url":"https://api.github.com/users/carlomunguia/repos","events_url":"https://api.github.com/users/carlomunguia/events{/privacy}","received_events_url":"https://api.github.com/users/carlomunguia/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2023-03-15T03:51:23Z","updated_at":"2023-03-15T05:34:34Z","closed_at":"2023-03-15T05:34:34Z","author_association":"NONE","active_lock_reason":null,"body":"After iOS 16 landed, Ivy no longer loads properly - it flashes the main screen & input field and promptly exits the program - hence making it unusable. \n\nWhile I know it's running an old version of Ivy, none the less it was great to experiment with it via mobile. \n\nFYI & thanks again for Ivy @robpike !","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/126/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/126/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null}]206 3972 GET https://api.github.com/repos/robpike/ivy/issues?direction=asc&page=1&per_page=100&since=2024-05-13T16%3A48%3A09Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:51 GMT Etag: W/"ae44fcf3afd14774d795d34d555b32aa5c228c2d856a33c28ceab09d1f0a0d51" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EC17E:335CE9:665E33B3 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4985 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 15 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/robpike/ivy/issues/69","repository_url":"https://api.github.com/repos/robpike/ivy","labels_url":"https://api.github.com/repos/robpike/ivy/issues/69/labels{/name}","comments_url":"https://api.github.com/repos/robpike/ivy/issues/69/comments","events_url":"https://api.github.com/repos/robpike/ivy/issues/69/events","html_url":"https://github.com/robpike/ivy/issues/69","id":1073323729,"node_id":"I_kwDOAZPgIc4_-Z7R","number":69,"title":"missing each/map (¨)","user":{"login":"tcolgate","id":76019,"node_id":"MDQ6VXNlcjc2MDE5","avatar_url":"https://avatars.githubusercontent.com/u/76019?v=4","gravatar_id":"","url":"https://api.github.com/users/tcolgate","html_url":"https://github.com/tcolgate","followers_url":"https://api.github.com/users/tcolgate/followers","following_url":"https://api.github.com/users/tcolgate/following{/other_user}","gists_url":"https://api.github.com/users/tcolgate/gists{/gist_id}","starred_url":"https://api.github.com/users/tcolgate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tcolgate/subscriptions","organizations_url":"https://api.github.com/users/tcolgate/orgs","repos_url":"https://api.github.com/users/tcolgate/repos","events_url":"https://api.github.com/users/tcolgate/events{/privacy}","received_events_url":"https://api.github.com/users/tcolgate/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":17,"created_at":"2021-12-07T12:58:47Z","updated_at":"2024-05-13T16:48:09Z","closed_at":null,"author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"It might be that I'm missing something, but mapping an operator over a vector is super useful and I had to jump through some hoops to do it. \r\n\r\nGiven a vector, compute the triangle number for each element (but any function would apply). I ended up defining the function as an operator that ignored one of its args. then reducing over a vector of pairs...\r\n\r\n```\r\nop a triangle b = (b * (b + 1)) / 2 \r\n\r\nop trianglevs vs = triangle/ (rho vs) 2 rho ((rho vs) rho 2) sel vs\r\n```\r\nIs a map / each syntactically difficult to support though, feels like it should be similar to reduce?\r\n","reactions":{"url":"https://api.github.com/repos/robpike/ivy/issues/69/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/robpike/ivy/issues/69/timeline","performed_via_github_app":null,"state_reason":null}]232 2494 GET https://api.github.com/repos/robpike/ivy/issues/1/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:51 GMT Etag: W/"daab2eca6e9207fde14da2f2fc32bffd7daafec20e351c257c7a604c47c75423" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EC1E6:335DAC:665E33B3 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4984 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 16 X-Xss-Protection: 0 [{"id":213910823,"node_id":"MDExOkNsb3NlZEV2ZW50MjEzOTEwODIz","url":"https://api.github.com/repos/robpike/ivy/issues/events/213910823","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2015-01-05T05:41:10Z","state_reason":null,"performed_via_github_app":null}]232 2494 GET https://api.github.com/repos/robpike/ivy/issues/2/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:51 GMT Etag: W/"7da3f232c7a91e3abec683f966d53c2e79d4084a6b7274c7fb02ad03131f3550" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EC231:335E38:665E33B3 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4983 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 17 X-Xss-Protection: 0 [{"id":215704023,"node_id":"MDExOkNsb3NlZEV2ZW50MjE1NzA0MDIz","url":"https://api.github.com/repos/robpike/ivy/issues/events/215704023","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2015-01-08T04:05:59Z","state_reason":null,"performed_via_github_app":null}]232 3913 GET https://api.github.com/repos/robpike/ivy/issues/3/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:51 GMT Etag: W/"f438047dc0509349a99e15c66cc7d874f51e55f97cb2fb5b4c462b5e1b200ea7" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EC29A:335ED0:665E33B3 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4982 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 18 X-Xss-Protection: 0 [{"id":353904265,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDM1MzkwNDI2NQ==","url":"https://api.github.com/repos/robpike/ivy/issues/events/353904265","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"ec2b2a8ae4475a8077ec604c11ddc713b21ae10e","commit_url":"https://api.github.com/repos/robpike/ivy/commits/ec2b2a8ae4475a8077ec604c11ddc713b21ae10e","created_at":"2015-07-13T00:08:39Z","performed_via_github_app":null},{"id":353905970,"node_id":"MDExOkNsb3NlZEV2ZW50MzUzOTA1OTcw","url":"https://api.github.com/repos/robpike/ivy/issues/events/353905970","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"ec2b2a8ae4475a8077ec604c11ddc713b21ae10e","commit_url":"https://api.github.com/repos/robpike/ivy/commits/ec2b2a8ae4475a8077ec604c11ddc713b21ae10e","created_at":"2015-07-13T00:18:05Z","state_reason":null,"performed_via_github_app":null}]232 6148 GET https://api.github.com/repos/robpike/ivy/issues/4/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:51 GMT Etag: W/"a05933825436cc5fd5abe2e27261fd04a7cd944d6e3a9b635859c96f116fa322" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EC320:335F95:665E33B3 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4981 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 19 X-Xss-Protection: 0 [{"id":353875480,"node_id":"MDExOkNsb3NlZEV2ZW50MzUzODc1NDgw","url":"https://api.github.com/repos/robpike/ivy/issues/events/353875480","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2015-07-12T21:35:30Z","state_reason":null,"performed_via_github_app":null},{"id":353903734,"node_id":"MDEzOlJlb3BlbmVkRXZlbnQzNTM5MDM3MzQ=","url":"https://api.github.com/repos/robpike/ivy/issues/events/353903734","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"reopened","commit_id":null,"commit_url":null,"created_at":"2015-07-13T00:06:15Z","state_reason":null,"performed_via_github_app":null},{"id":353944505,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDM1Mzk0NDUwNQ==","url":"https://api.github.com/repos/robpike/ivy/issues/events/353944505","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"ce549eb30f646522ffb8c4d5275e36247b7c5fbb","commit_url":"https://api.github.com/repos/robpike/ivy/commits/ce549eb30f646522ffb8c4d5275e36247b7c5fbb","created_at":"2015-07-13T02:35:56Z","performed_via_github_app":null},{"id":353945027,"node_id":"MDExOkNsb3NlZEV2ZW50MzUzOTQ1MDI3","url":"https://api.github.com/repos/robpike/ivy/issues/events/353945027","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2015-07-13T02:36:47Z","state_reason":null,"performed_via_github_app":null}]232 2494 GET https://api.github.com/repos/robpike/ivy/issues/5/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:52 GMT Etag: W/"5cf539972cab2b20a4649dfbaeb5f7bfe51aa92ab2a2c55758653667df108b9a" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EC380:336055:665E33B3 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4980 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 20 X-Xss-Protection: 0 [{"id":358200691,"node_id":"MDExOkNsb3NlZEV2ZW50MzU4MjAwNjkx","url":"https://api.github.com/repos/robpike/ivy/issues/events/358200691","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2015-07-17T05:08:16Z","state_reason":null,"performed_via_github_app":null}]232 2494 GET https://api.github.com/repos/robpike/ivy/issues/6/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:52 GMT Etag: W/"56a569738e4bf2d05bce10454b2bc1b00a77968bf9db7958f05180ef41f6bbdb" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EC3EF:3360F9:665E33B4 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4979 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 21 X-Xss-Protection: 0 [{"id":363847654,"node_id":"MDExOkNsb3NlZEV2ZW50MzYzODQ3NjU0","url":"https://api.github.com/repos/robpike/ivy/issues/events/363847654","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2015-07-23T21:10:00Z","state_reason":null,"performed_via_github_app":null}]232 2492 GET https://api.github.com/repos/robpike/ivy/issues/7/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:52 GMT Etag: W/"a743fb2a8502b10b86e1060aca276bfb551aab97df6b4668104b6d668ccbd1f3" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EC474:3361DD:665E33B4 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4978 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 22 X-Xss-Protection: 0 [{"id":368953142,"node_id":"MDExOkNsb3NlZEV2ZW50MzY4OTUzMTQy","url":"https://api.github.com/repos/robpike/ivy/issues/events/368953142","actor":{"login":"mdmarek","id":241294,"node_id":"MDQ6VXNlcjI0MTI5NA==","avatar_url":"https://avatars.githubusercontent.com/u/241294?v=4","gravatar_id":"","url":"https://api.github.com/users/mdmarek","html_url":"https://github.com/mdmarek","followers_url":"https://api.github.com/users/mdmarek/followers","following_url":"https://api.github.com/users/mdmarek/following{/other_user}","gists_url":"https://api.github.com/users/mdmarek/gists{/gist_id}","starred_url":"https://api.github.com/users/mdmarek/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mdmarek/subscriptions","organizations_url":"https://api.github.com/users/mdmarek/orgs","repos_url":"https://api.github.com/users/mdmarek/repos","events_url":"https://api.github.com/users/mdmarek/events{/privacy}","received_events_url":"https://api.github.com/users/mdmarek/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2015-07-30T00:31:27Z","state_reason":null,"performed_via_github_app":null}]232 2494 GET https://api.github.com/repos/robpike/ivy/issues/8/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:52 GMT Etag: W/"53e1c0d4a1ad6f6df6f8c3cf07b55754891091f2c6b92d4001e53078c8419d6c" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EC4D5:336293:665E33B4 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4977 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 23 X-Xss-Protection: 0 [{"id":383820217,"node_id":"MDExOkNsb3NlZEV2ZW50MzgzODIwMjE3","url":"https://api.github.com/repos/robpike/ivy/issues/events/383820217","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2015-08-17T03:18:58Z","state_reason":null,"performed_via_github_app":null}]232 2494 GET https://api.github.com/repos/robpike/ivy/issues/9/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:52 GMT Etag: W/"3490df45941f3264707172e44a4260dd7f9f7a0cd11d468941a2a2df6ed9b3d9" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EC52F:336310:665E33B4 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4976 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 24 X-Xss-Protection: 0 [{"id":387652817,"node_id":"MDExOkNsb3NlZEV2ZW50Mzg3NjUyODE3","url":"https://api.github.com/repos/robpike/ivy/issues/events/387652817","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2015-08-20T13:11:30Z","state_reason":null,"performed_via_github_app":null}]233 5070 GET https://api.github.com/repos/robpike/ivy/issues/10/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:52 GMT Etag: W/"5d000e183880d4b76776a2320aba70a91e5c081809b25d7d26368f1d405eb89b" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EC57F:33638F:665E33B4 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4975 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 25 X-Xss-Protection: 0 [{"id":393485183,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDM5MzQ4NTE4Mw==","url":"https://api.github.com/repos/robpike/ivy/issues/events/393485183","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"44762a93b11e223d15249a94ff34cfe2f79a2ec2","commit_url":"https://api.github.com/repos/robpike/ivy/commits/44762a93b11e223d15249a94ff34cfe2f79a2ec2","created_at":"2015-08-27T00:32:09Z","performed_via_github_app":null},{"id":393485184,"node_id":"MDExOk1lcmdlZEV2ZW50MzkzNDg1MTg0","url":"https://api.github.com/repos/robpike/ivy/issues/events/393485184","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"44762a93b11e223d15249a94ff34cfe2f79a2ec2","commit_url":"https://api.github.com/repos/robpike/ivy/commits/44762a93b11e223d15249a94ff34cfe2f79a2ec2","created_at":"2015-08-27T00:32:09Z","performed_via_github_app":null},{"id":393485185,"node_id":"MDExOkNsb3NlZEV2ZW50MzkzNDg1MTg1","url":"https://api.github.com/repos/robpike/ivy/issues/events/393485185","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2015-08-27T00:32:09Z","state_reason":null,"performed_via_github_app":null}]233 2494 GET https://api.github.com/repos/robpike/ivy/issues/11/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:52 GMT Etag: W/"e8819daff06b39b35a3f80a4a33cdcb65eb6230e531d7b3b41f1dcc2d9c6aeac" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EC5EB:336455:665E33B4 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4974 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 26 X-Xss-Protection: 0 [{"id":439291656,"node_id":"MDExOkNsb3NlZEV2ZW50NDM5MjkxNjU2","url":"https://api.github.com/repos/robpike/ivy/issues/events/439291656","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2015-10-19T15:50:03Z","state_reason":null,"performed_via_github_app":null}]233 2494 GET https://api.github.com/repos/robpike/ivy/issues/12/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:52 GMT Etag: W/"691643ae93b12275b12136b92d921aa5bff141926acb136373d2d4fa08f4331a" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EC64B:3364E7:665E33B4 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4973 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 27 X-Xss-Protection: 0 [{"id":443871599,"node_id":"MDExOkNsb3NlZEV2ZW50NDQzODcxNTk5","url":"https://api.github.com/repos/robpike/ivy/issues/events/443871599","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2015-10-23T14:35:39Z","state_reason":null,"performed_via_github_app":null}]233 3796 GET https://api.github.com/repos/robpike/ivy/issues/13/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:52 GMT Etag: W/"8e987eb971e28f7a8d543453aefcd130808bcfd99d4764ebe31da81b6f98dc60" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EC6C6:3365D2:665E33B4 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4972 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 28 X-Xss-Protection: 0 [{"id":2912268841,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDI5MTIyNjg4NDE=","url":"https://api.github.com/repos/robpike/ivy/issues/events/2912268841","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"32b5eec2a413f82ca3814d671dd6aefdf67fdd26","commit_url":"https://api.github.com/repos/robpike/ivy/commits/32b5eec2a413f82ca3814d671dd6aefdf67fdd26","created_at":"2019-12-29T04:48:07Z","performed_via_github_app":null},{"id":2919343687,"node_id":"MDExOkNsb3NlZEV2ZW50MjkxOTM0MzY4Nw==","url":"https://api.github.com/repos/robpike/ivy/issues/events/2919343687","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2020-01-03T03:46:41Z","state_reason":null,"performed_via_github_app":null}]233 3796 GET https://api.github.com/repos/robpike/ivy/issues/14/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:53 GMT Etag: W/"8cb025371c9dfbc8dfb0c11d40f34dd06a534cd081f390f39dded6ce3ec6fa43" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EC72F:336676:665E33B4 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4971 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 29 X-Xss-Protection: 0 [{"id":1293645057,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDEyOTM2NDUwNTc=","url":"https://api.github.com/repos/robpike/ivy/issues/events/1293645057","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"7d66274404d0ee6dd659025c4a27bf53061822cf","commit_url":"https://api.github.com/repos/robpike/ivy/commits/7d66274404d0ee6dd659025c4a27bf53061822cf","created_at":"2017-10-15T06:43:54Z","performed_via_github_app":null},{"id":1378201140,"node_id":"MDExOkNsb3NlZEV2ZW50MTM3ODIwMTE0MA==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1378201140","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2017-12-08T04:27:09Z","state_reason":null,"performed_via_github_app":null}]233 2494 GET https://api.github.com/repos/robpike/ivy/issues/15/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:53 GMT Etag: W/"0c495b470b4e132fcc609d41c0d66d0318caa8e8cb11668b8dcfb956033932ae" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EC790:336722:665E33B5 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4970 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 30 X-Xss-Protection: 0 [{"id":465034932,"node_id":"MDExOkNsb3NlZEV2ZW50NDY1MDM0OTMy","url":"https://api.github.com/repos/robpike/ivy/issues/events/465034932","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2015-11-16T04:47:14Z","state_reason":null,"performed_via_github_app":null}]233 3788 GET https://api.github.com/repos/robpike/ivy/issues/16/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:53 GMT Etag: W/"ab20eca4f26939edbd782dcb9c34c8540c186e030328c70beef6a7e3941c67f9" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EC7DA:336796:665E33B5 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4969 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 31 X-Xss-Protection: 0 [{"id":469641389,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDQ2OTY0MTM4OQ==","url":"https://api.github.com/repos/robpike/ivy/issues/events/469641389","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"0bc3b44a6aeab22636445bdb966222919ea4d474","commit_url":"https://api.github.com/repos/robpike/ivy/commits/0bc3b44a6aeab22636445bdb966222919ea4d474","created_at":"2015-11-19T20:26:43Z","performed_via_github_app":null},{"id":550210447,"node_id":"MDExOkNsb3NlZEV2ZW50NTUwMjEwNDQ3","url":"https://api.github.com/repos/robpike/ivy/issues/events/550210447","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2016-02-15T04:08:33Z","state_reason":null,"performed_via_github_app":null}]233 5070 GET https://api.github.com/repos/robpike/ivy/issues/17/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:53 GMT Etag: W/"794865d3a5ccd566004ece2b6ba159b4d271ac66b1fd312ed7b1243629ff8537" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EC852:33685A:665E33B5 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4968 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 32 X-Xss-Protection: 0 [{"id":481770863,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDQ4MTc3MDg2Mw==","url":"https://api.github.com/repos/robpike/ivy/issues/events/481770863","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"f6edf00b8ebf22cb3cbf438a87ffcd4ad76efd6a","commit_url":"https://api.github.com/repos/robpike/ivy/commits/f6edf00b8ebf22cb3cbf438a87ffcd4ad76efd6a","created_at":"2015-12-03T18:27:59Z","performed_via_github_app":null},{"id":481770864,"node_id":"MDExOk1lcmdlZEV2ZW50NDgxNzcwODY0","url":"https://api.github.com/repos/robpike/ivy/issues/events/481770864","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"f6edf00b8ebf22cb3cbf438a87ffcd4ad76efd6a","commit_url":"https://api.github.com/repos/robpike/ivy/commits/f6edf00b8ebf22cb3cbf438a87ffcd4ad76efd6a","created_at":"2015-12-03T18:27:59Z","performed_via_github_app":null},{"id":481770866,"node_id":"MDExOkNsb3NlZEV2ZW50NDgxNzcwODY2","url":"https://api.github.com/repos/robpike/ivy/issues/events/481770866","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2015-12-03T18:28:00Z","state_reason":null,"performed_via_github_app":null}]233 3788 GET https://api.github.com/repos/robpike/ivy/issues/18/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:53 GMT Etag: W/"cf42a9c5852db83704036d0b07242958eae4cc5f36250cde3858821277275714" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EC8BA:336904:665E33B5 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4967 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 33 X-Xss-Protection: 0 [{"id":494981060,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDQ5NDk4MTA2MA==","url":"https://api.github.com/repos/robpike/ivy/issues/events/494981060","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"f82cc9ba323e726376d0138493db2cfe0ececbb4","commit_url":"https://api.github.com/repos/robpike/ivy/commits/f82cc9ba323e726376d0138493db2cfe0ececbb4","created_at":"2015-12-17T18:01:42Z","performed_via_github_app":null},{"id":495292616,"node_id":"MDExOkNsb3NlZEV2ZW50NDk1MjkyNjE2","url":"https://api.github.com/repos/robpike/ivy/issues/events/495292616","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2015-12-17T23:21:52Z","state_reason":null,"performed_via_github_app":null}]233 2494 GET https://api.github.com/repos/robpike/ivy/issues/19/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:53 GMT Etag: W/"711c63d6d7a4058072f60fdcd41d3f93b692f9eb552819792efa526097bc4613" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EC91C:3369A7:665E33B5 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4966 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 34 X-Xss-Protection: 0 [{"id":506482137,"node_id":"MDExOkNsb3NlZEV2ZW50NTA2NDgyMTM3","url":"https://api.github.com/repos/robpike/ivy/issues/events/506482137","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2016-01-05T22:39:41Z","state_reason":null,"performed_via_github_app":null}]233 2494 GET https://api.github.com/repos/robpike/ivy/issues/20/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:53 GMT Etag: W/"7b2ddc0666f45b42900051ecd73b35fb1173c7a3e76915497950236b878130f9" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EC97A:336A3F:665E33B5 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4965 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 35 X-Xss-Protection: 0 [{"id":512643543,"node_id":"MDExOkNsb3NlZEV2ZW50NTEyNjQzNTQz","url":"https://api.github.com/repos/robpike/ivy/issues/events/512643543","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2016-01-12T17:10:33Z","state_reason":null,"performed_via_github_app":null}]233 3788 GET https://api.github.com/repos/robpike/ivy/issues/21/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:53 GMT Etag: W/"5cdaaeaf3cf43a3c4c4b550ccf0ab41e86ced328ae0804ee4f6e3864a9a502d1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EC9DF:336AFC:665E33B5 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4964 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 36 X-Xss-Protection: 0 [{"id":605009662,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDYwNTAwOTY2Mg==","url":"https://api.github.com/repos/robpike/ivy/issues/events/605009662","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"92c2c8bbf47a12e5877e3ecf362550185de04ba5","commit_url":"https://api.github.com/repos/robpike/ivy/commits/92c2c8bbf47a12e5877e3ecf362550185de04ba5","created_at":"2016-03-28T09:16:50Z","performed_via_github_app":null},{"id":605010466,"node_id":"MDExOkNsb3NlZEV2ZW50NjA1MDEwNDY2","url":"https://api.github.com/repos/robpike/ivy/issues/events/605010466","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2016-03-28T09:17:46Z","state_reason":null,"performed_via_github_app":null}]233 7214 GET https://api.github.com/repos/robpike/ivy/issues/22/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:53 GMT Etag: W/"436b00cc2a9a65e1e952233be8cb8dbd949deb47590c72c288015c46334b0953" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1ECA4C:336BBD:665E33B5 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4963 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 37 X-Xss-Protection: 0 [{"id":526799363,"node_id":"MDE0Ok1lbnRpb25lZEV2ZW50NTI2Nzk5MzYz","url":"https://api.github.com/repos/robpike/ivy/issues/events/526799363","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2016-01-26T17:16:35Z","performed_via_github_app":null},{"id":526799364,"node_id":"MDE1OlN1YnNjcmliZWRFdmVudDUyNjc5OTM2NA==","url":"https://api.github.com/repos/robpike/ivy/issues/events/526799364","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2016-01-26T17:16:35Z","performed_via_github_app":null},{"id":526985590,"node_id":"MDE0Ok1lbnRpb25lZEV2ZW50NTI2OTg1NTkw","url":"https://api.github.com/repos/robpike/ivy/issues/events/526985590","actor":{"login":"griesemer","id":8528975,"node_id":"MDQ6VXNlcjg1Mjg5NzU=","avatar_url":"https://avatars.githubusercontent.com/u/8528975?v=4","gravatar_id":"","url":"https://api.github.com/users/griesemer","html_url":"https://github.com/griesemer","followers_url":"https://api.github.com/users/griesemer/followers","following_url":"https://api.github.com/users/griesemer/following{/other_user}","gists_url":"https://api.github.com/users/griesemer/gists{/gist_id}","starred_url":"https://api.github.com/users/griesemer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/griesemer/subscriptions","organizations_url":"https://api.github.com/users/griesemer/orgs","repos_url":"https://api.github.com/users/griesemer/repos","events_url":"https://api.github.com/users/griesemer/events{/privacy}","received_events_url":"https://api.github.com/users/griesemer/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2016-01-26T19:32:29Z","performed_via_github_app":null},{"id":526985591,"node_id":"MDE1OlN1YnNjcmliZWRFdmVudDUyNjk4NTU5MQ==","url":"https://api.github.com/repos/robpike/ivy/issues/events/526985591","actor":{"login":"griesemer","id":8528975,"node_id":"MDQ6VXNlcjg1Mjg5NzU=","avatar_url":"https://avatars.githubusercontent.com/u/8528975?v=4","gravatar_id":"","url":"https://api.github.com/users/griesemer","html_url":"https://github.com/griesemer","followers_url":"https://api.github.com/users/griesemer/followers","following_url":"https://api.github.com/users/griesemer/following{/other_user}","gists_url":"https://api.github.com/users/griesemer/gists{/gist_id}","starred_url":"https://api.github.com/users/griesemer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/griesemer/subscriptions","organizations_url":"https://api.github.com/users/griesemer/orgs","repos_url":"https://api.github.com/users/griesemer/repos","events_url":"https://api.github.com/users/griesemer/events{/privacy}","received_events_url":"https://api.github.com/users/griesemer/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2016-01-26T19:32:29Z","performed_via_github_app":null},{"id":2921521868,"node_id":"MDExOkNsb3NlZEV2ZW50MjkyMTUyMTg2OA==","url":"https://api.github.com/repos/robpike/ivy/issues/events/2921521868","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2020-01-04T00:15:55Z","state_reason":null,"performed_via_github_app":null}]233 3788 GET https://api.github.com/repos/robpike/ivy/issues/23/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:54 GMT Etag: W/"b48ab61e80bf27dc1d1ed09fecca1a16f1646e78a25a6b0c9eba270ae6b3e8bc" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1ECAC1:336C77:665E33B5 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4962 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 38 X-Xss-Protection: 0 [{"id":564573765,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDU2NDU3Mzc2NQ==","url":"https://api.github.com/repos/robpike/ivy/issues/events/564573765","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"72851f62017cd7b57bf37ac806161af64e1add71","commit_url":"https://api.github.com/repos/robpike/ivy/commits/72851f62017cd7b57bf37ac806161af64e1add71","created_at":"2016-02-24T23:28:16Z","performed_via_github_app":null},{"id":564574214,"node_id":"MDExOkNsb3NlZEV2ZW50NTY0NTc0MjE0","url":"https://api.github.com/repos/robpike/ivy/issues/events/564574214","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2016-02-24T23:28:38Z","state_reason":null,"performed_via_github_app":null}]233 5086 GET https://api.github.com/repos/robpike/ivy/issues/24/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:54 GMT Etag: W/"a794b549435cb0c6db2245a1124a867f77a2f119bc1cbc72d7a193dd64b41f45" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1ECB19:336D1B:665E33B6 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4961 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 39 X-Xss-Protection: 0 [{"id":603039279,"node_id":"MDE3OlJlbmFtZWRUaXRsZUV2ZW50NjAzMDM5Mjc5","url":"https://api.github.com/repos/robpike/ivy/issues/events/603039279","actor":{"login":"kalokng","id":486376,"node_id":"MDQ6VXNlcjQ4NjM3Ng==","avatar_url":"https://avatars.githubusercontent.com/u/486376?v=4","gravatar_id":"","url":"https://api.github.com/users/kalokng","html_url":"https://github.com/kalokng","followers_url":"https://api.github.com/users/kalokng/followers","following_url":"https://api.github.com/users/kalokng/following{/other_user}","gists_url":"https://api.github.com/users/kalokng/gists{/gist_id}","starred_url":"https://api.github.com/users/kalokng/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kalokng/subscriptions","organizations_url":"https://api.github.com/users/kalokng/orgs","repos_url":"https://api.github.com/users/kalokng/repos","events_url":"https://api.github.com/users/kalokng/events{/privacy}","received_events_url":"https://api.github.com/users/kalokng/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2016-03-25T14:05:31Z","rename":{"from":"Operatior rev/flip an vector will reverse the operand","to":"Operator rev/flip an vector will reverse the operand"},"performed_via_github_app":null},{"id":603863504,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDYwMzg2MzUwNA==","url":"https://api.github.com/repos/robpike/ivy/issues/events/603863504","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"0a2981e9911751132f322ce5f6cea0f5d090d789","commit_url":"https://api.github.com/repos/robpike/ivy/commits/0a2981e9911751132f322ce5f6cea0f5d090d789","created_at":"2016-03-26T05:29:45Z","performed_via_github_app":null},{"id":603863643,"node_id":"MDExOkNsb3NlZEV2ZW50NjAzODYzNjQz","url":"https://api.github.com/repos/robpike/ivy/issues/events/603863643","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2016-03-26T05:30:40Z","state_reason":null,"performed_via_github_app":null}]233 3788 GET https://api.github.com/repos/robpike/ivy/issues/25/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:54 GMT Etag: W/"56864c50a1376a4deff128a4ea46ca564b78519ba9a6b41c4c1194a8d0fce3c5" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1ECB87:336DD7:665E33B6 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4960 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 40 X-Xss-Protection: 0 [{"id":603863503,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDYwMzg2MzUwMw==","url":"https://api.github.com/repos/robpike/ivy/issues/events/603863503","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"0a2981e9911751132f322ce5f6cea0f5d090d789","commit_url":"https://api.github.com/repos/robpike/ivy/commits/0a2981e9911751132f322ce5f6cea0f5d090d789","created_at":"2016-03-26T05:29:45Z","performed_via_github_app":null},{"id":603863557,"node_id":"MDExOkNsb3NlZEV2ZW50NjAzODYzNTU3","url":"https://api.github.com/repos/robpike/ivy/issues/events/603863557","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2016-03-26T05:30:09Z","state_reason":null,"performed_via_github_app":null}]233 2494 GET https://api.github.com/repos/robpike/ivy/issues/26/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:54 GMT Etag: W/"9147a571cb96282046d539e05ff1898046ef1e40e801aa92e8e4dfdd47f30946" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1ECC06:336EA2:665E33B6 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4959 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 41 X-Xss-Protection: 0 [{"id":627519037,"node_id":"MDExOkNsb3NlZEV2ZW50NjI3NTE5MDM3","url":"https://api.github.com/repos/robpike/ivy/issues/events/627519037","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2016-04-14T15:12:54Z","state_reason":null,"performed_via_github_app":null}]233 9623 GET https://api.github.com/repos/robpike/ivy/issues/27/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:54 GMT Etag: W/"646b4b04aec3c4c9a33b6aa1b2b96b337a2b83a6c89bca4a9d6e6edb883cbf39" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1ECC85:336F6D:665E33B6 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4958 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 42 X-Xss-Protection: 0 [{"id":809465002,"node_id":"MDE0Ok1lbnRpb25lZEV2ZW50ODA5NDY1MDAy","url":"https://api.github.com/repos/robpike/ivy/issues/events/809465002","actor":{"login":"mdempsky","id":38349,"node_id":"MDQ6VXNlcjM4MzQ5","avatar_url":"https://avatars.githubusercontent.com/u/38349?v=4","gravatar_id":"","url":"https://api.github.com/users/mdempsky","html_url":"https://github.com/mdempsky","followers_url":"https://api.github.com/users/mdempsky/followers","following_url":"https://api.github.com/users/mdempsky/following{/other_user}","gists_url":"https://api.github.com/users/mdempsky/gists{/gist_id}","starred_url":"https://api.github.com/users/mdempsky/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mdempsky/subscriptions","organizations_url":"https://api.github.com/users/mdempsky/orgs","repos_url":"https://api.github.com/users/mdempsky/repos","events_url":"https://api.github.com/users/mdempsky/events{/privacy}","received_events_url":"https://api.github.com/users/mdempsky/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2016-10-02T00:15:36Z","performed_via_github_app":null},{"id":809465003,"node_id":"MDE1OlN1YnNjcmliZWRFdmVudDgwOTQ2NTAwMw==","url":"https://api.github.com/repos/robpike/ivy/issues/events/809465003","actor":{"login":"mdempsky","id":38349,"node_id":"MDQ6VXNlcjM4MzQ5","avatar_url":"https://avatars.githubusercontent.com/u/38349?v=4","gravatar_id":"","url":"https://api.github.com/users/mdempsky","html_url":"https://github.com/mdempsky","followers_url":"https://api.github.com/users/mdempsky/followers","following_url":"https://api.github.com/users/mdempsky/following{/other_user}","gists_url":"https://api.github.com/users/mdempsky/gists{/gist_id}","starred_url":"https://api.github.com/users/mdempsky/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mdempsky/subscriptions","organizations_url":"https://api.github.com/users/mdempsky/orgs","repos_url":"https://api.github.com/users/mdempsky/repos","events_url":"https://api.github.com/users/mdempsky/events{/privacy}","received_events_url":"https://api.github.com/users/mdempsky/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2016-10-02T00:15:36Z","performed_via_github_app":null},{"id":1085301578,"node_id":"MDE0Ok1lbnRpb25lZEV2ZW50MTA4NTMwMTU3OA==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1085301578","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2017-05-17T04:32:09Z","performed_via_github_app":null},{"id":1085301579,"node_id":"MDE1OlN1YnNjcmliZWRFdmVudDEwODUzMDE1Nzk=","url":"https://api.github.com/repos/robpike/ivy/issues/events/1085301579","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2017-05-17T04:32:09Z","performed_via_github_app":null},{"id":1103490020,"node_id":"MDE0Ok1lbnRpb25lZEV2ZW50MTEwMzQ5MDAyMA==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1103490020","actor":{"login":"randall2602","id":13720914,"node_id":"MDQ6VXNlcjEzNzIwOTE0","avatar_url":"https://avatars.githubusercontent.com/u/13720914?v=4","gravatar_id":"","url":"https://api.github.com/users/randall2602","html_url":"https://github.com/randall2602","followers_url":"https://api.github.com/users/randall2602/followers","following_url":"https://api.github.com/users/randall2602/following{/other_user}","gists_url":"https://api.github.com/users/randall2602/gists{/gist_id}","starred_url":"https://api.github.com/users/randall2602/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/randall2602/subscriptions","organizations_url":"https://api.github.com/users/randall2602/orgs","repos_url":"https://api.github.com/users/randall2602/repos","events_url":"https://api.github.com/users/randall2602/events{/privacy}","received_events_url":"https://api.github.com/users/randall2602/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2017-05-31T04:06:51Z","performed_via_github_app":null},{"id":1103490021,"node_id":"MDE1OlN1YnNjcmliZWRFdmVudDExMDM0OTAwMjE=","url":"https://api.github.com/repos/robpike/ivy/issues/events/1103490021","actor":{"login":"randall2602","id":13720914,"node_id":"MDQ6VXNlcjEzNzIwOTE0","avatar_url":"https://avatars.githubusercontent.com/u/13720914?v=4","gravatar_id":"","url":"https://api.github.com/users/randall2602","html_url":"https://github.com/randall2602","followers_url":"https://api.github.com/users/randall2602/followers","following_url":"https://api.github.com/users/randall2602/following{/other_user}","gists_url":"https://api.github.com/users/randall2602/gists{/gist_id}","starred_url":"https://api.github.com/users/randall2602/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/randall2602/subscriptions","organizations_url":"https://api.github.com/users/randall2602/orgs","repos_url":"https://api.github.com/users/randall2602/repos","events_url":"https://api.github.com/users/randall2602/events{/privacy}","received_events_url":"https://api.github.com/users/randall2602/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2017-05-31T04:06:51Z","performed_via_github_app":null},{"id":1304739955,"node_id":"MDExOkNsb3NlZEV2ZW50MTMwNDczOTk1NQ==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1304739955","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2017-10-23T00:42:09Z","state_reason":null,"performed_via_github_app":null}]233 13981 GET https://api.github.com/repos/robpike/ivy/issues/28/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:54 GMT Etag: W/"c9d2a3a6357f889181ed8712c707e5858510f0a4a3b97a72e349d26ee38393d3" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1ECCE3:336FFE:665E33B6 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4957 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 43 X-Xss-Protection: 0 [{"id":4986893946,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDQ5ODY4OTM5NDY=","url":"https://api.github.com/repos/robpike/ivy/issues/events/4986893946","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"c38c34e9eb24ab33e88f1a92ff5d825b32296e6b","commit_url":"https://api.github.com/repos/robpike/ivy/commits/c38c34e9eb24ab33e88f1a92ff5d825b32296e6b","created_at":"2021-07-07T05:44:41Z","performed_via_github_app":null},{"id":6570780113,"node_id":"MEE_lADOAZPgIc4JlayTzwAAAAGHpiXR","url":"https://api.github.com/repos/robpike/ivy/issues/events/6570780113","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2022-05-09T07:30:00Z","performed_via_github_app":null},{"id":6570780117,"node_id":"SE_lADOAZPgIc4JlayTzwAAAAGHpiXV","url":"https://api.github.com/repos/robpike/ivy/issues/events/6570780117","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2022-05-09T07:30:00Z","performed_via_github_app":null},{"id":6571420246,"node_id":"MEE_lADOAZPgIc4JlayTzwAAAAGHr-pW","url":"https://api.github.com/repos/robpike/ivy/issues/events/6571420246","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2022-05-09T09:04:07Z","performed_via_github_app":null},{"id":6571420251,"node_id":"SE_lADOAZPgIc4JlayTzwAAAAGHr-pb","url":"https://api.github.com/repos/robpike/ivy/issues/events/6571420251","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2022-05-09T09:04:07Z","performed_via_github_app":null},{"id":6573142917,"node_id":"MEE_lADOAZPgIc4JlayTzwAAAAGHyjOF","url":"https://api.github.com/repos/robpike/ivy/issues/events/6573142917","actor":{"login":"fumin","id":765222,"node_id":"MDQ6VXNlcjc2NTIyMg==","avatar_url":"https://avatars.githubusercontent.com/u/765222?v=4","gravatar_id":"","url":"https://api.github.com/users/fumin","html_url":"https://github.com/fumin","followers_url":"https://api.github.com/users/fumin/followers","following_url":"https://api.github.com/users/fumin/following{/other_user}","gists_url":"https://api.github.com/users/fumin/gists{/gist_id}","starred_url":"https://api.github.com/users/fumin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fumin/subscriptions","organizations_url":"https://api.github.com/users/fumin/orgs","repos_url":"https://api.github.com/users/fumin/repos","events_url":"https://api.github.com/users/fumin/events{/privacy}","received_events_url":"https://api.github.com/users/fumin/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2022-05-09T13:21:24Z","performed_via_github_app":null},{"id":6573142926,"node_id":"SE_lADOAZPgIc4JlayTzwAAAAGHyjOO","url":"https://api.github.com/repos/robpike/ivy/issues/events/6573142926","actor":{"login":"fumin","id":765222,"node_id":"MDQ6VXNlcjc2NTIyMg==","avatar_url":"https://avatars.githubusercontent.com/u/765222?v=4","gravatar_id":"","url":"https://api.github.com/users/fumin","html_url":"https://github.com/fumin","followers_url":"https://api.github.com/users/fumin/followers","following_url":"https://api.github.com/users/fumin/following{/other_user}","gists_url":"https://api.github.com/users/fumin/gists{/gist_id}","starred_url":"https://api.github.com/users/fumin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fumin/subscriptions","organizations_url":"https://api.github.com/users/fumin/orgs","repos_url":"https://api.github.com/users/fumin/repos","events_url":"https://api.github.com/users/fumin/events{/privacy}","received_events_url":"https://api.github.com/users/fumin/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2022-05-09T13:21:24Z","performed_via_github_app":null},{"id":6573142943,"node_id":"MEE_lADOAZPgIc4JlayTzwAAAAGHyjOf","url":"https://api.github.com/repos/robpike/ivy/issues/events/6573142943","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2022-05-09T13:21:24Z","performed_via_github_app":null},{"id":6573142950,"node_id":"SE_lADOAZPgIc4JlayTzwAAAAGHyjOm","url":"https://api.github.com/repos/robpike/ivy/issues/events/6573142950","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2022-05-09T13:21:24Z","performed_via_github_app":null},{"id":8095533857,"node_id":"MEE_lADOAZPgIc4JlayTzwAAAAHiiAsh","url":"https://api.github.com/repos/robpike/ivy/issues/events/8095533857","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2022-12-22T12:51:20Z","performed_via_github_app":null},{"id":8095533863,"node_id":"SE_lADOAZPgIc4JlayTzwAAAAHiiAsn","url":"https://api.github.com/repos/robpike/ivy/issues/events/8095533863","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2022-12-22T12:51:20Z","performed_via_github_app":null}]233 2494 GET https://api.github.com/repos/robpike/ivy/issues/29/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:54 GMT Etag: W/"52f8a7a18c4b3f5194aac35b6d784a9b80f928ab265d112c00a2f9afe9fce8b5" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1ECD4F:3370C3:665E33B6 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4956 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 44 X-Xss-Protection: 0 [{"id":823419582,"node_id":"MDExOkNsb3NlZEV2ZW50ODIzNDE5NTgy","url":"https://api.github.com/repos/robpike/ivy/issues/events/823419582","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2016-10-14T02:43:35Z","state_reason":null,"performed_via_github_app":null}]233 5043 GET https://api.github.com/repos/robpike/ivy/issues/30/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:54 GMT Etag: W/"a445ed2af54fe971d74fabf99e26d99a033a3be44ceba6c0b048fb30f53d48c4" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1ECDA9:337156:665E33B6 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4955 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 45 X-Xss-Protection: 0 [{"id":935750300,"node_id":"MDE3OlJlbmFtZWRUaXRsZUV2ZW50OTM1NzUwMzAw","url":"https://api.github.com/repos/robpike/ivy/issues/events/935750300","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2017-01-25T08:09:06Z","rename":{"from":"power: bug - overwriting a value?","to":"power: overwrites arguments"},"performed_via_github_app":null},{"id":935885831,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDkzNTg4NTgzMQ==","url":"https://api.github.com/repos/robpike/ivy/issues/events/935885831","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"7628239fb5597d2826c8fd88d7832a61db80cc8b","commit_url":"https://api.github.com/repos/robpike/ivy/commits/7628239fb5597d2826c8fd88d7832a61db80cc8b","created_at":"2017-01-25T10:07:55Z","performed_via_github_app":null},{"id":935886208,"node_id":"MDExOkNsb3NlZEV2ZW50OTM1ODg2MjA4","url":"https://api.github.com/repos/robpike/ivy/issues/events/935886208","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2017-01-25T10:08:11Z","state_reason":null,"performed_via_github_app":null}]233 9888 GET https://api.github.com/repos/robpike/ivy/issues/31/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:55 GMT Etag: W/"5277d89190eb12dbf9a9390e1ebba00e8702a6a923921d64ffce5b5674ff28b4" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1ECDFD:3371D4:665E33B6 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4954 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 46 X-Xss-Protection: 0 [{"id":948414475,"node_id":"MDE0Ok1lbnRpb25lZEV2ZW50OTQ4NDE0NDc1","url":"https://api.github.com/repos/robpike/ivy/issues/events/948414475","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2017-02-03T17:32:13Z","performed_via_github_app":null},{"id":948414476,"node_id":"MDE1OlN1YnNjcmliZWRFdmVudDk0ODQxNDQ3Ng==","url":"https://api.github.com/repos/robpike/ivy/issues/events/948414476","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2017-02-03T17:32:13Z","performed_via_github_app":null},{"id":948414477,"node_id":"MDE0Ok1lbnRpb25lZEV2ZW50OTQ4NDE0NDc3","url":"https://api.github.com/repos/robpike/ivy/issues/events/948414477","actor":{"login":"maddyblue","id":41181,"node_id":"MDQ6VXNlcjQxMTgx","avatar_url":"https://avatars.githubusercontent.com/u/41181?v=4","gravatar_id":"","url":"https://api.github.com/users/maddyblue","html_url":"https://github.com/maddyblue","followers_url":"https://api.github.com/users/maddyblue/followers","following_url":"https://api.github.com/users/maddyblue/following{/other_user}","gists_url":"https://api.github.com/users/maddyblue/gists{/gist_id}","starred_url":"https://api.github.com/users/maddyblue/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/maddyblue/subscriptions","organizations_url":"https://api.github.com/users/maddyblue/orgs","repos_url":"https://api.github.com/users/maddyblue/repos","events_url":"https://api.github.com/users/maddyblue/events{/privacy}","received_events_url":"https://api.github.com/users/maddyblue/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2017-02-03T17:32:13Z","performed_via_github_app":null},{"id":948414478,"node_id":"MDE1OlN1YnNjcmliZWRFdmVudDk0ODQxNDQ3OA==","url":"https://api.github.com/repos/robpike/ivy/issues/events/948414478","actor":{"login":"maddyblue","id":41181,"node_id":"MDQ6VXNlcjQxMTgx","avatar_url":"https://avatars.githubusercontent.com/u/41181?v=4","gravatar_id":"","url":"https://api.github.com/users/maddyblue","html_url":"https://github.com/maddyblue","followers_url":"https://api.github.com/users/maddyblue/followers","following_url":"https://api.github.com/users/maddyblue/following{/other_user}","gists_url":"https://api.github.com/users/maddyblue/gists{/gist_id}","starred_url":"https://api.github.com/users/maddyblue/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/maddyblue/subscriptions","organizations_url":"https://api.github.com/users/maddyblue/orgs","repos_url":"https://api.github.com/users/maddyblue/repos","events_url":"https://api.github.com/users/maddyblue/events{/privacy}","received_events_url":"https://api.github.com/users/maddyblue/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2017-02-03T17:32:13Z","performed_via_github_app":null},{"id":948862970,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDk0ODg2Mjk3MA==","url":"https://api.github.com/repos/robpike/ivy/issues/events/948862970","actor":{"login":"RaduBerinde","id":16544120,"node_id":"MDQ6VXNlcjE2NTQ0MTIw","avatar_url":"https://avatars.githubusercontent.com/u/16544120?v=4","gravatar_id":"","url":"https://api.github.com/users/RaduBerinde","html_url":"https://github.com/RaduBerinde","followers_url":"https://api.github.com/users/RaduBerinde/followers","following_url":"https://api.github.com/users/RaduBerinde/following{/other_user}","gists_url":"https://api.github.com/users/RaduBerinde/gists{/gist_id}","starred_url":"https://api.github.com/users/RaduBerinde/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RaduBerinde/subscriptions","organizations_url":"https://api.github.com/users/RaduBerinde/orgs","repos_url":"https://api.github.com/users/RaduBerinde/repos","events_url":"https://api.github.com/users/RaduBerinde/events{/privacy}","received_events_url":"https://api.github.com/users/RaduBerinde/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"7d424cdf6f25b091a3ca3b28016817fc256ed136","commit_url":"https://api.github.com/repos/RaduBerinde/ivy/commits/7d424cdf6f25b091a3ca3b28016817fc256ed136","created_at":"2017-02-03T23:21:50Z","performed_via_github_app":null},{"id":949438054,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDk0OTQzODA1NA==","url":"https://api.github.com/repos/robpike/ivy/issues/events/949438054","actor":{"login":"RaduBerinde","id":16544120,"node_id":"MDQ6VXNlcjE2NTQ0MTIw","avatar_url":"https://avatars.githubusercontent.com/u/16544120?v=4","gravatar_id":"","url":"https://api.github.com/users/RaduBerinde","html_url":"https://github.com/RaduBerinde","followers_url":"https://api.github.com/users/RaduBerinde/followers","following_url":"https://api.github.com/users/RaduBerinde/following{/other_user}","gists_url":"https://api.github.com/users/RaduBerinde/gists{/gist_id}","starred_url":"https://api.github.com/users/RaduBerinde/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RaduBerinde/subscriptions","organizations_url":"https://api.github.com/users/RaduBerinde/orgs","repos_url":"https://api.github.com/users/RaduBerinde/repos","events_url":"https://api.github.com/users/RaduBerinde/events{/privacy}","received_events_url":"https://api.github.com/users/RaduBerinde/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"123a01c425422ead6aef6af6f9e78692d361487f","commit_url":"https://api.github.com/repos/RaduBerinde/ivy/commits/123a01c425422ead6aef6af6f9e78692d361487f","created_at":"2017-02-05T13:58:50Z","performed_via_github_app":null},{"id":949476867,"node_id":"MDExOkNsb3NlZEV2ZW50OTQ5NDc2ODY3","url":"https://api.github.com/repos/robpike/ivy/issues/events/949476867","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2017-02-05T16:24:45Z","state_reason":null,"performed_via_github_app":null}]233 11700 GET https://api.github.com/repos/robpike/ivy/issues/32/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:55 GMT Etag: W/"295cb6451f348d1afc1adf21a73b5dde527d0d3d4908cf785ef9fcdf758c676d" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1ECE79:3372A5:665E33B7 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4953 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 47 X-Xss-Protection: 0 [{"id":949438053,"node_id":"MDIzOkhlYWRSZWZGb3JjZVB1c2hlZEV2ZW50OTQ5NDM4MDUz","url":"https://api.github.com/repos/robpike/ivy/issues/events/949438053","actor":{"login":"RaduBerinde","id":16544120,"node_id":"MDQ6VXNlcjE2NTQ0MTIw","avatar_url":"https://avatars.githubusercontent.com/u/16544120?v=4","gravatar_id":"","url":"https://api.github.com/users/RaduBerinde","html_url":"https://github.com/RaduBerinde","followers_url":"https://api.github.com/users/RaduBerinde/followers","following_url":"https://api.github.com/users/RaduBerinde/following{/other_user}","gists_url":"https://api.github.com/users/RaduBerinde/gists{/gist_id}","starred_url":"https://api.github.com/users/RaduBerinde/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RaduBerinde/subscriptions","organizations_url":"https://api.github.com/users/RaduBerinde/orgs","repos_url":"https://api.github.com/users/RaduBerinde/repos","events_url":"https://api.github.com/users/RaduBerinde/events{/privacy}","received_events_url":"https://api.github.com/users/RaduBerinde/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2017-02-05T13:58:50Z","performed_via_github_app":null},{"id":949476865,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDk0OTQ3Njg2NQ==","url":"https://api.github.com/repos/robpike/ivy/issues/events/949476865","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"37dab0894d040e516fb3c2e2c332df39eeb5aab7","commit_url":"https://api.github.com/repos/robpike/ivy/commits/37dab0894d040e516fb3c2e2c332df39eeb5aab7","created_at":"2017-02-05T16:24:45Z","performed_via_github_app":null},{"id":949476866,"node_id":"MDExOk1lcmdlZEV2ZW50OTQ5NDc2ODY2","url":"https://api.github.com/repos/robpike/ivy/issues/events/949476866","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"37dab0894d040e516fb3c2e2c332df39eeb5aab7","commit_url":"https://api.github.com/repos/robpike/ivy/commits/37dab0894d040e516fb3c2e2c332df39eeb5aab7","created_at":"2017-02-05T16:24:45Z","performed_via_github_app":null},{"id":949476868,"node_id":"MDExOkNsb3NlZEV2ZW50OTQ5NDc2ODY4","url":"https://api.github.com/repos/robpike/ivy/issues/events/949476868","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2017-02-05T16:24:45Z","state_reason":null,"performed_via_github_app":null},{"id":949546370,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDk0OTU0NjM3MA==","url":"https://api.github.com/repos/robpike/ivy/issues/events/949546370","actor":{"login":"RaduBerinde","id":16544120,"node_id":"MDQ6VXNlcjE2NTQ0MTIw","avatar_url":"https://avatars.githubusercontent.com/u/16544120?v=4","gravatar_id":"","url":"https://api.github.com/users/RaduBerinde","html_url":"https://github.com/RaduBerinde","followers_url":"https://api.github.com/users/RaduBerinde/followers","following_url":"https://api.github.com/users/RaduBerinde/following{/other_user}","gists_url":"https://api.github.com/users/RaduBerinde/gists{/gist_id}","starred_url":"https://api.github.com/users/RaduBerinde/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RaduBerinde/subscriptions","organizations_url":"https://api.github.com/users/RaduBerinde/orgs","repos_url":"https://api.github.com/users/RaduBerinde/repos","events_url":"https://api.github.com/users/RaduBerinde/events{/privacy}","received_events_url":"https://api.github.com/users/RaduBerinde/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"63afb7c4a70ac7b7ece8cd720ff9e19e29be5ba3","commit_url":"https://api.github.com/repos/RaduBerinde/apd/commits/63afb7c4a70ac7b7ece8cd720ff9e19e29be5ba3","created_at":"2017-02-05T20:29:13Z","performed_via_github_app":null},{"id":949547812,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDk0OTU0NzgxMg==","url":"https://api.github.com/repos/robpike/ivy/issues/events/949547812","actor":{"login":"RaduBerinde","id":16544120,"node_id":"MDQ6VXNlcjE2NTQ0MTIw","avatar_url":"https://avatars.githubusercontent.com/u/16544120?v=4","gravatar_id":"","url":"https://api.github.com/users/RaduBerinde","html_url":"https://github.com/RaduBerinde","followers_url":"https://api.github.com/users/RaduBerinde/followers","following_url":"https://api.github.com/users/RaduBerinde/following{/other_user}","gists_url":"https://api.github.com/users/RaduBerinde/gists{/gist_id}","starred_url":"https://api.github.com/users/RaduBerinde/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RaduBerinde/subscriptions","organizations_url":"https://api.github.com/users/RaduBerinde/orgs","repos_url":"https://api.github.com/users/RaduBerinde/repos","events_url":"https://api.github.com/users/RaduBerinde/events{/privacy}","received_events_url":"https://api.github.com/users/RaduBerinde/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"612ec33eddaef19c21b4e44ae2549afb979d477c","commit_url":"https://api.github.com/repos/RaduBerinde/apd/commits/612ec33eddaef19c21b4e44ae2549afb979d477c","created_at":"2017-02-05T20:34:26Z","performed_via_github_app":null},{"id":949555709,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDk0OTU1NTcwOQ==","url":"https://api.github.com/repos/robpike/ivy/issues/events/949555709","actor":{"login":"RaduBerinde","id":16544120,"node_id":"MDQ6VXNlcjE2NTQ0MTIw","avatar_url":"https://avatars.githubusercontent.com/u/16544120?v=4","gravatar_id":"","url":"https://api.github.com/users/RaduBerinde","html_url":"https://github.com/RaduBerinde","followers_url":"https://api.github.com/users/RaduBerinde/followers","following_url":"https://api.github.com/users/RaduBerinde/following{/other_user}","gists_url":"https://api.github.com/users/RaduBerinde/gists{/gist_id}","starred_url":"https://api.github.com/users/RaduBerinde/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RaduBerinde/subscriptions","organizations_url":"https://api.github.com/users/RaduBerinde/orgs","repos_url":"https://api.github.com/users/RaduBerinde/repos","events_url":"https://api.github.com/users/RaduBerinde/events{/privacy}","received_events_url":"https://api.github.com/users/RaduBerinde/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"43d75ee49a875dac22d4dcdf2c7e09a37f33bb21","commit_url":"https://api.github.com/repos/RaduBerinde/apd/commits/43d75ee49a875dac22d4dcdf2c7e09a37f33bb21","created_at":"2017-02-05T21:00:19Z","performed_via_github_app":null},{"id":949657117,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDk0OTY1NzExNw==","url":"https://api.github.com/repos/robpike/ivy/issues/events/949657117","actor":{"login":"RaduBerinde","id":16544120,"node_id":"MDQ6VXNlcjE2NTQ0MTIw","avatar_url":"https://avatars.githubusercontent.com/u/16544120?v=4","gravatar_id":"","url":"https://api.github.com/users/RaduBerinde","html_url":"https://github.com/RaduBerinde","followers_url":"https://api.github.com/users/RaduBerinde/followers","following_url":"https://api.github.com/users/RaduBerinde/following{/other_user}","gists_url":"https://api.github.com/users/RaduBerinde/gists{/gist_id}","starred_url":"https://api.github.com/users/RaduBerinde/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RaduBerinde/subscriptions","organizations_url":"https://api.github.com/users/RaduBerinde/orgs","repos_url":"https://api.github.com/users/RaduBerinde/repos","events_url":"https://api.github.com/users/RaduBerinde/events{/privacy}","received_events_url":"https://api.github.com/users/RaduBerinde/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"a1105927ff9cad78620625c626330c6f1378eba1","commit_url":"https://api.github.com/repos/RaduBerinde/apd/commits/a1105927ff9cad78620625c626330c6f1378eba1","created_at":"2017-02-06T02:09:55Z","performed_via_github_app":null}]233 12162 GET https://api.github.com/repos/robpike/ivy/issues/33/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:55 GMT Etag: W/"79bebf5471ad360bc241a76eea4a6cff9f234c84d4db6dd8464fa4ce8c5bc369" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1ECEEF:337370:665E33B7 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4952 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 48 X-Xss-Protection: 0 [{"id":985130161,"node_id":"MDIzOkhlYWRSZWZGb3JjZVB1c2hlZEV2ZW50OTg1MTMwMTYx","url":"https://api.github.com/repos/robpike/ivy/issues/events/985130161","actor":{"login":"tcolgate","id":76019,"node_id":"MDQ6VXNlcjc2MDE5","avatar_url":"https://avatars.githubusercontent.com/u/76019?v=4","gravatar_id":"","url":"https://api.github.com/users/tcolgate","html_url":"https://github.com/tcolgate","followers_url":"https://api.github.com/users/tcolgate/followers","following_url":"https://api.github.com/users/tcolgate/following{/other_user}","gists_url":"https://api.github.com/users/tcolgate/gists{/gist_id}","starred_url":"https://api.github.com/users/tcolgate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tcolgate/subscriptions","organizations_url":"https://api.github.com/users/tcolgate/orgs","repos_url":"https://api.github.com/users/tcolgate/repos","events_url":"https://api.github.com/users/tcolgate/events{/privacy}","received_events_url":"https://api.github.com/users/tcolgate/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2017-03-03T10:02:21Z","performed_via_github_app":null},{"id":985988574,"node_id":"MDE5OkJhc2VSZWZDaGFuZ2VkRXZlbnQ5ODU5ODg1NzQ=","url":"https://api.github.com/repos/robpike/ivy/issues/events/985988574","actor":{"login":"tcolgate","id":76019,"node_id":"MDQ6VXNlcjc2MDE5","avatar_url":"https://avatars.githubusercontent.com/u/76019?v=4","gravatar_id":"","url":"https://api.github.com/users/tcolgate","html_url":"https://github.com/tcolgate","followers_url":"https://api.github.com/users/tcolgate/followers","following_url":"https://api.github.com/users/tcolgate/following{/other_user}","gists_url":"https://api.github.com/users/tcolgate/gists{/gist_id}","starred_url":"https://api.github.com/users/tcolgate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tcolgate/subscriptions","organizations_url":"https://api.github.com/users/tcolgate/orgs","repos_url":"https://api.github.com/users/tcolgate/repos","events_url":"https://api.github.com/users/tcolgate/events{/privacy}","received_events_url":"https://api.github.com/users/tcolgate/received_events","type":"User","site_admin":false},"event":"base_ref_changed","commit_id":null,"commit_url":null,"created_at":"2017-03-03T20:15:51Z","performed_via_github_app":null},{"id":985989669,"node_id":"MDIzOkhlYWRSZWZGb3JjZVB1c2hlZEV2ZW50OTg1OTg5NjY5","url":"https://api.github.com/repos/robpike/ivy/issues/events/985989669","actor":{"login":"tcolgate","id":76019,"node_id":"MDQ6VXNlcjc2MDE5","avatar_url":"https://avatars.githubusercontent.com/u/76019?v=4","gravatar_id":"","url":"https://api.github.com/users/tcolgate","html_url":"https://github.com/tcolgate","followers_url":"https://api.github.com/users/tcolgate/followers","following_url":"https://api.github.com/users/tcolgate/following{/other_user}","gists_url":"https://api.github.com/users/tcolgate/gists{/gist_id}","starred_url":"https://api.github.com/users/tcolgate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tcolgate/subscriptions","organizations_url":"https://api.github.com/users/tcolgate/orgs","repos_url":"https://api.github.com/users/tcolgate/repos","events_url":"https://api.github.com/users/tcolgate/events{/privacy}","received_events_url":"https://api.github.com/users/tcolgate/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2017-03-03T20:16:41Z","performed_via_github_app":null},{"id":989941090,"node_id":"MDIzOkhlYWRSZWZGb3JjZVB1c2hlZEV2ZW50OTg5OTQxMDkw","url":"https://api.github.com/repos/robpike/ivy/issues/events/989941090","actor":{"login":"tcolgate","id":76019,"node_id":"MDQ6VXNlcjc2MDE5","avatar_url":"https://avatars.githubusercontent.com/u/76019?v=4","gravatar_id":"","url":"https://api.github.com/users/tcolgate","html_url":"https://github.com/tcolgate","followers_url":"https://api.github.com/users/tcolgate/followers","following_url":"https://api.github.com/users/tcolgate/following{/other_user}","gists_url":"https://api.github.com/users/tcolgate/gists{/gist_id}","starred_url":"https://api.github.com/users/tcolgate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tcolgate/subscriptions","organizations_url":"https://api.github.com/users/tcolgate/orgs","repos_url":"https://api.github.com/users/tcolgate/repos","events_url":"https://api.github.com/users/tcolgate/events{/privacy}","received_events_url":"https://api.github.com/users/tcolgate/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2017-03-07T17:05:51Z","performed_via_github_app":null},{"id":989944579,"node_id":"MDE0Ok1lbnRpb25lZEV2ZW50OTg5OTQ0NTc5","url":"https://api.github.com/repos/robpike/ivy/issues/events/989944579","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2017-03-07T17:07:52Z","performed_via_github_app":null},{"id":989944580,"node_id":"MDE1OlN1YnNjcmliZWRFdmVudDk4OTk0NDU4MA==","url":"https://api.github.com/repos/robpike/ivy/issues/events/989944580","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2017-03-07T17:07:52Z","performed_via_github_app":null},{"id":990393448,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDk5MDM5MzQ0OA==","url":"https://api.github.com/repos/robpike/ivy/issues/events/990393448","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"3b3ef6ab82c90c4cfdae82fc1ac5fc3fbe99d41d","commit_url":"https://api.github.com/repos/robpike/ivy/commits/3b3ef6ab82c90c4cfdae82fc1ac5fc3fbe99d41d","created_at":"2017-03-07T21:53:31Z","performed_via_github_app":null},{"id":990393449,"node_id":"MDExOk1lcmdlZEV2ZW50OTkwMzkzNDQ5","url":"https://api.github.com/repos/robpike/ivy/issues/events/990393449","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"3b3ef6ab82c90c4cfdae82fc1ac5fc3fbe99d41d","commit_url":"https://api.github.com/repos/robpike/ivy/commits/3b3ef6ab82c90c4cfdae82fc1ac5fc3fbe99d41d","created_at":"2017-03-07T21:53:31Z","performed_via_github_app":null},{"id":990393450,"node_id":"MDExOkNsb3NlZEV2ZW50OTkwMzkzNDUw","url":"https://api.github.com/repos/robpike/ivy/issues/events/990393450","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2017-03-07T21:53:31Z","state_reason":null,"performed_via_github_app":null}]233 6262 GET https://api.github.com/repos/robpike/ivy/issues/34/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:55 GMT Etag: W/"46e635202d5e48641c89a89d06e4e0f4a272905dc084b04464445d737cde53b2" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1ECF72:337465:665E33B7 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4951 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 49 X-Xss-Protection: 0 [{"id":991091757,"node_id":"MDIzOkhlYWRSZWZGb3JjZVB1c2hlZEV2ZW50OTkxMDkxNzU3","url":"https://api.github.com/repos/robpike/ivy/issues/events/991091757","actor":{"login":"tcolgate","id":76019,"node_id":"MDQ6VXNlcjc2MDE5","avatar_url":"https://avatars.githubusercontent.com/u/76019?v=4","gravatar_id":"","url":"https://api.github.com/users/tcolgate","html_url":"https://github.com/tcolgate","followers_url":"https://api.github.com/users/tcolgate/followers","following_url":"https://api.github.com/users/tcolgate/following{/other_user}","gists_url":"https://api.github.com/users/tcolgate/gists{/gist_id}","starred_url":"https://api.github.com/users/tcolgate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tcolgate/subscriptions","organizations_url":"https://api.github.com/users/tcolgate/orgs","repos_url":"https://api.github.com/users/tcolgate/repos","events_url":"https://api.github.com/users/tcolgate/events{/privacy}","received_events_url":"https://api.github.com/users/tcolgate/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2017-03-08T10:10:24Z","performed_via_github_app":null},{"id":991551223,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDk5MTU1MTIyMw==","url":"https://api.github.com/repos/robpike/ivy/issues/events/991551223","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"fa4719b857dbc187fa10428979bf324e1a7b8014","commit_url":"https://api.github.com/repos/robpike/ivy/commits/fa4719b857dbc187fa10428979bf324e1a7b8014","created_at":"2017-03-08T15:43:14Z","performed_via_github_app":null},{"id":991551224,"node_id":"MDExOk1lcmdlZEV2ZW50OTkxNTUxMjI0","url":"https://api.github.com/repos/robpike/ivy/issues/events/991551224","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"fa4719b857dbc187fa10428979bf324e1a7b8014","commit_url":"https://api.github.com/repos/robpike/ivy/commits/fa4719b857dbc187fa10428979bf324e1a7b8014","created_at":"2017-03-08T15:43:14Z","performed_via_github_app":null},{"id":991551229,"node_id":"MDExOkNsb3NlZEV2ZW50OTkxNTUxMjI5","url":"https://api.github.com/repos/robpike/ivy/issues/events/991551229","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2017-03-08T15:43:14Z","state_reason":null,"performed_via_github_app":null}]233 31179 GET https://api.github.com/repos/robpike/ivy/issues/35/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:55 GMT Etag: W/"02103efb3cbe65d01c0c61f95f4f8d7c185dc9ce1209eec64f13c465cdd4275d" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1ECFE5:337527:665E33B7 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4950 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 50 X-Xss-Protection: 0 [{"id":995162532,"node_id":"MDE0Ok1lbnRpb25lZEV2ZW50OTk1MTYyNTMy","url":"https://api.github.com/repos/robpike/ivy/issues/events/995162532","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2017-03-10T16:28:06Z","performed_via_github_app":null},{"id":995162534,"node_id":"MDE1OlN1YnNjcmliZWRFdmVudDk5NTE2MjUzNA==","url":"https://api.github.com/repos/robpike/ivy/issues/events/995162534","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2017-03-10T16:28:06Z","performed_via_github_app":null},{"id":995201854,"node_id":"MDE0Ok1lbnRpb25lZEV2ZW50OTk1MjAxODU0","url":"https://api.github.com/repos/robpike/ivy/issues/events/995201854","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2017-03-10T16:52:31Z","performed_via_github_app":null},{"id":995201855,"node_id":"MDE1OlN1YnNjcmliZWRFdmVudDk5NTIwMTg1NQ==","url":"https://api.github.com/repos/robpike/ivy/issues/events/995201855","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2017-03-10T16:52:31Z","performed_via_github_app":null},{"id":995977846,"node_id":"MDIzOkhlYWRSZWZGb3JjZVB1c2hlZEV2ZW50OTk1OTc3ODQ2","url":"https://api.github.com/repos/robpike/ivy/issues/events/995977846","actor":{"login":"tcolgate","id":76019,"node_id":"MDQ6VXNlcjc2MDE5","avatar_url":"https://avatars.githubusercontent.com/u/76019?v=4","gravatar_id":"","url":"https://api.github.com/users/tcolgate","html_url":"https://github.com/tcolgate","followers_url":"https://api.github.com/users/tcolgate/followers","following_url":"https://api.github.com/users/tcolgate/following{/other_user}","gists_url":"https://api.github.com/users/tcolgate/gists{/gist_id}","starred_url":"https://api.github.com/users/tcolgate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tcolgate/subscriptions","organizations_url":"https://api.github.com/users/tcolgate/orgs","repos_url":"https://api.github.com/users/tcolgate/repos","events_url":"https://api.github.com/users/tcolgate/events{/privacy}","received_events_url":"https://api.github.com/users/tcolgate/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2017-03-11T14:04:18Z","performed_via_github_app":null},{"id":995978326,"node_id":"MDE0Ok1lbnRpb25lZEV2ZW50OTk1OTc4MzI2","url":"https://api.github.com/repos/robpike/ivy/issues/events/995978326","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2017-03-11T14:05:38Z","performed_via_github_app":null},{"id":995978327,"node_id":"MDE1OlN1YnNjcmliZWRFdmVudDk5NTk3ODMyNw==","url":"https://api.github.com/repos/robpike/ivy/issues/events/995978327","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2017-03-11T14:05:38Z","performed_via_github_app":null},{"id":1001547627,"node_id":"MDIzOkhlYWRSZWZGb3JjZVB1c2hlZEV2ZW50MTAwMTU0NzYyNw==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1001547627","actor":{"login":"tcolgate","id":76019,"node_id":"MDQ6VXNlcjc2MDE5","avatar_url":"https://avatars.githubusercontent.com/u/76019?v=4","gravatar_id":"","url":"https://api.github.com/users/tcolgate","html_url":"https://github.com/tcolgate","followers_url":"https://api.github.com/users/tcolgate/followers","following_url":"https://api.github.com/users/tcolgate/following{/other_user}","gists_url":"https://api.github.com/users/tcolgate/gists{/gist_id}","starred_url":"https://api.github.com/users/tcolgate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tcolgate/subscriptions","organizations_url":"https://api.github.com/users/tcolgate/orgs","repos_url":"https://api.github.com/users/tcolgate/repos","events_url":"https://api.github.com/users/tcolgate/events{/privacy}","received_events_url":"https://api.github.com/users/tcolgate/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2017-03-15T19:35:33Z","performed_via_github_app":null},{"id":1001550789,"node_id":"MDIzOkhlYWRSZWZGb3JjZVB1c2hlZEV2ZW50MTAwMTU1MDc4OQ==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1001550789","actor":{"login":"tcolgate","id":76019,"node_id":"MDQ6VXNlcjc2MDE5","avatar_url":"https://avatars.githubusercontent.com/u/76019?v=4","gravatar_id":"","url":"https://api.github.com/users/tcolgate","html_url":"https://github.com/tcolgate","followers_url":"https://api.github.com/users/tcolgate/followers","following_url":"https://api.github.com/users/tcolgate/following{/other_user}","gists_url":"https://api.github.com/users/tcolgate/gists{/gist_id}","starred_url":"https://api.github.com/users/tcolgate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tcolgate/subscriptions","organizations_url":"https://api.github.com/users/tcolgate/orgs","repos_url":"https://api.github.com/users/tcolgate/repos","events_url":"https://api.github.com/users/tcolgate/events{/privacy}","received_events_url":"https://api.github.com/users/tcolgate/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2017-03-15T19:37:40Z","performed_via_github_app":null},{"id":1001551821,"node_id":"MDE0Ok1lbnRpb25lZEV2ZW50MTAwMTU1MTgyMQ==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1001551821","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2017-03-15T19:38:23Z","performed_via_github_app":null},{"id":1001551822,"node_id":"MDE1OlN1YnNjcmliZWRFdmVudDEwMDE1NTE4MjI=","url":"https://api.github.com/repos/robpike/ivy/issues/events/1001551822","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2017-03-15T19:38:23Z","performed_via_github_app":null},{"id":1003946463,"node_id":"MDIzOkhlYWRSZWZGb3JjZVB1c2hlZEV2ZW50MTAwMzk0NjQ2Mw==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1003946463","actor":{"login":"tcolgate","id":76019,"node_id":"MDQ6VXNlcjc2MDE5","avatar_url":"https://avatars.githubusercontent.com/u/76019?v=4","gravatar_id":"","url":"https://api.github.com/users/tcolgate","html_url":"https://github.com/tcolgate","followers_url":"https://api.github.com/users/tcolgate/followers","following_url":"https://api.github.com/users/tcolgate/following{/other_user}","gists_url":"https://api.github.com/users/tcolgate/gists{/gist_id}","starred_url":"https://api.github.com/users/tcolgate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tcolgate/subscriptions","organizations_url":"https://api.github.com/users/tcolgate/orgs","repos_url":"https://api.github.com/users/tcolgate/repos","events_url":"https://api.github.com/users/tcolgate/events{/privacy}","received_events_url":"https://api.github.com/users/tcolgate/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2017-03-17T05:53:49Z","performed_via_github_app":null},{"id":1003949020,"node_id":"MDIzOkhlYWRSZWZGb3JjZVB1c2hlZEV2ZW50MTAwMzk0OTAyMA==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1003949020","actor":{"login":"tcolgate","id":76019,"node_id":"MDQ6VXNlcjc2MDE5","avatar_url":"https://avatars.githubusercontent.com/u/76019?v=4","gravatar_id":"","url":"https://api.github.com/users/tcolgate","html_url":"https://github.com/tcolgate","followers_url":"https://api.github.com/users/tcolgate/followers","following_url":"https://api.github.com/users/tcolgate/following{/other_user}","gists_url":"https://api.github.com/users/tcolgate/gists{/gist_id}","starred_url":"https://api.github.com/users/tcolgate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tcolgate/subscriptions","organizations_url":"https://api.github.com/users/tcolgate/orgs","repos_url":"https://api.github.com/users/tcolgate/repos","events_url":"https://api.github.com/users/tcolgate/events{/privacy}","received_events_url":"https://api.github.com/users/tcolgate/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2017-03-17T05:57:19Z","performed_via_github_app":null},{"id":1004665337,"node_id":"MDIzOkhlYWRSZWZGb3JjZVB1c2hlZEV2ZW50MTAwNDY2NTMzNw==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1004665337","actor":{"login":"tcolgate","id":76019,"node_id":"MDQ6VXNlcjc2MDE5","avatar_url":"https://avatars.githubusercontent.com/u/76019?v=4","gravatar_id":"","url":"https://api.github.com/users/tcolgate","html_url":"https://github.com/tcolgate","followers_url":"https://api.github.com/users/tcolgate/followers","following_url":"https://api.github.com/users/tcolgate/following{/other_user}","gists_url":"https://api.github.com/users/tcolgate/gists{/gist_id}","starred_url":"https://api.github.com/users/tcolgate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tcolgate/subscriptions","organizations_url":"https://api.github.com/users/tcolgate/orgs","repos_url":"https://api.github.com/users/tcolgate/repos","events_url":"https://api.github.com/users/tcolgate/events{/privacy}","received_events_url":"https://api.github.com/users/tcolgate/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2017-03-17T15:38:51Z","performed_via_github_app":null},{"id":1004667270,"node_id":"MDE0Ok1lbnRpb25lZEV2ZW50MTAwNDY2NzI3MA==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1004667270","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2017-03-17T15:40:00Z","performed_via_github_app":null},{"id":1004667271,"node_id":"MDE1OlN1YnNjcmliZWRFdmVudDEwMDQ2NjcyNzE=","url":"https://api.github.com/repos/robpike/ivy/issues/events/1004667271","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2017-03-17T15:40:00Z","performed_via_github_app":null},{"id":1005508398,"node_id":"MDIzOkhlYWRSZWZGb3JjZVB1c2hlZEV2ZW50MTAwNTUwODM5OA==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1005508398","actor":{"login":"tcolgate","id":76019,"node_id":"MDQ6VXNlcjc2MDE5","avatar_url":"https://avatars.githubusercontent.com/u/76019?v=4","gravatar_id":"","url":"https://api.github.com/users/tcolgate","html_url":"https://github.com/tcolgate","followers_url":"https://api.github.com/users/tcolgate/followers","following_url":"https://api.github.com/users/tcolgate/following{/other_user}","gists_url":"https://api.github.com/users/tcolgate/gists{/gist_id}","starred_url":"https://api.github.com/users/tcolgate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tcolgate/subscriptions","organizations_url":"https://api.github.com/users/tcolgate/orgs","repos_url":"https://api.github.com/users/tcolgate/repos","events_url":"https://api.github.com/users/tcolgate/events{/privacy}","received_events_url":"https://api.github.com/users/tcolgate/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2017-03-18T12:07:39Z","performed_via_github_app":null},{"id":1005867173,"node_id":"MDIzOkhlYWRSZWZGb3JjZVB1c2hlZEV2ZW50MTAwNTg2NzE3Mw==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1005867173","actor":{"login":"tcolgate","id":76019,"node_id":"MDQ6VXNlcjc2MDE5","avatar_url":"https://avatars.githubusercontent.com/u/76019?v=4","gravatar_id":"","url":"https://api.github.com/users/tcolgate","html_url":"https://github.com/tcolgate","followers_url":"https://api.github.com/users/tcolgate/followers","following_url":"https://api.github.com/users/tcolgate/following{/other_user}","gists_url":"https://api.github.com/users/tcolgate/gists{/gist_id}","starred_url":"https://api.github.com/users/tcolgate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tcolgate/subscriptions","organizations_url":"https://api.github.com/users/tcolgate/orgs","repos_url":"https://api.github.com/users/tcolgate/repos","events_url":"https://api.github.com/users/tcolgate/events{/privacy}","received_events_url":"https://api.github.com/users/tcolgate/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2017-03-19T14:32:38Z","performed_via_github_app":null},{"id":1005867657,"node_id":"MDIzOkhlYWRSZWZGb3JjZVB1c2hlZEV2ZW50MTAwNTg2NzY1Nw==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1005867657","actor":{"login":"tcolgate","id":76019,"node_id":"MDQ6VXNlcjc2MDE5","avatar_url":"https://avatars.githubusercontent.com/u/76019?v=4","gravatar_id":"","url":"https://api.github.com/users/tcolgate","html_url":"https://github.com/tcolgate","followers_url":"https://api.github.com/users/tcolgate/followers","following_url":"https://api.github.com/users/tcolgate/following{/other_user}","gists_url":"https://api.github.com/users/tcolgate/gists{/gist_id}","starred_url":"https://api.github.com/users/tcolgate/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tcolgate/subscriptions","organizations_url":"https://api.github.com/users/tcolgate/orgs","repos_url":"https://api.github.com/users/tcolgate/repos","events_url":"https://api.github.com/users/tcolgate/events{/privacy}","received_events_url":"https://api.github.com/users/tcolgate/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2017-03-19T14:34:27Z","performed_via_github_app":null},{"id":1005868193,"node_id":"MDE0Ok1lbnRpb25lZEV2ZW50MTAwNTg2ODE5Mw==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1005868193","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2017-03-19T14:35:53Z","performed_via_github_app":null},{"id":1005868194,"node_id":"MDE1OlN1YnNjcmliZWRFdmVudDEwMDU4NjgxOTQ=","url":"https://api.github.com/repos/robpike/ivy/issues/events/1005868194","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2017-03-19T14:35:53Z","performed_via_github_app":null},{"id":1005876052,"node_id":"MDE3OlJlbmFtZWRUaXRsZUV2ZW50MTAwNTg3NjA1Mg==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1005876052","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2017-03-19T15:01:41Z","rename":{"from":"value: vrot vertical rotation function.","to":"value: rename rev to rot and add binary version of flip"},"performed_via_github_app":null},{"id":1005876177,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDEwMDU4NzYxNzc=","url":"https://api.github.com/repos/robpike/ivy/issues/events/1005876177","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"3daa0e43ebee5c7a914f0b12d089e560f482ca54","commit_url":"https://api.github.com/repos/robpike/ivy/commits/3daa0e43ebee5c7a914f0b12d089e560f482ca54","created_at":"2017-03-19T15:02:05Z","performed_via_github_app":null},{"id":1005876178,"node_id":"MDExOk1lcmdlZEV2ZW50MTAwNTg3NjE3OA==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1005876178","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"3daa0e43ebee5c7a914f0b12d089e560f482ca54","commit_url":"https://api.github.com/repos/robpike/ivy/commits/3daa0e43ebee5c7a914f0b12d089e560f482ca54","created_at":"2017-03-19T15:02:05Z","performed_via_github_app":null},{"id":1005876179,"node_id":"MDExOkNsb3NlZEV2ZW50MTAwNTg3NjE3OQ==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1005876179","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2017-03-19T15:02:05Z","state_reason":null,"performed_via_github_app":null}]233 2495 GET https://api.github.com/repos/robpike/ivy/issues/36/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:55 GMT Etag: W/"4d0d4f4ff77d29848d840c45810e7582698c41b7c17c5cf9c611296265f97378" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1ED093:33764D:665E33B7 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4949 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 51 X-Xss-Protection: 0 [{"id":9774406525,"node_id":"CE_lADOAZPgIc4M064AzwAAAAJGmZt9","url":"https://api.github.com/repos/robpike/ivy/issues/events/9774406525","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-07-10T12:49:22Z","state_reason":null,"performed_via_github_app":null}]233 3815 GET https://api.github.com/repos/robpike/ivy/issues/37/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:55 GMT Etag: W/"dce1e630229e0d89e06178b944cd32d1bbc60706fcbe86ed12744b4fc9664b37" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1ED0F6:3376E1:665E33B7 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4948 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 52 X-Xss-Protection: 0 [{"id":1103494009,"node_id":"MDExOkNsb3NlZEV2ZW50MTEwMzQ5NDAwOQ==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1103494009","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2017-05-31T04:13:24Z","state_reason":null,"performed_via_github_app":null},{"id":1212286703,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDEyMTIyODY3MDM=","url":"https://api.github.com/repos/robpike/ivy/issues/events/1212286703","actor":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"3b9aa41c71a855a5f5fee96dc751979ce6e8cbbe","commit_url":"https://api.github.com/repos/mdempsky/unconvert/commits/3b9aa41c71a855a5f5fee96dc751979ce6e8cbbe","created_at":"2017-08-18T17:38:47Z","performed_via_github_app":null}]233 4867 GET https://api.github.com/repos/robpike/ivy/issues/38/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:56 GMT Etag: W/"d50996853184177f63b2d5be905c3b31b92cb5fd31e53fc566e1ea10e73b5363" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1ED16D:3377AC:665E33B7 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4947 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 53 X-Xss-Protection: 0 [{"id":1103414379,"node_id":"MDE0Ok1lbnRpb25lZEV2ZW50MTEwMzQxNDM3OQ==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1103414379","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2017-05-31T02:15:43Z","performed_via_github_app":null},{"id":1103414380,"node_id":"MDE1OlN1YnNjcmliZWRFdmVudDExMDM0MTQzODA=","url":"https://api.github.com/repos/robpike/ivy/issues/events/1103414380","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2017-05-31T02:15:43Z","performed_via_github_app":null},{"id":1103564918,"node_id":"MDExOkNsb3NlZEV2ZW50MTEwMzU2NDkxOA==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1103564918","actor":{"login":"suryaabhi","id":15243985,"node_id":"MDQ6VXNlcjE1MjQzOTg1","avatar_url":"https://avatars.githubusercontent.com/u/15243985?v=4","gravatar_id":"","url":"https://api.github.com/users/suryaabhi","html_url":"https://github.com/suryaabhi","followers_url":"https://api.github.com/users/suryaabhi/followers","following_url":"https://api.github.com/users/suryaabhi/following{/other_user}","gists_url":"https://api.github.com/users/suryaabhi/gists{/gist_id}","starred_url":"https://api.github.com/users/suryaabhi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/suryaabhi/subscriptions","organizations_url":"https://api.github.com/users/suryaabhi/orgs","repos_url":"https://api.github.com/users/suryaabhi/repos","events_url":"https://api.github.com/users/suryaabhi/events{/privacy}","received_events_url":"https://api.github.com/users/suryaabhi/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2017-05-31T05:55:10Z","state_reason":null,"performed_via_github_app":null}]233 2500 GET https://api.github.com/repos/robpike/ivy/issues/39/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:56 GMT Etag: W/"bf83b802195a133d045f6ffd2536fdeb5221ef78210e09f90ee25cbfb1b1f16a" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1ED1E2:337878:665E33B8 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4946 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 54 X-Xss-Protection: 0 [{"id":1179031770,"node_id":"MDExOkNsb3NlZEV2ZW50MTE3OTAzMTc3MA==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1179031770","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2017-07-26T00:35:43Z","state_reason":null,"performed_via_github_app":null}]233 8637 GET https://api.github.com/repos/robpike/ivy/issues/40/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:56 GMT Etag: W/"7382157f6b537f5e7216f591e6fb439db51c16a12473b9524e3d5a2c1b195217" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1ED23F:337905:665E33B8 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4945 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 55 X-Xss-Protection: 0 [{"id":1394931577,"node_id":"MDExOkNsb3NlZEV2ZW50MTM5NDkzMTU3Nw==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1394931577","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2017-12-19T20:43:26Z","state_reason":null,"performed_via_github_app":null},{"id":1398428060,"node_id":"MDE5OkJhc2VSZWZDaGFuZ2VkRXZlbnQxMzk4NDI4MDYw","url":"https://api.github.com/repos/robpike/ivy/issues/events/1398428060","actor":{"login":"rogpeppe","id":66491,"node_id":"MDQ6VXNlcjY2NDkx","avatar_url":"https://avatars.githubusercontent.com/u/66491?v=4","gravatar_id":"","url":"https://api.github.com/users/rogpeppe","html_url":"https://github.com/rogpeppe","followers_url":"https://api.github.com/users/rogpeppe/followers","following_url":"https://api.github.com/users/rogpeppe/following{/other_user}","gists_url":"https://api.github.com/users/rogpeppe/gists{/gist_id}","starred_url":"https://api.github.com/users/rogpeppe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rogpeppe/subscriptions","organizations_url":"https://api.github.com/users/rogpeppe/orgs","repos_url":"https://api.github.com/users/rogpeppe/repos","events_url":"https://api.github.com/users/rogpeppe/events{/privacy}","received_events_url":"https://api.github.com/users/rogpeppe/received_events","type":"User","site_admin":false},"event":"base_ref_changed","commit_id":null,"commit_url":null,"created_at":"2017-12-21T17:57:06Z","performed_via_github_app":null},{"id":1398639063,"node_id":"MDEzOlJlb3BlbmVkRXZlbnQxMzk4NjM5MDYz","url":"https://api.github.com/repos/robpike/ivy/issues/events/1398639063","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"reopened","commit_id":null,"commit_url":null,"created_at":"2017-12-21T20:25:05Z","state_reason":null,"performed_via_github_app":null},{"id":1398639294,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDEzOTg2MzkyOTQ=","url":"https://api.github.com/repos/robpike/ivy/issues/events/1398639294","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"7dd15f316cc2827f4c780870b610db3bafe4412c","commit_url":"https://api.github.com/repos/robpike/ivy/commits/7dd15f316cc2827f4c780870b610db3bafe4412c","created_at":"2017-12-21T20:25:16Z","performed_via_github_app":null},{"id":1398639297,"node_id":"MDExOk1lcmdlZEV2ZW50MTM5ODYzOTI5Nw==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1398639297","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"7dd15f316cc2827f4c780870b610db3bafe4412c","commit_url":"https://api.github.com/repos/robpike/ivy/commits/7dd15f316cc2827f4c780870b610db3bafe4412c","created_at":"2017-12-21T20:25:16Z","performed_via_github_app":null},{"id":1398639300,"node_id":"MDExOkNsb3NlZEV2ZW50MTM5ODYzOTMwMA==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1398639300","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2017-12-21T20:25:16Z","state_reason":null,"performed_via_github_app":null}]233 3796 GET https://api.github.com/repos/robpike/ivy/issues/41/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:56 GMT Etag: W/"ab1503d81217a26344e8de8dd66ca06c0e73c09cc0cafc5fa1b9b75923fd7ec2" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1ED2C0:3379E7:665E33B8 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4944 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 56 X-Xss-Protection: 0 [{"id":1470670141,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDE0NzA2NzAxNDE=","url":"https://api.github.com/repos/robpike/ivy/issues/events/1470670141","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"5a2065c4984e4e4accfdb4868e132f0e273cc298","commit_url":"https://api.github.com/repos/robpike/ivy/commits/5a2065c4984e4e4accfdb4868e132f0e273cc298","created_at":"2018-02-13T00:31:50Z","performed_via_github_app":null},{"id":1470768017,"node_id":"MDExOkNsb3NlZEV2ZW50MTQ3MDc2ODAxNw==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1470768017","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2018-02-13T02:06:14Z","state_reason":null,"performed_via_github_app":null}]233 3705 GET https://api.github.com/repos/robpike/ivy/issues/42/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:56 GMT Etag: W/"2f3a15cbfcb6af2836a731ed4bbe2e8cf0efa6937d6753a781d39dbb11df62c3" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1ED334:337A9A:665E33B8 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4943 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 57 X-Xss-Protection: 0 [{"id":1529355173,"node_id":"MDExOkNsb3NlZEV2ZW50MTUyOTM1NTE3Mw==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1529355173","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2018-03-19T19:38:33Z","state_reason":null,"performed_via_github_app":null},{"id":1529996169,"node_id":"MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQxNTI5OTk2MTY5","url":"https://api.github.com/repos/robpike/ivy/issues/events/1529996169","actor":{"login":"BDMorrell","id":9202807,"node_id":"MDQ6VXNlcjkyMDI4MDc=","avatar_url":"https://avatars.githubusercontent.com/u/9202807?v=4","gravatar_id":"","url":"https://api.github.com/users/BDMorrell","html_url":"https://github.com/BDMorrell","followers_url":"https://api.github.com/users/BDMorrell/followers","following_url":"https://api.github.com/users/BDMorrell/following{/other_user}","gists_url":"https://api.github.com/users/BDMorrell/gists{/gist_id}","starred_url":"https://api.github.com/users/BDMorrell/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/BDMorrell/subscriptions","organizations_url":"https://api.github.com/users/BDMorrell/orgs","repos_url":"https://api.github.com/users/BDMorrell/repos","events_url":"https://api.github.com/users/BDMorrell/events{/privacy}","received_events_url":"https://api.github.com/users/BDMorrell/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2018-03-20T03:20:02Z","performed_via_github_app":null}]233 13396 GET https://api.github.com/repos/robpike/ivy/issues/43/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:56 GMT Etag: W/"f27a09ff5e5dc23ed45386389745f481e7bd42c8fe7f935c6bc1a8e10188e75c" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1ED395:337B57:665E33B8 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4942 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 58 X-Xss-Protection: 0 [{"id":1527700977,"node_id":"MDE0Ok1lbnRpb25lZEV2ZW50MTUyNzcwMDk3Nw==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1527700977","actor":{"login":"BDMorrell","id":9202807,"node_id":"MDQ6VXNlcjkyMDI4MDc=","avatar_url":"https://avatars.githubusercontent.com/u/9202807?v=4","gravatar_id":"","url":"https://api.github.com/users/BDMorrell","html_url":"https://github.com/BDMorrell","followers_url":"https://api.github.com/users/BDMorrell/followers","following_url":"https://api.github.com/users/BDMorrell/following{/other_user}","gists_url":"https://api.github.com/users/BDMorrell/gists{/gist_id}","starred_url":"https://api.github.com/users/BDMorrell/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/BDMorrell/subscriptions","organizations_url":"https://api.github.com/users/BDMorrell/orgs","repos_url":"https://api.github.com/users/BDMorrell/repos","events_url":"https://api.github.com/users/BDMorrell/events{/privacy}","received_events_url":"https://api.github.com/users/BDMorrell/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2018-03-19T04:57:54Z","performed_via_github_app":null},{"id":1527700978,"node_id":"MDE1OlN1YnNjcmliZWRFdmVudDE1Mjc3MDA5Nzg=","url":"https://api.github.com/repos/robpike/ivy/issues/events/1527700978","actor":{"login":"BDMorrell","id":9202807,"node_id":"MDQ6VXNlcjkyMDI4MDc=","avatar_url":"https://avatars.githubusercontent.com/u/9202807?v=4","gravatar_id":"","url":"https://api.github.com/users/BDMorrell","html_url":"https://github.com/BDMorrell","followers_url":"https://api.github.com/users/BDMorrell/followers","following_url":"https://api.github.com/users/BDMorrell/following{/other_user}","gists_url":"https://api.github.com/users/BDMorrell/gists{/gist_id}","starred_url":"https://api.github.com/users/BDMorrell/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/BDMorrell/subscriptions","organizations_url":"https://api.github.com/users/BDMorrell/orgs","repos_url":"https://api.github.com/users/BDMorrell/repos","events_url":"https://api.github.com/users/BDMorrell/events{/privacy}","received_events_url":"https://api.github.com/users/BDMorrell/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2018-03-19T04:57:54Z","performed_via_github_app":null},{"id":1527700979,"node_id":"MDE0Ok1lbnRpb25lZEV2ZW50MTUyNzcwMDk3OQ==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1527700979","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2018-03-19T04:57:54Z","performed_via_github_app":null},{"id":1527700980,"node_id":"MDE1OlN1YnNjcmliZWRFdmVudDE1Mjc3MDA5ODA=","url":"https://api.github.com/repos/robpike/ivy/issues/events/1527700980","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2018-03-19T04:57:54Z","performed_via_github_app":null},{"id":1527711276,"node_id":"MDE0Ok1lbnRpb25lZEV2ZW50MTUyNzcxMTI3Ng==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1527711276","actor":{"login":"BDMorrell","id":9202807,"node_id":"MDQ6VXNlcjkyMDI4MDc=","avatar_url":"https://avatars.githubusercontent.com/u/9202807?v=4","gravatar_id":"","url":"https://api.github.com/users/BDMorrell","html_url":"https://github.com/BDMorrell","followers_url":"https://api.github.com/users/BDMorrell/followers","following_url":"https://api.github.com/users/BDMorrell/following{/other_user}","gists_url":"https://api.github.com/users/BDMorrell/gists{/gist_id}","starred_url":"https://api.github.com/users/BDMorrell/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/BDMorrell/subscriptions","organizations_url":"https://api.github.com/users/BDMorrell/orgs","repos_url":"https://api.github.com/users/BDMorrell/repos","events_url":"https://api.github.com/users/BDMorrell/events{/privacy}","received_events_url":"https://api.github.com/users/BDMorrell/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2018-03-19T05:12:35Z","performed_via_github_app":null},{"id":1527711277,"node_id":"MDE1OlN1YnNjcmliZWRFdmVudDE1Mjc3MTEyNzc=","url":"https://api.github.com/repos/robpike/ivy/issues/events/1527711277","actor":{"login":"BDMorrell","id":9202807,"node_id":"MDQ6VXNlcjkyMDI4MDc=","avatar_url":"https://avatars.githubusercontent.com/u/9202807?v=4","gravatar_id":"","url":"https://api.github.com/users/BDMorrell","html_url":"https://github.com/BDMorrell","followers_url":"https://api.github.com/users/BDMorrell/followers","following_url":"https://api.github.com/users/BDMorrell/following{/other_user}","gists_url":"https://api.github.com/users/BDMorrell/gists{/gist_id}","starred_url":"https://api.github.com/users/BDMorrell/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/BDMorrell/subscriptions","organizations_url":"https://api.github.com/users/BDMorrell/orgs","repos_url":"https://api.github.com/users/BDMorrell/repos","events_url":"https://api.github.com/users/BDMorrell/events{/privacy}","received_events_url":"https://api.github.com/users/BDMorrell/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2018-03-19T05:12:35Z","performed_via_github_app":null},{"id":1529356530,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDE1MjkzNTY1MzA=","url":"https://api.github.com/repos/robpike/ivy/issues/events/1529356530","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"01873a5e2fd5ba169fe3b367acda51d6ea1b0b23","commit_url":"https://api.github.com/repos/robpike/ivy/commits/01873a5e2fd5ba169fe3b367acda51d6ea1b0b23","created_at":"2018-03-19T19:39:18Z","performed_via_github_app":null},{"id":1529356532,"node_id":"MDExOk1lcmdlZEV2ZW50MTUyOTM1NjUzMg==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1529356532","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"01873a5e2fd5ba169fe3b367acda51d6ea1b0b23","commit_url":"https://api.github.com/repos/robpike/ivy/commits/01873a5e2fd5ba169fe3b367acda51d6ea1b0b23","created_at":"2018-03-19T19:39:19Z","performed_via_github_app":null},{"id":1529356537,"node_id":"MDExOkNsb3NlZEV2ZW50MTUyOTM1NjUzNw==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1529356537","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2018-03-19T19:39:19Z","state_reason":null,"performed_via_github_app":null},{"id":1529443270,"node_id":"MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQxNTI5NDQzMjcw","url":"https://api.github.com/repos/robpike/ivy/issues/events/1529443270","actor":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2018-03-19T20:21:12Z","performed_via_github_app":null}]233 2500 GET https://api.github.com/repos/robpike/ivy/issues/44/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:56 GMT Etag: W/"55d8271197403bb7cc9d597e5886fb7df87c1ac12bc79fec24a51630fa0ba5cf" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1ED41B:337C09:665E33B8 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4941 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 59 X-Xss-Protection: 0 [{"id":1530760713,"node_id":"MDExOkNsb3NlZEV2ZW50MTUzMDc2MDcxMw==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1530760713","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2018-03-20T12:20:20Z","state_reason":null,"performed_via_github_app":null}]233 5084 GET https://api.github.com/repos/robpike/ivy/issues/45/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:56 GMT Etag: W/"5d1aa790e01e1be73e067f63ad5972546e0ca81e7df2fc40582dacfebfdbc6b1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1ED4B5:337D31:665E33B8 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4940 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 60 X-Xss-Protection: 0 [{"id":1539959042,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDE1Mzk5NTkwNDI=","url":"https://api.github.com/repos/robpike/ivy/issues/events/1539959042","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"4e43aca8228465930390ae8e2eb64388e9041e6a","commit_url":"https://api.github.com/repos/robpike/ivy/commits/4e43aca8228465930390ae8e2eb64388e9041e6a","created_at":"2018-03-26T03:30:38Z","performed_via_github_app":null},{"id":1539959044,"node_id":"MDExOk1lcmdlZEV2ZW50MTUzOTk1OTA0NA==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1539959044","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"4e43aca8228465930390ae8e2eb64388e9041e6a","commit_url":"https://api.github.com/repos/robpike/ivy/commits/4e43aca8228465930390ae8e2eb64388e9041e6a","created_at":"2018-03-26T03:30:38Z","performed_via_github_app":null},{"id":1539959046,"node_id":"MDExOkNsb3NlZEV2ZW50MTUzOTk1OTA0Ng==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1539959046","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2018-03-26T03:30:38Z","state_reason":null,"performed_via_github_app":null}]233 5084 GET https://api.github.com/repos/robpike/ivy/issues/46/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:57 GMT Etag: W/"b46bcbbc47681b5d30b3e9dac7ef5bd70509a89508f443651f6fe867593345d7" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1ED53C:337DF9:665E33B8 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4939 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 61 X-Xss-Protection: 0 [{"id":1539960812,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDE1Mzk5NjA4MTI=","url":"https://api.github.com/repos/robpike/ivy/issues/events/1539960812","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"3dd8a2d16657ecd795e7c661154e46ef19e439a6","commit_url":"https://api.github.com/repos/robpike/ivy/commits/3dd8a2d16657ecd795e7c661154e46ef19e439a6","created_at":"2018-03-26T03:33:04Z","performed_via_github_app":null},{"id":1539960814,"node_id":"MDExOk1lcmdlZEV2ZW50MTUzOTk2MDgxNA==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1539960814","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"3dd8a2d16657ecd795e7c661154e46ef19e439a6","commit_url":"https://api.github.com/repos/robpike/ivy/commits/3dd8a2d16657ecd795e7c661154e46ef19e439a6","created_at":"2018-03-26T03:33:04Z","performed_via_github_app":null},{"id":1539960815,"node_id":"MDExOkNsb3NlZEV2ZW50MTUzOTk2MDgxNQ==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1539960815","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2018-03-26T03:33:04Z","state_reason":null,"performed_via_github_app":null}]233 2620 GET https://api.github.com/repos/robpike/ivy/issues/47/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:57 GMT Etag: W/"90f5e63a3078be36923a474ce1701aaed6a4f045b526e2f440b23ee49557b091" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1ED5B3:337EAB:665E33B9 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4938 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 62 X-Xss-Protection: 0 [{"id":9891913704,"node_id":"CE_lADOAZPgIc4SYk-czwAAAAJNmp_o","url":"https://api.github.com/repos/robpike/ivy/issues/events/9891913704","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"8c87d5cf6cd0098df65522253d23ff3cd960ea68","commit_url":"https://api.github.com/repos/robpike/ivy/commits/8c87d5cf6cd0098df65522253d23ff3cd960ea68","created_at":"2023-07-23T00:45:28Z","state_reason":null,"performed_via_github_app":null}]233 3689 GET https://api.github.com/repos/robpike/ivy/issues/48/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:57 GMT Etag: W/"9f9ba8beb41870a3c02bce0f5c7d67522777722e103b67feea42a547add7879d" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1ED638:337FA0:665E33B9 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4937 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 63 X-Xss-Protection: 0 [{"id":1563020255,"node_id":"MDExOkNsb3NlZEV2ZW50MTU2MzAyMDI1NQ==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1563020255","actor":{"login":"dsymonds","id":31506,"node_id":"MDQ6VXNlcjMxNTA2","avatar_url":"https://avatars.githubusercontent.com/u/31506?v=4","gravatar_id":"","url":"https://api.github.com/users/dsymonds","html_url":"https://github.com/dsymonds","followers_url":"https://api.github.com/users/dsymonds/followers","following_url":"https://api.github.com/users/dsymonds/following{/other_user}","gists_url":"https://api.github.com/users/dsymonds/gists{/gist_id}","starred_url":"https://api.github.com/users/dsymonds/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dsymonds/subscriptions","organizations_url":"https://api.github.com/users/dsymonds/orgs","repos_url":"https://api.github.com/users/dsymonds/repos","events_url":"https://api.github.com/users/dsymonds/events{/privacy}","received_events_url":"https://api.github.com/users/dsymonds/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2018-04-09T04:58:59Z","state_reason":null,"performed_via_github_app":null},{"id":1563020334,"node_id":"MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQxNTYzMDIwMzM0","url":"https://api.github.com/repos/robpike/ivy/issues/events/1563020334","actor":{"login":"dsymonds","id":31506,"node_id":"MDQ6VXNlcjMxNTA2","avatar_url":"https://avatars.githubusercontent.com/u/31506?v=4","gravatar_id":"","url":"https://api.github.com/users/dsymonds","html_url":"https://github.com/dsymonds","followers_url":"https://api.github.com/users/dsymonds/followers","following_url":"https://api.github.com/users/dsymonds/following{/other_user}","gists_url":"https://api.github.com/users/dsymonds/gists{/gist_id}","starred_url":"https://api.github.com/users/dsymonds/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dsymonds/subscriptions","organizations_url":"https://api.github.com/users/dsymonds/orgs","repos_url":"https://api.github.com/users/dsymonds/repos","events_url":"https://api.github.com/users/dsymonds/events{/privacy}","received_events_url":"https://api.github.com/users/dsymonds/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2018-04-09T04:59:07Z","performed_via_github_app":null}]233 3685 GET https://api.github.com/repos/robpike/ivy/issues/49/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:57 GMT Etag: W/"f0e29e10e619dc055a2f5e4d85b39326a801ce3461181515bd3675e07b1c4311" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1ED694:33805B:665E33B9 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4936 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 64 X-Xss-Protection: 0 [{"id":1565069430,"node_id":"MDExOkNsb3NlZEV2ZW50MTU2NTA2OTQzMA==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1565069430","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2018-04-10T00:39:41Z","state_reason":null,"performed_via_github_app":null},{"id":1565070820,"node_id":"MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQxNTY1MDcwODIw","url":"https://api.github.com/repos/robpike/ivy/issues/events/1565070820","actor":{"login":"dsymonds","id":31506,"node_id":"MDQ6VXNlcjMxNTA2","avatar_url":"https://avatars.githubusercontent.com/u/31506?v=4","gravatar_id":"","url":"https://api.github.com/users/dsymonds","html_url":"https://github.com/dsymonds","followers_url":"https://api.github.com/users/dsymonds/followers","following_url":"https://api.github.com/users/dsymonds/following{/other_user}","gists_url":"https://api.github.com/users/dsymonds/gists{/gist_id}","starred_url":"https://api.github.com/users/dsymonds/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dsymonds/subscriptions","organizations_url":"https://api.github.com/users/dsymonds/orgs","repos_url":"https://api.github.com/users/dsymonds/repos","events_url":"https://api.github.com/users/dsymonds/events{/privacy}","received_events_url":"https://api.github.com/users/dsymonds/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2018-04-10T00:41:09Z","performed_via_github_app":null}]233 2500 GET https://api.github.com/repos/robpike/ivy/issues/50/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:57 GMT Etag: W/"278c4ca22ac07390f2da5217250b358683dd0cfdbebe6823b289be45ac9212b6" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1ED716:33811E:665E33B9 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4935 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 65 X-Xss-Protection: 0 [{"id":1565203137,"node_id":"MDExOkNsb3NlZEV2ZW50MTU2NTIwMzEzNw==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1565203137","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2018-04-10T03:07:48Z","state_reason":null,"performed_via_github_app":null}]233 5084 GET https://api.github.com/repos/robpike/ivy/issues/51/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:57 GMT Etag: W/"a4ef73135d048fa9baab508a5f807b2e6d649c0a59288ae5ececaac5e3735eb2" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1ED797:3381FC:665E33B9 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4934 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 66 X-Xss-Protection: 0 [{"id":1565107204,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDE1NjUxMDcyMDQ=","url":"https://api.github.com/repos/robpike/ivy/issues/events/1565107204","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"c2e4119b32adbb22b0aa1e103f89d70206cd6d44","commit_url":"https://api.github.com/repos/robpike/ivy/commits/c2e4119b32adbb22b0aa1e103f89d70206cd6d44","created_at":"2018-04-10T01:21:29Z","performed_via_github_app":null},{"id":1565107205,"node_id":"MDExOk1lcmdlZEV2ZW50MTU2NTEwNzIwNQ==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1565107205","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"c2e4119b32adbb22b0aa1e103f89d70206cd6d44","commit_url":"https://api.github.com/repos/robpike/ivy/commits/c2e4119b32adbb22b0aa1e103f89d70206cd6d44","created_at":"2018-04-10T01:21:29Z","performed_via_github_app":null},{"id":1565107206,"node_id":"MDExOkNsb3NlZEV2ZW50MTU2NTEwNzIwNg==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1565107206","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2018-04-10T01:21:29Z","state_reason":null,"performed_via_github_app":null}]233 2500 GET https://api.github.com/repos/robpike/ivy/issues/52/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:57 GMT Etag: W/"665cdb3751a5ab0841e9570565c5c2ffa0185642094a31a13fdd452ec6c54907" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1ED808:33829D:665E33B9 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4933 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 67 X-Xss-Protection: 0 [{"id":1565377408,"node_id":"MDExOkNsb3NlZEV2ZW50MTU2NTM3NzQwOA==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1565377408","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2018-04-10T06:22:22Z","state_reason":null,"performed_via_github_app":null}]233 5084 GET https://api.github.com/repos/robpike/ivy/issues/53/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:57 GMT Etag: W/"47989d8501820aecb64c4ccd77c687904fd02ee9bce06ccff64f7a23b82162b2" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1ED871:338354:665E33B9 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4932 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 68 X-Xss-Protection: 0 [{"id":1565378564,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDE1NjUzNzg1NjQ=","url":"https://api.github.com/repos/robpike/ivy/issues/events/1565378564","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"a391d40681171f7569c259251115d49ba385a28d","commit_url":"https://api.github.com/repos/robpike/ivy/commits/a391d40681171f7569c259251115d49ba385a28d","created_at":"2018-04-10T06:23:23Z","performed_via_github_app":null},{"id":1565378566,"node_id":"MDExOk1lcmdlZEV2ZW50MTU2NTM3ODU2Ng==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1565378566","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"a391d40681171f7569c259251115d49ba385a28d","commit_url":"https://api.github.com/repos/robpike/ivy/commits/a391d40681171f7569c259251115d49ba385a28d","created_at":"2018-04-10T06:23:23Z","performed_via_github_app":null},{"id":1565378570,"node_id":"MDExOkNsb3NlZEV2ZW50MTU2NTM3ODU3MA==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1565378570","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2018-04-10T06:23:23Z","state_reason":null,"performed_via_github_app":null}]233 2500 GET https://api.github.com/repos/robpike/ivy/issues/54/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:57 GMT Etag: W/"d1bef5645f09b2f0b59bcb240f40f76410635129f0e0b7c4eb93505cb86f21fe" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1ED8E1:338414:665E33B9 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4931 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 69 X-Xss-Protection: 0 [{"id":2921526471,"node_id":"MDExOkNsb3NlZEV2ZW50MjkyMTUyNjQ3MQ==","url":"https://api.github.com/repos/robpike/ivy/issues/events/2921526471","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2020-01-04T00:21:21Z","state_reason":null,"performed_via_github_app":null}]233 4853 GET https://api.github.com/repos/robpike/ivy/issues/55/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:58 GMT Etag: W/"6512eb9b58894493d955ca4795f235e80422be8f6d9602bb1e8a509bfda8680f" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1ED925:338497:665E33B9 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4930 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 70 X-Xss-Protection: 0 [{"id":1846545185,"node_id":"MDE0Ok1lbnRpb25lZEV2ZW50MTg0NjU0NTE4NQ==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1846545185","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2018-09-14T16:34:45Z","performed_via_github_app":null},{"id":1846545187,"node_id":"MDE1OlN1YnNjcmliZWRFdmVudDE4NDY1NDUxODc=","url":"https://api.github.com/repos/robpike/ivy/issues/events/1846545187","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2018-09-14T16:34:45Z","performed_via_github_app":null},{"id":1888767742,"node_id":"MDExOkNsb3NlZEV2ZW50MTg4ODc2Nzc0Mg==","url":"https://api.github.com/repos/robpike/ivy/issues/events/1888767742","actor":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2018-10-06T22:12:40Z","state_reason":null,"performed_via_github_app":null}]233 3796 GET https://api.github.com/repos/robpike/ivy/issues/58/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:58 GMT Etag: W/"cd1c92c0c4a8e75e9a6ba7ec08b692cb92863adc57d2179c57d7936cc63a5ba2" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1ED997:338544:665E33BA X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4929 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 71 X-Xss-Protection: 0 [{"id":2098375014,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDIwOTgzNzUwMTQ=","url":"https://api.github.com/repos/robpike/ivy/issues/events/2098375014","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"8fb34068e9d63582a603aa639ea79d6ff09e06c5","commit_url":"https://api.github.com/repos/robpike/ivy/commits/8fb34068e9d63582a603aa639ea79d6ff09e06c5","created_at":"2019-01-25T22:01:19Z","performed_via_github_app":null},{"id":2098375559,"node_id":"MDExOkNsb3NlZEV2ZW50MjA5ODM3NTU1OQ==","url":"https://api.github.com/repos/robpike/ivy/issues/events/2098375559","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2019-01-25T22:01:38Z","state_reason":null,"performed_via_github_app":null}]233 5084 GET https://api.github.com/repos/robpike/ivy/issues/59/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:58 GMT Etag: W/"d8abbcbff100ff306a62ff7664dd75757ae92d4887d68e238f6e58102a89adcc" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EDA09:338600:665E33BA X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4928 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 72 X-Xss-Protection: 0 [{"id":2855313775,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDI4NTUzMTM3NzU=","url":"https://api.github.com/repos/robpike/ivy/issues/events/2855313775","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"5feaa23cbcf3e302756e831a3ad0b6d184513bf0","commit_url":"https://api.github.com/repos/robpike/ivy/commits/5feaa23cbcf3e302756e831a3ad0b6d184513bf0","created_at":"2019-12-04T19:52:42Z","performed_via_github_app":null},{"id":2855313776,"node_id":"MDExOk1lcmdlZEV2ZW50Mjg1NTMxMzc3Ng==","url":"https://api.github.com/repos/robpike/ivy/issues/events/2855313776","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"5feaa23cbcf3e302756e831a3ad0b6d184513bf0","commit_url":"https://api.github.com/repos/robpike/ivy/commits/5feaa23cbcf3e302756e831a3ad0b6d184513bf0","created_at":"2019-12-04T19:52:42Z","performed_via_github_app":null},{"id":2855313780,"node_id":"MDExOkNsb3NlZEV2ZW50Mjg1NTMxMzc4MA==","url":"https://api.github.com/repos/robpike/ivy/issues/events/2855313780","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2019-12-04T19:52:43Z","state_reason":null,"performed_via_github_app":null}]233 6386 GET https://api.github.com/repos/robpike/ivy/issues/60/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:58 GMT Etag: W/"a95cae798758b71d8da9f76baecff4416bba274eff5f25e786f266afc6cd9547" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EDA86:3386AC:665E33BA X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4927 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 73 X-Xss-Protection: 0 [{"id":3085162747,"node_id":"MDE1OlJlZmVyZW5jZWRFdmVudDMwODUxNjI3NDc=","url":"https://api.github.com/repos/robpike/ivy/issues/events/3085162747","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"71f0b0528111e88555043448d31761f5a64ed27d","commit_url":"https://api.github.com/repos/robpike/ivy/commits/71f0b0528111e88555043448d31761f5a64ed27d","created_at":"2020-03-01T00:43:25Z","performed_via_github_app":null},{"id":5775334580,"node_id":"REFE_lADOAZPgIc4iKl5JzwAAAAFYPJy0","url":"https://api.github.com/repos/robpike/ivy/issues/events/5775334580","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"e2d9c8ff011ff24a223836c5a23d772649466247","commit_url":"https://api.github.com/repos/rsc/ivy/commits/e2d9c8ff011ff24a223836c5a23d772649466247","created_at":"2021-12-16T01:47:28Z","performed_via_github_app":null},{"id":5775358359,"node_id":"REFE_lADOAZPgIc4iKl5JzwAAAAFYPPmX","url":"https://api.github.com/repos/robpike/ivy/issues/events/5775358359","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"5fdbfba4cf34f4f9137f3a6a6f755282d5b760c3","commit_url":"https://api.github.com/repos/rsc/ivy/commits/5fdbfba4cf34f4f9137f3a6a6f755282d5b760c3","created_at":"2021-12-16T01:55:15Z","performed_via_github_app":null},{"id":5781449116,"node_id":"CE_lADOAZPgIc4iKl5JzwAAAAFYmemc","url":"https://api.github.com/repos/robpike/ivy/issues/events/5781449116","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"5fdbfba4cf34f4f9137f3a6a6f755282d5b760c3","commit_url":"https://api.github.com/repos/robpike/ivy/commits/5fdbfba4cf34f4f9137f3a6a6f755282d5b760c3","created_at":"2021-12-16T22:56:25Z","state_reason":null,"performed_via_github_app":null}]233 2500 GET https://api.github.com/repos/robpike/ivy/issues/61/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:58 GMT Etag: W/"4e07772de5e6f6de02775a86a9882574e91ce61cdfce87c9c02124bb6b559c9b" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EDAF7:33879E:665E33BA X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4926 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 74 X-Xss-Protection: 0 [{"id":4980166485,"node_id":"MDExOkNsb3NlZEV2ZW50NDk4MDE2NjQ4NQ==","url":"https://api.github.com/repos/robpike/ivy/issues/events/4980166485","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2021-07-05T21:42:10Z","state_reason":null,"performed_via_github_app":null}]233 2488 GET https://api.github.com/repos/robpike/ivy/issues/62/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:58 GMT Etag: W/"b4f8b4b9cc53300123011518d350d23fbc2e35d64c16ff220f320e4cc54607d5" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EDB59:338849:665E33BA X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4925 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 75 X-Xss-Protection: 0 [{"id":3489952111,"node_id":"MDExOkNsb3NlZEV2ZW50MzQ4OTk1MjExMQ==","url":"https://api.github.com/repos/robpike/ivy/issues/events/3489952111","actor":{"login":"yuanhh","id":1298735,"node_id":"MDQ6VXNlcjEyOTg3MzU=","avatar_url":"https://avatars.githubusercontent.com/u/1298735?v=4","gravatar_id":"","url":"https://api.github.com/users/yuanhh","html_url":"https://github.com/yuanhh","followers_url":"https://api.github.com/users/yuanhh/followers","following_url":"https://api.github.com/users/yuanhh/following{/other_user}","gists_url":"https://api.github.com/users/yuanhh/gists{/gist_id}","starred_url":"https://api.github.com/users/yuanhh/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yuanhh/subscriptions","organizations_url":"https://api.github.com/users/yuanhh/orgs","repos_url":"https://api.github.com/users/yuanhh/repos","events_url":"https://api.github.com/users/yuanhh/events{/privacy}","received_events_url":"https://api.github.com/users/yuanhh/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2020-06-28T06:46:27Z","state_reason":null,"performed_via_github_app":null}]233 2500 GET https://api.github.com/repos/robpike/ivy/issues/63/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:58 GMT Etag: W/"546fee589235feb0c31657c8f495758909cbda269a4e674f899f4b0b0a86dd12" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EDBDD:338916:665E33BA X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4924 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 76 X-Xss-Protection: 0 [{"id":3465946720,"node_id":"MDExOkNsb3NlZEV2ZW50MzQ2NTk0NjcyMA==","url":"https://api.github.com/repos/robpike/ivy/issues/events/3465946720","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2020-06-21T23:33:42Z","state_reason":null,"performed_via_github_app":null}]233 2500 GET https://api.github.com/repos/robpike/ivy/issues/64/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:59 GMT Etag: W/"92438964e50232302e8dc6d207872f007e3095b1ec78ef993b5925d13e503bd5" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EDC39:33899E:665E33BA X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4923 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 77 X-Xss-Protection: 0 [{"id":4647925521,"node_id":"MDExOkNsb3NlZEV2ZW50NDY0NzkyNTUyMQ==","url":"https://api.github.com/repos/robpike/ivy/issues/events/4647925521","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2021-04-27T00:15:46Z","state_reason":null,"performed_via_github_app":null}]233 2625 GET https://api.github.com/repos/robpike/ivy/issues/65/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:59 GMT Etag: W/"e5d30a8b62a6bcf85c171b567c22ce28f16d8ac7fe512b8512ea0b53e38f6b42" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EDC8A:338A28:665E33BB X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4922 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 78 X-Xss-Protection: 0 [{"id":4986893942,"node_id":"MDExOkNsb3NlZEV2ZW50NDk4Njg5Mzk0Mg==","url":"https://api.github.com/repos/robpike/ivy/issues/events/4986893942","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"c38c34e9eb24ab33e88f1a92ff5d825b32296e6b","commit_url":"https://api.github.com/repos/robpike/ivy/commits/c38c34e9eb24ab33e88f1a92ff5d825b32296e6b","created_at":"2021-07-07T05:44:40Z","state_reason":null,"performed_via_github_app":null}]233 4993 GET https://api.github.com/repos/robpike/ivy/issues/66/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:59 GMT Etag: W/"454889084eafb356e1f8dcbc6feaa8c0d2c8ddeab6fa38c7655627fc86db4149" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EDCF0:338AD8:665E33BB X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4921 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 79 X-Xss-Protection: 0 [{"id":4965144859,"node_id":"MDExOkNsb3NlZEV2ZW50NDk2NTE0NDg1OQ==","url":"https://api.github.com/repos/robpike/ivy/issues/events/4965144859","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"e6ab27d38bc090115eb359e24b9f399c56c850e6","commit_url":"https://api.github.com/repos/robpike/ivy/commits/e6ab27d38bc090115eb359e24b9f399c56c850e6","created_at":"2021-07-01T10:46:44Z","state_reason":null,"performed_via_github_app":null},{"id":4968113021,"node_id":"MDEzOlJlb3BlbmVkRXZlbnQ0OTY4MTEzMDIx","url":"https://api.github.com/repos/robpike/ivy/issues/events/4968113021","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"reopened","commit_id":null,"commit_url":null,"created_at":"2021-07-01T20:37:07Z","state_reason":null,"performed_via_github_app":null},{"id":4968135786,"node_id":"MDExOkNsb3NlZEV2ZW50NDk2ODEzNTc4Ng==","url":"https://api.github.com/repos/robpike/ivy/issues/events/4968135786","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2021-07-01T20:43:36Z","state_reason":null,"performed_via_github_app":null}]233 5067 GET https://api.github.com/repos/robpike/ivy/issues/67/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:59 GMT Etag: W/"5bf3e1aaf462b8c7a785cb8c18567263fccaa948248aab3a96d72b10053d9d39" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EDD5B:338B91:665E33BB X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4920 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 80 X-Xss-Protection: 0 [{"id":5716029248,"node_id":"REFE_lADOAZPgIc4_2ieRzwAAAAFUs69A","url":"https://api.github.com/repos/robpike/ivy/issues/events/5716029248","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"877381dc742abfdfaba0cb0e388bb4227af020f8","commit_url":"https://api.github.com/repos/robpike/ivy/commits/877381dc742abfdfaba0cb0e388bb4227af020f8","created_at":"2021-12-04T20:30:37Z","performed_via_github_app":null},{"id":5716029249,"node_id":"ME_lADOAZPgIc4_2ieRzwAAAAFUs69B","url":"https://api.github.com/repos/robpike/ivy/issues/events/5716029249","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"877381dc742abfdfaba0cb0e388bb4227af020f8","commit_url":"https://api.github.com/repos/robpike/ivy/commits/877381dc742abfdfaba0cb0e388bb4227af020f8","created_at":"2021-12-04T20:30:37Z","performed_via_github_app":null},{"id":5716029251,"node_id":"CE_lADOAZPgIc4_2ieRzwAAAAFUs69D","url":"https://api.github.com/repos/robpike/ivy/issues/events/5716029251","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2021-12-04T20:30:37Z","state_reason":null,"performed_via_github_app":null}]233 6193 GET https://api.github.com/repos/robpike/ivy/issues/68/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:59 GMT Etag: W/"f10512c1c0193eab617202e7c662bfb9398cb95ad9f716e54523ba4fc668c4fe" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EDDCA:338C68:665E33BB X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4919 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 81 X-Xss-Protection: 0 [{"id":5724732296,"node_id":"HRFPE_lADOAZPgIc4_63ptzwAAAAFVOHuI","url":"https://api.github.com/repos/robpike/ivy/issues/events/5724732296","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2021-12-07T03:48:01Z","performed_via_github_app":null},{"id":5725983408,"node_id":"REFE_lADOAZPgIc4_63ptzwAAAAFVS5Kw","url":"https://api.github.com/repos/robpike/ivy/issues/events/5725983408","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"90d0e18213cab25802154244da63475fc8289aee","commit_url":"https://api.github.com/repos/robpike/ivy/commits/90d0e18213cab25802154244da63475fc8289aee","created_at":"2021-12-07T09:10:34Z","performed_via_github_app":null},{"id":5725983415,"node_id":"ME_lADOAZPgIc4_63ptzwAAAAFVS5K3","url":"https://api.github.com/repos/robpike/ivy/issues/events/5725983415","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"90d0e18213cab25802154244da63475fc8289aee","commit_url":"https://api.github.com/repos/robpike/ivy/commits/90d0e18213cab25802154244da63475fc8289aee","created_at":"2021-12-07T09:10:34Z","performed_via_github_app":null},{"id":5725983428,"node_id":"CE_lADOAZPgIc4_63ptzwAAAAFVS5LE","url":"https://api.github.com/repos/robpike/ivy/issues/events/5725983428","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2021-12-07T09:10:34Z","state_reason":null,"performed_via_github_app":null}]233 5769 GET https://api.github.com/repos/robpike/ivy/issues/69/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:59 GMT Etag: W/"52adf8bee0aa5e3a092c0c80e7d1a0a5d8bd28d97ec30879ba3edb1ab41c1021" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EDEB2:338DC2:665E33BB X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4918 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 82 X-Xss-Protection: 0 [{"id":5732501348,"node_id":"MEE_lADOAZPgIc4_-Z7RzwAAAAFVrwdk","url":"https://api.github.com/repos/robpike/ivy/issues/events/5732501348","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2021-12-08T09:19:13Z","performed_via_github_app":null},{"id":5732501358,"node_id":"SE_lADOAZPgIc4_-Z7RzwAAAAFVrwdu","url":"https://api.github.com/repos/robpike/ivy/issues/events/5732501358","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2021-12-08T09:19:13Z","performed_via_github_app":null},{"id":10062083237,"node_id":"MEE_lADOAZPgIc4_-Z7RzwAAAAJXvzSl","url":"https://api.github.com/repos/robpike/ivy/issues/events/10062083237","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2023-08-10T17:28:55Z","performed_via_github_app":null},{"id":10062083241,"node_id":"SE_lADOAZPgIc4_-Z7RzwAAAAJXvzSp","url":"https://api.github.com/repos/robpike/ivy/issues/events/10062083241","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2023-08-10T17:28:55Z","performed_via_github_app":null}]233 2620 GET https://api.github.com/repos/robpike/ivy/issues/70/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:59 GMT Etag: W/"b09c78bfc8d4c3abac372bd6557a865675f35a236297f45cb6af1457bcf063ba" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EDF18:338E78:665E33BB X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4917 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 83 X-Xss-Protection: 0 [{"id":5738828949,"node_id":"CE_lADOAZPgIc5AFIMfzwAAAAFWD5SV","url":"https://api.github.com/repos/robpike/ivy/issues/events/5738828949","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"2f74c23ee6640afa62eff9e079496bbb6282fa03","commit_url":"https://api.github.com/repos/robpike/ivy/commits/2f74c23ee6640afa62eff9e079496bbb6282fa03","created_at":"2021-12-09T07:32:15Z","state_reason":null,"performed_via_github_app":null}]233 3843 GET https://api.github.com/repos/robpike/ivy/issues/71/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:20:59 GMT Etag: W/"5da76113a70d1fcb488f733e3884d772ba1ec041d88a8068df4cba29982fd375" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EDF83:338F22:665E33BB X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4916 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 84 X-Xss-Protection: 0 [{"id":5743807713,"node_id":"RTE_lADOAZPgIc5AI3yIzwAAAAFWW4zh","url":"https://api.github.com/repos/robpike/ivy/issues/events/5743807713","actor":{"login":"arl","id":476650,"node_id":"MDQ6VXNlcjQ3NjY1MA==","avatar_url":"https://avatars.githubusercontent.com/u/476650?v=4","gravatar_id":"","url":"https://api.github.com/users/arl","html_url":"https://github.com/arl","followers_url":"https://api.github.com/users/arl/followers","following_url":"https://api.github.com/users/arl/following{/other_user}","gists_url":"https://api.github.com/users/arl/gists{/gist_id}","starred_url":"https://api.github.com/users/arl/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/arl/subscriptions","organizations_url":"https://api.github.com/users/arl/orgs","repos_url":"https://api.github.com/users/arl/repos","events_url":"https://api.github.com/users/arl/events{/privacy}","received_events_url":"https://api.github.com/users/arl/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2021-12-09T21:42:12Z","rename":{"from":"demo: crash since Config.BigOrigin is nil ","to":"demo: crash since Config.bigOrigin is nil "},"performed_via_github_app":null},{"id":5744176174,"node_id":"CE_lADOAZPgIc5AI3yIzwAAAAFWYSwu","url":"https://api.github.com/repos/robpike/ivy/issues/events/5744176174","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"eb58916b5fda3a3978bfae97fb186d591edca4f3","commit_url":"https://api.github.com/repos/robpike/ivy/commits/eb58916b5fda3a3978bfae97fb186d591edca4f3","created_at":"2021-12-09T22:48:38Z","state_reason":null,"performed_via_github_app":null}]233 5982 GET https://api.github.com/repos/robpike/ivy/issues/72/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:00 GMT Etag: W/"6d9a69b1103da898cf0417e3c79ac43416d716ac05ca192e826cc7941b1e579a" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EE020:33901C:665E33BB X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4915 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 85 X-Xss-Protection: 0 [{"id":5775358353,"node_id":"REFE_lADOAZPgIc5AO-V_zwAAAAFYPPmR","url":"https://api.github.com/repos/robpike/ivy/issues/events/5775358353","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"93ad44a2c8240e1c52bb60ce46740d3f05523ee3","commit_url":"https://api.github.com/repos/rsc/ivy/commits/93ad44a2c8240e1c52bb60ce46740d3f05523ee3","created_at":"2021-12-16T01:55:15Z","performed_via_github_app":null},{"id":5780741242,"node_id":"CE_lADOAZPgIc5AO-V_zwAAAAFYjxx6","url":"https://api.github.com/repos/robpike/ivy/issues/events/5780741242","actor":{"login":"pstuifzand","id":64524,"node_id":"MDQ6VXNlcjY0NTI0","avatar_url":"https://avatars.githubusercontent.com/u/64524?v=4","gravatar_id":"","url":"https://api.github.com/users/pstuifzand","html_url":"https://github.com/pstuifzand","followers_url":"https://api.github.com/users/pstuifzand/followers","following_url":"https://api.github.com/users/pstuifzand/following{/other_user}","gists_url":"https://api.github.com/users/pstuifzand/gists{/gist_id}","starred_url":"https://api.github.com/users/pstuifzand/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pstuifzand/subscriptions","organizations_url":"https://api.github.com/users/pstuifzand/orgs","repos_url":"https://api.github.com/users/pstuifzand/repos","events_url":"https://api.github.com/users/pstuifzand/events{/privacy}","received_events_url":"https://api.github.com/users/pstuifzand/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2021-12-16T20:07:44Z","state_reason":null,"performed_via_github_app":null},{"id":5780746074,"node_id":"MEE_lADOAZPgIc5AO-V_zwAAAAFYjy9a","url":"https://api.github.com/repos/robpike/ivy/issues/events/5780746074","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2021-12-16T20:08:44Z","performed_via_github_app":null},{"id":5780746078,"node_id":"SE_lADOAZPgIc5AO-V_zwAAAAFYjy9e","url":"https://api.github.com/repos/robpike/ivy/issues/events/5780746078","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2021-12-16T20:08:44Z","performed_via_github_app":null}]233 2620 GET https://api.github.com/repos/robpike/ivy/issues/73/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:00 GMT Etag: W/"5a46ad22a1bf32e3ff70da238da8512e27bcb735af1b0ef051f03668759f6a7c" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EE0A3:3390F4:665E33BC X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4914 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 86 X-Xss-Protection: 0 [{"id":5760657671,"node_id":"CE_lADOAZPgIc5ATZyRzwAAAAFXXKkH","url":"https://api.github.com/repos/robpike/ivy/issues/events/5760657671","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"e855a3cd2274e6781dc570c2f0efab5039044d41","commit_url":"https://api.github.com/repos/robpike/ivy/commits/e855a3cd2274e6781dc570c2f0efab5039044d41","created_at":"2021-12-14T00:30:06Z","state_reason":null,"performed_via_github_app":null}]233 12514 GET https://api.github.com/repos/robpike/ivy/issues/74/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:00 GMT Etag: W/"980453ff5ee96d2ac363560871067d84293c74a1512c2a999a18f1c1ab715f2b" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EE12A:3391E0:665E33BC X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4913 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 87 X-Xss-Protection: 0 [{"id":5807434029,"node_id":"MEE_lADOAZPgIc5Ad26VzwAAAAFaJmkt","url":"https://api.github.com/repos/robpike/ivy/issues/events/5807434029","actor":{"login":"glxxyz","id":12117022,"node_id":"MDQ6VXNlcjEyMTE3MDIy","avatar_url":"https://avatars.githubusercontent.com/u/12117022?v=4","gravatar_id":"","url":"https://api.github.com/users/glxxyz","html_url":"https://github.com/glxxyz","followers_url":"https://api.github.com/users/glxxyz/followers","following_url":"https://api.github.com/users/glxxyz/following{/other_user}","gists_url":"https://api.github.com/users/glxxyz/gists{/gist_id}","starred_url":"https://api.github.com/users/glxxyz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/glxxyz/subscriptions","organizations_url":"https://api.github.com/users/glxxyz/orgs","repos_url":"https://api.github.com/users/glxxyz/repos","events_url":"https://api.github.com/users/glxxyz/events{/privacy}","received_events_url":"https://api.github.com/users/glxxyz/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2021-12-23T00:59:32Z","performed_via_github_app":null},{"id":5807434030,"node_id":"SE_lADOAZPgIc5Ad26VzwAAAAFaJmku","url":"https://api.github.com/repos/robpike/ivy/issues/events/5807434030","actor":{"login":"glxxyz","id":12117022,"node_id":"MDQ6VXNlcjEyMTE3MDIy","avatar_url":"https://avatars.githubusercontent.com/u/12117022?v=4","gravatar_id":"","url":"https://api.github.com/users/glxxyz","html_url":"https://github.com/glxxyz","followers_url":"https://api.github.com/users/glxxyz/followers","following_url":"https://api.github.com/users/glxxyz/following{/other_user}","gists_url":"https://api.github.com/users/glxxyz/gists{/gist_id}","starred_url":"https://api.github.com/users/glxxyz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/glxxyz/subscriptions","organizations_url":"https://api.github.com/users/glxxyz/orgs","repos_url":"https://api.github.com/users/glxxyz/repos","events_url":"https://api.github.com/users/glxxyz/events{/privacy}","received_events_url":"https://api.github.com/users/glxxyz/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2021-12-23T00:59:32Z","performed_via_github_app":null},{"id":5817834282,"node_id":"HRFPE_lADOAZPgIc5Ad26VzwAAAAFaxRsq","url":"https://api.github.com/repos/robpike/ivy/issues/events/5817834282","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2021-12-27T12:57:54Z","performed_via_github_app":null},{"id":5855238433,"node_id":"RRE_lADOAZPgIc5Ad26VzwAAAAFc_9kh","url":"https://api.github.com/repos/robpike/ivy/issues/events/5855238433","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"review_requested","commit_id":null,"commit_url":null,"created_at":"2022-01-07T00:18:19Z","review_requester":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"requested_reviewer":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"performed_via_github_app":null},{"id":5855318056,"node_id":"REFE_lADOAZPgIc5Ad26VzwAAAAFdARAo","url":"https://api.github.com/repos/robpike/ivy/issues/events/5855318056","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"391c13e408521350f04fa4ff027206ae9b9d0f74","commit_url":"https://api.github.com/repos/robpike/ivy/commits/391c13e408521350f04fa4ff027206ae9b9d0f74","created_at":"2022-01-07T00:40:37Z","performed_via_github_app":null},{"id":5855318061,"node_id":"ME_lADOAZPgIc5Ad26VzwAAAAFdARAt","url":"https://api.github.com/repos/robpike/ivy/issues/events/5855318061","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"391c13e408521350f04fa4ff027206ae9b9d0f74","commit_url":"https://api.github.com/repos/robpike/ivy/commits/391c13e408521350f04fa4ff027206ae9b9d0f74","created_at":"2022-01-07T00:40:37Z","performed_via_github_app":null},{"id":5855318066,"node_id":"CE_lADOAZPgIc5Ad26VzwAAAAFdARAy","url":"https://api.github.com/repos/robpike/ivy/issues/events/5855318066","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2022-01-07T00:40:37Z","state_reason":null,"performed_via_github_app":null},{"id":5888303711,"node_id":"HRDE_lADOAZPgIc5Ad26VzwAAAAFe-GJf","url":"https://api.github.com/repos/robpike/ivy/issues/events/5888303711","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2022-01-13T15:11:52Z","performed_via_github_app":null}]233 5067 GET https://api.github.com/repos/robpike/ivy/issues/75/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:00 GMT Etag: W/"1a9015fe4ef8278f9a1026a015e37822df183bb65ea71e1eece2d6a43fae62bd" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EE1B5:3392D6:665E33BC X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4912 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 88 X-Xss-Protection: 0 [{"id":5781443137,"node_id":"REFE_lADOAZPgIc5Ad2-MzwAAAAFYmdJB","url":"https://api.github.com/repos/robpike/ivy/issues/events/5781443137","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"ce4b2c552ec7b6f3373baa5b251059e97a7c562d","commit_url":"https://api.github.com/repos/robpike/ivy/commits/ce4b2c552ec7b6f3373baa5b251059e97a7c562d","created_at":"2021-12-16T22:54:42Z","performed_via_github_app":null},{"id":5781443141,"node_id":"ME_lADOAZPgIc5Ad2-MzwAAAAFYmdJF","url":"https://api.github.com/repos/robpike/ivy/issues/events/5781443141","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"ce4b2c552ec7b6f3373baa5b251059e97a7c562d","commit_url":"https://api.github.com/repos/robpike/ivy/commits/ce4b2c552ec7b6f3373baa5b251059e97a7c562d","created_at":"2021-12-16T22:54:42Z","performed_via_github_app":null},{"id":5781443149,"node_id":"CE_lADOAZPgIc5Ad2-MzwAAAAFYmdJN","url":"https://api.github.com/repos/robpike/ivy/issues/events/5781443149","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2021-12-16T22:54:42Z","state_reason":null,"performed_via_github_app":null}]233 8439 GET https://api.github.com/repos/robpike/ivy/issues/76/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:00 GMT Etag: W/"b0e21a79e26c225bdf175c8b2cfd5d99efb7de97cdc423ce4f5953856fc7cff9" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EE24B:3393C9:665E33BC X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4911 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 89 X-Xss-Protection: 0 [{"id":5775334616,"node_id":"HRFPE_lADOAZPgIc5Ad3MizwAAAAFYPJzY","url":"https://api.github.com/repos/robpike/ivy/issues/events/5775334616","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2021-12-16T01:47:29Z","performed_via_github_app":null},{"id":5775358375,"node_id":"HRFPE_lADOAZPgIc5Ad3MizwAAAAFYPPmn","url":"https://api.github.com/repos/robpike/ivy/issues/events/5775358375","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2021-12-16T01:55:15Z","performed_via_github_app":null},{"id":5781449054,"node_id":"REFE_lADOAZPgIc5Ad3MizwAAAAFYmele","url":"https://api.github.com/repos/robpike/ivy/issues/events/5781449054","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"18d8d33551d53693c154bb5c8ae119ee0b0d9fdf","commit_url":"https://api.github.com/repos/robpike/ivy/commits/18d8d33551d53693c154bb5c8ae119ee0b0d9fdf","created_at":"2021-12-16T22:56:24Z","performed_via_github_app":null},{"id":5781449061,"node_id":"ME_lADOAZPgIc5Ad3MizwAAAAFYmell","url":"https://api.github.com/repos/robpike/ivy/issues/events/5781449061","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"18d8d33551d53693c154bb5c8ae119ee0b0d9fdf","commit_url":"https://api.github.com/repos/robpike/ivy/commits/18d8d33551d53693c154bb5c8ae119ee0b0d9fdf","created_at":"2021-12-16T22:56:24Z","performed_via_github_app":null},{"id":5781449069,"node_id":"CE_lADOAZPgIc5Ad3MizwAAAAFYmelt","url":"https://api.github.com/repos/robpike/ivy/issues/events/5781449069","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2021-12-16T22:56:24Z","state_reason":null,"performed_via_github_app":null},{"id":5888305648,"node_id":"HRDE_lADOAZPgIc5Ad3MizwAAAAFe-Gnw","url":"https://api.github.com/repos/robpike/ivy/issues/events/5888305648","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2022-01-13T15:12:10Z","performed_via_github_app":null}]233 6187 GET https://api.github.com/repos/robpike/ivy/issues/77/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:00 GMT Etag: W/"c9b0f81766263ea4ff639c81dc070d66039be5745c66e682979bd494f94e4fc2" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EE2EA:3394CF:665E33BC X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4910 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 90 X-Xss-Protection: 0 [{"id":5781438319,"node_id":"REFE_lADOAZPgIc5AeShGzwAAAAFYmb9v","url":"https://api.github.com/repos/robpike/ivy/issues/events/5781438319","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"e5d86d0a02a693e4e4dc2299f648dfa04df943e3","commit_url":"https://api.github.com/repos/robpike/ivy/commits/e5d86d0a02a693e4e4dc2299f648dfa04df943e3","created_at":"2021-12-16T22:53:10Z","performed_via_github_app":null},{"id":5781438321,"node_id":"ME_lADOAZPgIc5AeShGzwAAAAFYmb9x","url":"https://api.github.com/repos/robpike/ivy/issues/events/5781438321","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"e5d86d0a02a693e4e4dc2299f648dfa04df943e3","commit_url":"https://api.github.com/repos/robpike/ivy/commits/e5d86d0a02a693e4e4dc2299f648dfa04df943e3","created_at":"2021-12-16T22:53:10Z","performed_via_github_app":null},{"id":5781438332,"node_id":"CE_lADOAZPgIc5AeShGzwAAAAFYmb98","url":"https://api.github.com/repos/robpike/ivy/issues/events/5781438332","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2021-12-16T22:53:10Z","state_reason":null,"performed_via_github_app":null},{"id":5888306935,"node_id":"HRDE_lADOAZPgIc5AeShGzwAAAAFe-G73","url":"https://api.github.com/repos/robpike/ivy/issues/events/5888306935","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2022-01-13T15:12:21Z","performed_via_github_app":null}]233 3661 GET https://api.github.com/repos/robpike/ivy/issues/78/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:00 GMT Etag: W/"c91aab44681e306e8c1190a94a92ffac6aca111df3818abcbd6eb9c28186c020" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EE381:3395DD:665E33BC X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4909 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 91 X-Xss-Protection: 0 [{"id":5779049504,"node_id":"CE_lADOAZPgIc5AevqgzwAAAAFYdUwg","url":"https://api.github.com/repos/robpike/ivy/issues/events/5779049504","actor":{"login":"posener","id":919294,"node_id":"MDQ6VXNlcjkxOTI5NA==","avatar_url":"https://avatars.githubusercontent.com/u/919294?v=4","gravatar_id":"","url":"https://api.github.com/users/posener","html_url":"https://github.com/posener","followers_url":"https://api.github.com/users/posener/followers","following_url":"https://api.github.com/users/posener/following{/other_user}","gists_url":"https://api.github.com/users/posener/gists{/gist_id}","starred_url":"https://api.github.com/users/posener/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/posener/subscriptions","organizations_url":"https://api.github.com/users/posener/orgs","repos_url":"https://api.github.com/users/posener/repos","events_url":"https://api.github.com/users/posener/events{/privacy}","received_events_url":"https://api.github.com/users/posener/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2021-12-16T15:13:01Z","state_reason":null,"performed_via_github_app":null},{"id":5779050165,"node_id":"HRDE_lADOAZPgIc5AevqgzwAAAAFYdU61","url":"https://api.github.com/repos/robpike/ivy/issues/events/5779050165","actor":{"login":"posener","id":919294,"node_id":"MDQ6VXNlcjkxOTI5NA==","avatar_url":"https://avatars.githubusercontent.com/u/919294?v=4","gravatar_id":"","url":"https://api.github.com/users/posener","html_url":"https://github.com/posener","followers_url":"https://api.github.com/users/posener/followers","following_url":"https://api.github.com/users/posener/following{/other_user}","gists_url":"https://api.github.com/users/posener/gists{/gist_id}","starred_url":"https://api.github.com/users/posener/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/posener/subscriptions","organizations_url":"https://api.github.com/users/posener/orgs","repos_url":"https://api.github.com/users/posener/repos","events_url":"https://api.github.com/users/posener/events{/privacy}","received_events_url":"https://api.github.com/users/posener/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2021-12-16T15:13:07Z","performed_via_github_app":null}]233 6101 GET https://api.github.com/repos/robpike/ivy/issues/79/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:01 GMT Etag: W/"b35353e7a5111250feb810295737cfddfe939c7d785d6c3f453a5d9f9d218807" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EE40A:3396B1:665E33BC X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4908 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 92 X-Xss-Protection: 0 [{"id":5782114424,"node_id":"HRFPE_lADOAZPgIc5AgrAKzwAAAAFYpBB4","url":"https://api.github.com/repos/robpike/ivy/issues/events/5782114424","actor":{"login":"posener","id":919294,"node_id":"MDQ6VXNlcjkxOTI5NA==","avatar_url":"https://avatars.githubusercontent.com/u/919294?v=4","gravatar_id":"","url":"https://api.github.com/users/posener","html_url":"https://github.com/posener","followers_url":"https://api.github.com/users/posener/followers","following_url":"https://api.github.com/users/posener/following{/other_user}","gists_url":"https://api.github.com/users/posener/gists{/gist_id}","starred_url":"https://api.github.com/users/posener/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/posener/subscriptions","organizations_url":"https://api.github.com/users/posener/orgs","repos_url":"https://api.github.com/users/posener/repos","events_url":"https://api.github.com/users/posener/events{/privacy}","received_events_url":"https://api.github.com/users/posener/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2021-12-17T02:49:17Z","performed_via_github_app":null},{"id":5782376011,"node_id":"RTE_lADOAZPgIc5AgrAKzwAAAAFYqA5L","url":"https://api.github.com/repos/robpike/ivy/issues/events/5782376011","actor":{"login":"posener","id":919294,"node_id":"MDQ6VXNlcjkxOTI5NA==","avatar_url":"https://avatars.githubusercontent.com/u/919294?v=4","gravatar_id":"","url":"https://api.github.com/users/posener","html_url":"https://github.com/posener","followers_url":"https://api.github.com/users/posener/followers","following_url":"https://api.github.com/users/posener/following{/other_user}","gists_url":"https://api.github.com/users/posener/gists{/gist_id}","starred_url":"https://api.github.com/users/posener/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/posener/subscriptions","organizations_url":"https://api.github.com/users/posener/orgs","repos_url":"https://api.github.com/users/posener/repos","events_url":"https://api.github.com/users/posener/events{/privacy}","received_events_url":"https://api.github.com/users/posener/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2021-12-17T04:30:39Z","rename":{"from":"scan: improve complexity from n^2 to n","to":"scan: improve complexity for some cases"},"performed_via_github_app":null},{"id":5782621270,"node_id":"CE_lADOAZPgIc5AgrAKzwAAAAFYq8xW","url":"https://api.github.com/repos/robpike/ivy/issues/events/5782621270","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2021-12-17T06:09:44Z","state_reason":null,"performed_via_github_app":null},{"id":5782664136,"node_id":"HRDE_lADOAZPgIc5AgrAKzwAAAAFYrHPI","url":"https://api.github.com/repos/robpike/ivy/issues/events/5782664136","actor":{"login":"posener","id":919294,"node_id":"MDQ6VXNlcjkxOTI5NA==","avatar_url":"https://avatars.githubusercontent.com/u/919294?v=4","gravatar_id":"","url":"https://api.github.com/users/posener","html_url":"https://github.com/posener","followers_url":"https://api.github.com/users/posener/followers","following_url":"https://api.github.com/users/posener/following{/other_user}","gists_url":"https://api.github.com/users/posener/gists{/gist_id}","starred_url":"https://api.github.com/users/posener/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/posener/subscriptions","organizations_url":"https://api.github.com/users/posener/orgs","repos_url":"https://api.github.com/users/posener/repos","events_url":"https://api.github.com/users/posener/events{/privacy}","received_events_url":"https://api.github.com/users/posener/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2021-12-17T06:24:25Z","performed_via_github_app":null}]233 3615 GET https://api.github.com/repos/robpike/ivy/issues/80/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:01 GMT Etag: W/"cf244b169225e617eda53a29d0527797b73a84934d31fe5d3ac2033614d65fd9" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EE4AB:3397D8:665E33BD X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4907 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 93 X-Xss-Protection: 0 [{"id":5816384108,"node_id":"CE_lADOAZPgIc5AzLBozwAAAAFarvps","url":"https://api.github.com/repos/robpike/ivy/issues/events/5816384108","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2021-12-27T03:59:40Z","state_reason":null,"performed_via_github_app":null},{"id":5888304175,"node_id":"HRDE_lADOAZPgIc5AzLBozwAAAAFe-GQv","url":"https://api.github.com/repos/robpike/ivy/issues/events/5888304175","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2022-01-13T15:11:56Z","performed_via_github_app":null}]233 7313 GET https://api.github.com/repos/robpike/ivy/issues/81/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:01 GMT Etag: W/"48bb854c3ef100cb6c49857941a870c74fc126bab92f900dd7f4b5f9ca038234" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EE521:339894:665E33BD X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4906 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 94 X-Xss-Protection: 0 [{"id":5806911833,"node_id":"HRFPE_lADOAZPgIc5AzPokzwAAAAFaHnFZ","url":"https://api.github.com/repos/robpike/ivy/issues/events/5806911833","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2021-12-22T21:22:20Z","performed_via_github_app":null},{"id":5807407594,"node_id":"REFE_lADOAZPgIc5AzPokzwAAAAFaJgHq","url":"https://api.github.com/repos/robpike/ivy/issues/events/5807407594","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"c308c3aaca7a0bf07bd49dceba12561fc7727f67","commit_url":"https://api.github.com/repos/robpike/ivy/commits/c308c3aaca7a0bf07bd49dceba12561fc7727f67","created_at":"2021-12-23T00:46:15Z","performed_via_github_app":null},{"id":5807407597,"node_id":"ME_lADOAZPgIc5AzPokzwAAAAFaJgHt","url":"https://api.github.com/repos/robpike/ivy/issues/events/5807407597","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"c308c3aaca7a0bf07bd49dceba12561fc7727f67","commit_url":"https://api.github.com/repos/robpike/ivy/commits/c308c3aaca7a0bf07bd49dceba12561fc7727f67","created_at":"2021-12-23T00:46:15Z","performed_via_github_app":null},{"id":5807407603,"node_id":"CE_lADOAZPgIc5AzPokzwAAAAFaJgHz","url":"https://api.github.com/repos/robpike/ivy/issues/events/5807407603","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2021-12-23T00:46:15Z","state_reason":null,"performed_via_github_app":null},{"id":5888304001,"node_id":"HRDE_lADOAZPgIc5AzPokzwAAAAFe-GOB","url":"https://api.github.com/repos/robpike/ivy/issues/events/5888304001","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2022-01-13T15:11:55Z","performed_via_github_app":null}]233 5090 GET https://api.github.com/repos/robpike/ivy/issues/82/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:01 GMT Etag: W/"ad93616cb4fce276d078c98e7ee0f68ff4f12d7411b87017aefa3ba5956eba69" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EE5DB:3399CB:665E33BD X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4905 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 95 X-Xss-Protection: 0 [{"id":5946763477,"node_id":"REFE_lADOAZPgIc5AzVIJzwAAAAFidGjV","url":"https://api.github.com/repos/robpike/ivy/issues/events/5946763477","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"9aa7fa3ce26cd2bb7049ed24c2acfe0da31c390f","commit_url":"https://api.github.com/repos/rsc/ivy/commits/9aa7fa3ce26cd2bb7049ed24c2acfe0da31c390f","created_at":"2022-01-25T02:41:20Z","performed_via_github_app":null},{"id":5950174241,"node_id":"REFE_lADOAZPgIc5AzVIJzwAAAAFiqHQh","url":"https://api.github.com/repos/robpike/ivy/issues/events/5950174241","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"cbcfefadd9d260897136e7e56c92ce372eaeda33","commit_url":"https://api.github.com/repos/rsc/ivy/commits/cbcfefadd9d260897136e7e56c92ce372eaeda33","created_at":"2022-01-25T14:15:05Z","performed_via_github_app":null},{"id":5953441914,"node_id":"CE_lADOAZPgIc5AzVIJzwAAAAFi2lB6","url":"https://api.github.com/repos/robpike/ivy/issues/events/5953441914","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"0290510180ee94f5732abf39074d5acf2b73432f","commit_url":"https://api.github.com/repos/robpike/ivy/commits/0290510180ee94f5732abf39074d5acf2b73432f","created_at":"2022-01-25T23:27:10Z","state_reason":null,"performed_via_github_app":null}]233 6819 GET https://api.github.com/repos/robpike/ivy/issues/83/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:01 GMT Etag: W/"d0bf57535b2f7c8a0b27e5c7a7cab093df90dce116459918adf1b519b66ec5bf" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EE65B:339AA8:665E33BD X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4904 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 96 X-Xss-Protection: 0 [{"id":5817953020,"node_id":"MEE_lADOAZPgIc5A7J5rzwAAAAFaxur8","url":"https://api.github.com/repos/robpike/ivy/issues/events/5817953020","actor":{"login":"f","id":196477,"node_id":"MDQ6VXNlcjE5NjQ3Nw==","avatar_url":"https://avatars.githubusercontent.com/u/196477?v=4","gravatar_id":"","url":"https://api.github.com/users/f","html_url":"https://github.com/f","followers_url":"https://api.github.com/users/f/followers","following_url":"https://api.github.com/users/f/following{/other_user}","gists_url":"https://api.github.com/users/f/gists{/gist_id}","starred_url":"https://api.github.com/users/f/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/f/subscriptions","organizations_url":"https://api.github.com/users/f/orgs","repos_url":"https://api.github.com/users/f/repos","events_url":"https://api.github.com/users/f/events{/privacy}","received_events_url":"https://api.github.com/users/f/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2021-12-27T13:35:36Z","performed_via_github_app":null},{"id":5817953026,"node_id":"SE_lADOAZPgIc5A7J5rzwAAAAFaxusC","url":"https://api.github.com/repos/robpike/ivy/issues/events/5817953026","actor":{"login":"f","id":196477,"node_id":"MDQ6VXNlcjE5NjQ3Nw==","avatar_url":"https://avatars.githubusercontent.com/u/196477?v=4","gravatar_id":"","url":"https://api.github.com/users/f","html_url":"https://github.com/f","followers_url":"https://api.github.com/users/f/followers","following_url":"https://api.github.com/users/f/following{/other_user}","gists_url":"https://api.github.com/users/f/gists{/gist_id}","starred_url":"https://api.github.com/users/f/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/f/subscriptions","organizations_url":"https://api.github.com/users/f/orgs","repos_url":"https://api.github.com/users/f/repos","events_url":"https://api.github.com/users/f/events{/privacy}","received_events_url":"https://api.github.com/users/f/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2021-12-27T13:35:37Z","performed_via_github_app":null},{"id":5817953029,"node_id":"MEE_lADOAZPgIc5A7J5rzwAAAAFaxusF","url":"https://api.github.com/repos/robpike/ivy/issues/events/5817953029","actor":{"login":"s","id":1969638,"node_id":"MDQ6VXNlcjE5Njk2Mzg=","avatar_url":"https://avatars.githubusercontent.com/u/1969638?v=4","gravatar_id":"","url":"https://api.github.com/users/s","html_url":"https://github.com/s","followers_url":"https://api.github.com/users/s/followers","following_url":"https://api.github.com/users/s/following{/other_user}","gists_url":"https://api.github.com/users/s/gists{/gist_id}","starred_url":"https://api.github.com/users/s/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/s/subscriptions","organizations_url":"https://api.github.com/users/s/orgs","repos_url":"https://api.github.com/users/s/repos","events_url":"https://api.github.com/users/s/events{/privacy}","received_events_url":"https://api.github.com/users/s/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2021-12-27T13:35:37Z","performed_via_github_app":null},{"id":5817953032,"node_id":"SE_lADOAZPgIc5A7J5rzwAAAAFaxusI","url":"https://api.github.com/repos/robpike/ivy/issues/events/5817953032","actor":{"login":"s","id":1969638,"node_id":"MDQ6VXNlcjE5Njk2Mzg=","avatar_url":"https://avatars.githubusercontent.com/u/1969638?v=4","gravatar_id":"","url":"https://api.github.com/users/s","html_url":"https://github.com/s","followers_url":"https://api.github.com/users/s/followers","following_url":"https://api.github.com/users/s/following{/other_user}","gists_url":"https://api.github.com/users/s/gists{/gist_id}","starred_url":"https://api.github.com/users/s/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/s/subscriptions","organizations_url":"https://api.github.com/users/s/orgs","repos_url":"https://api.github.com/users/s/repos","events_url":"https://api.github.com/users/s/events{/privacy}","received_events_url":"https://api.github.com/users/s/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2021-12-27T13:35:37Z","performed_via_github_app":null},{"id":5817953036,"node_id":"MEE_lADOAZPgIc5A7J5rzwAAAAFaxusM","url":"https://api.github.com/repos/robpike/ivy/issues/events/5817953036","actor":{"login":"dist","id":6775176,"node_id":"MDEyOk9yZ2FuaXphdGlvbjY3NzUxNzY=","avatar_url":"https://avatars.githubusercontent.com/u/6775176?v=4","gravatar_id":"","url":"https://api.github.com/users/dist","html_url":"https://github.com/dist","followers_url":"https://api.github.com/users/dist/followers","following_url":"https://api.github.com/users/dist/following{/other_user}","gists_url":"https://api.github.com/users/dist/gists{/gist_id}","starred_url":"https://api.github.com/users/dist/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dist/subscriptions","organizations_url":"https://api.github.com/users/dist/orgs","repos_url":"https://api.github.com/users/dist/repos","events_url":"https://api.github.com/users/dist/events{/privacy}","received_events_url":"https://api.github.com/users/dist/received_events","type":"Organization","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2021-12-27T13:35:37Z","performed_via_github_app":null}]233 6193 GET https://api.github.com/repos/robpike/ivy/issues/84/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:01 GMT Etag: W/"e2314d4fd7ece3ae5c35bdc05c2231c54aead43a0c82700112999ed2ad9f1ce1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EE6E3:339B82:665E33BD X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4903 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 97 X-Xss-Protection: 0 [{"id":5860874783,"node_id":"HRFPE_lADOAZPgIc5BUSXjzwAAAAFdVdof","url":"https://api.github.com/repos/robpike/ivy/issues/events/5860874783","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2022-01-08T05:28:33Z","performed_via_github_app":null},{"id":5860971207,"node_id":"REFE_lADOAZPgIc5BUSXjzwAAAAFdV1LH","url":"https://api.github.com/repos/robpike/ivy/issues/events/5860971207","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"50a9e4f6959ac735b5a56b2873e3e09fce20b8e9","commit_url":"https://api.github.com/repos/robpike/ivy/commits/50a9e4f6959ac735b5a56b2873e3e09fce20b8e9","created_at":"2022-01-08T07:58:24Z","performed_via_github_app":null},{"id":5860971208,"node_id":"ME_lADOAZPgIc5BUSXjzwAAAAFdV1LI","url":"https://api.github.com/repos/robpike/ivy/issues/events/5860971208","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"50a9e4f6959ac735b5a56b2873e3e09fce20b8e9","commit_url":"https://api.github.com/repos/robpike/ivy/commits/50a9e4f6959ac735b5a56b2873e3e09fce20b8e9","created_at":"2022-01-08T07:58:24Z","performed_via_github_app":null},{"id":5860971210,"node_id":"CE_lADOAZPgIc5BUSXjzwAAAAFdV1LK","url":"https://api.github.com/repos/robpike/ivy/issues/events/5860971210","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2022-01-08T07:58:24Z","state_reason":null,"performed_via_github_app":null}]233 3855 GET https://api.github.com/repos/robpike/ivy/issues/85/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:01 GMT Etag: W/"c690286b0b1e978b0f0b5cb55594a376c46bbaa398d4df6be72bc6a891a3591a" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EE76E:339C7D:665E33BD X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4902 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 98 X-Xss-Protection: 0 [{"id":5860866045,"node_id":"REFE_lADOAZPgIc5BUWqizwAAAAFdVbf9","url":"https://api.github.com/repos/robpike/ivy/issues/events/5860866045","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"410dc6629a87631a262bb2dbf08e73e3a02a3854","commit_url":"https://api.github.com/repos/rsc/ivy/commits/410dc6629a87631a262bb2dbf08e73e3a02a3854","created_at":"2022-01-08T05:16:28Z","performed_via_github_app":null},{"id":5861791323,"node_id":"CE_lADOAZPgIc5BUWqizwAAAAFdY9Zb","url":"https://api.github.com/repos/robpike/ivy/issues/events/5861791323","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"410dc6629a87631a262bb2dbf08e73e3a02a3854","commit_url":"https://api.github.com/repos/robpike/ivy/commits/410dc6629a87631a262bb2dbf08e73e3a02a3854","created_at":"2022-01-09T00:59:20Z","state_reason":null,"performed_via_github_app":null}]233 9565 GET https://api.github.com/repos/robpike/ivy/issues/86/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:02 GMT Etag: W/"bb82095b1e0dd323494d249e2cd4a34b332c21cb16b6588bcc624c55ba87b7d2" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EE84D:339DE7:665E33BD X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4901 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 99 X-Xss-Protection: 0 [{"id":5861585862,"node_id":"HRFPE_lADOAZPgIc5BYHA7zwAAAAFdYLPG","url":"https://api.github.com/repos/robpike/ivy/issues/events/5861585862","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2022-01-08T19:56:49Z","performed_via_github_app":null},{"id":5861587031,"node_id":"HRFPE_lADOAZPgIc5BYHA7zwAAAAFdYLhX","url":"https://api.github.com/repos/robpike/ivy/issues/events/5861587031","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2022-01-08T19:58:05Z","performed_via_github_app":null},{"id":5861589378,"node_id":"HRFPE_lADOAZPgIc5BYHA7zwAAAAFdYMGC","url":"https://api.github.com/repos/robpike/ivy/issues/events/5861589378","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2022-01-08T20:01:01Z","performed_via_github_app":null},{"id":5861791313,"node_id":"REFE_lADOAZPgIc5BYHA7zwAAAAFdY9ZR","url":"https://api.github.com/repos/robpike/ivy/issues/events/5861791313","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"b581b56b8431a7b5dd1017080cd83743273706c7","commit_url":"https://api.github.com/repos/robpike/ivy/commits/b581b56b8431a7b5dd1017080cd83743273706c7","created_at":"2022-01-09T00:59:18Z","performed_via_github_app":null},{"id":5861791316,"node_id":"ME_lADOAZPgIc5BYHA7zwAAAAFdY9ZU","url":"https://api.github.com/repos/robpike/ivy/issues/events/5861791316","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"b581b56b8431a7b5dd1017080cd83743273706c7","commit_url":"https://api.github.com/repos/robpike/ivy/commits/b581b56b8431a7b5dd1017080cd83743273706c7","created_at":"2022-01-09T00:59:18Z","performed_via_github_app":null},{"id":5861791317,"node_id":"CE_lADOAZPgIc5BYHA7zwAAAAFdY9ZV","url":"https://api.github.com/repos/robpike/ivy/issues/events/5861791317","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2022-01-09T00:59:19Z","state_reason":null,"performed_via_github_app":null},{"id":5888308275,"node_id":"HRDE_lADOAZPgIc5BYHA7zwAAAAFe-HQz","url":"https://api.github.com/repos/robpike/ivy/issues/events/5888308275","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2022-01-13T15:12:33Z","performed_via_github_app":null}]233 6188 GET https://api.github.com/repos/robpike/ivy/issues/87/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:02 GMT Etag: W/"fb03c07455c33548c8e801815c10fa0d5056f44b077a5f042d46a6bda9449620" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EE8D0:339ED8:665E33BE X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4900 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 100 X-Xss-Protection: 0 [{"id":5862700719,"node_id":"REFE_lADOAZPgIc5BZuzhzwAAAAFdcbav","url":"https://api.github.com/repos/robpike/ivy/issues/events/5862700719","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"3bb5d4648f1d718cbf5e95d24a18ccb00f600253","commit_url":"https://api.github.com/repos/robpike/ivy/commits/3bb5d4648f1d718cbf5e95d24a18ccb00f600253","created_at":"2022-01-09T19:58:43Z","performed_via_github_app":null},{"id":5862700720,"node_id":"ME_lADOAZPgIc5BZuzhzwAAAAFdcbaw","url":"https://api.github.com/repos/robpike/ivy/issues/events/5862700720","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"3bb5d4648f1d718cbf5e95d24a18ccb00f600253","commit_url":"https://api.github.com/repos/robpike/ivy/commits/3bb5d4648f1d718cbf5e95d24a18ccb00f600253","created_at":"2022-01-09T19:58:43Z","performed_via_github_app":null},{"id":5862700724,"node_id":"CE_lADOAZPgIc5BZuzhzwAAAAFdcba0","url":"https://api.github.com/repos/robpike/ivy/issues/events/5862700724","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2022-01-09T19:58:43Z","state_reason":null,"performed_via_github_app":null},{"id":5888300318,"node_id":"HRDE_lADOAZPgIc5BZuzhzwAAAAFe-FUe","url":"https://api.github.com/repos/robpike/ivy/issues/events/5888300318","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2022-01-13T15:11:21Z","performed_via_github_app":null}]233 6188 GET https://api.github.com/repos/robpike/ivy/issues/88/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:02 GMT Etag: W/"f0eeaf62bb170b7be3d3caa869e6e6a700f59e31ebcfea9b86a194ff39b74510" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EE999:33A040:665E33BE X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4899 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 101 X-Xss-Protection: 0 [{"id":5862701694,"node_id":"REFE_lADOAZPgIc5BZu4YzwAAAAFdcbp-","url":"https://api.github.com/repos/robpike/ivy/issues/events/5862701694","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"c6a28b66b6c87a27f8a19bc86d25fbd290d51990","commit_url":"https://api.github.com/repos/robpike/ivy/commits/c6a28b66b6c87a27f8a19bc86d25fbd290d51990","created_at":"2022-01-09T19:59:47Z","performed_via_github_app":null},{"id":5862701696,"node_id":"ME_lADOAZPgIc5BZu4YzwAAAAFdcbqA","url":"https://api.github.com/repos/robpike/ivy/issues/events/5862701696","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"c6a28b66b6c87a27f8a19bc86d25fbd290d51990","commit_url":"https://api.github.com/repos/robpike/ivy/commits/c6a28b66b6c87a27f8a19bc86d25fbd290d51990","created_at":"2022-01-09T19:59:47Z","performed_via_github_app":null},{"id":5862701699,"node_id":"CE_lADOAZPgIc5BZu4YzwAAAAFdcbqD","url":"https://api.github.com/repos/robpike/ivy/issues/events/5862701699","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2022-01-09T19:59:47Z","state_reason":null,"performed_via_github_app":null},{"id":5888299854,"node_id":"HRDE_lADOAZPgIc5BZu4YzwAAAAFe-FNO","url":"https://api.github.com/repos/robpike/ivy/issues/events/5888299854","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2022-01-13T15:11:17Z","performed_via_github_app":null}]233 6188 GET https://api.github.com/repos/robpike/ivy/issues/89/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:02 GMT Etag: W/"20f3e205780ce1db196ab1ff29deafe83d61cb006c9fabceb358b733927f9487" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EEA0B:33A0ED:665E33BE X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4898 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 102 X-Xss-Protection: 0 [{"id":5862700971,"node_id":"REFE_lADOAZPgIc5BZu5yzwAAAAFdcber","url":"https://api.github.com/repos/robpike/ivy/issues/events/5862700971","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"2cbd28d5746bbdf5a32f9d9ecac96e004b07a4b9","commit_url":"https://api.github.com/repos/robpike/ivy/commits/2cbd28d5746bbdf5a32f9d9ecac96e004b07a4b9","created_at":"2022-01-09T19:59:02Z","performed_via_github_app":null},{"id":5862700973,"node_id":"ME_lADOAZPgIc5BZu5yzwAAAAFdcbet","url":"https://api.github.com/repos/robpike/ivy/issues/events/5862700973","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"2cbd28d5746bbdf5a32f9d9ecac96e004b07a4b9","commit_url":"https://api.github.com/repos/robpike/ivy/commits/2cbd28d5746bbdf5a32f9d9ecac96e004b07a4b9","created_at":"2022-01-09T19:59:02Z","performed_via_github_app":null},{"id":5862700974,"node_id":"CE_lADOAZPgIc5BZu5yzwAAAAFdcbeu","url":"https://api.github.com/repos/robpike/ivy/issues/events/5862700974","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2022-01-09T19:59:02Z","state_reason":null,"performed_via_github_app":null},{"id":5888299453,"node_id":"HRDE_lADOAZPgIc5BZu5yzwAAAAFe-FG9","url":"https://api.github.com/repos/robpike/ivy/issues/events/5888299453","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2022-01-13T15:11:14Z","performed_via_github_app":null}]233 2496 GET https://api.github.com/repos/robpike/ivy/issues/90/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:02 GMT Etag: W/"623288d631708dff8cfd829524b8c43f379978154d428417a3b5009c0b571545" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EEA98:33A1E3:665E33BE X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4897 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 103 X-Xss-Protection: 0 [{"id":5870496129,"node_id":"CE_lADOAZPgIc5BdVCZzwAAAAFd6KmB","url":"https://api.github.com/repos/robpike/ivy/issues/events/5870496129","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2022-01-11T05:18:34Z","state_reason":null,"performed_via_github_app":null}]233 9566 GET https://api.github.com/repos/robpike/ivy/issues/91/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:02 GMT Etag: W/"7a0b168c2e049bd0a69412c8ee5b9cfa991abb7457dba9d07fd896e83d739b5b" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EEB04:33A273:665E33BE X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4896 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 104 X-Xss-Protection: 0 [{"id":5900212714,"node_id":"HRFPE_lADOAZPgIc5Brd-YzwAAAAFfrhnq","url":"https://api.github.com/repos/robpike/ivy/issues/events/5900212714","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2022-01-16T12:01:32Z","performed_via_github_app":null},{"id":5900213710,"node_id":"HRFPE_lADOAZPgIc5Brd-YzwAAAAFfrh3O","url":"https://api.github.com/repos/robpike/ivy/issues/events/5900213710","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2022-01-16T12:02:22Z","performed_via_github_app":null},{"id":5900214412,"node_id":"HRFPE_lADOAZPgIc5Brd-YzwAAAAFfriCM","url":"https://api.github.com/repos/robpike/ivy/issues/events/5900214412","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2022-01-16T12:03:04Z","performed_via_github_app":null},{"id":5900772164,"node_id":"REFE_lADOAZPgIc5Brd-YzwAAAAFftqNE","url":"https://api.github.com/repos/robpike/ivy/issues/events/5900772164","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"204abda0893aa91299b9ef97b57534062280841f","commit_url":"https://api.github.com/repos/robpike/ivy/commits/204abda0893aa91299b9ef97b57534062280841f","created_at":"2022-01-16T20:33:39Z","performed_via_github_app":null},{"id":5900772168,"node_id":"ME_lADOAZPgIc5Brd-YzwAAAAFftqNI","url":"https://api.github.com/repos/robpike/ivy/issues/events/5900772168","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"204abda0893aa91299b9ef97b57534062280841f","commit_url":"https://api.github.com/repos/robpike/ivy/commits/204abda0893aa91299b9ef97b57534062280841f","created_at":"2022-01-16T20:33:39Z","performed_via_github_app":null},{"id":5900772171,"node_id":"CE_lADOAZPgIc5Brd-YzwAAAAFftqNL","url":"https://api.github.com/repos/robpike/ivy/issues/events/5900772171","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2022-01-16T20:33:39Z","state_reason":null,"performed_via_github_app":null},{"id":5900818507,"node_id":"HRDE_lADOAZPgIc5Brd-YzwAAAAFft1hL","url":"https://api.github.com/repos/robpike/ivy/issues/events/5900818507","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2022-01-16T21:21:23Z","performed_via_github_app":null}]233 7320 GET https://api.github.com/repos/robpike/ivy/issues/92/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:02 GMT Etag: W/"6446d434384dc45270c5b7d784ba1a9a8da8ba9de06ac106a4d6cba3cf2cb9e6" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EEBA3:33A384:665E33BE X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4895 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 105 X-Xss-Protection: 0 [{"id":5888428513,"node_id":"HRFPE_lADOAZPgIc5BreZfzwAAAAFe-knh","url":"https://api.github.com/repos/robpike/ivy/issues/events/5888428513","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2022-01-13T15:29:40Z","performed_via_github_app":null},{"id":5888452979,"node_id":"HRFPE_lADOAZPgIc5BreZfzwAAAAFe-qlz","url":"https://api.github.com/repos/robpike/ivy/issues/events/5888452979","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2022-01-13T15:33:06Z","performed_via_github_app":null},{"id":5891194917,"node_id":"REFE_lADOAZPgIc5BreZfzwAAAAFfJIAl","url":"https://api.github.com/repos/robpike/ivy/issues/events/5891194917","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"20c60e02329aabfd43f231c5655de89d9d099b84","commit_url":"https://api.github.com/repos/robpike/ivy/commits/20c60e02329aabfd43f231c5655de89d9d099b84","created_at":"2022-01-13T23:45:45Z","performed_via_github_app":null},{"id":5891194921,"node_id":"ME_lADOAZPgIc5BreZfzwAAAAFfJIAp","url":"https://api.github.com/repos/robpike/ivy/issues/events/5891194921","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"20c60e02329aabfd43f231c5655de89d9d099b84","commit_url":"https://api.github.com/repos/robpike/ivy/commits/20c60e02329aabfd43f231c5655de89d9d099b84","created_at":"2022-01-13T23:45:45Z","performed_via_github_app":null},{"id":5891194927,"node_id":"CE_lADOAZPgIc5BreZfzwAAAAFfJIAv","url":"https://api.github.com/repos/robpike/ivy/issues/events/5891194927","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2022-01-13T23:45:45Z","state_reason":null,"performed_via_github_app":null}]233 5068 GET https://api.github.com/repos/robpike/ivy/issues/93/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:03 GMT Etag: W/"fba5e609deb153254f3f19ce8a340e1c867e6b046a96f50e3c2b94dcd81e7b79" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EEC31:33A461:665E33BE X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4894 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 106 X-Xss-Protection: 0 [{"id":5891979666,"node_id":"REFE_lADOAZPgIc5BrgXrzwAAAAFfMHmS","url":"https://api.github.com/repos/robpike/ivy/issues/events/5891979666","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"aef19adb95a3d6e1fd0ce89a24758f9c92b3cd46","commit_url":"https://api.github.com/repos/robpike/ivy/commits/aef19adb95a3d6e1fd0ce89a24758f9c92b3cd46","created_at":"2022-01-14T03:23:16Z","performed_via_github_app":null},{"id":5891979675,"node_id":"ME_lADOAZPgIc5BrgXrzwAAAAFfMHmb","url":"https://api.github.com/repos/robpike/ivy/issues/events/5891979675","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"aef19adb95a3d6e1fd0ce89a24758f9c92b3cd46","commit_url":"https://api.github.com/repos/robpike/ivy/commits/aef19adb95a3d6e1fd0ce89a24758f9c92b3cd46","created_at":"2022-01-14T03:23:16Z","performed_via_github_app":null},{"id":5891979683,"node_id":"CE_lADOAZPgIc5BrgXrzwAAAAFfMHmj","url":"https://api.github.com/repos/robpike/ivy/issues/events/5891979683","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2022-01-14T03:23:16Z","state_reason":null,"performed_via_github_app":null}]233 5068 GET https://api.github.com/repos/robpike/ivy/issues/94/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:03 GMT Etag: W/"5e9a61063f0bbe04ba017e5612ada525f6762aa8ee392d7db0a89b9e0312a657" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EECC7:33A557:665E33BF X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4893 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 107 X-Xss-Protection: 0 [{"id":5900080957,"node_id":"REFE_lADOAZPgIc5BrlBAzwAAAAFfrBc9","url":"https://api.github.com/repos/robpike/ivy/issues/events/5900080957","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"88a91714d7eeb6c785fdccd8666eb28aeaad67ae","commit_url":"https://api.github.com/repos/robpike/ivy/commits/88a91714d7eeb6c785fdccd8666eb28aeaad67ae","created_at":"2022-01-16T09:48:51Z","performed_via_github_app":null},{"id":5900080958,"node_id":"ME_lADOAZPgIc5BrlBAzwAAAAFfrBc-","url":"https://api.github.com/repos/robpike/ivy/issues/events/5900080958","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"88a91714d7eeb6c785fdccd8666eb28aeaad67ae","commit_url":"https://api.github.com/repos/robpike/ivy/commits/88a91714d7eeb6c785fdccd8666eb28aeaad67ae","created_at":"2022-01-16T09:48:51Z","performed_via_github_app":null},{"id":5900080960,"node_id":"CE_lADOAZPgIc5BrlBAzwAAAAFfrBdA","url":"https://api.github.com/repos/robpike/ivy/issues/events/5900080960","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2022-01-16T09:48:51Z","state_reason":null,"performed_via_github_app":null}]233 2621 GET https://api.github.com/repos/robpike/ivy/issues/95/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:03 GMT Etag: W/"54168eae59cd84698b45b1e4ca00e652eef2b25ef22303363f67c3d6b4cc5e86" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EED29:33A62D:665E33BF X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4892 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 108 X-Xss-Protection: 0 [{"id":5946828611,"node_id":"CE_lADOAZPgIc5BsYf1zwAAAAFidWdD","url":"https://api.github.com/repos/robpike/ivy/issues/events/5946828611","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"679b7ed47c4cbf8dec342dc0eb9feeefe89abd18","commit_url":"https://api.github.com/repos/robpike/ivy/commits/679b7ed47c4cbf8dec342dc0eb9feeefe89abd18","created_at":"2022-01-25T03:03:53Z","state_reason":null,"performed_via_github_app":null}]233 2621 GET https://api.github.com/repos/robpike/ivy/issues/96/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:03 GMT Etag: W/"ea8e6d7308db99f8b43d13f2e70cde58d3483019bdd6ad836c8b35be9cef6a94" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EEDA7:33A6D4:665E33BF X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4891 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 109 X-Xss-Protection: 0 [{"id":5893450378,"node_id":"CE_lADOAZPgIc5Bvf4ozwAAAAFfRuqK","url":"https://api.github.com/repos/robpike/ivy/issues/events/5893450378","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"2721d24a37f4a8254bf273eb00b2bd021af592dd","commit_url":"https://api.github.com/repos/robpike/ivy/commits/2721d24a37f4a8254bf273eb00b2bd021af592dd","created_at":"2022-01-14T09:18:52Z","state_reason":null,"performed_via_github_app":null}]233 2496 GET https://api.github.com/repos/robpike/ivy/issues/97/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:03 GMT Etag: W/"68db5d07d4931fdfa5ef4bb3de5000897b6d6279dcf79b70876f41598291cc93" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EEE02:33A78B:665E33BF X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4890 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 110 X-Xss-Protection: 0 [{"id":5947749903,"node_id":"CE_lADOAZPgIc5Bzmz3zwAAAAFig3YP","url":"https://api.github.com/repos/robpike/ivy/issues/events/5947749903","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2022-01-25T07:42:36Z","state_reason":null,"performed_via_github_app":null}]233 2621 GET https://api.github.com/repos/robpike/ivy/issues/98/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:03 GMT Etag: W/"8767dbfdab069366dfaee8bfd93129133baf0e7da9e9b6f64d7fb01fdfea35b7" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EEE75:33A83D:665E33BF X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4889 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 111 X-Xss-Protection: 0 [{"id":5897071664,"node_id":"CE_lADOAZPgIc5BzoKfzwAAAAFffiww","url":"https://api.github.com/repos/robpike/ivy/issues/events/5897071664","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"43a7b00a2e80937d296b7fbc08a9b5f6850041ff","commit_url":"https://api.github.com/repos/robpike/ivy/commits/43a7b00a2e80937d296b7fbc08a9b5f6850041ff","created_at":"2022-01-14T20:08:23Z","state_reason":null,"performed_via_github_app":null}]233 10655 GET https://api.github.com/repos/robpike/ivy/issues/99/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:03 GMT Etag: W/"d1effd44d7c73a8a01fd0838d9c1c7c9f1aae1877c7e5c523dec3cab3b4d0120" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EEEE8:33A910:665E33BF X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4888 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 112 X-Xss-Protection: 0 [{"id":5898029182,"node_id":"RRE_lADOAZPgIc5B0V_SzwAAAAFfjMh-","url":"https://api.github.com/repos/robpike/ivy/issues/events/5898029182","actor":{"login":"glxxyz","id":12117022,"node_id":"MDQ6VXNlcjEyMTE3MDIy","avatar_url":"https://avatars.githubusercontent.com/u/12117022?v=4","gravatar_id":"","url":"https://api.github.com/users/glxxyz","html_url":"https://github.com/glxxyz","followers_url":"https://api.github.com/users/glxxyz/followers","following_url":"https://api.github.com/users/glxxyz/following{/other_user}","gists_url":"https://api.github.com/users/glxxyz/gists{/gist_id}","starred_url":"https://api.github.com/users/glxxyz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/glxxyz/subscriptions","organizations_url":"https://api.github.com/users/glxxyz/orgs","repos_url":"https://api.github.com/users/glxxyz/repos","events_url":"https://api.github.com/users/glxxyz/events{/privacy}","received_events_url":"https://api.github.com/users/glxxyz/received_events","type":"User","site_admin":false},"event":"review_requested","commit_id":null,"commit_url":null,"created_at":"2022-01-15T01:30:00Z","review_requester":{"login":"glxxyz","id":12117022,"node_id":"MDQ6VXNlcjEyMTE3MDIy","avatar_url":"https://avatars.githubusercontent.com/u/12117022?v=4","gravatar_id":"","url":"https://api.github.com/users/glxxyz","html_url":"https://github.com/glxxyz","followers_url":"https://api.github.com/users/glxxyz/followers","following_url":"https://api.github.com/users/glxxyz/following{/other_user}","gists_url":"https://api.github.com/users/glxxyz/gists{/gist_id}","starred_url":"https://api.github.com/users/glxxyz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/glxxyz/subscriptions","organizations_url":"https://api.github.com/users/glxxyz/orgs","repos_url":"https://api.github.com/users/glxxyz/repos","events_url":"https://api.github.com/users/glxxyz/events{/privacy}","received_events_url":"https://api.github.com/users/glxxyz/received_events","type":"User","site_admin":false},"requested_reviewer":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"performed_via_github_app":null},{"id":5898709411,"node_id":"RTE_lADOAZPgIc5B0V_SzwAAAAFflymj","url":"https://api.github.com/repos/robpike/ivy/issues/events/5898709411","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2022-01-15T07:59:44Z","rename":{"from":"value: prevent trig function endless loops","to":"value: prevent trig function endless loops on infinite argument"},"performed_via_github_app":null},{"id":5898709550,"node_id":"RTE_lADOAZPgIc5B0V_SzwAAAAFflyou","url":"https://api.github.com/repos/robpike/ivy/issues/events/5898709550","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2022-01-15T07:59:54Z","rename":{"from":"value: prevent trig function endless loops on infinite argument","to":"value: prevent trig function endless loops for infinite argument"},"performed_via_github_app":null},{"id":5898710645,"node_id":"REFE_lADOAZPgIc5B0V_SzwAAAAFfly51","url":"https://api.github.com/repos/robpike/ivy/issues/events/5898710645","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"f50ff8d639485eecca40f9d73cd931f7a4809a46","commit_url":"https://api.github.com/repos/robpike/ivy/commits/f50ff8d639485eecca40f9d73cd931f7a4809a46","created_at":"2022-01-15T08:01:10Z","performed_via_github_app":null},{"id":5898710647,"node_id":"ME_lADOAZPgIc5B0V_SzwAAAAFfly53","url":"https://api.github.com/repos/robpike/ivy/issues/events/5898710647","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"f50ff8d639485eecca40f9d73cd931f7a4809a46","commit_url":"https://api.github.com/repos/robpike/ivy/commits/f50ff8d639485eecca40f9d73cd931f7a4809a46","created_at":"2022-01-15T08:01:10Z","performed_via_github_app":null},{"id":5898710648,"node_id":"CE_lADOAZPgIc5B0V_SzwAAAAFfly54","url":"https://api.github.com/repos/robpike/ivy/issues/events/5898710648","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2022-01-15T08:01:10Z","state_reason":null,"performed_via_github_app":null}]234 4694 GET https://api.github.com/repos/robpike/ivy/issues/100/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:03 GMT Etag: W/"b9975d048271fe0a9542a577de73893be913b39d9fa276899c921fae87b2ea4e" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EEF88:33AA21:665E33BF X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4887 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 113 X-Xss-Protection: 0 [{"id":5906429491,"node_id":"CE_lADOAZPgIc5B4vPuzwAAAAFgDPYz","url":"https://api.github.com/repos/robpike/ivy/issues/events/5906429491","actor":{"login":"hagna","id":216688,"node_id":"MDQ6VXNlcjIxNjY4OA==","avatar_url":"https://avatars.githubusercontent.com/u/216688?v=4","gravatar_id":"","url":"https://api.github.com/users/hagna","html_url":"https://github.com/hagna","followers_url":"https://api.github.com/users/hagna/followers","following_url":"https://api.github.com/users/hagna/following{/other_user}","gists_url":"https://api.github.com/users/hagna/gists{/gist_id}","starred_url":"https://api.github.com/users/hagna/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hagna/subscriptions","organizations_url":"https://api.github.com/users/hagna/orgs","repos_url":"https://api.github.com/users/hagna/repos","events_url":"https://api.github.com/users/hagna/events{/privacy}","received_events_url":"https://api.github.com/users/hagna/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2022-01-17T19:25:57Z","state_reason":null,"performed_via_github_app":null},{"id":5906429505,"node_id":"MEE_lADOAZPgIc5B4vPuzwAAAAFgDPZB","url":"https://api.github.com/repos/robpike/ivy/issues/events/5906429505","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2022-01-17T19:25:58Z","performed_via_github_app":null},{"id":5906429509,"node_id":"SE_lADOAZPgIc5B4vPuzwAAAAFgDPZF","url":"https://api.github.com/repos/robpike/ivy/issues/events/5906429509","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2022-01-17T19:25:58Z","performed_via_github_app":null}]234 3704 GET https://api.github.com/repos/robpike/ivy/issues/101/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:04 GMT Etag: W/"f9f12690156c12b372b1b64cf00d53cbc6999e7a23cf58962202938e29ffe263" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EEFEC:33AAD7:665E33BF X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4886 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 114 X-Xss-Protection: 0 [{"id":5913363969,"node_id":"CE_lADOAZPgIc5B_p5lzwAAAAFgdsYB","url":"https://api.github.com/repos/robpike/ivy/issues/events/5913363969","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2022-01-18T21:04:22Z","state_reason":null,"performed_via_github_app":null},{"id":6152169411,"node_id":"HRDE_lADOAZPgIc5B_p5lzwAAAAFusqfD","url":"https://api.github.com/repos/robpike/ivy/issues/events/6152169411","actor":{"login":"smasher164","id":12636891,"node_id":"MDQ6VXNlcjEyNjM2ODkx","avatar_url":"https://avatars.githubusercontent.com/u/12636891?v=4","gravatar_id":"","url":"https://api.github.com/users/smasher164","html_url":"https://github.com/smasher164","followers_url":"https://api.github.com/users/smasher164/followers","following_url":"https://api.github.com/users/smasher164/following{/other_user}","gists_url":"https://api.github.com/users/smasher164/gists{/gist_id}","starred_url":"https://api.github.com/users/smasher164/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/smasher164/subscriptions","organizations_url":"https://api.github.com/users/smasher164/orgs","repos_url":"https://api.github.com/users/smasher164/repos","events_url":"https://api.github.com/users/smasher164/events{/privacy}","received_events_url":"https://api.github.com/users/smasher164/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2022-02-28T05:30:17Z","performed_via_github_app":null}]234 6305 GET https://api.github.com/repos/robpike/ivy/issues/102/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:04 GMT Etag: W/"9c772c1d56ee58de7490666a58e0c9a03f47d37dad242054332906bc97dd2a74" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EF04F:33AB7C:665E33C0 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4885 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 115 X-Xss-Protection: 0 [{"id":5921412935,"node_id":"RTE_lADOAZPgIc5CDF-ozwAAAAFg8ZdH","url":"https://api.github.com/repos/robpike/ivy/issues/events/5921412935","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2022-01-20T00:48:49Z","rename":{"from":"ivy: test error handling","to":"demo: fix error handling"},"performed_via_github_app":null},{"id":5921413546,"node_id":"REFE_lADOAZPgIc5CDF-ozwAAAAFg8Zmq","url":"https://api.github.com/repos/robpike/ivy/issues/events/5921413546","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"05bc1d300dd3761a5143cf06792706b654898d17","commit_url":"https://api.github.com/repos/robpike/ivy/commits/05bc1d300dd3761a5143cf06792706b654898d17","created_at":"2022-01-20T00:49:01Z","performed_via_github_app":null},{"id":5921413547,"node_id":"ME_lADOAZPgIc5CDF-ozwAAAAFg8Zmr","url":"https://api.github.com/repos/robpike/ivy/issues/events/5921413547","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"05bc1d300dd3761a5143cf06792706b654898d17","commit_url":"https://api.github.com/repos/robpike/ivy/commits/05bc1d300dd3761a5143cf06792706b654898d17","created_at":"2022-01-20T00:49:01Z","performed_via_github_app":null},{"id":5921413551,"node_id":"CE_lADOAZPgIc5CDF-ozwAAAAFg8Zmv","url":"https://api.github.com/repos/robpike/ivy/issues/events/5921413551","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2022-01-20T00:49:02Z","state_reason":null,"performed_via_github_app":null}]234 8522 GET https://api.github.com/repos/robpike/ivy/issues/103/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:04 GMT Etag: W/"b9cd4b5cdb11423911f01fed558333c375a92a1ea460d27ed4e1bde1e74c5372" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EF0C3:33AC50:665E33C0 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4884 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 116 X-Xss-Protection: 0 [{"id":5937177093,"node_id":"MEE_lADOAZPgIc5CQiCpzwAAAAFh4iIF","url":"https://api.github.com/repos/robpike/ivy/issues/events/5937177093","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2022-01-22T17:22:31Z","performed_via_github_app":null},{"id":5937177094,"node_id":"SE_lADOAZPgIc5CQiCpzwAAAAFh4iIG","url":"https://api.github.com/repos/robpike/ivy/issues/events/5937177094","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2022-01-22T17:22:31Z","performed_via_github_app":null},{"id":5937390491,"node_id":"REFE_lADOAZPgIc5CQiCpzwAAAAFh5WOb","url":"https://api.github.com/repos/robpike/ivy/issues/events/5937390491","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"10df0d5cb9577c7cd3ce6b83d8ec9b01928cb190","commit_url":"https://api.github.com/repos/rsc/ivy/commits/10df0d5cb9577c7cd3ce6b83d8ec9b01928cb190","created_at":"2022-01-22T20:15:18Z","performed_via_github_app":null},{"id":5937625040,"node_id":"CE_lADOAZPgIc5CQiCpzwAAAAFh6PfQ","url":"https://api.github.com/repos/robpike/ivy/issues/events/5937625040","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2022-01-23T01:01:29Z","state_reason":null,"performed_via_github_app":null},{"id":5937625053,"node_id":"REFE_lADOAZPgIc5CQiCpzwAAAAFh6Pfd","url":"https://api.github.com/repos/robpike/ivy/issues/events/5937625053","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"d7f3d17114aa6e1e68654bed626896c8f1aaae1b","commit_url":"https://api.github.com/repos/robpike/ivy/commits/d7f3d17114aa6e1e68654bed626896c8f1aaae1b","created_at":"2022-01-23T01:01:30Z","performed_via_github_app":null},{"id":5938566896,"node_id":"REFE_lADOAZPgIc5CQiCpzwAAAAFh91bw","url":"https://api.github.com/repos/robpike/ivy/issues/events/5938566896","actor":{"login":"glxxyz","id":12117022,"node_id":"MDQ6VXNlcjEyMTE3MDIy","avatar_url":"https://avatars.githubusercontent.com/u/12117022?v=4","gravatar_id":"","url":"https://api.github.com/users/glxxyz","html_url":"https://github.com/glxxyz","followers_url":"https://api.github.com/users/glxxyz/followers","following_url":"https://api.github.com/users/glxxyz/following{/other_user}","gists_url":"https://api.github.com/users/glxxyz/gists{/gist_id}","starred_url":"https://api.github.com/users/glxxyz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/glxxyz/subscriptions","organizations_url":"https://api.github.com/users/glxxyz/orgs","repos_url":"https://api.github.com/users/glxxyz/repos","events_url":"https://api.github.com/users/glxxyz/events{/privacy}","received_events_url":"https://api.github.com/users/glxxyz/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"3fd4ad2d40fd3603c62f9f3ec35661bd3885bd3b","commit_url":"https://api.github.com/repos/glxxyz/ivy/commits/3fd4ad2d40fd3603c62f9f3ec35661bd3885bd3b","created_at":"2022-01-23T18:25:56Z","performed_via_github_app":null}]234 6346 GET https://api.github.com/repos/robpike/ivy/issues/104/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:04 GMT Etag: W/"392c53588a8bc418dacff7c2fec5dbbc7c4fcee7c7ce605ec509855e1c31a17e" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EF16E:33AD50:665E33C0 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4883 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 117 X-Xss-Protection: 0 [{"id":5937625036,"node_id":"REFE_lADOAZPgIc5CQtWOzwAAAAFh6PfM","url":"https://api.github.com/repos/robpike/ivy/issues/events/5937625036","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"d7f3d17114aa6e1e68654bed626896c8f1aaae1b","commit_url":"https://api.github.com/repos/robpike/ivy/commits/d7f3d17114aa6e1e68654bed626896c8f1aaae1b","created_at":"2022-01-23T01:01:29Z","performed_via_github_app":null},{"id":5937625037,"node_id":"ME_lADOAZPgIc5CQtWOzwAAAAFh6PfN","url":"https://api.github.com/repos/robpike/ivy/issues/events/5937625037","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"d7f3d17114aa6e1e68654bed626896c8f1aaae1b","commit_url":"https://api.github.com/repos/robpike/ivy/commits/d7f3d17114aa6e1e68654bed626896c8f1aaae1b","created_at":"2022-01-23T01:01:29Z","performed_via_github_app":null},{"id":5937625042,"node_id":"CE_lADOAZPgIc5CQtWOzwAAAAFh6PfS","url":"https://api.github.com/repos/robpike/ivy/issues/events/5937625042","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2022-01-23T01:01:29Z","state_reason":null,"performed_via_github_app":null},{"id":5938566894,"node_id":"REFE_lADOAZPgIc5CQtWOzwAAAAFh91bu","url":"https://api.github.com/repos/robpike/ivy/issues/events/5938566894","actor":{"login":"glxxyz","id":12117022,"node_id":"MDQ6VXNlcjEyMTE3MDIy","avatar_url":"https://avatars.githubusercontent.com/u/12117022?v=4","gravatar_id":"","url":"https://api.github.com/users/glxxyz","html_url":"https://github.com/glxxyz","followers_url":"https://api.github.com/users/glxxyz/followers","following_url":"https://api.github.com/users/glxxyz/following{/other_user}","gists_url":"https://api.github.com/users/glxxyz/gists{/gist_id}","starred_url":"https://api.github.com/users/glxxyz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/glxxyz/subscriptions","organizations_url":"https://api.github.com/users/glxxyz/orgs","repos_url":"https://api.github.com/users/glxxyz/repos","events_url":"https://api.github.com/users/glxxyz/events{/privacy}","received_events_url":"https://api.github.com/users/glxxyz/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"3fd4ad2d40fd3603c62f9f3ec35661bd3885bd3b","commit_url":"https://api.github.com/repos/glxxyz/ivy/commits/3fd4ad2d40fd3603c62f9f3ec35661bd3885bd3b","created_at":"2022-01-23T18:25:56Z","performed_via_github_app":null}]234 7320 GET https://api.github.com/repos/robpike/ivy/issues/105/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:04 GMT Etag: W/"f8e4a1de5692665f004a84cc5639eeb4041ad7367edca84162e52d71a18b714b" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EF201:33AE4F:665E33C0 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4882 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 118 X-Xss-Protection: 0 [{"id":5946763490,"node_id":"HRFPE_lADOAZPgIc5CXHk2zwAAAAFidGji","url":"https://api.github.com/repos/robpike/ivy/issues/events/5946763490","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2022-01-25T02:41:20Z","performed_via_github_app":null},{"id":5950174325,"node_id":"HRFPE_lADOAZPgIc5CXHk2zwAAAAFiqHR1","url":"https://api.github.com/repos/robpike/ivy/issues/events/5950174325","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2022-01-25T14:15:06Z","performed_via_github_app":null},{"id":5953441821,"node_id":"REFE_lADOAZPgIc5CXHk2zwAAAAFi2lAd","url":"https://api.github.com/repos/robpike/ivy/issues/events/5953441821","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"0290510180ee94f5732abf39074d5acf2b73432f","commit_url":"https://api.github.com/repos/robpike/ivy/commits/0290510180ee94f5732abf39074d5acf2b73432f","created_at":"2022-01-25T23:27:08Z","performed_via_github_app":null},{"id":5953441823,"node_id":"ME_lADOAZPgIc5CXHk2zwAAAAFi2lAf","url":"https://api.github.com/repos/robpike/ivy/issues/events/5953441823","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"0290510180ee94f5732abf39074d5acf2b73432f","commit_url":"https://api.github.com/repos/robpike/ivy/commits/0290510180ee94f5732abf39074d5acf2b73432f","created_at":"2022-01-25T23:27:08Z","performed_via_github_app":null},{"id":5953441830,"node_id":"CE_lADOAZPgIc5CXHk2zwAAAAFi2lAm","url":"https://api.github.com/repos/robpike/ivy/issues/events/5953441830","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2022-01-25T23:27:09Z","state_reason":null,"performed_via_github_app":null}]234 2474 GET https://api.github.com/repos/robpike/ivy/issues/106/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:04 GMT Etag: W/"8ea8b487afc2d7a7459a80e6829b24d25284992f2edf99953a5670421117c14a" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EF271:33AF08:665E33C0 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4881 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 119 X-Xss-Protection: 0 [{"id":5977979156,"node_id":"CE_lADOAZPgIc5CrDIxzwAAAAFkULkU","url":"https://api.github.com/repos/robpike/ivy/issues/events/5977979156","actor":{"login":"mselh","id":79106885,"node_id":"MDQ6VXNlcjc5MTA2ODg1","avatar_url":"https://avatars.githubusercontent.com/u/79106885?v=4","gravatar_id":"","url":"https://api.github.com/users/mselh","html_url":"https://github.com/mselh","followers_url":"https://api.github.com/users/mselh/followers","following_url":"https://api.github.com/users/mselh/following{/other_user}","gists_url":"https://api.github.com/users/mselh/gists{/gist_id}","starred_url":"https://api.github.com/users/mselh/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mselh/subscriptions","organizations_url":"https://api.github.com/users/mselh/orgs","repos_url":"https://api.github.com/users/mselh/repos","events_url":"https://api.github.com/users/mselh/events{/privacy}","received_events_url":"https://api.github.com/users/mselh/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2022-01-31T04:10:34Z","state_reason":null,"performed_via_github_app":null}]234 2621 GET https://api.github.com/repos/robpike/ivy/issues/107/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:04 GMT Etag: W/"b970cb55e2f16d74335d592cbba5eb878894827b8d9a494ca8def08648829115" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EF2DE:33AFAD:665E33C0 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4880 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 120 X-Xss-Protection: 0 [{"id":6017797792,"node_id":"CE_lADOAZPgIc5DFa_ezwAAAAFmsE6g","url":"https://api.github.com/repos/robpike/ivy/issues/events/6017797792","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"f22dca30f3e342b0365effd92db6711b55ca1c3d","commit_url":"https://api.github.com/repos/robpike/ivy/commits/f22dca30f3e342b0365effd92db6711b55ca1c3d","created_at":"2022-02-07T09:33:28Z","state_reason":null,"performed_via_github_app":null}]234 2621 GET https://api.github.com/repos/robpike/ivy/issues/108/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:05 GMT Etag: W/"f1c0890c3e21ee96ee397ef5fdf5542a471375a9f6bbf2b1a2a86d15e5cc7d27" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EF369:33B09B:665E33C0 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4879 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 121 X-Xss-Protection: 0 [{"id":6086043288,"node_id":"CE_lADOAZPgIc5D9_SSzwAAAAFqwaaY","url":"https://api.github.com/repos/robpike/ivy/issues/events/6086043288","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"4b15d163dd4694904d1b0c07ecfea7cb9fbd4ef3","commit_url":"https://api.github.com/repos/robpike/ivy/commits/4b15d163dd4694904d1b0c07ecfea7cb9fbd4ef3","created_at":"2022-02-16T21:48:04Z","state_reason":null,"performed_via_github_app":null}]234 6391 GET https://api.github.com/repos/robpike/ivy/issues/109/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:05 GMT Etag: W/"d67bb799d55dae30e8bb708d56bf6953411c7d346760e276408da64366d9e3df" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EF3D3:33B15E:665E33C1 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4878 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 122 X-Xss-Protection: 0 [{"id":6263222472,"node_id":"RTE_lADOAZPgIc5FxdlZzwAAAAF1UTDI","url":"https://api.github.com/repos/robpike/ivy/issues/events/6263222472","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2022-03-18T01:22:26Z","rename":{"from":"delete unsed field in scanner and update go.mod version","to":"ivy: update go.mod version to agree with README and update a comment in scanner"},"performed_via_github_app":null},{"id":6263225265,"node_id":"REFE_lADOAZPgIc5FxdlZzwAAAAF1UTux","url":"https://api.github.com/repos/robpike/ivy/issues/events/6263225265","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"214d7a85cd8b9893581e47fb578ba91b82290951","commit_url":"https://api.github.com/repos/robpike/ivy/commits/214d7a85cd8b9893581e47fb578ba91b82290951","created_at":"2022-03-18T01:23:03Z","performed_via_github_app":null},{"id":6263225271,"node_id":"ME_lADOAZPgIc5FxdlZzwAAAAF1UTu3","url":"https://api.github.com/repos/robpike/ivy/issues/events/6263225271","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"214d7a85cd8b9893581e47fb578ba91b82290951","commit_url":"https://api.github.com/repos/robpike/ivy/commits/214d7a85cd8b9893581e47fb578ba91b82290951","created_at":"2022-03-18T01:23:03Z","performed_via_github_app":null},{"id":6263225279,"node_id":"CE_lADOAZPgIc5FxdlZzwAAAAF1UTu_","url":"https://api.github.com/repos/robpike/ivy/issues/events/6263225279","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2022-03-18T01:23:03Z","state_reason":null,"performed_via_github_app":null}]234 4786 GET https://api.github.com/repos/robpike/ivy/issues/110/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:05 GMT Etag: W/"5b75ac9dc74acfea9d82f6d590bf8dcb55d7587906cbce64e2883bad02fff39e" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EF488:33B27F:665E33C1 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4877 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 123 X-Xss-Protection: 0 [{"id":6248363367,"node_id":"MEE_lADOAZPgIc5FxeCzzwAAAAF0bnVn","url":"https://api.github.com/repos/robpike/ivy/issues/events/6248363367","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2022-03-16T06:33:55Z","performed_via_github_app":null},{"id":6248363372,"node_id":"SE_lADOAZPgIc5FxeCzzwAAAAF0bnVs","url":"https://api.github.com/repos/robpike/ivy/issues/events/6248363372","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2022-03-16T06:33:55Z","performed_via_github_app":null},{"id":6265973989,"node_id":"CE_lADOAZPgIc5FxeCzzwAAAAF1eyzl","url":"https://api.github.com/repos/robpike/ivy/issues/events/6265973989","actor":{"login":"wgrr","id":16732610,"node_id":"MDQ6VXNlcjE2NzMyNjEw","avatar_url":"https://avatars.githubusercontent.com/u/16732610?v=4","gravatar_id":"","url":"https://api.github.com/users/wgrr","html_url":"https://github.com/wgrr","followers_url":"https://api.github.com/users/wgrr/followers","following_url":"https://api.github.com/users/wgrr/following{/other_user}","gists_url":"https://api.github.com/users/wgrr/gists{/gist_id}","starred_url":"https://api.github.com/users/wgrr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wgrr/subscriptions","organizations_url":"https://api.github.com/users/wgrr/orgs","repos_url":"https://api.github.com/users/wgrr/repos","events_url":"https://api.github.com/users/wgrr/events{/privacy}","received_events_url":"https://api.github.com/users/wgrr/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2022-03-18T12:50:37Z","state_reason":null,"performed_via_github_app":null}]234 10751 GET https://api.github.com/repos/robpike/ivy/issues/111/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:05 GMT Etag: W/"fefcaef7cf7d5b68afd0974d8f06bfb0aa14a3dcad214f6707ddaed1bda6c70c" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EF4E8:33B338:665E33C1 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4876 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 124 X-Xss-Protection: 0 [{"id":6573137314,"node_id":"MEE_lADOAZPgIc5JS75EzwAAAAGHyh2i","url":"https://api.github.com/repos/robpike/ivy/issues/events/6573137314","actor":{"login":"fumin","id":765222,"node_id":"MDQ6VXNlcjc2NTIyMg==","avatar_url":"https://avatars.githubusercontent.com/u/765222?v=4","gravatar_id":"","url":"https://api.github.com/users/fumin","html_url":"https://github.com/fumin","followers_url":"https://api.github.com/users/fumin/followers","following_url":"https://api.github.com/users/fumin/following{/other_user}","gists_url":"https://api.github.com/users/fumin/gists{/gist_id}","starred_url":"https://api.github.com/users/fumin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fumin/subscriptions","organizations_url":"https://api.github.com/users/fumin/orgs","repos_url":"https://api.github.com/users/fumin/repos","events_url":"https://api.github.com/users/fumin/events{/privacy}","received_events_url":"https://api.github.com/users/fumin/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2022-05-09T13:20:48Z","performed_via_github_app":null},{"id":6573137319,"node_id":"SE_lADOAZPgIc5JS75EzwAAAAGHyh2n","url":"https://api.github.com/repos/robpike/ivy/issues/events/6573137319","actor":{"login":"fumin","id":765222,"node_id":"MDQ6VXNlcjc2NTIyMg==","avatar_url":"https://avatars.githubusercontent.com/u/765222?v=4","gravatar_id":"","url":"https://api.github.com/users/fumin","html_url":"https://github.com/fumin","followers_url":"https://api.github.com/users/fumin/followers","following_url":"https://api.github.com/users/fumin/following{/other_user}","gists_url":"https://api.github.com/users/fumin/gists{/gist_id}","starred_url":"https://api.github.com/users/fumin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fumin/subscriptions","organizations_url":"https://api.github.com/users/fumin/orgs","repos_url":"https://api.github.com/users/fumin/repos","events_url":"https://api.github.com/users/fumin/events{/privacy}","received_events_url":"https://api.github.com/users/fumin/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2022-05-09T13:20:48Z","performed_via_github_app":null},{"id":6573350477,"node_id":"REFE_lADOAZPgIc5JS75EzwAAAAGHzV5N","url":"https://api.github.com/repos/robpike/ivy/issues/events/6573350477","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"fd1d151c42792d0a2b3818be7f1f690121bdeb19","commit_url":"https://api.github.com/repos/rsc/ivy/commits/fd1d151c42792d0a2b3818be7f1f690121bdeb19","created_at":"2022-05-09T13:46:54Z","performed_via_github_app":null},{"id":6573358293,"node_id":"REFE_lADOAZPgIc5JS75EzwAAAAGHzXzV","url":"https://api.github.com/repos/robpike/ivy/issues/events/6573358293","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"d2fe6f37f647379a0237ec0d2c0e4eca93e32335","commit_url":"https://api.github.com/repos/rsc/ivy/commits/d2fe6f37f647379a0237ec0d2c0e4eca93e32335","created_at":"2022-05-09T13:47:45Z","performed_via_github_app":null},{"id":6577084636,"node_id":"MEE_lADOAZPgIc5JS75EzwAAAAGIBljc","url":"https://api.github.com/repos/robpike/ivy/issues/events/6577084636","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2022-05-10T00:38:33Z","performed_via_github_app":null},{"id":6577084637,"node_id":"SE_lADOAZPgIc5JS75EzwAAAAGIBljd","url":"https://api.github.com/repos/robpike/ivy/issues/events/6577084637","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2022-05-10T00:38:33Z","performed_via_github_app":null},{"id":6577385963,"node_id":"CE_lADOAZPgIc5JS75EzwAAAAGICvHr","url":"https://api.github.com/repos/robpike/ivy/issues/events/6577385963","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2022-05-10T01:37:39Z","state_reason":null,"performed_via_github_app":null},{"id":6577386099,"node_id":"REFE_lADOAZPgIc5JS75EzwAAAAGICvJz","url":"https://api.github.com/repos/robpike/ivy/issues/events/6577386099","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"df6b0d39b23fc8f1b72f4e66dbc825eb4f0e77b7","commit_url":"https://api.github.com/repos/robpike/ivy/commits/df6b0d39b23fc8f1b72f4e66dbc825eb4f0e77b7","created_at":"2022-05-10T01:37:40Z","performed_via_github_app":null}]234 5068 GET https://api.github.com/repos/robpike/ivy/issues/112/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:05 GMT Etag: W/"abe9bf7748ca94ca5017e54dca02d32b94f7a92ba277343fa011ffd3169c8d95" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EF56D:33B3ED:665E33C1 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4875 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 125 X-Xss-Protection: 0 [{"id":6577385935,"node_id":"REFE_lADOAZPgIc5JTF0WzwAAAAGICvHP","url":"https://api.github.com/repos/robpike/ivy/issues/events/6577385935","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"df6b0d39b23fc8f1b72f4e66dbc825eb4f0e77b7","commit_url":"https://api.github.com/repos/robpike/ivy/commits/df6b0d39b23fc8f1b72f4e66dbc825eb4f0e77b7","created_at":"2022-05-10T01:37:39Z","performed_via_github_app":null},{"id":6577385939,"node_id":"ME_lADOAZPgIc5JTF0WzwAAAAGICvHT","url":"https://api.github.com/repos/robpike/ivy/issues/events/6577385939","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"df6b0d39b23fc8f1b72f4e66dbc825eb4f0e77b7","commit_url":"https://api.github.com/repos/robpike/ivy/commits/df6b0d39b23fc8f1b72f4e66dbc825eb4f0e77b7","created_at":"2022-05-10T01:37:39Z","performed_via_github_app":null},{"id":6577385982,"node_id":"CE_lADOAZPgIc5JTF0WzwAAAAGICvH-","url":"https://api.github.com/repos/robpike/ivy/issues/events/6577385982","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2022-05-10T01:37:39Z","state_reason":null,"performed_via_github_app":null}]234 2621 GET https://api.github.com/repos/robpike/ivy/issues/113/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:05 GMT Etag: W/"3f56b94f2b362ba3e75b46b1954de36ece2b22d603529ef9efa32af5ce0ed2f9" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EF5D6:33B4A2:665E33C1 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4874 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 126 X-Xss-Protection: 0 [{"id":9781027808,"node_id":"CE_lADOAZPgIc5KgO2FzwAAAAJG_qPg","url":"https://api.github.com/repos/robpike/ivy/issues/events/9781027808","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"f7e4c14f094b7cee09997d1436a336de4bda736f","commit_url":"https://api.github.com/repos/robpike/ivy/commits/f7e4c14f094b7cee09997d1436a336de4bda736f","created_at":"2023-07-11T00:13:04Z","state_reason":null,"performed_via_github_app":null}]234 2496 GET https://api.github.com/repos/robpike/ivy/issues/114/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:05 GMT Etag: W/"321f82ea41bf288abe34f24edff932f249b55495b7da335b182467a742483c7e" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EF639:33B553:665E33C1 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4873 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 127 X-Xss-Protection: 0 [{"id":6838121378,"node_id":"CE_lADOAZPgIc5MF75_zwAAAAGXlXOi","url":"https://api.github.com/repos/robpike/ivy/issues/events/6838121378","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2022-06-20T10:08:43Z","state_reason":null,"performed_via_github_app":null}]234 2496 GET https://api.github.com/repos/robpike/ivy/issues/115/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:05 GMT Etag: W/"eb0a536e72c129958fb6648a84cd2edc20c4d9d60a4163f5bcd053934467b321" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EF6AA:33B5F0:665E33C1 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4872 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 128 X-Xss-Protection: 0 [{"id":7492024424,"node_id":"CE_lADOAZPgIc5S9DUZzwAAAAG-jzho","url":"https://api.github.com/repos/robpike/ivy/issues/events/7492024424","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2022-09-30T04:34:41Z","state_reason":null,"performed_via_github_app":null}]234 2534 GET https://api.github.com/repos/robpike/ivy/issues/116/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:05 GMT Etag: W/"78dec323c725ea9451dfb9b561727a83596ad22a25b6fe7fff82b27aa315a6ce" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EF6F3:33B675:665E33C1 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4871 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 129 X-Xss-Protection: 0 [{"id":7549458311,"node_id":"CE_lADOAZPgIc5TkvmTzwAAAAHB-5eH","url":"https://api.github.com/repos/robpike/ivy/issues/events/7549458311","actor":{"login":"smasher164","id":12636891,"node_id":"MDQ6VXNlcjEyNjM2ODkx","avatar_url":"https://avatars.githubusercontent.com/u/12636891?v=4","gravatar_id":"","url":"https://api.github.com/users/smasher164","html_url":"https://github.com/smasher164","followers_url":"https://api.github.com/users/smasher164/followers","following_url":"https://api.github.com/users/smasher164/following{/other_user}","gists_url":"https://api.github.com/users/smasher164/gists{/gist_id}","starred_url":"https://api.github.com/users/smasher164/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/smasher164/subscriptions","organizations_url":"https://api.github.com/users/smasher164/orgs","repos_url":"https://api.github.com/users/smasher164/repos","events_url":"https://api.github.com/users/smasher164/events{/privacy}","received_events_url":"https://api.github.com/users/smasher164/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2022-10-09T14:12:56Z","state_reason":null,"performed_via_github_app":null}]234 5199 GET https://api.github.com/repos/robpike/ivy/issues/117/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:06 GMT Etag: W/"3519492089055bde7bf88746c2bf082c861021e80f1a3f396f8d79fd4ac3bb86" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EF74E:33B731:665E33C1 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4870 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 130 X-Xss-Protection: 0 [{"id":9698602927,"node_id":"REFE_lADOAZPgIc5XqlL2zwAAAAJCFO-v","url":"https://api.github.com/repos/robpike/ivy/issues/events/9698602927","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"a0c08b0577677d34fa45b66cc1df5a62f480e124","commit_url":"https://api.github.com/repos/robpike/ivy/commits/a0c08b0577677d34fa45b66cc1df5a62f480e124","created_at":"2023-07-02T03:47:36Z","performed_via_github_app":null},{"id":9720135379,"node_id":"REFE_lADOAZPgIc5XqlL2zwAAAAJDXX7T","url":"https://api.github.com/repos/robpike/ivy/issues/events/9720135379","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"2d2539c8b67897869278c95937b428393297828d","commit_url":"https://api.github.com/repos/robpike/ivy/commits/2d2539c8b67897869278c95937b428393297828d","created_at":"2023-07-04T10:21:36Z","performed_via_github_app":null},{"id":9727764948,"node_id":"CE_lADOAZPgIc5XqlL2zwAAAAJD0enU","url":"https://api.github.com/repos/robpike/ivy/issues/events/9727764948","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"07efe1fcb32ffbc8e962390644905ad4d88edec7","commit_url":"https://api.github.com/repos/robpike/ivy/commits/07efe1fcb32ffbc8e962390644905ad4d88edec7","created_at":"2023-07-05T07:19:02Z","state_reason":null,"performed_via_github_app":null}]234 4986 GET https://api.github.com/repos/robpike/ivy/issues/118/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:06 GMT Etag: W/"63609abfb39f09e8a23f4079fe33bf4c222cfbd21cb181f084b6483423739842" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EF7CA:33B7F4:665E33C2 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4869 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 131 X-Xss-Protection: 0 [{"id":7945839755,"node_id":"CE_lADOAZPgIc5X2LMezwAAAAHZm-SL","url":"https://api.github.com/repos/robpike/ivy/issues/events/7945839755","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"d0dfb9e78c433d37d16c9de69905c7eaaaa95d16","commit_url":"https://api.github.com/repos/robpike/ivy/commits/d0dfb9e78c433d37d16c9de69905c7eaaaa95d16","created_at":"2022-12-03T08:47:52Z","state_reason":null,"performed_via_github_app":null},{"id":7945840170,"node_id":"REE_lADOAZPgIc5X2LMezwAAAAHZm-Yq","url":"https://api.github.com/repos/robpike/ivy/issues/events/7945840170","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"reopened","commit_id":null,"commit_url":null,"created_at":"2022-12-03T08:48:16Z","state_reason":"reopened","performed_via_github_app":null},{"id":7945906962,"node_id":"CE_lADOAZPgIc5X2LMezwAAAAHZnOsS","url":"https://api.github.com/repos/robpike/ivy/issues/events/7945906962","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2022-12-03T09:45:49Z","state_reason":null,"performed_via_github_app":null}]234 2621 GET https://api.github.com/repos/robpike/ivy/issues/119/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:06 GMT Etag: W/"efc906d21d0a12dfc5b6b6c7c96c766a524691e267bf7a3ca364cb8c3c4de583" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EF83D:33B899:665E33C2 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4868 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 132 X-Xss-Protection: 0 [{"id":7945839741,"node_id":"CE_lADOAZPgIc5X2RDPzwAAAAHZm-R9","url":"https://api.github.com/repos/robpike/ivy/issues/events/7945839741","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"fcd791a3d7eebd8b77e89c75334a09480b3b9b06","commit_url":"https://api.github.com/repos/robpike/ivy/commits/fcd791a3d7eebd8b77e89c75334a09480b3b9b06","created_at":"2022-12-03T08:47:52Z","state_reason":null,"performed_via_github_app":null}]234 4950 GET https://api.github.com/repos/robpike/ivy/issues/120/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:06 GMT Etag: W/"d888ced30c1c324b31383adc7d784391800dd015fd10128a06d87e80e7efafcd" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EF89F:33B962:665E33C2 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4867 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 133 X-Xss-Protection: 0 [{"id":8093962879,"node_id":"CE_lADOAZPgIc5Z0xlvzwAAAAHicBJ_","url":"https://api.github.com/repos/robpike/ivy/issues/events/8093962879","actor":{"login":"kpym","id":3142701,"node_id":"MDQ6VXNlcjMxNDI3MDE=","avatar_url":"https://avatars.githubusercontent.com/u/3142701?v=4","gravatar_id":"","url":"https://api.github.com/users/kpym","html_url":"https://github.com/kpym","followers_url":"https://api.github.com/users/kpym/followers","following_url":"https://api.github.com/users/kpym/following{/other_user}","gists_url":"https://api.github.com/users/kpym/gists{/gist_id}","starred_url":"https://api.github.com/users/kpym/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kpym/subscriptions","organizations_url":"https://api.github.com/users/kpym/orgs","repos_url":"https://api.github.com/users/kpym/repos","events_url":"https://api.github.com/users/kpym/events{/privacy}","received_events_url":"https://api.github.com/users/kpym/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2022-12-22T09:22:31Z","state_reason":null,"performed_via_github_app":null},{"id":8099603847,"node_id":"REE_lADOAZPgIc5Z0xlvzwAAAAHixiWH","url":"https://api.github.com/repos/robpike/ivy/issues/events/8099603847","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"reopened","commit_id":null,"commit_url":null,"created_at":"2022-12-22T22:36:14Z","state_reason":"reopened","performed_via_github_app":null},{"id":8099607592,"node_id":"CE_lADOAZPgIc5Z0xlvzwAAAAHixjQo","url":"https://api.github.com/repos/robpike/ivy/issues/events/8099607592","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"98277766548f5fcf8a0d4d34f26f26ad2f0089ce","commit_url":"https://api.github.com/repos/robpike/ivy/commits/98277766548f5fcf8a0d4d34f26f26ad2f0089ce","created_at":"2022-12-22T22:37:18Z","state_reason":null,"performed_via_github_app":null}]234 2460 GET https://api.github.com/repos/robpike/ivy/issues/121/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:06 GMT Etag: W/"eb76b15413c5d2f8b20aaba64982f97efdc1103a5d79757a74b41b093b1c959e" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EF915:33BA39:665E33C2 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4866 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 134 X-Xss-Protection: 0 [{"id":8095465780,"node_id":"CE_lADOAZPgIc5Z26gszwAAAAHihwE0","url":"https://api.github.com/repos/robpike/ivy/issues/events/8095465780","actor":{"login":"kpym","id":3142701,"node_id":"MDQ6VXNlcjMxNDI3MDE=","avatar_url":"https://avatars.githubusercontent.com/u/3142701?v=4","gravatar_id":"","url":"https://api.github.com/users/kpym","html_url":"https://github.com/kpym","followers_url":"https://api.github.com/users/kpym/followers","following_url":"https://api.github.com/users/kpym/following{/other_user}","gists_url":"https://api.github.com/users/kpym/gists{/gist_id}","starred_url":"https://api.github.com/users/kpym/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kpym/subscriptions","organizations_url":"https://api.github.com/users/kpym/orgs","repos_url":"https://api.github.com/users/kpym/repos","events_url":"https://api.github.com/users/kpym/events{/privacy}","received_events_url":"https://api.github.com/users/kpym/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2022-12-22T12:41:51Z","state_reason":null,"performed_via_github_app":null}]234 4882 GET https://api.github.com/repos/robpike/ivy/issues/126/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:06 GMT Etag: W/"9e0d6f2d924651d3abf763fc3ed06ab637e9122bbf63bda9cb6bc0f8c79d7faa" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EF985:33BAE7:665E33C2 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4865 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 135 X-Xss-Protection: 0 [{"id":8750712651,"node_id":"MEE_lADOAZPgIc5g1r4mzwAAAAIJlUdL","url":"https://api.github.com/repos/robpike/ivy/issues/events/8750712651","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2023-03-15T03:51:23Z","performed_via_github_app":null},{"id":8750712658,"node_id":"SE_lADOAZPgIc5g1r4mzwAAAAIJlUdS","url":"https://api.github.com/repos/robpike/ivy/issues/events/8750712658","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2023-03-15T03:51:23Z","performed_via_github_app":null},{"id":8751230003,"node_id":"CE_lADOAZPgIc5g1r4mzwAAAAIJnSwz","url":"https://api.github.com/repos/robpike/ivy/issues/events/8751230003","actor":{"login":"carlomunguia","id":43321570,"node_id":"MDQ6VXNlcjQzMzIxNTcw","avatar_url":"https://avatars.githubusercontent.com/u/43321570?v=4","gravatar_id":"","url":"https://api.github.com/users/carlomunguia","html_url":"https://github.com/carlomunguia","followers_url":"https://api.github.com/users/carlomunguia/followers","following_url":"https://api.github.com/users/carlomunguia/following{/other_user}","gists_url":"https://api.github.com/users/carlomunguia/gists{/gist_id}","starred_url":"https://api.github.com/users/carlomunguia/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/carlomunguia/subscriptions","organizations_url":"https://api.github.com/users/carlomunguia/orgs","repos_url":"https://api.github.com/users/carlomunguia/repos","events_url":"https://api.github.com/users/carlomunguia/events{/privacy}","received_events_url":"https://api.github.com/users/carlomunguia/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-03-15T05:34:34Z","state_reason":null,"performed_via_github_app":null}]234 3638 GET https://api.github.com/repos/robpike/ivy/issues/127/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:06 GMT Etag: W/"3e3d75a9e4c5e96031366235b99185051ee0217d2a063b39289eb840594208c2" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EF9F5:33BBBC:665E33C2 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4864 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 136 X-Xss-Protection: 0 [{"id":8821951841,"node_id":"HRFPE_lADOAZPgIc5hdEfEzwAAAAIN1E1h","url":"https://api.github.com/repos/robpike/ivy/issues/events/8821951841","actor":{"login":"wgrr","id":16732610,"node_id":"MDQ6VXNlcjE2NzMyNjEw","avatar_url":"https://avatars.githubusercontent.com/u/16732610?v=4","gravatar_id":"","url":"https://api.github.com/users/wgrr","html_url":"https://github.com/wgrr","followers_url":"https://api.github.com/users/wgrr/followers","following_url":"https://api.github.com/users/wgrr/following{/other_user}","gists_url":"https://api.github.com/users/wgrr/gists{/gist_id}","starred_url":"https://api.github.com/users/wgrr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wgrr/subscriptions","organizations_url":"https://api.github.com/users/wgrr/orgs","repos_url":"https://api.github.com/users/wgrr/repos","events_url":"https://api.github.com/users/wgrr/events{/privacy}","received_events_url":"https://api.github.com/users/wgrr/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2023-03-22T23:15:30Z","performed_via_github_app":null},{"id":9671666434,"node_id":"CE_lADOAZPgIc5hdEfEzwAAAAJAeesC","url":"https://api.github.com/repos/robpike/ivy/issues/events/9671666434","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-06-29T01:53:47Z","state_reason":null,"performed_via_github_app":null}]234 5068 GET https://api.github.com/repos/robpike/ivy/issues/128/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:06 GMT Etag: W/"4d0d51826b63e27268219f89a9cac5a929cd3c0f7ffff13b8ecd27b26c6449b1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EFA74:33BC99:665E33C2 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4863 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 137 X-Xss-Protection: 0 [{"id":9550125227,"node_id":"REFE_lADOAZPgIc5o6izXzwAAAAI5O1ir","url":"https://api.github.com/repos/robpike/ivy/issues/events/9550125227","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"210aa685a514dc62df9b486319ccf0529014ce0f","commit_url":"https://api.github.com/repos/robpike/ivy/commits/210aa685a514dc62df9b486319ccf0529014ce0f","created_at":"2023-06-16T11:05:24Z","performed_via_github_app":null},{"id":9550125237,"node_id":"ME_lADOAZPgIc5o6izXzwAAAAI5O1i1","url":"https://api.github.com/repos/robpike/ivy/issues/events/9550125237","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"210aa685a514dc62df9b486319ccf0529014ce0f","commit_url":"https://api.github.com/repos/robpike/ivy/commits/210aa685a514dc62df9b486319ccf0529014ce0f","created_at":"2023-06-16T11:05:24Z","performed_via_github_app":null},{"id":9550125264,"node_id":"CE_lADOAZPgIc5o6izXzwAAAAI5O1jQ","url":"https://api.github.com/repos/robpike/ivy/issues/events/9550125264","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-06-16T11:05:24Z","state_reason":null,"performed_via_github_app":null}]234 9655 GET https://api.github.com/repos/robpike/ivy/issues/129/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:07 GMT Etag: W/"d5938e554dc59593e9614b853073083e7b88d7408a00116bedb4460293884fa2" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EFAFC:33BD49:665E33C2 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4862 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 138 X-Xss-Protection: 0 [{"id":9569129505,"node_id":"HRFPE_lADOAZPgIc5pGzwszwAAAAI6XVQh","url":"https://api.github.com/repos/robpike/ivy/issues/events/9569129505","actor":{"login":"Blackmane","id":6045018,"node_id":"MDQ6VXNlcjYwNDUwMTg=","avatar_url":"https://avatars.githubusercontent.com/u/6045018?v=4","gravatar_id":"","url":"https://api.github.com/users/Blackmane","html_url":"https://github.com/Blackmane","followers_url":"https://api.github.com/users/Blackmane/followers","following_url":"https://api.github.com/users/Blackmane/following{/other_user}","gists_url":"https://api.github.com/users/Blackmane/gists{/gist_id}","starred_url":"https://api.github.com/users/Blackmane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Blackmane/subscriptions","organizations_url":"https://api.github.com/users/Blackmane/orgs","repos_url":"https://api.github.com/users/Blackmane/repos","events_url":"https://api.github.com/users/Blackmane/events{/privacy}","received_events_url":"https://api.github.com/users/Blackmane/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2023-06-19T14:24:35Z","performed_via_github_app":null},{"id":9572563316,"node_id":"HRFPE_lADOAZPgIc5pGzwszwAAAAI6kbl0","url":"https://api.github.com/repos/robpike/ivy/issues/events/9572563316","actor":{"login":"Blackmane","id":6045018,"node_id":"MDQ6VXNlcjYwNDUwMTg=","avatar_url":"https://avatars.githubusercontent.com/u/6045018?v=4","gravatar_id":"","url":"https://api.github.com/users/Blackmane","html_url":"https://github.com/Blackmane","followers_url":"https://api.github.com/users/Blackmane/followers","following_url":"https://api.github.com/users/Blackmane/following{/other_user}","gists_url":"https://api.github.com/users/Blackmane/gists{/gist_id}","starred_url":"https://api.github.com/users/Blackmane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Blackmane/subscriptions","organizations_url":"https://api.github.com/users/Blackmane/orgs","repos_url":"https://api.github.com/users/Blackmane/repos","events_url":"https://api.github.com/users/Blackmane/events{/privacy}","received_events_url":"https://api.github.com/users/Blackmane/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2023-06-19T21:20:36Z","performed_via_github_app":null},{"id":9582412874,"node_id":"HRFPE_lADOAZPgIc5pGzwszwAAAAI7KARK","url":"https://api.github.com/repos/robpike/ivy/issues/events/9582412874","actor":{"login":"Blackmane","id":6045018,"node_id":"MDQ6VXNlcjYwNDUwMTg=","avatar_url":"https://avatars.githubusercontent.com/u/6045018?v=4","gravatar_id":"","url":"https://api.github.com/users/Blackmane","html_url":"https://github.com/Blackmane","followers_url":"https://api.github.com/users/Blackmane/followers","following_url":"https://api.github.com/users/Blackmane/following{/other_user}","gists_url":"https://api.github.com/users/Blackmane/gists{/gist_id}","starred_url":"https://api.github.com/users/Blackmane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Blackmane/subscriptions","organizations_url":"https://api.github.com/users/Blackmane/orgs","repos_url":"https://api.github.com/users/Blackmane/repos","events_url":"https://api.github.com/users/Blackmane/events{/privacy}","received_events_url":"https://api.github.com/users/Blackmane/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2023-06-20T17:32:40Z","performed_via_github_app":null},{"id":9582511542,"node_id":"HRFPE_lADOAZPgIc5pGzwszwAAAAI7KYW2","url":"https://api.github.com/repos/robpike/ivy/issues/events/9582511542","actor":{"login":"Blackmane","id":6045018,"node_id":"MDQ6VXNlcjYwNDUwMTg=","avatar_url":"https://avatars.githubusercontent.com/u/6045018?v=4","gravatar_id":"","url":"https://api.github.com/users/Blackmane","html_url":"https://github.com/Blackmane","followers_url":"https://api.github.com/users/Blackmane/followers","following_url":"https://api.github.com/users/Blackmane/following{/other_user}","gists_url":"https://api.github.com/users/Blackmane/gists{/gist_id}","starred_url":"https://api.github.com/users/Blackmane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Blackmane/subscriptions","organizations_url":"https://api.github.com/users/Blackmane/orgs","repos_url":"https://api.github.com/users/Blackmane/repos","events_url":"https://api.github.com/users/Blackmane/events{/privacy}","received_events_url":"https://api.github.com/users/Blackmane/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2023-06-20T17:42:03Z","performed_via_github_app":null},{"id":9638744566,"node_id":"CE_lADOAZPgIc5pGzwszwAAAAI-g5H2","url":"https://api.github.com/repos/robpike/ivy/issues/events/9638744566","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-06-26T13:08:06Z","state_reason":null,"performed_via_github_app":null},{"id":9736974784,"node_id":"REE_lADOAZPgIc5pGzwszwAAAAJEXnHA","url":"https://api.github.com/repos/robpike/ivy/issues/events/9736974784","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"reopened","commit_id":null,"commit_url":null,"created_at":"2023-07-05T21:57:41Z","state_reason":null,"performed_via_github_app":null},{"id":9736976739,"node_id":"CE_lADOAZPgIc5pGzwszwAAAAJEXnlj","url":"https://api.github.com/repos/robpike/ivy/issues/events/9736976739","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-07-05T21:58:06Z","state_reason":null,"performed_via_github_app":null}]234 6250 GET https://api.github.com/repos/robpike/ivy/issues/130/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:07 GMT Etag: W/"c3c34d5fa61c78a0a950b61eca4cb4b008067bbc17bcb8283e77181503444b16" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EFB70:33BE18:665E33C3 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4861 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 139 X-Xss-Protection: 0 [{"id":9672535752,"node_id":"REFE_lADOAZPgIc5qGZsPzwAAAAJAhy7I","url":"https://api.github.com/repos/robpike/ivy/issues/events/9672535752","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"e48b9133a51650272ffd68937066d6875961b5ee","commit_url":"https://api.github.com/repos/robpike/ivy/commits/e48b9133a51650272ffd68937066d6875961b5ee","created_at":"2023-06-29T04:46:58Z","performed_via_github_app":null},{"id":9672535762,"node_id":"ME_lADOAZPgIc5qGZsPzwAAAAJAhy7S","url":"https://api.github.com/repos/robpike/ivy/issues/events/9672535762","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"e48b9133a51650272ffd68937066d6875961b5ee","commit_url":"https://api.github.com/repos/robpike/ivy/commits/e48b9133a51650272ffd68937066d6875961b5ee","created_at":"2023-06-29T04:46:58Z","performed_via_github_app":null},{"id":9672535784,"node_id":"CE_lADOAZPgIc5qGZsPzwAAAAJAhy7o","url":"https://api.github.com/repos/robpike/ivy/issues/events/9672535784","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-06-29T04:46:58Z","state_reason":null,"performed_via_github_app":null},{"id":9672620588,"node_id":"HRDE_lADOAZPgIc5qGZsPzwAAAAJAiHos","url":"https://api.github.com/repos/robpike/ivy/issues/events/9672620588","actor":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2023-06-29T04:59:24Z","performed_via_github_app":null}]234 5199 GET https://api.github.com/repos/robpike/ivy/issues/131/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:07 GMT Etag: W/"0be64590e76b602a4379402f3fb12304db4d27b2f21495079a7417275259e214" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EFBD3:33BED6:665E33C3 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4860 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 140 X-Xss-Protection: 0 [{"id":9805356048,"node_id":"REFE_lADOAZPgIc5rPc7BzwAAAAJIcdwQ","url":"https://api.github.com/repos/robpike/ivy/issues/events/9805356048","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"0d0f44f7fa665c18f34bc518715c2e047f198c20","commit_url":"https://api.github.com/repos/robpike/ivy/commits/0d0f44f7fa665c18f34bc518715c2e047f198c20","created_at":"2023-07-13T01:45:30Z","performed_via_github_app":null},{"id":9890575310,"node_id":"REFE_lADOAZPgIc5rPc7BzwAAAAJNhjPO","url":"https://api.github.com/repos/robpike/ivy/issues/events/9890575310","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"79cc16b834ed364a584756ba65b3562fc440ccfb","commit_url":"https://api.github.com/repos/robpike/ivy/commits/79cc16b834ed364a584756ba65b3562fc440ccfb","created_at":"2023-07-22T06:00:15Z","performed_via_github_app":null},{"id":9890678466,"node_id":"CE_lADOAZPgIc5rPc7BzwAAAAJNh8bC","url":"https://api.github.com/repos/robpike/ivy/issues/events/9890678466","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"8b8bebc998dd4fd8048543abc3945425cbbf925d","commit_url":"https://api.github.com/repos/robpike/ivy/commits/8b8bebc998dd4fd8048543abc3945425cbbf925d","created_at":"2023-07-22T07:24:31Z","state_reason":null,"performed_via_github_app":null}]234 8724 GET https://api.github.com/repos/robpike/ivy/issues/132/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:07 GMT Etag: W/"f3cfa9bc9fca55d62045af6c3ce95460af181ee6644e5b7c2f0c61df11c5bcbd" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EFC50:33BF9D:665E33C3 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4859 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 141 X-Xss-Protection: 0 [{"id":9944405401,"node_id":"CE_lADOAZPgIc5siBg4zwAAAAJQu5WZ","url":"https://api.github.com/repos/robpike/ivy/issues/events/9944405401","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"ac8c8db69159bb39b6ccea35bbf7b0d4768548be","commit_url":"https://api.github.com/repos/robpike/ivy/commits/ac8c8db69159bb39b6ccea35bbf7b0d4768548be","created_at":"2023-07-28T06:30:38Z","state_reason":null,"performed_via_github_app":null},{"id":9945058810,"node_id":"MEE_lADOAZPgIc5siBg4zwAAAAJQxY36","url":"https://api.github.com/repos/robpike/ivy/issues/events/9945058810","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2023-07-28T07:48:13Z","performed_via_github_app":null},{"id":9945058820,"node_id":"SE_lADOAZPgIc5siBg4zwAAAAJQxY4E","url":"https://api.github.com/repos/robpike/ivy/issues/events/9945058820","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2023-07-28T07:48:13Z","performed_via_github_app":null},{"id":9946912019,"node_id":"REE_lADOAZPgIc5siBg4zwAAAAJQ4dUT","url":"https://api.github.com/repos/robpike/ivy/issues/events/9946912019","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"reopened","commit_id":null,"commit_url":null,"created_at":"2023-07-28T11:09:52Z","state_reason":"reopened","performed_via_github_app":null},{"id":9946935585,"node_id":"CE_lADOAZPgIc5siBg4zwAAAAJQ4jEh","url":"https://api.github.com/repos/robpike/ivy/issues/events/9946935585","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"1d412ad769812e6f85396cdf64d0a1310c1ea72e","commit_url":"https://api.github.com/repos/robpike/ivy/commits/1d412ad769812e6f85396cdf64d0a1310c1ea72e","created_at":"2023-07-28T11:13:11Z","state_reason":null,"performed_via_github_app":null},{"id":9982137549,"node_id":"REFE_lADOAZPgIc5siBg4zwAAAAJS-1TN","url":"https://api.github.com/repos/robpike/ivy/issues/events/9982137549","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"5e296b64d383089446d15f2a659134b4a7af4ed9","commit_url":"https://api.github.com/repos/robpike/ivy/commits/5e296b64d383089446d15f2a659134b4a7af4ed9","created_at":"2023-08-02T00:07:17Z","performed_via_github_app":null}]234 2621 GET https://api.github.com/repos/robpike/ivy/issues/133/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:07 GMT Etag: W/"2e7b3d4f3a6c8559f8bb679117cc11d9ef206b4d65fcc748cf6f5e3a3a7edf68" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EFCCA:33C068:665E33C3 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4858 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 142 X-Xss-Protection: 0 [{"id":9972222371,"node_id":"CE_lADOAZPgIc5s8iswzwAAAAJSZAmj","url":"https://api.github.com/repos/robpike/ivy/issues/events/9972222371","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"f024fcaf177590116ff01bc63de6592cef8afa5a","commit_url":"https://api.github.com/repos/robpike/ivy/commits/f024fcaf177590116ff01bc63de6592cef8afa5a","created_at":"2023-08-01T06:14:51Z","state_reason":null,"performed_via_github_app":null}]234 3773 GET https://api.github.com/repos/robpike/ivy/issues/134/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:07 GMT Etag: W/"d6cd26e71aed9ff172f7afe6c49ab0f5ef4fa42c682b76f61195d44df9f5fe6d" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EFD2A:33C10B:665E33C3 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4857 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 143 X-Xss-Protection: 0 [{"id":9957723160,"node_id":"CE_lADOAZPgIc5s9sb5zwAAAAJRhswY","url":"https://api.github.com/repos/robpike/ivy/issues/events/9957723160","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"756ab84da627b4d1d3b93c2f72aa81730b3051ca","commit_url":"https://api.github.com/repos/robpike/ivy/commits/756ab84da627b4d1d3b93c2f72aa81730b3051ca","created_at":"2023-07-31T00:10:06Z","state_reason":null,"performed_via_github_app":null},{"id":10064122616,"node_id":"HRDE_lADOAZPgIc5s9sb5zwAAAAJX3lL4","url":"https://api.github.com/repos/robpike/ivy/issues/events/10064122616","actor":{"login":"mndrix","id":43997,"node_id":"MDQ6VXNlcjQzOTk3","avatar_url":"https://avatars.githubusercontent.com/u/43997?v=4","gravatar_id":"","url":"https://api.github.com/users/mndrix","html_url":"https://github.com/mndrix","followers_url":"https://api.github.com/users/mndrix/followers","following_url":"https://api.github.com/users/mndrix/following{/other_user}","gists_url":"https://api.github.com/users/mndrix/gists{/gist_id}","starred_url":"https://api.github.com/users/mndrix/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mndrix/subscriptions","organizations_url":"https://api.github.com/users/mndrix/orgs","repos_url":"https://api.github.com/users/mndrix/repos","events_url":"https://api.github.com/users/mndrix/events{/privacy}","received_events_url":"https://api.github.com/users/mndrix/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2023-08-10T21:18:05Z","performed_via_github_app":null}]234 3914 GET https://api.github.com/repos/robpike/ivy/issues/135/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:07 GMT Etag: W/"55e455f3f8cc52ebfe6766456161f09640cb56e8ba723ce78c022de5f4dd24e9" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EFD99:33C1B1:665E33C3 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4856 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 144 X-Xss-Protection: 0 [{"id":10065823330,"node_id":"REFE_lADOAZPgIc5tG8j_zwAAAAJX-EZi","url":"https://api.github.com/repos/robpike/ivy/issues/events/10065823330","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"71f06f4c7b028aa16159c942501ca01a23727efb","commit_url":"https://api.github.com/repos/robpike/ivy/commits/71f06f4c7b028aa16159c942501ca01a23727efb","created_at":"2023-08-11T04:50:33Z","performed_via_github_app":null},{"id":10469377904,"node_id":"CE_lADOAZPgIc5tG8j_zwAAAAJwBgdw","url":"https://api.github.com/repos/robpike/ivy/issues/events/10469377904","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"ead7718d17fcfb6c524e2a6883c884c24893edf1","commit_url":"https://api.github.com/repos/robpike/ivy/commits/ead7718d17fcfb6c524e2a6883c884c24893edf1","created_at":"2023-09-26T02:57:24Z","state_reason":null,"performed_via_github_app":null}]234 2623 GET https://api.github.com/repos/robpike/ivy/issues/136/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:07 GMT Etag: W/"2df4dac71979f914b8afa97113312b4c026da3e00eb1633842422d0ca9410748" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EFE15:33C28D:665E33C3 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4855 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 145 X-Xss-Protection: 0 [{"id":10013792520,"node_id":"CE_lADOAZPgIc5tI0JIzwAAAAJU3lkI","url":"https://api.github.com/repos/robpike/ivy/issues/events/10013792520","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"d8acf33049000f19f95b027bf44a8dd983e24037","commit_url":"https://api.github.com/repos/robpike/ivy/commits/d8acf33049000f19f95b027bf44a8dd983e24037","created_at":"2023-08-05T00:00:35Z","state_reason":null,"performed_via_github_app":null}]234 5068 GET https://api.github.com/repos/robpike/ivy/issues/137/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:08 GMT Etag: W/"7d1e80087f6490e75bf0f28b077fd3d411bddc434074adfb8c9ac9f2a90384b7" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EFE98:33C36D:665E33C3 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4854 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 146 X-Xss-Protection: 0 [{"id":9992842040,"node_id":"REFE_lADOAZPgIc5tSHS-zwAAAAJTnqs4","url":"https://api.github.com/repos/robpike/ivy/issues/events/9992842040","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"d6af9e73a9990261f120fd136ecc54b44736f338","commit_url":"https://api.github.com/repos/robpike/ivy/commits/d6af9e73a9990261f120fd136ecc54b44736f338","created_at":"2023-08-02T22:22:27Z","performed_via_github_app":null},{"id":9992842045,"node_id":"ME_lADOAZPgIc5tSHS-zwAAAAJTnqs9","url":"https://api.github.com/repos/robpike/ivy/issues/events/9992842045","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"d6af9e73a9990261f120fd136ecc54b44736f338","commit_url":"https://api.github.com/repos/robpike/ivy/commits/d6af9e73a9990261f120fd136ecc54b44736f338","created_at":"2023-08-02T22:22:27Z","performed_via_github_app":null},{"id":9992842055,"node_id":"CE_lADOAZPgIc5tSHS-zwAAAAJTnqtH","url":"https://api.github.com/repos/robpike/ivy/issues/events/9992842055","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-08-02T22:22:27Z","state_reason":null,"performed_via_github_app":null}]234 5074 GET https://api.github.com/repos/robpike/ivy/issues/140/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:08 GMT Etag: W/"ae072b8418b5db37394dbdae3adc4659b1522f8d530115f2996e9fd1f7088ab1" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EFF28:33C453:665E33C4 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4853 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 147 X-Xss-Protection: 0 [{"id":10013843423,"node_id":"REFE_lADOAZPgIc5tfsMvzwAAAAJU3x_f","url":"https://api.github.com/repos/robpike/ivy/issues/events/10013843423","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"f234eff32377fb89e87240e917d62c1f079e7229","commit_url":"https://api.github.com/repos/robpike/ivy/commits/f234eff32377fb89e87240e917d62c1f079e7229","created_at":"2023-08-05T00:19:44Z","performed_via_github_app":null},{"id":10013843424,"node_id":"ME_lADOAZPgIc5tfsMvzwAAAAJU3x_g","url":"https://api.github.com/repos/robpike/ivy/issues/events/10013843424","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"f234eff32377fb89e87240e917d62c1f079e7229","commit_url":"https://api.github.com/repos/robpike/ivy/commits/f234eff32377fb89e87240e917d62c1f079e7229","created_at":"2023-08-05T00:19:44Z","performed_via_github_app":null},{"id":10013843425,"node_id":"CE_lADOAZPgIc5tfsMvzwAAAAJU3x_h","url":"https://api.github.com/repos/robpike/ivy/issues/events/10013843425","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-08-05T00:19:45Z","state_reason":null,"performed_via_github_app":null}]234 2472 GET https://api.github.com/repos/robpike/ivy/issues/141/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:08 GMT Etag: W/"2bc85691a7ea1688e7c916cf3086204fe2adae81b5a85df231d223d1e3476482" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1EFF8F:33C50C:665E33C4 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4852 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 148 X-Xss-Protection: 0 [{"id":10013354993,"node_id":"CE_lADOAZPgIc5thB68zwAAAAJU16vx","url":"https://api.github.com/repos/robpike/ivy/issues/events/10013354993","actor":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-08-04T21:53:07Z","state_reason":null,"performed_via_github_app":null}]234 6220 GET https://api.github.com/repos/robpike/ivy/issues/142/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:08 GMT Etag: W/"b476ae53d6dc19358fd9073c8e72807604221d866f82d062a8e972bc597a38bb" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1F0016:33C5ED:665E33C4 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4851 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 149 X-Xss-Protection: 0 [{"id":10014582248,"node_id":"REFE_lADOAZPgIc5thEemzwAAAAJU6mXo","url":"https://api.github.com/repos/robpike/ivy/issues/events/10014582248","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"dc11e5539c6ac6a9f17da42e196566938efa2f09","commit_url":"https://api.github.com/repos/robpike/ivy/commits/dc11e5539c6ac6a9f17da42e196566938efa2f09","created_at":"2023-08-05T06:34:08Z","performed_via_github_app":null},{"id":10014582253,"node_id":"ME_lADOAZPgIc5thEemzwAAAAJU6mXt","url":"https://api.github.com/repos/robpike/ivy/issues/events/10014582253","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"dc11e5539c6ac6a9f17da42e196566938efa2f09","commit_url":"https://api.github.com/repos/robpike/ivy/commits/dc11e5539c6ac6a9f17da42e196566938efa2f09","created_at":"2023-08-05T06:34:08Z","performed_via_github_app":null},{"id":10014582263,"node_id":"CE_lADOAZPgIc5thEemzwAAAAJU6mX3","url":"https://api.github.com/repos/robpike/ivy/issues/events/10014582263","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-08-05T06:34:08Z","state_reason":null,"performed_via_github_app":null},{"id":10079294622,"node_id":"HRDE_lADOAZPgIc5thEemzwAAAAJYxdSe","url":"https://api.github.com/repos/robpike/ivy/issues/events/10079294622","actor":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2023-08-13T07:54:20Z","performed_via_github_app":null}]234 2623 GET https://api.github.com/repos/robpike/ivy/issues/143/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:08 GMT Etag: W/"2a9bdb77ec7cebb5f9f0bd7c2ebc45c988778d1b56cb7386d6e4070a61bd89ed" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1F009B:33C6D5:665E33C4 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4850 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 150 X-Xss-Protection: 0 [{"id":10014306080,"node_id":"CE_lADOAZPgIc5thJNozwAAAAJU5i8g","url":"https://api.github.com/repos/robpike/ivy/issues/events/10014306080","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"a5f79b8c8d20877b1e0193ec25500233132bb48c","commit_url":"https://api.github.com/repos/robpike/ivy/commits/a5f79b8c8d20877b1e0193ec25500233132bb48c","created_at":"2023-08-05T03:28:39Z","state_reason":null,"performed_via_github_app":null}]234 6220 GET https://api.github.com/repos/robpike/ivy/issues/144/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:08 GMT Etag: W/"fbb53b3abeaa31d9a71d31d4a203922c1df5f41894ed243c2cc0553231140d2b" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1F0111:33C77E:665E33C4 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4849 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 151 X-Xss-Protection: 0 [{"id":10014994138,"node_id":"REFE_lADOAZPgIc5tiNlUzwAAAAJU8K7a","url":"https://api.github.com/repos/robpike/ivy/issues/events/10014994138","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"65de3e1c3a5dbd72ccded587596bd7e3c4e4800f","commit_url":"https://api.github.com/repos/robpike/ivy/commits/65de3e1c3a5dbd72ccded587596bd7e3c4e4800f","created_at":"2023-08-05T10:48:56Z","performed_via_github_app":null},{"id":10014994141,"node_id":"ME_lADOAZPgIc5tiNlUzwAAAAJU8K7d","url":"https://api.github.com/repos/robpike/ivy/issues/events/10014994141","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"65de3e1c3a5dbd72ccded587596bd7e3c4e4800f","commit_url":"https://api.github.com/repos/robpike/ivy/commits/65de3e1c3a5dbd72ccded587596bd7e3c4e4800f","created_at":"2023-08-05T10:48:56Z","performed_via_github_app":null},{"id":10014994153,"node_id":"CE_lADOAZPgIc5tiNlUzwAAAAJU8K7p","url":"https://api.github.com/repos/robpike/ivy/issues/events/10014994153","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-08-05T10:48:56Z","state_reason":null,"performed_via_github_app":null},{"id":10079294689,"node_id":"HRDE_lADOAZPgIc5tiNlUzwAAAAJYxdTh","url":"https://api.github.com/repos/robpike/ivy/issues/events/10079294689","actor":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2023-08-13T07:54:23Z","performed_via_github_app":null}]234 2498 GET https://api.github.com/repos/robpike/ivy/issues/145/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:08 GMT Etag: W/"c47d12b7e56ed5f67a8e691f693499ebfebef2cce292bd150c568bb3f1305429" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1F017E:33C84A:665E33C4 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4848 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 152 X-Xss-Protection: 0 [{"id":10066162887,"node_id":"CE_lADOAZPgIc5tjuDjzwAAAAJX_XTH","url":"https://api.github.com/repos/robpike/ivy/issues/events/10066162887","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-08-11T06:11:13Z","state_reason":null,"performed_via_github_app":null}]234 2609 GET https://api.github.com/repos/robpike/ivy/issues/146/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:08 GMT Etag: W/"ccce3998a6962f72ef856588522469250b3f8d8216ffbb298fdbad00b93199a4" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1F020D:33C954:665E33C4 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4847 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 153 X-Xss-Protection: 0 [{"id":10016759146,"node_id":"REFE_lADOAZPgIc5tjvAOzwAAAAJVC51q","url":"https://api.github.com/repos/robpike/ivy/issues/events/10016759146","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"94a7a4c33fe67c0a9cc3f8ce210d4632fef2d918","commit_url":"https://api.github.com/repos/robpike/ivy/commits/94a7a4c33fe67c0a9cc3f8ce210d4632fef2d918","created_at":"2023-08-06T07:23:06Z","performed_via_github_app":null}]234 6220 GET https://api.github.com/repos/robpike/ivy/issues/148/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:09 GMT Etag: W/"6a78cb3d8c0dc236453d74ebab7c62992763b69afb62c9bfa628a22ba5b6b379" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1F026F:33C9EF:665E33C4 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4846 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 154 X-Xss-Protection: 0 [{"id":10019572957,"node_id":"REFE_lADOAZPgIc5tkSe-zwAAAAJVNozd","url":"https://api.github.com/repos/robpike/ivy/issues/events/10019572957","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"e795d661d5f60a7b7339486d88f2b3eabbccbbc2","commit_url":"https://api.github.com/repos/robpike/ivy/commits/e795d661d5f60a7b7339486d88f2b3eabbccbbc2","created_at":"2023-08-07T05:36:44Z","performed_via_github_app":null},{"id":10019572964,"node_id":"ME_lADOAZPgIc5tkSe-zwAAAAJVNozk","url":"https://api.github.com/repos/robpike/ivy/issues/events/10019572964","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"e795d661d5f60a7b7339486d88f2b3eabbccbbc2","commit_url":"https://api.github.com/repos/robpike/ivy/commits/e795d661d5f60a7b7339486d88f2b3eabbccbbc2","created_at":"2023-08-07T05:36:44Z","performed_via_github_app":null},{"id":10019572973,"node_id":"CE_lADOAZPgIc5tkSe-zwAAAAJVNozt","url":"https://api.github.com/repos/robpike/ivy/issues/events/10019572973","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-08-07T05:36:44Z","state_reason":null,"performed_via_github_app":null},{"id":10079294728,"node_id":"HRDE_lADOAZPgIc5tkSe-zwAAAAJYxdUI","url":"https://api.github.com/repos/robpike/ivy/issues/events/10079294728","actor":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2023-08-13T07:54:25Z","performed_via_github_app":null}]234 8808 GET https://api.github.com/repos/robpike/ivy/issues/149/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:09 GMT Etag: W/"763621a4b745205de5f55a74fb59521d4512280f741ebcd582aa9b9f0910febf" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1F02E5:33CAB6:665E33C5 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4845 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 155 X-Xss-Protection: 0 [{"id":10065730844,"node_id":"REFE_lADOAZPgIc5uBnmXzwAAAAJX9t0c","url":"https://api.github.com/repos/robpike/ivy/issues/events/10065730844","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"5f934e0faacb3790daf5335103fb07c63aca182f","commit_url":"https://api.github.com/repos/robpike/ivy/commits/5f934e0faacb3790daf5335103fb07c63aca182f","created_at":"2023-08-11T04:26:09Z","performed_via_github_app":null},{"id":10065730850,"node_id":"ME_lADOAZPgIc5uBnmXzwAAAAJX9t0i","url":"https://api.github.com/repos/robpike/ivy/issues/events/10065730850","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"5f934e0faacb3790daf5335103fb07c63aca182f","commit_url":"https://api.github.com/repos/robpike/ivy/commits/5f934e0faacb3790daf5335103fb07c63aca182f","created_at":"2023-08-11T04:26:10Z","performed_via_github_app":null},{"id":10065730865,"node_id":"CE_lADOAZPgIc5uBnmXzwAAAAJX9t0x","url":"https://api.github.com/repos/robpike/ivy/issues/events/10065730865","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-08-11T04:26:10Z","state_reason":null,"performed_via_github_app":null},{"id":10065740381,"node_id":"REFE_lADOAZPgIc5uBnmXzwAAAAJX9wJd","url":"https://api.github.com/repos/robpike/ivy/issues/events/10065740381","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"337020a90df908e99abe2d8520cc20e6cbe9c78f","commit_url":"https://api.github.com/repos/robpike/ivy/commits/337020a90df908e99abe2d8520cc20e6cbe9c78f","created_at":"2023-08-11T04:28:53Z","performed_via_github_app":null},{"id":10065741668,"node_id":"REFE_lADOAZPgIc5uBnmXzwAAAAJX9wdk","url":"https://api.github.com/repos/robpike/ivy/issues/events/10065741668","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"38f65b8f882fbf65e26ff7a6bd1a5c9cb8b26abb","commit_url":"https://api.github.com/repos/robpike/ivy/commits/38f65b8f882fbf65e26ff7a6bd1a5c9cb8b26abb","created_at":"2023-08-11T04:29:11Z","performed_via_github_app":null},{"id":10067602796,"node_id":"HRDE_lADOAZPgIc5uBnmXzwAAAAJYE21s","url":"https://api.github.com/repos/robpike/ivy/issues/events/10067602796","actor":{"login":"mndrix","id":43997,"node_id":"MDQ6VXNlcjQzOTk3","avatar_url":"https://avatars.githubusercontent.com/u/43997?v=4","gravatar_id":"","url":"https://api.github.com/users/mndrix","html_url":"https://github.com/mndrix","followers_url":"https://api.github.com/users/mndrix/followers","following_url":"https://api.github.com/users/mndrix/following{/other_user}","gists_url":"https://api.github.com/users/mndrix/gists{/gist_id}","starred_url":"https://api.github.com/users/mndrix/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mndrix/subscriptions","organizations_url":"https://api.github.com/users/mndrix/orgs","repos_url":"https://api.github.com/users/mndrix/repos","events_url":"https://api.github.com/users/mndrix/events{/privacy}","received_events_url":"https://api.github.com/users/mndrix/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2023-08-11T09:18:01Z","performed_via_github_app":null}]234 7328 GET https://api.github.com/repos/robpike/ivy/issues/150/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:09 GMT Etag: W/"c22867c2b67df3e407196fbbd63ddf0853c0d2b818e0bf42c602b5d25f477cd9" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1F0366:33CB8F:665E33C5 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4844 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 156 X-Xss-Protection: 0 [{"id":10072608099,"node_id":"REFE_lADOAZPgIc5uBs6szwAAAAJYX81j","url":"https://api.github.com/repos/robpike/ivy/issues/events/10072608099","actor":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"1693f721bfa22e2d3d0255ab2cf963895eb7e0e2","commit_url":"https://api.github.com/repos/fzipp/ivy/commits/1693f721bfa22e2d3d0255ab2cf963895eb7e0e2","created_at":"2023-08-11T18:13:35Z","performed_via_github_app":null},{"id":10072693663,"node_id":"MEE_lADOAZPgIc5uBs6szwAAAAJYYRuf","url":"https://api.github.com/repos/robpike/ivy/issues/events/10072693663","actor":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2023-08-11T18:25:22Z","performed_via_github_app":null},{"id":10072693671,"node_id":"SE_lADOAZPgIc5uBs6szwAAAAJYYRun","url":"https://api.github.com/repos/robpike/ivy/issues/events/10072693671","actor":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2023-08-11T18:25:22Z","performed_via_github_app":null},{"id":10073911834,"node_id":"CE_lADOAZPgIc5uBs6szwAAAAJYc7Ia","url":"https://api.github.com/repos/robpike/ivy/issues/events/10073911834","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-08-11T21:30:30Z","state_reason":null,"performed_via_github_app":null},{"id":10073911888,"node_id":"REFE_lADOAZPgIc5uBs6szwAAAAJYc7JQ","url":"https://api.github.com/repos/robpike/ivy/issues/events/10073911888","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"45e03f75c77709659189c569685d77d308974919","commit_url":"https://api.github.com/repos/robpike/ivy/commits/45e03f75c77709659189c569685d77d308974919","created_at":"2023-08-11T21:30:30Z","performed_via_github_app":null}]234 2623 GET https://api.github.com/repos/robpike/ivy/issues/151/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:09 GMT Etag: W/"b53823e16d271421232eeb1c7883cdb1a41afc2c9f33aa97f61340a183389322" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1F03D6:33CC76:665E33C5 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4843 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 157 X-Xss-Protection: 0 [{"id":10065823358,"node_id":"CE_lADOAZPgIc5uCcUizwAAAAJX-EZ-","url":"https://api.github.com/repos/robpike/ivy/issues/events/10065823358","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"71f06f4c7b028aa16159c942501ca01a23727efb","commit_url":"https://api.github.com/repos/robpike/ivy/commits/71f06f4c7b028aa16159c942501ca01a23727efb","created_at":"2023-08-11T04:50:33Z","state_reason":null,"performed_via_github_app":null}]234 3682 GET https://api.github.com/repos/robpike/ivy/issues/152/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:09 GMT Etag: W/"1886677d5ff6561f6a659e4a3ec3a6c384c06e71f445e0b22361e141f8858bc2" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1F0488:33CD95:665E33C5 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4842 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 158 X-Xss-Protection: 0 [{"id":10066074104,"node_id":"CE_lADOAZPgIc5uCggwzwAAAAJX_Bn4","url":"https://api.github.com/repos/robpike/ivy/issues/events/10066074104","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-08-11T05:53:29Z","state_reason":null,"performed_via_github_app":null},{"id":10066075158,"node_id":"HRDE_lADOAZPgIc5uCggwzwAAAAJX_B4W","url":"https://api.github.com/repos/robpike/ivy/issues/events/10066075158","actor":{"login":"dmitshur","id":1924134,"node_id":"MDQ6VXNlcjE5MjQxMzQ=","avatar_url":"https://avatars.githubusercontent.com/u/1924134?v=4","gravatar_id":"","url":"https://api.github.com/users/dmitshur","html_url":"https://github.com/dmitshur","followers_url":"https://api.github.com/users/dmitshur/followers","following_url":"https://api.github.com/users/dmitshur/following{/other_user}","gists_url":"https://api.github.com/users/dmitshur/gists{/gist_id}","starred_url":"https://api.github.com/users/dmitshur/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dmitshur/subscriptions","organizations_url":"https://api.github.com/users/dmitshur/orgs","repos_url":"https://api.github.com/users/dmitshur/repos","events_url":"https://api.github.com/users/dmitshur/events{/privacy}","received_events_url":"https://api.github.com/users/dmitshur/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2023-08-11T05:53:43Z","performed_via_github_app":null}]234 6246 GET https://api.github.com/repos/robpike/ivy/issues/153/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:09 GMT Etag: W/"361d96b87c2cba7a68e0e283a8818a2513a1ffa60b8c85a50961ba6bc741ed8f" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1F04F2:33CE43:665E33C5 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4841 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 159 X-Xss-Protection: 0 [{"id":10065741548,"node_id":"REFE_lADOAZPgIc5uCnLzzwAAAAJX9wbs","url":"https://api.github.com/repos/robpike/ivy/issues/events/10065741548","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"38f65b8f882fbf65e26ff7a6bd1a5c9cb8b26abb","commit_url":"https://api.github.com/repos/robpike/ivy/commits/38f65b8f882fbf65e26ff7a6bd1a5c9cb8b26abb","created_at":"2023-08-11T04:29:09Z","performed_via_github_app":null},{"id":10065741552,"node_id":"ME_lADOAZPgIc5uCnLzzwAAAAJX9wbw","url":"https://api.github.com/repos/robpike/ivy/issues/events/10065741552","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"38f65b8f882fbf65e26ff7a6bd1a5c9cb8b26abb","commit_url":"https://api.github.com/repos/robpike/ivy/commits/38f65b8f882fbf65e26ff7a6bd1a5c9cb8b26abb","created_at":"2023-08-11T04:29:09Z","performed_via_github_app":null},{"id":10065741560,"node_id":"CE_lADOAZPgIc5uCnLzzwAAAAJX9wb4","url":"https://api.github.com/repos/robpike/ivy/issues/events/10065741560","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-08-11T04:29:09Z","state_reason":null,"performed_via_github_app":null},{"id":10075436308,"node_id":"HRDE_lADOAZPgIc5uCnLzzwAAAAJYivUU","url":"https://api.github.com/repos/robpike/ivy/issues/events/10075436308","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2023-08-12T03:57:39Z","performed_via_github_app":null}]234 3914 GET https://api.github.com/repos/robpike/ivy/issues/154/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:09 GMT Etag: W/"f63b10f48c99dca17742ae6c62ad6a36c8e0161ac46cfe2dbe09cf23737c8d0b" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1F0567:33CF2A:665E33C5 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4840 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 160 X-Xss-Protection: 0 [{"id":10074388113,"node_id":"REFE_lADOAZPgIc5uEkr9zwAAAAJYevaR","url":"https://api.github.com/repos/robpike/ivy/issues/events/10074388113","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"c694a82ae4e33cd88544f6ec2aaf5f7dff172a37","commit_url":"https://api.github.com/repos/robpike/ivy/commits/c694a82ae4e33cd88544f6ec2aaf5f7dff172a37","created_at":"2023-08-11T23:08:33Z","performed_via_github_app":null},{"id":10074542669,"node_id":"CE_lADOAZPgIc5uEkr9zwAAAAJYfVJN","url":"https://api.github.com/repos/robpike/ivy/issues/events/10074542669","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"588d28d1e6122d1890422ed962b3fd4d54e02fa2","commit_url":"https://api.github.com/repos/robpike/ivy/commits/588d28d1e6122d1890422ed962b3fd4d54e02fa2","created_at":"2023-08-11T23:41:15Z","state_reason":null,"performed_via_github_app":null}]234 8496 GET https://api.github.com/repos/robpike/ivy/issues/155/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:09 GMT Etag: W/"6943d7d6b9808c45b75070b4712f2f2f24137e6bb7ccdf2bf46f757b0d55a1ba" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1F05D8:33CFE8:665E33C5 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4839 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 161 X-Xss-Protection: 0 [{"id":10072719346,"node_id":"MEE_lADOAZPgIc5uGpYTzwAAAAJYYX_y","url":"https://api.github.com/repos/robpike/ivy/issues/events/10072719346","actor":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2023-08-11T18:28:42Z","performed_via_github_app":null},{"id":10072719348,"node_id":"SE_lADOAZPgIc5uGpYTzwAAAAJYYX_0","url":"https://api.github.com/repos/robpike/ivy/issues/events/10072719348","actor":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2023-08-11T18:28:42Z","performed_via_github_app":null},{"id":10073911718,"node_id":"REFE_lADOAZPgIc5uGpYTzwAAAAJYc7Gm","url":"https://api.github.com/repos/robpike/ivy/issues/events/10073911718","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"45e03f75c77709659189c569685d77d308974919","commit_url":"https://api.github.com/repos/robpike/ivy/commits/45e03f75c77709659189c569685d77d308974919","created_at":"2023-08-11T21:30:28Z","performed_via_github_app":null},{"id":10073911724,"node_id":"ME_lADOAZPgIc5uGpYTzwAAAAJYc7Gs","url":"https://api.github.com/repos/robpike/ivy/issues/events/10073911724","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"45e03f75c77709659189c569685d77d308974919","commit_url":"https://api.github.com/repos/robpike/ivy/commits/45e03f75c77709659189c569685d77d308974919","created_at":"2023-08-11T21:30:28Z","performed_via_github_app":null},{"id":10073911733,"node_id":"CE_lADOAZPgIc5uGpYTzwAAAAJYc7G1","url":"https://api.github.com/repos/robpike/ivy/issues/events/10073911733","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-08-11T21:30:29Z","state_reason":null,"performed_via_github_app":null},{"id":10079294783,"node_id":"HRDE_lADOAZPgIc5uGpYTzwAAAAJYxdU_","url":"https://api.github.com/repos/robpike/ivy/issues/events/10079294783","actor":{"login":"fzipp","id":598327,"node_id":"MDQ6VXNlcjU5ODMyNw==","avatar_url":"https://avatars.githubusercontent.com/u/598327?v=4","gravatar_id":"","url":"https://api.github.com/users/fzipp","html_url":"https://github.com/fzipp","followers_url":"https://api.github.com/users/fzipp/followers","following_url":"https://api.github.com/users/fzipp/following{/other_user}","gists_url":"https://api.github.com/users/fzipp/gists{/gist_id}","starred_url":"https://api.github.com/users/fzipp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fzipp/subscriptions","organizations_url":"https://api.github.com/users/fzipp/orgs","repos_url":"https://api.github.com/users/fzipp/repos","events_url":"https://api.github.com/users/fzipp/events{/privacy}","received_events_url":"https://api.github.com/users/fzipp/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2023-08-13T07:54:27Z","performed_via_github_app":null}]234 5074 GET https://api.github.com/repos/robpike/ivy/issues/156/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:10 GMT Etag: W/"1915610229eaf2cc54269855b88152c8cf699942f8a73ed46048e42761e71cbb" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1F0682:33D0F6:665E33C5 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4838 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 162 X-Xss-Protection: 0 [{"id":10163376529,"node_id":"REFE_lADOAZPgIc5u-ePTzwAAAAJdyNGR","url":"https://api.github.com/repos/robpike/ivy/issues/events/10163376529","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"d8b6bd03456731e29a54a274a0fb29333cb7f0f6","commit_url":"https://api.github.com/repos/robpike/ivy/commits/d8b6bd03456731e29a54a274a0fb29333cb7f0f6","created_at":"2023-08-22T21:36:47Z","performed_via_github_app":null},{"id":10163376534,"node_id":"ME_lADOAZPgIc5u-ePTzwAAAAJdyNGW","url":"https://api.github.com/repos/robpike/ivy/issues/events/10163376534","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"d8b6bd03456731e29a54a274a0fb29333cb7f0f6","commit_url":"https://api.github.com/repos/robpike/ivy/commits/d8b6bd03456731e29a54a274a0fb29333cb7f0f6","created_at":"2023-08-22T21:36:47Z","performed_via_github_app":null},{"id":10163376549,"node_id":"CE_lADOAZPgIc5u-ePTzwAAAAJdyNGl","url":"https://api.github.com/repos/robpike/ivy/issues/events/10163376549","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-08-22T21:36:47Z","state_reason":null,"performed_via_github_app":null}]234 5074 GET https://api.github.com/repos/robpike/ivy/issues/157/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:10 GMT Etag: W/"5cc8971b100492f98066653a8cfa2d65b187ee65f83e5437d28793a883dfe680" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1F06F2:33D1BF:665E33C6 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4837 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 163 X-Xss-Protection: 0 [{"id":10163370996,"node_id":"REFE_lADOAZPgIc5u-fZ_zwAAAAJdyLv0","url":"https://api.github.com/repos/robpike/ivy/issues/events/10163370996","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"26507895fa7eea9691fba3155aeab06aceef9a55","commit_url":"https://api.github.com/repos/robpike/ivy/commits/26507895fa7eea9691fba3155aeab06aceef9a55","created_at":"2023-08-22T21:35:54Z","performed_via_github_app":null},{"id":10163371009,"node_id":"ME_lADOAZPgIc5u-fZ_zwAAAAJdyLwB","url":"https://api.github.com/repos/robpike/ivy/issues/events/10163371009","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"26507895fa7eea9691fba3155aeab06aceef9a55","commit_url":"https://api.github.com/repos/robpike/ivy/commits/26507895fa7eea9691fba3155aeab06aceef9a55","created_at":"2023-08-22T21:35:54Z","performed_via_github_app":null},{"id":10163371026,"node_id":"CE_lADOAZPgIc5u-fZ_zwAAAAJdyLwS","url":"https://api.github.com/repos/robpike/ivy/issues/events/10163371026","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-08-22T21:35:55Z","state_reason":null,"performed_via_github_app":null}]234 3900 GET https://api.github.com/repos/robpike/ivy/issues/158/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:10 GMT Etag: W/"3809cd11ebf1389fd26f7d493f959beaa661e6b8234f327f7571cbe517bdbd39" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1F0777:33D2A1:665E33C6 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4836 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 164 X-Xss-Protection: 0 [{"id":10521556656,"node_id":"REFE_lADOAZPgIc5yA2XXzwAAAAJzIjaw","url":"https://api.github.com/repos/robpike/ivy/issues/events/10521556656","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"f0eb8600456919d8988a5d86358b66b5cbde70a5","commit_url":"https://api.github.com/repos/robpike/ivy/commits/f0eb8600456919d8988a5d86358b66b5cbde70a5","created_at":"2023-10-02T03:18:45Z","performed_via_github_app":null},{"id":10521697235,"node_id":"REFE_lADOAZPgIc5yA2XXzwAAAAJzJFvT","url":"https://api.github.com/repos/robpike/ivy/issues/events/10521697235","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"86fbca480032c5ebcbf91b48f557cb500aebf9c3","commit_url":"https://api.github.com/repos/robpike/ivy/commits/86fbca480032c5ebcbf91b48f557cb500aebf9c3","created_at":"2023-10-02T03:57:27Z","performed_via_github_app":null}]234 5074 GET https://api.github.com/repos/robpike/ivy/issues/159/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 200 OK Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Mon, 03 Jun 2024 21:21:10 GMT Etag: W/"993beb63587a3d0a6ffb2180d447b15a32c2e5d17ea97bfa5e4f55c12b84fac4" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Accepted-Oauth-Scopes: repo X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: F49B:3822E6:1F082B:33D3C1:665E33C6 X-Oauth-Scopes: project, public_repo X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4835 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 165 X-Xss-Protection: 0 [{"id":10543516807,"node_id":"REFE_lADOAZPgIc5yreMZzwAAAAJ0cUyH","url":"https://api.github.com/repos/robpike/ivy/issues/events/10543516807","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"25fc5bceedb22fe1f1de97824342cf7e77edb89a","commit_url":"https://api.github.com/repos/robpike/ivy/commits/25fc5bceedb22fe1f1de97824342cf7e77edb89a","created_at":"2023-10-03T21:20:36Z","performed_via_github_app":null},{"id":10543516816,"node_id":"ME_lADOAZPgIc5yreMZzwAAAAJ0cUyQ","url":"https://api.github.com/repos/robpike/ivy/issues/events/10543516816","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"25fc5bceedb22fe1f1de97824342cf7e77edb89a","commit_url":"https://api.github.com/repos/robpike/ivy/commits/25fc5bceedb22fe1f1de97824342cf7e77edb89a","created_at":"2023-10-03T21:20:36Z","performed_via_github_app":null},{"id":10543516825,"node_id":"CE_lADOAZPgIc5yreMZzwAAAAJ0cUyZ","url":"https://api.github.com/repos/robpike/ivy/issues/events/10543516825","actor":{"login":"robpike","id":4324516,"node_id":"MDQ6VXNlcjQzMjQ1MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4324516?v=4","gravatar_id":"","url":"https://api.github.com/users/robpike","html_url":"https://github.com/robpike","followers_url":"https://api.github.com/users/robpike/followers","following_url":"https://api.github.com/users/robpike/following{/other_user}","gists_url":"https://api.github.com/users/robpike/gists{/gist_id}","starred_url":"https://api.github.com/users/robpike/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robpike/subscriptions","organizations_url":"https://api.github.com/users/robpike/orgs","repos_url":"https://api.github.com/users/robpike/repos","events_url":"https://api.github.com/users/robpike/events{/privacy}","received_events_url":"https://api.github.com/users/robpike/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-10-03T21:20:36Z","state_reason":null,"performed_via_github_app":null}]230 1164 GET https://api.github.com/repos/robpike/ivy/issues/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" HTTP/2.0 304 Not Modified Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Date: Mon, 03 Jun 2024 21:21:10 GMT Etag: "d4b87ed06637ea05874773349258463c8abdb2579cd3fc44486130ecfb9a89e2" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP Vary: Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Request-Id: F49B:3822E6:1F08B9:33D4BD:665E33C6 X-Ratelimit-Limit: 5000 X-Ratelimit-Remaining: 4835 X-Ratelimit-Reset: 1717453247 X-Ratelimit-Resource: core X-Ratelimit-Used: 165 X-Xss-Protection: 0
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/github/testdata/markdown2.httprr
httprr trace v1 207 11073 GET https://api.github.com/repos/rsc/markdown/issues?direction=asc&page=1&per_page=100&since=2024-05-21T17%3A56%3A12Z&sort=updated&state=all HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Accept-Ranges: bytes Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: public, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Tue, 04 Jun 2024 02:57:41 GMT Etag: W/"bbf0ac62aac6932c2b52821ed4195a4a49e75760a5c0bf821cd9fb3ed6f72369" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: DEB3:AFE82:1CD1963:302E3EF:665E82A5 X-Ratelimit-Limit: 60 X-Ratelimit-Remaining: 59 X-Ratelimit-Reset: 1717473461 X-Ratelimit-Resource: core X-Ratelimit-Used: 1 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/16","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/16/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/16/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/16/events","html_url":"https://github.com/rsc/markdown/issues/16","id":2189605425,"node_id":"I_kwDOKnFwjc6Cgrox","number":16,"title":"I'd like to get pretty-printed tables","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-03-15T23:24:56Z","updated_at":"2024-06-03T21:56:44Z","closed_at":"2024-06-03T21:56:43Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"I like my tables to look something like:\r\n\r\n```none\r\n| foo col | bar col | baz col |\r\n| :------ | :-----: | ------: |\r\n| 1 | 2 | 3 |\r\n| a | b | c |\r\n```\r\n\r\nwith each column's cells padded to fit the max width of that column and match the column's alignment.\r\n\r\nI'll be doing a PR for this. Can mdfmt turn on the Table option in the parser by default, or with a flag?","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/16/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/16/timeline","performed_via_github_app":null,"state_reason":"completed"},{"url":"https://api.github.com/repos/rsc/markdown/issues/19","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/19/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/19/events","html_url":"https://github.com/rsc/markdown/issues/19","id":2308816936,"node_id":"I_kwDOKnFwjc6JncAo","number":19,"title":"feature: synthesize lowercase anchors for heading","user":{"login":"adonovan","id":5658175,"node_id":"MDQ6VXNlcjU2NTgxNzU=","avatar_url":"https://avatars.githubusercontent.com/u/5658175?v=4","gravatar_id":"","url":"https://api.github.com/users/adonovan","html_url":"https://github.com/adonovan","followers_url":"https://api.github.com/users/adonovan/followers","following_url":"https://api.github.com/users/adonovan/following{/other_user}","gists_url":"https://api.github.com/users/adonovan/gists{/gist_id}","starred_url":"https://api.github.com/users/adonovan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adonovan/subscriptions","organizations_url":"https://api.github.com/users/adonovan/orgs","repos_url":"https://api.github.com/users/adonovan/repos","events_url":"https://api.github.com/users/adonovan/events{/privacy}","received_events_url":"https://api.github.com/users/adonovan/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-05-21T17:56:12Z","updated_at":"2024-06-03T21:58:36Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"GitHub's markdown renderer synthesizes lowercase anchors for headings. For example, this heading, `## Diagnostic`, can be found using either of these two URLs, which differ in the case of their fragment ID:\r\n\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#diagnostic\r\nhttps://github.com/golang/tools/blob/master/gopls/doc/settings.md#Diagnostic\r\n\r\nPerhaps your markdown renderer (which has been really useful--thanks!) could do the same.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/19/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/19/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/17","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/17/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/17/events","html_url":"https://github.com/rsc/markdown/pull/17","id":2189605911,"node_id":"PR_kwDOKnFwjc5pzlwt","number":17,"title":"Pretty-print tables in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2024-03-15T23:25:47Z","updated_at":"2024-06-04T01:56:31Z","closed_at":"2024-06-03T21:56:31Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/17","html_url":"https://github.com/rsc/markdown/pull/17","diff_url":"https://github.com/rsc/markdown/pull/17.diff","patch_url":"https://github.com/rsc/markdown/pull/17.patch","merged_at":null},"body":"Addressing #16.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/17/timeline","performed_via_github_app":null,"state_reason":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/18","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/18/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/18/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/18/events","html_url":"https://github.com/rsc/markdown/pull/18","id":2276848742,"node_id":"PR_kwDOKnFwjc5ubgV0","number":18,"title":"markdown: emit Info in CodeBlock markdown","user":{"login":"juliaogris","id":1596871,"node_id":"MDQ6VXNlcjE1OTY4NzE=","avatar_url":"https://avatars.githubusercontent.com/u/1596871?v=4","gravatar_id":"","url":"https://api.github.com/users/juliaogris","html_url":"https://github.com/juliaogris","followers_url":"https://api.github.com/users/juliaogris/followers","following_url":"https://api.github.com/users/juliaogris/following{/other_user}","gists_url":"https://api.github.com/users/juliaogris/gists{/gist_id}","starred_url":"https://api.github.com/users/juliaogris/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/juliaogris/subscriptions","organizations_url":"https://api.github.com/users/juliaogris/orgs","repos_url":"https://api.github.com/users/juliaogris/repos","events_url":"https://api.github.com/users/juliaogris/events{/privacy}","received_events_url":"https://api.github.com/users/juliaogris/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2024-05-03T03:59:00Z","updated_at":"2024-06-04T02:57:22Z","closed_at":"2024-06-03T21:40:04Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/18","html_url":"https://github.com/rsc/markdown/pull/18","diff_url":"https://github.com/rsc/markdown/pull/18.diff","patch_url":"https://github.com/rsc/markdown/pull/18.patch","merged_at":"2024-06-03T21:40:04Z"},"body":"Emit the Info field of CodeBlock in the CodeBlock.printMardown function so \r\nthat a round trip from markdown to markdown will preserve the language Info.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/18/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/18/timeline","performed_via_github_app":null,"state_reason":null}]193 10873 GET https://api.github.com/repos/rsc/markdown/issues/comments?direction=asc&page=1&since=2024-05-06T22%3A16%3A58Z&sort=updated HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 HTTP/2.0 200 OK Accept-Ranges: bytes Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: public, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Tue, 04 Jun 2024 02:57:41 GMT Etag: W/"babbbe6bdcd63badd2491465c62d3d3e09496555ced5b078663851d37e36c29b" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: DEB3:AFE82:1CD19C2:302E48E:665E82A5 X-Ratelimit-Limit: 60 X-Ratelimit-Remaining: 58 X-Ratelimit-Reset: 1717473461 X-Ratelimit-Resource: core X-Ratelimit-Used: 2 X-Xss-Protection: 0 [{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2097019306","html_url":"https://github.com/rsc/markdown/pull/18#issuecomment-2097019306","issue_url":"https://api.github.com/repos/rsc/markdown/issues/18","id":2097019306,"node_id":"IC_kwDOKnFwjc58_fmq","user":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"created_at":"2024-05-06T22:16:58Z","updated_at":"2024-05-06T22:16:58Z","author_association":"COLLABORATOR","body":"LGTM, will let Russ approve.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2097019306/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146194573","html_url":"https://github.com/rsc/markdown/pull/17#issuecomment-2146194573","issue_url":"https://api.github.com/repos/rsc/markdown/issues/17","id":2146194573,"node_id":"IC_kwDOKnFwjc5_7FSN","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-06-03T21:56:31Z","updated_at":"2024-06-03T21:56:31Z","author_association":"OWNER","body":"Thanks, I tweaked the code a bit to avoid some temporary strings and to support Unicode better and merged it.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146194573/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146194902","html_url":"https://github.com/rsc/markdown/issues/16#issuecomment-2146194902","issue_url":"https://api.github.com/repos/rsc/markdown/issues/16","id":2146194902,"node_id":"IC_kwDOKnFwjc5_7FXW","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-06-03T21:56:43Z","updated_at":"2024-06-03T21:56:43Z","author_association":"OWNER","body":"Merged #17.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146194902/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146197528","html_url":"https://github.com/rsc/markdown/issues/19#issuecomment-2146197528","issue_url":"https://api.github.com/repos/rsc/markdown/issues/19","id":2146197528,"node_id":"IC_kwDOKnFwjc5_7GAY","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-06-03T21:58:35Z","updated_at":"2024-06-03T21:58:35Z","author_association":"OWNER","body":"Is the GitHub algorithm for turning heading text into anchor IDs documented somewhere?\r\nI don't mind adding it as an option if I can find the spec.\r\nNot sure about two choices, but one automatic choice would be good.\r\n(GitHub actually supports any casing at all: https://github.com/golang/tools/blob/master/gopls/doc/settings.md#DiAgNoStIc\r\nClearly JS is doing that.)\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146197528/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146421109","html_url":"https://github.com/rsc/markdown/pull/17#issuecomment-2146421109","issue_url":"https://api.github.com/repos/rsc/markdown/issues/17","id":2146421109,"node_id":"IC_kwDOKnFwjc5_78l1","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"created_at":"2024-06-04T01:56:30Z","updated_at":"2024-06-04T01:56:30Z","author_association":"CONTRIBUTOR","body":"@rsc, thank you for the comment and the changes. I've fixed the Unicode-vs-string error in other code bases, can't believe I missed that :) I also see what you did to obviate the temp strings. Thanks!","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146421109/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274","html_url":"https://github.com/rsc/markdown/pull/18#issuecomment-2146475274","issue_url":"https://api.github.com/repos/rsc/markdown/issues/18","id":2146475274,"node_id":"IC_kwDOKnFwjc5_8J0K","user":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"created_at":"2024-06-04T02:57:21Z","updated_at":"2024-06-04T02:57:21Z","author_association":"OWNER","body":"Thanks very much!\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/comments/2146475274/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}]231 145297 GET https://api.github.com/repos/rsc/markdown/issues/events?page=1&per_page=100 HTTP/1.1 Host: api.github.com User-Agent: Go-http-client/1.1 If-None-Match: W/"b32162ef721268ee8773fa3227c3895dbc769136adf7a51b10b7d6bcefc94ddc" HTTP/2.0 200 OK Accept-Ranges: bytes Access-Control-Allow-Origin: * Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset Cache-Control: public, max-age=60, s-maxage=60 Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 Date: Tue, 04 Jun 2024 02:57:41 GMT Etag: W/"5f8cdae3e0a577c993191ba0140691c76a0df6b824580833fc3662906ef5aaf3" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: nosniff X-Frame-Options: deny X-Github-Api-Version-Selected: 2022-11-28 X-Github-Media-Type: github.v3; format=json X-Github-Request-Id: DEB3:AFE82:1CD1A27:302E51E:665E82A5 X-Ratelimit-Limit: 60 X-Ratelimit-Remaining: 57 X-Ratelimit-Reset: 1717473461 X-Ratelimit-Resource: core X-Ratelimit-Used: 3 X-Xss-Protection: 0 [{"id":13028910702,"node_id":"SE_lADOKnFwjc6CgrwXzwAAAAMIlWZu","url":"https://api.github.com/repos/rsc/markdown/issues/events/13028910702","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"subscribed","commit_id":null,"commit_url":null,"created_at":"2024-06-04T01:56:31Z","issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/17","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/17/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/17/events","html_url":"https://github.com/rsc/markdown/pull/17","id":2189605911,"node_id":"PR_kwDOKnFwjc5pzlwt","number":17,"title":"Pretty-print tables in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2024-03-15T23:25:47Z","updated_at":"2024-06-04T01:56:31Z","closed_at":"2024-06-03T21:56:31Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/17","html_url":"https://github.com/rsc/markdown/pull/17","diff_url":"https://github.com/rsc/markdown/pull/17.diff","patch_url":"https://github.com/rsc/markdown/pull/17.patch","merged_at":null},"body":"Addressing #16.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/17/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":13028910699,"node_id":"MEE_lADOKnFwjc6CgrwXzwAAAAMIlWZr","url":"https://api.github.com/repos/rsc/markdown/issues/events/13028910699","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"mentioned","commit_id":null,"commit_url":null,"created_at":"2024-06-04T01:56:31Z","issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/17","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/17/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/17/events","html_url":"https://github.com/rsc/markdown/pull/17","id":2189605911,"node_id":"PR_kwDOKnFwjc5pzlwt","number":17,"title":"Pretty-print tables in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2024-03-15T23:25:47Z","updated_at":"2024-06-04T01:56:31Z","closed_at":"2024-06-03T21:56:31Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/17","html_url":"https://github.com/rsc/markdown/pull/17","diff_url":"https://github.com/rsc/markdown/pull/17.diff","patch_url":"https://github.com/rsc/markdown/pull/17.patch","merged_at":null},"body":"Addressing #16.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/17/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":13027435265,"node_id":"CE_lADOKnFwjc6CgroxzwAAAAMIfuMB","url":"https://api.github.com/repos/rsc/markdown/issues/events/13027435265","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2024-06-03T21:56:43Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/16","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/16/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/16/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/16/events","html_url":"https://github.com/rsc/markdown/issues/16","id":2189605425,"node_id":"I_kwDOKnFwjc6Cgrox","number":16,"title":"I'd like to get pretty-printed tables","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-03-15T23:24:56Z","updated_at":"2024-06-03T21:56:44Z","closed_at":"2024-06-03T21:56:43Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"I like my tables to look something like:\r\n\r\n```none\r\n| foo col | bar col | baz col |\r\n| :------ | :-----: | ------: |\r\n| 1 | 2 | 3 |\r\n| a | b | c |\r\n```\r\n\r\nwith each column's cells padded to fit the max width of that column and match the column's alignment.\r\n\r\nI'll be doing a PR for this. Can mdfmt turn on the Table option in the parser by default, or with a flag?","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/16/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/16/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":13027432818,"node_id":"CE_lADOKnFwjc6CgrwXzwAAAAMIftly","url":"https://api.github.com/repos/rsc/markdown/issues/events/13027432818","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2024-06-03T21:56:31Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/17","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/17/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/17/events","html_url":"https://github.com/rsc/markdown/pull/17","id":2189605911,"node_id":"PR_kwDOKnFwjc5pzlwt","number":17,"title":"Pretty-print tables in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2024-03-15T23:25:47Z","updated_at":"2024-06-04T01:56:31Z","closed_at":"2024-06-03T21:56:31Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/17","html_url":"https://github.com/rsc/markdown/pull/17","diff_url":"https://github.com/rsc/markdown/pull/17.diff","patch_url":"https://github.com/rsc/markdown/pull/17.patch","merged_at":null},"body":"Addressing #16.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/17/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":13027289466,"node_id":"REFE_lADOKnFwjc6HtfRmzwAAAAMIfKl6","url":"https://api.github.com/repos/rsc/markdown/issues/events/13027289466","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"6c64a5ea723ad6221796001b8e226bfed2a9255e","commit_url":"https://api.github.com/repos/rsc/markdown/commits/6c64a5ea723ad6221796001b8e226bfed2a9255e","created_at":"2024-06-03T21:40:05Z","issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/18","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/18/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/18/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/18/events","html_url":"https://github.com/rsc/markdown/pull/18","id":2276848742,"node_id":"PR_kwDOKnFwjc5ubgV0","number":18,"title":"markdown: emit Info in CodeBlock markdown","user":{"login":"juliaogris","id":1596871,"node_id":"MDQ6VXNlcjE1OTY4NzE=","avatar_url":"https://avatars.githubusercontent.com/u/1596871?v=4","gravatar_id":"","url":"https://api.github.com/users/juliaogris","html_url":"https://github.com/juliaogris","followers_url":"https://api.github.com/users/juliaogris/followers","following_url":"https://api.github.com/users/juliaogris/following{/other_user}","gists_url":"https://api.github.com/users/juliaogris/gists{/gist_id}","starred_url":"https://api.github.com/users/juliaogris/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/juliaogris/subscriptions","organizations_url":"https://api.github.com/users/juliaogris/orgs","repos_url":"https://api.github.com/users/juliaogris/repos","events_url":"https://api.github.com/users/juliaogris/events{/privacy}","received_events_url":"https://api.github.com/users/juliaogris/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2024-05-03T03:59:00Z","updated_at":"2024-06-04T02:57:22Z","closed_at":"2024-06-03T21:40:04Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/18","html_url":"https://github.com/rsc/markdown/pull/18","diff_url":"https://github.com/rsc/markdown/pull/18.diff","patch_url":"https://github.com/rsc/markdown/pull/18.patch","merged_at":"2024-06-03T21:40:04Z"},"body":"Emit the Info field of CodeBlock in the CodeBlock.printMardown function so \r\nthat a round trip from markdown to markdown will preserve the language Info.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/18/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/18/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":13027289270,"node_id":"CE_lADOKnFwjc6HtfRmzwAAAAMIfKi2","url":"https://api.github.com/repos/rsc/markdown/issues/events/13027289270","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2024-06-03T21:40:04Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/18","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/18/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/18/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/18/events","html_url":"https://github.com/rsc/markdown/pull/18","id":2276848742,"node_id":"PR_kwDOKnFwjc5ubgV0","number":18,"title":"markdown: emit Info in CodeBlock markdown","user":{"login":"juliaogris","id":1596871,"node_id":"MDQ6VXNlcjE1OTY4NzE=","avatar_url":"https://avatars.githubusercontent.com/u/1596871?v=4","gravatar_id":"","url":"https://api.github.com/users/juliaogris","html_url":"https://github.com/juliaogris","followers_url":"https://api.github.com/users/juliaogris/followers","following_url":"https://api.github.com/users/juliaogris/following{/other_user}","gists_url":"https://api.github.com/users/juliaogris/gists{/gist_id}","starred_url":"https://api.github.com/users/juliaogris/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/juliaogris/subscriptions","organizations_url":"https://api.github.com/users/juliaogris/orgs","repos_url":"https://api.github.com/users/juliaogris/repos","events_url":"https://api.github.com/users/juliaogris/events{/privacy}","received_events_url":"https://api.github.com/users/juliaogris/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2024-05-03T03:59:00Z","updated_at":"2024-06-04T02:57:22Z","closed_at":"2024-06-03T21:40:04Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/18","html_url":"https://github.com/rsc/markdown/pull/18","diff_url":"https://github.com/rsc/markdown/pull/18.diff","patch_url":"https://github.com/rsc/markdown/pull/18.patch","merged_at":"2024-06-03T21:40:04Z"},"body":"Emit the Info field of CodeBlock in the CodeBlock.printMardown function so \r\nthat a round trip from markdown to markdown will preserve the language Info.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/18/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/18/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":13027289256,"node_id":"ME_lADOKnFwjc6HtfRmzwAAAAMIfKio","url":"https://api.github.com/repos/rsc/markdown/issues/events/13027289256","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"6c64a5ea723ad6221796001b8e226bfed2a9255e","commit_url":"https://api.github.com/repos/rsc/markdown/commits/6c64a5ea723ad6221796001b8e226bfed2a9255e","created_at":"2024-06-03T21:40:04Z","issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/18","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/18/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/18/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/18/events","html_url":"https://github.com/rsc/markdown/pull/18","id":2276848742,"node_id":"PR_kwDOKnFwjc5ubgV0","number":18,"title":"markdown: emit Info in CodeBlock markdown","user":{"login":"juliaogris","id":1596871,"node_id":"MDQ6VXNlcjE1OTY4NzE=","avatar_url":"https://avatars.githubusercontent.com/u/1596871?v=4","gravatar_id":"","url":"https://api.github.com/users/juliaogris","html_url":"https://github.com/juliaogris","followers_url":"https://api.github.com/users/juliaogris/followers","following_url":"https://api.github.com/users/juliaogris/following{/other_user}","gists_url":"https://api.github.com/users/juliaogris/gists{/gist_id}","starred_url":"https://api.github.com/users/juliaogris/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/juliaogris/subscriptions","organizations_url":"https://api.github.com/users/juliaogris/orgs","repos_url":"https://api.github.com/users/juliaogris/repos","events_url":"https://api.github.com/users/juliaogris/events{/privacy}","received_events_url":"https://api.github.com/users/juliaogris/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2024-05-03T03:59:00Z","updated_at":"2024-06-04T02:57:22Z","closed_at":"2024-06-03T21:40:04Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/18","html_url":"https://github.com/rsc/markdown/pull/18","diff_url":"https://github.com/rsc/markdown/pull/18.diff","patch_url":"https://github.com/rsc/markdown/pull/18.patch","merged_at":"2024-06-03T21:40:04Z"},"body":"Emit the Info field of CodeBlock in the CodeBlock.printMardown function so \r\nthat a round trip from markdown to markdown will preserve the language Info.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/18/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/18/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":12721108829,"node_id":"RRE_lADOKnFwjc6HtfRmzwAAAAL2PLdd","url":"https://api.github.com/repos/rsc/markdown/issues/events/12721108829","actor":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"event":"review_requested","commit_id":null,"commit_url":null,"created_at":"2024-05-06T22:16:49Z","review_requester":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"requested_reviewer":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/18","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/18/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/18/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/18/events","html_url":"https://github.com/rsc/markdown/pull/18","id":2276848742,"node_id":"PR_kwDOKnFwjc5ubgV0","number":18,"title":"markdown: emit Info in CodeBlock markdown","user":{"login":"juliaogris","id":1596871,"node_id":"MDQ6VXNlcjE1OTY4NzE=","avatar_url":"https://avatars.githubusercontent.com/u/1596871?v=4","gravatar_id":"","url":"https://api.github.com/users/juliaogris","html_url":"https://github.com/juliaogris","followers_url":"https://api.github.com/users/juliaogris/followers","following_url":"https://api.github.com/users/juliaogris/following{/other_user}","gists_url":"https://api.github.com/users/juliaogris/gists{/gist_id}","starred_url":"https://api.github.com/users/juliaogris/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/juliaogris/subscriptions","organizations_url":"https://api.github.com/users/juliaogris/orgs","repos_url":"https://api.github.com/users/juliaogris/repos","events_url":"https://api.github.com/users/juliaogris/events{/privacy}","received_events_url":"https://api.github.com/users/juliaogris/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2024-05-03T03:59:00Z","updated_at":"2024-06-04T02:57:22Z","closed_at":"2024-06-03T21:40:04Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/18","html_url":"https://github.com/rsc/markdown/pull/18","diff_url":"https://github.com/rsc/markdown/pull/18.diff","patch_url":"https://github.com/rsc/markdown/pull/18.patch","merged_at":"2024-06-03T21:40:04Z"},"body":"Emit the Info field of CodeBlock in the CodeBlock.printMardown function so \r\nthat a round trip from markdown to markdown will preserve the language Info.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/18/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/18/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":12137688071,"node_id":"RTE_lADOKnFwjc6CgrwXzwAAAALTdmwH","url":"https://api.github.com/repos/rsc/markdown/issues/events/12137688071","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2024-03-15T23:43:50Z","rename":{"from":"Pretty-print tables","to":"Pretty-print tables in Markdown"},"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/17","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/17/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/17/events","html_url":"https://github.com/rsc/markdown/pull/17","id":2189605911,"node_id":"PR_kwDOKnFwjc5pzlwt","number":17,"title":"Pretty-print tables in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2024-03-15T23:25:47Z","updated_at":"2024-06-04T01:56:31Z","closed_at":"2024-06-03T21:56:31Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/17","html_url":"https://github.com/rsc/markdown/pull/17","diff_url":"https://github.com/rsc/markdown/pull/17.diff","patch_url":"https://github.com/rsc/markdown/pull/17.patch","merged_at":null},"body":"Addressing #16.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/17/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":12137686933,"node_id":"RTE_lADOKnFwjc6CgrwXzwAAAALTdmeV","url":"https://api.github.com/repos/rsc/markdown/issues/events/12137686933","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2024-03-15T23:43:26Z","rename":{"from":"Tables are pretty printing","to":"Pretty-print tables"},"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/17","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/17/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/17/events","html_url":"https://github.com/rsc/markdown/pull/17","id":2189605911,"node_id":"PR_kwDOKnFwjc5pzlwt","number":17,"title":"Pretty-print tables in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2024-03-15T23:25:47Z","updated_at":"2024-06-04T01:56:31Z","closed_at":"2024-06-03T21:56:31Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/17","html_url":"https://github.com/rsc/markdown/pull/17","diff_url":"https://github.com/rsc/markdown/pull/17.diff","patch_url":"https://github.com/rsc/markdown/pull/17.patch","merged_at":null},"body":"Addressing #16.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/17/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":12122508555,"node_id":"HRDE_lADOKnFwjc6CFtX-zwAAAALSjs0L","url":"https://api.github.com/repos/rsc/markdown/issues/events/12122508555","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2024-03-14T18:43:15Z","issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/14","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/14/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/14/events","html_url":"https://github.com/rsc/markdown/pull/14","id":2182534654,"node_id":"PR_kwDOKnFwjc5pbW8-","number":14,"title":"Render reference links in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-03-12T19:38:02Z","updated_at":"2024-03-14T18:43:15Z","closed_at":"2024-03-14T18:41:54Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/14","html_url":"https://github.com/rsc/markdown/pull/14","diff_url":"https://github.com/rsc/markdown/pull/14.diff","patch_url":"https://github.com/rsc/markdown/pull/14.patch","merged_at":null},"body":"Attempting to address #13: correctly render reference links ([full], [collapsed], [shortcut]) in Markdown.\r\n\r\n[full]: https://spec.commonmark.org/0.31.2/#full-reference-link\r\n[collapsed]: https://spec.commonmark.org/0.31.2/#collapsed-reference-link\r\n[shortcut]: https://spec.commonmark.org/0.31.2/#shortcut-reference-link","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/14/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/14/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":12122501258,"node_id":"HRRE_lADOKnFwjc6CFtX-zwAAAALSjrCK","url":"https://api.github.com/repos/rsc/markdown/issues/events/12122501258","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"head_ref_restored","commit_id":null,"commit_url":null,"created_at":"2024-03-14T18:42:29Z","issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/14","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/14/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/14/events","html_url":"https://github.com/rsc/markdown/pull/14","id":2182534654,"node_id":"PR_kwDOKnFwjc5pbW8-","number":14,"title":"Render reference links in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-03-12T19:38:02Z","updated_at":"2024-03-14T18:43:15Z","closed_at":"2024-03-14T18:41:54Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/14","html_url":"https://github.com/rsc/markdown/pull/14","diff_url":"https://github.com/rsc/markdown/pull/14.diff","patch_url":"https://github.com/rsc/markdown/pull/14.patch","merged_at":null},"body":"Attempting to address #13: correctly render reference links ([full], [collapsed], [shortcut]) in Markdown.\r\n\r\n[full]: https://spec.commonmark.org/0.31.2/#full-reference-link\r\n[collapsed]: https://spec.commonmark.org/0.31.2/#collapsed-reference-link\r\n[shortcut]: https://spec.commonmark.org/0.31.2/#shortcut-reference-link","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/14/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/14/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":12122495545,"node_id":"HRDE_lADOKnFwjc6CFtX-zwAAAALSjpo5","url":"https://api.github.com/repos/rsc/markdown/issues/events/12122495545","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"head_ref_deleted","commit_id":null,"commit_url":null,"created_at":"2024-03-14T18:41:55Z","issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/14","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/14/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/14/events","html_url":"https://github.com/rsc/markdown/pull/14","id":2182534654,"node_id":"PR_kwDOKnFwjc5pbW8-","number":14,"title":"Render reference links in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-03-12T19:38:02Z","updated_at":"2024-03-14T18:43:15Z","closed_at":"2024-03-14T18:41:54Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/14","html_url":"https://github.com/rsc/markdown/pull/14","diff_url":"https://github.com/rsc/markdown/pull/14.diff","patch_url":"https://github.com/rsc/markdown/pull/14.patch","merged_at":null},"body":"Attempting to address #13: correctly render reference links ([full], [collapsed], [shortcut]) in Markdown.\r\n\r\n[full]: https://spec.commonmark.org/0.31.2/#full-reference-link\r\n[collapsed]: https://spec.commonmark.org/0.31.2/#collapsed-reference-link\r\n[shortcut]: https://spec.commonmark.org/0.31.2/#shortcut-reference-link","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/14/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/14/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":12122495521,"node_id":"CE_lADOKnFwjc6CFtX-zwAAAALSjpoh","url":"https://api.github.com/repos/rsc/markdown/issues/events/12122495521","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2024-03-14T18:41:55Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/14","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/14/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/14/events","html_url":"https://github.com/rsc/markdown/pull/14","id":2182534654,"node_id":"PR_kwDOKnFwjc5pbW8-","number":14,"title":"Render reference links in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-03-12T19:38:02Z","updated_at":"2024-03-14T18:43:15Z","closed_at":"2024-03-14T18:41:54Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/14","html_url":"https://github.com/rsc/markdown/pull/14","diff_url":"https://github.com/rsc/markdown/pull/14.diff","patch_url":"https://github.com/rsc/markdown/pull/14.patch","merged_at":null},"body":"Attempting to address #13: correctly render reference links ([full], [collapsed], [shortcut]) in Markdown.\r\n\r\n[full]: https://spec.commonmark.org/0.31.2/#full-reference-link\r\n[collapsed]: https://spec.commonmark.org/0.31.2/#collapsed-reference-link\r\n[shortcut]: https://spec.commonmark.org/0.31.2/#shortcut-reference-link","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/14/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/14/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":12122378461,"node_id":"RTE_lADOKnFwjc6CFrh9zwAAAALSjNDd","url":"https://api.github.com/repos/rsc/markdown/issues/events/12122378461","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2024-03-14T18:29:53Z","rename":{"from":"Links w/labels should render to MD as such","to":"Correctly render reference links in Markdown"},"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/13","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/13/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/13/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/13/events","html_url":"https://github.com/rsc/markdown/issues/13","id":2182527101,"node_id":"I_kwDOKnFwjc6CFrh9","number":13,"title":"Correctly render reference links in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-03-12T19:34:33Z","updated_at":"2024-04-14T22:51:33Z","closed_at":null,"author_association":"CONTRIBUTOR","active_lock_reason":null,"body":"Putting the following [reference links] through mdfmt, the output should equal the input:\r\n\r\n```none\r\n[full][full]\r\n[collapsed][]\r\n[shortcut]\r\n\r\n[collapsed]: u2\r\n[full]: u1\r\n[shortcut]: u3\r\n```\r\n\r\nCurrently, mdfmt renders all three link styles inline... while keeping the original link reference definitions:\r\n\r\n```none\r\n[full](u1)\r\n[collapsed](u2)\r\n[shortcut](u3)\r\n\r\n[collapsed]: u2\r\n[full]: u1\r\n[shortcut]: u3\r\n```\r\n\r\n[reference links]: https://spec.commonmark.org/0.31.2/#reference-link","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/13/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/13/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":12122340938,"node_id":"RTE_lADOKnFwjc6CFtX-zwAAAALSjD5K","url":"https://api.github.com/repos/rsc/markdown/issues/events/12122340938","actor":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2024-03-14T18:26:19Z","rename":{"from":"Render full reference links in Markdown","to":"Render reference links in Markdown"},"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/14","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/14/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/14/events","html_url":"https://github.com/rsc/markdown/pull/14","id":2182534654,"node_id":"PR_kwDOKnFwjc5pbW8-","number":14,"title":"Render reference links in Markdown","user":{"login":"zacharysyoung","id":945134,"node_id":"MDQ6VXNlcjk0NTEzNA==","avatar_url":"https://avatars.githubusercontent.com/u/945134?v=4","gravatar_id":"","url":"https://api.github.com/users/zacharysyoung","html_url":"https://github.com/zacharysyoung","followers_url":"https://api.github.com/users/zacharysyoung/followers","following_url":"https://api.github.com/users/zacharysyoung/following{/other_user}","gists_url":"https://api.github.com/users/zacharysyoung/gists{/gist_id}","starred_url":"https://api.github.com/users/zacharysyoung/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zacharysyoung/subscriptions","organizations_url":"https://api.github.com/users/zacharysyoung/orgs","repos_url":"https://api.github.com/users/zacharysyoung/repos","events_url":"https://api.github.com/users/zacharysyoung/events{/privacy}","received_events_url":"https://api.github.com/users/zacharysyoung/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-03-12T19:38:02Z","updated_at":"2024-03-14T18:43:15Z","closed_at":"2024-03-14T18:41:54Z","author_association":"CONTRIBUTOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/14","html_url":"https://github.com/rsc/markdown/pull/14","diff_url":"https://github.com/rsc/markdown/pull/14.diff","patch_url":"https://github.com/rsc/markdown/pull/14.patch","merged_at":null},"body":"Attempting to address #13: correctly render reference links ([full], [collapsed], [shortcut]) in Markdown.\r\n\r\n[full]: https://spec.commonmark.org/0.31.2/#full-reference-link\r\n[collapsed]: https://spec.commonmark.org/0.31.2/#collapsed-reference-link\r\n[shortcut]: https://spec.commonmark.org/0.31.2/#shortcut-reference-link","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/14/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/14/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":12028957676,"node_id":"REFE_lADOKnFwjc5_aUPHzwAAAALM-1Ps","url":"https://api.github.com/repos/rsc/markdown/issues/events/12028957676","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"0bf8f97ee8ef6dc359b2246680d8f48c37da77f1","commit_url":"https://api.github.com/repos/rsc/markdown/commits/0bf8f97ee8ef6dc359b2246680d8f48c37da77f1","created_at":"2024-03-06T14:43:24Z","issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/12","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/12/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/12/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/12/events","html_url":"https://github.com/rsc/markdown/pull/12","id":2137605063,"node_id":"PR_kwDOKnFwjc5nCLz2","number":12,"title":"markdown: fix markdown printing for inline code","user":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-02-15T23:18:12Z","updated_at":"2024-03-06T14:43:22Z","closed_at":"2024-03-06T14:43:22Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/12","html_url":"https://github.com/rsc/markdown/pull/12","diff_url":"https://github.com/rsc/markdown/pull/12.diff","patch_url":"https://github.com/rsc/markdown/pull/12.patch","merged_at":"2024-03-06T14:43:22Z"},"body":"Code.printMarkdown outputs the minimum number of backticks that reproduces the content, and adds spaces on either side if necessary.\r\n\r\nRemoved the unused numTicks field. ","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/12/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/12/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":12028957356,"node_id":"CE_lADOKnFwjc5_aUPHzwAAAALM-1Ks","url":"https://api.github.com/repos/rsc/markdown/issues/events/12028957356","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2024-03-06T14:43:22Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/12","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/12/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/12/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/12/events","html_url":"https://github.com/rsc/markdown/pull/12","id":2137605063,"node_id":"PR_kwDOKnFwjc5nCLz2","number":12,"title":"markdown: fix markdown printing for inline code","user":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-02-15T23:18:12Z","updated_at":"2024-03-06T14:43:22Z","closed_at":"2024-03-06T14:43:22Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/12","html_url":"https://github.com/rsc/markdown/pull/12","diff_url":"https://github.com/rsc/markdown/pull/12.diff","patch_url":"https://github.com/rsc/markdown/pull/12.patch","merged_at":"2024-03-06T14:43:22Z"},"body":"Code.printMarkdown outputs the minimum number of backticks that reproduces the content, and adds spaces on either side if necessary.\r\n\r\nRemoved the unused numTicks field. ","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/12/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/12/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":12028957331,"node_id":"ME_lADOKnFwjc5_aUPHzwAAAALM-1KT","url":"https://api.github.com/repos/rsc/markdown/issues/events/12028957331","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"merged","commit_id":"0bf8f97ee8ef6dc359b2246680d8f48c37da77f1","commit_url":"https://api.github.com/repos/rsc/markdown/commits/0bf8f97ee8ef6dc359b2246680d8f48c37da77f1","created_at":"2024-03-06T14:43:22Z","issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/12","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/12/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/12/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/12/events","html_url":"https://github.com/rsc/markdown/pull/12","id":2137605063,"node_id":"PR_kwDOKnFwjc5nCLz2","number":12,"title":"markdown: fix markdown printing for inline code","user":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-02-15T23:18:12Z","updated_at":"2024-03-06T14:43:22Z","closed_at":"2024-03-06T14:43:22Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/12","html_url":"https://github.com/rsc/markdown/pull/12","diff_url":"https://github.com/rsc/markdown/pull/12.diff","patch_url":"https://github.com/rsc/markdown/pull/12.patch","merged_at":"2024-03-06T14:43:22Z"},"body":"Code.printMarkdown outputs the minimum number of backticks that reproduces the content, and adds spaces on either side if necessary.\r\n\r\nRemoved the unused numTicks field. ","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/12/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/12/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":11942812866,"node_id":"RTE_lADOKnFwjc5_aUPHzwAAAALH2NzC","url":"https://api.github.com/repos/rsc/markdown/issues/events/11942812866","actor":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2024-02-27T20:29:37Z","rename":{"from":"markdown: export Code.NumTicks","to":"markdown: fix markdown printing for inline code"},"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/12","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/12/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/12/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/12/events","html_url":"https://github.com/rsc/markdown/pull/12","id":2137605063,"node_id":"PR_kwDOKnFwjc5nCLz2","number":12,"title":"markdown: fix markdown printing for inline code","user":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-02-15T23:18:12Z","updated_at":"2024-03-06T14:43:22Z","closed_at":"2024-03-06T14:43:22Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/12","html_url":"https://github.com/rsc/markdown/pull/12","diff_url":"https://github.com/rsc/markdown/pull/12.diff","patch_url":"https://github.com/rsc/markdown/pull/12.patch","merged_at":"2024-03-06T14:43:22Z"},"body":"Code.printMarkdown outputs the minimum number of backticks that reproduces the content, and adds spaces on either side if necessary.\r\n\r\nRemoved the unused numTicks field. ","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/12/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/12/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":11942808811,"node_id":"HRFPE_lADOKnFwjc5_aUPHzwAAAALH2Mzr","url":"https://api.github.com/repos/rsc/markdown/issues/events/11942808811","actor":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"event":"head_ref_force_pushed","commit_id":null,"commit_url":null,"created_at":"2024-02-27T20:29:08Z","issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/12","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/12/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/12/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/12/events","html_url":"https://github.com/rsc/markdown/pull/12","id":2137605063,"node_id":"PR_kwDOKnFwjc5nCLz2","number":12,"title":"markdown: fix markdown printing for inline code","user":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-02-15T23:18:12Z","updated_at":"2024-03-06T14:43:22Z","closed_at":"2024-03-06T14:43:22Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/12","html_url":"https://github.com/rsc/markdown/pull/12","diff_url":"https://github.com/rsc/markdown/pull/12.diff","patch_url":"https://github.com/rsc/markdown/pull/12.patch","merged_at":"2024-03-06T14:43:22Z"},"body":"Code.printMarkdown outputs the minimum number of backticks that reproduces the content, and adds spaces on either side if necessary.\r\n\r\nRemoved the unused numTicks field. ","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/12/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/12/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":11822212932,"node_id":"RRE_lADOKnFwjc5_aUPHzwAAAALAqKdE","url":"https://api.github.com/repos/rsc/markdown/issues/events/11822212932","actor":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"event":"review_requested","commit_id":null,"commit_url":null,"created_at":"2024-02-15T23:18:12Z","review_requester":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"requested_reviewer":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/12","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/12/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/12/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/12/events","html_url":"https://github.com/rsc/markdown/pull/12","id":2137605063,"node_id":"PR_kwDOKnFwjc5nCLz2","number":12,"title":"markdown: fix markdown printing for inline code","user":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-02-15T23:18:12Z","updated_at":"2024-03-06T14:43:22Z","closed_at":"2024-03-06T14:43:22Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/12","html_url":"https://github.com/rsc/markdown/pull/12","diff_url":"https://github.com/rsc/markdown/pull/12.diff","patch_url":"https://github.com/rsc/markdown/pull/12.patch","merged_at":"2024-03-06T14:43:22Z"},"body":"Code.printMarkdown outputs the minimum number of backticks that reproduces the content, and adds spaces on either side if necessary.\r\n\r\nRemoved the unused numTicks field. ","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/12/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/12/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":11506369300,"node_id":"CE_lADOKnFwjc57yW0-zwAAAAKt1UMU","url":"https://api.github.com/repos/rsc/markdown/issues/events/11506369300","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2024-01-17T04:41:48Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/11","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/11/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/11/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/11/events","html_url":"https://github.com/rsc/markdown/pull/11","id":2076798270,"node_id":"PR_kwDOKnFwjc5j0LtA","number":11,"title":"render markdown for document link references","user":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-01-11T14:20:56Z","updated_at":"2024-01-17T04:41:48Z","closed_at":"2024-01-17T04:41:48Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/11","html_url":"https://github.com/rsc/markdown/pull/11","diff_url":"https://github.com/rsc/markdown/pull/11.diff","patch_url":"https://github.com/rsc/markdown/pull/11.patch","merged_at":null},"body":null,"reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/11/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/11/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":11506360992,"node_id":"CE_lADOKnFwjc57xsrdzwAAAAKt1SKg","url":"https://api.github.com/repos/rsc/markdown/issues/events/11506360992","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2024-01-17T04:39:59Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/10","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/10/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/10/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/10/events","html_url":"https://github.com/rsc/markdown/pull/10","id":2076625629,"node_id":"PR_kwDOKnFwjc5jzktS","number":10,"title":"fix markdown rendering of headings with IDs","user":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-01-11T13:15:34Z","updated_at":"2024-01-17T04:39:59Z","closed_at":"2024-01-17T04:39:59Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/10","html_url":"https://github.com/rsc/markdown/pull/10","diff_url":"https://github.com/rsc/markdown/pull/10.diff","patch_url":"https://github.com/rsc/markdown/pull/10.patch","merged_at":null},"body":"Move the newline after the heading text to after the ID.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/10/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/10/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":11456466988,"node_id":"RRE_lADOKnFwjc57xsrdzwAAAAKq29As","url":"https://api.github.com/repos/rsc/markdown/issues/events/11456466988","actor":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"event":"review_requested","commit_id":null,"commit_url":null,"created_at":"2024-01-11T13:15:34Z","review_requester":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"requested_reviewer":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/10","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/10/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/10/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/10/events","html_url":"https://github.com/rsc/markdown/pull/10","id":2076625629,"node_id":"PR_kwDOKnFwjc5jzktS","number":10,"title":"fix markdown rendering of headings with IDs","user":{"login":"jba","id":18483045,"node_id":"MDQ6VXNlcjE4NDgzMDQ1","avatar_url":"https://avatars.githubusercontent.com/u/18483045?v=4","gravatar_id":"","url":"https://api.github.com/users/jba","html_url":"https://github.com/jba","followers_url":"https://api.github.com/users/jba/followers","following_url":"https://api.github.com/users/jba/following{/other_user}","gists_url":"https://api.github.com/users/jba/gists{/gist_id}","starred_url":"https://api.github.com/users/jba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jba/subscriptions","organizations_url":"https://api.github.com/users/jba/orgs","repos_url":"https://api.github.com/users/jba/repos","events_url":"https://api.github.com/users/jba/events{/privacy}","received_events_url":"https://api.github.com/users/jba/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2024-01-11T13:15:34Z","updated_at":"2024-01-17T04:39:59Z","closed_at":"2024-01-17T04:39:59Z","author_association":"COLLABORATOR","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rsc/markdown/pulls/10","html_url":"https://github.com/rsc/markdown/pull/10","diff_url":"https://github.com/rsc/markdown/pull/10.diff","patch_url":"https://github.com/rsc/markdown/pull/10.patch","merged_at":null},"body":"Move the newline after the heading text to after the ID.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/10/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/10/timeline","performed_via_github_app":null,"state_reason":null},"performed_via_github_app":null},{"id":11250194227,"node_id":"CE_lADOKnFwjc55nCn5zwAAAAKekFcz","url":"https://api.github.com/repos/rsc/markdown/issues/events/11250194227","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-12-14T16:21:54Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/8","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/8/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/8/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/8/events","html_url":"https://github.com/rsc/markdown/issues/8","id":2040277497,"node_id":"I_kwDOKnFwjc55nCn5","number":8,"title":"Autolink can't start immediately after `[`","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":4,"created_at":"2023-12-13T18:44:32Z","updated_at":"2023-12-14T16:21:54Z","closed_at":"2023-12-14T16:21:54Z","author_association":"NONE","active_lock_reason":null,"body":"From the [gfm spec](https://github.github.com/gfm/#autolinks-extension): \r\n\r\n> All such recognized autolinks can only come at the beginning of a line, after whitespace, or any of the delimiting characters *, _, ~, and (.\r\n\r\nHere's a go program that runs markdown and goldmark on the following input: https://go.dev/play/p/kTjBshQ82iQ\r\n\r\n```\r\n[https://golang.org]\r\n```\r\nRendered in github as \r\n\r\n[https://golang.org]\r\n\r\nThe output of the program is \r\n\r\n```\r\nmarkdown:\r\n<p>[<a href=\"https://golang.org%5D\">https://golang.org]</a></p>\r\n\r\n\r\ngoldmark:\r\n<p>[https://golang.org]</p>\r\n```","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/8/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/8/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":11241620840,"node_id":"CE_lADOKnFwjc55mu-6zwAAAAKeDYVo","url":"https://api.github.com/repos/rsc/markdown/issues/events/11241620840","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"8c4745966286a677e3545b44150ab7491f2f1548","commit_url":"https://api.github.com/repos/rsc/markdown/commits/8c4745966286a677e3545b44150ab7491f2f1548","created_at":"2023-12-13T23:11:57Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/7","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/7/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/7/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/7/events","html_url":"https://github.com/rsc/markdown/issues/7","id":2040197050,"node_id":"I_kwDOKnFwjc55mu-6","number":7,"title":"Empty column heading not recognized in table","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-12-13T17:45:33Z","updated_at":"2023-12-13T23:11:57Z","closed_at":"2023-12-13T23:11:57Z","author_association":"NONE","active_lock_reason":null,"body":"Here's a program that compares markdown and goldmark on the following input https://go.dev/play/p/kEslff4EyTa\r\n\r\n```\r\n| | Foo | Bar |\r\n| -------- | -------- | -------- |\r\n| a | value1 | value2 |\r\n| b | value3 | value4 |\r\n```\r\n\r\nRendered in github as \r\n| | Foo | Bar |\r\n| -------- | -------- | -------- |\r\n| a | value1 | value2 |\r\n| b | value3 | value4 |\r\n\r\nThe output is\r\n```\r\nmarkdown:\r\n<table>\r\n<thead>\r\n<tr>\r\n<th></th>\r\n<th>Foo</th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td>a</td>\r\n<td>value1</td>\r\n</tr>\r\n<tr>\r\n<td>b</td>\r\n<td>value3</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n\r\ngoldmark:\r\n<table>\r\n<thead>\r\n<tr>\r\n<th></th>\r\n<th>Foo</th>\r\n<th>Bar</th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td>a</td>\r\n<td>value1</td>\r\n<td>value2</td>\r\n</tr>\r\n<tr>\r\n<td>b</td>\r\n<td>value3</td>\r\n<td>value4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n```","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/7/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/7/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":11241620809,"node_id":"CE_lADOKnFwjc55nI9izwAAAAKeDYVJ","url":"https://api.github.com/repos/rsc/markdown/issues/events/11241620809","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"dfcbaf6f71982715482db407f19dd27e944ed227","commit_url":"https://api.github.com/repos/rsc/markdown/commits/dfcbaf6f71982715482db407f19dd27e944ed227","created_at":"2023-12-13T23:11:57Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/9","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/9/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/9/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/9/events","html_url":"https://github.com/rsc/markdown/issues/9","id":2040303458,"node_id":"I_kwDOKnFwjc55nI9i","number":9,"title":"Support escaped `|` in table cells","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-12-13T19:03:40Z","updated_at":"2023-12-13T23:11:57Z","closed_at":"2023-12-13T23:11:57Z","author_association":"NONE","active_lock_reason":null,"body":"Here's a program that runs goldmark and markdown on the following input https://go.dev/play/p/YgApD-obwxL\r\n\r\n```\r\nFoo | Bar\r\n--- | ---\r\nA | a\\\\|b\\\\|c\r\n```\r\n\r\nrendered in github as \r\n\r\nFoo | Bar\r\n--- | ---\r\nA | a\\\\|b\\\\|c\r\n\r\nThe output of the program is \r\n```\r\nmarkdown:\r\n<table>\r\n<thead>\r\n<tr>\r\n<th>Foo</th>\r\n<th>Bar</th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td>A</td>\r\n<td>a\\</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n\r\ngoldmark:\r\n<table>\r\n<thead>\r\n<tr>\r\n<th>Foo</th>\r\n<th>Bar</th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td>A</td>\r\n<td>a\\|b\\|c</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n```","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/9/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/9/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":11239005964,"node_id":"REFE_lADOKnFwjc55gYFyzwAAAAKd5Z8M","url":"https://api.github.com/repos/rsc/markdown/issues/events/11239005964","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"8527271b4049b6d640dcfa6795c398cfeff9c000","commit_url":"https://api.github.com/repos/rsc/markdown/commits/8527271b4049b6d640dcfa6795c398cfeff9c000","created_at":"2023-12-13T17:44:28Z","issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/5","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/5/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/5/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/5/events","html_url":"https://github.com/rsc/markdown/issues/5","id":2038530418,"node_id":"I_kwDOKnFwjc55gYFy","number":5,"title":"Allow `?`, `!`, `.`, `,`, `:,` `*`, `_`, and `~` on the interior of a link","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2023-12-12T20:50:38Z","updated_at":"2023-12-13T17:24:41Z","closed_at":"2023-12-13T03:02:31Z","author_association":"NONE","active_lock_reason":null,"body":"GFM allows `?`, `!`, `.`, `,`, `:,` `*`, `_`, and `~` on the interior of a link: https://github.github.com/gfm/#extended-autolink-path-validation\r\n\r\nHere's a program that compares markdown and goldmark on the following input: https://go.dev/play/p/uLHnavChGYX\r\n\r\n```https://web.site:8080/~matloob```\r\n\r\nWhich is rendered on github as \r\nhttps://web.site:8080/~matloob\r\n\r\nThe output of the program is \r\n```\r\nmarkdown:\r\n<p><a href=\"https://web.site\">https://web.site</a>:8080/~matloob</p>\r\n\r\n\r\ngoldmark:\r\n<p><a href=\"https://web.site:8080/~matloob\">https://web.site:8080/~matloob</a></p>\r\n```","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/5/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/5/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":11230676272,"node_id":"CE_lADOKnFwjc55fzdLzwAAAAKdZoUw","url":"https://api.github.com/repos/rsc/markdown/issues/events/11230676272","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"0ed0e2d57b4d94c109d47593dcaaa40449600da2","commit_url":"https://api.github.com/repos/rsc/markdown/commits/0ed0e2d57b4d94c109d47593dcaaa40449600da2","created_at":"2023-12-13T03:02:32Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/1","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/1/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/1/events","html_url":"https://github.com/rsc/markdown/issues/1","id":2038380363,"node_id":"I_kwDOKnFwjc55fzdL","number":1,"title":"Support Github Emojis","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-12-12T18:57:39Z","updated_at":"2023-12-13T03:02:32Z","closed_at":"2023-12-13T03:02:32Z","author_association":"NONE","active_lock_reason":null,"body":"This is an issue for supporting github emojis, such as `:smile:` for 😄 . There's a github page that gives a mapping of emojis to image file names that we can parse the hex representation out of here: https://api.github.com/emojis.","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/1/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/1/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":11230676238,"node_id":"CE_lADOKnFwjc55gikQzwAAAAKdZoUO","url":"https://api.github.com/repos/rsc/markdown/issues/events/11230676238","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"51d9ee0406f8dcc0e992cf51b2b37957107dbfd6","commit_url":"https://api.github.com/repos/rsc/markdown/commits/51d9ee0406f8dcc0e992cf51b2b37957107dbfd6","created_at":"2023-12-13T03:02:32Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/6","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/6/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/6/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/6/events","html_url":"https://github.com/rsc/markdown/issues/6","id":2038573328,"node_id":"I_kwDOKnFwjc55gikQ","number":6,"title":"goldmark and markdown diff with h1 inside p","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-12-12T21:26:15Z","updated_at":"2023-12-13T03:02:32Z","closed_at":"2023-12-13T03:02:32Z","author_association":"NONE","active_lock_reason":null,"body":"Here's a program that runs goldmark and markdown on the following input: https://go.dev/play/p/rTnPTxps_zw\r\n\r\n```\r\n<p align=\"center\">\r\n\r\n<h1>Text</h1>\r\nbody\r\n</p>\r\n```\r\n\r\nIt's hard for me to tell exactly what github is doing with this input, but it doesn't seem like it's putting the h1 into a p:\r\n\r\n<p align=\"center\">\r\n\r\n<h1>Text</h1>\r\nbody\r\n</p>\r\n\r\nHere's the output of the program:\r\n```\r\nmarkdown:\r\n<p align=\"center\">\r\n<p><h1>Text</h1>\r\nbody</p>\r\n</p>\r\n\r\n\r\ngoldmark:\r\n<p align=\"center\">\r\n<h1>Text</h1>\r\nbody\r\n</p>\r\n```","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/6/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/6/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":11230676200,"node_id":"CE_lADOKnFwjc55gYFyzwAAAAKdZoTo","url":"https://api.github.com/repos/rsc/markdown/issues/events/11230676200","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"4b85f2bd9fc3260214381f9a5e2df00ff9c20df9","commit_url":"https://api.github.com/repos/rsc/markdown/commits/4b85f2bd9fc3260214381f9a5e2df00ff9c20df9","created_at":"2023-12-13T03:02:31Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/5","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/5/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/5/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/5/events","html_url":"https://github.com/rsc/markdown/issues/5","id":2038530418,"node_id":"I_kwDOKnFwjc55gYFy","number":5,"title":"Allow `?`, `!`, `.`, `,`, `:,` `*`, `_`, and `~` on the interior of a link","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2023-12-12T20:50:38Z","updated_at":"2023-12-13T17:24:41Z","closed_at":"2023-12-13T03:02:31Z","author_association":"NONE","active_lock_reason":null,"body":"GFM allows `?`, `!`, `.`, `,`, `:,` `*`, `_`, and `~` on the interior of a link: https://github.github.com/gfm/#extended-autolink-path-validation\r\n\r\nHere's a program that compares markdown and goldmark on the following input: https://go.dev/play/p/uLHnavChGYX\r\n\r\n```https://web.site:8080/~matloob```\r\n\r\nWhich is rendered on github as \r\nhttps://web.site:8080/~matloob\r\n\r\nThe output of the program is \r\n```\r\nmarkdown:\r\n<p><a href=\"https://web.site\">https://web.site</a>:8080/~matloob</p>\r\n\r\n\r\ngoldmark:\r\n<p><a href=\"https://web.site:8080/~matloob\">https://web.site:8080/~matloob</a></p>\r\n```","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/5/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/5/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":11230676181,"node_id":"REFE_lADOKnFwjc55gTTPzwAAAAKdZoTV","url":"https://api.github.com/repos/rsc/markdown/issues/events/11230676181","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"4b85f2bd9fc3260214381f9a5e2df00ff9c20df9","commit_url":"https://api.github.com/repos/rsc/markdown/commits/4b85f2bd9fc3260214381f9a5e2df00ff9c20df9","created_at":"2023-12-13T03:02:31Z","issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/3","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/3/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/3/events","html_url":"https://github.com/rsc/markdown/issues/3","id":2038510799,"node_id":"I_kwDOKnFwjc55gTTP","number":3,"title":"support : in autolinks","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-12-12T20:34:03Z","updated_at":"2023-12-12T21:04:04Z","closed_at":"2023-12-12T21:04:04Z","author_association":"NONE","active_lock_reason":null,"body":"Edit: it looks like github does treat https://localhost as an autolink even though the GFM spec says a valid domain must have at least one dot. We should support https://localhost:8080\r\n\r\nProgram running goldmark and markdown on input: https://go.dev/play/p/FCJ0gp84YZQ\r\n\r\n```\r\nhttps://localhost:8080\r\n```\r\n\r\noutput is ```\r\nmarkdown:\r\n<p><a href=\"https://localhost\">https://localhost</a>:8080</p>\r\n\r\n\r\ngoldmark:\r\n<p>https://localhost:8080</p>\r\n```\r\n\r\nIt looks like goldmark is doing the wrong thing here but we should handle the :8080\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/3/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/3/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":11230676170,"node_id":"CE_lADOKnFwjc55gV-CzwAAAAKdZoTK","url":"https://api.github.com/repos/rsc/markdown/issues/events/11230676170","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"4468a1ed4300a71fdd3ce2906cd3dc7a2371a625","commit_url":"https://api.github.com/repos/rsc/markdown/commits/4468a1ed4300a71fdd3ce2906cd3dc7a2371a625","created_at":"2023-12-13T03:02:31Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/4","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/4/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/4/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/4/events","html_url":"https://github.com/rsc/markdown/issues/4","id":2038521730,"node_id":"I_kwDOKnFwjc55gV-C","number":4,"title":"Replace newlines with spaces in alt text","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-12-12T20:43:15Z","updated_at":"2023-12-13T03:02:31Z","closed_at":"2023-12-13T03:02:31Z","author_association":"NONE","active_lock_reason":null,"body":"Here's a go program that runs markdown and goldmark on the following input: https://go.dev/play/p/zZ0vWAgKB0c:\r\n\r\n```\r\n[![Line\r\nBreak](https://line.break/image)](https://line.break)\r\n```\r\n\r\nWhich is rendered on github with a space instead of the newline in the alt text:\r\n\r\n```\r\n<p dir=\"auto\"><a href=\"https://line.break\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/743b6218bc25f78b5f7f654f1ce773766351a2e3605cf8b47c60659055c218ac/68747470733a2f2f6c696e652e627265616b2f696d616765\" alt=\"Line Break\" data-canonical-src=\"https://line.break/image\" style=\"max-width: 100%;\"></a></p>\r\n```\r\n\r\nThe output is \r\n```\r\nmarkdown:\r\n<p><a href=\"https://line.break\"><img src=\"https://line.break/image\" alt=\"LineBreak\" /></a></p>\r\n\r\n\r\ngoldmark:\r\n<p><a href=\"https://line.break\"><img src=\"https://line.break/image\" alt=\"Line\r\nBreak\" /></a></p>\r\n```\r\n\r\nIt seems like goldmark's behavior is also different from github's as goldmark preserves the line break.\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/4/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/4/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":11230676151,"node_id":"CE_lADOKnFwjc55gRQOzwAAAAKdZoS3","url":"https://api.github.com/repos/rsc/markdown/issues/events/11230676151","actor":{"login":"rsc","id":104030,"node_id":"MDQ6VXNlcjEwNDAzMA==","avatar_url":"https://avatars.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"58f2e15c42bf1ce69bbbfa0c81193db5d6e5c814","commit_url":"https://api.github.com/repos/rsc/markdown/commits/58f2e15c42bf1ce69bbbfa0c81193db5d6e5c814","created_at":"2023-12-13T03:02:31Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/2","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/2/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/2/events","html_url":"https://github.com/rsc/markdown/issues/2","id":2038502414,"node_id":"I_kwDOKnFwjc55gRQO","number":2,"title":"allow capital X in task list items","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2023-12-12T20:28:39Z","updated_at":"2023-12-13T03:02:30Z","closed_at":"2023-12-13T03:02:30Z","author_association":"NONE","active_lock_reason":null,"body":"Here's a go program running goldmark and markdown on the following input: https://go.dev/play/p/fZRthH1dl4B\r\n```\r\n- [X] task list item\r\n```\r\nWhich is rendered on github as:\r\n\r\n- [X] task list item\r\n\r\nIts output is:\r\n```\r\nmarkdown:\r\n<ul>\r\n<li>[X] task list item</li>\r\n</ul>\r\n\r\n\r\ngoldmark:\r\n<ul>\r\n<li><input checked=\"\" disabled=\"\" type=\"checkbox\" /> task list item</li>\r\n</ul>\r\n\r\n```","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/2/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/2/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":11228628324,"node_id":"CE_lADOKnFwjc55gTTPzwAAAAKdR0Vk","url":"https://api.github.com/repos/rsc/markdown/issues/events/11228628324","actor":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"event":"closed","commit_id":null,"commit_url":null,"created_at":"2023-12-12T21:04:04Z","state_reason":null,"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/3","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/3/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/3/events","html_url":"https://github.com/rsc/markdown/issues/3","id":2038510799,"node_id":"I_kwDOKnFwjc55gTTP","number":3,"title":"support : in autolinks","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-12-12T20:34:03Z","updated_at":"2023-12-12T21:04:04Z","closed_at":"2023-12-12T21:04:04Z","author_association":"NONE","active_lock_reason":null,"body":"Edit: it looks like github does treat https://localhost as an autolink even though the GFM spec says a valid domain must have at least one dot. We should support https://localhost:8080\r\n\r\nProgram running goldmark and markdown on input: https://go.dev/play/p/FCJ0gp84YZQ\r\n\r\n```\r\nhttps://localhost:8080\r\n```\r\n\r\noutput is ```\r\nmarkdown:\r\n<p><a href=\"https://localhost\">https://localhost</a>:8080</p>\r\n\r\n\r\ngoldmark:\r\n<p>https://localhost:8080</p>\r\n```\r\n\r\nIt looks like goldmark is doing the wrong thing here but we should handle the :8080\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/3/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/3/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null},{"id":11228615168,"node_id":"RTE_lADOKnFwjc55gTTPzwAAAAKdRxIA","url":"https://api.github.com/repos/rsc/markdown/issues/events/11228615168","actor":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"event":"renamed","commit_id":null,"commit_url":null,"created_at":"2023-12-12T21:02:28Z","rename":{"from":"require at least one dot in autolink url domains","to":"support : in autolinks"},"issue":{"url":"https://api.github.com/repos/rsc/markdown/issues/3","repository_url":"https://api.github.com/repos/rsc/markdown","labels_url":"https://api.github.com/repos/rsc/markdown/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/rsc/markdown/issues/3/comments","events_url":"https://api.github.com/repos/rsc/markdown/issues/3/events","html_url":"https://github.com/rsc/markdown/issues/3","id":2038510799,"node_id":"I_kwDOKnFwjc55gTTP","number":3,"title":"support : in autolinks","user":{"login":"matloob","id":16470053,"node_id":"MDQ6VXNlcjE2NDcwMDUz","avatar_url":"https://avatars.githubusercontent.com/u/16470053?v=4","gravatar_id":"","url":"https://api.github.com/users/matloob","html_url":"https://github.com/matloob","followers_url":"https://api.github.com/users/matloob/followers","following_url":"https://api.github.com/users/matloob/following{/other_user}","gists_url":"https://api.github.com/users/matloob/gists{/gist_id}","starred_url":"https://api.github.com/users/matloob/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matloob/subscriptions","organizations_url":"https://api.github.com/users/matloob/orgs","repos_url":"https://api.github.com/users/matloob/repos","events_url":"https://api.github.com/users/matloob/events{/privacy}","received_events_url":"https://api.github.com/users/matloob/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2023-12-12T20:34:03Z","updated_at":"2023-12-12T21:04:04Z","closed_at":"2023-12-12T21:04:04Z","author_association":"NONE","active_lock_reason":null,"body":"Edit: it looks like github does treat https://localhost as an autolink even though the GFM spec says a valid domain must have at least one dot. We should support https://localhost:8080\r\n\r\nProgram running goldmark and markdown on input: https://go.dev/play/p/FCJ0gp84YZQ\r\n\r\n```\r\nhttps://localhost:8080\r\n```\r\n\r\noutput is ```\r\nmarkdown:\r\n<p><a href=\"https://localhost\">https://localhost</a>:8080</p>\r\n\r\n\r\ngoldmark:\r\n<p>https://localhost:8080</p>\r\n```\r\n\r\nIt looks like goldmark is doing the wrong thing here but we should handle the :8080\r\n","reactions":{"url":"https://api.github.com/repos/rsc/markdown/issues/3/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rsc/markdown/issues/3/timeline","performed_via_github_app":null,"state_reason":"completed"},"performed_via_github_app":null}]
related
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/related/related_test.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package related import ( "fmt" "maps" "slices" "strings" "testing" "time" "golang.org/x/oscar/internal/diff" "golang.org/x/oscar/internal/docs" "golang.org/x/oscar/internal/embeddocs" "golang.org/x/oscar/internal/github" "golang.org/x/oscar/internal/githubdocs" "golang.org/x/oscar/internal/llm" "golang.org/x/oscar/internal/storage" "golang.org/x/oscar/internal/testutil" ) func Test(t *testing.T) { lg := testutil.Slogger(t) db := storage.MemDB() gh := github.New(lg, db, nil, nil) gh.Testing().LoadTxtar("../testdata/markdown.txt") gh.Testing().LoadTxtar("../testdata/rsctmp.txt") dc := docs.New(db) githubdocs.Sync(lg, dc, gh) vdb := storage.MemVectorDB(db, lg, "vecs") embeddocs.Sync(lg, vdb, llm.QuoteEmbedder(), dc) vdb = storage.MemVectorDB(db, lg, "vecs") p := New(lg, db, gh, vdb, dc, "postname") p.EnableProject("rsc/markdown") p.SetTimeLimit(time.Time{}) p.Run() checkEdits(t, gh.Testing().Edits(), nil) gh.Testing().ClearEdits() p.EnablePosts() p.Run() checkEdits(t, gh.Testing().Edits(), map[int64]string{13: post13, 19: post19}) gh.Testing().ClearEdits() p = New(lg, db, gh, vdb, dc, "postname2") p.EnableProject("rsc/markdown") p.SetTimeLimit(time.Time{}) p.EnablePosts() p.Run() checkEdits(t, gh.Testing().Edits(), nil) gh.Testing().ClearEdits() for i := range 4 { p := New(lg, db, gh, vdb, dc, "postnameloop."+fmt.Sprint(i)) p.EnableProject("rsc/markdown") p.SetTimeLimit(time.Time{}) switch i { case 0: p.SkipTitlePrefix("feature: ") case 1: p.SkipTitleSuffix("for heading") case 2: p.SkipBodyContains("For example, this heading") case 3: p.SkipBodyContains("For example, this heading") p.SkipBodyContains("ZZZ") } p.EnablePosts() p.deletePosted() p.Run() checkEdits(t, gh.Testing().Edits(), map[int64]string{13: post13}) gh.Testing().ClearEdits() } p = New(lg, db, gh, vdb, dc, "postname3") p.EnableProject("rsc/markdown") p.SetMinScore(2.0) // impossible p.SetTimeLimit(time.Time{}) p.EnablePosts() p.deletePosted() p.Run() checkEdits(t, gh.Testing().Edits(), nil) gh.Testing().ClearEdits() p = New(lg, db, gh, vdb, dc, "postname4") p.EnableProject("rsc/markdown") p.SetMinScore(2.0) // impossible p.SetTimeLimit(time.Date(2222, 1, 1, 1, 1, 1, 1, time.UTC)) p.EnablePosts() p.deletePosted() p.Run() checkEdits(t, gh.Testing().Edits(), nil) gh.Testing().ClearEdits() p = New(lg, db, gh, vdb, dc, "postname5") p.EnableProject("rsc/markdown") p.SetMinScore(0) // everything p.SetMaxResults(0) // except none p.SetTimeLimit(time.Time{}) p.EnablePosts() p.deletePosted() p.Run() checkEdits(t, gh.Testing().Edits(), nil) gh.Testing().ClearEdits() } func checkEdits(t *testing.T, edits []*github.TestingEdit, want map[int64]string) { t.Helper() for _, e := range edits { if e.Project != "rsc/markdown" { t.Errorf("posted to unexpected project: %v", e) continue } if e.Comment != 0 || e.IssueCommentChanges == nil { t.Errorf("non-post edit: %v", e) continue } w, ok := want[e.Issue] if !ok { t.Errorf("post to unexpected issue: %v", e) continue } delete(want, e.Issue) if strings.TrimSpace(e.IssueCommentChanges.Body) != strings.TrimSpace(w) { t.Errorf("rsc/markdown#%d: wrong post:\n%s", e.Issue, string(diff.Diff("want", []byte(w), "have", []byte(e.IssueCommentChanges.Body)))) } } for _, issue := range slices.Sorted(maps.Keys(want)) { t.Errorf("did not see post on rsc/markdown#%d", issue) } if t.Failed() { t.FailNow() } } var post13 = unQUOT(`**Related Issues** - [goldmark and markdown diff with h1 inside p #6 (closed)](https://github.com/rsc/markdown/issues/6) <!-- score=0.92657 --> - [Support escaped \QUOT|\QUOT in table cells #9 (closed)](https://github.com/rsc/markdown/issues/9) <!-- score=0.91858 --> - [markdown: fix markdown printing for inline code #12 (closed)](https://github.com/rsc/markdown/issues/12) <!-- score=0.91325 --> - [markdown: emit Info in CodeBlock markdown #18 (closed)](https://github.com/rsc/markdown/issues/18) <!-- score=0.91129 --> - [feature: synthesize lowercase anchors for heading #19](https://github.com/rsc/markdown/issues/19) <!-- score=0.90867 --> - [Replace newlines with spaces in alt text #4 (closed)](https://github.com/rsc/markdown/issues/4) <!-- score=0.90859 --> - [allow capital X in task list items #2 (closed)](https://github.com/rsc/markdown/issues/2) <!-- score=0.90850 --> - [build(deps): bump golang.org/x/text from 0.3.6 to 0.3.8 in /rmplay #10](https://github.com/rsc/tmp/issues/10) <!-- score=0.90453 --> - [Render reference links in Markdown #14 (closed)](https://github.com/rsc/markdown/issues/14) <!-- score=0.90175 --> - [Render reference links in Markdown #15 (closed)](https://github.com/rsc/markdown/issues/15) <!-- score=0.90103 --> <sub>(Emoji vote if this was helpful or unhelpful; more detailed feedback welcome in [this discussion](https://github.com/golang/go/discussions/67901).)</sub> `) var post19 = unQUOT(`**Related Issues** - [allow capital X in task list items #2 (closed)](https://github.com/rsc/markdown/issues/2) <!-- score=0.92943 --> - [Support escaped \QUOT|\QUOT in table cells #9 (closed)](https://github.com/rsc/markdown/issues/9) <!-- score=0.91994 --> - [goldmark and markdown diff with h1 inside p #6 (closed)](https://github.com/rsc/markdown/issues/6) <!-- score=0.91813 --> - [Render reference links in Markdown #14 (closed)](https://github.com/rsc/markdown/issues/14) <!-- score=0.91513 --> - [Render reference links in Markdown #15 (closed)](https://github.com/rsc/markdown/issues/15) <!-- score=0.91487 --> - [Empty column heading not recognized in table #7 (closed)](https://github.com/rsc/markdown/issues/7) <!-- score=0.90874 --> - [Correctly render reference links in Markdown #13](https://github.com/rsc/markdown/issues/13) <!-- score=0.90867 --> - [markdown: fix markdown printing for inline code #12 (closed)](https://github.com/rsc/markdown/issues/12) <!-- score=0.90795 --> - [Replace newlines with spaces in alt text #4 (closed)](https://github.com/rsc/markdown/issues/4) <!-- score=0.90278 --> - [build(deps): bump golang.org/x/text from 0.3.6 to 0.3.8 in /rmplay #10](https://github.com/rsc/tmp/issues/10) <!-- score=0.90259 --> <sub>(Emoji vote if this was helpful or unhelpful; more detailed feedback welcome in [this discussion](https://github.com/golang/go/discussions/67901).)</sub> `) func unQUOT(s string) string { return strings.ReplaceAll(s, "QUOT", "`") }
related
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/related/related.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package related implements posting about related issues to GitHub. package related import ( "fmt" "log/slog" "strings" "time" "golang.org/x/oscar/internal/docs" "golang.org/x/oscar/internal/github" "golang.org/x/oscar/internal/storage" "golang.org/x/oscar/internal/storage/timed" "rsc.io/ordered" ) // A Poster posts to GitHub about related issues (and eventually other documents). type Poster struct { slog *slog.Logger db storage.DB vdb storage.VectorDB github *github.Client docs *docs.Corpus projects map[string]bool watcher *timed.Watcher[*github.Event] name string timeLimit time.Time ignores []func(*github.Issue) bool maxResults int scoreCutoff float64 post bool } // New creates and returns a new Poster. It logs to lg, stores state in db, // watches for new GitHub issues using gh, looks up related documents in vdb, // and reads the document content from docs. // For the purposes of storing its own state, it uses the given name. // Future calls to New with the same name will use the same state. // // Use the [Poster] methods to configure the posting parameters // (especially [Poster.EnableProject] and [Poster.EnablePosts]) // before calling [Poster.Run]. func New(lg *slog.Logger, db storage.DB, gh *github.Client, vdb storage.VectorDB, docs *docs.Corpus, name string) *Poster { return &Poster{ slog: lg, db: db, vdb: vdb, github: gh, docs: docs, projects: make(map[string]bool), watcher: gh.EventWatcher("related.Poster:" + name), name: name, timeLimit: time.Now().Add(-defaultTooOld), maxResults: defaultMaxResults, scoreCutoff: defaultScoreCutoff, } } // SetTimeLimit controls how old an issue can be for the Poster to post to it. // Issues created before time t will be skipped. // The default is not to post to issues that are more than 48 hours old // at the time of the call to [New]. func (p *Poster) SetTimeLimit(t time.Time) { p.timeLimit = t } const defaultTooOld = 48 * time.Hour // SetMaxResults sets the maximum number of related documents to // post to the issue. // The default is 10. func (p *Poster) SetMaxResults(max int) { p.maxResults = max } const defaultMaxResults = 10 // SetMinScore sets the minimum vector search score that a // [storage.VectorResult] must have to be considered a related document // The default is 0.82, which was determined empirically. func (p *Poster) SetMinScore(min float64) { p.scoreCutoff = min } const defaultScoreCutoff = 0.82 // SkipBodyContains configures the Poster to skip issues with a body containing // the given text. func (p *Poster) SkipBodyContains(text string) { p.ignores = append(p.ignores, func(issue *github.Issue) bool { return strings.Contains(issue.Body, text) }) } // SkipTitlePrefix configures the Poster to skip issues with a title starting // with the given prefix. func (p *Poster) SkipTitlePrefix(prefix string) { p.ignores = append(p.ignores, func(issue *github.Issue) bool { return strings.HasPrefix(issue.Title, prefix) }) } // SkipTitleSuffix configures the Poster to skip issues with a title starting // with the given suffix. func (p *Poster) SkipTitleSuffix(suffix string) { p.ignores = append(p.ignores, func(issue *github.Issue) bool { return strings.HasSuffix(issue.Title, suffix) }) } // EnableProject enables the Poster to post on issues in the given GitHub project (for example "golang/go"). // See also [Poster.EnablePosts], which must also be called to post anything to GitHub. func (p *Poster) EnableProject(project string) { p.projects[project] = true } // EnablePosts enables the Poster to post to GitHub. // If EnablePosts has not been called, [Poster.Run] logs what it would post but does not post the messages. // See also [Poster.EnableProject], which must also be called to set the projects being considered. func (p *Poster) EnablePosts() { p.post = true } // deletePosted deletes all the “posted on this issue” notes. func (p *Poster) deletePosted() { p.db.DeleteRange(ordered.Encode("triage.Posted"), ordered.Encode("triage.Posted", ordered.Inf)) } // Run runs a single round of posting to GitHub. // It scans all open issues that have been created since the last call to [Poster.Run] // using a Poster with the same name (see [New]). // Run skips closed issues, and it also skips pull requests. // // For each issue that matches the configured posting constraints // (see [Poster.EnableProject], [Poster.SetTimeLimit], [Poster.IgnoreBodyContains], [Poster.IgnoreTitlePrefix], and [Poster.IgnoreTitleSuffix]), // Run computes an embedding of the issue body text (ignoring comments) // and looks in the vector database for other documents (currently only issues) // that are aligned closely enough with that body text // (see [Poster.SetMinScore]) and posts a limited number of matches // (see [Poster.SetMaxResults]). // // Run logs each post to the [slog.Logger] passed to [New]. // If [Poster.EnablePosts] has been called, then [Run] also posts the comment to GitHub, // records in the database that it has posted to GitHub to make sure it never posts to that issue again, // and advances its GitHub issue watcher's incremental cursor to speed future calls to [Run]. // // When [Poster.EnablePosts] has not been called, Run only logs the comments it would post. // Future calls to Run will reprocess the same issues and re-log the same comments. func (p *Poster) Run() { p.slog.Info("related.Poster start", "name", p.name) defer p.slog.Info("related.Poster end", "name", p.name) defer p.watcher.Flush() Watcher: for e := range p.watcher.Recent() { if !p.projects[e.Project] || e.API != "/issues" { continue } issue := e.Typed.(*github.Issue) if issue.State == "closed" || issue.PullRequest != nil { continue } tm, err := time.Parse(time.RFC3339, issue.CreatedAt) if err != nil { p.slog.Error("triage parse createdat", "CreatedAt", issue.CreatedAt, "err", err) continue } if tm.Before(p.timeLimit) { continue } for _, ig := range p.ignores { if ig(issue) { continue Watcher } } // TODO: Perhaps this key should include p.name, but perhaps not. // This makes sure we only ever post to each issue once. posted := ordered.Encode("triage.Posted", e.Project, e.Issue) if _, ok := p.db.Get(posted); ok { continue } u := fmt.Sprintf("https://github.com/%s/issues/%d", e.Project, e.Issue) p.slog.Debug("triage client consider", "url", u) vec, ok := p.vdb.Get(u) if !ok { p.slog.Error("triage lookup failed", "url", u) continue } results := p.vdb.Search(vec, p.maxResults+5) if len(results) > 0 && results[0].ID == u { results = results[1:] } for i, r := range results { if r.Score < p.scoreCutoff { results = results[:i] break } } if len(results) > p.maxResults { results = results[:p.maxResults] } if len(results) == 0 { if p.post { p.watcher.MarkOld(e.DBTime) } continue } var comment strings.Builder fmt.Fprintf(&comment, "**Related Issues**\n\n") for _, r := range results { title := r.ID if d, ok := p.docs.Get(r.ID); ok { title = d.Title } info := "" if issue, err := p.github.LookupIssueURL(r.ID); err == nil { info = fmt.Sprint(" #", issue.Number) if issue.ClosedAt != "" { info += " (closed)" } } fmt.Fprintf(&comment, " - [%s%s](%s) <!-- score=%.5f -->\n", markdownEscape(title), info, r.ID, r.Score) } fmt.Fprintf(&comment, "\n<sub>(Emoji vote if this was helpful or unhelpful; more detailed feedback welcome in [this discussion](https://github.com/golang/go/discussions/67901).)</sub>\n") p.slog.Info("related.Poster post", "name", p.name, "project", e.Project, "issue", e.Issue, "comment", comment.String()) if !p.post { continue } if err := p.github.PostIssueComment(issue, &github.IssueCommentChanges{Body: comment.String()}); err != nil { p.slog.Error("PostIssueComment", "issue", e.Issue, "err", err) continue } p.db.Set(posted, nil) p.watcher.MarkOld(e.DBTime) // Flush immediately to make sure we don't re-post if interrupted later in the loop. p.watcher.Flush() p.db.Flush() } } var markdownEscaper = strings.NewReplacer( "_", `\_`, "*", `\*`, "`", "\\`", "[", `\[`, "]", `\]`, "<", `\<`, ">", `\>`, "&", `\&`, ) func markdownEscape(s string) string { return markdownEscaper.Replace(s) }
keycheck
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/keycheck/key_test.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Test that API keys do not appear in any httprr logs in this repo. package keycheck import ( "bytes" "io/fs" "os" "path/filepath" "strings" "testing" "golang.org/x/oscar/internal/testutil" ) var bads = []string{ "\nAuthorization:", "\nx-goog-api-key:", "\nX-Goog-Api-Key:", } func TestTestdata(t *testing.T) { check := testutil.Checker(t) err := filepath.WalkDir("../..", func(file string, d fs.DirEntry, err error) error { if strings.HasSuffix(file, ".httprr") { data, err := os.ReadFile(file) check(err) for _, bad := range bads { if bytes.Contains(data, []byte(bad)) { t.Errorf("%s contains %q", file, bad) } } } return nil }) check(err) }
diff
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/diff/diff.go
// Copyright 2022 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package diff import ( "bytes" "fmt" "sort" "strings" ) // A pair is a pair of values tracked for both the x and y side of a diff. // It is typically a pair of line indexes. type pair struct{ x, y int } // Diff returns an anchored diff of the two texts old and new // in the “unified diff” format. If old and new are identical, // Diff returns a nil slice (no output). // // Unix diff implementations typically look for a diff with // the smallest number of lines inserted and removed, // which can in the worst case take time quadratic in the // number of lines in the texts. As a result, many implementations // either can be made to run for a long time or cut off the search // after a predetermined amount of work. // // In contrast, this implementation looks for a diff with the // smallest number of “unique” lines inserted and removed, // where unique means a line that appears just once in both old and new. // We call this an “anchored diff” because the unique lines anchor // the chosen matching regions. An anchored diff is usually clearer // than a standard diff, because the algorithm does not try to // reuse unrelated blank lines or closing braces. // The algorithm also guarantees to run in O(n log n) time // instead of the standard O(n²) time. // // Some systems call this approach a “patience diff,” named for // the “patience sorting” algorithm, itself named for a solitaire card game. // We avoid that name for two reasons. First, the name has been used // for a few different variants of the algorithm, so it is imprecise. // Second, the name is frequently interpreted as meaning that you have // to wait longer (to be patient) for the diff, meaning that it is a slower algorithm, // when in fact the algorithm is faster than the standard one. func Diff(oldName string, old []byte, newName string, new []byte) []byte { if bytes.Equal(old, new) { return nil } x := lines(old) y := lines(new) // Print diff header. var out bytes.Buffer fmt.Fprintf(&out, "diff %s %s\n", oldName, newName) fmt.Fprintf(&out, "--- %s\n", oldName) fmt.Fprintf(&out, "+++ %s\n", newName) // Loop over matches to consider, // expanding each match to include surrounding lines, // and then printing diff chunks. // To avoid setup/teardown cases outside the loop, // tgs returns a leading {0,0} and trailing {len(x), len(y)} pair // in the sequence of matches. var ( done pair // printed up to x[:done.x] and y[:done.y] chunk pair // start lines of current chunk count pair // number of lines from each side in current chunk ctext []string // lines for current chunk ) for _, m := range tgs(x, y) { if m.x < done.x { // Already handled scanning forward from earlier match. continue } // Expand matching lines as far as possible, // establishing that x[start.x:end.x] == y[start.y:end.y]. // Note that on the first (or last) iteration we may (or definitely do) // have an empty match: start.x==end.x and start.y==end.y. start := m for start.x > done.x && start.y > done.y && x[start.x-1] == y[start.y-1] { start.x-- start.y-- } end := m for end.x < len(x) && end.y < len(y) && x[end.x] == y[end.y] { end.x++ end.y++ } // Emit the mismatched lines before start into this chunk. // (No effect on first sentinel iteration, when start = {0,0}.) for _, s := range x[done.x:start.x] { ctext = append(ctext, "-"+s) count.x++ } for _, s := range y[done.y:start.y] { ctext = append(ctext, "+"+s) count.y++ } // If we're not at EOF and have too few common lines, // the chunk includes all the common lines and continues. const C = 3 // number of context lines if (end.x < len(x) || end.y < len(y)) && (end.x-start.x < C || (len(ctext) > 0 && end.x-start.x < 2*C)) { for _, s := range x[start.x:end.x] { ctext = append(ctext, " "+s) count.x++ count.y++ } done = end continue } // End chunk with common lines for context. if len(ctext) > 0 { n := end.x - start.x if n > C { n = C } for _, s := range x[start.x : start.x+n] { ctext = append(ctext, " "+s) count.x++ count.y++ } done = pair{start.x + n, start.y + n} // Format and emit chunk. // Convert line numbers to 1-indexed. // Special case: empty file shows up as 0,0 not 1,0. if count.x > 0 { chunk.x++ } if count.y > 0 { chunk.y++ } fmt.Fprintf(&out, "@@ -%d,%d +%d,%d @@\n", chunk.x, count.x, chunk.y, count.y) for _, s := range ctext { out.WriteString(s) } count.x = 0 count.y = 0 ctext = ctext[:0] } // If we reached EOF, we're done. if end.x >= len(x) && end.y >= len(y) { break } // Otherwise start a new chunk. chunk = pair{end.x - C, end.y - C} for _, s := range x[chunk.x:end.x] { ctext = append(ctext, " "+s) count.x++ count.y++ } done = end } return out.Bytes() } // lines returns the lines in the file x, including newlines. // If the file does not end in a newline, one is supplied // along with a warning about the missing newline. func lines(x []byte) []string { l := strings.SplitAfter(string(x), "\n") if l[len(l)-1] == "" { l = l[:len(l)-1] } else { // Treat last line as having a message about the missing newline attached, // using the same text as BSD/GNU diff (including the leading backslash). l[len(l)-1] += "\n\\ No newline at end of file\n" } return l } // tgs returns the pairs of indexes of the longest common subsequence // of unique lines in x and y, where a unique line is one that appears // once in x and once in y. // // The longest common subsequence algorithm is as described in // Thomas G. Szymanski, “A Special Case of the Maximal Common // Subsequence Problem,” Princeton TR #170 (January 1975), // available at https://research.swtch.com/tgs170.pdf. func tgs(x, y []string) []pair { // Count the number of times each string appears in a and b. // We only care about 0, 1, many, counted as 0, -1, -2 // for the x side and 0, -4, -8 for the y side. // Using negative numbers now lets us distinguish positive line numbers later. m := make(map[string]int) for _, s := range x { if c := m[s]; c > -2 { m[s] = c - 1 } } for _, s := range y { if c := m[s]; c > -8 { m[s] = c - 4 } } // Now unique strings can be identified by m[s] = -1+-4. // // Gather the indexes of those strings in x and y, building: // xi[i] = increasing indexes of unique strings in x. // yi[i] = increasing indexes of unique strings in y. // inv[i] = index j such that x[xi[i]] = y[yi[j]]. var xi, yi, inv []int for i, s := range y { if m[s] == -1+-4 { m[s] = len(yi) yi = append(yi, i) } } for i, s := range x { if j, ok := m[s]; ok && j >= 0 { xi = append(xi, i) inv = append(inv, j) } } // Apply Algorithm A from Szymanski's paper. // In those terms, A = J = inv and B = [0, n). // We add sentinel pairs {0,0}, and {len(x),len(y)} // to the returned sequence, to help the processing loop. J := inv n := len(xi) T := make([]int, n) L := make([]int, n) for i := range T { T[i] = n + 1 } for i := 0; i < n; i++ { k := sort.Search(n, func(k int) bool { return T[k] >= J[i] }) T[k] = J[i] L[i] = k + 1 } k := 0 for _, v := range L { if k < v { k = v } } seq := make([]pair, 2+k) seq[1+k] = pair{len(x), len(y)} // sentinel at end lastj := n for i := n - 1; i >= 0; i-- { if L[i] == k && J[i] < lastj { seq[k] = pair{xi[i], yi[J[i]]} k-- } } seq[0] = pair{0, 0} // sentinel at start return seq }
diff
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/diff/diff_test.go
// Copyright 2022 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package diff import ( "bytes" "path/filepath" "testing" "golang.org/x/tools/txtar" ) func clean(text []byte) []byte { text = bytes.ReplaceAll(text, []byte("$\n"), []byte("\n")) text = bytes.TrimSuffix(text, []byte("^D\n")) return text } func Test(t *testing.T) { files, _ := filepath.Glob("testdata/*.txt") if len(files) == 0 { t.Fatalf("no testdata") } for _, file := range files { t.Run(filepath.Base(file), func(t *testing.T) { a, err := txtar.ParseFile(file) if err != nil { t.Fatal(err) } if len(a.Files) != 3 || a.Files[2].Name != "diff" { t.Fatalf("%s: want three files, third named \"diff\"", file) } diffs := Diff(a.Files[0].Name, clean(a.Files[0].Data), a.Files[1].Name, clean(a.Files[1].Data)) want := clean(a.Files[2].Data) if !bytes.Equal(diffs, want) { t.Fatalf("%s: have:\n%s\nwant:\n%s\n%s", file, diffs, want, Diff("have", diffs, "want", want)) } }) } }
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/diff/testdata/same.txt
-- old -- hello world -- new -- hello world -- diff --
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/diff/testdata/dups.txt
-- old -- a b c d e f -- new -- a B C d e f -- diff -- diff old new --- old +++ new @@ -1,8 +1,8 @@ a $ -b - -c +B + +C $ d $
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/diff/testdata/long.txt
-- old -- 1 2 3 4 5 6 7 8 9 10 11 12 13 14 14½ 15 16 17 18 19 20 -- new -- 1 2 3 4 5 6 8 9 10 11 12 13 14 17 18 19 20 -- diff -- diff old new --- old +++ new @@ -4,7 +4,6 @@ 4 5 6 -7 8 9 10 @@ -12,9 +11,6 @@ 12 13 14 -14½ -15 -16 17 18 19
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/diff/testdata/allnew.txt
-- old -- -- new -- a b c -- diff -- diff old new --- old +++ new @@ -0,0 +1,3 @@ +a +b +c
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/diff/testdata/end.txt
-- old -- 1 2 3 4 5 6 7 eight nine ten eleven -- new -- 1 2 3 4 5 6 7 8 9 10 -- diff -- diff old new --- old +++ new @@ -5,7 +5,6 @@ 5 6 7 -eight -nine -ten -eleven +8 +9 +10
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/diff/testdata/triv.txt
Another example from Hunt and McIlroy, “An Algorithm for Differential File Comparison.” https://www.cs.dartmouth.edu/~doug/diff.pdf Anchored diff gives up on finding anything, since there are no unique lines. -- old -- a b c a b b a -- new -- c a b a b c -- diff -- diff old new --- old +++ new @@ -1,7 +1,6 @@ -a -b -c -a -b -b -a +c +a +b +a +b +c
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/diff/testdata/eof2.txt
-- old -- a b c^D -- new -- a b c -- diff -- diff old new --- old +++ new @@ -1,3 +1,3 @@ a b -c \ No newline at end of file +c
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/diff/testdata/eof1.txt
-- old -- a b c -- new -- a b c^D -- diff -- diff old new --- old +++ new @@ -1,3 +1,3 @@ a b -c +c \ No newline at end of file
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/diff/testdata/start.txt
-- old -- e pi 4 5 6 7 8 9 10 -- new -- 1 2 3 4 5 6 7 8 9 10 -- diff -- diff old new --- old +++ new @@ -1,5 +1,6 @@ -e -pi +1 +2 +3 4 5 6
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/diff/testdata/basic.txt
Example from Hunt and McIlroy, “An Algorithm for Differential File Comparison.” https://www.cs.dartmouth.edu/~doug/diff.pdf -- old -- a b c d e f g -- new -- w a b x y z e -- diff -- diff old new --- old +++ new @@ -1,7 +1,7 @@ +w a b -c -d +x +y +z e -f -g
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/diff/testdata/allold.txt
-- old -- a b c -- new -- -- diff -- diff old new --- old +++ new @@ -1,3 +0,0 @@ -a -b -c
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/diff/testdata/eof.txt
-- old -- a b c^D -- new -- a b c^D -- diff --
commentfix
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/commentfix/fix.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package commentfix implements rule-based rewriting of issue comments. package commentfix import ( "fmt" "io" "log/slog" "os" "reflect" "regexp" "strings" "testing" "time" "golang.org/x/oscar/internal/diff" "golang.org/x/oscar/internal/github" "golang.org/x/oscar/internal/storage/timed" "rsc.io/markdown" ) // A Fixer rewrites issue texts and issue comments using a set of rules. // After creating a fixer with [New], new rules can be added using // the [Fixer.AutoLink], [Fixer.ReplaceText], and [Fixer.ReplaceURL] methods, // and then repeated calls to [Fixer.Run] apply the replacements on GitHub. // // The zero value of a Fixer can be used in “offline” mode with [Fixer.Fix], // which returns rewritten Markdown. // // TODO(rsc): Separate the GitHub logic more cleanly from the rewrite logic. type Fixer struct { slog *slog.Logger github *github.Client watcher *timed.Watcher[*github.Event] fixes []func(any, int) any projects map[string]bool edit bool timeLimit time.Time stderrw io.Writer } func (f *Fixer) stderr() io.Writer { if f.stderrw != nil { return f.stderrw } return os.Stderr } // SetStderr sets the writer to use for messages f intends to print to standard error. // A Fixer writes directly to standard error (or this writer) so that it can print // readable multiline debugging outputs. These are also logged via the slog.Logger // passed to New, but multiline strings format as one very long Go-quoted string in slog // and are not as easy to read. func (f *Fixer) SetStderr(w io.Writer) { f.stderrw = w } // New creates a new Fixer using the given logger and GitHub client. // // The Fixer logs status and errors to lg; if lg is nil, the Fixer does not log anything. // // The GitHub client is used to watch for new issues and comments // and to edit issues and comments. If gh is nil, the Fixer can still be // configured and applied to Markdown using [Fixer.Fix], but calling // [Fixer.Run] will panic. // // The name is the handle by which the Fixer's “last position” is retrieved // across multiple program invocations; each differently configured // Fixer needs a different name. func New(lg *slog.Logger, gh *github.Client, name string) *Fixer { f := &Fixer{ slog: lg, github: gh, projects: make(map[string]bool), timeLimit: time.Now().Add(-30 * 24 * time.Hour), } f.init() // set f.slog if lg==nil if gh != nil { f.watcher = gh.EventWatcher("commentfix.Fixer:" + name) } return f } // SetTimeLimit sets the time before which comments are not edited. func (f *Fixer) SetTimeLimit(limit time.Time) { f.timeLimit = limit } // init makes sure slog is non-nil. func (f *Fixer) init() { if f.slog == nil { f.slog = slog.New(slog.NewTextHandler(io.Discard, nil)) } } func (f *Fixer) EnableProject(name string) { f.init() if f.github == nil { panic("commentfix.Fixer: EnableProject missing GitHub client") } f.projects[name] = true } // EnableEdits configures the fixer to make edits to comments on GitHub. // If EnableEdits is not called, the Fixer only prints what it would do, // and it does not mark the issues and comments as “old”. // This default mode is useful for experimenting with a Fixer // to gauge its effects. // // EnableEdits panics if the Fixer was not constructed by calling [New] // with a non-nil [github.Client]. func (f *Fixer) EnableEdits() { f.init() if f.github == nil { panic("commentfix.Fixer: EnableEdits missing GitHub client") } f.edit = true } // AutoLink instructs the fixer to turn any text matching the // regular expression pattern into a link to the URL. // The URL can contain substitution values like $1 // as supported by [regexp.Regexp.Expand]. // // For example, to link CL nnn to https://go.dev/cl/nnn, // you could use: // // f.AutoLink(`\bCL (\d+)\b`, "https://go.dev/cl/$1") func (f *Fixer) AutoLink(pattern, url string) error { f.init() re, err := regexp.Compile(pattern) if err != nil { return err } f.fixes = append(f.fixes, func(x any, flags int) any { if flags&flagLink != 0 { // already inside link return nil } plain, ok := x.(*markdown.Plain) if !ok { return nil } var out []markdown.Inline start := 0 text := plain.Text for _, m := range re.FindAllStringSubmatchIndex(text, -1) { if start < m[0] { out = append(out, &markdown.Plain{Text: text[start:m[0]]}) } link := string(re.ExpandString(nil, url, text, m)) out = append(out, &markdown.Link{ Inner: []markdown.Inline{&markdown.Plain{Text: text[m[0]:m[1]]}}, URL: link, }) start = m[1] } if start == 0 { return nil } if start < len(text) { out = append(out, &markdown.Plain{Text: text[start:]}) } return out }) return nil } // ReplaceText instructs the fixer to replace any text // matching the regular expression pattern with the replacement repl. // The replacement can contain substitution values like $1 // as supported by [regexp.Regexp.Expand]. // // ReplaceText only applies in Markdown plain text. // It does not apply in backticked code text, or in backticked // or indented code blocks, or to URLs. // It does apply to the plain text inside headings, // inside bold, italic, or link markup. // // For example, you could correct “cancelled” to “canceled”, // following Go's usual conventions, with: // // f.ReplaceText(`cancelled`, "canceled") func (f *Fixer) ReplaceText(pattern, repl string) error { f.init() re, err := regexp.Compile(pattern) if err != nil { return err } f.fixes = append(f.fixes, func(x any, flags int) any { plain, ok := x.(*markdown.Plain) if !ok { return nil } if re.FindStringSubmatchIndex(plain.Text) == nil { return nil } plain.Text = re.ReplaceAllString(plain.Text, repl) return plain }) return nil } // ReplaceURL instructs the fixer to replace any linked URLs // matching the regular expression pattern with the replacement URL repl. // The replacement can contain substitution values like $1 // as supported by [regexp.Regexp.Expand]. // // The regular expression pattern is automatically anchored // to the start of the URL: there is no need to start it with \A or ^. // // For example, to replace links to golang.org with links to go.dev, // you could use: // // f.ReplaceURL(`https://golang\.org(/?)`, "https://go.dev$1") func (f *Fixer) ReplaceURL(pattern, repl string) error { f.init() re, err := regexp.Compile(`\A(?:` + pattern + `)`) if err != nil { return err } f.fixes = append(f.fixes, func(x any, flags int) any { switch x := x.(type) { case *markdown.AutoLink: old := x.URL x.URL = re.ReplaceAllString(x.URL, repl) if x.URL == old { return nil } if x.Text == old { x.Text = x.URL } return x case *markdown.Link: old := x.URL x.URL = re.ReplaceAllString(x.URL, repl) if x.URL == old { return nil } if len(x.Inner) == 1 { if p, ok := x.Inner[0].(*markdown.Plain); ok && p.Text == old { p.Text = x.URL } } return x } return nil }) return nil } // Run applies the configured rewrites to issue texts and comments on GitHub // that have been updated since the last call to Run for this fixer with edits enabled // (including in different program invocations using the same fixer name). // // By default, Run ignores issues texts and comments more than 30 days old. // Use [Fixer.SetTimeLimit] to change the cutoff. // // Run prints diffs of its edits to standard error in addition to logging them, // because slog logs the diffs as single-line Go quoted strings that are // too difficult to skim. // // If [Fixer.EnableEdits] has not been called, Run processes recent issue texts // and comments and prints diffs of its intended edits to standard error, // but it does not make the changes. It also does not mark the issues and comments as processed, // so that a future call to Run with edits enabled can rewrite them on GitHub. // // Run sleeps for 1 second after each GitHub edit. // // Run panics if the Fixer was not constructed by calling [New] // with a non-nil [github.Client]. func (f *Fixer) Run() { if f.watcher == nil { panic("commentfix.Fixer: Run missing GitHub client") } for e := range f.watcher.Recent() { if !f.projects[e.Project] { continue } var ic *issueOrComment switch x := e.Typed.(type) { default: continue case *github.Issue: if x.PullRequest != nil { // Do not edit pull request bodies, // because they turn into commit messages // and cannot contain things like hyperlinks. continue } ic = &issueOrComment{issue: x} case *github.IssueComment: ic = &issueOrComment{comment: x} } if tm, err := time.Parse(time.RFC3339, ic.updatedAt()); err == nil && tm.Before(f.timeLimit) { if f.edit { f.watcher.MarkOld(e.DBTime) } continue } body, updated := f.Fix(ic.body()) if !updated { continue } live, err := ic.download(f.github) if err != nil { // unreachable unless github error f.slog.Error("commentfix download error", "project", e.Project, "issue", e.Issue, "url", ic.url(), "err", err) continue } if live.body() != ic.body() { f.slog.Info("commentfix stale", "project", e.Project, "issue", e.Issue, "url", ic.url()) continue } f.slog.Info("commentfix rewrite", "project", e.Project, "issue", e.Issue, "url", ic.url(), "edit", f.edit, "diff", bodyDiff(ic.body(), body)) fmt.Fprintf(f.stderr(), "Fix %s:\n%s\n", ic.url(), bodyDiff(ic.body(), body)) if f.edit { f.slog.Info("commentfix editing github", "url", ic.url()) if err := ic.editBody(f.github, body); err != nil { // unreachable unless github error f.slog.Error("commentfix edit", "project", e.Project, "issue", e.Issue, "err", err) continue } f.watcher.MarkOld(e.DBTime) f.watcher.Flush() if !testing.Testing() { // unreachable in tests time.Sleep(1 * time.Second) } } } } type issueOrComment struct { issue *github.Issue comment *github.IssueComment } func (ic *issueOrComment) updatedAt() string { if ic.issue != nil { return ic.issue.UpdatedAt } return ic.comment.UpdatedAt } func (ic *issueOrComment) body() string { if ic.issue != nil { return ic.issue.Body } return ic.comment.Body } func (ic *issueOrComment) download(gh *github.Client) (*issueOrComment, error) { if ic.issue != nil { live, err := gh.DownloadIssue(ic.issue.URL) return &issueOrComment{issue: live}, err } live, err := gh.DownloadIssueComment(ic.comment.URL) return &issueOrComment{comment: live}, err } func (ic *issueOrComment) url() string { if ic.issue != nil { return ic.issue.URL } return ic.comment.URL } func (ic *issueOrComment) editBody(gh *github.Client, body string) error { if ic.issue != nil { return gh.EditIssue(ic.issue, &github.IssueChanges{Body: body}) } return gh.EditIssueComment(ic.comment, &github.IssueCommentChanges{Body: body}) } // Fix applies the configured rewrites to the markdown text. // If no fixes apply, it returns "", false. // If any fixes apply, it returns the updated text and true. func (f *Fixer) Fix(text string) (newText string, fixed bool) { p := &markdown.Parser{ AutoLinkText: true, Strikethrough: true, HeadingIDs: true, Emoji: true, } doc := p.Parse(text) for _, fixer := range f.fixes { if f.fixOne(fixer, doc) { fixed = true } } if !fixed { return "", false } return markdown.Format(doc), true } const ( // flagLink means this inline is link text, // so it is inappropriate/impossible to turn // it into a (nested) hyperlink. flagLink = 1 << iota ) // fixOne runs one fix function over doc, // reporting whether doc was changed. func (f *Fixer) fixOne(fix func(any, int) any, doc *markdown.Document) (fixed bool) { var ( fixBlock func(markdown.Block) fixInlines func(*[]markdown.Inline) ) fixBlock = func(x markdown.Block) { switch x := x.(type) { case *markdown.Document: for _, sub := range x.Blocks { fixBlock(sub) } case *markdown.Quote: for _, sub := range x.Blocks { fixBlock(sub) } case *markdown.List: for _, sub := range x.Items { fixBlock(sub) } case *markdown.Item: for _, sub := range x.Blocks { fixBlock(sub) } case *markdown.Heading: fixBlock(x.Text) case *markdown.Paragraph: fixBlock(x.Text) case *markdown.Text: fixInlines(&x.Inline) } } link := 0 fixInlines = func(inlines *[]markdown.Inline) { changed := false var out []markdown.Inline for _, x := range *inlines { switch x := x.(type) { case *markdown.Del: fixInlines(&x.Inner) case *markdown.Emph: fixInlines(&x.Inner) case *markdown.Strong: fixInlines(&x.Inner) case *markdown.Link: link++ fixInlines(&x.Inner) link-- } flags := 0 if link > 0 { flags = flagLink } switch fx := fix(x, flags).(type) { default: // unreachable unless bug in fix func f.slog.Error("fixer returned invalid type", "old", reflect.TypeOf(x).String(), "new", reflect.TypeOf(fx).String()) out = append(out, x) case nil: out = append(out, x) case markdown.Inline: changed = true out = append(out, fx) case []markdown.Inline: changed = true out = append(out, fx...) } } if changed { *inlines = out fixed = true } } fixBlock(doc) return fixed } func bodyDiff(old, new string) string { old = strings.TrimRight(old, "\n") + "\n" old = strings.ReplaceAll(old, "\r\n", "\n") new = strings.TrimRight(new, "\n") + "\n" new = strings.ReplaceAll(new, "\r\n", "\n") return string(diff.Diff("old", []byte(old), "new", []byte(new))) }
commentfix
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/commentfix/fix_test.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package commentfix import ( "bytes" "io" "path/filepath" "strings" "testing" "text/template" "time" "golang.org/x/oscar/internal/diff" "golang.org/x/oscar/internal/github" "golang.org/x/oscar/internal/storage" "golang.org/x/oscar/internal/testutil" "golang.org/x/tools/txtar" ) func TestTestdata(t *testing.T) { files, err := filepath.Glob("testdata/*.txt") testutil.Check(t, err) for _, file := range files { t.Run(filepath.Base(file), func(t *testing.T) { a, err := txtar.ParseFile(file) testutil.Check(t, err) var f Fixer tmpl, err := new(template.Template).Parse(string(a.Comment)) testutil.Check(t, err) testutil.Check(t, tmpl.Execute(io.Discard, &f)) for i := 0; i+2 <= len(a.Files); { in := a.Files[i] out := a.Files[i+1] i += 2 name := strings.TrimSuffix(in.Name, ".in") if name != strings.TrimSuffix(out.Name, ".out") { t.Fatalf("mismatched file pair: %s and %s", in.Name, out.Name) } t.Run(name, func(t *testing.T) { newBody, fixed := f.Fix(string(in.Data)) if fixed != (newBody != "") { t.Fatalf("Fix() = %q, %v (len(newBody)=%d but fixed=%v)", newBody, fixed, len(newBody), fixed) } if newBody != string(out.Data) { t.Fatalf("Fix: incorrect output:\n%s", string(diff.Diff("want", []byte(out.Data), "have", []byte(newBody)))) } }) } }) } } func TestPanics(t *testing.T) { callRecover := func() { recover() } func() { defer callRecover() var f Fixer f.EnableEdits() t.Errorf("EnableEdits on zero Fixer did not panic") }() func() { defer callRecover() var f Fixer f.EnableProject("abc/xyz") t.Errorf("EnableProject on zero Fixer did not panic") }() func() { defer callRecover() var f Fixer f.Run() t.Errorf("Run on zero Fixer did not panic") }() } func TestErrors(t *testing.T) { var f Fixer if err := f.AutoLink(`\`, ""); err == nil { t.Fatalf("AutoLink succeeded on bad regexp") } if err := f.ReplaceText(`\`, ""); err == nil { t.Fatalf("ReplaceText succeeded on bad regexp") } if err := f.ReplaceURL(`\`, ""); err == nil { t.Fatalf("ReplaceText succeeded on bad regexp") } } func TestGitHub(t *testing.T) { testGH := func() *github.Client { db := storage.MemDB() gh := github.New(testutil.Slogger(t), db, nil, nil) gh.Testing().AddIssue("rsc/tmp", &github.Issue{ Number: 18, Title: "spellchecking", Body: "Contexts are cancelled.", CreatedAt: "2024-06-17T20:16:49-04:00", UpdatedAt: "2024-06-17T20:16:49-04:00", }) gh.Testing().AddIssue("rsc/tmp", &github.Issue{ Number: 19, Title: "spellchecking", Body: "Contexts are cancelled.", CreatedAt: "2024-06-17T20:16:49-04:00", UpdatedAt: "2024-06-17T20:16:49-04:00", PullRequest: new(struct{}), }) gh.Testing().AddIssueComment("rsc/tmp", 18, &github.IssueComment{ Body: "No really, contexts are cancelled.", CreatedAt: "2024-06-17T20:16:49-04:00", UpdatedAt: "2024-06-17T20:16:49-04:00", }) gh.Testing().AddIssueComment("rsc/tmp", 18, &github.IssueComment{ Body: "Completely unrelated.", CreatedAt: "2024-06-17T20:16:49-04:00", UpdatedAt: "2024-06-17T20:16:49-04:00", }) return gh } // Check for comment with too-new cutoff and edits disabled. // Finds nothing but also no-op. gh := testGH() lg, buf := testutil.SlogBuffer() f := New(lg, gh, "fixer1") f.SetStderr(testutil.LogWriter(t)) f.EnableProject("rsc/tmp") f.SetTimeLimit(time.Date(2222, 1, 1, 1, 1, 1, 1, time.UTC)) f.ReplaceText("cancelled", "canceled") f.Run() // t.Logf("output:\n%s", buf) if bytes.Contains(buf.Bytes(), []byte("commentfix rewrite")) { t.Fatalf("logs mention rewrite of old comment:\n%s", buf.Bytes()) } // Check again with old enough cutoff. // Finds comment but does not edit, does not advance cursor. f = New(lg, gh, "fixer1") f.SetStderr(testutil.LogWriter(t)) f.EnableProject("rsc/tmp") f.SetTimeLimit(time.Time{}) f.ReplaceText("cancelled", "canceled") f.Run() // t.Logf("output:\n%s", buf) if !bytes.Contains(buf.Bytes(), []byte("commentfix rewrite")) { t.Fatalf("logs do not mention rewrite of comment:\n%s", buf.Bytes()) } if bytes.Contains(buf.Bytes(), []byte("editing github")) { t.Fatalf("logs incorrectly mention editing github:\n%s", buf.Bytes()) } // Run with too-new cutoff and edits enabled, should make issue not seen again. buf.Truncate(0) f.SetTimeLimit(time.Date(2222, 1, 1, 1, 1, 1, 1, time.UTC)) f.EnableEdits() f.Run() // t.Logf("output:\n%s", buf) if bytes.Contains(buf.Bytes(), []byte("commentfix rewrite")) { t.Fatalf("logs incorrectly mention rewrite of comment:\n%s", buf.Bytes()) } f.SetTimeLimit(time.Time{}) f.Run() // t.Logf("output:\n%s", buf) if bytes.Contains(buf.Bytes(), []byte("commentfix rewrite")) { t.Fatalf("logs incorrectly mention rewrite of comment:\n%s", buf.Bytes()) } // Write comment (now using fixer2 to avoid 'marked as old' in fixer1). lg, buf = testutil.SlogBuffer() f = New(lg, gh, "fixer2") f.SetStderr(testutil.LogWriter(t)) f.EnableProject("rsc/tmp") f.ReplaceText("cancelled", "canceled") f.SetTimeLimit(time.Time{}) f.EnableEdits() f.Run() // t.Logf("output:\n%s", buf) if !bytes.Contains(buf.Bytes(), []byte("commentfix rewrite")) { t.Fatalf("logs do not mention rewrite of comment:\n%s", buf.Bytes()) } if !bytes.Contains(buf.Bytes(), []byte("editing github")) { t.Fatalf("logs do not mention editing github:\n%s", buf.Bytes()) } if !bytes.Contains(buf.Bytes(), []byte(`editing github" url=https://api.github.com/repos/rsc/tmp/issues/18`)) { t.Fatalf("logs do not mention editing issue body:\n%s", buf.Bytes()) } if bytes.Contains(buf.Bytes(), []byte(`editing github" url=https://api.github.com/repos/rsc/tmp/issues/19`)) { t.Fatalf("logs incorrectly mention editing pull request body:\n%s", buf.Bytes()) } if !bytes.Contains(buf.Bytes(), []byte(`editing github" url=https://api.github.com/repos/rsc/tmp/issues/comments/10000000001`)) { t.Fatalf("logs do not mention editing issue comment:\n%s", buf.Bytes()) } if bytes.Contains(buf.Bytes(), []byte("ERROR")) { t.Fatalf("editing failed:\n%s", buf.Bytes()) } // Try again; comment should now be marked old in watcher. lg, buf = testutil.SlogBuffer() f = New(lg, gh, "fixer2") f.SetStderr(testutil.LogWriter(t)) f.EnableProject("rsc/tmp") f.ReplaceText("cancelled", "canceled") f.EnableEdits() f.SetTimeLimit(time.Time{}) f.Run() // t.Logf("output:\n%s", buf) if bytes.Contains(buf.Bytes(), []byte("commentfix rewrite")) { t.Fatalf("logs incorrectly mention rewrite of comment:\n%s", buf.Bytes()) } // Check that not enabling the project doesn't edit comments. lg, buf = testutil.SlogBuffer() f = New(lg, gh, "fixer3") f.SetStderr(testutil.LogWriter(t)) f.EnableProject("xyz/tmp") f.ReplaceText("cancelled", "canceled") f.EnableEdits() f.SetTimeLimit(time.Time{}) f.Run() // t.Logf("output:\n%s", buf) if bytes.Contains(buf.Bytes(), []byte("commentfix rewrite")) { t.Fatalf("logs incorrectly mention rewrite of comment:\n%s", buf.Bytes()) } }
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/commentfix/testdata/replacetext.txt
{{.ReplaceText `cancelled` "canceled"}} -- 1.in -- The context is cancelled. -- 1.out -- The context is canceled. -- 2.in -- fmt.Printf("cancelled\n") -- 2.out -- -- 3.in -- The context **is cancelled.** -- 3.out -- The context **is canceled.** -- 4.in -- The context *is cancelled.* -- 4.out -- The context *is canceled.* -- 4.in -- The context ~~is cancelled.~~ -- 4.out -- The context ~~is canceled.~~ -- 5.in -- # Contexts that are cancelled -- 5.out -- # Contexts that are canceled -- 6.in -- Here is a list of misspelled words: - cancelled -- 6.out -- Here is a list of misspelled words: - canceled -- 7.in -- > The context is cancelled. -- 7.out -- > The context is canceled.
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/commentfix/testdata/replaceurl.txt
{{.ReplaceURL `https://golang.org/(.*)` "https://go.dev/$1#"}} {{.ReplaceURL `(?i)https://lowercase.com/(.*)` "https://lowercase.com/$1"}} -- 1.in -- Visit https://golang.org/doc for more docs. -- 1.out -- Visit [https://go.dev/doc#](https://go.dev/doc#) for more docs. -- 2.in -- Visit <https://golang.org/doc> for more docs. -- 2.out -- Visit <https://go.dev/doc#> for more docs. -- 3.in -- Visit [this page](https://golang.org/doc) for more docs. -- 3.out -- Visit [this page](https://go.dev/doc#) for more docs. -- 4.in -- Visit [https://golang.org/doc](https://golang.org/doc) for more docs. -- 4.out -- Visit [https://go.dev/doc#](https://go.dev/doc#) for more docs. -- 5.in -- Visit <https://LOWERcaSE.cOM/doc> for more docs. -- 5.out -- Visit <https://lowercase.com/doc> for more docs. -- 6.in -- Visit <https://lowercase.com/doc> for more docs. -- 6.out --
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/commentfix/testdata/order.txt
{{/* rules apply in order. make sure this does not loop; it claims to have edited (and did edit) the text, so the result is non-empty, but no actual change is made. */}} {{.ReplaceText `cancelled` "canceled"}} {{.ReplaceText `canceled` "cancelled"}} -- 1.in -- The context is cancelled. -- 1.out -- The context is cancelled. -- 2.in -- The context is canceled. -- 2.out -- The context is cancelled.
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/commentfix/testdata/autolink.txt
{{.AutoLink `\bCL (\d+)\b` "https://go.dev/cl/$1"}} -- 1.in -- This is in CL 12345. -- 1.out -- This is in [CL 12345](https://go.dev/cl/12345). -- 2.in -- This is in **CL 12345**. -- 2.out -- This is in **[CL 12345](https://go.dev/cl/12345)**. -- 3.in -- This is in [the CL 12345 page](https://go.dev/cl/12345). -- 3.out --
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/commentfix/testdata/nop.txt
{{/* make sure this does not loop; it claims to have edited (and did edit) the text, so the result is non-empty, but no actual change is made. */}} {{.ReplaceText `cancelled` "canceled"}} {{.ReplaceText `canceled` "cancelled"}} -- 1.in -- The context is cancelled. -- 1.out -- The context is cancelled.
llm
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/llm/embed_test.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package llm import ( "context" "fmt" "strings" "testing" ) func TestQuote(t *testing.T) { ctx := context.Background() docs := []EmbedDoc{{Text: "abc"}, {Text: "alphabetical order"}} vecs, err := QuoteEmbedder().EmbedDocs(ctx, docs) if err != nil { t.Fatal(err) } if len(vecs) != len(docs) { t.Fatalf("len(docs) = %v, but len(vecs) = %d", len(docs), len(vecs)) } for i, v := range vecs { u := UnquoteVector(v) if u != docs[i].Text { var buf strings.Builder for i, f := range v { fmt.Fprintf(&buf, " %f", f) if f < 0 { if i < len(v)-1 { fmt.Fprintf(&buf, " ... %f", v[len(v)-1]) } break } } t.Logf("Embed(%q) = %v", docs[i].Text, buf.String()) t.Errorf("Unquote() = %q, want %q", u, docs[i].Text) } } }
llm
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/llm/llm.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package llm defines interfaces implemented by LLMs (or LLM-related services). package llm import ( "context" "encoding/binary" "math" ) // An Embedder computes vector embeddings of a list of documents. // // EmbedDocs accepts an arbitrary number of documents and returns // their embeddings. If the underlying implementation has a limit on // the batch size, it should make multiple requests in order to process // all the documents. If an error occurs after some, but not all, documents // have been processed, EmbedDocs can return an error along with a // shortened vector slice giving the vectors for a prefix of the document slice. // // See [QuoteEmbedder] for a semantically useless embedder that // can nonetheless be helpful when writing tests, // and see [golang.org/x/oscar/internal/gemini] for a real implementation. type Embedder interface { EmbedDocs(ctx context.Context, docs []EmbedDoc) ([]Vector, error) } // An EmbedDoc is a single document to be embedded. type EmbedDoc struct { Title string // title of document Text string // text of document } // A Vector is an embedding vector, typically a high-dimensional unit vector. type Vector []float32 // Dot returns the dot product of v and w. // // TODO(rsc): Using a float64 for the result is slightly higher // precision and may be worth doing in the intermediate calculation // but may not be worth the type conversions involved to return a float64. // Perhaps the return type should still be float32 even if the math is float64. func (v Vector) Dot(w Vector) float64 { v = v[:min(len(v), len(w))] w = w[:len(v)] // make "i in range for v" imply "i in range for w" to remove bounds check in loop t := float64(0) for i := range v { t += float64(v[i]) * float64(w[i]) } return t } // Encode returns a byte encoding of the vector v, // suitable for storing in a database. func (v Vector) Encode() []byte { val := make([]byte, 4*len(v)) for i, f := range v { binary.BigEndian.PutUint32(val[4*i:], math.Float32bits(f)) } return val } // Decode decodes the byte encoding enc into the vector v. // Enc should be a multiple of 4 bytes; any trailing bytes are ignored. func (v *Vector) Decode(enc []byte) { if len(*v) < len(enc)/4 { *v = make(Vector, len(enc)/4) } *v = (*v)[:0] for ; len(enc) >= 4; enc = enc[4:] { *v = append(*v, math.Float32frombits(binary.BigEndian.Uint32(enc))) } }
llm
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/llm/llm_test.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package llm import ( "slices" "testing" ) func TestVector(t *testing.T) { v1 := Vector{1, 2, 3, 4} v2 := Vector{-200, -3000, 0, -10000} dot := v1.Dot(v2) if dot != -46200 { t.Errorf("%v.Dot(%v) = %v, want -46200", v1, v2, dot) } enc := v1.Encode() var v3 Vector v3.Decode(enc) if !slices.Equal(v3, v1) { t.Errorf("Decode(Encode(%v)) = %v, want %v", v1, v3, v1) } }
llm
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/llm/embed.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package llm import ( "context" "math" ) const quoteLen = 123 // QuoteEmbedder returns an implementation // of Embedder that can be useful for testing but // is completely pointless for real use. // It encodes up to the first 122 bytes of each document // directly into the first 122 elements of a 123-element unit vector. func QuoteEmbedder() Embedder { return quoter{} } // quote quotes text into a vector. // The text ends at the first negative entry in the vector. // The final entry of the vector is hard-coded to -1 // before normalization, so that the final entry of a // normalized vector lets us know scaling to reverse // to obtain the original bytes. func quote(text string) Vector { v := make(Vector, quoteLen) var d float64 for i := range len(text) { if i >= len(v)-1 { break } v[i] = float32(byte(text[i])) / 256 d += float64(v[i]) * float64(v[i]) } if len(text)+1 < len(v) { v[len(text)] = -1 d += 1 } v[len(v)-1] = -1 d += 1 d = 1 / math.Sqrt(d) for i := range v { v[i] *= float32(d) } return v } // quoter is a quoting Embedder, returned by QuoteEmbedder type quoter struct{} // EmbedDocs implements Embedder by quoting. func (quoter) EmbedDocs(ctx context.Context, docs []EmbedDoc) ([]Vector, error) { var vecs []Vector for _, d := range docs { vecs = append(vecs, quote(d.Text)) } return vecs, nil } // UnquoteVector recovers the original text prefix // passed to a [QuoteEmbedder]'s EmbedDocs method. // Like QuoteEmbedder, UnquoteVector is only useful in tests. func UnquoteVector(v Vector) string { if len(v) != quoteLen { panic("UnquoteVector of non-quotation vector") } d := -1 / v[len(v)-1] var b []byte for _, f := range v { if f < 0 { break } b = append(b, byte(256*f*d+0.5)) } return string(b) }
storage
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/storage/mem.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package storage import ( "bytes" "fmt" "iter" "log/slog" "slices" "sync" "golang.org/x/oscar/internal/llm" "rsc.io/omap" "rsc.io/ordered" "rsc.io/top" ) // A MemLocker is a single-process implementation // of the database Lock and Unlock methods, // suitable if there is only one process accessing the // database at a time. // // The zero value for a MemLocker // is a valid MemLocker with no locks held. // It must not be copied after first use. type MemLocker struct { mu sync.Mutex locks map[string]*sync.Mutex } // Lock locks the mutex with the given name. func (l *MemLocker) Lock(name string) { l.mu.Lock() if l.locks == nil { l.locks = make(map[string]*sync.Mutex) } mu := l.locks[name] if mu == nil { mu = new(sync.Mutex) l.locks[name] = mu } l.mu.Unlock() mu.Lock() } // Unlock unlocks the mutex with the given name. func (l *MemLocker) Unlock(name string) { l.mu.Lock() mu := l.locks[name] l.mu.Unlock() if mu == nil { panic("Unlock of never locked key") } mu.Unlock() } // MemDB returns an in-memory DB implementation. func MemDB() DB { return new(memDB) } // A memDB is an in-memory DB implementation,. type memDB struct { MemLocker mu sync.RWMutex data omap.Map[string, []byte] } func (*memDB) Close() {} func (*memDB) Panic(msg string, args ...any) { Panic(msg, args...) } // Get returns the value associated with the key. func (db *memDB) Get(key []byte) (val []byte, ok bool) { db.mu.RLock() v, ok := db.data.Get(string(key)) db.mu.RUnlock() if ok { v = bytes.Clone(v) } return v, ok } // Scan returns an iterator overall key-value pairs // in the range start ≤ key ≤ end. func (db *memDB) Scan(start, end []byte) iter.Seq2[[]byte, func() []byte] { lo := string(start) hi := string(end) return func(yield func(key []byte, val func() []byte) bool) { db.mu.RLock() locked := true defer func() { if locked { db.mu.RUnlock() } }() for k, v := range db.data.Scan(lo, hi) { key := []byte(k) val := func() []byte { return bytes.Clone(v) } db.mu.RUnlock() locked = false if !yield(key, val) { return } db.mu.RLock() locked = true } } } // Delete deletes any entry with the given key. func (db *memDB) Delete(key []byte) { db.mu.Lock() defer db.mu.Unlock() db.data.Delete(string(key)) } // DeleteRange deletes all entries with start ≤ key ≤ end. func (db *memDB) DeleteRange(start, end []byte) { db.mu.Lock() defer db.mu.Unlock() db.data.DeleteRange(string(start), string(end)) } // Set sets the value associated with key to val. func (db *memDB) Set(key, val []byte) { db.mu.Lock() defer db.mu.Unlock() db.data.Set(string(key), bytes.Clone(val)) } // Batch returns a new batch. func (db *memDB) Batch() Batch { return &memBatch{db: db} } // Flush flushes everything to persistent storage. // Since this is an in-memory database, the memory is as persistent as it gets. func (db *memDB) Flush() { } // A memBatch is a Batch for a memDB. type memBatch struct { db *memDB // underlying database ops []func() // operations to apply } func (b *memBatch) Set(key, val []byte) { k := string(key) v := bytes.Clone(val) b.ops = append(b.ops, func() { b.db.data.Set(k, v) }) } func (b *memBatch) Delete(key []byte) { k := string(key) b.ops = append(b.ops, func() { b.db.data.Delete(k) }) } func (b *memBatch) DeleteRange(start, end []byte) { s := string(start) e := string(end) b.ops = append(b.ops, func() { b.db.data.DeleteRange(s, e) }) } func (b *memBatch) MaybeApply() bool { return false } func (b *memBatch) Apply() { b.db.mu.Lock() defer b.db.mu.Unlock() for _, op := range b.ops { op() } } // A memVectorDB is a VectorDB implementing in-memory search // but storing its vectors in an underlying DB. type memVectorDB struct { storage DB slog *slog.Logger namespace string mu sync.RWMutex cache map[string][]float32 // in-memory cache of all vectors, indexed by id } // MemVectorDB returns a VectorDB that stores its vectors in db // but uses a cached, in-memory copy to implement Search using // a brute-force scan. // // The namespace is incorporated into the keys used in the underlying db, // to allow multiple vector databases to be stored in a single [DB]. // // When MemVectorDB is called, it reads all previously stored vectors // from db; after that, changes must be made using the MemVectorDB // Set method. // // A MemVectorDB requires approximately 3kB of memory per stored vector. // // The db keys used by a MemVectorDB have the form // // ordered.Encode("llm.Vector", namespace, id) // // where id is the document ID passed to Set. func MemVectorDB(db DB, lg *slog.Logger, namespace string) VectorDB { // NOTE: We could cut the memory per stored vector in half by quantizing to int16. // // The worst case score error in a dot product over 768 entries // caused by quantization error of e is approximately 55.4 e: // // For a unit vector v of length N, the way to maximize Σ v[i] is to make // all the vector entries the same value x, such that sqrt(N x²) = 1, // so x = 1/sqrt(N). The maximum of Σ v[i] is therefore N/sqrt(N). // // Looking at the dot product error for v₁ · v₂ caused by adding // quantization error vectors e₁ and e₂: // // |Σ v₁[i]*v₂[i] - Σ (v₁[i]+e₁[i])*(v₂[i]+e₂[i])| = // |Σ v₁[i]*v₂[i] - Σ (v₁[i]*v₂[i] + e₁[i]*v₂[i] + e₂[i]*v₁[i] + e₁[i]*e₂[i])| = // |Σ (e₁[i]*v₂[i] + e₂[i]*v₁[i] + e₁[i]*e₂[i])| ≤ // Σ |e₁[i]*v₂[i]| + Σ |e₂[i]*v₁[i]| + Σ |e₁[i]*e₂[i]| ≤ // e × (Σ v₁[i] + Σ v₂[i]) + N e² ≤ // e × 2 × N/sqrt(N) + N e² = // e × (2 × N/sqrt(N) + e) ~= 55.4 e for N=768. // // Quantizing the float32 range [-1,+1] to int16 range [-32768,32767] // would introduce a maximum quantization error e of // ½ × (+1 - -1) / (32767 - -32768) = 1/65535 = 0.000015259, // resulting in a maximum dot product error of approximately 0.00846, // which would not change the result order significantly. vdb := &memVectorDB{ storage: db, slog: lg, namespace: namespace, cache: make(map[string][]float32), } // Load all the previously-stored vectors. vdb.cache = make(map[string][]float32) for key, getVal := range vdb.storage.Scan( ordered.Encode("llm.Vector", namespace), ordered.Encode("llm.Vector", namespace, ordered.Inf)) { var id string if err := ordered.Decode(key, nil, nil, &id); err != nil { // unreachable except data corruption panic(fmt.Errorf("MemVectorDB decode key=%v: %v", Fmt(key), err)) } val := getVal() if len(val)%4 != 0 { // unreachable except data corruption panic(fmt.Errorf("MemVectorDB decode key=%v bad len(val)=%d", Fmt(key), len(val))) } var vec llm.Vector vec.Decode(val) vdb.cache[id] = vec } vdb.slog.Info("loaded vectordb", "n", len(vdb.cache), "namespace", namespace) return vdb } func (db *memVectorDB) Set(id string, vec llm.Vector) { db.storage.Set(ordered.Encode("llm.Vector", db.namespace, id), vec.Encode()) db.mu.Lock() db.cache[id] = slices.Clone(vec) db.mu.Unlock() } func (db *memVectorDB) Get(name string) (llm.Vector, bool) { db.mu.RLock() vec, ok := db.cache[name] db.mu.RUnlock() return vec, ok } func (db *memVectorDB) Search(target llm.Vector, n int) []VectorResult { db.mu.RLock() defer db.mu.RUnlock() best := top.New(n, VectorResult.cmp) for name, vec := range db.cache { if len(vec) != len(target) { continue } best.Add(VectorResult{name, target.Dot(vec)}) } return best.Take() } func (db *memVectorDB) Flush() { db.storage.Flush() } // memVectorBatch implements VectorBatch for a memVectorDB. type memVectorBatch struct { db *memVectorDB // underlying memVectorDB sb Batch // batch for underlying DB w map[string]llm.Vector // vectors to write } func (db *memVectorDB) Batch() VectorBatch { return &memVectorBatch{db, db.storage.Batch(), make(map[string]llm.Vector)} } func (b *memVectorBatch) Set(name string, vec llm.Vector) { b.sb.Set(ordered.Encode("llm.Vector", b.db.namespace, name), vec.Encode()) b.w[name] = slices.Clone(vec) } func (b *memVectorBatch) MaybeApply() bool { if !b.sb.MaybeApply() { return false } b.Apply() return true } func (b *memVectorBatch) Apply() { b.sb.Apply() b.db.mu.Lock() defer b.db.mu.Unlock() for name, vec := range b.w { b.db.cache[name] = vec } clear(b.w) }
storage
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/storage/vtest.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package storage import ( "math" "reflect" "slices" "testing" "golang.org/x/oscar/internal/llm" ) func TestVectorDB(t *testing.T, newdb func() VectorDB) { vdb := newdb() vdb.Set("orange2", embed("orange2")) vdb.Set("orange1", embed("orange1")) b := vdb.Batch() b.Set("apple3", embed("apple3")) b.Set("apple4", embed("apple4")) b.Set("ignore", embed("bad")[:4]) b.Apply() v, ok := vdb.Get("apple3") if !ok || !slices.Equal(v, embed("apple3")) { // unreachable except bad vectordb t.Errorf("Get(apple3) = %v, %v, want %v, true", v, ok, embed("apple3")) } want := []VectorResult{ {"apple4", 0.9999961187341375}, {"apple3", 0.9999843342970269}, {"orange1", 0.38062230442542155}, {"orange2", 0.3785152783773009}, } have := vdb.Search(embed("apple5"), 5) if !reflect.DeepEqual(have, want) { // unreachable except bad vectordb t.Fatalf("Search(apple5, 5):\nhave %v\nwant %v", have, want) } vdb.Flush() vdb = newdb() have = vdb.Search(embed("apple5"), 3) want = want[:3] if !reflect.DeepEqual(have, want) { // unreachable except bad vectordb t.Errorf("Search(apple5, 3) in fresh database:\nhave %v\nwant %v", have, want) } } func embed(text string) llm.Vector { const vectorLen = 16 v := make(llm.Vector, vectorLen) d := float32(0) for i := range len(text) { v[i] = float32(byte(text[i])) / 256 d += float32(v[i] * v[i]) // float32() to avoid FMA } if len(text) < len(v) { v[len(text)] = -1 d += 1 } d = float32(1 / math.Sqrt(float64(d))) for i, x := range v { v[i] = x * d } return v }
storage
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/storage/mem_test.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package storage import ( "testing" "golang.org/x/oscar/internal/testutil" ) func TestMemDB(t *testing.T) { TestDB(t, MemDB()) } func TestMemVectorDB(t *testing.T) { db := MemDB() TestVectorDB(t, func() VectorDB { return MemVectorDB(db, testutil.Slogger(t), "") }) } type maybeDB struct { DB maybe bool } type maybeBatch struct { db *maybeDB Batch } func (db *maybeDB) Batch() Batch { return &maybeBatch{db: db, Batch: db.DB.Batch()} } func (b *maybeBatch) MaybeApply() bool { return b.db.maybe } // Test that when db.Batch.MaybeApply returns true, // the memvector Batch MaybeApply applies the memvector ops. func TestMemVectorBatchMaybeApply(t *testing.T) { db := &maybeDB{DB: MemDB()} vdb := MemVectorDB(db, testutil.Slogger(t), "") b := vdb.Batch() b.Set("apple3", embed("apple3")) if _, ok := vdb.Get("apple3"); ok { t.Errorf("Get(apple3) succeeded before batch apply") } b.MaybeApply() // should not apply because the db Batch does not apply if _, ok := vdb.Get("apple3"); ok { t.Errorf("Get(apple3) succeeded after MaybeApply that didn't apply") } db.maybe = true b.MaybeApply() // now should apply if _, ok := vdb.Get("apple3"); !ok { t.Errorf("Get(apple3) failed after MaybeApply that did apply") } }
storage
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/storage/test.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package storage import ( "fmt" "slices" "sync" "testing" "rsc.io/ordered" ) // TestDB runs basic tests on db. // It should be empty when TestDB is called. func TestDB(t *testing.T, db DB) { db.Set([]byte("key"), []byte("value")) if val, ok := db.Get([]byte("key")); string(val) != "value" || ok != true { // unreachable except for bad db t.Fatalf("Get(key) = %q, %v, want %q, true", val, ok, "value") } if val, ok := db.Get([]byte("missing")); val != nil || ok != false { // unreachable except for bad db t.Fatalf("Get(missing) = %v, %v, want nil, false", val, ok) } db.Delete([]byte("key")) if val, ok := db.Get([]byte("key")); val != nil || ok != false { // unreachable except for bad db t.Fatalf("Get(key) after delete = %v, %v, want nil, false", val, ok) } b := db.Batch() for i := range 10 { b.Set(ordered.Encode(i), []byte(fmt.Sprint(i))) b.MaybeApply() } b.Apply() collect := func(min, max, stop int) []int { t.Helper() var list []int for key, val := range db.Scan(ordered.Encode(min), ordered.Encode(max)) { var i int if err := ordered.Decode(key, &i); err != nil { // unreachable except for bad db t.Fatalf("db.Scan malformed key %v", Fmt(key)) } if sv, want := string(val()), fmt.Sprint(i); sv != want { // unreachable except for bad db t.Fatalf("db.Scan key %v val=%q, want %q", i, sv, want) } list = append(list, i) if i == stop { break } } return list } if scan, want := collect(3, 6, -1), []int{3, 4, 5, 6}; !slices.Equal(scan, want) { // unreachable except for bad db t.Fatalf("Scan(3, 6) = %v, want %v", scan, want) } if scan, want := collect(3, 6, 5), []int{3, 4, 5}; !slices.Equal(scan, want) { // unreachable except for bad db t.Fatalf("Scan(3, 6) with break at 5 = %v, want %v", scan, want) } db.DeleteRange(ordered.Encode(4), ordered.Encode(7)) if scan, want := collect(-1, 11, -1), []int{0, 1, 2, 3, 8, 9}; !slices.Equal(scan, want) { // unreachable except for bad db t.Fatalf("Scan(-1, 11) after Delete(4, 7) = %v, want %v", scan, want) } b = db.Batch() for i := range 5 { b.Delete(ordered.Encode(i)) b.Set(ordered.Encode(2*i), []byte(fmt.Sprint(2*i))) } b.DeleteRange(ordered.Encode(0), ordered.Encode(0)) b.Apply() if scan, want := collect(-1, 11, -1), []int{6, 8, 9}; !slices.Equal(scan, want) { // unreachable except for bad db t.Fatalf("Scan(-1, 11) after batch Delete+Set = %v, want %v", scan, want) } // Can't test much, but check that it doesn't crash. db.Flush() testDBLock(t, db) } type locker interface { Lock(string) Unlock(string) } func testDBLock(t *testing.T, db locker) { var x int db.Lock("abc") var wg sync.WaitGroup wg.Add(1) go func() { db.Lock("abc") x = 2 // cause race if not synchronized db.Unlock("abc") wg.Done() }() x = 1 // cause race if not synchronized db.Unlock("abc") wg.Wait() _ = x func() { defer func() { recover() }() db.Unlock("def") t.Errorf("Unlock never-locked key did not panic") }() }
storage
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/storage/vectordb_test.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package storage import "testing" func TestVectorResultCompare(t *testing.T) { type R = VectorResult var tests = []struct { x, y VectorResult cmp int }{ {R{"b", 0.5}, R{"c", 0.5}, -1}, {R{"b", 0.4}, R{"a", 0.5}, -1}, } try := func(x, y VectorResult, cmp int) { if c := x.cmp(y); c != cmp { t.Errorf("Compare(%v, %v) = %d, want %d", x, y, c, cmp) } } for _, tt := range tests { try(tt.x, tt.x, 0) try(tt.y, tt.y, 0) try(tt.x, tt.y, tt.cmp) try(tt.y, tt.x, -tt.cmp) } }
storage
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/storage/vectordb.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package storage import ( "cmp" "golang.org/x/oscar/internal/llm" ) // A VectorDB is a vector database that implements // nearest-neighbor search over embedding vectors // corresponding to documents. type VectorDB interface { // Set sets the vector associated with the given document ID to vec. Set(id string, vec llm.Vector) // TODO: Add Delete. // Get gets the vector associated with the given document ID. // If no such document exists, Get returns nil, false. // If a document exists, Get returns vec, true. Get(id string) (llm.Vector, bool) // Batch returns a new [VectorBatch] that accumulates // vector database mutations to apply in an atomic operation. // It is more efficient than repeated calls to Set. Batch() VectorBatch // Search searches the database for the n vectors // most similar to vec, returning the document IDs // and similarity scores. // // Normally a VectorDB is used entirely with vectors of a single length. // Search ignores stored vectors with a different length than vec. Search(vec llm.Vector, n int) []VectorResult // Flush flushes storage to disk. Flush() } // A VectorBatch accumulates vector database mutations // that are applied to a [VectorDB] in a single atomic operation. // Applying bulk operations in a batch is also more efficient than // making individual [VectorDB] method calls. // The batched operations apply in the order they are made. type VectorBatch interface { // Set sets the vector associated with the given document ID to vec. Set(id string, vec llm.Vector) // TODO: Add Delete. // MaybeApply calls Apply if the VectorBatch is getting close to full. // Every VectorBatch has a limit to how many operations can be batched, // so in a bulk operation where atomicity of the entire batch is not a concern, // calling MaybeApply gives the VectorBatch implementation // permission to flush the batch at specific “safe points”. // A typical limit for a batch is about 100MB worth of logged operations. // // MaybeApply reports whether it called Apply. MaybeApply() bool // Apply applies all the batched operations to the underlying VectorDB // as a single atomic unit. // When Apply returns, the VectorBatch is an empty batch ready for // more operations. Apply() } // A VectorResult is a single document returned by a VectorDB search. type VectorResult struct { ID string // document ID Score float64 // similarity score in range [0, 1]; 1 is exact match } func (x VectorResult) cmp(y VectorResult) int { if x.Score != y.Score { return cmp.Compare(x.Score, y.Score) } return cmp.Compare(x.ID, y.ID) }
storage
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/storage/db.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package storage defines the storage abstractions needed for Oscar: // [DB], a basic key-value store, and [VectorDB], a vector database. // The storage needs are intentionally minimal (avoiding, for example, // a requirement on SQL), to admit as many implementations as possible. package storage import ( "encoding/json" "fmt" "iter" "log/slog" "strconv" "strings" "rsc.io/ordered" ) // A DB is a key-value database. // // DB operations are assumed not to fail. // They panic, intending to take down the program, // if there is an error accessing the database. // The assumption is that the program cannot possibly // continue without the database, since that's where all the state is stored. // Similarly, clients of DB conventionally panic // using [DB.Panic] if the database returns corrupted data. // Code using multiple parallel database operations can recover // at the outermost calls. type DB interface { // Lock acquires a lock on the given name, which need not exist in the database. // After a successful Lock(name), // any other call to Lock(name) from any other client of the database // (including in another process, for shared databases) // must block until Unlock(name) has been called. // In a shared database, a lock may also unlock // when the client disconnects or times out. Lock(name string) // Unlock releases the lock with the given name, // which the caller must have locked. Unlock(name string) // Set sets the value associated with key to val. Set(key, val []byte) // Get looks up the value associated with key. // If there is no entry for key in the database, Get returns nil, false. // Otherwise it returns val, true. Get(key []byte) (val []byte, ok bool) // Scan returns an iterator over all key-value pairs with start ≤ key ≤ end. // The second value in each iteration pair is a function returning the value, // not the value itself: // // for key, getVal := range db.Scan([]byte("aaa"), []byte("zzz")) { // val := getVal() // fmt.Printf("%q: %q\n", key, val) // } // // In iterations that only need the keys or only need the values for a subset of keys, // some DB implementations may avoid work when the value function is not called. // // A Scan may or may not observe concurrent modifications made // using Set, Delete, and DeleteRange. Scan(start, end []byte) iter.Seq2[[]byte, func() []byte] // Delete deletes any value associated with key. // Delete of an unset key is a no-op. Delete(key []byte) // DeleteRange deletes all key-value pairs with start ≤ key ≤ end. DeleteRange(start, end []byte) // Batch returns a new [Batch] that accumulates database mutations // to apply in an atomic operation. In addition to the atomicity, using a // Batch for bulk operations is more efficient than making each // change using repeated calls to DB's Set, Delete, and DeleteRange methods. Batch() Batch // Flush flushes DB changes to permanent storage. // Flush must be called before the process crashes or exits, // or else any changes since the previous Flush may be lost. Flush() // Close flushes and then closes the database. // Like the other routines, it panics if an error happens, // so there is no error result. Close() // Panic logs the error message and args using the database's slog.Logger // and then panics with the text formatting of its arguments. // It is meant to be called when database corruption or other // database-related “can't happen” conditions have been detected. Panic(msg string, args ...any) } // A Batch accumulates database mutations that are applied to a [DB] // as a single atomic operation. Applying bulk operations in a batch // is also more efficient than making individual [DB] method calls. // The batched operations apply in the order they are made. // For example, Set("a", "b") followed by Delete("a") is the same as // Delete("a"), while Delete("a") followed by Set("a", "b") is the same // as Set("a", "b"). type Batch interface { // Delete deletes any value associated with key. // Delete of an unset key is a no-op. // // Delete does not retain any reference to key after returning. Delete(key []byte) // DeleteRange deletes all key-value pairs with start ≤ key ≤ end. // // DeleteRange does not retain any reference to start or end after returning. DeleteRange(start, end []byte) // Set sets the value associated with key to val. // // Set does not retain any reference to key or val after returning. Set(key, val []byte) // MaybeApply calls Apply if the batch is getting close to full. // Every Batch has a limit to how many operations can be batched, // so in a bulk operation where atomicity of the entire batch is not a concern, // calling MaybeApply gives the Batch implementation // permission to flush the batch at specific “safe points”. // A typical limit for a batch is about 100MB worth of logged operations. // MaybeApply reports whether it called Apply. MaybeApply() bool // Apply applies all the batched operations to the underlying DB // as a single atomic unit. // When Apply returns, the Batch is an empty batch ready for // more operations. Apply() } // Panic panics with the text formatting of its arguments. // It is meant to be called for database errors or corruption, // which have been defined to be impossible. // (See the [DB] documentation.) // // Panic is expected to be used by DB implementations. // DB clients should use the [DB.Panic] method instead. func Panic(msg string, args ...any) { var b strings.Builder slog.New(slog.NewTextHandler(&b, nil)).Error(msg, args...) s := b.String() if _, rest, ok := strings.Cut(s, " level=ERROR msg="); ok { s = rest } panic(strings.TrimSpace(s)) } // JSON converts x to JSON and returns the result. // It panics if there is any error converting x to JSON. // Since whether x can be converted to JSON depends // almost entirely on its type, a marshaling error indicates a // bug at the call site. // // (The exception is certain malformed UTF-8 and floating-point // infinity and NaN. Code must be careful not to use JSON with those.) func JSON(x any) []byte { js, err := json.Marshal(x) if err != nil { panic(fmt.Sprintf("json.Marshal: %v", err)) } return js } // Fmt formats data for printing, // first trying [ordered.DecodeFmt] in case data is an [ordered encoding], // then trying a backquoted string if possible // (handling simple JSON data), // and finally resorting to [strconv.QuoteToASCII]. func Fmt(data []byte) string { if s, err := ordered.DecodeFmt(data); err == nil { return s } s := string(data) if strconv.CanBackquote(s) { return "`" + s + "`" } return strconv.QuoteToASCII(s) }
storage
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/storage/db_test.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package storage import ( "math" "testing" "rsc.io/ordered" ) func TestPanic(t *testing.T) { func() { defer func() { r := recover() if r.(string) != "msg key=val" { t.Errorf("panic value is not msg key=val:\n%s", r) } }() Panic("msg", "key", "val") t.Fatalf("did not panic") }() } func TestJSON(t *testing.T) { x := map[string]string{"a": "b"} js := JSON(x) want := `{"a":"b"}` if string(js) != want { t.Errorf("JSON(%v) = %#q, want %#q", x, js, want) } func() { defer func() { recover() }() JSON(math.NaN()) t.Errorf("JSON(NaN) did not panic") }() } var fmtTests = []struct { data []byte out string }{ {ordered.Encode(1, 2, 3), "(1, 2, 3)"}, {[]byte(`"hello"`), "`\"hello\"`"}, {[]byte("`hello`"), "\"`hello`\""}, } func TestFmt(t *testing.T) { for _, tt := range fmtTests { out := Fmt(tt.data) if out != tt.out { t.Errorf("Fmt(%q) = %q, want %q", tt.data, out, tt.out) } } } func TestMemLocker(t *testing.T) { m := new(MemLocker) testDBLock(t, m) }
timed
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/storage/timed/timed_test.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package timed import ( "slices" "strings" "testing" "golang.org/x/oscar/internal/storage" ) func Test(t *testing.T) { db := storage.MemDB() b := db.Batch() Set(db, b, "kind", []byte("key"), []byte("val")) if e, ok := Get(db, "kind", []byte("key")); e != nil || ok != false { t.Errorf("Set wrote to db instead of b: Get = %v, %v, want nil, false", e, ok) } b.Apply() if e, ok := Get(db, "kind", []byte("key")); !ok || e == nil || e.Kind != "kind" || string(e.Key) != "key" || string(e.Val) != "val" || e.ModTime == 0 { t.Errorf("Get after Set = %+v, %v, want {>0, kind, key, val}, true", e, ok) } Delete(db, b, "kind", []byte("missing")) b.Apply() if e, ok := Get(db, "kind", []byte("key")); !ok || e == nil || e.Kind != "kind" || string(e.Key) != "key" || string(e.Val) != "val" || e.ModTime == 0 { t.Errorf("Get after Delete = %+v, %v, want {>0, kind, key, val}, true", e, ok) } Delete(db, b, "kind", []byte("key")) b.Apply() if e, ok := Get(db, "kind", []byte("key")); e != nil || ok != false { t.Errorf("Delete didn't delete key: Get = %v, %v, want nil, false", e, ok) } var keys []string var last DBTime do := func(e *Entry) { t.Helper() if last != -1 { if e.ModTime <= last { t.Fatalf("%+v: ModTime %v <= last %v", e, e.ModTime, last) } last = e.ModTime } if string(e.Kind) != "kind" { t.Fatalf("%+v: Kind=%q, want %q", e, e.Kind, "kind") } key := string(e.Key) if !strings.HasPrefix(key, "k") { t.Fatalf("%+v: Key=%q, want k prefix", e, e.Key) } if want := "v" + key[1:]; string(e.Val) != want { t.Fatalf("%+v: Val=%q, want %q", e, e.Val, want) } keys = append(keys, key) } Set(db, b, "kind", []byte("k1"), []byte("v1")) Set(db, b, "kind", []byte("k3"), []byte("v3")) Set(db, b, "kind", []byte("k2"), []byte("v2")) b.Apply() // Basic iteration. last = -1 keys = nil for e := range Scan(db, "kind", nil, []byte("\xff")) { do(e) } if want := []string{"k1", "k2", "k3"}; !slices.Equal(keys, want) { t.Errorf("Scan() = %v, want %v", keys, want) } keys = nil for e := range Scan(db, "kind", []byte("k1x"), []byte("k2z")) { do(e) } if want := []string{"k2"}; !slices.Equal(keys, want) { t.Errorf("Scan(k1x, k2z) = %v, want %v", keys, want) } keys = nil for e := range Scan(db, "kind", []byte("k2"), []byte("\xff")) { do(e) } if want := []string{"k2", "k3"}; !slices.Equal(keys, want) { t.Errorf("Scan(k2) = %v, want %v", keys, want) } keys = nil for e := range Scan(db, "kind", []byte("k2"), []byte("\xff")) { do(e) break } if want := []string{"k2"}; !slices.Equal(keys, want) { t.Errorf("Scan(k2) with break = %v, want %v", keys, want) } // Timed iteration. last = 0 keys = nil for e := range ScanAfter(db, "kind", 0, nil) { do(e) } if want := []string{"k1", "k3", "k2"}; !slices.Equal(keys, want) { t.Errorf("ScanAfter(0) = %v, want %v", keys, want) } t123 := last // Watcher. last = 0 keys = nil w := NewWatcher(db, "name", "kind", func(e *Entry) *Entry { return e }) for e := range w.Recent() { do(e) w.MarkOld(e.ModTime) w.MarkOld(e.ModTime - 1) // no-op } if want := []string{"k1", "k3", "k2"}; !slices.Equal(keys, want) { t.Errorf("Watcher.Recent() = %v, want %v", keys, want) } // Timed iteration with break. last = 0 keys = nil for e := range ScanAfter(db, "kind", 0, nil) { do(e) break } if want := []string{"k1"}; !slices.Equal(keys, want) { t.Errorf("ScanAfter(0) with break = %v, want %v", keys, want) } // Incremental iteration Set(db, b, "kind", []byte("k5"), []byte("v5")) Set(db, b, "kind", []byte("k4"), []byte("v4")) Set(db, b, "kind", []byte("k2"), []byte("v2")) b.Apply() // Check full scan. last = 0 keys = nil for e := range ScanAfter(db, "kind", 0, nil) { do(e) } if want := []string{"k1", "k3", "k5", "k4", "k2"}; !slices.Equal(keys, want) { t.Errorf("ScanAfter(0) = %v, want %v", keys, want) } // Check incremental scan. last = 0 keys = nil for e := range ScanAfter(db, "kind", t123, nil) { do(e) } if want := []string{"k5", "k4", "k2"}; !slices.Equal(keys, want) { t.Errorf("ScanAfter(t123) = %v, want %v", keys, want) } // Full (new) watcher. last = 0 keys = nil w = NewWatcher(db, "name2", "kind", func(e *Entry) *Entry { return e }) for e := range w.Recent() { do(e) } if want := []string{"k1", "k3", "k5", "k4", "k2"}; !slices.Equal(keys, want) { t.Errorf("Watcher.Recent() full = %v, want %v", keys, want) } // Watcher with break last = 0 keys = nil w = NewWatcher(db, "name2", "kind", func(e *Entry) *Entry { return e }) for e := range w.Recent() { do(e) break } if want := []string{"k1"}; !slices.Equal(keys, want) { t.Errorf("Watcher.Recent() full = %v, want %v", keys, want) } // Incremental (old) watcher. last = 0 keys = nil w = NewWatcher(db, "name", "kind", func(e *Entry) *Entry { return e }) for e := range w.Recent() { do(e) } if want := []string{"k5", "k4", "k2"}; !slices.Equal(keys, want) { t.Errorf("Watcher.Recent() incremental = %v, want %v", keys, want) } // Restart incremental watcher. last = 0 keys = nil w.Restart() for e := range w.Recent() { do(e) } if want := []string{"k1", "k3", "k5", "k4", "k2"}; !slices.Equal(keys, want) { t.Errorf("Watcher.Recent() after Reset = %v, want %v", keys, want) } // Filtered scan. last = 0 keys = nil filter := func(key []byte) bool { return strings.HasSuffix(string(key), "3") } for e := range ScanAfter(db, "kind", 0, filter) { do(e) } if want := []string{"k3"}; !slices.Equal(keys, want) { t.Errorf("ScanAfter(0, suffix3) = %v, want %v", keys, want) } // Accidentally doing multiple Sets of a single key // will leave behind a stale timestamp record. Set(db, b, "kind", []byte("k3"), []byte("v3")) Set(db, b, "kind", []byte("k3"), []byte("v3")) b.Apply() // Stale timestamp should not result in multiple k3 visits. last = 0 keys = nil for e := range ScanAfter(db, "kind", 0, nil) { do(e) } if want := []string{"k1", "k5", "k4", "k2", "k3"}; !slices.Equal(keys, want) { t.Errorf("ScanAfter(0) = %v, want %v", keys, want) } // Deleting k3 now will still leave the stale timestamp record. // Make sure it is ignored and doesn't cause a lookup crash. Delete(db, b, "kind", []byte("k3")) b.Apply() // Stale timestamp should not crash on k3. last = 0 keys = nil for e := range ScanAfter(db, "kind", 0, nil) { do(e) } if want := []string{"k1", "k5", "k4", "k2"}; !slices.Equal(keys, want) { t.Errorf("ScanAfter(0) = %v, want %v", keys, want) } // Range deletion. DeleteRange(db, b, "kind", []byte("k1z"), []byte("k33")) b.Apply() last = -1 keys = nil for e := range Scan(db, "kind", nil, []byte("\xff")) { do(e) } if want := []string{"k1", "k4", "k5"}; !slices.Equal(keys, want) { t.Errorf("Scan() after DeleteRange = %v, want %v", keys, want) } last = 0 keys = nil for e := range ScanAfter(db, "kind", 0, nil) { do(e) } if want := []string{"k1", "k5", "k4"}; !slices.Equal(keys, want) { t.Errorf("ScanAfter(0) after DeleteRange = %v, want %v", keys, want) } Set(db, b, "kind", []byte("k2"), []byte("v2")) b.Apply() } func TestLocking(t *testing.T) { db := storage.MemDB() b := db.Batch() Set(db, b, "kind", []byte("key"), []byte("val")) b.Apply() w := NewWatcher(db, "name", "kind", func(e *Entry) *Entry { return e }) callRecover := func() { recover() } w.lock() func() { defer callRecover() w.lock() t.Fatalf("second w.lock did not panic") }() w.unlock() func() { defer callRecover() w.unlock() t.Fatalf("second w.unlock did not panic") }() func() { defer callRecover() w.MarkOld(0) t.Fatalf("MarkOld outside iteration did not panic") }() did := false for _ = range w.Recent() { did = true func() { defer callRecover() w.Restart() t.Fatalf("Restart inside iteration did not panic") }() func() { defer callRecover() for _ = range w.Recent() { } t.Fatalf("iteration inside iteration did not panic") }() } if !did { t.Fatalf("range over Recent did not find any entries") } } func TestNow(t *testing.T) { t1 := now() for range 1000 { t2 := now() if t2 <= t1 { t.Errorf("now(), now() = %d, %d (out of order)", t1, t2) } t1 = t2 } }
timed
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/storage/timed/timed.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package timed implements modification-time-indexed storage // that can be accessed in modification-time order as well as key order. // // Timed storage builds on top of a basic key-value storage by // maintaining two actual database entries for each logical entry. // The two actual entries for the logical entry (kind, key) → val are: // // - (kind, key) → (modtime, val) // - (kindByTime, modtime, key) → () // // The “kind” is a key namespace that allows maintaining multiple // independent sets of modification-time-indexed storage in a // single [storage.DB]. // // The “modtime” (of type [DBTime]) is an opaque timestamp representing the time when // the logical entry was last set. Other than being a monotonically // increasing integer, no specific semantics are guaranteed about the // meaning of the dbtime. // // An [Entry] represents a single logical entry: // // type Entry struct { // ModTime DBTime // time entry was written // Kind string // key namespace // Key []byte // key // Val []byte // value // } // // The basic [Get], [Set], [Scan], [Delete], and [DeleteRange] functions // are analogous to those in [storage.DB] // but modified to accommodate the new entries: // // - Get(db, kind, key) returns an *Entry. // The db is the underlying storage being used. // // - Set(db, batch, kind, key, val) adds or replaces an entry. // The db is the underlying storage, which is consulted, // but the actual modifications are written to batch, // so that the two different actual entries can be applied // as a single unit. // // - Scan(db, kind, start, end) returns an iterator yielding *Entry. // // - Delete(db, batch, kind, key) deletes an entry. // // - DeleteRange(db, batch, kind, start, end) deletes a range of entries. // // In addition to these operations, the time index enables one new operation: // // - After(db, kind, dbtime) returns an iterator yielding entries // updated after dbtime, ordered by time of update. // // In typical usage, a client stores the latest e.DBTime it has observed // and then uses that value in a future call to After to find only // recent entries. The [Watcher] encapsulates that pattern and // adds mutual exclusion so that multiple processes or goroutines // using the same Watcher will not run concurrently. package timed import ( "iter" "sync/atomic" "time" "golang.org/x/oscar/internal/storage" "rsc.io/ordered" ) // A DBTime is an opaque timestamp representing the time when // a database entry was last set. Timestamps increase monotonically: // comparing two times from entries of the same kind indicates // which entry was written first. // Otherwise, timestamps are opaque and have no specific meaning. type DBTime int64 var lastTime atomic.Int64 // now returns the current DBTime. // The implementation assumes accurate time-keeping on the systems where it runs, // so that if the program is restarted, the new instance will not see times before // the ones the old instance did. // // Packages storing information in the database can create separate // indexes by DBTime to enable incremental processing of new data. func now() DBTime { for { old := lastTime.Load() t := time.Now().UnixNano() if t <= old { t = old + 1 } if lastTime.CompareAndSwap(old, t) { return DBTime(t) } } } // An Entry is a single entry written to the time-indexed storage. type Entry struct { ModTime DBTime // time entry was written Kind string // key namespace Key []byte // key Val []byte // value } // Set adds to b the database updates to set (kind, key) → val, // including updating the time index. func Set(db storage.DB, b storage.Batch, kind string, key, val []byte) { t := now() dkey := append(ordered.Encode(kind), key...) if old, ok := db.Get(dkey); ok { var oldT int64 if _, err := ordered.DecodePrefix(old, &oldT); err != nil { // unreachable unless corrupt storage db.Panic("timed.Set decode old", "dkey", storage.Fmt(dkey), "old", storage.Fmt(old), "err", err) } b.Delete(append(ordered.Encode(kind+"ByTime", oldT), key...)) } b.Set(append(ordered.Encode(kind+"ByTime", int64(t)), key...), nil) b.Set(dkey, append(ordered.Encode(int64(t)), val...)) } // Delete adds to b the database updates to delete the value corresponding to (kind, key), if any. func Delete(db storage.DB, b storage.Batch, kind string, key []byte) { dkey := append(ordered.Encode(kind), key...) dval, ok := db.Get(dkey) if !ok { return } var t int64 if _, err := ordered.DecodePrefix(dval, &t); err != nil { // unreachable unless corrupt storage db.Panic("timed.Delete decode dval", "dkey", storage.Fmt(dkey), "dval", storage.Fmt(dval), "err", err) } b.Delete(dkey) b.Delete(append(ordered.Encode(kind+"ByTime", t), key...)) } // Get retrieves the value corresponding to (kind, key). func Get(db storage.DB, kind string, key []byte) (*Entry, bool) { dkey := append(ordered.Encode(kind), key...) dval, ok := db.Get(dkey) if !ok { return nil, false } var t int64 val, err := ordered.DecodePrefix(dval, &t) if err != nil { // unreachable unless corrupt storage db.Panic("GetTimed decode", "dkey", storage.Fmt(dkey), "dval", storage.Fmt(dval), "err", err) } return &Entry{DBTime(t), kind, key, val}, true } // Scan returns an iterator over entries (kind, key) → val with start ≤ key ≤ end. func Scan(db storage.DB, kind string, start, end []byte) iter.Seq[*Entry] { dstart := append(ordered.Encode(kind), start...) dend := append(ordered.Encode(kind), end...) return func(yield func(*Entry) bool) { for dkey, dvalf := range db.Scan(dstart, dend) { dval := dvalf() key, err := ordered.DecodePrefix(dkey, nil) // drop kind if err != nil { // unreachable unless corrupt storage db.Panic("ScanTimed decode", "dkey", storage.Fmt(dkey), "err", err) } var t int64 val, err := ordered.DecodePrefix(dval, &t) if err != nil { // unreachable unless corrupt storage db.Panic("ScanTimed decode", "dkey", storage.Fmt(dkey), "dval", storage.Fmt(dval), "err", err) } if !yield(&Entry{DBTime(t), kind, key, val}) { return } } } } // DeleteRange adds to b the database updates to delete all entries // (kind, key) → val with start ≤ key ≤ end. // To allow deleting an arbitrarily large range, DeleteRange calls // b.MaybeApply after adding the updates for each (kind, key). // The effect is that a large range deletion may not be applied atomically to db. // The caller still needs to use b.Apply to apply the final updates // (or, for small ranges, all of them). func DeleteRange(db storage.DB, b storage.Batch, kind string, start, end []byte) { for e := range Scan(db, kind, start, end) { b.Delete(append(ordered.Encode(kind), e.Key...)) b.Delete(append(ordered.Encode(kind+"ByTime", int64(e.ModTime)), e.Key...)) b.MaybeApply() } } // ScanAfter returns an iterator over entries in the database // of the given kind that were set after DBTime t. // If filter is non-nil, ScanAfter omits entries for which filter(e.Key) returns false // and avoids the overhead of loading e.Val for those entries. func ScanAfter(db storage.DB, kind string, t DBTime, filter func(key []byte) bool) iter.Seq[*Entry] { return func(yield func(*Entry) bool) { start, end := ordered.Encode(kind+"ByTime", int64(t+1)), ordered.Encode(kind+"ByTime", ordered.Inf) for tkey, _ := range db.Scan(start, end) { var t int64 key, err := ordered.DecodePrefix(tkey, nil, &t) // drop kind if err != nil { // unreachable unless corrupt storage db.Panic("storage.After decode", "tkey", storage.Fmt(tkey), "err", err) } if filter != nil && !filter(key) { continue } dkey := append(ordered.Encode(kind), key...) dval, ok := db.Get(dkey) if !ok { // Stale entries might happen if Set is called multiple times // for the same key in a single batch, along with a later Delete, // or Set+Delete in a single batch. Ignore. continue } var t2 int64 val, err := ordered.DecodePrefix(dval, &t2) if err != nil { // unreachable unless corrupt storage db.Panic("storage.After val decode", "key", storage.Fmt(key), "dkey", storage.Fmt(dkey), "val", storage.Fmt(val), "err", err) } if t < t2 { // Stale entries might happen if Set is called multiple times // for the same key in a single batch. // The second Set will not see the first one's time entry to delete it. // These should be rare. // Skip this one and wait until we see the index entry for t2. continue } if t > t2 { // unreachable unless corruption: // new index entries with old data should not happen. db.Panic("timed.ScanAfter mismatch", "tkey", storage.Fmt(tkey), "dkey", storage.Fmt(dkey), "dval", storage.Fmt(dval)) } if !yield(&Entry{DBTime(t), kind, key, val}) { return } } } } // A Watcher is a named cursor over recently modified time-stamped key-value pairs // (written using [Set]). // The state of the cursor is stored in the underlying database so that // it persists across program restarts and is shared by all clients of the // database. // // Across all Watchers with the same db, kind, and name, database locks // are used to ensure that only one at a time can iterate over [Watcher.Recent]. // This provides coordination when multiple instances of a program that // notice there is work to be done and more importantly avoids those // instances conflicting with each other. // // The Watcher's state (most recent dbtime marked old) // is stored in the underlying database using the key // ordered.Encode(kind+"Watcher", name), // and while a Watcher is iterating, it locks a database lock // with the same name as that key. type Watcher[T any] struct { db storage.DB dkey []byte kind string decode func(*Entry) T locked atomic.Bool } // NewWatcher returns a new named Watcher reading keys of the given kind from db. // Use [Watcher.Recent] to iterate over recent entries. // // The name distinguishes this Watcher from other Watchers watching the same kind of keys // for different purposes. // // The Watcher applies decode(e) to each time-stamped Entry to obtain the T returned // in the iteration. func NewWatcher[T any](db storage.DB, name, kind string, decode func(*Entry) T) *Watcher[T] { return &Watcher[T]{ db: db, dkey: ordered.Encode(kind+"Watcher", name), kind: kind, decode: decode, } } func (w *Watcher[T]) lock() { if w.locked.Load() { w.db.Panic("timed.Watcher already locked") } w.db.Lock(string(w.dkey)) w.locked.Store(true) } func (w *Watcher[T]) unlock() { if !w.locked.Load() { w.db.Panic("timed.Watcher not locked") } w.db.Unlock(string(w.dkey)) w.locked.Store(false) } func (w *Watcher[T]) cutoff() DBTime { if !w.locked.Load() { // unreachable unless called wrong in this file w.db.Panic("timed.Watcher not locked") } var t int64 if dval, ok := w.db.Get(w.dkey); ok { if err := ordered.Decode(dval, &t); err != nil { // unreachable unless corrupt storage w.db.Panic("watcher decode", "dval", storage.Fmt(dval), "err", err) } } return DBTime(t) } // Recent returns an iterator over recent entries, // meaning those entries set after the last time recorded using [Watcher.MarkOld]. // The events are ordered by the time they were last [Set] (that is, by ModTime). // // When the iterator is invoked or ranged over, it acquires a database lock // corresponding to (db, name, kind), to prevent other racing instances of // the same Watcher from visiting the same entries. // It releases the lock automatically when the iteration ends or is stopped. // // The iterator must be used from only a single goroutine at a time, // or else it will panic reporting “Watcher already locked”. // This means that while an iterator can be used multiple times in // sequence, it cannot be used from multiple goroutines, // nor can a new iteration be started inside an existing one. // (If a different process holds the lock, the iterator will wait for that process. // The in-process lock check aims to diagnose simple deadlocks.) func (w *Watcher[T]) Recent() iter.Seq[T] { return func(yield func(T) bool) { w.lock() defer func() { w.Flush() w.unlock() }() for t := range ScanAfter(w.db, w.kind, w.cutoff(), nil) { if !yield(w.decode(t)) { return } } } } // Restart resets the event watcher so that the next iteration over new events // will start at the earliest possible event. // In effect, Restart undoes all previous calls to MarkOld. // Restart must be not be called during an iteration. func (w *Watcher[T]) Restart() { w.lock() defer w.unlock() w.db.Delete(w.dkey) } // MarkOld marks entries at or before t as “old”, // meaning they will no longer be iterated over by [Watcher.Recent]. // A future call to Recent, perhaps even on a different Watcher // with the same configuration, // will start its iteration starting immediately after time t. // // If a newer time t has already been marked “old” in this watcher, // then MarkOld(t) is a no-op. // // MarkOld must only be called during an iteration over Recent, // so that the database lock corresponding to this Watcher is held. // In the case of a process crash before the iteration completes, // the effect of MarkOld may be lost. // Calling [Watcher.Flush] forces the state change to the underlying database. func (w *Watcher[T]) MarkOld(t DBTime) { if !w.locked.Load() { w.db.Panic("timed.Watcher.MarkOld unlocked") } if t <= w.cutoff() { return } w.db.Set(w.dkey, ordered.Encode(int64(t))) } // Flush flushes the definition of recent (changed by MarkOld) to the database. // Flush is called automatically at the end of an iteration, // but it can be called explicitly during a long iteration as well. func (w *Watcher[T]) Flush() { w.db.Flush() }
gemini
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/gemini/gemini.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package gemini implements access to Google's Gemini model. // // [Client] implements [llm.Embedder]. Use [NewClient] to connect. package gemini import ( "bytes" "context" "encoding/json" "fmt" "log/slog" "maps" "net/http" "slices" "strings" "github.com/google/generative-ai-go/genai" "golang.org/x/oscar/internal/httprr" "golang.org/x/oscar/internal/llm" "golang.org/x/oscar/internal/secret" "google.golang.org/api/option" ) // Scrub is a request scrubber for use with [rsc.io/httprr]. func Scrub(req *http.Request) error { delete(req.Header, "x-goog-api-key") // genai does not canonicalize req.Header.Del("X-Goog-Api-Key") // in case it starts delete(req.Header, "x-goog-api-client") // contains version numbers req.Header.Del("X-Goog-Api-Client") if ctype := req.Header.Get("Content-Type"); ctype == "application/json" || strings.HasPrefix(ctype, "application/json;") { // Canonicalize JSON body. // google.golang.org/protobuf/internal/encoding.json // goes out of its way to randomize the JSON encodings // of protobuf messages by adding or not adding spaces // after commas. Derandomize by compacting the JSON. b := req.Body.(*httprr.Body) var buf bytes.Buffer if err := json.Compact(&buf, b.Data); err == nil { b.Data = buf.Bytes() } } return nil } // A Client represents a connection to Gemini. type Client struct { slog *slog.Logger genai *genai.Client } // NewClient returns a connection to Gemini, using the given logger and HTTP client. // It expects to find a secret of the form "AIza..." or "user:AIza..." in sdb // under the name "ai.google.dev". func NewClient(lg *slog.Logger, sdb secret.DB, hc *http.Client) (*Client, error) { key, ok := sdb.Get("ai.google.dev") if !ok { return nil, fmt.Errorf("missing api key for ai.google.dev") } // If key is from .netrc, ignore user name. if _, pass, ok := strings.Cut(key, ":"); ok { key = pass } // Ideally this would use use “option.WithAPIKey(key), option.WithHTTPClient(hc),” // but using option.WithHTTPClient bypasses the code that passes along the API key. // Instead we make our own derived http.Client that re-adds the key. // And then we still have to say option.WithAPIKey("ignored") because // otherwise NewClient complains that we haven't passed in a key. // (If we pass in the key, it ignores it, but if we don't pass it in, // it complains that we didn't give it a key.) ai, err := genai.NewClient(context.Background(), option.WithAPIKey("ignored"), option.WithHTTPClient(withKey(hc, key))) if err != nil { return nil, err } return &Client{slog: lg, genai: ai}, nil } // withKey returns a new http.Client that is the same as hc // except that it adds "x-goog-api-key: key" to every request. func withKey(hc *http.Client, key string) *http.Client { c := *hc t := c.Transport if t == nil { t = http.DefaultTransport } c.Transport = &transportWithKey{t, key} return &c } // transportWithKey is the same as rt // except that it adds "x-goog-api-key: key" to every request. type transportWithKey struct { rt http.RoundTripper key string } func (t *transportWithKey) RoundTrip(req *http.Request) (resp *http.Response, err error) { r := *req r.Header = maps.Clone(req.Header) r.Header["x-goog-api-key"] = []string{t.key} return t.rt.RoundTrip(&r) } const maxBatch = 100 // empirical limit // EmbedDocs returns the vector embeddings for the docs, // implementing [llm.Embedder]. func (c *Client) EmbedDocs(ctx context.Context, docs []llm.EmbedDoc) ([]llm.Vector, error) { model := c.genai.EmbeddingModel("text-embedding-004") var vecs []llm.Vector for docs := range slices.Chunk(docs, maxBatch) { b := model.NewBatch() for _, d := range docs { b.AddContentWithTitle(d.Title, genai.Text(d.Text)) } resp, err := model.BatchEmbedContents(ctx, b) if err != nil { return vecs, err } for _, e := range resp.Embeddings { vecs = append(vecs, e.Values) } } return vecs, nil }
gemini
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/gemini/gemini_test.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package gemini import ( "bytes" "context" "fmt" "net/http" "testing" "golang.org/x/oscar/internal/httprr" "golang.org/x/oscar/internal/llm" "golang.org/x/oscar/internal/secret" "golang.org/x/oscar/internal/testutil" ) var docs = []llm.EmbedDoc{ {Text: "for loops"}, {Text: "for all time, always"}, {Text: "break statements"}, {Text: "breakdancing"}, {Text: "forever could never be long enough for me"}, {Text: "the macarena"}, } var matches = map[string]string{ "for loops": "break statements", "for all time, always": "forever could never be long enough for me", "breakdancing": "the macarena", } func init() { for k, v := range matches { matches[v] = k } } func newTestClient(t *testing.T, rrfile string) *Client { check := testutil.Checker(t) lg := testutil.Slogger(t) rr, err := httprr.Open(rrfile, http.DefaultTransport) check(err) rr.Scrub(Scrub) sdb := secret.ReadOnlyMap{"ai.google.dev": "nokey"} c, err := NewClient(lg, sdb, rr.Client()) check(err) return c } func TestEmbedBatch(t *testing.T) { ctx := context.Background() check := testutil.Checker(t) c := newTestClient(t, "testdata/embedbatch.httprr") vecs, err := c.EmbedDocs(ctx, docs) check(err) if len(vecs) != len(docs) { t.Fatalf("len(vecs) = %d, but len(docs) = %d", len(vecs), len(docs)) } var buf bytes.Buffer for i := range docs { for j := range docs { fmt.Fprintf(&buf, " %.4f", vecs[i].Dot(vecs[j])) } fmt.Fprintf(&buf, "\n") } for i, d := range docs { best := "" bestDot := 0.0 for j := range docs { if dot := vecs[i].Dot(vecs[j]); i != j && dot > bestDot { best, bestDot = docs[j].Text, dot } } if best != matches[d.Text] { if buf.Len() > 0 { t.Errorf("dot matrix:\n%s", buf.String()) buf.Reset() } t.Errorf("%q: best=%q, want %q", d.Text, best, matches[d.Text]) } } } func TestBigBatch(t *testing.T) { ctx := context.Background() check := testutil.Checker(t) c := newTestClient(t, "testdata/bigbatch.httprr") var docs []llm.EmbedDoc for i := range 251 { docs = append(docs, llm.EmbedDoc{Text: fmt.Sprintf("word%d", i)}) } docs = docs[:251] vecs, err := c.EmbedDocs(ctx, docs) check(err) if len(vecs) != len(docs) { t.Fatalf("len(vecs) = %d, but len(docs) = %d", len(vecs), len(docs)) } }
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/gemini/testdata/embedbatch.httprr
httprr trace v1 1005 98997 POST https://generativelanguage.googleapis.com/v1beta/models/text-embedding-004:batchEmbedContents?%24alt=json%3Benum-encoding%3Dint HTTP/1.1 Host: generativelanguage.googleapis.com User-Agent: Go-http-client/1.1 Content-Length: 676 Content-Type: application/json x-goog-request-params: model=models%2Ftext-embedding-004 {"model":"models/text-embedding-004","requests":[{"model":"models/text-embedding-004","content":{"parts":[{"text":"for loops"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"for all time, always"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"break statements"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"breakdancing"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"forever could never be long enough for me"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"the macarena"}],"role":"user"}}]}HTTP/2.0 200 OK Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 Cache-Control: private Content-Type: application/json; charset=UTF-8 Date: Tue, 25 Jun 2024 01:48:42 GMT Server: scaffolding on HTTPServer2 Server-Timing: gfet4t7; dur=711 Vary: Origin Vary: X-Origin Vary: Referer X-Content-Type-Options: nosniff X-Frame-Options: SAMEORIGIN X-Xss-Protection: 0 { "embeddings": [ { "values": [ -0.005014306, -0.010655886, -0.026035143, 0.01144542, 0.038794585, 0.073438615, 0.03585266, -0.0015361558, 0.019465217, 0.016278978, -0.04295037, 0.0035318416, 0.018379038, 0.022832219, 0.022835799, -0.088836186, -0.010727505, -0.0088891415, -0.016058723, 0.04461389, 0.0115770595, -0.0096201515, -0.060342867, -0.052754905, -0.017917365, 0.018524697, 0.071338385, 0.011356619, 0.01653531, -0.0005003768, 0.077492446, 0.058330297, 0.012443969, -0.048657794, 0.031894244, 0.023680246, -0.048183735, -0.05083614, 0.013378945, -0.0546856, 0.042042743, 0.028687742, -0.0007249656, 0.030441921, -0.009248817, -0.011240017, 0.05631621, 0.030727241, 0.036818404, 0.009920274, 0.02650773, 0.0026181827, -0.0062417085, 0.01478762, -0.060273513, -0.03083801, -0.021892302, -0.011623321, 0.05858637, 0.049193036, -0.018650293, -0.025618583, -0.03654661, -0.014405062, -0.051155988, 0.024322834, -0.015491176, 0.020190746, -0.054145236, 0.050269134, -0.051137973, 0.019814186, -0.00044520808, 0.02579227, -0.031709183, -0.03800729, -0.07180517, -0.020643605, -0.0035056323, 0.03718206, -0.008550089, -0.0052812286, 0.067874536, 0.034016747, 0.043920375, 0.033192974, -0.008081937, -0.035780784, -0.041688606, 0.034820564, 0.073724456, -0.008392365, 0.008665935, 0.028695107, 0.016033577, -0.0095378, -0.08049011, -0.0279443, 0.0530538, 0.063008845, 0.005125402, -0.016095968, 0.021740617, -0.08587118, 0.005796121, 0.0100119, -0.03151753, -0.083331004, -0.031221908, 0.016142072, -0.005942187, -0.06039132, 0.0050637173, -0.0059041874, -0.03734337, -0.018623356, -0.03828528, 0.03353516, 0.0003548053, -0.013775524, -0.015445299, 0.011779206, -0.05641663, 0.020704145, 0.021248773, 0.023565046, 0.033058427, -0.0054532164, -0.03327816, -0.04344364, 0.009854052, -0.025734715, -0.027896738, -0.0365224, -0.019090766, -0.01135577, 0.03139238, 0.013806934, -0.031905364, 0.014191223, 0.02209104, -0.00044475737, -0.014855681, 0.060157172, 0.0306077, 0.06403075, 0.028014503, 0.03383629, 0.0069126887, 0.02299661, -0.005523487, -0.012076601, 0.0313495, -0.021280294, -0.02849714, -0.037970077, 0.00067005726, 0.015294604, 0.11234724, -0.026052888, -0.028684298, -0.06494846, 0.01675047, 9.476183e-05, -0.10006876, -0.07956318, -0.019483067, -0.0053109312, 0.014548826, 0.004043199, 0.037544288, 0.055816717, -0.011117823, -0.0091769975, -0.020884644, -0.019146606, 0.01036651, -0.049962785, -0.005145739, -0.013109747, 0.06775516, 0.052555237, 0.0052629123, -0.07028886, -0.011398543, 0.086883634, 0.008881223, 0.061711, 0.046167932, 0.06962188, 0.0075977794, -0.01664194, 0.050036557, 0.035601657, 0.011998978, 0.06839287, 0.017434722, -0.014371515, -0.00807268, -0.06832818, 0.014712039, -0.012551542, -0.0079744365, -0.03169408, -0.024188083, 0.011295191, -0.058557194, 0.0067451824, 0.0010030395, -0.0063301316, -0.010922419, -0.011561415, -0.037202667, -0.034157313, -0.012923793, -0.021545049, 0.031851295, -0.019100113, 0.08653265, 0.048926257, 0.018492859, -0.018493226, -0.024434034, -0.016485248, 0.02680403, -0.004173848, -0.006455589, 0.0032834734, 0.02425672, -0.067361996, -0.0068615405, 0.064516164, -0.05087091, 0.043891054, 0.028070904, -0.014631565, 0.028785935, -0.07179929, -0.07232528, 0.03658757, -0.0026971006, 0.014724068, 0.006362279, 0.006898685, 0.06949873, -0.025423456, -0.009983274, -0.004752229, -0.003818792, -0.067646705, -0.022484845, -0.029075649, 0.00091457966, 0.025871698, -0.0291001, 0.036835317, -0.020843027, -0.0633685, -0.020832818, -0.0119258845, 0.040544204, -0.017147021, -0.032805257, -0.06385844, -0.051478658, -0.08466735, 0.005285107, 0.02304556, 0.0043601077, 0.020372275, 0.0005127801, 0.01224746, -0.018668177, 0.024466487, -0.009859044, -0.022783889, -0.07952501, 0.03523655, 0.016230753, -0.05066639, -0.010487603, -0.0023989542, 0.08289861, -0.041780565, 0.034922127, -0.032160338, 0.0089361, 0.06871279, 0.0010953883, -0.012421025, 0.060999706, 0.028955765, 0.013267272, -0.025604948, 0.016327217, 0.026793366, -0.01417956, 0.017176518, 0.066254936, 0.026608624, 0.029058523, 0.041405298, 0.007880447, 0.039994914, 0.0065036644, -0.0052606673, 0.0051076757, -0.008746218, 0.014121952, -0.027225487, 0.028117517, -0.0066074594, -0.025398375, -0.038803905, -0.026515618, 0.00083427975, -0.14335565, -0.046701126, -0.03145865, 0.018384455, -0.014908288, 0.0448612, -0.051111232, -0.070882544, 0.014713926, -0.002632124, 0.032700174, 0.015058403, 0.048832126, -0.0132107455, 0.04305552, 0.038005862, -0.017577669, -0.052910145, -0.009430191, 0.049114045, -0.010690047, -0.0037698364, 0.03492333, 0.014393066, 0.020481262, 0.060392406, 0.0044652196, 0.048271254, -0.024450138, -0.045060672, 0.068008564, 0.035185266, -0.018395368, -0.03787154, -0.022404252, -0.01600109, 0.05756814, -0.019670743, -0.011003425, 0.015912447, 0.033454407, -0.026689617, -0.036867972, -0.066377126, -0.04617385, 0.016611207, -0.0013101001, 0.027126143, 0.051287886, -0.027571334, 0.04176766, 0.04281855, -0.026495341, 0.031721164, 0.014597979, 0.021600908, -0.015235498, 0.046174116, 0.045090232, -0.015480626, -0.011336693, -0.042544357, 0.022550417, -0.0027450589, 0.0051903175, 0.014915176, -0.01299946, 0.046090506, -0.026971895, 0.04058738, -0.022166906, 0.0040255175, -0.028558306, 0.00863296, -0.04499741, 0.03527051, -0.011919257, 0.023641234, -0.05571691, 0.028160429, -0.046760064, 0.04209188, 0.07986642, 0.049999323, -0.003985802, 0.03939369, 0.05962757, 0.0142167555, -0.0419353, -0.015535976, 0.11181755, 0.034766886, 0.017281724, -0.0466147, 0.020393163, -0.028854944, -0.013467034, -0.020577608, 0.047042497, 0.003914996, 0.013499066, 0.01847648, 0.01973854, 0.008893633, 0.020796936, -0.03314864, 0.015523615, -0.090973236, 0.008156957, 0.0022384238, 0.0042320904, 0.007009824, 0.0112441, 0.05619679, 0.022076732, 0.019365642, -0.016151581, 0.019449893, -0.05004173, -0.028557356, 0.046743236, -0.021284245, 0.027280053, 0.015634142, -0.011334574, -0.04803368, -0.026635354, 0.05306688, -0.043676097, 0.041020207, 0.026594564, -0.04112622, -0.0020197614, 0.0014272982, 0.0037385842, -0.025626682, 0.0361493, -0.09023667, -0.019529263, 0.051708724, -0.0018234437, 0.029184405, 0.049727384, -0.01453262, -0.009366801, -0.0034726358, 0.04113353, -0.0070263296, 0.034959245, -0.010090139, 0.008660171, 0.024496734, -0.004926426, 0.00023699651, 0.051887576, 0.030472755, -0.0027148335, 0.022121157, -0.023987006, -0.011682692, 0.045457248, 0.020172646, -0.00932554, 0.051851552, 0.006983524, 0.008617413, 0.019904258, 0.021598285, 0.039018266, 0.018382385, -0.039285116, 0.032270916, 0.08168704, -0.011946181, 0.0012770644, 0.008744065, -0.007918409, -0.018396568, -0.020372406, -0.008510193, 0.013534478, 0.027394196, 0.0011952784, 0.03788085, 0.07042686, 0.020799037, 0.000854871, -0.06558289, -0.103281036, -0.012025228, 0.054295424, -0.017925955, 0.007587987, 0.0109727895, 0.058476496, 0.0575188, 0.048385814, -0.006464807, 0.014506239, 0.022910582, -0.007559267, 0.011144333, -0.02180633, -0.023098094, -0.038984478, -0.050513063, 0.06996105, -0.042915832, -0.043382015, 0.019693157, -0.04056005, 0.007857526, 0.029109633, -0.029801873, 0.025789171, 0.04634969, 0.040378675, 0.012184091, 0.030119855, 0.029757967, -0.03402261, 0.0049218587, -0.034305815, -0.016176287, 0.006667995, 0.0016770562, -0.0011882852, 0.0058165365, 0.007158949, -0.041476287, 0.030967277, 0.08712084, -0.021846052, 0.042475265, -0.00572419, -0.039926983, -0.012350744, 0.0008670596, -0.028769871, -0.012906779, 0.065618336, -0.023987848, 0.041907407, -0.010175513, 0.0014880435, -0.012307473, 0.072365634, -0.021745516, -0.032304473, 0.03859359, -0.049784873, 0.02296162, -0.018764373, -0.016603729, -0.07827302, -0.023099823, 0.0028409518, 0.036451843, 0.0026139966, 0.017651157, 0.010874066, 0.010563859, 0.012917687, -0.053323507, 0.013062468, -0.0046926737, 0.09037928, 0.019653091, -0.018389577, 0.015588303, 0.019166319, 0.0031302625, 0.018849239, -0.08432927, 0.017727396, -0.020234672, -0.05605275, -0.014528883, 0.005007659, 0.0020433306, -0.009931095, -0.049064644, 0.023554478, 0.07335694, -0.06039791, -0.04585145, 0.0037375726, -0.03525377, -0.027529012, -0.030925645, 0.006117506, -0.08698997, 0.018725542, 0.048396103, 0.04158878, -0.009830453, -0.01906973, -0.00363209, -0.030731956, -0.021629503, 0.027095266, 0.008064297, 0.05320171, 0.050422773, 0.0007000996, 0.064963944, -0.035014052, 0.017644152, 0.029663676, -0.002698702, -0.008548537, 0.052147493, -0.013135489, 0.0058649373, -0.010338729, 0.017514152, -0.030497741, 0.0064562913, -0.027646393, 0.028699808, -0.030346518, -0.017231913, 0.022956, -0.014054301, -0.0199552, 0.062446143, 0.0577812, -0.008853521, -0.090591766, 0.06501396, 0.02733282, -0.0663255, -0.013883743, 0.034926865, -0.03139193, -0.002851079, 0.017189551, 0.057116654, 0.04589983, 0.0017701412, -0.041661605, 0.030362744, -0.008720976, 0.021446604, -0.09597084, -0.008010526, -0.023790376, -0.0039030965, 0.00019462884, 0.0027292655, -0.020031666, 0.030025804, -0.007132265, 0.053202108, 0.0018363897, 0.0017248914, -0.010696023, 0.014787136, -0.004604018, -0.060618017, -0.021874035, 0.04695303, -0.0065097366, 0.034167226, 7.6362645e-05, -0.039781373, 0.0486826, 0.00504975, 0.021689018, 0.018256437, 0.03932725, -0.08511935, -0.03246582, -0.033165865, -0.003985031, -0.06364773, -0.019938657, 0.015666394, -0.0048670922, 0.031972263, -0.05022142, 0.018607195, -0.055168007, -0.019119289, 0.057705343, -0.0011403124, 0.02237896, -0.0018789629, 0.024984172, -0.019089479, -0.00737602, 0.014878971, -0.039528143, -0.013923892, -0.046164095, 0.009743722, 0.042857032, -0.00935213, 0.045561664, 0.022893889, 0.07549347, 0.0786349, 0.0153686805, -0.06716267, -0.018920895, -0.07506536, 0.035316687, 0.03665239, -0.015786638, 0.0063708294, 0.01250521, 0.02929484, 0.0053264657, 0.05766534, 0.0027617225, -0.018989835, -0.010494178, -0.025079586, 0.029613813, -0.031867288, 0.0386583, -0.025397424, -0.05197488, -0.017054606, 0.00017892249, -0.030612268, 0.0030267492, 0.04743643, 0.027878826, 0.06361987, 0.012195491, -0.014093622, -0.028146507, -0.0083947545, -0.022110645, -0.03128299, -0.008010738, -0.02024325, 0.02322967, 0.030448098, 0.037278526, 0.006734575, 0.0684065, 0.023339828, 0.013404568, 0.030382538, -0.03408359, -0.002914452, -0.049932413, 0.02977784, 0.06249718, 0.024574563 ] }, { "values": [ 0.036175076, -0.02049642, -0.017811682, 0.02880674, -0.0028112717, 0.04116892, 0.042834558, -0.004335921, 0.030617606, 0.05344612, -0.036493644, -0.0040187645, 0.09107085, 0.004911493, 0.011547963, -0.06411875, -0.052277956, 0.032878045, -0.036344234, 0.023132227, 0.025683392, -0.020744544, 0.019995933, -0.080040686, 0.03425755, -0.016145516, 0.096208885, 0.015488888, 0.011777016, -0.00989985, -0.016043602, 0.042172983, 0.026780512, -0.047001224, 0.032966178, -0.039188925, 0.00024376616, 0.024760012, -0.011248676, -0.049229626, -0.05673914, 0.0053350013, -0.011555845, 0.0021158052, -0.0107955765, -0.04378796, 0.017771645, -0.00898991, 0.044889025, 0.072364785, 0.05489662, -0.01059348, -0.0351882, -0.014599925, 0.0057798303, 0.022238322, -0.051155806, -0.030908287, 0.0094080325, -0.022043733, 0.0018519722, 0.054479837, 0.024311418, 0.018547816, -0.025333012, -0.014750868, -0.025429169, -0.013893185, -0.016065614, 0.05005403, 0.021789337, 0.009795987, -0.0929156, 0.052522603, -0.047876798, -0.04484346, 0.02568552, -0.033582505, 0.036316372, -0.014670401, 0.010131409, 0.051308464, 0.06944718, -0.00078211556, 0.08888967, -0.025035797, 0.0009622094, -0.06543957, -0.066622145, -0.0007179039, 0.10935463, -0.00054599607, 0.021610748, 0.02876157, -0.029901193, -0.02337368, -0.049402986, -0.038807727, 0.013371556, 0.01914974, 0.033733282, 0.018006714, 0.0066016116, -0.044978056, -0.04318996, 0.00918147, -0.0076492475, 0.003389689, -0.007861184, -0.016557656, 0.0008518621, -0.0947201, 0.031567503, 0.0008361974, -0.002292929, -0.020766418, 0.031651057, 0.06738352, -0.0066911783, 0.042744085, 0.013122016, -0.038836505, -0.016750818, 0.058643013, 0.0520632, 0.021329928, -0.01787088, -0.015051237, -0.037183143, -0.009570417, -0.023037886, -0.001347763, -0.061848864, 0.06048452, -0.030993154, 0.02442914, 0.040979117, -0.042707466, 0.004164969, -0.07045089, 0.033359323, -0.01218547, -0.051447295, 0.031153647, -0.0010056313, 0.0063839382, 0.00013500835, 0.007714721, -0.01887423, -0.0009201666, -0.021772407, 0.016016604, 0.031022457, -0.03824842, 0.014648462, 0.028967673, 0.052055754, 0.005867965, 0.040035255, -0.017699692, -0.018902196, -0.10083397, -0.015766446, 0.05884526, -0.02310627, -0.011898304, 0.022249917, -0.029275842, -0.035732105, -0.01993343, -0.041887566, -0.046507772, -0.031786256, -0.031877887, -0.05207622, 0.02764721, -0.01622165, -0.036675483, -0.023457691, 0.0013761987, 0.029418768, 0.013086715, 0.0011602988, -0.009380231, 0.009299241, 0.036340684, 0.0033070256, -0.03024021, 0.026462112, 0.0068591535, -0.06880016, 0.013440338, -0.04272738, 0.04238126, -0.020701876, 0.021375949, 0.013195448, -0.03153698, -0.026517246, -0.03591862, 0.03605631, -0.028169228, -0.043333706, 0.034457404, -0.048625905, 0.03249385, -0.04248659, -0.020226931, 0.081914574, 0.045028556, 0.0037185305, 0.029988555, -0.018296853, -0.07234375, -0.034274027, -0.021880303, 0.080553085, 0.0086436635, 0.042374343, 0.014918113, 0.026058024, 0.035577398, -0.051753554, 0.017223362, -0.026609538, 0.005471482, -0.00485407, -0.014236916, -0.071688294, -0.086870134, 0.012911335, -0.021922588, 0.0049312566, 0.02874601, -0.018962057, 0.03340176, 0.026872704, 0.015485279, -0.022999858, -0.051534984, 0.027796252, -0.010481132, 0.041500214, -0.028888911, 0.021667255, -0.017060012, 0.022401202, 0.021739317, 0.011290328, -0.105323024, -0.023280043, -0.036952443, 0.04792582, 0.019587308, -0.01920389, -0.058445558, 0.051566403, -0.030373883, 0.02018168, -0.015546803, 0.055141777, -0.081827685, -0.017705888, -0.04064616, -0.039320625, -0.033419997, -0.020116415, 0.018373778, 0.019528255, -0.020024166, -0.06969525, 0.0018451286, 0.016650042, -0.022491267, -0.04928346, 0.0014505258, -0.011528018, -0.0032537105, -0.004575413, -0.081604846, -0.03201757, 0.023790943, 0.0031349221, 0.023203295, -0.023255214, -0.08009785, -0.005343212, -0.0037919565, -0.023369461, -0.033646856, 0.05573456, 0.011874484, 0.026199996, -0.027070023, 0.01265019, 0.015113447, 0.012813578, -0.011930935, 0.025248455, -0.036684744, 0.022996647, 0.049921863, -0.04198102, -0.004599693, 0.008905321, -0.012540548, 0.037566908, 0.001335629, -0.04467744, 0.017376712, 0.016301734, 0.033234514, 0.027644128, -0.029044963, -0.028018806, 0.008440912, -0.16151674, 0.003427253, -0.016783413, 0.018625531, 0.025902264, 0.027527897, -0.017955137, 0.018497165, 0.0948537, 0.011055414, 0.018809468, 0.026185067, 0.036016162, 0.021507442, 0.05489388, 0.014898901, -0.011651853, 0.01861899, -0.025418984, 0.03401254, -0.016135423, -0.030469742, 0.029884437, 0.04496275, 0.0019808207, 0.07064926, 0.032100182, 0.0009021471, 0.027226243, -0.04175665, 0.03996988, 0.040845755, 0.011183188, -0.05844961, 0.00069119997, 0.014871968, 0.004243919, -0.027884897, -0.006695019, 0.0053280224, 0.06197637, -0.034315914, -0.029236453, -0.04123739, -0.026768139, -0.035646882, -0.041240662, 0.010017969, -0.008383602, -0.049516812, -0.001122775, 0.060397778, 0.005109801, -0.024076331, 0.04172121, 0.026110336, -0.04832314, -0.030386548, 0.01824639, 0.0012736714, -0.00574397, 0.01498747, -0.01744806, -0.01890466, -0.010155393, -0.060940057, 0.010315909, 0.004819134, 0.022113131, 0.033297233, -0.0039670924, 0.029975588, -0.029262833, 0.04558746, -0.04319814, 0.023476964, 0.06516588, 0.032179426, 0.036873266, 0.0017460565, -0.029825922, -0.0038345328, 0.0022951167, 0.032401983, 0.0016247168, -0.01791821, 0.061186608, 0.010420484, -0.03362027, 0.025513086, 0.042323623, 0.018873762, 0.018670002, -0.046734553, -0.015673699, 8.524754e-05, 0.02736669, -0.036153205, -0.037913334, 0.010119078, -0.013428138, -0.01019369, 0.04583983, 0.0012189457, 0.07786267, 0.005223065, 0.05332907, -0.016709274, 0.0052130697, -0.008696774, 0.00056832586, -0.022171127, -0.007192984, -0.0420355, -0.015646812, -0.013351378, 0.01979705, 0.023641873, 0.054909926, 0.027310088, 0.010496281, -0.03660372, -0.039132617, 0.010809157, -0.02383894, -0.05667398, 0.05372192, 0.016713787, -0.019203939, 0.03415938, 0.041787013, 0.0317893, -0.041072827, -0.06902532, -0.035962258, 0.0051909876, -0.011443759, -0.049733285, -0.027286101, 0.030269815, -0.009874169, -0.009255061, 0.021045396, -0.026785253, 0.0014262741, -0.061860207, 0.06820959, 0.028324747, 0.004891043, 0.0069080656, -0.06262869, 0.047427133, 0.0055457843, -0.020042714, 0.028223783, 0.044435047, 0.070677646, 0.014514968, -0.044943843, -0.0127302725, 0.022622839, 0.04158737, 0.047019593, 0.050711907, -0.015022595, 0.007902579, 0.048515785, 0.027110599, 0.014606473, -0.026688432, -0.02508, -0.03468508, 0.007956981, 0.040495522, 0.048840165, 0.051702403, 0.017943421, -0.017041575, -0.027116677, -0.016082373, 0.03236173, 0.0050013224, 0.015982525, 0.037371412, 0.073021315, 0.0022063628, -0.0053199036, -0.014639983, 0.022821495, -0.03207992, -0.026936458, 0.003432331, 0.0137193985, 0.008437701, 0.10116644, 0.003428621, 0.04772512, 0.032331377, -0.033806898, -0.026663475, 0.0031302213, 0.029922439, -0.048615657, 0.022023635, 0.022609508, -0.062319644, 0.08787558, -0.017811129, 0.0008746596, -0.04159814, 0.017083267, -0.0062650354, 0.018112473, -0.025644554, -0.00038434955, 0.01394015, -0.0034831313, -0.020438902, 0.009387289, 0.01425318, 0.040279116, 0.03767506, -0.02495091, 0.042872522, 0.013871224, 0.004180286, 0.0065910313, -0.0055057025, 0.025637968, -0.018710054, 0.038685117, 0.031542074, 0.010456561, 0.07901888, -0.036591906, -0.023330148, -0.06939863, -0.07399904, -0.0050471677, -0.022546982, -0.0017784411, -0.018109316, -0.050171126, 0.022450533, 0.0046799034, -0.05832713, -0.022105968, -0.0062340964, 0.070971504, 0.03826173, 0.02735118, 0.06110533, 0.001645429, -0.040369175, -0.009689923, 0.052230105, 0.06230751, 0.00035769577, 0.06294717, 0.030417882, -0.04138546, 0.03404834, 0.007459349, -0.01807892, 0.00689317, -0.02173738, 0.06886943, 0.100943014, -0.013724749, 0.019757729, 0.032566324, 0.07521232, -0.030411124, 0.022089405, -0.07191164, -0.0048115556, 0.00019615174, -0.08473294, -0.031863485, -0.048757672, -0.01980758, 0.025206655, 0.0055743237, 0.031630617, -0.051158123, -0.02327285, 0.022179777, 0.036016703, 0.003692699, -0.017160023, -0.029100591, -0.05055255, 0.08072455, -0.035491686, 0.0025042703, 0.006342416, 0.0055120937, 0.02506789, -0.0009919787, -0.031312257, -0.016423687, -0.048465036, -0.02975602, 0.016660672, 0.0071624867, 0.08848997, 0.043344576, 0.00874325, -0.052201543, 0.0337684, -0.0019830847, -0.017149305, -0.04185688, 0.0017551468, -0.063752346, 0.0042392723, -0.04776538, 0.008393764, -0.036698524, 0.093883306, -0.0030361968, -0.020592509, -0.030726193, -0.010109455, 0.024671605, 0.033801723, -0.0024631945, 0.004479545, -0.038395263, 0.080291644, -0.018279262, -0.018954841, 0.04342969, 0.03663859, -0.065570556, -0.016914053, -0.038543228, -0.01772016, 0.011979646, -0.04071054, -0.062882274, -0.037329745, -0.009274956, -0.02378332, -0.055145122, -0.018900676, 0.0031309107, -0.018557621, -0.02957388, -0.031435203, -0.04480627, 0.03433533, 0.014629507, 0.0056139617, -0.032165118, -0.039119165, -0.011524882, 0.059578992, 0.014448501, 0.042860188, -0.011521354, -0.015701557, -0.021648474, 0.0014264996, 0.02430805, -0.049889263, 0.019530488, -0.024185764, -0.01768118, -0.0004023622, 0.005898292, -0.002403707, 0.023569543, -0.0068393666, -0.017297382, -0.037546035, -0.007019816, -0.06668917, -0.015953468, 0.06988217, 0.0016844857, 0.028980609, 0.004139936, -0.03159091, -0.030255312, -0.0025041183, -0.011669243, -0.07223306, 0.00849947, -0.021028481, 0.0076295566, -0.04465025, 0.061744466, 0.0458123, -0.08260527, -0.018625459, 0.037542745, 0.0104246875, -0.005302893, 0.042919744, -0.049092166, 0.01607041, -0.0096683195, 0.0055640345, 0.046969313, -0.028023213, 0.0032990815, 0.07477256, 0.027245453, -0.023309568, -0.021846563, 0.0149188, -0.08289942, -0.00017789242, 0.050840486, -0.018426957, -0.013860865, -0.04808376, 0.051781837, -0.0274078, 0.032544453, -0.05003831, -0.011223759, -0.020691864, -0.019467225, -0.047880303, -0.03710075, -0.02929911, -0.014903808, -0.004202788, -0.0247869, 0.006682989, -0.037155334, -0.038430043, -0.028456554, 0.014172855, -0.016929165, 0.049812924, 0.0631523, -0.029332865, 0.029800652, -0.018462986, 0.05286262, -0.0008450781, 0.029969918, 0.043905497, -0.036453877, 0.010631357, -0.026964184, -0.010057168, 0.05303155, 0.01759897 ] }, { "values": [ 0.04634415, -0.036386646, -0.012544465, 0.030610902, 0.08325369, -0.012255147, 0.07022069, 0.03347434, 0.00016922805, 0.040258612, -0.019804936, 0.04113712, 0.028250054, 0.041961916, 0.03954538, -0.006825523, -0.00014485493, -0.011193967, -0.06441739, 0.030392343, 0.02035156, -0.055783182, -0.0012605321, -0.053773932, -0.008871635, -0.003850092, 0.07662399, -0.02794741, -0.008791023, -0.0052551473, 0.027240634, -0.027912762, -0.01872644, -0.020248502, 0.06690283, 0.037863456, -0.055612404, -0.054357976, -0.026576493, -0.044954833, -0.023305707, 0.066866666, -0.023442376, 0.029446013, -0.04678267, 0.03852322, 0.0049875528, -0.09395997, 0.038276706, -0.011132395, 0.026656868, 0.01732428, -0.0177747, 0.028872442, 0.0068163257, -0.03709623, -0.028671227, -0.05930568, 0.015052746, 0.015973952, 0.052019536, -0.007885119, -0.068700396, -0.030516274, 0.030853655, -0.016105361, -0.0293801, 0.049313664, 0.030102508, -0.011438662, -0.027723406, 0.10797096, -0.048947535, -0.020617817, -0.023923233, -0.0008133913, -0.0006634773, 0.049709246, 0.0010310593, 0.042212393, 0.0014353147, 0.009368632, 0.04267691, 0.02764724, 0.05146899, 0.0672254, 0.03237334, -0.013681062, -0.03926797, 0.052057493, 0.05731773, 0.02669036, -0.024100434, -0.0008401917, 0.07738671, 0.0005257146, -0.09484253, -0.011819305, 0.071069084, 0.022043623, 0.042333245, -0.04395164, 0.009002153, -0.050525963, 0.024024043, -0.024718894, 0.013289744, -0.05439314, 0.022523018, 0.02619431, -0.011829455, -0.017950406, 0.002514485, -0.013831812, -0.0058119446, -0.021537948, -0.026601864, 0.043397557, -0.0049939873, -0.017130733, 0.035479054, -0.04186696, -0.06814138, 0.06702454, 0.016508995, 0.018926183, 0.027499435, -0.009864795, -0.012137279, -0.062228534, 0.04336538, -0.03616948, 0.008672284, -0.016159184, -0.050589982, -0.03625279, 0.025106382, 0.07808224, -0.046575364, 0.031314503, 0.015208565, 0.038101155, -0.052048594, 0.033890072, -0.01296736, -0.022723716, 0.035752695, 0.048167214, -0.02618764, 0.021209667, -0.04985478, -0.0139358, 0.04749185, 0.02535259, -0.03863485, -0.008473784, 0.0036249156, -0.02846772, 0.045076516, -0.003985395, 0.033412162, -0.06457919, 0.006616581, -0.02657119, -0.029571205, -0.012754738, -0.044300612, 0.008967905, 0.012718036, -0.044991907, 0.06157999, 0.04708034, -0.039463513, 0.014613505, 0.008576451, -0.017463844, 0.04915858, -0.010098784, -0.048352305, -0.004481578, 0.07926468, 0.053787787, 0.047639582, -0.046448052, -0.037643597, 0.052078813, 0.03233253, 0.055254187, 0.038263295, 0.078002654, -0.0016520962, -0.031548012, 0.0444382, 0.0404442, 0.06790224, -0.008182955, -0.0050433218, 0.009293823, 0.029629571, -0.002320788, 0.037522085, -0.016072864, -0.021482728, -0.03689256, -0.054571796, 0.05326494, -0.046531904, 0.021192513, 0.053456802, 0.022500604, 0.02000861, 0.025561731, -0.029091068, -0.048668507, -0.016223136, 7.99386e-05, 0.03282111, 0.026180826, -0.0046316944, -0.00039335273, -0.050122745, 0.0122411605, 0.040090095, 0.057611052, 0.021709044, 0.033240233, -0.0566356, -0.028549347, -0.014731543, -0.04671491, -0.038906243, 0.052627593, -0.0061842734, -0.010308607, 0.011241916, 0.03301833, 0.023227608, -0.06733701, 0.061622016, 0.05081039, -0.06397759, 0.055156585, -0.037843406, 0.073871255, 0.013357619, -0.05814284, -0.030399323, -0.026592175, -0.054468334, -0.057432663, 0.027308282, -0.027465295, 0.023430962, 0.02321213, -0.007937625, -0.051280454, 0.004363842, -0.03152211, 0.060725413, -0.059777122, 0.07526668, -0.004667636, -0.04046091, -0.013304587, -0.015970474, -0.049546707, -0.03098352, 0.014961438, 0.016099045, -0.015228627, -0.002088992, 0.04212177, -0.045224737, -0.008842642, 0.02558182, 0.0034868848, -0.012449932, 0.070646055, 0.050358377, -0.018883059, 0.013270904, -0.027207104, 0.030001977, -0.04058479, 0.029649679, -0.0374978, 0.02516227, 0.029532954, -0.04075184, -0.0022223904, 0.062623546, 0.028831933, 0.07668985, -0.031882398, 0.01717525, 0.08251257, 0.038800903, 0.07732348, 0.009558118, -0.015343274, 0.041514426, 0.021097923, 0.0051725097, 0.05011258, 0.0075029414, -0.009004014, 0.049156256, -0.030680588, 0.015109245, -0.026141463, 0.047253307, 0.024584936, -0.022157433, 0.014759163, -0.047342665, -0.0274219, -0.14109024, -0.013335061, -0.023694977, 0.051461417, -0.01778086, 0.03862767, 0.000148049, -0.048464067, 0.014506644, 0.051619124, 0.030951736, 0.020513605, 0.0050005247, -0.08371417, 0.016682316, -0.014621957, -0.025582012, -0.029563684, 0.018839283, 0.059824042, -0.058205735, 0.0636755, 0.034032684, 0.047164332, -0.00572893, 0.054937042, 0.065324806, 0.08072703, -0.03757725, -0.0044509405, 0.0051707854, 0.005460821, -0.02548223, -0.013676429, -0.010881539, -0.0050916164, 0.046365254, -0.04888807, -0.049184985, -0.010376936, -0.00045202405, 0.008199327, -0.01223304, -0.030723277, -0.040459536, -0.00082686695, -0.03080645, -0.0007991311, 0.0069172326, 0.015668312, 0.03372705, 0.011676973, -0.030731793, -0.02207206, -0.005316986, -0.011961367, -0.026168488, 0.009093518, 0.027235787, -0.08323699, -0.03509526, 0.023298584, 0.0026358666, -0.022204142, 0.03527829, -0.015639206, -0.0024735343, -0.043494124, -0.033889864, 0.046445098, -0.058354072, 0.018989852, 0.013211255, -0.021579467, -0.069416165, 0.061589655, 0.02269607, 0.043162964, -0.057446875, 0.048760466, -0.02389947, 0.02622771, 0.010083527, 0.047955327, 0.013533814, -0.027526103, -0.006329309, -0.062472317, -0.040888373, 0.038898367, 0.03955824, -0.013394007, -0.0092245, -0.043491352, 0.05344855, 0.006827906, -0.013199995, 0.02795974, -0.067443855, -0.014845564, -0.02329372, -0.028315822, -0.03327964, 0.030508382, 0.018183177, 0.01748871, 0.049098536, -0.026350074, 0.009203516, -0.059090994, -0.029960439, 0.010724298, 0.0024824748, -0.014338942, 0.027463125, 0.019903708, -0.022740088, 0.031390242, -0.014366019, -0.022250462, 0.032757793, -0.024492389, -0.013963093, 0.01961329, -0.02699936, -0.01429668, -0.066713214, 0.007978593, -0.052519344, 0.030766727, 0.044639423, -0.027154647, 0.018977324, 0.0019972618, 0.021986019, -0.013139578, 0.048248306, -0.006796384, -0.03604216, 0.034185894, 0.021023948, 0.00088828895, 0.011204312, 0.06876444, -0.024186684, 0.06206392, 0.019724306, -0.021059785, -0.011406314, 0.002930864, 0.0122000715, 0.0068203597, -0.08262886, -0.0032946563, 0.009502862, 0.048075657, -0.047873452, 0.047364037, -0.000664957, -0.00053905527, 0.047340214, -0.025224414, -0.03332081, -0.02681198, 0.015329491, 0.02528304, -0.007071169, 0.04855417, 0.022546345, -0.004191816, 0.0056944676, 0.04925161, 0.019890891, -0.0032624705, 0.036361188, 0.04425646, 0.0208297, -0.013794282, -0.0041001244, 0.024365153, -0.016882284, 0.017968338, 0.023476247, 0.068209946, 0.021819793, -0.011475629, -0.0047847335, 0.004933059, -0.018392656, -0.027412234, 0.0512815, 0.013343546, 0.049308132, -0.0064525316, 0.037941713, 0.041338302, -0.006025029, -0.01999884, -0.028503364, 0.039653633, -0.06424506, 0.019839471, -0.023199566, 0.0381262, -0.01997612, -0.023324437, 0.048189763, 0.002217903, -0.037008658, -0.01900483, -0.020404086, 0.012079791, 0.058382243, 0.02988133, -0.017889116, 0.042563997, 0.03863501, 0.033167467, 0.021910653, 0.06903791, 0.030982995, 0.00035921772, -0.0036819235, 0.031046709, 0.0018808026, 0.013757005, 0.018879319, 0.022082238, 0.04452341, 0.017907534, -0.035605434, 0.009867036, -0.016996501, 0.021909064, 0.024892747, 0.006757956, 0.0046777986, 0.056781318, 0.011742974, -0.015184425, 0.041702744, -0.048597507, 0.04879872, -0.007673104, 0.02044404, -0.0307535, 0.013506874, -0.026722644, -0.028179795, 0.03517666, -0.03599043, -0.009159871, 0.014518045, -0.006863566, -0.03511275, 0.038697608, 0.02628314, 0.009123225, -0.03264617, 0.03947416, -0.061947376, -0.012082051, -0.0009318134, -0.10571956, 0.0042185467, 0.039331753, 0.017236825, 0.0015649976, 0.010435149, -0.008473957, -0.024423497, -0.020851007, 0.015763061, -0.046821818, -0.03385624, 0.010735246, -0.00536308, -0.043819614, 0.019256111, -0.024198258, -0.0067689004, -0.051072884, 0.032719143, 0.005338262, -0.051218927, -0.021142395, 0.05334707, -0.031308357, -0.07498073, 0.008782194, 0.030973954, -0.07132046, 0.0295389, 0.03136004, -0.027474904, -0.022363229, -0.045044858, -0.015428893, -0.07648823, 0.054392703, -0.039956752, -0.019952074, -0.026516562, 0.004544705, -0.0129242055, 0.042538267, -0.01587408, -0.020796165, 0.020342479, -0.06973674, 0.014570814, 0.023157919, 0.033807594, -0.022458682, 0.008872473, 0.010714161, -0.018890105, -0.038620144, -0.009557739, -0.050875098, -0.00320175, -0.036139864, 0.028948126, 0.025743615, 0.025120908, 0.0890433, 0.018725509, 0.025099963, -0.031491697, 0.037169587, 0.05952526, -0.058908265, 0.019475928, 0.010886904, 0.013383914, 0.035728544, 0.007452787, 0.03789558, 0.018921712, 0.022938328, -0.010510913, 0.039760727, 0.05759932, -0.057948038, -0.006885242, -0.064329594, 0.05350818, 0.05994644, 0.022885965, -0.0110164825, -0.034341127, 0.007965305, 0.0044546374, -0.0115804905, -0.04057813, -0.003065583, 0.011528396, 0.016641751, 0.002398551, -0.02659894, -0.031186625, 0.0104601635, -0.035836738, 0.056681875, -0.029416086, -0.03152825, 0.013345411, -0.019752732, 0.057417396, 0.033698883, 0.03395562, 0.024818232, -0.0059988545, 0.0017343054, 0.016539525, -0.049005646, -0.040404916, -0.009397893, 0.011009635, 0.042279467, 0.026563702, 0.002924442, 0.0150122335, -0.04443279, -0.015774509, -0.0013396181, -0.011890491, -0.009295254, 0.014963481, 0.012022181, -0.02503584, 0.020232838, -0.03461646, 0.012371273, -0.02197806, -0.024122909, 0.1136875, 0.037092596, -0.016424464, 0.005030475, 0.013644395, 0.068981014, 0.033178642, 0.019740257, -0.0053530973, -0.010232917, 0.08234892, 0.027082793, 0.016826464, -0.011042454, -0.011603338, -0.014651941, 0.0019869923, 0.06641754, 0.021513535, 0.015509723, 0.026330346, -0.008727778, -0.01454349, -0.011753219, 0.029934172, -0.026058754, -0.081941426, -0.017485611, -0.0044088927, -0.041503258, 0.003359876, 0.009538425, 0.016070362, 0.05209693, -0.008387631, -0.020959217, -0.0124796545, -0.04811559, -0.057722762, -0.014099006, -0.021032138, 0.013973962, -0.0040286914, 0.0094054, 0.03300216, -0.026928727, 0.04806477, 0.015245514, -0.008275408, 0.052871212, -0.042748116, 0.057732627, -0.016264707, -0.017893123, 0.066216566, -0.020866012 ] }, { "values": [ -0.07050064, -0.045573726, 0.012784094, 8.2514496e-05, 0.093051486, -0.0066052973, 0.01362604, -0.0030792104, -0.016138963, 0.06704365, -0.045429695, -0.015041048, 0.00018747328, 0.05039637, -0.021508578, -0.029118193, 0.020808917, 0.001762425, -0.068569876, -0.024117988, 0.026458649, -0.03334166, 0.01482848, -0.042382184, -0.019427557, -0.037152458, 0.06934117, -0.025935998, -0.016114285, -0.034137003, -0.07193473, 0.002154145, 0.001483397, 0.051515326, 0.077685736, 0.042255238, 0.00077484036, -0.03310507, 0.023664271, -0.030827293, -0.09324992, 0.028074475, 0.044272624, 0.070331566, -0.045807827, 0.046118766, 0.059457142, -0.019118454, -0.012356432, 0.05503883, 0.004042191, 0.008724273, -0.0059143775, 0.012370633, 0.031061541, -0.028730484, -0.04403454, -0.030776422, 0.009986372, 0.034767367, -0.020230176, 0.062390894, -0.051497534, -0.005955074, 0.017384086, -0.018820694, -0.0065441024, 0.04945313, -0.0044368007, 0.011971452, -0.059832003, 0.06654472, -0.04575141, 0.026953116, 0.018462365, -0.05289988, 0.01732383, -0.008020797, -0.020015938, 0.035741355, 0.013075689, -0.0035459355, 0.059320554, 0.05034457, 0.018362228, 0.07616055, 0.045623392, -0.055547945, 0.0024768899, -0.034053523, 0.05576025, 0.03955953, -0.0075596184, -0.047115963, 0.05962717, -0.008711763, -0.08451623, -0.06437101, 0.060534563, -0.01690414, 0.0015518047, -0.020918371, -0.01607579, -0.023525186, 0.002401904, 0.047940124, 0.043102328, -0.017450111, 0.013964467, -0.04552812, -0.019076921, -0.015887652, -0.0531044, 0.022957187, -0.029065609, 0.05918309, -0.092776515, -0.020670211, -0.06863178, 0.04583635, -0.0011933992, -0.01803439, -0.044503715, -0.015339215, 0.046745077, 0.031626906, 0.01263746, -0.038612004, -0.015754638, -0.063238956, 0.08584073, -0.071561545, 0.01115229, -0.019536767, 0.0017557985, -0.034887128, -0.0048368433, -0.020498088, 0.00970155, 0.0309993, 0.036860377, 0.057352234, 0.016758831, 0.030129714, -0.014173377, 0.05478794, -0.021630147, 0.034901228, -0.049642988, -0.06180876, -0.0143696545, -0.031015823, 0.004612387, -0.061729494, -0.024811085, 0.023749232, 0.05154401, 0.0042994767, 0.06952801, -0.03354284, 0.04408655, -0.0068574217, 0.037663303, 0.008763574, 0.015315195, -0.047626022, 0.030898966, 0.013317696, -0.006919225, -0.002637643, -0.011117045, -0.00089441554, -0.035059977, -0.058641102, -0.034358986, -0.020768266, 0.005856731, -0.014507702, -0.06724753, -0.017867468, 0.035861354, -0.02171627, 0.010835178, -0.041964605, -0.030544348, 0.055584524, -0.025744025, 0.055080723, 0.011154624, 0.08021155, 0.0058426512, -0.0037578878, 0.0069071534, -0.011190322, -0.018909661, 0.0030306394, 0.043517858, -0.038650837, 0.023978284, 0.06503375, 0.014763911, 0.025109457, -0.009346774, -0.011329813, -0.054318663, 0.04113919, -0.063122325, -0.014942183, -0.02506403, 0.06041573, 0.012435882, -0.010354527, -0.04418252, -0.022740124, 0.03741798, 0.021454848, 0.041244943, 0.019673007, -0.011782098, -0.027317267, -0.025534108, 0.039463803, 0.022756029, -0.0033887995, -0.0056943432, -0.013807941, -0.0758411, -0.025940787, 0.016579362, -0.0034660033, -0.0018648362, 0.045926705, -0.013768858, 0.0022230172, 0.023912903, 0.006489545, 0.036482804, 0.008298242, 0.056241028, 0.040978607, -0.013852894, -0.10838359, 0.08462242, 0.025865251, 0.023327947, -0.016691571, -0.04166903, 0.024577849, -0.04383279, -0.051257707, -0.0049924697, 0.051372737, 0.08831716, -0.017716907, 0.00827459, -0.017385669, 0.018827623, -0.016338397, 0.02201336, -0.022839045, 0.07787689, 0.011448618, -0.026406651, -0.0078081223, 0.0052962997, -0.031373724, -0.027634082, 0.025892012, 0.03420096, -0.042239547, 0.025263036, 0.019918665, -0.059088234, 0.057031486, 0.03248236, 0.028559605, 0.021607412, 0.034568362, -0.0026423852, -0.028089628, 0.039337166, -0.028940244, -0.037841763, -0.054422393, 0.04085579, -0.026045803, -0.023548178, 0.0034068446, 0.0395223, -0.039292082, 0.0039689858, 0.047472887, 0.011244902, 0.01469222, -0.005647559, 0.024994971, -0.0009558093, -0.0146646295, -0.005719346, -0.03841697, 0.012171471, 0.03477922, -0.023770567, 0.012975183, 0.010013606, -0.038743462, -0.03548662, -0.022993952, 0.027290508, 0.03225711, 0.005803402, -0.02273924, 0.0025511975, 0.009795073, -0.029532902, -0.008644809, -0.09430152, -0.008374093, 0.024818266, 0.024568306, 0.0156019665, -0.02988719, -0.0028074274, 0.008080881, 0.016151419, 0.024500212, -0.02195798, 0.018385952, -0.003341871, 0.0020231758, 0.032089587, 0.0009386391, -0.069451615, -0.047402933, -0.03260269, 0.06332801, -0.05595346, 0.02216852, 0.023398004, 0.069496684, 0.004854774, 0.033320606, -0.00018880305, 0.0025507454, -0.020489117, -0.035100263, 0.03826695, 0.039718308, 0.0046915114, 0.016131204, 0.011507717, 0.010350103, 0.02590076, -0.011351919, -0.014171935, -0.015408245, 0.050249957, -0.036516294, -0.02904942, -0.019841691, -0.027617583, -0.009582633, -0.023567364, 0.024281828, 0.010612058, -0.0034656797, -0.047146577, 0.08043681, 0.00097591995, 0.009910556, -0.015780734, 0.023008475, -0.00018062485, -0.023579927, 0.007049558, -0.035685815, 0.0021025764, 0.04617934, 0.021058824, 0.008177627, -0.019966032, -0.030539813, -0.01425612, 0.014824358, -0.020700919, -0.0029335378, -0.047198884, -0.046256453, 0.0008803965, 0.030305164, -0.017629966, 0.0078043537, -0.017012507, 0.025617193, -0.023760477, 0.05890441, -0.020552235, 0.057013005, -0.021816472, 0.0032253803, 0.0034647677, -0.035828266, 0.058633696, -0.039612863, -0.056002084, -0.023647267, 0.06498517, -0.012310816, 0.022002308, -0.036191512, 0.01792031, -0.013744706, -0.039436083, 0.030423429, -0.07240814, 0.03521575, -0.057223145, -0.011625504, 0.0023495362, 0.016235262, -0.04056066, 0.075037606, 0.06996282, -0.052566253, -0.012160914, 0.0015020621, 0.035544503, -0.0059227296, 0.04088168, -0.0648474, 0.03454061, 0.019061971, -0.00032408716, -0.00092472, -0.052357566, 0.046659958, 0.044339187, -0.025242303, -0.0082303155, 0.0071553057, -0.019464323, -0.02164143, 0.013305618, 0.072211824, 0.008242969, -0.006780898, 0.06922519, -0.07984657, 0.008471777, -0.033945113, 0.03314655, 0.03550698, 0.02118541, -0.0019573194, -0.037643764, -0.0043435334, 0.06747342, -0.040051706, -0.016250836, 0.0524547, -0.038640447, -0.03440282, 0.039018985, -0.018811569, -0.045875393, 0.022077758, 0.02519094, 0.044999477, -0.05698495, 0.024556976, 0.0019639966, 0.032151148, -0.07022265, 0.049666047, -0.08607258, -0.013715719, 0.052922763, -0.033719085, 0.0059342175, -0.02097425, 0.041716885, -0.03020794, -0.039037522, 0.037772164, 0.038898483, -0.025306337, -0.0034377817, 0.020479204, -0.020938626, -0.021581296, 0.056087073, 0.024962666, -0.009494166, 0.004499155, -0.020646084, 0.010829516, 0.04965048, -0.017700415, 0.05627547, 0.027929882, 0.046288, 0.0016043417, 0.0018258159, -0.008108249, -0.060783878, -0.043605514, -0.0065985452, -0.032500844, -0.019096334, -0.022408454, -0.016944617, 0.036318384, -0.0043823537, -0.025506688, 0.009025893, 0.0550041, -0.061140284, -0.011890735, -0.04293602, 0.05139467, -0.010690893, 0.0052918545, 0.059338856, -0.038923174, 0.04160533, 0.026280435, -0.02177189, 0.018359788, 0.012795545, 0.04630222, -0.0029286838, 0.06782311, 0.022958815, 0.080361515, 0.051522583, 0.0422439, -0.0065650465, 0.008092025, 0.021350922, -0.06030774, 0.011468575, -0.0031323156, -0.00026183954, -0.017965173, 0.013341254, -0.0028407262, -0.035064418, 0.02885011, -0.022116149, -0.010040747, 0.053508334, 0.013405424, -0.0047364435, -0.038480364, -0.05001134, -0.008633174, 0.017414575, -0.024690181, -0.05556374, 0.0235907, -0.041294187, -0.03675613, -0.0028857114, 0.050116185, -0.0126495315, 0.051359322, -0.036655284, 0.0021207726, -0.0040133037, -0.012725878, -0.04285799, 0.048389632, -0.013751447, -0.05205012, 0.029451912, 0.07027584, -0.039694186, 0.030975623, 0.021482091, -0.049695656, 0.017660402, 0.05847248, 0.0094665885, -0.024888422, -0.03483558, 0.0026167189, -0.009730653, -0.05233737, -0.049933475, -0.008661162, -0.0016724814, -0.0027041812, 0.0053175637, -0.023504633, -0.04446337, -0.021825114, 0.007069354, 0.047413208, 0.06198033, 0.03380968, -0.042575046, 0.016874988, 0.035162125, -0.036480855, -0.024615726, -0.052008484, 0.013785427, -0.032960415, -0.006867125, -0.030886196, -0.011638674, -0.0006780195, 0.046460465, -0.021055374, -0.039121486, 0.04361418, -0.029698592, 0.05674062, -0.026495859, -0.036439534, 0.027247611, -0.005634772, 0.03301126, -0.028790541, -0.044695117, -0.054128006, -0.018029317, -0.004165408, 0.011414591, 0.008004632, -0.01555305, 0.0033295085, 0.05663487, -0.036481287, -0.033518348, 0.01854103, 0.030312408, 0.034339435, 0.033798143, -0.053245626, 0.0019263352, 0.040405076, 0.020793032, -0.021898443, -0.06371298, 0.06564174, 0.035932727, 0.061710313, -0.03819431, 0.03379795, -0.021947108, 0.057291657, -0.057588205, 0.050862495, -0.008905644, 0.010467062, -0.04674068, 0.00781602, 0.06567458, -0.01225407, -0.014198693, -0.052016616, 0.054908134, 0.010593431, -0.017142413, -0.046621453, -0.017335448, 0.028598635, 0.040814772, -0.011402151, 0.051322572, 0.04028973, 0.0050812205, 0.06856331, 0.009843244, -0.04747314, 0.03411396, -0.05971067, -0.04884362, -0.011593258, -0.012593716, -0.04577581, 0.02903197, -0.014028502, 0.03447631, -0.00011075821, 0.007866561, 0.003577751, -0.005139711, -0.025770938, 0.056485165, -0.049126033, -0.080196254, 0.06599245, -0.011786341, 0.026731417, 0.021683423, -0.02996222, 0.041793272, -0.033720028, -0.03578536, 0.0711558, -0.045773026, -0.020843305, 0.039051134, 0.03131949, -0.037017763, 0.0357601, -0.041077033, -0.021674445, -0.020527339, -0.028776826, 0.022291692, 0.014560666, -0.00362991, 0.057498418, 0.040541418, 0.014008641, -0.025403624, 0.03303207, 0.010360229, -0.032381773, 0.03154749, 0.027646555, 0.010795504, 0.03563044, 0.040443517, 0.023307953, -0.0050365767, 0.05266283, 0.04176791, 0.00041321924, 0.014753268, -0.009784384, 0.035970185, 0.018052414, 0.023938289, -0.045147967, -0.0561693, -0.018189363, -0.0097107645, -0.01940346, -0.011711406, -0.06096343, -0.012771692, 0.009129575, -0.052283432, -0.03251604, -0.026830887, -0.053431723, -0.038339917, -0.01845855, -0.020520823, -0.02799222, 0.057228208, -0.041303605, 0.040782712, -0.02306122, -0.00019162052, 0.042777512, 0.012210865, 0.0440932, -0.051730692, 0.07435379, -0.022040203, -0.024161737, -0.021686692, -0.026149524 ] }, { "values": [ 0.04999967, -0.02277745, 0.039181225, 0.08099912, -0.026426524, 0.056698665, 0.024312088, 0.012599286, 0.05785425, 0.034144886, -0.041714393, 0.0021687164, 0.09281674, -0.04112896, 0.011493956, -0.06739098, -0.056956753, 0.024599899, -0.00452552, 0.057029847, 0.03530561, -0.03081174, 0.017310608, -0.03736843, 0.014204203, 0.034731023, 0.056144424, 0.0264867, -0.0058261454, -0.039589718, -0.018179277, -0.0038255064, 0.008059098, 0.01927212, 0.087339506, -0.010175715, 0.008317145, 0.019372987, 0.0009404529, -0.023468617, -0.03421219, 0.063234165, -0.00083224574, 0.026715145, -0.02544224, -0.015718084, 0.018458745, -0.018215833, 0.08568971, 0.08227769, 0.009670844, -0.023981476, 0.0066708797, -0.0124536585, 0.012142577, 0.008139243, -0.05189931, -0.037897695, 0.022789579, -0.028124848, 0.037605833, 0.034002498, -0.029030783, 0.06656512, -0.052540738, -0.013017395, -0.030697307, 0.036470786, -0.02349896, 0.10196986, 0.039950807, 0.060044117, -0.04308483, 0.018972714, 0.014661345, -0.006464354, 0.016013637, -0.03542863, -0.0021874597, -0.0018229887, 0.019389044, 0.014477389, 0.06044842, 0.042053577, 0.06662367, 0.0038318427, -0.029302418, -0.05148552, -0.041946102, 0.01010905, 0.07341086, 0.025856653, 0.006922689, 0.017864646, 0.029390935, -0.029688425, -0.07706945, -0.019081982, 0.050550375, -0.004612374, 0.040321868, 0.02048893, 0.012741396, -0.018530354, -0.007826284, -0.0114764, 0.021089964, -0.039971426, 0.023911346, 0.011129522, 0.019870693, -0.09899014, 0.007390483, 0.033292834, -0.0011154825, 0.021371327, 0.0077719553, 0.11132465, 0.017468305, 0.006367076, -0.022697842, 0.02117219, -0.035250522, 0.079066396, 0.008140822, 0.007260006, 0.0291407, 0.03931521, 0.021103865, -0.04994502, -0.0013800262, 0.0044305995, -0.09620083, 0.018604795, 0.010416477, 0.034783963, 0.04858366, -0.02534993, 0.016308377, -0.049856987, 0.03264794, -0.041960176, -0.0060810708, 0.010327101, 0.0119734295, 0.022212815, 0.008332493, 0.03826681, 0.018593367, 0.058571186, -0.03831652, 0.04603149, 0.0464715, -0.037415694, 0.012273239, 0.0044353083, 0.03903056, 0.005618574, -0.007990219, -0.017148986, -0.03320411, -0.05237999, 0.0117492, 0.050423324, -0.074859485, 0.0053573237, -0.0069322805, 0.004183745, -0.066879675, 0.03591927, -0.05488343, -0.01686899, -0.051749345, -0.04545664, -0.08043034, 0.015509463, 0.008367438, -0.071040936, -0.03152271, 0.067118466, 0.0013979375, -0.011728369, -0.001153943, -0.022631135, -0.010103544, -0.009306494, -0.0123079745, 0.03272281, 0.019708542, 0.009460693, -0.078576386, 0.012261148, -0.059568938, 0.01631767, 0.019669492, 0.002023618, -0.0012413668, -0.05747793, 0.004133966, -0.023569806, 0.03958116, 0.04129185, -0.026349207, 0.020246794, 0.009782182, 0.043329235, -0.057188526, 0.008597287, 0.04841662, -0.017828163, -0.0008024259, -0.023727331, -0.045735136, -0.050972037, -0.020957457, -0.01897539, 0.09027374, -0.005230103, 0.02956217, 0.047676377, 0.043968916, 0.08030469, -0.036823895, 0.033648822, 0.0016437307, -0.008675635, -0.05683894, 0.007437647, -0.028834004, -0.07531468, 0.035086762, 0.038872283, -0.025960416, -0.0079188915, -0.056630496, 0.0647673, 0.018264621, 0.0650638, -0.04693455, -0.012628776, 0.009879668, -0.02920538, 0.0077428687, 0.0016012583, 0.056572843, -0.048364554, -0.01404267, 0.040918764, 0.018071314, -0.08727971, 0.008131581, -0.070360504, 0.03453023, -0.030479625, -0.0009664017, -0.034746077, 0.010925698, -0.026101064, -0.040850848, 0.006838143, 0.032633886, -0.03074283, 0.046924315, -0.04474266, -0.059908215, -0.010087312, -0.017360488, 0.01706122, 0.06710277, -0.039050158, -0.02138142, -6.699598e-05, -0.0038442614, -0.033105683, -0.035192754, 0.034788188, -0.028660875, 0.035047583, 0.0034328075, -0.028977256, -0.040204078, 0.039649747, 0.029271647, 0.04849794, -0.004433811, -0.11382215, 0.020291375, 0.017150346, -0.007769133, -0.027319934, 0.051189188, 0.05263465, 0.059940208, -0.0574887, -0.034073547, 0.007097954, 0.0058011543, -0.0032954859, 0.028774526, -0.013039765, 0.0027135818, 0.023897685, -0.020960249, 0.008160362, 0.010214196, -0.013505376, 0.028565394, 0.030372722, -0.053399157, 0.02343756, 0.024777284, 0.022474984, -0.01230785, -0.032888234, -0.07511962, -0.038344022, -0.15117605, -0.033264607, -0.0016911544, 0.034642868, 0.010438263, 0.010374526, 0.019773629, 0.0076006553, 0.095143676, 0.027151667, -0.0032017934, 0.02096912, 0.07310086, 0.026193509, 0.053730614, 0.013714137, 0.04961499, 0.0018894806, -0.009767728, 0.06717681, -0.0174852, -0.023785224, 0.046462014, 0.020672558, 0.013634898, 0.058490407, 0.009442296, -0.021183653, 0.015389693, -0.02290146, -0.026321374, 0.026242571, 0.029351428, -0.019774463, -0.0014837137, -0.018666202, -0.024725953, -0.089050025, 0.007245237, 0.013404968, 0.0188209, 0.0064341207, -0.032456294, -0.04805479, -0.012223719, -0.036470823, -0.04337429, 0.03883779, -0.016682213, -0.015944982, -0.017264068, 0.052885026, 0.0017953285, 0.0026728706, 0.02167661, 0.00032577218, -0.030734407, -0.0015676429, 0.04933063, -0.00054166757, -0.012357827, -0.009662141, 0.00043309623, 0.0019549555, 0.04342802, -0.041965287, -0.010145933, 0.0145116085, 0.011300514, 0.03521366, 0.0049231406, -0.023696536, -0.02235546, 0.06866262, -0.022084976, 0.03392933, 0.023851093, 0.029846542, -0.008305482, 0.006179544, -0.021022419, -0.03669524, -0.03450757, 0.003940929, -0.032264505, 0.0019481147, 0.031085363, -0.022140428, -0.03210872, -0.019254705, 0.0035682046, 0.028048512, 0.046124864, -0.03376784, -0.007878954, -0.032625902, 0.007104454, -0.00742575, -0.036962323, 0.031839702, -0.0492158, -0.02423564, -0.013607787, -0.014491246, 0.061577152, 0.020817885, 0.016878381, -0.03889277, 0.028126732, -0.02427359, -0.04283354, -0.030512227, 0.030124681, -0.025279857, -0.027419124, 0.013022917, 0.031594288, -0.017067766, 0.00628583, 0.0046275766, 0.027323272, -0.009735078, -0.02204744, 0.008707202, -0.0015486758, -0.012724659, 0.029320883, 0.021847721, -0.025959503, 0.06145335, 0.027357122, -0.005187291, -0.021580227, 0.020104004, -0.031286508, 0.0077268323, 0.017490651, -0.07021972, 0.00037831286, 0.016813971, -0.007738656, 0.020016668, 0.012292637, -0.05579945, -0.04042293, -0.013934226, 0.05369125, 0.0191796, 0.0005979459, 0.0029103865, -0.016757049, 0.091056876, 0.020261541, 0.027033454, 0.0016010153, 0.06155861, 0.004952296, 0.009552719, -0.040399417, -0.06278595, 0.0150532955, 0.0047740065, 0.016896749, 0.08808803, -0.027994929, 0.016412204, -0.0076412945, 0.043654546, 0.0006182055, -0.031978294, -0.01960294, -0.019551465, 0.006989236, 0.014400976, 0.037785865, 0.0142530305, 0.007466068, 0.0013217888, -0.018668415, 0.0065102563, 0.003067863, -0.027380645, 0.021616155, 0.012577908, 0.079096206, 0.04611381, 0.037408654, -0.04692944, 0.0014077107, 0.017236933, 0.019992452, -0.038489647, 0.013009603, -0.042598676, 0.06458444, 0.016442716, -0.002183596, -0.014868834, 0.039862, -0.024485484, 0.025942652, 0.027501801, -0.0760373, 0.045825105, -0.020130234, -0.05108996, 0.07306939, -0.013013009, 0.009697339, -0.036681388, -0.002892202, 0.07966614, 0.016540201, -0.037219856, -0.0070776087, 0.042346947, 0.012711966, 0.0050741783, 0.0112405475, 0.007664881, 0.06913528, -0.014087277, -0.057171624, 0.020921143, 0.07254054, -0.01921631, 2.2421568e-07, 0.011639781, 0.024622085, -0.006662494, 0.04376677, 0.049786273, -0.01630994, 0.09174964, -0.038716085, 0.00343274, -0.006717933, -0.021926077, 0.028252343, -0.042541277, -0.012045575, -0.009181844, -0.040340807, 0.04000437, -0.0049744863, -0.04830261, 0.01118356, 0.015498029, 0.0075423, -0.003011478, 0.032974496, 0.0048630834, -0.04646458, -0.029872937, -0.006907272, 0.04139731, 0.078536354, -0.03433843, 0.008263303, 0.03435128, -0.0005000055, 0.026280062, -0.00062936574, -0.019034663, 0.009582656, -0.0043945336, 0.03295869, 0.08685573, -0.027646901, 0.00029128476, 0.02835714, 0.008571558, 0.010166741, -0.029693564, -0.0068680197, -0.013568133, 0.034604777, -0.04649403, -0.02915958, -0.082133695, -0.01387876, 0.024393417, -0.02847995, 0.0019995715, -0.038665444, -0.02645744, 0.03366715, 0.048965733, -0.020260576, -0.01378425, 0.025711777, -0.07317595, 0.063343465, 0.026441183, 0.0069489167, -0.0062122867, 0.0014242724, -0.0013272612, -0.051312584, -0.04148693, -0.03673231, -0.03379591, -0.048348993, 0.027743248, -0.03553247, 0.057723224, -0.023149638, 0.029509202, -0.077876285, 0.039267574, -0.045626987, -0.05688108, -0.006982194, -0.0025610356, -0.022783771, 0.032552376, 0.0012667783, 0.008204718, -0.056898735, 0.062208634, -0.025041632, -0.019241638, -0.008292459, 0.002142822, -0.028457437, 0.0356136, 0.045978818, 0.0005056108, -0.023045551, 0.09392078, 0.012791997, -0.025976086, 0.058970273, 0.05018013, -0.027104722, -0.034944993, 0.00947028, -0.01864431, 0.0070214197, -0.022484494, -0.05237599, -0.012205143, -0.0046962677, -0.025603736, 0.01446977, -0.011168254, 0.012150044, 0.020706046, 0.0038947978, -0.013499765, -0.008040377, 0.025857188, 0.011038778, -0.0054466343, -0.019154109, 0.009313211, -0.03259424, 0.02751781, -0.0009792098, 0.06520854, -0.005289351, -0.03727544, 0.00780169, -0.007445938, -0.016285874, -0.04373146, -0.023081021, -0.027533285, 0.007294423, 0.009127685, 0.013378881, -0.014377669, 0.027997594, -0.030911833, -0.02162375, -0.07747223, -0.0024703385, -0.040055815, -0.010168456, 0.04589144, -0.04173447, 0.05350814, 0.021824945, -0.029177252, -0.030670362, -0.045914404, -0.01231145, -0.03930831, 0.013910593, -0.042093292, -0.019550635, -0.0020720453, 0.02425079, -0.013940872, -0.037045803, 0.01632768, 0.06418472, -0.0076687615, -0.03383287, 0.04687062, -0.042012453, -0.011930457, -0.039175786, -0.017944163, 0.05598288, -0.007887395, 0.0027790975, 0.04245656, 0.03177083, -0.020508068, -0.037680764, -0.018080119, -0.055217884, -0.013847964, 0.048767325, 0.026253946, -0.06528418, -0.03816164, 0.059622034, -0.0151208155, 0.031299114, -0.004932246, -0.036303863, 0.035203632, 0.011939265, -0.032883264, 0.012512368, -0.040655993, -0.013518058, 0.03952902, -0.015674317, -0.003773728, -0.06545344, -0.045044422, -0.04659925, 0.05114854, -0.021148574, 0.049233854, 0.06713431, -0.032772835, 0.0417562, 0.020732608, 0.06345883, 0.040988438, 0.008613131, 0.0101732025, -0.06458658, 0.019761644, -0.026309403, 0.036763985, 0.047224827, -0.023288438 ] }, { "values": [ -0.03154125, 0.06658187, 0.04508467, -0.01022603, 0.03940097, 0.007456073, -0.019288423, -0.010503988, 0.03666595, 0.06174921, -0.0066236435, 0.05283504, 0.03094996, 0.0303672, 0.034316834, -0.018048443, 0.030471185, 0.04607898, -0.04859522, 0.026616104, 0.023575425, -0.002454816, 0.033048365, -0.058511652, 0.012315089, 0.008281921, 0.013339322, 0.016287126, 0.0053041303, 0.02164572, -0.036152724, 0.022076597, 0.00026356918, 0.040249582, 0.047862552, 0.034240212, -0.008876236, -0.05468977, 0.066103615, -0.052557252, -0.053502854, 0.030221418, 0.026855955, 0.020310482, 0.0061628227, -0.021539722, 0.018296242, -0.024430458, -0.03929279, 0.08927183, 0.054989118, 0.015372086, 0.016948786, -0.025502179, 0.025994305, 0.038118325, -0.079395115, -0.0044628666, 0.053116083, 0.03880614, 0.030175567, 0.05017604, -0.0077547436, 0.011572601, 0.009777068, -0.018264662, 0.0021226993, -0.021282224, 0.026496306, -0.0015231514, -0.053468693, 0.035934754, -0.016551213, 0.05066237, 0.046634357, -0.0830037, 0.038355373, -0.03577167, 0.0100154495, 0.05195095, 0.0436041, 0.020272864, 0.058343545, 0.05878801, 0.009300045, 0.04155051, 0.007928733, -0.04307723, -0.014054049, -0.03467008, 0.010030291, 0.03661729, -0.0328684, -0.003564502, -0.01496961, -0.06791251, -0.11119714, -0.035561837, -0.007379316, -0.009603823, 0.0029731805, -0.00023321854, 0.02004165, -0.014218037, 0.011211809, -0.01930575, 0.014712077, -0.06398448, 0.033668224, -0.049266055, -0.03323108, -0.037611105, 0.05224044, -0.0077107926, 0.003775135, -0.010366003, -0.028832028, -0.0339938, -0.028253447, -0.0347232, 0.00196286, 0.033575136, -0.02078035, 0.0030604315, 0.047156386, -0.040679753, 0.02232282, -0.069301166, -0.017055793, 0.03409593, 0.038507096, -0.03156481, -0.03648321, -0.010584072, -0.017495101, -0.024414489, -0.00038420546, 0.05302064, 0.062200785, 0.017301647, 0.03457075, 0.047609407, -0.010777147, -0.042823933, 0.002531437, 0.037373602, 0.0106872115, -0.040645238, -0.02315871, -0.02909178, -0.054680027, -0.025387172, 0.025824118, -0.055795275, 0.017447041, -0.008043608, 0.023305839, 0.013982882, -0.03794827, -0.082834564, 0.041855615, -0.023840157, 0.05477691, -5.5253608e-05, -0.034526743, 0.024334483, 0.010849406, -0.075694256, 0.0210481, 0.021070201, -0.012749663, -0.045317583, 0.0321095, -0.10263837, -0.034835953, -0.0022933024, -0.024304602, -0.023323858, -0.01983923, -0.07145428, 0.06907425, -0.062425252, -0.0054717413, -0.008737352, -0.037179958, 0.0003034804, 0.01263794, 0.059884034, 0.10826937, 0.05827752, -0.03803555, 0.051355306, 0.062021285, 0.03333794, -0.028490877, -0.043871857, 0.0019208908, 0.0029186113, -0.04572203, 0.0132512245, 0.06154982, 0.034778338, 0.0036561375, -0.039524674, -0.06843, 0.0010877424, -0.03127627, -0.023719873, -0.044861577, 0.0028564523, -0.0074587474, -0.061955657, -0.0611548, -0.078084685, -0.018276023, -0.0042751036, 0.06894482, 0.029262576, 0.013848062, -0.053688046, -0.0009890803, -0.026592799, 0.052158155, 0.031357564, -0.0051377728, -0.0037054708, -0.0544395, -0.008283914, -0.012648873, 0.007081247, -0.06030247, 0.04161384, -0.03939743, -0.01711685, 0.010840141, 0.09872133, -0.01697508, 0.016569896, -0.012004901, -0.004345112, 0.0063282335, -0.013546706, 0.07931462, 0.08720424, 0.066167556, 0.06328395, -0.010055684, 0.035201926, 0.031422142, 0.010952546, -0.010626563, 0.011324836, -0.009398705, -0.03702053, 0.030198913, 0.0065247198, 0.014542215, 0.02382309, 0.010793585, -0.01591709, 0.014988711, -0.0035976667, -0.022836365, -0.0326147, -0.040104054, -0.010147562, -0.026001014, -0.026746884, 0.038509805, -0.028040847, 0.0041666552, 0.014637727, 0.06233977, 0.035282414, -0.007955326, 0.011568923, 0.0075676017, 0.037897117, -0.057559427, -0.008773014, 0.022809105, -0.018271104, -0.016204182, -0.0021930092, 0.025498237, -0.033966187, 0.005639554, 0.028781662, 0.0076069287, -0.019727044, 0.0024471674, 0.036577273, 0.019162782, 0.0033274551, -0.011677769, -0.01985685, 0.021449963, -0.015963884, 0.0076333806, -0.019303575, 0.039541457, 0.07115579, -0.033662673, 0.04454369, -0.029193362, -0.026497424, 0.015423561, -0.062304497, 0.0038561581, 0.07763744, -0.040682588, 0.027114546, -0.005683508, 0.022314057, -0.05921048, -0.024926996, -0.1198069, 0.022394385, 0.02162903, -0.023155987, -0.035292048, -0.017745443, -0.049550325, -0.002672067, 0.014717858, 0.00789221, 0.0012842218, -0.004250982, 0.010888953, 0.013781344, 0.03507614, 0.03006319, -0.0054599848, -0.017643541, -0.023519417, 0.10961023, -0.034173824, 0.0648434, 0.017279603, -0.032380868, 0.022334388, 0.037835702, 0.0032830832, -0.017749576, 0.030716555, -0.061693355, -0.030049164, -0.018328508, 0.020646835, 0.03190405, -0.035240944, 0.10587104, -0.004047561, -0.024931468, -0.017565968, -0.03195032, 0.04629659, -0.052902933, -0.0044439877, -0.06060024, -0.026956951, 0.0138070285, 0.0147084985, -0.012398111, 0.013596602, -0.0032608241, 0.038349804, 0.0718687, 0.02945998, -0.016081473, -0.001928154, 0.002856915, -0.03066979, -0.0064422083, 0.03414873, -0.029842757, -0.006306129, 0.0008200781, 0.0031658965, -0.034579575, -0.045946095, -0.047597647, 0.014283656, 0.011948266, -0.04859621, 0.04614379, -0.016094243, 0.030828966, -0.010196439, 0.04270487, -0.037953686, 0.06758569, -0.004034335, 0.025540313, -0.021890033, 0.020045247, -0.039071295, 0.04007618, 0.01804528, -0.010548211, -0.02997297, -0.016268099, 0.0267884, 0.018452765, 0.018438375, -0.053187005, 0.004412651, 0.042515792, 0.025896631, -0.000830373, -0.012108179, -0.04204376, -0.027581412, -0.010512523, -0.016758118, -0.003942221, 0.008299067, -0.020525273, -0.022941677, -0.013979286, -0.0038438633, 0.04876071, 0.058710564, -0.033237804, 0.0014336626, -0.02724858, 0.040322583, -0.008798841, 0.0076751914, -0.08087388, 0.023169635, 0.0022026224, 0.04383238, 0.020858718, 0.033068277, 0.02024637, 0.056455575, -0.061538134, -0.022491753, -0.0027251546, -0.060721777, -0.030117923, 0.027082227, 0.06309916, -0.02951123, 0.030649262, 0.024505978, -0.054132223, 0.019409282, -0.0282745, -0.016247591, -0.03284332, -0.046636254, -0.016467687, -0.06327415, -0.040181275, 0.015422702, 0.0051213955, 0.05581486, 0.044274554, 0.024470855, -0.04529577, 0.089580245, 0.021078186, -0.017626902, -0.01759417, -0.06271541, 0.057359107, -0.039809085, 0.040732343, 0.015955899, 0.043133702, -0.008801542, 0.08257525, -0.07927428, -0.037832793, 0.030295467, -0.013570263, -0.012688681, -0.015873065, -0.02951117, -0.0048665083, -0.03345783, -0.035453234, 0.03172347, -0.047989815, -0.034687765, 0.06730798, 0.030941729, -0.026570478, 0.03741395, 0.028360851, 0.02697377, -0.013866601, -0.030177848, 0.0004623093, 0.050181042, 0.010773799, 0.0041773915, -0.012044901, 0.008854801, -0.034855336, 0.06179728, -0.08985965, -0.009778299, -0.048008956, -0.012523658, -0.009681962, -0.011758065, -0.033228353, 0.025833212, 0.037298966, 0.014460533, -0.0037186728, 0.038364533, 0.035386633, -0.009578953, -0.02239417, -0.037897527, 0.042294826, 0.025599899, -0.023765592, 0.027404038, -0.055537906, 0.04973744, 0.034650523, 0.0015303591, 0.03686718, 0.028134435, -0.025456354, -0.011314464, 0.063898176, 0.018695306, 0.06742023, 0.06306919, 0.08221837, -0.0024853442, 0.024178308, 0.0013607342, -0.015026297, -0.008618967, -0.009070541, -0.015577734, 0.004774036, 0.030228615, -0.0014823041, 0.029185377, 0.009107325, -0.01404709, -0.014775034, 0.04833756, -0.025820524, -0.017339291, -0.029733906, 0.0037902782, -0.009238495, 0.013438704, -0.007908117, -0.067216314, -0.042031627, -0.032757953, -0.05729779, 0.01700859, 0.038251992, 0.0065371734, 0.048139647, -0.035977084, 0.03300533, -0.015380232, -0.03205239, -0.029301435, 0.021872839, 0.0060352976, -0.044788513, 0.009888453, -0.002966104, 0.012644956, 0.040566903, 0.03759026, 0.000506083, 0.030853732, 0.026458798, 0.12353674, -0.02681444, -0.0390275, 0.0055660354, 0.020540163, 0.019903162, -0.054468255, -0.018796733, -3.6250247e-05, 0.026128104, 0.007748829, -0.055038176, 0.01570714, -0.034453947, 0.041813806, 0.013501694, -0.02820617, 0.02912395, 0.009920649, 0.030783061, 0.022381296, 0.012472832, -0.014511513, 0.016446346, -0.0534862, -0.033987228, 0.0057856315, -0.035310257, 0.022614256, 0.023737436, 0.05064035, -0.07867776, -0.009033793, 0.003307663, 0.0010209475, 0.002740965, 0.018816756, -0.059518445, -0.008783024, 0.014531835, -0.030939782, -0.0023986867, -0.03588359, 0.010893112, -0.026956407, 0.028231854, -0.043037724, 0.0134393005, -0.009216096, -0.021618618, -0.003307252, -0.04952631, -0.04601195, -0.041668825, -0.03173004, -0.008736254, 0.021039898, 0.012296825, -0.01993792, 0.029737456, 0.025766121, 0.02050313, -0.03653046, 0.0338285, -0.07109422, 0.00088638015, 0.021621924, 0.04231704, -0.071174696, -0.027433353, -0.031122485, 0.0063775247, 0.016731685, 0.013211782, -0.06857413, 0.036730427, 0.016670374, -0.020381955, 0.006125461, -0.024350228, 0.036122438, 0.01506818, -0.050931275, -0.024844406, -0.028216695, 0.026767654, 0.023615653, 0.021700382, 0.04243177, 0.0072337766, 0.007875122, 0.046153814, -0.007812592, 0.008209711, 0.014449291, -0.011569418, -0.019855488, -0.012947076, 0.044369772, -0.031132588, 0.012345466, 0.023279404, 0.115743764, -0.005572437, 0.046338074, -0.029250512, 0.0013456368, -0.01187006, 0.02128192, 0.012562362, -0.06188543, 0.026601879, -0.030555233, 0.028682614, 0.009317905, -0.048672657, 0.011273099, 0.00021871994, -0.03955024, -0.011591266, 0.03528172, -0.06671938, 0.06469629, 0.019394487, 0.022020118, 0.06992163, -0.06251819, -0.03930309, -0.028685983, 0.04037749, 0.018714068, -0.011721444, 0.004018387, 0.008814181, 0.03727366, 0.0506318, 0.007802653, 0.0044341935, -0.005423326, -0.0067978073, -0.0074993228, 0.039829187, 0.023573445, 0.03973123, -0.014206011, 0.017107878, 0.0073479987, 0.10635224, 0.06473837, -0.0011548399, 0.007221624, -0.022764307, -0.03136446, -0.0121284155, 0.040504396, 0.011251174, -0.055822738, -0.020808792, 0.015256331, -0.026443562, -0.036489353, -0.010862903, -0.037960626, 0.008815588, 0.016352126, -0.06586527, -0.050138626, 0.014596957, 0.014767733, 0.025765775, 0.00787706, -0.0032331797, 0.09495995, 0.023896372, 0.00035041053, 0.017434347, 0.024566285, 0.05674513, 0.017556945, 0.030936219, -0.06839179, 0.00068772613, 0.015433673, -0.013746586, 0.022365827, 0.011843526 ] } ] }
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/gemini/testdata/bigbatch.httprr
httprr trace v1 9570 1645472 POST https://generativelanguage.googleapis.com/v1beta/models/text-embedding-004:batchEmbedContents?%24alt=json%3Benum-encoding%3Dint HTTP/1.1 Host: generativelanguage.googleapis.com User-Agent: Go-http-client/1.1 Content-Length: 9240 Content-Type: application/json x-goog-request-params: model=models%2Ftext-embedding-004 {"model":"models/text-embedding-004","requests":[{"model":"models/text-embedding-004","content":{"parts":[{"text":"word0"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word1"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word2"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word3"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word4"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word5"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word6"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word7"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word8"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word9"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word10"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word11"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word12"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word13"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word14"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word15"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word16"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word17"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word18"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word19"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word20"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word21"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word22"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word23"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word24"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word25"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word26"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word27"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word28"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word29"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word30"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word31"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word32"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word33"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word34"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word35"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word36"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word37"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word38"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word39"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word40"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word41"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word42"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word43"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word44"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word45"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word46"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word47"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word48"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word49"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word50"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word51"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word52"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word53"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word54"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word55"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word56"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word57"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word58"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word59"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word60"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word61"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word62"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word63"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word64"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word65"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word66"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word67"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word68"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word69"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word70"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word71"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word72"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word73"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word74"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word75"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word76"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word77"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word78"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word79"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word80"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word81"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word82"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word83"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word84"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word85"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word86"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word87"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word88"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word89"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word90"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word91"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word92"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word93"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word94"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word95"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word96"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word97"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word98"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word99"}],"role":"user"}}]}HTTP/2.0 200 OK Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 Cache-Control: private Content-Type: application/json; charset=UTF-8 Date: Tue, 09 Jul 2024 20:22:26 GMT Server: scaffolding on HTTPServer2 Server-Timing: gfet4t7; dur=1089 Vary: Origin Vary: X-Origin Vary: Referer X-Content-Type-Options: nosniff X-Frame-Options: SAMEORIGIN X-Xss-Protection: 0 { "embeddings": [ { "values": [ 0.011795023, -0.017220125, -0.06567504, -0.04725426, 0.013005565, 0.05693758, 0.07125166, 0.02104026, -0.015247764, 0.026691377, 0.02690099, 0.01906053, 0.021642528, 0.037533995, -0.024717074, -0.041423954, 0.038314275, 0.0017910809, -0.06278509, 0.026670914, 0.019750554, -0.02544125, 0.04030014, -0.08504288, -0.013702801, 0.008776692, 0.07518423, -0.033195753, 0.014538579, -0.018399658, 0.05075753, 0.0008422126, -0.0076068556, -0.019721553, 0.08736955, 0.001804379, -0.07061329, 0.03901014, 0.011834126, -0.04240996, -0.04432067, 0.010584639, 0.0062245578, 0.014603475, -0.012601757, 0.0048341826, 0.037466504, 0.0071953917, 0.011803704, 0.041442007, 0.04596143, -0.028591497, -0.05128506, 0.02159685, -0.018827891, -0.0067085805, -0.006976933, -0.030907989, 0.08003166, -0.0049760365, -0.022060927, -0.009848112, -0.043300323, 0.001333939, 0.019667814, 0.026965644, -0.03647935, 0.0017072448, -0.05649215, -0.0028851395, -0.062968075, 0.031236429, -0.032331258, -0.037849106, 0.0033193545, -0.011033733, -0.0030005893, 0.007918576, -0.01137984, 0.022602739, -0.028450035, 0.024093587, 0.048293494, 0.045113765, 0.036002968, 0.005798174, 0.033842802, 0.00030775432, 0.00033662096, 0.011427543, 0.04596595, -0.014628021, -0.0025670235, 0.0020512221, 0.03641942, -0.02695706, -0.056451395, -0.045110416, 0.045631472, 0.07325179, -0.027555475, 0.014128987, -0.041366205, -0.024189178, 0.04454433, 0.044930797, -0.024458863, -0.0112906415, -0.033142276, 0.008150217, -0.020478709, -0.026092285, 0.017954046, 0.012842398, 0.01699144, -0.049385406, -0.02473647, 0.03546265, -0.03342714, 0.015220701, 0.010695347, 0.0097208945, -0.023851074, 0.00692801, 0.027603632, -0.024366366, 0.037486535, -0.03246565, -0.038269017, -0.09642148, 0.08756633, -0.10448375, 0.008106346, -0.00886675, -0.037343323, -0.038208213, 0.013227436, -0.005934564, -0.04439265, 0.020940464, -0.0018786634, -0.040221423, -0.0150559535, 0.010020031, 0.00048216348, 0.029069752, -0.0040110904, 0.020222599, -0.051488176, -0.0091403285, -0.07504906, 0.0054212525, 0.030535808, 0.07291434, -0.036684383, 0.042684108, 0.070368424, -0.02479391, 0.022116903, 0.0064431573, 0.011383494, -0.060682695, 0.04320543, -0.0025577287, -0.034113556, 0.012180025, 0.07498224, -0.072628304, -0.0007880505, -0.033916652, -0.03837357, 0.010194529, 0.008697649, -0.080824465, 0.013404039, 0.012042715, -0.024711145, 0.023583842, -0.009696569, -0.028840693, 0.039073195, 0.050220847, -0.0540874, 0.0017353228, 0.025454475, 0.013403541, 0.009225855, 0.03124741, 0.03180717, 0.06617039, 0.022440942, 0.0129501615, 0.013318849, 0.0316186, 0.014117941, 0.051886674, 0.06728622, -0.0311061, 0.011687504, -0.05856572, 0.049179815, 0.02018932, 0.0011912663, 0.03529535, -0.028779494, -0.043488108, -0.041114606, -0.009870614, 0.083212405, 0.012455849, 0.0033709076, -0.008887624, 0.00559674, -0.021246728, -0.0036410023, 0.025330905, 0.07398135, 0.0042383303, 0.09621533, -0.0020963172, -0.005789339, 0.009967752, -0.010926836, -0.019815097, 0.034546733, 0.018096074, -0.04541628, 0.018935816, -0.06230059, -0.05343218, -0.027324857, 0.010221937, -0.012871074, 0.0009011971, 0.021460418, 0.03931079, 0.009379737, -0.033852953, -0.014553581, 0.030497883, -0.013096896, 0.019778945, 0.035933312, -0.0075939517, -0.0019100378, 0.05376013, 0.025572026, 0.11813576, -0.03654153, -0.027700735, -0.044387642, -0.046250027, -0.060068548, -0.029009592, -0.03871451, -0.029510979, 0.033852216, -0.063100114, 0.013153672, -0.00048750802, 0.01774543, -0.003389202, 0.019693678, -0.041761555, 0.007039642, -0.07384562, 0.0027030972, -0.065054424, 0.030864185, -0.011724693, 0.012117774, 0.009103116, -0.05741389, -0.029866206, 0.012327989, 0.01695999, -0.044638854, 0.0084996205, -0.025271641, -0.08648889, 0.03887071, -0.013401364, 0.04574752, -0.0021222022, -0.040274996, -0.013396939, 0.0057335314, 0.042590994, -0.038456097, -0.033602767, 0.04910837, 0.09104618, 0.011118408, 0.028988276, 0.05594976, -0.008137889, 0.045604333, 0.05074576, 0.021112265, -0.025676876, 0.03222545, 0.04669915, -0.024651026, 0.019208072, 0.023747018, 0.027833516, -0.010679549, -0.036445606, -0.04827777, -0.0064480463, 0.0043906095, 0.0075315936, -0.037676938, -0.0153365685, -0.016144158, -0.0068512275, -0.07297633, 0.026086016, -0.043750335, -0.018857475, 0.03324765, 0.02281992, -0.0056326604, -0.04927277, 0.031201864, -0.022825308, -0.029661749, -0.004440081, -0.0039899815, -0.003225533, 0.002775268, 0.052953154, 0.028592318, -0.018409874, 0.0386774, 0.023342397, -0.03439056, 0.0027704176, 0.034437906, 0.049339674, 0.031166747, 0.044579357, 0.0093450295, 0.07013895, 0.0063296715, -0.056190647, 0.04008225, -0.021093715, 0.025392156, -0.05029966, -0.0070419265, 0.026565004, 0.010612631, 0.020896824, -0.011190676, 0.034029283, 0.0174015, 0.04075114, 0.015071692, -0.019242527, -0.002537461, -0.026945317, 0.02105993, -0.008640182, -0.0071634836, -0.007377294, -0.0024234205, 0.027380645, -0.023989132, -0.025718454, 0.015203609, 0.05210039, -0.0031857865, -0.015204217, 0.011541559, -0.052002713, 0.028846884, -0.01977525, -0.03358168, -0.014545007, -0.035248652, -0.06773341, -0.06185737, -0.0031282876, -0.035997324, 0.02558086, -0.049475446, 0.0051493235, 0.041726258, -0.011934382, -0.014405126, 0.08128999, -0.014649846, 0.03723324, 0.028683295, 0.059325244, -0.06324957, 0.055487465, 0.034089655, -0.021307532, -0.0689395, 0.026598094, 0.06193667, -0.03274628, -0.022125041, 0.0118988175, 0.085848555, -0.00026364456, 0.016618138, -0.039802074, 0.06326425, 0.015890954, 0.03554292, -0.0006798321, 0.012286802, 0.020697882, -0.0049823727, -0.011510865, 0.012308596, -0.018897766, -0.0017398194, 0.027792914, 0.0038323996, 0.026891973, -6.5071445e-06, -0.04185418, 0.012616415, -0.034855496, 0.06958129, 0.0005556737, -0.06798854, 0.044892855, -0.055338424, 0.031695146, 0.004510961, -0.038206212, -0.010807337, -0.025705427, -0.012976609, 0.011016885, 0.01730313, -0.0024991555, 0.05159166, 0.0035946863, -0.018703632, -0.007941531, 0.015669327, 0.0062715644, -0.0001808721, -0.07293047, -0.021084912, 0.055055257, 0.021103293, -0.03677937, -0.03643764, 0.01654811, 0.01810963, 0.0031977294, -0.06044507, 0.007962492, -0.020278485, -0.016091038, 0.028744115, 0.057990093, -0.003120799, -0.0017072329, -0.051699787, 0.0014687523, 0.056471907, 0.035591826, 0.023375781, 0.010880279, 0.014009025, 0.01759395, 0.064126745, 0.011413425, -0.008793421, 0.02351526, -0.012891507, 0.017281024, -0.026367469, 0.04777289, 0.02112789, 0.018029798, 0.032468434, -0.105874225, -0.060000625, 0.016899956, 0.011596617, 0.029490447, 0.07908172, 0.0886304, 0.044354748, -0.00051497814, -0.041240342, -0.045715287, 0.022772841, 0.028595721, 0.018354263, -0.024289016, 0.08407491, -0.0103249755, 0.014566597, -0.010161181, -0.0049578073, 0.033440158, -0.06063725, -0.058696784, 0.048526753, -0.037945583, 0.039169475, 0.02199417, 0.04912333, 0.009856372, -0.0049068807, 0.041158665, -0.074796, 0.021599833, 0.008919974, 0.062852606, -0.060257588, 0.018417804, 0.04607737, 0.0053998586, -0.04942277, -0.009260456, -0.035880186, 0.02080958, 0.027572243, -0.012268541, -0.022920096, 0.04383071, -0.031028388, 0.030572778, 0.0212676, 0.033617266, -0.010862749, -0.0054791095, -0.018439854, 0.020153873, -0.020412669, -0.014962931, 0.027805945, 0.011905354, 0.025331289, -0.006456048, 0.038214337, 0.0064716637, -0.027967712, 0.092814595, -0.004927659, -0.0075155124, 0.015708135, 0.04029617, -0.016517011, -0.011280201, -0.020385541, -0.057135075, -0.02622783, 0.049642034, 0.047559537, -0.024692804, -0.003825338, 0.009281033, 0.030823233, -0.018566925, -0.022015689, 0.040524296, -0.01764693, -0.0148922475, 0.016840415, -0.0008506173, -0.0023339798, -0.01663516, -0.010344847, 0.010458645, -0.026000572, 0.04489684, 0.0467043, -0.014704775, 0.06316865, -0.008592235, 0.07117154, -0.020683356, -0.02744268, 0.03889173, 0.019994898, -0.044967704, -0.031201124, 0.0155394655, -0.028503433, -0.0010736412, 0.01381398, -0.012558582, 0.029208163, -0.015532338, 0.0006105222, -0.08184495, 0.044523273, 0.009786323, -0.021889128, -0.036215346, -0.009639489, 0.0068042967, -0.024770867, 0.018991629, -0.07442306, -0.056023248, 0.027680557, -0.016749715, -0.004369065, 0.049253065, 0.005906506, -0.028973456, -0.048778124, 0.011489134, -0.051924556, -0.048178248, 0.009836627, -0.011639173, -0.002265037, 0.045941494, -0.046869595, -0.0062024402, -0.029472768, -0.02997402, 0.007219927, 0.010131108, -0.0116465, -0.046048, -0.07050932, 0.014283774, 0.06537913, -0.038542297, -0.031748634, 0.012756783, -0.00250772, -0.024075666, 0.0045010336, -0.0826717, 0.068873696, -0.041914996, 0.04033817, 0.034993734, -0.07049081, 0.03978137, -0.024146313, 0.008801121, -0.027271476, 0.022630244, -0.0072228606, -0.0016322398, -0.030680727, -0.012675247, -0.03141261, -0.01990483, -0.028202483, -0.012745348, 0.012620817, 0.0078523, -0.013290409, -0.09161311, 0.044832755, 0.0068176775, 0.012456987, -0.010621104, -0.02320791, -0.000928211, -0.022753151, -0.0027208878, 0.0020828962, 0.022504553, 0.015581088, 0.05371045, -0.019071242, 0.017678358, 0.028409729, -0.024003332, -0.019109331, 0.013482166, 0.082805574, -0.05354226, -0.029017217, 0.022326896, 0.0018471078, 0.00353879, 0.020818427, -0.03467374, -0.036990676, 8.519938e-05, 0.06524284, -0.03672689, -0.01995432, 0.022935968, -0.015157528, 0.06513387, -0.05819837, 0.045418978, -0.0799403, -0.004847382, -0.019681914, 0.029834058, -0.081465855, -0.0077128424, 0.06129761, 0.039811146, 0.04698176, 0.014639014, -0.053323098, 0.009889779, -0.033382278, 0.006274489, 0.060476426, 0.0025008644, 0.029720211, -0.0046095233, 0.0342874, 0.039646894, 0.04097483, -0.006090368, 0.014065646, -0.05359354, -0.030010406, 0.06792804, 0.0072644893, -0.031979404, -0.071715675, 0.07346488, -0.060072303, 0.0664272, 0.017001549, 0.008247293, -0.030558893, 0.012450491, -0.01390336, -0.006093915, -0.039283067, 0.008229924, 0.001316264, -0.032877304, 0.02625684, -0.014509152, -0.047174845, -0.03393188, 0.020839969, -0.033672627, -0.029119588, 0.00055536884, -0.03134577, -0.019169837, -0.06023348, 0.052239534, 0.04347456, -0.01686355, 0.04232102, 0.0039018535, -0.009758234, -0.054090045, 0.020723518, 0.014865615, 0.0012744747, 0.0417038, -0.03606826, 0.039084025, -0.09488462, -0.034969922, 0.070885696, -0.030783556 ] }, { "values": [ -0.017740678, -0.025176834, -0.046571482, -0.07046747, 0.02775328, 0.03488456, -0.020585578, -0.0191541, -0.032587588, 0.011931524, -0.011935016, 0.043279294, 0.03009168, -0.031764645, 0.0017247179, -0.034072835, 0.006707007, -0.005417752, -0.09236353, 0.0018086622, 0.032632574, -0.020839358, 0.008150573, -0.04140206, -0.03771682, -0.011381105, 0.057158496, -0.0139816925, 0.039761778, -0.019920431, 0.041470733, 0.008369974, -0.027984211, -0.023875337, 0.064511605, 0.033414077, -0.07563139, -0.007565267, -0.021857021, -0.0660869, -0.046589017, -0.027759343, -0.011599536, -0.020655777, -0.070561595, 0.037199512, 0.04308035, 0.036749065, -0.025938392, 0.025155101, -0.01712473, -0.01176484, -0.043115985, -0.008461744, 0.007975212, -0.043558255, -0.06720327, -0.011946242, 0.06732381, 0.023027431, -0.016907772, -0.018519966, -0.0008065183, -0.041940425, -0.008845984, -0.016029589, -0.032468006, 0.0024318101, -0.04141862, 0.018246539, -0.035749897, 0.09762872, -0.025217686, 0.033897668, -0.035380464, -0.03634342, 0.009518919, -0.0051318663, -0.012393343, 0.058233555, -0.052122828, 0.028296841, 0.044037756, 0.071659505, 0.038500324, 0.027021969, -0.015424056, -0.025159663, -0.055566434, 0.015065477, 0.005411787, -0.037715215, 0.010815545, -0.013770235, 0.027022736, -0.045454644, -0.08575799, -0.03975199, 0.012932044, 0.071751095, -0.002423391, -0.008187226, -0.029398968, -0.03121817, 0.054331664, 0.06735179, -0.040942613, -0.041682407, -0.0013720782, -0.0070416727, -0.04320711, -0.028888987, -0.006537646, -0.015997974, 0.025271984, -0.03388489, -0.024665678, 0.023222117, 0.00409652, -0.00827672, 0.029405756, 0.0019281256, -0.048306674, 0.024013996, 0.029390493, -0.026437609, 0.016967487, -0.0065140985, -0.048771396, -0.050959304, 0.09818197, -0.084702455, 0.02888269, 0.028224368, -0.03847584, -0.031219745, 0.073407635, 0.052616265, -0.05734316, 0.02125959, 0.021263974, -0.026064645, -0.037621412, 0.036415633, 0.026049025, -0.015559299, 0.04635032, 0.0066285706, -0.010628978, -0.0001584766, -0.043027606, -0.03281663, 0.02968225, 0.016858526, -0.024309453, 0.087708764, 0.078397065, 0.0060453066, 0.06003009, -0.039720632, -0.052174702, -6.0681614e-05, 0.021395752, 0.0054276166, -0.041875347, 0.028395649, 0.050985426, -0.07732675, 0.0079371575, -0.053260613, -0.027796604, -0.024332644, -0.047169413, -0.08332334, 0.0032274637, 0.003273008, -0.01392382, 0.044141088, -0.07122861, -0.015421827, -0.0021461206, 0.0674901, -0.026395144, -0.02959488, 0.023064464, 0.023221219, -0.034173675, 0.058422208, 0.0109008895, 0.042663336, -0.06480665, 0.034005035, 0.04790924, 0.017007258, -0.016836515, 0.061853845, 0.054306287, -0.039948132, -0.03228528, 0.009995569, 0.03371489, -0.0049900217, 0.010902137, 0.041066878, -0.021416748, -0.022296399, -0.018121837, 0.004306553, 0.076235965, -0.0121666435, 0.0029267946, -0.010461225, 0.0054677557, -0.042804375, -0.01824423, 0.054687563, 0.08891864, 0.02801091, 0.04593576, 0.0045018406, -0.04775105, -0.012648087, 0.022505503, 0.0041951574, 0.00952595, 0.023058333, -0.026744593, -0.017313711, -0.027130915, -0.038340803, -0.04000959, 0.011262558, 0.00094079174, 0.011293062, 0.023370838, 0.028803322, 0.033191666, -0.0060508405, -0.0312506, 0.010637186, 0.018487046, 0.040363416, 0.030807696, -0.010664474, 0.004847765, 0.037592642, 0.054937, 0.09664394, -0.047732674, -0.046970125, -0.024707757, -0.044295963, -0.04194032, -0.025591787, -0.061167322, -0.0122137815, 0.042711526, -0.052823383, 0.012618466, -0.015528589, 0.020814523, -0.030518468, -0.0147055825, -0.049837425, -0.019619586, -0.072546035, -0.005649715, -0.010260292, 0.01895069, -0.033564176, -0.021936541, 0.014547352, -0.06771962, -0.021031778, 0.038871918, 0.029530445, -0.03147171, -0.010735466, -0.040599667, -0.04217818, 0.034386486, -0.049142826, -0.006672828, -0.026008924, -0.015869694, -0.03145649, -0.034585122, 0.023536542, -0.07422008, -0.027369888, 0.025941411, 0.054415118, 0.031120328, -0.019446699, 0.046927437, -0.006992109, 0.03246172, -0.019195553, 0.008512591, -0.03416971, 0.018077176, 0.067075334, -0.04576919, 0.035579078, -0.004087688, 0.017419644, -0.032370124, -0.04228802, 0.019615069, 0.00027630042, 0.011500667, 0.030297522, -0.038508717, 0.008901762, 0.039634503, -0.0033266167, -0.096322745, 0.013677609, -0.036638834, 0.0006985009, 0.04316027, 0.00071514386, -0.028045611, -0.037348915, 0.061248437, -0.0060425284, -0.031025155, -0.007837868, -0.008794719, -0.047861934, 0.030996067, 0.03925733, 0.01906769, 0.021585967, 0.025744116, -0.04006528, -0.006028487, -0.015802825, 0.0609371, -5.7078083e-05, 0.03508193, 0.047307488, 0.07225396, 0.0931851, 0.0010926182, -0.051577616, 0.06081612, -0.04176843, 0.031692356, -0.05868457, -0.032099746, 0.048212703, 0.0050504827, -0.013130513, 0.03258536, 0.02482815, 0.032316007, 0.013204535, 0.023926344, -0.022659568, -0.028342359, -0.026615182, -0.025186434, -0.042668924, -0.026594445, 0.002785946, -0.023147706, 0.027482523, -0.018922746, -0.029230185, 0.017003452, 0.013172456, 0.028219959, -0.00477051, 0.006823298, -0.031374935, -0.00601259, 0.001996443, 0.03581809, -0.02786233, -0.05461569, -0.07209697, -0.04064355, -0.031122332, -0.034329213, 0.019987822, -0.05917613, -0.018390946, 0.029610144, -0.059603192, -0.014234611, 0.044727426, 0.026210368, 0.014159775, -0.009149102, 0.07380055, -0.03547929, 0.008536405, 0.0022058028, -0.022320002, -0.055795282, 0.022591218, 0.08370184, 0.002674913, 0.0018937216, -0.0100819105, 0.07106563, -0.00056888885, 0.011668805, -0.04233556, 0.055501517, 0.037084203, 0.014722497, 0.010319665, -0.03058087, 0.01260913, 0.03219439, -0.008919529, 0.03345638, 0.022133922, -0.04161919, 0.043454014, 0.0064971014, 0.05605661, 0.0003861947, -0.06205208, -0.028291635, -0.0061832382, 0.02959369, -0.0127684055, -0.03416505, 0.03336989, -0.016088441, 0.024657186, -0.031039523, -0.028425146, 0.0070463317, 0.0020233016, -0.007755001, 0.016743626, -0.0030372955, -0.02522606, 0.046880726, 0.026912512, -0.034894135, 0.011264646, 0.014145752, 0.020281378, -0.025435358, -0.04709707, -0.054506775, 0.023979224, -0.01843785, -0.04359127, -0.034076694, 0.013829277, 0.024630621, 0.028204568, -0.02356583, 0.051840007, -0.092565626, 0.021762384, 0.04377071, 0.08599139, 0.012164698, -0.020002505, -0.0852336, 0.008263807, 0.017717736, 0.053578567, 0.054697268, -0.010778288, 0.026685866, 0.0013671574, 0.039637763, 0.030078873, 0.008151696, 0.020312926, -0.006363697, 0.036825612, -0.037017465, 0.008218816, 0.012567039, 0.040622868, 0.04754221, -0.10082952, -0.073200546, 0.028723106, 0.03337274, 0.025524143, 0.02193267, 0.061186194, 0.021060476, -0.008003747, -0.027688265, -0.06514216, 0.03201748, -0.004095126, -0.0069358055, -0.002984379, 0.041144814, -0.018206634, 0.0006783505, -0.044752117, 0.0028661771, -0.032921728, -0.048296936, -0.04915155, 0.019639818, -0.008744119, -0.0073113143, 0.021424819, 0.049926322, 0.01811372, -0.029014958, 0.044670273, -0.09254438, 0.0018387621, 0.008394589, 0.034473903, -0.046480767, 0.0020864026, 0.07283988, -0.04118813, -0.04046341, -0.0075300243, -0.06756656, 0.06669121, 0.028573949, -0.016021892, -0.0077953846, 0.05930138, 0.019689955, 0.019987255, 0.02506676, 0.034793843, -0.022581378, 0.011782285, -0.010995508, 0.034421537, 0.01451007, -0.012979419, 0.016110307, 0.031281378, 0.004349298, -0.011540356, 0.039736606, -0.0036355157, -0.013773078, 0.07521805, -0.036448125, -0.015851771, 0.0043618563, 0.0362303, 0.011801496, -0.0035963613, -0.04079577, -0.023746038, -0.04276381, 0.021774247, 0.06844595, -0.0116623975, 0.012987221, -0.039606806, 0.012086259, -0.0033222795, 0.01083471, 0.06930579, 0.022114571, -0.03872, 0.027611071, 0.008822312, -0.032986727, -0.04901068, 0.036328904, 0.004319107, -0.0075708167, 0.016200455, 0.04784878, -0.01998389, 0.046812322, -0.0024125043, 0.06457944, -0.032278623, -0.019627258, 0.04539666, 0.020757739, 0.016145607, 0.028165206, 0.031222539, 0.008084363, 0.012022433, -0.00875943, -0.021384899, 0.075776845, -0.047574334, 0.009081824, -0.04584233, 0.054087996, -0.01482549, -0.03616629, 0.01792974, -0.0571264, 0.0022041656, 0.012728028, 0.0016626876, -0.050940942, -0.013075191, 0.015164351, -0.030165708, -0.017825427, 0.06685695, -0.027008614, 0.02133471, -0.07218534, 0.036931507, -0.03137091, -0.055180244, 0.0027254769, -0.014214909, 0.0078428555, 0.027851138, -0.05213195, -0.022661518, -0.039451446, -0.0245323, -0.044388983, 0.047092646, -0.016807685, -0.0008676607, -0.016820591, 0.021023033, 0.035269726, -0.03554449, -0.014911135, 0.020914096, -0.011315254, -0.010659387, 0.000925564, -0.05661228, 0.019219263, 0.001762876, 0.011744663, 0.036411587, -0.07840636, 0.021536209, -0.028367441, 0.025259072, -0.020521231, 0.0140766315, 0.019354306, -0.018336197, -0.027097085, -0.042911924, -0.0397265, 0.02054696, 0.0122409975, -0.012361554, -0.0028817013, -0.009897464, 0.012896058, -0.053050514, 0.058107402, -0.016831625, -0.036376167, 0.0045589795, -0.017485078, 0.009185083, -0.0027124346, -0.027926268, 0.016440788, 0.012706472, -0.007829259, 0.028684372, -0.03756219, -0.022352785, 0.008963638, -0.024387615, -0.043902714, 0.0030712713, 0.044238217, -0.062577866, -0.012490946, -0.020673517, -0.013356518, 0.02792631, 0.024472635, -0.022413263, 0.032881226, 0.013879284, 0.060490627, -0.021197265, 0.017550163, 0.041037478, -0.042818118, 0.064902455, -0.034509163, 0.039412186, -0.031800475, -0.012807232, -0.051255517, -0.01269924, -0.08297581, -0.02845703, 0.023912137, 0.011855929, 0.046800107, 0.019779772, -0.046071406, 0.049484544, 0.0011187682, 0.019765347, 0.07004887, -0.008865554, 0.034930665, 0.0188046, 0.0163902, 0.045998678, 0.008132625, 0.011293568, 0.0015526284, -0.05810568, -0.034803435, 0.07120887, 0.012658189, -0.032765713, -0.028716186, 0.035175458, -0.060845416, 0.056353904, 0.0064397203, -0.02039467, 0.0034338178, 0.053589772, -0.006965569, -0.0069566253, -0.035188343, 0.030271877, -0.014654642, -0.01204714, -0.017055312, -0.033735167, 0.0034561814, 0.01415701, 0.04916006, -0.02990395, -0.025881717, -0.0019510124, -0.013930029, -0.026103573, -0.05517965, 0.036969747, 0.048827853, -0.021212816, -0.01200974, -0.023695199, 0.0009437721, -0.039227255, -0.014814169, 0.011885691, 0.016332895, 0.014276294, -0.035507336, 0.04992623, -0.06724978, -0.045547284, 0.08239554, -0.036993794 ] }, { "values": [ -0.03558713, -0.023364784, -0.026556075, -0.037364367, 0.03621975, 0.042232078, 0.06239081, 0.018762277, -0.0401404, 0.0015810137, 0.0056223366, 0.06942493, 0.019455548, 0.01238227, -0.012321736, -0.04649561, 0.035014965, 0.021580461, -0.036944043, 0.008069474, 0.041082397, 0.0066573983, -0.0073922025, -0.059250835, -0.060865294, -0.009519515, 0.0074149678, -0.02675426, 0.014723673, -0.07208164, 0.013500095, 0.022436062, -0.023431713, -0.035817005, 0.03431992, 0.025756191, -0.04660282, -0.028067619, 0.030785883, -0.045795135, -0.072959416, -0.080938935, 0.012216331, 0.015053823, -0.06927487, 0.05558376, 0.027593428, 0.036583215, -0.04220751, 0.02903961, 0.06224666, 0.0006566183, -0.025542092, 0.012816711, 0.004570479, -0.007999847, -0.07449698, -0.05563909, 0.06351835, 0.023830732, -0.03367145, 0.0073245093, 0.0019431695, -0.019386787, 0.008657917, -0.03267465, -0.020914547, -0.007970376, -0.06186983, 0.027478853, -0.020853177, 0.011882683, -0.07272357, -0.00886444, -0.020414535, -0.04068782, 0.016667748, -0.004492717, -0.015185514, 0.0002970975, -0.022099044, 0.054120198, 0.048568495, 0.06117814, 0.023937993, 0.007591592, 0.028020628, -0.019460957, 0.0053507444, 0.037832618, 0.041242898, -0.010841106, -0.037806164, 0.0030121768, 0.015613451, -0.025330774, -0.06543542, -0.0332308, 0.028785568, 0.05161232, -0.025595406, -0.017937353, -0.010876373, -0.015407147, 0.04979797, 0.031542487, -0.029080112, -0.06173094, -0.043433398, 0.0012076485, -0.019878227, -0.018721232, 0.004192673, -0.008525234, -0.007910453, -0.0637202, -0.029512499, -0.004526085, -0.0072729983, -0.006422221, 0.04985615, -0.026434327, -0.049857307, 0.005207901, 0.05629845, 0.02073427, 0.034728378, -0.042818766, -0.05517196, -0.074337445, 0.079486564, -0.10982808, 0.03634716, 0.03438865, -0.03736451, -0.081920646, 0.027619248, 0.012752331, -0.04592267, -0.031605355, 0.03015423, -0.050832264, -0.029164014, 0.010215394, -0.015932258, 0.007836329, -0.005185619, -0.01723027, -0.07436913, 0.031151328, -0.07150471, 0.017683052, 0.02877198, 0.033523325, -0.037828203, 0.07366734, 0.042501844, -0.022542782, 0.06687491, -0.041811094, 0.0032012602, 0.011599486, 0.033243086, 0.040312704, 0.0045897393, -0.0034150032, 0.052808877, -0.0377545, -0.022663383, -0.03659439, -0.018004641, 0.020920817, -0.03757568, -0.08311003, -0.0034923363, -0.0039401115, -0.007439008, 0.047605865, -0.046129636, -0.025198512, -0.0033028086, 0.06739895, -0.04066346, 0.0028001894, -0.0060932715, 0.0105188275, -0.03748677, 0.065778084, 0.01260959, 0.033685166, -0.02101188, 0.03135091, 0.055573825, 0.048627265, -0.010191309, 0.048628703, 0.039459445, -0.027380828, -0.0037582717, -0.042364337, 0.062274233, -0.029437233, -0.0068346807, 0.005510763, -0.03232453, -0.035087023, -0.005484172, -0.03745198, 0.059380103, 0.018336426, 0.020888852, -0.039158083, 0.0013795971, -0.0014340121, -0.019266807, 0.009561932, 0.10317873, 0.060428757, 0.064126, 0.01565181, -0.023008771, -0.018683212, 0.007389401, -0.022024194, 0.010767787, 0.0077908277, -0.009370878, -0.05192255, -0.04085541, -0.02433617, -0.067638606, -0.046620436, -0.023478054, -0.021147983, -0.012231981, 0.011844379, -0.025564065, -0.022657475, 6.9655357e-06, 0.009875405, 0.014749599, 0.04333503, 0.066437066, 0.006487917, -0.01566921, 0.044594582, 0.020705476, 0.14012797, -0.00050340715, -0.028379055, -0.0016146901, -0.035911307, -0.025461758, -0.015931847, -0.04133548, -0.021836286, 0.021428216, -0.040179137, -0.03334557, -0.012722856, 0.0171602, -0.0040462296, -0.0066719353, -0.045710277, -0.0058563207, -0.11277217, -0.003956933, -0.010672231, 0.05555418, 0.0121159, -0.020591186, 0.016908605, -0.06839114, -0.0057609878, -0.024565011, 0.055036116, -0.03268076, -0.01642879, -0.013562489, -0.03806364, 0.0074879834, -0.019235287, -0.006944193, -0.032748993, -0.015911197, -0.01803574, -0.01475914, 0.028879834, -0.05310533, -0.07594874, 0.054063413, 0.05358292, 0.020785732, 0.010581806, 0.05244107, -0.020778522, 0.028048249, 0.0057722535, 0.011320134, -0.024887016, 0.005072579, 0.054799, -0.035733964, 0.043071553, -0.021986155, -0.008831045, -0.06377968, -0.0118083535, 0.005419975, 0.020990776, 0.0068852515, 0.017295416, -0.03360407, 0.021839859, -0.0081826, 0.00038503553, -0.08429275, 0.029501056, -0.016928384, 0.0024441963, 0.039264068, 0.022975523, -0.015278849, -0.031204075, 0.068709485, 0.04809754, -0.02471508, -0.024761628, 0.0007937374, -0.040064152, 0.025619645, 0.00971978, 0.014101701, -0.032465518, 0.027958969, -0.008863622, 0.029830702, 0.030753495, 0.07236101, -0.005566619, 0.060313854, 0.03471669, -0.0012769931, 0.08316507, -0.0037243864, -0.05199305, 0.04345605, -0.022127487, 0.055023424, -0.04386238, -0.04459996, 0.047753517, 0.009422999, -0.0038601693, 0.013840678, 0.04912793, 0.00404736, 0.0560819, -0.027209913, -0.039625514, -0.063887686, -0.013158125, -0.0022759326, -0.033306766, -0.023497028, -0.010120942, 0.00089064694, 0.023510776, -0.013400609, -0.048223607, 0.02773322, 0.033187203, 0.02680423, -0.0032250758, 0.021735303, -0.05318266, -0.008882913, -0.032579653, 0.0077024973, -0.024164265, -0.055467166, -0.057097875, 0.005038918, -0.020335188, -0.037277494, 0.020313837, -0.051348675, -0.03754011, 0.03405024, 0.005704224, -0.02710288, 0.034808397, 0.008337489, 0.037016127, -0.052026425, 0.08316286, -0.04479819, 0.014087, 0.034323357, -0.024503833, -0.07396166, 0.0076718344, 0.052129414, -0.025715305, -0.006354854, 0.0061478317, 0.033858955, 0.025841648, 0.035690434, -0.0504129, 0.020055337, -0.032432325, -0.015066638, -0.023742933, 0.004459686, -0.0018932546, 0.03785964, -0.05386718, 0.006819866, -0.011785858, -0.028794859, 0.043345, -0.0042031095, 0.06124297, -0.022303227, -0.09836891, -0.0044649937, -0.0016067793, 0.0316446, -0.009016724, -0.037751168, 0.06533034, -0.05862594, 0.014020646, 0.0010878817, -0.036299244, -0.026680572, -0.033361323, -0.02879979, 0.0066109896, 0.007447939, -0.009684575, 0.06867356, 0.054781303, -0.009988281, 0.045263924, 0.01686612, -0.011803949, -0.029272728, -0.06236892, -0.04597561, 0.02677784, 0.0013292478, -0.08159225, -0.010478016, -0.000635865, 0.024402322, -0.001044773, -0.012232299, 0.027790586, -0.06682956, 0.022904247, 0.05745499, 0.0449833, -0.020716548, -0.0040427325, -0.02594549, -0.0087305745, -0.002082509, 0.038082413, -0.027442593, -0.014577802, 1.3699442e-05, 0.00054573343, 0.036344454, -0.004080995, -0.011459035, -0.0013568272, 0.0096443435, 0.030038696, -0.015009343, 0.015994975, -0.018992148, 0.041880094, 0.022280186, -0.09055507, -0.01578824, 0.013830173, -0.00040288648, -0.008807811, 0.026657369, 0.057313584, 0.012279281, 0.0056366203, -0.042878296, -0.049200483, 0.03386022, -0.016709676, -0.00596207, 0.0136788655, 0.048095092, -0.009204059, -0.025962837, -0.026445072, 0.012640987, -0.009590294, -0.04501228, -0.027088575, 0.058813054, -0.024862286, 0.03816346, 0.017952612, 0.052295193, -0.004406435, -0.028749684, 0.043611262, -0.033098456, -0.00049735146, 0.006488636, 0.052316453, -0.02552052, -0.007984959, 0.050330885, -0.058296088, -0.059515085, -0.013948864, -0.039955013, 0.041441146, 0.03578977, -0.05071637, 0.021524925, 0.062001925, -0.007822659, 0.0063336464, 0.058177873, 0.023366008, -0.01874759, -0.0011456156, -0.044843137, 0.051119864, -0.045102917, -0.04121451, 0.016881876, 0.008724871, 0.033939093, -0.0041177766, 0.05549037, -0.00017012401, -0.017482296, 0.08824603, -0.016840307, -0.010238292, 0.0056607914, 0.004401326, -0.024415331, -0.021053636, 0.0005613655, -0.03151974, -0.010254228, 0.01514746, 0.070697844, -0.0031212792, -0.011497923, -0.02444159, -0.014096877, 0.004458276, -0.016724875, 0.06465953, 0.0002661379, -0.047465622, 0.02544942, -0.024241962, -0.029143026, -0.046021853, 0.028863544, 0.025524296, -0.030764492, 0.012665366, 0.06151313, 0.016700555, 0.07160765, -0.00085064763, 0.07309536, -0.067189336, -0.017319012, 0.037494633, 0.030153083, -0.055917326, 0.025043016, 0.021464217, -0.017562225, 0.023189614, -0.022099854, 0.0008364245, 0.05015452, -0.046231646, -0.0056805885, -0.047650307, 0.052711833, 0.037833206, -0.03660274, -0.0037698231, -0.004265182, 0.021314058, 0.022237327, -0.023620479, -0.0781456, 0.0020696197, 0.016636426, -0.0139303375, -0.027188784, 0.034670483, 0.02027289, 0.013807674, -0.06503287, 0.003146764, -0.008986879, -0.048231438, 0.016704574, -0.040288303, -0.009874459, 0.025018165, -0.018917277, -0.03562121, -0.066462085, -0.030211048, 0.031257372, 0.038712576, -0.06826648, -0.047296163, -0.024826506, 0.03866366, 0.061892755, -0.014861442, -0.021855753, -0.0009521802, -0.033364512, -0.03405585, 0.016672088, -0.035404693, 0.028462034, -0.006957181, 0.02626254, 0.069605224, -0.056304794, 0.06616266, -0.031666458, 0.03953599, -0.01344228, -0.0150779355, -0.005096819, 0.021618718, -0.019706495, -0.017648943, -0.04615121, -0.012386094, -0.02748514, -0.0029179538, 0.040228236, -0.033305727, -0.0075954264, -0.01808814, 0.032568548, 0.02877661, -0.0017644386, 0.019314596, -0.011747105, 0.007680022, -0.00844376, -0.02020294, 0.008031067, 0.0052214907, 0.013639308, 0.016661642, -0.044939112, 0.011665164, -0.002369679, -0.038477898, -0.022581462, 0.007787792, 0.04702753, -0.079109795, -0.022749478, 0.027561614, -0.0017103727, 0.021162719, -0.0010059936, -0.018235194, 0.0022836127, 0.03530764, 0.043712232, -0.072216086, -0.005652829, 0.012519158, -3.480745e-05, 0.07658479, -0.026491798, 0.035257675, -0.05154859, 0.017445406, -0.009334544, -0.010500789, -0.057360984, -0.032482672, 0.049551718, 0.035663694, 0.03385244, 0.009944604, -0.07016827, -0.0049773604, 0.009988568, 0.011318683, 0.038244613, -0.0104932105, 0.03777111, 0.024257174, 0.008135753, 0.024237396, 0.028637994, -0.006729435, 0.0035916574, -0.057874035, -0.011779717, 0.08115764, 0.02544514, -0.036375966, -0.03805296, 0.03266551, -0.05085005, 0.09204486, 0.03381921, 0.0077417046, 0.01480846, 0.014218896, 0.0145011125, -0.016363941, -0.032196864, 0.014554425, -0.032633595, -0.03174373, -0.012235568, 0.006877295, -0.049564235, -0.0053342376, 0.020573175, -0.006876856, -0.026818559, -0.00448736, -0.009141194, -0.009246398, -0.09228539, -0.006311693, -0.0052184216, 0.003842554, 0.024942594, -0.056390382, -0.00012727668, 0.0003326036, -0.007565931, 0.008219615, 0.0006862681, 0.01836365, -0.025783898, 0.040321037, -0.08994315, -0.011961645, 0.074103355, -0.049407184 ] }, { "values": [ -0.0067268256, -0.021973232, -0.047273368, -0.032812677, 0.05613238, 0.027861707, 0.04652906, 0.025934694, 0.014174233, 0.03953875, -0.0012210677, 0.04198069, 0.017677462, 0.039830245, -0.08399645, -0.024946028, 0.01573379, 0.006724086, -0.04742242, -0.0073039425, 0.021788757, 0.0066670235, -0.01263, -0.044668507, -0.04077574, 0.0437136, 0.08677577, -0.03856458, -0.006461918, -0.022103796, 0.009135479, -0.011301518, -0.04166077, -0.0532078, 0.061874595, 0.026860312, -0.028425116, 0.03337144, 0.041546278, -0.09066107, -0.06612689, -0.07431823, -0.03613066, 0.036609974, -0.051686514, 0.008275902, 0.03373805, 0.009407644, -0.0647124, 0.023454376, 0.03238351, 0.013902954, -0.037978727, 0.022729583, -0.032827444, -0.044465102, -0.059758686, -0.048202347, 0.054425467, -0.01617568, -0.05121945, -0.007600195, -0.028223649, -0.005825466, -0.005672436, -0.039293554, -0.008764407, 0.013777498, -0.04523557, -0.005296201, -0.03509035, 0.033343174, -0.029613562, -0.025987025, 0.0013018058, -0.02096417, -0.0070736813, -0.007360326, -4.2425916e-05, 0.017348344, -0.0029748022, 0.054981347, 0.07214441, 0.033301134, 0.03249586, 0.029978547, 0.047569595, -0.030606383, -0.0046903356, -0.0065278253, 0.014922224, -0.03577375, -0.01567387, -0.010849122, -0.0006671085, -0.033001002, -0.03519502, -0.033439714, 0.004241913, 0.07778193, -0.020060102, -0.014714266, -0.0426825, -0.101063326, 0.023473179, 0.04753833, -0.020234013, -0.07244823, -0.048507478, 0.009110513, -0.041966274, -0.015464914, -0.008566716, -0.005503878, 0.018533653, -0.0017589557, -0.017806564, -0.0057586487, -0.05696325, -0.042607266, 0.0038984132, 0.0013397235, -0.034576416, 0.044530023, 0.07847059, -0.019400125, -0.014180638, -0.043808263, -0.008747565, -0.07057613, 0.08210175, -0.1006287, 0.009895965, 0.011222841, -0.012707946, -0.028856855, 0.02889856, 0.0071798177, -0.047860388, -0.001300565, 0.00947885, -0.027765315, -0.053544115, 0.02086793, 0.028643694, 0.061065584, -0.0066142576, -0.046702225, -0.05944077, 0.06276522, -0.030530361, 0.0038025912, 0.03202031, -0.005215671, -0.038391262, 0.05993631, 0.0110881515, -0.0399857, 0.043661542, -0.01885699, 0.064070664, 0.052734174, 0.032188132, -0.014247981, -0.04547324, 0.011295306, 0.056980923, -0.049191672, 0.015825037, -0.04043222, -0.058931578, 0.0045052823, -0.056208726, -0.09929151, 0.044738412, -0.0014998168, -0.041621327, 0.06539743, -0.050594207, -0.060900275, 0.06253, 0.049359363, -0.053761046, 0.0039170966, -0.033175636, 0.0017507477, -0.021017218, 0.017761532, 0.0043432885, 0.041896697, 0.011441848, 0.023219185, 0.043112177, 0.010130575, -0.02256189, 0.03218117, 0.04050743, -0.021486614, -0.06305944, -0.029862229, 0.043194212, 0.029728958, -0.03842362, 0.008480715, -0.008971604, -0.025095291, -0.043617737, -0.03851613, 0.04285708, 0.00177668, 0.0049540754, 0.0072834683, 0.0047881673, 0.022954049, -0.03429352, 0.0068793246, 0.093730696, 0.0071504195, 0.033031095, -0.033981107, -0.04411667, -0.0012168388, -0.04774871, -0.026322583, 0.038382374, 0.012369034, -0.038420442, -0.046893194, -0.030057682, -0.01427874, -0.063041046, -0.015243584, -0.0064960034, -0.003121571, 0.0030722255, 0.029936362, 0.022597264, -0.0063137533, -0.006554736, -0.0056385645, 0.0045864442, 0.02364784, 0.030547652, 0.0018414196, -0.0069111465, 0.021612722, 0.037244566, 0.08803819, 0.019942744, 0.01128522, -0.042869855, -0.05081027, -0.038403567, 0.021133818, -0.07264791, 0.009111929, 0.0122911595, -0.049411457, 0.013402806, 0.00018436978, -0.003030174, 0.025611967, -0.014985078, -0.06806075, -0.035259604, -0.060606148, -0.034344647, -0.035486307, 0.08137649, 0.038787864, -0.030426294, 0.02319698, -0.06912496, -0.0138921365, 0.017705292, 0.06310704, -0.0050153676, -0.01806675, -0.014134089, -0.040173966, 0.024904551, -0.012488219, 0.008658919, -0.019804453, 0.0045024133, -0.00031696988, -0.030646779, 0.032552525, 0.00013700504, -0.064578876, 0.023725932, 0.024452299, 0.040419195, 0.03776522, 0.049319055, -0.026882038, 0.016945032, 0.0196745, -0.038784716, -0.010995318, 0.020932686, 0.057023257, -0.03175364, 0.05454177, -0.052840423, 0.014250768, -0.048378333, -0.023401694, -0.019353084, 0.014621318, -0.0034347686, -0.0119148, -0.04321022, -0.030058304, 0.0089122625, -0.013246515, -0.087051325, 0.0028087134, -0.029567447, -0.029233672, 0.012028113, 0.034510553, -0.019937292, -0.045915123, 0.04869531, -0.01136123, -0.021094792, 0.01486999, -0.0008759666, -0.050050847, 0.02999967, 0.00361059, 0.028962135, -0.006366524, -0.002214242, -0.03579211, 0.013337551, 0.037826788, 0.054316036, -0.009229093, 0.061158907, 0.041843053, -0.0021904241, 0.025173627, 0.003178917, -0.06363841, 0.0743091, -0.019511346, 0.010667229, -0.047870614, 0.014929084, 0.07990601, 0.00012354401, -0.009831631, 0.027644314, 0.0292084, 0.014944409, 0.036306504, 0.00886575, -0.036524493, -0.04505927, -0.038243853, -0.0069496897, -0.021836463, -0.009260258, -0.010235533, 0.016060265, 0.030410564, -0.029945057, -0.04755621, 0.05117417, -0.004522873, 0.029409949, -0.0064893058, 0.0024643058, -0.04499415, -0.008564749, 0.007923431, -0.0027394455, -0.027215848, -0.035092015, -0.053474132, -0.040223017, 0.0016097549, -0.034269344, 0.034114532, -0.038818922, -0.015329368, 0.019047, -0.00041618122, -0.01075305, 0.02963946, 0.031345874, 0.024754867, -0.036415253, 0.082193464, -0.022034373, 0.010305285, 0.027031109, -0.005491856, -0.038741674, 0.012104439, 0.08587793, -0.03624321, -0.033241946, -0.027663186, 0.04583797, 0.006576593, 0.02498779, -0.01742664, 0.058359556, 0.012996443, -0.0034434826, 0.002753922, 0.02189226, 0.030232662, 0.027321089, -0.04156391, 0.035636544, -0.003876836, -0.02874251, 0.04400001, 0.009859085, 0.068040065, -0.011589866, -0.05880697, 0.010378272, -0.0140991425, 0.03146346, 0.01559723, 0.01172933, 0.07740325, -0.014999695, 0.013299717, 0.02098171, -0.06504772, -0.04652978, -0.02479561, -0.047635995, 0.0067477436, -0.028679585, -0.013988555, 0.07056577, 0.03797576, -0.034197804, -0.009083135, 0.01300531, 0.016871303, -0.028412934, -0.03846306, -0.025064407, 0.0029716361, 0.028435266, -0.05500312, -0.007320352, 0.016536592, 0.042517006, 0.0019848372, -0.015644722, -0.00088683463, -0.018587714, 0.037140008, 0.08024002, 0.041383747, -0.038197197, -0.021090746, -0.0038032823, 0.022059925, 0.024600362, 0.016037444, -0.01551472, 0.0052112085, 0.01832999, 0.000892666, 0.02559551, -0.016347911, 0.04439714, 0.005013059, -0.0077894665, 0.021476777, -0.017937258, 0.038580216, -0.010277149, 0.059055433, 0.038194764, -0.070918694, -0.032205544, 0.022313941, 0.010370971, 0.0189252, -0.011518147, 0.05515252, 0.029295335, 0.031093277, -0.035351217, -0.045267276, 0.048823427, -0.016391652, -0.025409997, 0.010706994, 0.028817017, -0.007987351, -0.03905157, -0.042275187, 0.0078592645, -0.005450469, -0.015480833, -0.03212994, 0.04588345, -0.024864877, 0.0037322557, -0.00023138335, 0.042245314, -0.016104996, -0.03585853, 0.028307594, -0.08897204, -0.00069872924, 0.017300667, 0.051484384, 0.0046214005, -0.02198358, 0.045522135, -0.07483359, -0.06936047, 0.0044058403, -0.036146265, 0.046642717, 0.038523022, -0.008116077, 0.014294661, 0.061621554, -0.001377801, 0.04558164, 0.029426737, 0.032152742, 0.009567691, 0.024015872, -0.044274542, 0.013400127, 0.001484798, -0.003536992, 0.018042598, 0.0057570105, 0.05384061, 0.009262977, 0.05274424, 0.012873468, -0.072271354, 0.036135763, -0.019286769, -0.002942276, 0.03301923, 0.0007551912, -0.021730736, -0.034065157, 0.00050250534, -0.0104686, 0.0016735438, 0.005300751, 0.05126517, -0.029738834, -0.001526217, -0.06776928, 0.026569143, 0.012520951, 0.010647668, 0.0175055, -0.017905077, -0.034318034, 0.0017691372, 0.0025957136, -0.012777931, -0.0066092615, 0.025087051, 0.030178295, -0.021077648, -0.008687138, 0.01696499, 0.024619125, 0.028760387, -0.010603334, 0.0790325, -0.023554554, -0.077374294, 0.03711564, -0.026375584, -0.037674494, 0.0054532043, 0.059164397, -0.035163175, 0.011559257, -0.02447883, -0.063036434, 0.060830772, -0.05615606, -0.0065934933, -0.053886555, -0.021534204, 0.047210425, -0.054481387, -0.017503018, -0.008400764, 0.004222963, -0.01430744, -0.0036162303, -0.059384286, -0.024200903, 0.00643048, -0.029793425, -0.018676227, 0.019996613, 0.017998159, -0.007297616, -0.08390653, 0.020117125, -0.027782185, -0.039873272, 0.0041626086, -0.025486186, -0.007648582, 0.023538403, -0.03447927, -0.0076051317, -0.08731692, -0.013622621, 0.0010950633, 0.031593904, -0.027774122, -0.039553, -0.037407156, 0.02786115, 0.057829358, -0.05143272, -0.002950727, 0.0024128149, -0.004288919, -0.014754653, 0.06040109, -0.022697942, 0.047919165, -0.0028075697, 0.0056411326, 0.0018073703, -0.048067827, 0.07125175, -0.025843808, 0.009151801, -0.009244694, 0.03503528, 0.014761807, 0.042866897, -0.028057085, -0.03873331, -0.079413325, -0.02421067, -0.0455628, 0.029853245, -0.017682742, -0.01326342, 0.0102373455, -0.066280186, 0.022910621, 0.04785409, -0.016280424, 0.049913686, -0.029981593, 0.0038895425, -0.017523285, -0.00526581, 0.011127593, 0.03422189, -0.010161479, 0.011952246, -0.05399175, 0.01272768, -0.025212094, -0.05609689, -0.051229443, 0.016481202, 0.048547707, -0.099690005, -0.0093977265, 0.0063256463, 0.01948434, 0.014828647, 0.017970815, -0.039207, -0.03850957, 0.023406008, 0.028606782, -0.050305538, 0.026033226, 0.031183872, -0.011778697, 0.07041798, -0.04202603, 0.04104802, -0.059143506, 0.013574007, -0.04330016, -0.0035157425, -0.079725124, -0.019381568, 0.054501485, 0.022097427, 0.022040956, 0.013969419, -0.068467736, 0.031783193, 0.005562225, -0.022062697, 0.043568432, 0.0033108674, 0.024843091, 0.039553713, 0.01552805, 0.030413574, 0.03581905, -0.014114204, -0.019930404, -0.054134693, -0.015759056, 0.07185307, -0.00094075117, -0.042084508, -0.03759153, 0.017996272, -0.07497316, 0.12420837, 0.024915572, -0.026219504, 0.011994506, -0.033459578, -0.032307062, -0.026175974, -0.0074856845, 0.016019398, -0.008625204, -0.009729079, 0.03030533, -0.0142870005, -0.06299239, -0.020706108, 0.065266825, 0.00811373, 0.01351227, 0.016920334, -0.023005988, -0.03782746, -0.068962954, 0.013022099, 0.01566899, -0.010813967, 0.04235394, -0.02522208, 0.00339909, -0.04844071, 0.0057950816, 0.021230942, -0.024548488, 0.022866063, -0.01217065, 0.012829673, -0.04529481, -0.0195664, 0.07964662, -0.023440696 ] }, { "values": [ 0.014248034, 0.002172714, -0.055344667, -0.018638743, 0.026218852, 0.029125001, 0.018751169, 0.024984004, -0.0031951962, 0.037287038, -0.009724869, 0.06441164, 0.02498739, -0.0032327469, -0.0483946, -0.014743099, -0.010377728, -0.024534142, -0.0725441, 0.013472119, 0.021361565, 0.010655532, 0.027510885, -0.061632276, -0.039129797, 0.042168412, 0.0587763, -0.0032682184, 0.012391456, 0.0049501965, 0.05560095, 0.0012078602, -0.024875257, -0.029424597, 0.068708956, 0.03050685, -0.052758824, 0.0031460586, 0.021000734, -0.048274983, -0.03646375, -0.076649174, -0.04064132, 0.03741416, -0.030046798, 0.0046902196, 0.0338631, -0.013170669, -0.030048667, 0.04537935, 0.029071983, -0.015168555, -0.065576404, 0.024108646, -0.010059965, -0.03221547, -0.035832208, -0.01707945, 0.06752828, 0.02292301, -0.035309684, -0.009904919, 0.006827357, 0.016137436, 0.008558581, -0.046854433, -0.026039228, 0.006453526, -0.040778816, -0.0020083874, -0.037562747, 0.059035327, -0.03871377, -0.008325215, -0.032181725, -0.031440075, -0.010097109, -0.025206175, -0.0007914606, 0.026093116, -0.047355726, 0.042219575, 0.04506189, 0.005751253, 0.029763361, 0.004397965, 0.07103312, -0.08061793, -0.011759456, 0.017770559, 0.013229475, -0.027724389, 0.0076917587, -0.0046725413, 0.018361894, -0.045942377, -0.066018395, -0.054120563, 0.012634135, 0.06497602, -0.039627776, -0.037142795, -0.045431957, -0.050441362, 0.05482476, 0.039433233, 0.004662259, -0.039904658, -0.00073288096, -0.0056184926, -0.037912138, -0.04593535, 0.014306481, -0.034211937, 0.039319873, -0.051226884, -0.039683614, 0.025588525, -0.024560139, -0.0079289675, -0.014741761, 0.020237962, -0.05115859, 0.03062349, -0.0067016236, 0.048396084, 0.017177826, -0.04057067, -0.025676955, -0.0922572, 0.080172844, -0.102425575, 0.029941233, 0.02394118, -0.023118153, -0.013841347, 0.026756056, -0.00057746633, -0.043615717, 0.017763272, 0.010107509, -0.03937287, -0.011315923, 0.012476442, 0.0007266045, 0.06658983, 0.0053931605, -0.007361122, -0.05052597, 0.04225119, -0.048659433, 0.0054275068, 0.033533547, 0.00750314, -0.04609878, 0.020174418, 0.033365928, -0.063266695, 0.0854818, -0.029239548, 0.029876078, 0.002949682, 0.04575063, 0.0028268737, -0.07806683, -0.005897965, 0.019422023, -0.087527975, -0.016322007, -0.027768211, -0.025742002, -0.004967971, -0.029935043, -0.11367721, 0.009353627, -0.016206589, -0.05872425, 0.047095362, -0.031045172, -0.07360129, 0.065968424, 0.056886647, -0.015254595, 0.011742149, 0.012941533, -0.00013117868, -0.019090168, 0.036857836, -0.042720526, 0.046253487, 0.029212322, 0.014148869, 0.07858288, 0.06419874, -0.02005785, 0.051802717, 0.065838784, -0.01202249, -0.011327514, -0.06704408, 0.047668554, -0.026417915, -0.017938687, 0.04675592, -0.022719989, -0.05354164, -0.03260898, -0.031325556, 0.0673947, 0.013589183, 0.0065923156, -0.019370675, 0.01678733, -0.02232602, -0.0016629908, -0.00051131606, 0.09650755, 0.032604523, 0.07802052, -0.0093380315, -0.020514047, -0.031629786, -0.017730817, -0.013890884, 0.040949512, 0.018103793, -0.041892886, -0.0021193041, -0.049487434, -0.011062346, -0.030792367, -0.01796655, -0.016130917, -0.056687865, 0.016488032, 0.01738711, 0.020594504, -0.016562363, -0.010866301, -0.04690265, 0.004131787, 0.025288427, 0.057784677, 0.0028192142, 0.018647235, -0.005232873, 0.022262568, 0.1261701, 0.0042049387, -0.0014806783, -0.005384695, -0.02814242, -0.01900721, 0.026779111, -0.04428226, 0.016721226, 0.0060593006, -0.041138202, -0.024941983, -0.0063510817, 0.018137496, 0.005796738, -0.0025326237, -0.059004724, -0.038260914, -0.08210544, -0.0010482391, -0.020889217, 0.053882353, 0.0015798291, -0.0049332967, 0.019131439, -0.060252417, -0.032890424, 0.013390974, 0.043800104, -0.0325245, -0.03989549, -0.015630484, -0.033516083, 0.013833158, -0.029332956, -0.030111706, -0.0038827101, -0.0036373027, -0.027159827, -0.00417427, -0.021390582, -0.010286941, -0.036525972, 0.043363515, 0.06665299, 0.009934989, 0.030567572, 0.034009237, -0.022201674, 0.008048381, -0.0019105896, 0.012153393, -0.018454056, 0.041664205, 0.0857321, -0.042015895, 0.016592987, -0.029476207, 0.03467657, -0.08664773, -0.006216057, -0.044726685, -0.0008434003, 0.007059616, -0.0034346518, -0.023947615, -0.03136369, 0.008688926, -0.02864504, -0.03836759, -0.0068614446, -0.019783271, -0.053415723, 0.027897676, 0.039181944, -0.013041431, -0.016650237, 0.062833324, -0.0162666, 0.0036394193, 0.0022861368, -0.016988043, -0.014884815, 0.03197018, 0.025342163, 0.023061132, -0.033409286, -0.003263746, -0.04186507, 0.016574247, 0.009676314, 0.026589304, 0.00067261857, 0.056972824, 0.001836315, 0.00083160977, 0.045978684, -0.0075358897, -0.049699005, 0.07700338, -0.051072977, 0.014596293, -0.042954527, -0.018893959, 0.06278961, 0.028114503, 0.025367673, 0.026240477, 0.008328991, 0.019008778, 0.047306657, 0.01213696, -0.030754074, -0.028697617, -0.032913513, 0.0036756245, -0.009114514, 0.00064184633, 0.00015457999, 0.020650603, 0.042748645, -0.033427484, -0.045638587, 0.01779339, 0.01837204, 0.00047191957, -0.035129964, -0.0010141857, -0.038536135, -0.013904074, 0.0004959749, 0.043771327, -0.011236092, -0.056403898, -0.04269879, -0.036046654, -0.0057355748, -0.02841843, 0.0487216, -0.031408176, -0.024901437, -0.019027572, 0.04357792, 0.003947133, 0.025716567, 0.022445891, 0.01731803, -0.017812155, 0.068266675, -0.026950592, 0.02372209, 0.045487236, 0.010830743, -0.038144298, 0.018920882, 0.06804052, -0.020000955, -0.05628285, -0.0032484033, 0.03951369, -0.013541979, 0.018524064, -0.055893082, 0.04395233, 0.015162822, 0.005436895, 0.022716554, 0.027000472, -0.012825172, 0.019573487, -0.03811688, -0.012199067, 0.006573459, -0.008691647, 0.038444184, 0.0020939438, 0.06289053, 0.017607734, -0.05484705, 0.019371755, 0.0025300952, 0.046885956, 0.011583305, 0.031033201, 0.03279977, -0.059406642, 0.023251291, 2.6105306e-05, 0.005016068, -0.03664965, -0.024546176, -0.037636932, 0.018678643, 0.0043644644, -0.04062796, 0.07260854, 0.033369064, -0.04663892, 0.00890515, -0.013565792, 0.010913309, -0.034776542, -0.034412976, -0.054618344, 0.047596395, -0.0045379656, -0.05733351, -0.017136317, 0.018233139, 0.02666582, 0.004107024, -0.019435871, 0.020286534, -0.06756361, -0.017435545, 0.06516642, 0.07761982, 0.015498621, -0.025233438, -0.039188333, 0.028794492, 0.04091739, 0.040472973, 0.021720482, 0.011844584, 0.0056584068, -0.0034095203, -0.0024564536, -0.009085067, 0.012423351, 0.017232182, 0.007879805, 0.024207031, -0.020358084, 0.062173, -0.011519854, 0.05501278, 0.012484215, -0.08347988, -0.018381536, 0.044090375, 0.03259474, -0.013838573, 0.008423348, 0.035233613, 0.0323105, -0.0070449775, -0.020926272, -0.040036228, 0.012091532, 0.003146645, -0.030236907, 0.010834718, 0.07120184, 0.019748181, -0.030687895, -0.051725935, 0.009307732, -0.01157606, -0.050151564, -0.012822191, 0.024383822, 0.0028758745, 0.000102816106, 0.015078088, 0.02380353, 0.013006565, -0.015239255, 0.03989533, -0.06471889, 0.02963613, 0.019462649, 0.045875195, -0.025226459, -0.04478303, 0.0589214, -0.019637657, -0.069473624, -0.05990516, -0.027911585, 0.055421583, 0.022501707, -0.009294967, 0.01749251, 0.06916046, -0.0101297265, 0.022751704, 0.050182045, 0.030465674, 0.009332892, 0.0062237624, -0.024661448, 0.036826428, -0.030181874, -0.014736603, 0.016326364, 0.040366452, 0.05356492, -0.020393593, 0.06279281, -0.020310668, -0.02177101, 0.04053478, -0.01921268, -0.048211116, 0.007350175, 0.02218705, -0.038220692, -0.03950588, -0.0056106905, -0.06860559, 0.011136758, 0.03823427, 0.051470287, -0.05501857, -0.0066785724, -0.03661989, -0.014133521, 0.04755834, -0.0013518651, 0.04300413, -0.0049095973, -0.009276223, 0.00048863085, 0.014176853, -0.0045796977, -0.044846993, 0.043224987, 0.037427917, -0.03532498, -0.016515091, 0.050229806, -0.024757754, 0.05093396, -0.039301876, 0.065108545, -0.04719157, 0.007125059, 0.028151628, -0.010025302, -0.047917876, 0.013783371, -0.0041988553, -0.040734142, 0.007818521, -0.011940392, -0.021330323, 0.03141205, -0.038329344, 0.0023418737, -0.048556883, 0.013807265, 0.0562188, -0.032678038, -0.016999211, -0.03722258, 0.029497841, 0.023045791, 0.0056940564, -0.019723523, -0.0465049, 0.0034363037, -0.019376392, -0.0552093, 0.01781666, 0.049042635, -0.013322775, -0.0901469, 0.0075836047, -0.019178245, -0.07055325, 0.020982986, 0.0114862155, 0.010187633, 0.075579226, -0.009641117, -0.03560805, -0.04361472, -0.05138338, -0.0108595025, 0.02674276, -0.064806834, -0.010348811, -0.02161168, 0.0033702678, 0.02420775, -0.014996298, -0.032441154, 0.019834999, -0.0227488, -0.030926827, 0.036656473, -0.057082687, 0.028860504, 0.013363276, 0.00446214, 0.032726653, -0.080349244, 0.06721136, -0.023299469, 0.015346088, -0.037807353, 0.039677463, -0.0027928315, 0.017771196, -0.034125067, -0.023402052, -0.045537602, -0.02753145, -0.030780768, -0.029993594, -0.011290296, -0.059446167, -0.014204248, -0.00024473458, 0.065556176, 0.032704394, -0.029129347, 0.022160994, -0.02409152, -0.0057841265, -0.006143454, -0.0077470336, 0.02565241, 0.02750435, -0.013103102, 0.03575218, -0.046852868, 0.025253132, 0.009552212, -0.052495595, -0.044070765, 0.0033214777, 0.0437671, -0.08466324, -0.04358218, 0.0061626188, -0.007781587, 0.06313761, 0.045884185, -0.0155253755, -0.0049865004, 0.020130457, 0.07434331, -0.0426062, -0.00863063, 0.029721102, -0.021860557, 0.06546728, -0.060151756, 0.040483993, -0.036647562, -0.00797319, -0.014232481, -0.0068642967, -0.070432544, -0.021726718, 0.07064296, -0.010755049, 0.027571259, 0.011966337, -0.06993817, -0.009585855, 0.019953461, -0.0027473602, 0.05855375, -0.012302098, 0.02476232, 0.04333102, 0.024035484, 0.030349841, 0.025742281, -0.02251809, -0.004149748, -0.035795026, -0.015198156, 0.049675025, 0.031265017, -0.03271099, -0.04701724, 0.047988348, -0.065313734, 0.111080505, 0.02901301, -0.01237269, 0.025744427, -0.010949637, -0.025262587, -0.010884522, -0.015956776, -0.0038805746, -0.033570245, -0.020011874, 0.014743508, -0.01990989, -0.028855879, 0.02357156, 0.033782165, -0.00978186, -0.006609458, -0.014605925, 0.0005426617, 0.007857013, -0.0890456, 0.016822223, 0.0003909682, -0.02414693, 0.04355224, -0.003997972, 0.011868047, -0.010300299, 0.001279021, 0.054282483, 0.015855666, 0.03816645, -0.049113438, 0.039838083, -0.0759975, -0.010455545, 0.054855935, -0.05465386 ] }, { "values": [ -0.039936546, 0.010497923, -0.011519984, -0.0456826, 0.039613742, 0.03352328, 0.0010446794, 0.026238596, 0.0009975175, 0.018958148, -0.008122227, 0.007966853, 0.030164829, 0.052853223, -0.04326781, -0.042476613, -0.010835098, -0.025852216, -0.09130096, 0.016318856, 0.021305658, 0.013979239, -0.0036988428, -0.071435966, -0.012749349, 0.05889003, 0.035467036, -0.015357523, -0.02914747, -0.0007929921, 0.05368378, -0.016011989, -0.028767178, -0.010209845, 0.046793267, 0.041775297, -0.07113988, 0.004591012, 0.027382515, -0.1013034, -0.041531485, -0.044324994, -0.03302147, 0.018377835, -0.041799504, -0.014036427, 0.020077834, 0.019695742, -0.022200182, 0.00067736075, 0.004105298, -0.067703664, -0.027824236, 0.027796173, 0.005784357, -0.019320685, -0.050625406, -0.030175542, 0.076835535, 0.018990258, -0.046208717, -0.0044168606, -0.044126723, -0.013001507, 0.045736004, -0.050927904, -0.08289513, 0.0036133428, -0.032852214, -0.011489334, -0.0655445, 0.008334322, -0.037448682, -0.032612883, -0.04508828, -0.04673204, 0.02553081, -0.033891365, -0.019917265, 0.008196033, -0.014933843, 0.00962527, 0.02529798, 0.033158187, 0.04474907, 0.011354008, 0.07095229, -0.05182938, -0.027029065, 0.02047362, 0.027013062, -0.02249945, -0.039300796, -0.05082557, 0.051272225, -0.06880062, -0.062731, -0.051304586, 0.026007993, 0.045477718, -0.065412074, -0.03291073, -0.06446327, -0.051839113, 0.049065568, 0.051637966, 0.0016354659, -0.036014028, -0.0013956607, -0.033722028, -0.042282537, -0.042953663, -0.016692635, -0.015092283, 0.021308972, -0.017411739, 0.036124773, -0.0012668119, 0.01169767, -0.00016121149, 0.0021451788, 0.0047571855, -0.026504723, 0.022205584, 0.012119352, 0.04033976, 0.04211007, -0.055840388, -0.017516807, -0.08105201, 0.038121417, -0.099395685, 0.02581508, 0.018070592, -0.061029714, -0.017632239, 0.020653138, 0.0013216061, -0.029728604, 0.018517615, 0.0275936, -0.04275656, -0.010293014, 0.01985399, 0.016373526, 0.0072425907, 0.010182023, -0.0447421, 0.0021996887, 0.014487324, -0.07396928, 0.024958057, 0.025633376, 0.00024177182, -0.044846967, 0.0077031343, 0.045361247, -0.08380946, 0.041117255, -0.029196797, 0.011344244, -0.03823286, 0.016470686, 0.011579852, -0.07324455, -0.006739963, 0.047573265, -0.101693965, -0.0201715, -0.056127917, -0.039286327, -0.025082316, -0.06306656, -0.07576377, -0.0024686374, -0.027481, -0.047161944, 0.034350786, -0.04488105, -0.030738734, 0.045134295, 0.08320623, 0.00589498, 0.014427378, -0.033533767, 0.02849378, 0.028998038, 0.027499381, -0.018341485, 0.062374204, 0.0076246406, 0.011385779, 0.09495916, 0.0060682753, -0.03527085, 0.058837704, 0.08166797, -0.022628019, -0.022500664, -0.03848338, 0.024186235, 0.030687777, -0.03952, 0.04174701, -0.053156827, -0.032564025, -0.016028082, -0.027867677, 0.092597395, 0.004567528, 0.052107494, -0.003765231, 0.01713691, 0.0014574307, -0.002297508, 0.0043153404, 0.08272925, 0.038831897, 0.07718813, -0.024806727, -0.014872512, -0.012212508, 0.006901661, -0.029367734, 0.038170103, 0.04835418, -0.028520446, 0.004803692, -0.016124958, -0.018355384, -0.035581212, -0.00527411, -0.031141683, -0.0032256767, 0.036752716, 0.025551066, 0.02173663, -0.0058939047, -0.032299306, 0.006888247, 0.011717821, 0.03468563, 0.077574484, -0.0030675267, 0.004310879, 0.071386166, 0.015602159, 0.11332598, -0.019163454, -0.032029595, -0.020607898, -0.03972114, -0.0535359, -0.03194048, -0.027756277, 0.009303402, -0.002554655, -0.011944979, -0.03129884, -0.012773166, 0.03536215, 0.011051272, -0.02949079, -0.06457881, -0.0321494, -0.089141645, -0.026132772, -0.00878792, 0.04246443, -0.026134787, 0.00055969437, 0.010405314, -0.06990412, -0.01585243, 0.021005781, 0.028948799, -0.0119809685, -0.019710023, 0.012178031, -0.033022836, 0.041738715, -0.058060218, -0.029499322, -0.026472969, 0.013502929, -0.0025061136, -0.018622076, -0.00065884594, -0.01191716, -0.040431533, 0.04737711, 0.04663355, 0.03901731, 0.010095402, 0.04863272, -0.023413632, 0.022305472, 0.0010447371, -0.027080726, 0.011734336, 0.025278512, 0.09049427, -0.05814936, 0.021636616, -0.029055392, 0.010414289, -0.06610851, -0.019657953, -0.007921203, 0.020600937, 0.010642263, 0.038186602, -0.027013568, -0.015355946, 0.009909815, -0.0027726176, -0.09361387, 0.046060674, 0.007040004, -0.03956347, 0.06546434, 0.028276194, -0.004378388, -0.026945854, 0.03539812, -0.025950491, -0.043759923, -0.029530529, 0.025329528, 0.010468997, 0.014725637, 0.044256084, 0.011941809, 0.0052272263, -0.023225306, 0.0087150335, -0.010074692, 0.03795547, 0.008392214, -0.01811628, 0.055436347, 0.010924305, 0.0027879584, 0.06301745, 0.014483491, -0.0664252, 0.0380165, -0.005378118, 0.038950898, -0.05197405, -0.01969618, 0.05576306, -0.037647698, -0.012009353, 0.032070242, 0.016348531, 0.00615831, 0.02945127, -0.00041945133, -0.041009713, -0.057586238, -0.043911453, 0.022284942, -0.0054906206, -0.040446486, 0.025136681, 0.00088834204, 0.045623273, -0.02758974, -0.027304411, 0.02024887, 0.017862737, 0.028366042, 0.0007007496, 0.0066467556, -0.059016485, 0.01233435, -0.032823972, 0.015732637, -0.011742819, -0.046911642, -0.06332342, 0.00061003235, -0.016246663, -0.03961015, 0.03676524, -0.030919654, -0.034484945, 0.0058753225, 0.044844415, -0.033572603, -0.0046962597, 0.008851937, 0.028192887, -0.026309244, 0.06609488, 0.026008617, 0.0076255337, 0.004757897, 0.005398147, -0.030259393, 0.009995255, 0.071089275, -0.02723347, -0.008744561, 0.0029883964, 0.06286681, 0.001986817, 0.02236313, -0.020222725, 0.0554214, -0.009498707, 0.01427575, 0.0409113, 0.035342313, 0.010239627, 0.04393417, -0.059998304, 0.002227115, 0.009022032, -0.007849937, 0.017003555, -0.0031198035, 0.08537721, -0.03930914, -0.041418985, 0.02446911, 0.024169864, 0.043822106, -0.0041089514, -0.013700603, 0.025994645, -0.06071936, 0.021467062, -0.04767935, -0.026720366, -0.0011561607, -0.022608228, -0.009225265, 0.0057512033, -0.009772877, -0.027778693, 0.10106161, 0.0599665, -0.00030345167, 0.0018611298, -0.0070048235, 0.004236733, -0.029718596, -0.04194533, -0.05614253, 0.014441188, 0.026479503, -0.07182829, -0.027722001, 0.025005007, 0.024038285, -0.018989298, -0.026452187, 0.012980124, -0.043683894, 0.0002536062, 0.06417287, 0.03283588, -0.013498435, -0.015304115, -0.051868085, 0.0070001166, 0.025118066, 0.02624518, 0.013512514, -0.012355072, 0.018202823, 0.0028546078, -0.006954999, -0.014082032, 0.018124312, 0.036329042, 0.013376799, 0.0019815767, -0.046708085, 0.066255674, -0.016082011, 0.061471887, 0.031007929, -0.04584967, -0.012375775, 0.02940372, 0.022399958, 0.01630034, 0.015034244, 0.04368384, 0.042690728, 0.007412172, -0.010530262, -0.024972856, 0.019639822, -0.019670837, -0.018974692, -0.0024805581, 0.065802686, 0.022441542, 0.015056042, -0.034509007, -0.016205113, -0.014246454, -0.084044054, -0.047369916, 0.051635087, -0.024290394, 0.010652788, 0.0100071095, 0.035109095, 0.007763256, -0.01666021, 0.037586637, -0.069756895, 0.023905644, 0.022753684, 0.04998371, 0.022557268, -0.013952642, 0.013562182, -0.023440959, -0.055297006, -0.03884248, -0.03523095, 0.03368748, 0.05263077, -0.035784587, -0.00050658884, 0.0696916, 0.0032383054, 0.018491004, 0.033988707, 0.0018642648, -0.01020114, 0.0014398595, -0.030932494, 0.024296377, -0.04513048, 0.013262597, -0.01928443, 0.008341408, 0.05401549, -0.010033597, 0.05932249, -0.0042634546, -0.053291295, 0.059694655, 0.00027511944, -0.014218331, 0.021527631, 0.012688027, 0.015069505, -0.021432048, -0.023710588, -0.04638612, -0.026534498, 0.027175657, 0.05703759, -0.024306083, 0.032285348, -0.022853985, -0.032486927, 0.031909246, -0.0038229977, 0.008354638, 0.030569218, 0.0040373723, -0.015474899, 0.020951089, -0.0065304614, -0.041300565, 0.021734595, 0.041838866, -0.009795561, 0.008854698, 0.035182264, 0.0011937784, 0.059656877, -0.03289294, 0.06919684, -0.056363955, -0.011547416, 0.06229279, 0.0024418589, -0.04671929, 0.028089061, 0.031770613, -0.031035155, -0.008400781, -0.01680969, -0.026792124, 0.0026295264, -0.04963313, 0.016765406, -0.035990488, 0.055650413, 0.08192028, -0.027738087, -0.0057954653, 0.0061399816, 0.01807393, 0.0034357288, -0.0011499473, -0.034898445, -0.06009663, -0.021712305, 0.012793202, -0.032715112, 0.023717517, 0.014981525, -0.0034741396, -0.04530959, -0.006962131, -0.040618006, -0.019318039, 0.023658877, 0.006334625, -0.030550204, 0.0288395, -0.014475859, -0.029450696, -0.034164205, -0.013287929, -0.004322749, 0.053976312, -0.02775528, -0.014835383, -0.005221629, 0.04906162, 0.011045349, -0.022834767, -0.025351705, 0.0020721697, -0.021329317, -0.02436042, 0.008801369, -0.029770287, 0.031250443, 0.004993898, 0.011583004, 0.043721575, -0.074313834, 0.042169802, -0.034035508, 0.017793702, -0.018419169, 0.06380052, -0.0061940923, 0.07255821, -0.031133702, -0.030275956, -0.05015736, -0.018481197, -0.031048534, 0.0030040054, -0.046185408, -0.0038149792, 0.0013435183, -0.046922076, 0.025651198, 0.018000443, -0.01859342, 0.03704561, 0.0039135087, -0.0064818007, -0.025690835, -0.011078268, -0.00039141806, 0.03814914, -0.007679942, 0.032958034, -0.03438932, 0.0051480527, -0.0071908236, -0.042553816, -0.051143933, 0.014342841, 0.04675541, -0.054486696, -0.017128004, -0.023477761, -0.004538074, 0.010327353, 0.029233899, -0.028068371, -0.012452948, 0.027142005, 0.05806088, -0.054402202, 0.01656278, 0.014833933, -0.0356574, 0.051243853, -0.0150848245, 0.03829921, -0.067025505, 0.0025435267, -0.041496344, 0.013460847, -0.0733401, -0.02707449, 0.10891897, 0.026135247, 0.024595648, -0.016004488, -0.07924658, 0.021393603, 0.0037683367, 0.008130752, 0.08183593, -0.00020786717, 0.007864969, 0.03118042, 0.035222102, 0.043390922, 0.044846516, -0.030359622, -0.02497375, -0.02309744, 0.018992709, 0.08193403, 0.012299643, -0.02569515, -0.06075748, 0.003211458, -0.02885963, 0.08250451, 0.05648918, -0.0022184078, -0.028544785, 0.014099794, -0.02368202, -0.011018567, 0.00021336366, 0.009945733, -0.0074076275, -0.026933288, 0.033957522, -0.015441423, -0.029931925, 0.015864957, 0.03336589, 0.018037215, -0.016569193, -0.03561325, -0.019166265, 0.025126548, -0.075940944, -0.011204452, 0.029499002, -0.030434085, 0.0040032268, -0.02475028, 0.017930616, -0.051872343, 0.020624867, 0.008975382, -0.016714307, 0.012664134, -0.0005737748, 0.04617614, -0.09899789, 0.0069230674, 0.031149222, -0.059716728 ] }, { "values": [ -0.03527517, -0.011317837, -0.009828481, -0.041299988, 0.036576312, 0.022790598, 0.031790327, -0.034863688, -0.023489205, 0.03387965, -0.003913642, 0.021560043, 0.05182739, 0.02280178, -0.0657077, -0.0417466, -0.03797958, -0.01947681, -0.102787696, -0.019263787, 0.035226688, 0.004762449, 0.024689484, -0.07225001, -0.010172907, 0.057551343, 0.025436454, -0.036038592, 0.006034414, -0.018439746, 0.055279844, 0.024062991, -0.010266351, -0.04969911, 0.06236904, 0.015947385, -0.07073429, -0.006759987, 0.03944479, -0.07751445, -0.040408332, -0.014792894, -0.016927654, 0.013455198, -0.029469183, -0.018706959, 0.022303164, -0.0042919805, 0.0089135375, 0.044546615, 0.0522011, -0.01389754, -0.00026290177, 0.013494152, -0.031798333, -0.019436736, -0.04935556, -0.058796376, 0.06761529, 0.027141964, -0.013297241, -0.0064792256, -0.056123827, -0.017694576, 0.051347263, -0.045432765, -0.07691237, 0.019558897, -0.02845619, -0.0035375599, -0.046259996, -0.0024971757, -0.03227078, -0.035013374, -0.021998292, -0.023177078, -0.023345288, -0.009056297, -0.06080129, 0.009165434, -0.0043580695, 0.04223641, 0.054790966, 0.022334415, 0.048841894, 0.013003288, 0.033531662, -0.044321366, -0.017876277, -0.0016052672, 0.026366696, 0.03560244, -0.0433538, -0.017888967, 0.021910854, -0.06183128, -0.041482776, -0.047599223, 0.02444347, 0.08531264, -0.027116513, 0.002852757, -0.064869925, -0.07119591, 0.0496808, 0.03247962, -0.016645709, -0.051825352, 0.004517197, -0.0026030832, -0.059411414, -0.01660873, -0.009319481, 0.0048497063, 0.033441868, -0.025902191, 0.012884428, -0.00593869, -0.02250906, -0.010976183, -0.008105838, -0.007578586, -0.041596, 0.04930812, 0.005954689, 0.004773178, -0.006079299, -0.053679187, -0.044696745, -0.07990104, 0.093548074, -0.10470088, 0.010514471, -0.015785214, -0.032027904, -0.0008279792, 0.010705559, 0.044973377, -0.002261734, 0.03486692, 0.0025388305, -0.020222515, -0.008464285, 0.014870564, 0.0111352485, -0.002013202, 0.0016619285, -0.020006109, -0.026286256, 0.009667422, -0.080467775, 0.037098054, 0.017162826, -0.010411862, -0.040201373, 0.04681472, 0.045178223, -0.016774397, 0.03247936, -0.023763254, 0.026247932, -0.0013080034, 0.04161587, 0.04482873, -0.05002476, -0.064789906, 0.053771872, -0.06870379, -0.0058230534, -0.06573953, -0.042756602, 0.028861267, -0.03157208, -0.096357696, 0.04325093, 0.041675474, -0.029355215, 0.039938856, -0.011063886, -0.005457239, 0.07656126, 0.03457912, -0.010528288, -0.007116107, -0.038397778, 0.008591461, -0.006806223, 0.044781324, -0.013481629, 0.06371727, 0.022430249, 0.009421616, 0.021374399, 0.027263299, -0.02762409, 0.057000596, 0.047038954, -0.022293042, 0.0033597506, -0.005960185, 0.04500032, -0.00443134, -0.028048823, 0.018820437, -0.04682437, -0.04124733, -0.009126931, -0.0028399767, 0.07987052, 0.0032069369, -0.017892757, -0.0031203432, 0.038504183, 0.016366603, -0.032896042, 0.044361934, 0.051688068, 0.05207677, 0.06685549, -0.036839325, -0.021310126, -0.024039546, 0.027769068, -0.04148663, 0.05613243, 0.017123083, -0.0431693, -0.039601557, -0.013312866, 0.022266218, -0.049829878, -0.007960499, -0.0026686448, -0.0015556128, 0.009808063, 0.016782288, -0.0097132055, 0.009374523, -0.0055413144, -0.010419666, -0.03753257, 0.043619677, 0.06869949, -0.0027253444, 0.04580853, 0.05934457, 0.017730046, 0.085312314, -0.038424734, -0.010280778, -0.022602608, -0.037721574, -0.053246737, 0.030925522, -0.04173391, -0.017847497, 0.010551322, -0.052748147, -0.022277012, -0.04367588, 0.04722555, 0.034196418, 0.0017023991, -0.060768727, -0.025517978, -0.07508918, -0.041891344, -0.04881248, 0.08288459, 0.0045154938, 0.036963362, 0.017014282, -0.04566209, -0.019353375, 0.0009323853, 0.032491263, 0.0041520917, -0.031367373, 0.00023382783, -0.043828517, 0.009725364, -0.051589996, -0.032035034, -0.0035446233, 0.020483123, -0.009063348, -0.008971343, -0.0016972064, -0.040570427, -0.022388194, 0.037604623, 0.049826667, 0.045450695, 0.0411078, 0.03150832, -0.038901832, 0.014899069, -0.009641985, -0.0010687214, -0.006839927, 0.016002337, 0.093487814, -0.014137038, 0.004825413, -0.039279975, 0.02162018, -0.06554562, -0.058465168, -0.011842863, 0.032394458, 0.008088171, 0.05069753, -0.012192533, -0.0430787, 0.037833348, -0.007962288, -0.078391306, 0.024650013, -0.022582872, -0.038841024, 0.019844847, 0.026201325, 0.015570595, 0.00071500376, 0.05624775, -0.021287559, -0.024286337, -0.042093676, 0.0027921589, 0.01585371, 0.020113274, 0.047964692, -0.0028611247, 0.0076034637, -0.0009824802, 0.007287506, 0.013429744, 0.026058847, 0.049246423, -0.0018503068, 0.06573008, 0.022065263, -0.016500767, 0.0527568, -0.0026163922, -0.07721098, 0.04882552, -0.019901307, 0.014199633, -0.034472976, -0.04233188, 0.056716572, -0.0105011165, -0.015136654, 0.029598782, 0.04082142, 0.0027627272, 0.035403054, 0.031493194, -0.053867582, -0.026949998, -0.007311228, 0.031782158, -0.039449982, -0.02664004, 0.015735831, 0.0037277222, 0.025249157, -0.026306143, -0.050729148, 0.03629919, 0.010593055, 0.023972256, -0.0076449313, 0.021786561, -0.042278413, -0.008712398, 0.004087599, -0.011790505, -0.037097044, -0.047821693, -0.06941179, 0.0023850594, -0.014213595, -0.020271122, -0.017219888, -0.073143624, -0.04388733, 0.0075844247, 0.044073492, -0.044034705, 0.034100432, -0.0046574837, 0.004960559, -0.006084357, 0.04062065, -0.033819128, 0.006106057, 0.044823423, 0.004928441, -0.021401957, 0.017021008, 0.09722914, 0.002631698, -0.022201035, -0.0012598113, 0.05014371, -0.017418565, 0.017029736, -0.021243298, 0.046043612, 0.0063052666, -0.011768557, 0.023272246, 0.03538097, -0.0026414513, 0.029740606, -0.050632544, -0.007839196, 0.027844878, 0.0007421222, 0.04456768, 0.028858863, 0.070081815, -0.058015835, -0.07716672, 0.005197937, -0.0016373058, 0.03471604, -0.023679461, -0.002044595, 0.058382433, -0.07540868, 0.012363135, -0.04003354, -0.014739672, -0.038776677, -0.0090909, -0.024132993, 0.017110614, -0.011152735, -0.0129211815, 0.09055805, 0.018130375, -0.011433557, 0.00289428, 0.03948528, 0.020455416, -0.045370772, -0.05132368, -0.009214407, 0.012512949, 0.011342236, -0.06859432, -0.036152165, 0.007954367, 0.03888082, -0.013864286, -0.022089766, 0.054685738, -0.035096522, 0.021067668, 0.046876647, 0.0393509, 0.004738087, -0.03653969, -0.018439004, -0.010021201, 0.018837195, 0.016715268, 0.0031608965, -0.022300398, 0.03938031, 0.019299129, 0.020338362, 0.005007264, 0.04127327, 0.0041839667, 0.0027737217, 0.002971497, -0.041791357, 0.03970142, -0.012705843, 0.05684681, 0.0026386976, -0.05595939, -0.018393554, -0.012319727, 0.004269481, -0.028726256, 0.01455786, 0.04480525, 0.03232378, 0.025215443, -0.01480218, -0.03882907, 0.034485586, 0.0062445966, -0.032346353, -0.017051892, 0.08147751, -0.0020530121, 0.0147647625, -0.035687067, 0.0043341164, -0.0043692635, -0.04736416, -0.04095467, 0.023697214, 0.017302021, -0.0059808255, -0.0002844224, 0.032598235, -0.019799637, -0.027652495, 0.034956876, -0.031687547, 0.01782987, 0.028932033, 0.06070056, -0.002026229, -0.008902918, 0.060049012, -0.05247209, -0.07948494, -0.011759338, -0.04277524, 0.03197958, 0.023393018, -0.04755852, 0.0024550701, 0.050580192, 0.0031134894, 0.0365321, 0.026799588, 0.029875675, 1.769842e-05, -0.02432869, -0.031466775, 0.033343676, -0.02080963, 0.011043974, 0.0134459175, -0.00999203, 0.05013156, 0.009680538, 0.079852514, 0.029335553, -0.06963274, 0.03825229, -0.011618781, -0.003622431, 0.04162608, 0.03995946, -0.049795702, -0.063776076, -0.042901818, -0.05627469, -0.025329864, 0.025194785, 0.048932474, -0.030589646, 0.023901165, 0.030114623, -0.013078341, 0.008369811, 0.033123378, 0.036435522, 0.028040858, -0.010920543, -0.004723748, 0.017103808, 0.009515157, -0.048704725, -0.0018028312, 0.05264908, -0.0026409742, -0.008556981, 0.028640814, -0.00017119054, 0.048602436, -0.016736919, 0.079934925, -0.0076859826, -0.028249511, 0.06685812, 0.0009767582, -0.06042418, -0.018468898, 0.015177464, -0.011544004, 0.00079405267, -0.01442582, -0.0056056078, 0.045934226, -0.030403333, 0.013063456, -0.06943161, 0.018767023, 0.052205488, -0.02114942, -0.008205632, -0.026707882, 0.0028683192, 0.015107654, 0.009959431, -0.04633577, -0.04236331, 0.031660367, -0.023297738, -0.024525754, -0.0019954785, 0.008949798, -0.008147743, -0.046842817, 0.0032173605, -0.03637949, -0.052082665, 0.026947381, -0.030938085, 0.0038670693, 0.05958366, -0.023876796, -0.021975182, -0.03912058, -0.035509802, 0.004097772, 0.07411924, -0.013649495, -0.021717938, -0.030249719, 0.022039173, 0.02209076, -0.027808748, -0.019002335, 0.023032388, -0.009974605, -0.024375863, -0.0066584116, -0.043026485, 0.05072077, 0.0047034076, 0.022167409, 0.0120952455, -0.08103024, 0.041471265, -0.019014455, 0.035811603, -0.029632723, 0.016164148, -0.009320603, 0.05412087, -0.0021445223, -0.0636182, -0.03106184, -0.0037835198, -0.016572364, -0.022400245, -0.015237864, -0.019657366, -0.010643062, -0.0724109, 0.016478544, 0.0093495175, -0.005688152, 0.029807141, -0.016634481, 0.0117970845, -0.022981707, -0.011348402, -0.018907024, 0.004467532, 0.030519336, 0.066530816, -0.03831531, 0.0032868343, 0.0051921415, -0.033955514, -0.023431078, 0.020625822, 0.020004857, -0.008285928, -0.012105305, -0.0009875383, -0.001994285, 0.017833438, 0.030432856, 0.002975011, -0.020611575, -0.0127394255, 0.052022878, -0.021935072, -0.034071058, -0.011362879, -0.028170273, 0.06778041, -0.03769125, 0.044189993, -0.07506447, -0.04022367, -0.034551535, -0.0007412468, -0.09542496, 0.0030065773, 0.068854995, 0.0032295438, 0.065264955, 0.010049947, -0.09200439, 0.037839286, -0.0065534753, -0.0024878788, 0.07574119, -0.03837613, 0.030071113, 0.004991883, 0.046669945, 0.03792188, 0.07108639, 0.013277095, -0.011008294, -0.03518916, 0.02475014, 0.082018815, -0.014919691, -0.045328654, -0.037314028, 0.004569159, -0.039509952, 0.09867883, 0.05125777, -0.030760834, -0.013888093, 0.0015807925, -0.014967785, -0.010300074, -0.06752989, 0.011341798, -0.006588338, -0.022660665, 0.025502833, -0.0012112006, -0.01232611, 0.06761628, 0.028458042, -0.02053607, -0.04069253, -0.0083988765, -0.028953632, 0.0006526256, -0.057893887, 0.0042140814, 0.013649816, -0.037907697, 0.011250276, -0.024188615, -0.0027755557, -0.0075659696, -0.007544854, 0.010567404, -0.0401574, 0.010207524, -0.0012173644, 0.048143744, -0.07936933, 0.00020823564, 0.089551166, -0.06719634 ] }, { "values": [ -0.010374606, -0.041209877, -0.016949316, -0.02826972, 0.046685856, 0.039913885, 0.007588429, 0.0026143857, 0.008193588, 0.05327308, -0.00019778895, -0.005236623, 0.0031183192, 0.027295375, -0.05499159, -0.06403662, -0.038498785, -0.024214672, -0.113247655, -0.02515173, 0.05911054, 0.0050619002, 0.045921043, -0.04045624, -0.008057979, 0.03674858, 0.039210413, -0.0023779925, -0.01202654, -0.015773911, 0.05301469, 0.021754572, -0.013835229, -0.03068671, 0.009600129, 0.032823473, -0.1005332, 0.00036458467, 0.024937773, -0.062637866, -0.097349875, 0.016558804, -0.012240439, 0.014145605, -0.0491919, 0.0144526195, 0.007241715, -0.0037150574, 0.024929782, 0.013863528, 0.014521664, -0.02647448, -0.0026571795, -0.006208903, -0.029818378, -0.023384357, -0.050511375, -0.029578233, 0.08530115, 0.021062255, -0.02158943, 0.013513909, -0.017776478, -0.01507438, 0.012495885, -0.0494436, -0.086562574, 0.023505313, -0.04021181, 0.027211525, -0.0634031, -0.015525375, -0.050986033, -0.009982569, -0.019769324, -0.03516041, 0.004532364, -0.026810754, -0.06052863, -0.004067917, 0.02590819, 0.02869272, 0.04668733, 0.031069081, 0.041473504, 0.016908633, 0.061753035, -0.043992702, -0.016470667, 0.009846361, 0.044378836, 0.0046265777, -0.0051568244, -0.01383907, 0.038250815, -0.035272725, -0.04212879, -0.01784631, 0.004932849, 0.050490554, 0.0013868634, -0.017743573, -0.05506594, -0.07132579, 0.045223802, 0.0144594, 0.0022002778, -0.05181771, -0.040041536, -0.012090833, -0.05678208, -0.022508886, -0.0121487975, -0.02017201, 0.022570452, -0.026735252, -0.020805195, 0.019829718, -0.052128766, 0.001497456, 0.0022136904, -0.038254786, -0.037228137, 0.05121854, 0.03822367, -0.018816182, 0.0055177244, -0.034305017, -0.04240416, -0.05278559, 0.10373218, -0.081348576, 0.03563494, -0.03194013, -0.013856122, -0.026193082, 0.040947895, 0.0135126915, 0.021976728, 0.04753825, 0.003354079, -0.03208513, -0.012919274, 0.036986012, 0.0041473755, -0.012570712, 0.009637956, -0.018182747, -0.040943574, 0.030385712, -0.0778674, 0.02163998, 0.017638199, 0.028516471, -0.051202912, 0.059362058, 0.03738942, -0.04432597, 0.06929572, -0.023948673, 0.008719653, -0.0042336043, 0.007619013, 0.0225228, -0.062376548, 0.0018545196, 0.022301627, -0.07905105, -0.04010745, -0.043932084, -0.06603119, 0.009110008, -0.024199128, -0.08075352, 0.009597124, -0.010255112, -0.007396269, 0.04369643, -0.065987766, -0.043667458, 0.06318143, 0.030984849, -0.00612457, 0.0024949966, -0.022547599, 0.023824131, -0.005761232, 0.065906525, -0.023821639, 0.070069335, 0.044098202, 0.024150064, 0.060653403, 0.016128724, -0.03491291, -0.0005093264, 0.025318425, -0.04156784, -0.03834726, -0.025218956, 0.021415057, 0.004949902, -0.052740473, 0.057487153, -0.07086058, -0.018834665, -0.019258084, -0.028272077, 0.0642864, 0.0037372657, -0.0031901645, -0.014954173, 0.03212673, 0.012624344, -0.015130402, 0.02193361, 0.07461663, 0.052988384, 0.068668865, -0.043815292, -0.03338823, -0.035300676, 0.008171441, -0.0136039965, 0.05139354, 0.0037349814, -0.05236484, -0.02626662, 0.0020463518, -0.004441744, -0.0007649685, -0.020475166, -0.0031849425, 0.007032192, -0.02084993, 0.004292124, -0.012246999, 0.008130719, 0.020669159, 0.03013232, -0.033021197, 0.019322645, 0.0483436, 0.017386371, 0.04935942, 0.06113854, 0.016893871, 0.09620222, -0.026709478, 0.0047180397, -0.041440092, -0.0087444605, -0.03438858, -0.008243194, -0.026266972, 0.018618705, 0.029191334, -0.03459846, 0.0042059165, -0.025184773, 0.04494457, 0.004171739, 0.022157837, -0.03964069, -0.017116852, -0.070328295, -0.046131007, -0.024632521, 0.06971206, -0.00044962292, 0.009299085, 0.016134256, -0.05739065, -0.047983225, -0.011271976, 0.029070094, -0.028600276, -0.017449412, -0.0034960469, -0.04800463, 0.05518069, -0.03553613, 0.0045115883, 0.00579272, -0.019450907, -0.009650288, 0.0060495334, 0.0039607394, -0.043552153, -0.01585404, 0.015558918, 0.037620295, 0.027253048, 0.022938084, 0.033559706, -0.038920384, 0.016526798, -0.0028801428, -0.025165854, -0.007986016, 0.035331104, 0.10715334, -0.049809027, 0.007774803, -0.024069045, 0.008477701, -0.062168065, -0.017156133, -0.008674262, 0.003486701, 0.023774039, 0.008237164, -0.004865123, -0.0064138523, 0.013696432, -0.0024171155, -0.07929135, 0.033495847, -0.049071815, -0.027580664, 0.020714963, 0.013558305, 0.029214917, -0.04540829, 0.07764821, 0.005625137, -0.002511243, -0.031163817, -0.016610915, -0.01814254, 0.03369236, 0.032034364, 0.02053121, 0.029131167, 0.015179188, -0.017103024, 0.012025433, 0.007875763, 0.07658528, -0.022470562, 0.077181906, 0.010375587, -0.0016873595, 0.0452145, -0.023371343, -0.05755113, 0.059969947, -0.01498443, 0.0053035286, -0.049279734, -0.044085007, 0.07456693, 0.0035960197, 0.010170638, 0.035265017, 0.02831874, -0.009575322, 0.034946647, 0.029468276, -0.022085253, -0.02413626, -0.016028127, 0.024909936, -0.043552227, 0.0039861137, 0.010540812, 0.014966897, 0.030658625, -0.026482413, -0.054734655, 0.0068189623, 0.01858462, 0.040428717, -0.014517075, 0.04184724, -0.010590931, -0.003433669, 0.008884312, 0.002377597, -0.030702354, -0.045890972, -0.03774043, 0.013825522, 0.032130223, -0.013116809, 0.020896155, -0.06168919, -0.019927915, 0.032241974, 0.03168088, -0.04878397, 0.028222691, 0.0052861725, 0.034583732, -0.015654303, 0.073979825, -0.007387574, 0.0006300599, 0.04365388, 0.0031762223, -0.021631923, 0.020627163, 0.091900654, -0.007608169, -0.013129666, 0.027215239, 0.041160535, -0.026188979, 0.03679186, -0.049483187, 0.03510247, 0.0143361, 0.0068007736, 0.0002894331, 0.025563655, 0.038111538, 0.03205044, -0.047948025, 0.008454545, 0.021283684, -0.010287186, 0.054425355, 0.02175726, 0.04107335, -0.029105432, -0.08453756, 0.013890818, 0.02856137, 0.06397486, 0.0022116818, 0.0005799815, 0.039508313, -0.06673272, 0.027950523, -0.01963855, 0.005027007, 0.002328853, -0.0026643416, -0.017717442, 0.01004143, -0.021226289, 0.006400534, 0.080955245, 0.032026727, 0.013394995, 0.028240612, 0.0529908, 0.018157328, -0.033241183, -0.064722896, -0.030200273, -0.02215255, 0.009192553, -0.04875616, -0.023294456, 0.013641685, 0.006614328, 0.005411304, -0.03087193, 0.02120738, -0.096567705, 0.021486213, 0.058976457, 0.038107183, 0.015022613, -0.017503379, -0.037629094, -0.0073781973, 0.043778982, 0.05555762, -0.0075062085, 0.017192118, 0.004155515, 0.005558552, 0.029340066, 0.0120379375, 0.040081598, 0.037010115, 0.045559537, 0.026944827, -0.02743375, 0.028957838, -0.0019213461, 0.048923783, 0.056290176, -0.05780788, 0.0008670604, 0.022054847, -0.010372863, 0.049988836, 0.01612179, 0.044207282, 0.03584437, 0.03807102, -0.039176077, -0.06333443, -0.0009381741, 0.020916263, -0.039879907, -0.010638745, 0.056091145, -0.017622221, 0.016766023, -0.030637272, 0.037540708, 0.0043378402, -0.07032326, -0.04940167, 0.03187574, -0.0026214004, 0.022281181, 0.019212743, 0.047202997, -0.016012318, -0.01277852, 0.01957413, -0.08445052, 0.020613529, 8.7303444e-05, 0.06491627, 0.025469095, 0.001978669, 0.0645306, -0.03436633, -0.0531297, -0.023884172, -0.0029554882, 0.045523264, -0.0052824286, -0.013350781, 0.00732968, 0.06042804, -0.014720939, 0.043899015, 0.03158815, 0.020285664, -0.015093566, -0.0076182727, -0.039619025, 0.043745097, 0.0029001324, 0.01476092, 0.010907935, -0.016807022, 0.051530585, -0.018834125, 0.08344938, 0.031648815, -0.052749112, 0.05928464, 0.0394989, -0.023521172, 0.047871023, 0.035754807, -0.013470435, -0.05421024, -0.01875523, -0.05719502, 0.0022155284, 0.025345363, 0.049757615, -0.024984676, 0.008400028, -0.010457468, 0.005041363, -0.0028083378, 0.025721015, 0.030250419, -0.016308222, -0.025529629, -0.011139251, 0.027019834, -0.013333786, -0.01818858, 0.013687869, 0.026555605, 0.002023908, -0.020043956, 0.039620046, -0.010037139, 0.04864779, -0.023740988, 0.056406934, -0.024096299, 0.006109241, 0.07431302, -0.030617142, -0.025089758, -0.015856987, 0.020596396, -0.016279258, 0.026575532, -0.009977439, 0.006577727, 0.06751425, -0.030193996, 0.022782085, -0.06335253, 0.03990736, 0.027707597, -0.0119454665, 0.00940835, 0.032421958, 0.01785038, 0.007411619, 0.01342027, -0.071974546, -0.0454367, 0.0343888, -0.027783426, -0.05255495, 0.014940228, 0.01595773, 0.024341745, -0.06439156, 0.016356083, -0.04390409, -0.06569876, 0.033595093, -0.011170949, 0.030351931, 0.036884192, -0.015322044, -0.018845329, -0.029650034, -0.005651407, -0.009758541, 0.038023826, -0.012586695, -0.008725272, -0.026558684, 0.027302988, 0.024395926, -0.016470632, -0.010688986, 0.04210806, -0.040134184, -0.012626429, 0.006360845, -0.04854481, 0.02736305, 0.0002653276, 0.013800923, 0.005123759, -0.08874563, 0.069585375, -8.603149e-05, 0.012960344, -0.027888566, 0.043577295, 0.029653423, 0.05581468, -0.010586617, -0.035002828, -0.044225022, -0.021480707, -0.01654155, 0.002843154, -0.0060632136, -0.007657286, -0.00708998, -0.055213083, 0.032011718, 0.04472983, -0.019543812, 0.04038296, -0.011171595, -0.0035027124, -0.0012391557, -0.018134788, 0.035546295, 0.0073750312, 0.042729758, 0.037931666, -0.016884387, 0.007525536, 0.0024004206, -0.05620297, -0.019344732, 0.04555461, 0.032119047, -0.027897678, -0.016715676, 0.014764222, -0.009536687, 0.038651265, 0.01258145, -0.009844183, -0.006340872, 0.0044663893, 0.04830362, -0.040988166, 0.00038442042, 0.013068718, -0.022777902, 0.04678219, -0.04451012, 0.037848502, -0.044347137, -0.0024391026, -0.018986085, -0.02085454, -0.08854144, -0.031061029, 0.06817414, -0.0110931555, 0.06457042, 0.01654489, -0.076566875, 0.0034236268, 0.005122251, 0.011425873, 0.07193609, -0.017881364, 0.045318246, 0.030021917, 0.037099134, 0.045040414, 0.054738656, -0.019023687, 0.00023847779, -0.04332033, -0.0070100226, 0.08496174, -0.0032540206, -0.07747245, -0.03544072, 0.025131203, -0.03859293, 0.103292964, 0.04116854, -0.043195162, 0.03929507, 0.0030587355, -0.0015577802, -0.018555084, -0.023947623, 0.018690392, -0.034381624, -0.00980492, 0.011740741, -0.019400649, -0.026186345, 0.041776024, 0.021554371, -0.010293277, -0.0031524547, 0.003478005, -0.022384375, -0.0012397331, -0.09550477, 0.0046615056, 0.011082607, -0.012890196, 0.018360468, -0.024192644, 0.004173202, -0.015079545, 0.002732746, 0.016618928, -0.008683406, -0.021573728, -0.034373697, 0.05759162, -0.107766464, -0.038046595, 0.0522562, -0.08125677 ] }, { "values": [ -0.017653143, -0.008798695, -0.06494289, -0.05644184, 0.042801842, 0.046141796, -0.015921144, 0.012112754, 0.008213408, 0.057936847, -0.037183437, 0.025843617, 0.01160187, 0.023658935, -0.074900545, -0.04853277, -0.0252306, -0.0162866, -0.0624081, -0.018319227, 0.047789034, 0.0031211877, 0.026273614, -0.11316254, -0.040670235, 0.075365394, 0.047865573, -0.033151187, -0.00028220107, -0.045956712, 0.034550354, 0.009526666, -0.008246149, -0.01028951, 0.063811645, -0.0053568203, -0.06645079, 0.030308578, 0.010603491, -0.044056993, -0.08578033, -0.010332037, -0.040746707, 0.037707936, -0.041352928, 0.0028026062, -0.011808737, -0.0019942317, 0.0033212057, 0.03660204, 0.02088596, -0.046590947, -0.008319227, 0.009007052, -0.0030476144, -0.018789392, -0.036296077, -0.042627063, 0.10518295, -0.00332285, -0.047213096, -0.007065059, -0.023802979, -0.012726318, 0.017283037, -0.044385158, -0.036382828, 0.031713683, -0.044581436, -0.00031570435, -0.028909307, 0.0031012208, -0.011343351, -0.023824284, -0.00336389, -0.027999625, -0.014978775, 0.022948764, -0.04681696, 0.022532864, 0.0017566786, 0.0029632673, 0.04328754, 0.03434847, 0.036467128, -0.0006143901, 0.048126545, -0.028119199, -0.001978324, 0.03561853, 0.043769255, 0.006169458, -0.024604546, -0.010544648, 0.013215132, -0.007898264, -0.05802972, -0.0011224776, 0.0024521581, 0.08392941, -0.01954182, -0.0044899727, -0.049723737, -0.05471483, 0.03721877, 0.0018161713, 0.0024185495, -0.040326085, -0.024205096, 0.00772748, -0.03138619, -0.016963912, -0.0436639, -0.042229183, 0.08416578, -0.007456267, -0.0008653986, 0.012794631, -0.024892135, 0.0031753334, 0.03550057, -0.00251262, -0.038359456, 0.030576622, 0.039663706, 0.009436882, 0.015783414, -0.05853276, -0.046409182, -0.06259796, 0.11273506, -0.07702582, 0.0014270912, -0.022201238, -0.021910055, -0.021899948, -0.0015977634, 0.040646046, 0.0079346, 0.024378836, 0.0007959308, -0.017005738, 0.0043267095, 0.0050081937, 0.002123222, -0.033683896, -0.0104143955, 0.0038428141, -0.04630225, 0.014156411, -0.059382312, 0.022481084, 0.022882076, 0.0067827697, -0.0613218, 0.023540996, 0.02897276, -0.04052042, 0.03545419, -0.015365847, 0.049591713, -0.028727464, 0.044619087, 0.013367354, -0.03439224, 0.0054373727, 0.027985625, -0.099896096, 0.005717687, -0.034244902, -0.009053948, 0.0473445, -0.021265047, -0.111569725, 0.05193897, 0.019727778, -0.0143835945, 0.0745408, -0.041845843, -0.0399532, 0.07113663, -0.004199807, 0.007353252, -0.030149959, -0.0310839, 0.029710563, -0.011503636, 0.049494855, -0.019181592, 0.06284771, 0.012500572, -0.023360489, 0.04728959, 0.030134272, -0.02504532, 0.054394677, 0.013936723, -0.035746586, -0.04157695, -0.06098275, 0.0382816, 0.0050807996, -0.032862738, 0.038373906, -0.057663757, -0.017177947, -0.05123265, -0.042124398, 0.036417525, 0.05256952, -0.016220108, -0.024701063, 0.011113896, -0.016511105, 0.006091641, -0.0018370751, 0.040890776, 0.036561478, 0.052745704, -0.036781967, -0.007912306, -0.01683749, 0.009728425, 0.00964284, 0.060841523, -0.01744901, -0.046651635, -0.020442968, 0.022172017, 0.023009703, -0.0017785132, -0.023041936, -0.024374688, -0.011198948, -0.007950748, 0.05541591, -0.016443655, 0.007754019, 0.017569726, 0.01139416, -0.013228172, 0.022160191, 0.07550315, -0.0038742945, 0.03920975, 0.044811655, 0.05212867, 0.111254856, -0.04221115, -0.002954308, -0.052055556, -0.008632897, -0.040419575, 0.023140943, -0.012521457, 0.03576639, 0.014315293, -0.014424572, -0.007419966, -0.024563868, 0.095054686, 0.00027068576, 0.0024300576, -0.06954999, -0.00944397, -0.07597038, 0.010460205, -0.036133427, 0.05967256, 0.0052059703, 0.022297038, -0.011046617, -0.041469686, -0.058506384, 0.0012304467, 0.014112627, -0.014861613, -0.012755341, -0.019562142, -0.072168715, 0.0069074556, -0.018810753, -0.024858506, 0.012782734, 0.004258203, -0.00609302, -0.0004168659, -0.03775231, -0.05543691, -0.056329526, 0.034942713, 0.058748957, 0.03323085, 0.021131938, 0.014578102, -0.033425506, 0.012798567, 0.0118723, 0.0068936986, -0.0298713, 0.049480233, 0.09979468, -0.04828833, 0.012557083, -0.032430843, 0.03794998, -0.05919946, -0.040494893, -0.014686344, 0.018092563, 0.034746848, 0.031210061, -0.016913598, -0.004016849, -0.013569932, -0.016985744, -0.056580927, 0.0313996, -0.060883213, -0.05555269, 0.06286938, 0.03757254, 0.0060527446, -0.04083608, 0.058683325, -0.020779112, 0.00855293, -0.051816516, -0.010732863, -0.0314964, 0.028432969, 0.021511134, 0.015141613, 0.0012787837, -0.0017673585, -0.023297334, -0.024448087, 0.0074980697, 0.079517074, -0.0040460317, 0.039099157, 0.038017288, 0.01856757, 0.04230867, -0.022297105, -0.0005368582, 0.021023348, 0.015262099, 0.025235193, -0.057097137, -0.027170897, 0.06140281, 0.0009304015, 0.020069517, 0.061553087, 0.024960613, 0.008739044, 0.05917318, 0.017893841, -0.048834883, -0.03681438, -0.021364223, 0.018958611, -0.039228536, 0.0025120506, -0.007534621, 0.01769539, 0.012618859, -0.03443597, -0.051998854, 0.005072422, 0.028609244, 0.038168922, -0.0038771736, 0.02758243, -0.06885768, 0.020371063, 0.010030348, 0.011441852, -0.010685944, -0.06192118, -0.057104763, 0.013391202, -0.0070061586, -0.004671001, 0.041540958, -0.075331405, -0.037899956, 0.00461457, 0.01866925, -0.03105509, 0.001187266, 0.01433554, 0.030935371, -0.023792172, 0.044840753, 0.011735325, 0.026132422, 0.063139476, -0.0052517704, -0.0273255, 0.02848952, 0.039037645, 0.0042150267, -0.009629843, -0.0057030525, 0.04656266, -0.019479418, 0.023228996, -0.040343665, 0.050764933, 0.0006464682, 0.0025843903, 0.013814757, 0.026871039, 0.048731443, 0.021104753, -0.015460838, -0.0039862166, -0.017052598, -0.003186819, 0.020979399, 0.016311094, 0.07452715, -0.008512117, -0.05900361, 0.026971705, -0.008036397, 0.06212055, -0.02303903, 0.012229907, 0.045038972, -0.050584443, 0.018377798, -0.009180133, 0.005037922, -0.020531036, 0.014485538, 0.0067010084, -0.018770413, -0.013188842, -0.028018894, 0.11714622, 0.045117024, -0.052655853, 0.018028291, 0.026448298, -0.01837695, -0.011762361, -0.043930873, 0.00074966723, -0.005718338, 0.002731807, -0.0689079, -0.005024242, -0.008889841, 0.03540113, -0.0100267, -0.044055585, 0.04180144, -0.050620254, -0.00065449957, 0.05118498, 0.054256655, 0.012638184, -0.03443957, -0.03558576, -0.0031074465, -0.0017980445, 0.03618453, 0.019587144, 0.00023319514, -0.009002863, 0.047207862, 0.024083143, 0.01720606, 0.034684077, 0.031126216, 0.021295153, 0.023131113, -0.043710846, 0.031455897, -0.026252441, 0.05855333, 0.044139493, -0.052871395, -0.00047823723, -0.008103215, -0.03224784, 0.019436285, -0.0036216876, 0.045316264, 0.04929576, 0.034217466, -0.024709374, -0.07700623, 0.02546976, 0.0017929539, -0.030650713, -0.033281952, 0.04929646, 0.011808795, 0.038174357, -0.028017951, 0.03637243, -0.009542338, -0.055955835, -0.04785048, 0.020356737, 0.003974764, 0.00029797427, 0.04766503, 0.080921404, 0.014916625, -0.037992176, 0.05156985, -0.08135296, 0.016174449, -0.02499475, 0.058287513, -0.0149272075, -0.004520562, 0.083099306, -0.045918543, -0.04284605, -0.0013389494, -0.05240202, 0.046031795, 0.03016301, -0.04282333, 0.037398286, 0.065429136, -0.01326876, 0.048140217, 0.014338189, 0.015004167, -0.041298985, -0.0023770714, -0.02975618, 0.057118867, 0.0008371498, 0.019713435, 0.03956456, 0.006191441, 0.06662806, -0.036988463, 0.08511884, 0.029693319, -0.043132078, 0.08021926, 0.015842525, -0.017456165, 0.021360768, -0.005482575, -0.015990367, -0.050820027, -0.016149743, -0.046831403, -0.008275905, 0.020962607, 0.06151815, -0.037440427, 0.0511319, 0.02343525, -0.02544215, -0.029816648, 0.03577234, 0.014281527, -0.017290082, -0.046915233, 0.011759081, -0.0033036633, -0.023165634, -0.008982681, 0.023960192, 0.022643948, -0.036773853, 0.011400318, 0.042408865, 0.0033904277, 0.040621415, -0.005429437, 0.04901449, -0.030955061, -0.04384149, 0.014814511, 0.01111605, -0.060977776, 0.0055474914, 0.02395026, -0.019800354, -0.0116304485, -0.0010356485, -0.0029000328, 0.037888058, -0.028894326, 0.03220657, -0.041865055, 0.03421341, 0.036715634, 0.012627774, -0.008065046, 0.008669792, -0.010303533, 0.026011793, 0.02848154, -0.020600403, -0.05035164, 0.029304825, -0.0134834945, -0.0140878605, 0.026604537, 0.032025125, 0.017051645, -0.025320528, 0.033887826, -0.04674598, -0.0661119, 0.036098626, -0.0025445523, 0.0012243675, 0.06329415, -0.005952806, 0.0021176478, -0.03960343, -0.024705233, -0.005682745, 0.05299257, 0.0011672504, -0.015452556, -0.061072666, 0.002712803, 0.05316379, -0.0051711686, -0.011829536, -0.012378469, -0.042130854, -0.004418671, 0.02997231, -0.060963247, 0.044250492, -0.0064378576, 0.015659021, 0.035938866, -0.06313153, 0.0474737, -0.021516545, 0.02191394, -0.035791587, 0.03283547, 0.0026947362, 0.022741565, -0.02738988, -0.03018615, -0.022370778, -0.02698663, -0.046134744, -0.017652526, 0.010138486, 0.023047391, -0.0085430695, -0.018513598, 0.034389786, 0.025685636, -0.020372817, -0.0023216456, -0.024212072, 0.02819113, -0.01196242, -0.040278543, 0.00477269, 0.01850752, 0.021242116, 0.027017929, -0.01822151, 0.009329355, 0.01152376, -0.060703877, -0.043066334, 0.031345192, 0.017597616, -0.052964468, -0.016331265, 0.012168223, -0.0036743286, 0.045339677, 0.029036297, -0.017034683, -0.016926207, 0.032845616, 0.05071024, -0.016455265, 0.0009802595, 0.022136064, -0.032005645, 0.049180496, -0.06363572, 0.06305885, -0.07648465, -0.028207371, -0.02105452, -0.020717252, -0.027791295, -0.011981124, 0.046701036, 0.03871292, 0.043063182, -0.008797546, -0.06723619, -0.000101141624, -0.024469273, -0.017909084, 0.058929242, -0.008403292, 0.012729747, 0.017227935, 0.03000668, 0.06950718, 0.06517461, -0.03636505, -0.009151626, -0.051011197, -0.023467846, 0.044008344, -0.00026435123, -0.016379483, -0.052681293, 0.019273354, -0.07847944, 0.10087346, 0.037655097, -0.04058346, 0.0153098535, 0.028922983, -0.013828011, -0.010629865, -0.043785583, 0.03060549, -0.02172344, -0.0013216138, 0.020524388, -0.015994625, -0.019796165, 0.03697384, 0.0148528805, -0.024506666, 0.001709175, -0.01911945, 0.003671715, 0.049300965, -0.053311143, 0.021770047, 0.05005073, -0.010936651, 0.047177013, -0.011207951, 0.0056375857, -0.007893272, -0.0004152601, 0.0140621215, -0.03694893, -0.010580492, -0.023617968, 0.046672534, -0.07307372, -0.019924397, 0.061414044, -0.04875016 ] }, { "values": [ -0.022831907, 0.013265972, -0.039024536, -0.041449726, 0.018054608, 0.053402945, -0.006042171, 0.02846018, 0.0036498238, 0.004619528, 0.0012300909, 0.014927643, 0.02525106, 0.07245878, -0.059864126, -0.060839355, -0.015705299, -0.021759886, -0.11972174, 0.004380329, 0.062722646, 0.02536488, 0.029020695, -0.07843485, -0.03940974, 0.022201298, 0.034232803, -0.03448551, -0.012091084, -0.0094608115, 0.02689538, 0.013252712, -0.017174736, -0.021804133, 0.024776865, 0.053068947, -0.04960055, 0.025940303, 0.028055126, -0.059966866, -0.037410777, -0.05864277, -0.02527661, 0.052195374, -0.018001296, 0.010489125, 0.009787013, 0.03368749, -0.0022072485, 0.033731926, 0.044211175, -0.054721624, -0.037434638, 0.011528423, -0.01845045, -0.06279354, -0.054418504, -0.03060051, 0.106897965, 0.02850398, -0.03750167, 0.031669926, -0.061478805, -0.03293997, 0.020365255, 0.006632833, -0.052453376, 0.0083823195, -0.05465174, 0.00036042515, -0.021827923, 0.011747552, -0.0100267045, -0.015748251, -0.0021606695, -0.011491381, -0.013156437, 0.004893636, -0.02821495, 0.018576324, -0.012769025, 0.008890152, 0.013346282, 0.019339953, 0.029691692, -0.008927903, 0.043541405, -0.02688901, -0.015217191, 0.022621004, 0.01898406, -0.0010767259, -0.009408504, -0.028909788, 0.019440185, 0.0027775196, -0.06441229, -0.019302562, -0.014890606, 0.0655365, -0.038296767, 0.021985205, -0.013332174, -0.028658072, 0.032221615, 0.04370199, -0.0026823087, -0.044887606, -0.043593105, 0.010289599, -0.027523573, -0.043424997, -0.013860042, 0.0006275024, 0.059367295, -0.031710558, 0.019631892, 0.014821296, -0.039804947, -0.014667943, 0.013746254, -0.024634622, -0.04098735, 0.03883073, 0.03858442, -0.0075714234, -0.057697132, -0.040336516, -0.06634281, -0.03517132, 0.10236515, -0.07936657, 0.005315483, -0.05517823, -0.046444416, -0.015671607, 0.040074877, -0.0078895325, 0.0029189494, 0.045294225, -0.0037619446, 0.0029927143, -0.0055489023, 0.0005118375, 0.039011866, -0.010187028, 0.008190273, 0.010276298, -0.07103347, 0.0107079735, -0.047155913, 0.0070542055, 0.047493905, 0.004677911, -0.059168577, 0.05886089, 0.0030120069, -0.038170755, 0.042505916, -0.0407943, 0.039787997, -0.04330862, 0.009548792, 0.05311608, -0.06989108, 0.0078309, 0.047473975, -0.091943756, -0.009010331, -0.035225105, 0.004203145, 0.04722468, -0.022963267, -0.07723089, 0.031382002, 0.04432674, -0.03478669, 0.06351641, -0.05051442, -0.040817384, 0.05463463, 0.03948654, -0.0026292359, 0.0046504047, -0.022412037, 0.025494942, 0.0025021543, 0.029602222, 0.0139997285, 0.074607335, 0.006993296, 0.02102504, 0.03983982, 0.023677746, -0.030199008, 0.03742222, 0.0054563065, -0.049447294, -0.00017523185, -0.031328037, 0.008720265, 0.008764372, -0.038029674, 0.025920555, -0.03151997, -0.024592532, -0.008009421, -0.010574416, 0.073050395, 0.0560293, -0.030952157, -0.00777517, 0.03397402, -0.03449354, 0.0042485315, -0.012494163, 0.07453801, 0.03992764, 0.082686566, -0.042496122, -0.020527562, -0.02005401, 0.0059531983, 0.011952228, 0.070224926, -0.025464697, -0.023057427, -0.005664553, 0.0035363291, -0.018619105, 0.01119204, 0.0052718576, -0.0024728782, 0.009378621, 0.0057232385, 0.060219634, 0.015767438, 0.017017793, -0.020400079, 0.020276278, 0.01729927, 0.005354246, 0.040282182, 0.016206268, 0.029095601, 0.050636623, 0.036530476, 0.09118629, -0.034238447, -0.027530206, -0.015643742, 0.003939283, -0.0072940993, 0.00821959, 0.010591679, 0.027612453, 0.022655323, 0.021738509, 0.0104786735, -0.04828971, 0.07558196, -0.0024375985, -0.010130437, -0.054171342, 0.008225761, -0.06923104, -0.008206418, -0.016407888, 0.06075953, 0.004066998, -0.032110333, 0.0129941115, -0.053790428, -0.047416754, 0.00092813827, 0.031292856, -0.008476336, -0.030551977, 0.0050248946, -0.0533445, 0.013162199, 0.0011951614, -0.012551009, 0.01693535, -0.019522088, -0.021182502, -0.011643433, 0.0056120344, -0.034619395, -0.036334764, 0.03722541, 0.04887969, 0.0051381984, -0.005980334, 0.037145477, -0.056388993, -0.003824905, 0.015642574, -0.0058131577, -0.014250291, 0.035472836, 0.08810036, -0.05147161, 0.005134685, -0.026457734, 0.036627926, -0.049566824, -0.039878346, 0.007735619, 0.0073516117, 0.019798217, -0.009135228, -0.023399748, -0.01749847, 0.010996501, 0.0041380343, -0.10240494, 0.025426405, -0.043105178, -0.044879235, 0.0310945, 0.008175979, 0.025069114, -0.027605444, 0.0743554, 0.0018203654, 0.017713757, -0.017046582, -0.022542788, -0.042712152, 0.03186037, 0.021733956, 0.010471086, 0.009538892, -0.0077503747, -0.015814066, -0.034356873, 0.0385135, 0.06013076, 0.0072486955, 0.06996268, 0.027199784, -0.017319739, 0.037172545, 0.008840885, -0.039531916, 0.015813751, -0.03752228, 0.020174405, -0.08364743, -0.025709365, 0.05471361, 0.003739039, 0.012001421, 0.036673468, 0.02819766, -0.024844363, 0.030901438, 0.0027895628, 0.0016832466, -0.01845714, 0.0034197296, 0.03145568, -0.028549068, 0.0095205065, 0.005440783, 0.006451116, 0.020124538, -0.06015574, -0.036487326, -0.0077914437, 0.034011822, 0.042244803, -0.023359243, 0.042217497, -0.05602403, 0.033808842, 0.012835483, 0.04124116, -0.03859759, -0.060586747, -0.042462204, -0.0085808765, -0.0010535219, 0.0012897085, 0.028437808, -0.05330887, -0.027856933, 0.0113251405, 0.0069851247, -0.007962399, -0.001867609, 0.0034075228, 0.024350896, -0.023480276, 0.05942917, -0.013322892, 0.039777465, 0.052124023, 0.026964262, -0.0032293883, 0.03140347, 0.0679365, -0.006404251, -0.0055305, 0.008418578, 0.034614343, 0.003788024, 0.036276255, -0.04782492, 0.05066834, 0.004078958, -0.027863516, -0.023474846, 0.013281772, 0.01817379, 0.015084985, -0.057690453, 0.0020660458, 0.010243892, -0.02073906, 0.0068867574, 0.024637066, 0.06892149, -0.010197244, -0.06492427, 0.017494915, -0.008905379, 0.023401393, 0.013988954, 0.024277497, 0.05776015, -0.0646268, 0.03687423, -0.023215389, -0.036319662, -0.026383169, -0.021674264, 0.01604985, 0.014983376, -0.036510736, -0.020910159, 0.10415452, 0.027778957, -0.012904226, -0.014799573, 0.011001797, 0.0032294393, -0.03446519, -0.062003765, -0.01745385, 0.021249887, 0.00583486, -0.044246122, 0.00492929, 0.010030208, 0.019401643, -0.03347771, -0.04528791, 0.014076483, -0.04911074, 0.009778022, 0.043228615, 0.053387884, -0.021102035, -0.037687503, -0.05518792, -0.0051591997, 0.009686123, 0.050357964, -0.02050635, -0.016086238, 0.016121246, 0.029675415, 0.023654474, 0.015415461, 0.013727605, 0.0369596, 0.020535031, 0.016035974, -0.05761047, 0.03009249, -0.04164795, 0.051267937, 0.05578175, -0.055875085, 0.013319814, 0.044186134, -0.014036955, -0.00047116913, 0.012552614, 0.05354125, 0.051129937, 0.016222002, -0.012852119, -0.09984781, 0.03639496, 0.012755592, 0.0027568655, -0.0072650993, 0.057773083, -0.0006564293, 0.019625276, -0.04447158, 0.019703215, 0.0104900915, -0.044071004, -0.042023387, 0.03860614, -0.00940309, 0.027642373, 0.0362219, 0.04948879, 0.0064394297, -0.038016584, 0.044035453, -0.09478232, -0.006523545, 0.033812176, 0.06658632, 0.038990818, -0.033906687, 0.06948017, -0.042681016, -0.0219677, 0.00845658, -0.059387397, 0.017138025, 0.026739167, -0.04749558, 0.0064208265, 0.038947336, -0.04811609, 0.054156296, -0.0059353993, 0.028216705, 0.0060909474, 0.00035716378, -0.056400012, 0.06853952, -0.002063272, 0.02767888, 0.020632464, -0.03091623, 0.08059546, 0.024018588, 0.114903025, 0.016389811, -0.06271218, 0.09023878, -0.0034503918, -0.0068759015, 0.030497134, 0.03560934, -0.023028065, -0.026998742, -0.040848326, -0.075533725, -0.009129377, -0.0057996986, 0.034287143, -0.022381032, 0.03137099, 0.004175737, 0.0016565905, -0.0025826348, 0.037796155, 0.008007153, -0.018225724, -0.040492617, -0.013195625, 0.0110012, -0.03842624, -0.011019978, 0.0032724864, 0.050674077, -0.0019943598, -0.012117385, 0.031099748, -0.03535841, 0.022036072, -0.014714761, 0.07587432, -0.04647852, -0.045876935, 0.012852137, -0.0053533353, -0.04195326, 0.014453994, 0.0353052, -0.02987384, 0.007292343, 0.006933589, -0.0015227089, 0.03263092, -0.03395711, 0.016318215, -0.040731218, 0.03282107, 0.03247314, 0.0241251, 0.00024171647, 0.0052455137, 0.02521041, 0.016948942, 0.036138725, -0.015062098, -0.031028125, 0.052595574, -0.01542375, -0.024217699, 0.010292934, 0.015790377, 0.022224054, -0.015337429, 0.03560911, -0.03538001, -0.023605775, 0.06453199, -0.014672669, -0.0063243983, 0.04317388, -0.021600166, 0.0038579365, -0.040046632, -0.014700265, 0.014296164, 0.038130727, 0.00661754, -0.023487015, -0.050070822, 0.014302826, 0.07001803, -0.015445321, -0.014996024, -0.006298761, 0.005142972, -0.01444643, 0.008948467, -0.07784701, 0.031175025, -0.021548778, 0.00035967946, 0.045173086, -0.05076917, 0.047257505, -0.008958824, 0.0011293278, -0.013264048, 0.061153594, 0.03229155, 0.0633449, -0.017072786, -0.047665197, -0.032700036, 0.0050705536, -0.034322046, 0.0045477394, 0.015038286, -0.007003061, -0.03643443, -0.038836982, 0.04912872, 0.06847717, -0.024568316, 0.0030247464, -0.001623336, -0.0044243927, -0.011113075, -0.017186226, 0.010972085, 0.026626633, 0.00046624203, 0.034804035, 0.03167911, -0.0019735268, -0.010846047, -0.05237494, -0.04424294, 0.019815793, 0.004164356, -0.013465586, -0.01034194, 0.028896084, -0.00049996586, 0.052443366, 0.033247534, -0.012846475, -0.023641938, 0.054826137, 0.05936757, -0.049427275, 0.011728995, 0.00983823, -0.023163736, 0.07872427, -0.035806466, 0.026909309, -0.07682005, -0.00975212, -0.050884616, -0.057147432, -0.045325615, -0.018351123, 0.05700655, 0.025925018, 0.023678267, 0.010039355, -0.072746485, 0.03374373, -0.02879983, 0.0132904835, 0.059313126, -0.021429194, 0.041014057, 0.015052148, 0.040202964, 0.03472175, 0.010536266, -0.005533832, -0.023011813, -0.08210976, -0.019241216, 0.10458716, 0.021341637, -0.04317226, -0.04456977, 0.036406647, -0.029671548, 0.0676526, 0.04934567, -0.042880204, -0.0050285296, 0.029012483, 0.015787307, 0.0060147345, -0.015704967, 0.012206678, -0.032169145, -0.005922455, 0.042071827, 0.008494296, -0.030821348, 0.018853774, 0.035854522, -0.008906657, 0.012669795, 0.011839099, -0.011259674, -0.022197751, -0.06589226, 0.026491228, 0.058948353, -0.005497629, 0.057562917, 0.021955313, 0.028689459, -0.022851052, 0.0020574227, -0.026841564, -0.026255922, 0.011450574, -0.010739636, 0.03667332, -0.10453783, -0.020678023, 0.07559399, -0.059053656 ] }, { "values": [ -0.005359829, -0.04137012, -0.03199632, -0.053798214, 0.012051302, 0.030368485, 0.019883933, 0.03352304, -0.0095046265, 0.048189647, 0.0036963613, 0.040183336, 0.015685778, 0.025569603, -0.04543827, -0.049572285, -0.016434489, -0.009916496, -0.10585377, 0.0042843106, 0.021256942, 0.028221926, 0.014980398, -0.08168418, -0.008480732, -0.011326323, 0.031802226, -0.025109781, -0.012606625, 0.0040288013, 0.02208887, 0.012332138, 0.010111946, -0.009382704, 0.051887885, 0.015827185, -0.05803171, 0.021769056, 0.010489845, -0.07203406, -0.065821715, -0.032312647, 0.0034814982, 0.002350108, -0.04973871, 0.0029543927, 0.021072838, -0.0023742502, -0.0063603087, 0.02695232, 0.024747934, -0.022556221, -0.027156552, -0.0014503375, -0.023819795, -0.05853722, -0.044099644, -0.043625202, 0.064317554, 0.018852454, -0.015309858, 0.04952701, -0.027636513, -0.03028444, -0.022121808, -0.0018841731, -0.05015939, 0.004727543, -0.06529099, -0.0029132322, -0.056871317, 0.02665635, -0.0044410047, 0.0034775315, -0.044639964, -0.023739375, 0.0051394887, -0.006359996, -0.054548696, 0.0048225145, 0.016424214, 4.6150886e-05, 0.05753281, 0.04164251, 0.054303743, 0.0053069755, 0.06384845, 0.012217542, -0.028032998, 0.008776871, 0.025168493, -0.021560473, 0.0107720215, -0.017870337, 0.04498876, -0.009538864, -0.049472224, -0.05758626, 0.0014188547, 0.089088306, -0.04200994, 0.001424658, -0.056770124, -0.042471923, 0.05029783, 0.043721065, -0.008567919, -0.04357651, -0.03665278, -0.009063341, -0.031203292, -0.043981373, -0.037674185, -0.006027047, 0.043795813, -0.021424903, 0.025156993, 0.027008966, -0.024150265, 0.023787785, -0.0058312416, -0.009072722, -0.048599407, 0.0054970337, 0.01063086, -0.010816665, -0.039946392, -0.07263252, -0.023347346, -0.04784062, 0.06439072, -0.1306386, -0.030837763, 0.014836701, -0.033783354, -0.019065114, 0.0033574014, -0.00853697, -0.04545122, 0.0066382606, -0.0001870512, 0.005849149, 0.005663839, 0.01651039, 0.033465363, 0.008122178, -0.006636044, 0.044551503, -0.04603631, -0.012090045, -0.07176712, 0.03702738, 0.049480017, 0.0032961261, -0.099401, 0.052913714, 0.035213273, -0.0066195647, 0.03969406, -0.023355337, 0.027189309, -0.026559329, -0.0077193924, 0.038384777, -0.08232717, 0.023969768, 0.052918527, -0.054327317, -0.010457993, -0.08276013, 0.029873753, 0.030532077, -0.026252426, -0.070250064, 0.032309044, -0.0046279524, -0.010867785, 0.050438445, -0.026219351, -0.059364587, 0.027617758, 0.03228356, 0.005847663, -0.027740581, -0.013230521, 0.020501317, 0.009223042, 0.07475622, 0.0419469, 0.075790584, -0.010250817, 0.000103077895, 0.01892515, 0.005290989, -0.0038058574, 0.024218211, 0.017739777, -0.017220058, -0.03630027, -0.054660935, 0.021493725, 0.03223626, -0.026895436, 0.06156814, -0.02166327, -0.02713109, -0.068264574, -0.03118656, 0.06964796, 0.014595957, -0.024128562, 0.008249284, 0.02362358, -0.00908562, -4.3153188e-05, -0.013655945, 0.08036414, 0.0020294434, 0.050015375, -0.04306139, -0.041495044, 0.018356116, -0.0034859397, -0.011459687, 0.06373967, 0.010536026, -0.010713449, 0.0043826294, -0.02277629, -0.057560094, -0.014579403, 0.0054389555, -0.010309153, 0.012724281, 0.0057900255, 0.054823343, 0.01786048, 0.006580911, -0.044053428, 0.0062652063, -0.015574532, 0.02102558, 0.06762419, 0.007350171, 0.004789527, 0.04760755, 0.040163063, 0.066195525, -0.03232361, -0.030351663, -0.009444046, -0.0060897353, -0.021567559, -0.023523083, -0.037958793, 0.0028193023, -0.011018602, -0.008336085, 0.008068109, -0.05561459, 0.061010815, -0.022447284, 0.022640295, -0.025020855, -0.01251315, -0.07814911, 0.0029597024, -0.012000677, 0.05915723, -0.012627196, -0.007043252, -0.0038090018, -0.048685264, -0.07008485, 0.0100088855, 0.044970352, -0.010012635, -0.029491125, -0.05824174, -0.04211174, 0.03693803, 0.0064417636, -0.0138865495, 0.014038433, -0.0022016522, -0.01654076, -0.013932678, 0.019384002, -0.030716209, -0.009190432, 0.038685825, 0.052487195, 0.010504578, 0.017060133, 0.041447215, -0.049740937, 0.014496705, -0.002714662, -0.017003197, -0.034403022, 0.009190998, 0.09859414, -0.0396798, 0.035900947, -0.025903113, 0.010041797, -0.053712927, 0.0001133996, -0.027337361, 0.0025958917, -0.00023506623, 0.032437734, -0.07409209, 0.005965304, -0.010784991, 0.00018164919, -0.08733106, 0.0473856, -0.039526142, -0.034159493, 0.02220093, 0.0042086896, 0.009876608, 0.0051613697, 0.04597767, -0.010976456, 0.022577059, 0.007440145, -0.009382941, -0.054120265, 0.02082124, 0.029674256, 0.01235162, -0.013736985, -0.017166313, 0.011269795, -0.024722092, 0.04483372, 0.025515052, -0.007895266, 0.041963246, 0.012611578, -0.018929832, 0.054667998, 0.029618727, -0.008712319, 0.012609321, 0.0017174977, 0.0068962714, -0.05060328, -0.010468404, 0.07931983, 0.030198421, -0.020285867, 0.032696526, 0.025869986, -0.002617598, 0.056874547, 0.005568597, -0.0016568489, -0.018860664, -0.025444731, 0.03375227, -0.03335812, 0.011581879, 0.008789991, 0.009732038, 0.03206325, -0.06397846, -0.035860524, -0.00092423667, 0.012511814, 0.06564973, 0.00272855, 0.060341474, -0.043199334, 0.0019297173, 0.009533243, -0.023419468, -0.036216583, -0.051641945, -0.062124018, -0.008045017, -0.014844373, -0.012467697, 0.026125548, -0.044010833, -0.02389144, 0.027286453, 0.031980544, -0.016090805, 0.044497468, -0.008203532, 0.035943802, -0.0018406432, 0.07523563, 0.00520972, 0.009008828, 0.0069570183, 0.012154975, -0.029638635, 0.021747988, 0.06602647, 0.028317254, 0.010542316, 0.004498647, 0.028173735, -0.002462926, -0.012107463, -0.055383213, 0.043508664, -0.011362249, -0.044810813, -0.004918156, 0.023568282, 0.058488082, 0.023233563, -0.018015765, -0.004818922, 0.015801787, -0.02951247, 0.009843217, -0.03908682, 0.09222865, 0.011034325, -0.05427715, 0.014317882, 0.03280718, 0.052833967, -0.030137276, -0.019533008, 0.015131846, -0.03698184, 0.035247695, -0.053466488, -0.033561848, -0.028263953, -0.05391503, -0.008657848, 0.021862216, -0.0140736615, -0.005444275, 0.08006131, 0.040706106, 0.0003960816, 0.030161468, 0.021929417, -0.0070988345, -0.047225915, -0.05408744, -0.025350189, 0.019466477, 0.020883499, -0.051953595, -0.016852174, -0.024334682, -0.01126957, -0.009998107, -0.03295492, -0.042177014, -0.06293341, 0.018910116, 0.031044504, 0.03512142, 0.008185876, -0.016706346, -0.05786588, -0.0030668508, 0.01979847, 0.03622485, 0.028853005, 0.0009238519, -0.008111818, 0.008572071, 0.01399109, 0.010243434, 0.01444911, 0.025968716, 0.021668436, 0.0012144267, -0.038536385, 0.016693754, -0.02405992, 0.049526755, 0.06069885, -0.07231856, -0.042043477, 0.012555709, 0.011199582, 0.018885996, 0.033386428, 0.04899524, 0.05654263, -0.0058233673, -0.01299321, -0.07902962, 0.032395657, 0.0006399034, 0.00535102, -0.0019693428, 0.09591879, 0.00496706, 0.001053482, -0.03069926, 0.016930567, -0.0045887837, -0.03633507, -0.019788107, 0.043563187, -0.0009832925, 0.030412178, 0.044523865, 0.029334743, -0.020883327, -0.035270263, 0.055800874, -0.08509283, 0.030850131, -0.008265269, 0.054533124, 0.036793593, -0.020925479, 0.07154161, -0.026368903, -0.05118584, -0.011885346, -0.07968367, 0.031911764, 0.026740381, -0.041871976, -0.028747039, -0.009692912, -0.019025797, 0.031771883, 0.02923268, 0.025331805, -0.0055376673, -0.014995127, -0.019013496, 0.0776467, 0.0035860697, -0.0067143696, 0.025083467, -0.01922756, 0.09657265, 0.031704597, 0.0706829, 0.0045468668, -0.044967405, 0.10748491, 0.006670063, 0.00026933177, 0.025633529, 0.029618634, -0.039112687, -0.036597613, -0.063042134, -0.017704464, -0.021310858, 0.018369803, 0.026931997, -0.013373461, 0.002313454, 0.029998083, -0.009142794, -0.010893625, 0.00087506213, 0.025032513, -0.027722878, -0.018339373, -0.0072770235, 0.02328128, -0.025154445, -0.032380983, 0.009332531, 0.040371686, -0.039214004, 0.018345218, 0.036676154, 0.0068854354, 0.02641584, 0.0066810586, 0.07567158, -0.025686318, -0.045040913, 0.028657116, -0.012970874, -0.046770483, 0.041913502, 0.036479, -0.06634508, -0.029104514, -0.0020888557, -0.011095894, 0.034589276, -0.037141286, 0.013749068, -0.039645724, 0.048405234, 0.05078844, -0.012315645, -0.02009261, 0.0044967104, 0.0078743845, -0.008477811, 0.032511495, -0.024553891, -0.033483665, 0.031106899, 0.0074062897, -0.05435479, 0.04204853, 0.008760272, -0.015956758, -0.017002141, 0.024306959, -0.06086226, -0.06411199, 0.012800947, -0.0065002656, 0.0018068299, 0.052149173, -0.031672217, -0.007009945, -0.035568982, 0.006893478, -0.029268332, 0.020235047, 0.010301233, -0.040620323, -0.010429826, 0.039265096, 0.056449503, -0.0014440498, -0.012312445, 0.0062773204, -0.024805307, 0.001873227, 0.010159866, -0.08687425, 0.028485771, -0.010927524, 0.046037108, 0.08389408, -0.032915384, 0.02881077, -0.02874708, 0.01137276, -0.038449436, 0.04399047, -0.0045255055, 0.043805774, -0.022258716, -0.04492349, -0.019269578, -0.043187693, -0.047467645, 0.009226135, -0.012155084, 0.0058251796, -0.029333634, -0.067344174, 0.04707118, 0.0034888636, -0.036759205, 0.0008186532, -0.020798773, 0.02176838, -0.015509066, -0.025585378, 0.039484065, -0.0012535313, 0.032265212, 0.033134848, -0.0066761826, -0.036452826, -0.0067783794, 0.0054347417, -0.022625525, 0.05275499, -0.0062995045, -0.049507603, -0.021656998, -0.019261293, -0.019903978, 0.048789833, 0.041858073, -0.0057297186, -0.02621637, 0.057602916, 0.024033563, -0.029207954, 0.005865014, 0.02481576, -0.010447126, 0.05475812, -0.046666157, 0.04460273, -0.09510167, 0.03061181, -0.038413495, -0.01633371, -0.0674078, -0.0014867611, 0.071501404, 0.021191379, 0.029159414, 0.002988524, -0.09866147, 0.02219417, -0.039995875, 0.02774268, 0.0656467, -0.02015308, 0.0352612, 0.039215617, 0.011004806, 0.04941303, 0.014986949, -0.04555987, -0.011229836, -0.06264507, -0.0026923374, 0.054375254, 0.025195714, -0.01210757, -0.034627218, 0.029985614, -0.016291246, 0.092349514, 0.04705736, -0.054683484, 0.0032046572, 0.01396849, 0.009970179, 0.0057979673, -0.04417517, 0.0041815853, -0.026330983, 0.0036130378, 0.022835268, -0.0011633582, -0.03101175, 0.044019844, 0.062123116, -0.02605409, -0.016885083, -0.008611712, 0.004989459, -0.021416876, -0.0653884, 0.009776565, 0.04408636, -0.014677597, 0.03660933, 0.004758275, 0.045551166, -0.05113502, 0.030318849, -0.031408153, 0.002785639, -0.009871977, -0.0026264465, 0.022144642, -0.1224011, -0.024233408, 0.083455786, -0.037219293 ] }, { "values": [ 0.0035065871, -0.048019208, -0.05334005, -0.025325121, 0.04431551, 0.017166397, 0.028485559, 0.030247472, 0.012669216, 0.051552135, 0.011271639, 0.028457917, 0.0115229925, 0.00012522326, -0.04607208, -0.05387365, 0.016564773, -0.004573946, -0.08095439, -0.029138004, 0.015364834, 0.010631372, 0.015160147, -0.02902555, -0.0014618767, -0.006807102, 0.044653714, -0.044702977, -0.02125874, -0.02924548, 0.027243484, 0.050140772, 0.0006360078, -0.04023553, 0.071567655, 0.035523534, -0.07069417, 0.012971435, -0.0008884295, -0.08199875, -0.06609203, -0.009917864, 0.009635985, 0.007884721, -0.065456145, -0.0022098704, -0.00046475072, 0.023636956, -0.011957131, 0.011289447, 0.031584065, -0.0073785316, -0.021433458, -0.0013614872, -0.011924048, -0.061310846, -0.075117975, -0.044733983, 0.09051158, 0.020034386, -0.030238686, 0.034230717, -0.04543524, -0.028786654, -0.01938754, -0.021081207, -0.05195451, -0.008103099, -0.067636594, 0.015342508, -0.056380518, 0.018493798, 0.0037232384, 0.034369826, -0.023166573, -0.030833162, -0.0382005, -0.0027530526, -0.025209976, -0.016823757, 0.020316105, 0.023794092, 0.06438188, 0.01840925, 0.052979182, 0.032327306, 0.076502934, -0.03196449, -0.04777898, 0.04769281, 0.03916011, 0.00031470152, -0.020369317, 0.0021656936, 0.040095996, -0.02654961, -0.040319882, -0.047956724, 0.031945787, 0.07566183, -0.05394227, -0.027052362, -0.010165787, -0.026540205, 0.017299484, 0.02468082, 0.012936027, -0.0709052, -0.03606497, 0.002842192, -0.0698711, -0.0044475333, -0.041902702, -0.00050633284, 0.024189556, -0.0358993, -0.0033434548, 0.048053972, -0.010935521, 0.0057169744, 0.0020194973, -0.02061796, -0.023486627, 0.042881407, 0.012936384, -0.012938138, -0.051896393, -0.057317782, -0.04002904, -0.02904621, 0.097159036, -0.09029124, 0.010077384, -0.027238008, -0.02767524, -0.03731602, 0.042165436, 0.015080558, -0.056524016, 0.032549564, 0.0076811896, 0.006117561, -0.0049898643, 0.041320484, 0.03951901, -0.0049995882, -0.020974874, 0.021389084, -0.01983976, 0.03985018, -0.08689739, 0.019118566, 0.010910561, -0.007471118, -0.10231913, 0.07204682, 0.045244154, -0.027990673, 0.03608122, -0.041417174, 0.029129794, -0.059910227, -0.040344756, 0.01806662, -0.066602744, 0.022587173, 0.014376251, -0.059647884, -0.05701993, -0.053967565, 0.0010171322, 0.04266195, -0.027654855, -0.072706506, 0.014834812, -0.027300661, 0.011979637, 0.07179335, -0.0019525416, -0.05403158, 0.010774156, 0.05099204, 0.032963965, 0.0028795185, -0.0074990597, 0.030758582, 0.003966824, 0.046318654, 0.0088174855, 0.054040007, -0.021681763, -0.013318899, 0.0067078248, 0.033199158, -0.0040941625, 0.050948713, 0.012887966, -0.03327677, -0.026791967, -0.032333143, 0.033194285, 0.041000832, -0.055182002, 0.047497503, -0.010990993, 0.013464338, -0.055026565, -0.010583829, 0.020994252, -0.016720202, -0.0011445739, -0.02393521, 0.035861254, -0.03847431, -0.0037198963, -0.007308781, 0.077466264, 0.033282485, 0.027864076, -0.06060192, -0.039145883, -0.010139235, -0.023093706, -0.03346849, 0.04477908, 0.0144303795, -0.022637576, -0.026703252, -0.024761032, -0.027937945, -0.02635644, 0.004108149, -0.03742326, 0.027813824, 0.004614934, 0.027140468, 0.029020865, 0.03940705, -0.039869323, -0.023798777, 0.02868558, 0.037555136, 0.05949518, -0.014535616, -0.0014318136, 0.058123346, 0.030914396, 0.086773686, -0.03702835, -0.023471765, -0.009061953, -0.017796468, -0.037931867, -0.0028142328, -0.048499722, 0.005103677, 0.0058273915, -0.010333499, -0.022928728, -0.030188648, 0.04124665, -0.0023418413, -0.0077367816, -0.004184744, -0.016969748, -0.07963385, -0.017002832, -0.04498695, 0.05302794, -0.0007003792, -0.017240567, -0.01579635, -0.06876475, -0.060011007, 0.00092504534, 0.042794585, -0.030492231, 0.0011173288, -0.051897608, -0.040828183, 0.036300845, 0.015037536, -0.035653353, -0.027016586, 0.011841637, -0.047074392, -0.021297274, -0.014238165, -0.04539947, -0.013273761, 0.03733206, 0.051323622, 0.0001955524, -0.016587758, 0.050340112, -0.015624425, 0.0015194833, -0.03793198, -0.017339593, -0.0035713585, 0.027000532, 0.11307562, -0.037945457, 0.014263506, -0.028116534, -0.026718874, -0.03191078, -0.0048959465, -0.009245841, 0.00392405, 0.014317458, 0.025877943, -0.04597375, -0.035674892, -0.0069834217, 0.007896462, -0.077501975, 0.02206863, -0.017867977, -0.0013255442, 0.044092823, 0.0035549537, 0.007329699, -0.03165904, 0.063137285, -0.008212733, 0.004080359, -0.0027474663, -0.027542401, -0.033303414, -0.020377574, 0.028356293, 0.038820546, 0.014649599, -0.018138848, -0.030504446, -0.02970153, 0.023783872, 0.045477152, -0.0013406064, 0.019709239, -0.012597908, -0.015776506, 0.06741735, 0.0074190577, -0.04768632, 0.027484052, 0.009097167, 0.014220047, -0.057548746, -0.05209136, 0.05921182, 0.046583217, -0.01576069, 0.060425166, 0.020689037, 0.027814168, 0.037046637, -0.0049382015, -0.0029115903, -0.023183614, -0.015326545, 0.037597846, -0.010238827, 0.03570981, -0.0010920857, 0.0006662273, 0.0084193405, -0.0222736, -0.0889429, 0.04567312, 0.0043539964, 0.03224885, 0.01719827, 0.045815136, -0.019778041, 0.006271439, 0.031707097, -0.010849225, -0.039463643, -0.04031046, -0.056252908, 0.011442094, -0.013011549, -0.041328926, 0.014468403, -0.04800334, 0.0043562776, 0.057108775, 0.027579498, -0.0022303099, 0.026656134, -0.016723188, -0.020763002, -0.021576751, 0.04450476, -0.019421175, 0.0044662603, 0.027139088, 0.010448173, -0.030170718, -0.010936103, 0.09097205, -0.014483154, 0.020680347, 0.0486538, 0.044195488, -0.010063557, -8.369175e-05, -0.03564947, 0.048872482, 0.04928901, -0.0073191486, -0.008882231, -0.0015451146, 0.04032217, 0.024554186, -0.027333386, 0.031418614, 0.009388104, -0.026645623, 0.022381516, -0.01336724, 0.027166316, -0.01082239, -0.05050827, 0.012675761, 0.004938847, 0.051554896, -0.031927302, -0.024437975, 0.033572633, -0.068393536, 0.049477033, -0.06321991, -0.008104977, -0.011788391, -0.053410627, -0.022088673, 0.0086131375, -0.010396859, 0.00184322, 0.06658249, 0.028589735, 0.02370138, 0.052491084, 0.018756138, -0.00752416, -0.038886998, -0.04772597, -0.01798901, 0.01014865, -0.009950424, -0.061613318, -0.0061259437, -0.0018904014, 0.02222365, 0.0058018053, -0.062060762, -0.00019082031, -0.07258467, 0.016811524, 0.05812873, 0.05697304, 0.019365162, -0.047319908, -0.046960264, -0.0038685363, 0.0092119295, 0.04715949, 0.017377172, -0.005684475, -0.001678688, -0.021636048, 0.022790503, 0.033349533, -0.00504788, 0.008114446, 0.025042389, -0.008123298, -0.04400017, 0.01694962, 0.028499953, 0.06258318, 0.04061323, -0.061608225, -0.019605355, 0.033566605, 0.029493777, -0.012805565, 0.03821609, 0.05824412, 0.022392834, 0.007307845, -0.05898989, -0.059879456, 0.025732318, -0.01401675, 0.013719391, 0.010904828, 0.097530834, -0.023360211, 0.0068919305, -0.06370275, 0.05266494, 0.0069247796, -0.033131912, -0.01016306, 0.0090176, 0.0076593957, 0.00439236, 0.01596226, 0.007986337, 0.009725242, -0.06831377, 0.03839643, -0.09156241, 0.006719974, 0.012527592, 0.049199022, 0.019435743, -0.012888852, 0.040654235, -0.03511244, -0.047584463, -0.029397065, -0.055907033, 0.060251527, 0.026483318, -0.031582016, -0.009198708, 0.026656622, 0.032110423, 0.02579592, 0.0055825976, 0.021091694, 0.0066356254, 0.01267769, -0.045196507, 0.045417886, -0.02452191, -0.006657138, 0.026677176, -0.034433052, 0.09261742, 0.02168424, 0.03228063, 0.009665307, -0.031988088, 0.06593872, 0.01364242, 0.0069298586, 0.014798221, 0.031859335, -0.044803035, -0.037635986, -0.067965366, -0.053157352, -0.021440325, 0.035524637, 0.041560426, 0.0018105779, 0.006994272, 0.007847404, 0.012217475, 0.024301032, 0.0093699405, 0.06794158, -0.010884443, -0.025991721, 0.0022228123, 0.0034662809, -0.020807633, -0.025553785, 0.010852189, 0.015848754, -0.07095031, -0.021224178, 0.019700687, 0.00017153025, 0.05124675, -0.0077300356, 0.11059769, -0.06612757, -0.03774971, 0.061087236, -0.04067567, -0.050070688, 0.02178958, 0.03557054, -0.044070736, -0.0014315194, -0.0061817123, -0.006629221, 0.06290288, -0.025086364, 0.017535701, -0.037158154, 0.03239847, 0.016855534, -0.007644536, 0.010736518, -0.018451268, -0.0013111089, -0.018255688, 0.0015037212, -0.03492671, 0.00600509, 0.019421715, -0.045084346, -0.039373282, 0.037806205, 0.033249464, -0.014542058, -0.019762749, 0.018772615, -0.046511162, -0.04785692, 0.019014472, -0.011821119, 0.0015839471, 0.05196168, -0.023395041, -0.008148239, -0.05227502, -0.0063463165, -0.033124544, 0.058772802, -0.0036522988, -0.018349778, -0.0072905077, 0.015067664, 0.03872016, -0.02798606, -0.0042232373, 0.035879556, -0.0056811194, -0.01053467, 0.04378234, -0.06309665, 0.036018144, -0.0060907886, 0.024281891, 0.05069985, -0.030893821, 0.06530389, -0.0139594, 0.028671084, -0.013329652, 0.05107839, 0.015794765, 0.024154184, -0.032214083, -0.04405573, -0.054717667, -0.060550943, -0.040859167, 0.004211191, -0.01573386, -0.027477456, 0.001031332, -0.045428343, 0.02261936, -0.0009912598, 0.012121581, 0.026196983, -0.020279083, 0.042562906, -0.00018260792, -0.038432967, 0.029020196, -0.009534525, 0.013762198, 0.05154671, -0.02235904, -0.02453916, 0.021536017, -0.018273598, -0.029493807, 0.041455016, -0.0032901207, -0.04318856, 0.003378383, -0.013003782, -0.00014233563, 0.051597614, 0.03996043, -0.030734472, -0.013463647, 0.047089186, 0.0047720075, -0.06685314, 0.009994704, 0.0531359, 0.015495067, 0.027046716, -0.0606539, 0.024677794, -0.05277975, 0.015862724, -0.04618985, -0.0095826285, -0.04029641, 0.0035753306, 0.02499896, 0.032413464, 0.022878058, 0.013047492, -0.07240009, 0.0358809, -0.044602096, 0.030418823, 0.07559764, -0.03225272, 0.05989681, 0.0033379227, 0.005518735, 0.06288396, 0.016219273, -0.021899715, -0.018433146, -0.035035685, -0.016535163, 0.0574105, 0.011546992, -0.02263897, -0.03900804, 0.018078368, -0.033654965, 0.060482897, 0.03743724, -0.060993295, 0.0016642776, 0.023883969, 0.004248814, -0.011721901, -0.049501397, 0.040409006, -0.040850647, 0.009554733, -0.018555213, 0.006260608, -0.016105339, 0.01345732, 0.03651288, 0.017409809, -0.011277504, 0.032314986, 0.006623047, -0.013340547, -0.09979968, 0.037105054, 0.04848921, -0.0003102598, 0.02543387, 0.007509231, 0.033345032, -0.056425255, 0.015654614, 0.002975643, 0.0016532063, 0.0023930324, 0.008390899, 0.0034807345, -0.13581523, -0.019735496, 0.07189244, -0.028596077 ] }, { "values": [ -0.020000095, -0.04196227, -0.07423587, 0.0025453672, 0.06552771, 0.00191563, 0.021655975, 0.019358393, -0.00080684375, 0.010288968, 0.013159952, 0.03497479, 0.021047685, 0.013557185, -0.041237615, -0.03485943, -0.0017836128, -0.011109016, -0.06334398, -0.028919937, 0.06186918, 0.0020328565, 0.059720993, -0.05295787, -0.028196245, 0.004395059, 0.072088085, -0.0343495, 0.0113322, -0.03446125, 0.062144533, 0.047284942, -0.0027169138, -0.0167171, 0.09750756, 0.01131721, -0.055836845, 0.01274363, 0.0069331676, -0.05953618, -0.06733932, 0.02745528, 0.013286471, 0.01730326, -0.05868894, 0.020626461, -0.008045656, -0.0059940615, -0.03895473, 0.05550938, 0.003983103, -0.0019100277, -0.005105931, 0.010455522, 0.018489169, -0.030142194, -0.0726872, -0.05499094, 0.071339436, 0.008450657, 0.008797386, 0.01829602, -0.025040807, -0.042994767, -0.042362638, -0.0137366615, -0.069869086, -0.01891758, -0.07416675, 0.011147035, -0.028579796, 0.040476218, -0.03829284, -0.00039344156, -0.018946957, -0.0006033754, -0.041868214, 0.011202988, -0.023172943, -0.031817857, -0.0010219851, 0.019817067, 0.0669683, 0.04435824, 0.0754113, 0.051740717, 0.05540355, -0.011088765, -0.05931594, 0.029710442, 0.06706536, -0.00046828383, -0.016246816, 0.0052765547, 0.02799282, -0.0076373965, -0.05490164, -0.045903392, 0.02592661, 0.09311658, -0.03508084, -0.011314962, -0.0031858918, -0.019623835, 0.022085736, -0.00066630926, 0.038083155, -0.06408292, -0.005982521, -0.012712811, -0.09022251, -0.0029607113, -0.04143045, 0.0060369805, 0.06129453, -0.036050882, 0.020357864, 0.044215348, -0.024553966, 0.026268655, 0.034400772, -0.043006606, -0.011261835, 0.050455038, 0.029830366, -0.00021953913, -0.033128012, -0.049538817, -0.04957786, -0.049439244, 0.09840224, -0.07334427, 0.0050548413, -0.011803711, -0.04399331, -0.050500255, 0.0035944676, 0.012413465, -0.054322634, 0.018157838, 0.00087223935, -0.015732756, 0.007735823, 0.035359006, 0.041750595, -0.008808829, 0.010509908, 0.010377757, -0.021897705, 0.026143156, -0.10098833, 0.0057839896, 0.030482914, -0.0038159534, -0.07200784, 0.060120188, 0.036421534, -0.022622671, 0.06676202, -0.04061641, 0.017179085, -0.030434392, -0.0138658695, 0.0032556488, -0.056002647, 0.003953885, 0.015453911, -0.060443584, -0.025328964, -0.044170205, 0.017949821, 0.039205138, 0.0010517049, -0.07340473, 0.00826149, -0.0021067746, -0.016463868, 0.05265858, -0.030499583, -0.03864656, 0.019737303, 0.047958944, -0.009041921, 0.008140315, -0.043446414, 0.010350214, 0.005923781, 0.05874601, -0.015983962, 0.03416881, -0.044552516, -0.011348595, 0.005325589, 0.01664992, -0.0458816, 0.07056111, 0.012033567, -0.01889857, -0.03742305, -0.014822366, 0.039246462, 0.010951162, -0.02732409, 0.025733516, -0.038962875, -0.032881398, -0.04861298, -0.016742513, 0.015191034, -0.005602019, 0.0018235149, 0.023798632, 0.004919, -0.026377844, -0.019076172, 0.014570241, 0.063805185, 0.031023717, -0.002648621, -0.08220425, -0.024455873, 0.0011657937, -0.0028742203, -0.014094538, 0.024941467, 0.006795428, -0.021134678, -0.021809442, -0.027546117, -0.010060725, -0.04972337, 0.009434196, -0.024651853, -8.6732034e-05, 0.010058351, -0.0026122937, 0.021916768, 0.009050388, -0.035188578, -0.033553142, 0.010245247, 0.060297124, 0.038081687, 0.008150411, -7.1437134e-05, 0.04709278, 0.03337905, 0.10416741, -0.0416401, -0.034615118, -0.041612126, -0.030852145, 0.0014531995, -0.0019863055, -0.060871962, 0.013871598, -0.011924187, 0.002241786, -0.010818788, -0.03419424, 0.02619207, 0.018051323, -0.030165264, -0.034680843, -0.0318567, -0.1029205, -0.008916564, -0.035982817, 0.066746384, -0.0060967933, -0.006138477, -0.010440975, -0.06501217, -0.048731767, 0.016883036, 0.03501355, -0.034691036, 0.0066146743, -0.02971724, -0.04029624, 0.035931185, 0.016244983, -0.027196601, -0.01922977, 0.009776434, -0.0673471, -0.009838485, -0.018687528, -0.035036635, -0.037558973, 0.021096991, 0.03250324, 0.008535097, -0.03564131, 0.022925802, -0.01778932, 0.003340779, -0.017122582, 0.020959208, 0.00020774157, 0.018210057, 0.10893308, -0.014668337, 0.023406751, -0.027383763, 0.0039473106, -0.029794255, -0.042760212, -0.013919226, 0.003420688, 0.020450901, 0.02249132, -0.038548134, -0.03260469, 0.00066326093, -0.0050568483, -0.07391013, 0.022095392, -0.018202752, -0.019724224, 0.03486287, 0.012488072, 0.020798573, -0.03310031, 0.075815424, -0.008818537, -0.02648668, -0.019648205, -0.012874741, 0.006818848, -0.011528379, 0.036124438, 0.026910037, 0.01394877, 0.008432182, -0.040318828, -0.0054883882, 0.013657361, 0.048076622, 0.02002295, 0.04898884, 0.01528695, -0.034755882, 0.030317098, 0.015862253, -0.03937709, 0.019497082, -0.012874403, 0.03802304, -0.06288539, -0.040743846, 0.07365316, 0.0101112565, -0.00094857137, 0.06787384, 0.021596361, 0.027785676, 0.046886772, 0.001398906, 0.005745063, -0.03164746, -0.0047631217, 0.015923617, -0.009165917, -0.008653225, 0.021037009, -0.0051450306, 0.03333021, -0.01374255, -0.07058078, 0.0433277, -0.024258979, 0.01176798, 0.0037908354, -0.0025428373, -0.019780472, 0.021349892, 0.028277816, 0.0062724333, -0.04319611, -0.015810205, -0.038373355, -0.0017494075, 0.0016618121, -0.017483335, 0.0038797357, -0.05920475, -0.029020254, 0.03492131, 0.025998842, -0.014643908, 0.0516375, 0.0027048765, 0.027376015, -0.0044557257, 0.0089716455, -0.025049744, 0.0028402861, 0.0152871525, 0.02283256, -0.042240307, 0.0016068208, 0.0974276, -0.03851166, 0.019877337, 0.01858501, 0.07971387, 0.020772418, -0.011930906, -0.019582182, 0.047479637, 0.033520706, -0.007037558, -0.015931822, -0.037022784, 0.011481384, 0.02892083, -0.05004223, 0.00033941932, 0.011587502, -0.018621102, 0.014210474, 0.01242147, 0.048535615, -0.022697557, -0.08240678, 0.038230054, 0.01546132, 0.04855266, -0.012876511, 0.013458438, 0.03760197, -0.0722684, 0.0342939, -0.020571284, -0.04997265, 0.0014203546, -0.035093226, -0.0295733, 0.006247393, -0.020776428, 5.479259e-06, 0.09124928, 0.036794182, -0.0087862, 0.0755779, 0.023473952, -0.0022052736, -0.011877462, -0.061372608, -0.023416763, 0.025710644, -0.009739256, -0.06754147, -0.014039781, -0.014250729, 0.022590151, 0.010629362, -0.025996743, 0.004718143, -0.05529798, 0.0078023355, 0.06627297, 0.045644086, 0.0092582125, -0.046104953, -0.032309618, -0.0019629921, 0.0073378086, 0.03336019, -0.00049498916, 0.009246835, 0.0057514966, -0.013840917, 0.034050863, 0.041106656, 0.023007905, -0.0025115325, 0.029449947, -0.0071180216, -0.011433742, 0.03894479, 0.02180324, 0.056050662, 0.027380344, -0.06835975, -0.033437937, 0.008245964, 0.03832913, 0.005222405, 0.03369276, 0.058904022, 0.041314468, 0.0113890935, -0.053552438, -0.06365991, 0.03709044, 3.2019227e-05, -0.04545978, -0.025766619, 0.11709467, -0.0036170485, 0.02943843, -0.030377218, -0.0016196339, 0.028007304, -0.049323723, -0.030646952, 0.03532605, -0.011830072, -0.004780152, -0.02250105, 0.04650449, -0.021589976, -0.03471483, 0.040883128, -0.07875363, 0.017074807, -0.00055858016, 0.04901813, 0.029799085, -0.032156307, 0.061265282, -0.06356424, -0.058541037, -0.029677782, -0.024794674, 0.047700703, 0.020923343, -0.041633002, -0.013344149, 0.030066133, 0.032133702, 0.011449213, 0.007769653, 0.010998064, 0.041868098, -0.013971319, -0.045881756, 0.044942427, -0.002436114, -0.04336238, 0.051363505, -0.03681826, 0.070202135, 0.015041413, 0.03744595, -0.002665535, -0.030832192, 0.087211214, -0.021618664, -0.0002505092, 0.01671745, 0.030936774, -0.037627563, -0.042470545, -0.046776004, -0.039758604, -0.022312883, 0.012989601, 0.036149103, -0.0027354367, 0.01062368, 0.01801381, -0.012505169, 0.020713022, -0.015210108, 0.06677573, -0.017045133, -0.021270368, -0.008741464, 0.0038168177, -0.036807276, -0.023073837, 0.008062237, 0.009787081, -0.05563983, -0.0022506139, 0.015096501, 0.0051742555, 0.021564977, -0.0006365089, 0.0927572, -0.030898433, -0.028534785, 0.072271705, -0.010574539, -0.04661133, 0.037877873, 0.019336777, -0.037199453, 0.017297361, -0.008161262, -0.026060412, 0.06527895, -0.01392044, 0.012346732, -0.04867883, 0.011072432, 0.017837541, -0.008845267, 0.0024063296, -0.032957986, 0.00011847114, 0.02108089, 0.026011309, -0.03192421, -0.014131141, 0.013620394, -0.022232147, -0.0670587, 0.031382177, 0.008800134, -0.024181683, -0.025762105, 0.007976968, -0.03371622, -0.054903936, 0.003217033, -0.022161085, 0.03931924, 0.049744934, -0.023978317, 0.023597322, -0.05374206, -0.04479038, -0.02886372, 0.06354699, 0.0007308433, -0.0035668856, -0.02392612, 0.020329004, 0.040319957, -0.033847373, -0.0105068665, 0.0425489, -0.016290126, -0.026820743, 0.065646395, -0.038340323, 0.0096258195, -0.0014162263, 0.012775269, 0.052685983, -0.046872947, 0.03919792, -0.006930483, 0.013631562, -0.055766243, 0.012054387, -0.009023758, 0.007671679, -0.019327857, -0.056195367, -0.05277913, -0.042559855, -0.023840347, -0.00022075449, -0.005657031, -0.04700931, -0.02788215, -0.08155687, 0.050178688, 0.0054030423, 0.019107739, 0.007323462, -0.025604041, 0.060522098, -0.010523327, -0.042673375, 0.01939438, 0.0038575393, 0.029688599, 0.06801098, 0.0010257623, -0.023269376, 0.002004181, -0.032067202, -0.041772448, 0.045169223, -0.017284857, -0.034232892, -0.01366969, 0.01823235, -0.020268552, 0.020897137, 0.04203106, -0.05356115, -0.042609952, 0.023244692, 0.0247353, -0.07855988, -0.031133875, 0.014251488, -0.0017142235, 0.046430204, -0.06655145, 0.04835545, -0.054493345, 0.019217884, -0.029654758, -0.018248722, -0.06676538, 0.024999201, 0.03600455, 0.04043827, 0.037821077, 0.034338307, -0.086632766, 0.036787312, -0.03236064, 0.003381225, 0.080541626, -0.016997617, 0.03438008, -0.024155851, 0.04464592, 0.027310481, 0.042727385, -0.0017096964, -0.0030875541, -0.050925534, -0.023520796, 0.073281236, 0.015691983, 0.007268762, -0.03759778, 0.024237756, -0.047188282, 0.048220146, 0.011206692, -0.04039708, -0.0045433473, -0.0083743185, -0.0033597788, 0.0035081443, -0.038182314, 0.0522345, -0.06307339, 0.027968807, -0.0057651913, -0.0022447668, -0.022809759, 0.048901916, 0.03972891, 0.010612512, 0.00034910266, 0.0082338, -0.022762408, -0.014578514, -0.062351383, 0.036399983, 0.052539773, -0.013748623, 0.044947855, -0.006102176, 0.016681826, -0.024009554, -0.004155296, 0.010570591, -0.024321698, -0.009252304, 0.0031378444, 0.0056000105, -0.11063035, -0.013587041, 0.0408929, -0.04170616 ] }, { "values": [ -0.04662346, -0.02912148, -0.07186964, -0.028358757, 0.073493235, 0.015654488, 0.03399102, 0.03548024, -0.0010609537, -0.00067516114, 0.009041219, 0.061134245, 0.0065474254, -0.010550971, -0.05803064, -0.05598312, 0.0021763986, -0.0027496363, -0.08290161, -0.04943738, 0.079925805, 0.0038212123, 0.024858976, -0.04783474, -0.022483746, -0.002473114, 0.049234133, -0.021314291, 6.759129e-05, -0.026440011, 0.026986219, 0.05071978, 0.0046919887, -0.035349514, 0.06254785, 0.012027803, -0.07793134, 0.01829515, 0.0076990244, -0.059542414, -0.080528796, -0.00014736294, -0.028815938, 0.047796518, -0.046109144, 0.02883743, 0.028644517, 0.005849343, -0.017193777, 0.060261104, 0.013231378, -0.018521253, -0.030220238, -0.008505991, -0.005450239, -0.050076984, -0.059397504, -0.06965264, 0.093074255, 0.024381645, 0.004847272, 0.023037404, -0.04870358, -0.033519592, -0.04424139, -0.036851622, -0.058944717, 0.0021037948, -0.047372278, 0.009840187, -0.02902041, 0.056985795, -0.033299528, 0.003439506, -0.006753869, -0.02401103, -0.0054962477, 0.008495813, -0.041394815, 0.015920682, 0.021928921, 0.045398742, 0.037832007, 0.02734216, 0.023693906, 0.029105427, 0.07912295, 0.006825309, -0.028636685, 0.021699877, 0.051836148, 0.009455279, -0.03236149, -0.018939992, 0.0028442242, -0.002190729, -0.050633285, -0.0208994, -0.010278934, 0.08767291, -0.06800985, -0.026694207, -0.044164572, -0.023290286, 0.01396844, 0.003324299, 0.0035177374, -0.037097827, -0.006770522, -0.032134295, -0.08511719, -0.020519339, -0.017553644, -0.016555855, 0.03794033, -0.016880328, 0.025467642, 0.01306702, -0.04852199, -0.012485084, 0.0013948096, 0.01756848, -0.017544553, 0.039264273, 0.027026407, -0.007367892, -0.033607833, -0.027467147, -0.0473789, -0.038487867, 0.09210278, -0.09667338, 0.019821227, -0.03159445, -0.035323236, -0.02286135, 0.04190626, -0.021858959, -0.017156733, 0.018035164, 0.009531773, 0.026633702, -0.05331648, 0.0035481371, 0.03744958, -0.0018438267, -0.016287412, -0.030986201, -0.04704858, 0.027037127, -0.0817071, 0.00451065, 0.025828952, -0.004672198, -0.069788665, 0.025939334, 0.06755676, -0.020767909, 0.07195136, -0.057557125, 0.061216198, -0.01382433, -0.039822493, 0.020104783, -0.09305285, 0.006927014, 0.042039953, -0.056577057, -0.010526221, -0.018312035, 0.0010580146, 0.01157763, -0.04494642, -0.08240808, -0.004959585, -0.0041753473, -0.0075029717, 0.053437945, -0.017958831, -0.010800968, 0.025595276, 0.038872346, -0.035682015, 0.004845897, -0.034865223, 0.059893526, 0.0043108864, 0.049633153, -0.006125101, 0.039436188, -0.015224356, -0.012766, 0.035053357, 0.04683959, -0.033454403, 0.056560926, 0.027106548, -0.04091377, -0.023910651, -0.016340913, 0.027687509, 0.023558527, -0.02673487, 0.0582566, -0.014280473, -0.044967983, -0.029721092, 0.00055202877, 0.03358806, -0.0044728126, -0.039047785, -0.010353809, 0.0040407307, -0.034133207, -0.026761094, 0.02271677, 0.05395631, 0.035410788, 0.005930227, -0.032508723, -0.06454596, 0.011408331, -0.011794616, 0.005175526, 0.03874151, 0.02092285, -0.01584384, -0.0026414788, -0.02522821, -0.015847744, -0.031358995, 0.010072139, -0.011368727, -0.019529443, -0.007080042, 0.02677129, 0.005325379, 0.023169834, -0.019977119, -0.021950692, 0.010238358, 0.025384806, 0.03624886, 0.033334263, -0.012425266, 0.03285289, 0.029507332, 0.09115251, 0.0026527247, -0.029110756, -0.060543604, -0.03819517, 0.004759102, -0.03250133, -0.043552034, -0.00588451, -0.001249793, -0.0071256394, 0.0041105174, -0.02686572, 0.021158298, 0.024406832, -0.014830525, -0.05437132, -0.023128055, -0.081515074, 0.0055277348, -0.03257654, 0.054591335, -0.03807477, -0.023940044, 0.010755539, -0.042601842, -0.05983471, -0.0019651903, 0.03573373, -0.023795633, -0.00077362714, -0.011994028, -0.049881205, 0.03955047, 0.011561358, 0.0061962795, -0.019127073, -0.0034476558, -0.030083733, 0.013499263, 0.00854551, -0.018140709, -0.054824956, 0.0036597939, 0.043569908, 0.026285164, -0.028619288, 0.037206147, -0.009763412, 0.03008554, -0.0026043467, -0.048738122, -0.0071078246, 0.049854767, 0.09258199, -0.039018225, 0.026086133, 0.00035552558, 0.030934881, -0.020692643, -0.024483003, -0.010343122, 0.019009624, 0.0039001652, 0.025261002, -0.023267252, -0.028390769, -0.010407724, -0.018307403, -0.085246585, -0.001867994, -0.036231052, -0.016932318, 0.032361723, 0.007186274, 0.020896558, -0.012520939, 0.07560313, 0.020632837, -0.013358749, 0.02756063, 0.000750585, -0.0016080798, -0.011204061, 0.045246616, 0.033961985, 0.021438442, 0.016510926, -0.04985392, -0.008585443, -0.008796548, 0.069605544, 0.016757285, 0.04800334, 0.03757787, -0.025491146, 0.05311895, 0.005092249, -0.037167, 0.017342906, 0.02982061, 0.016738, -0.06750474, -0.038978804, 0.08986636, 0.019145012, -0.025985075, 0.04122016, -0.009533351, 0.012479222, 0.010945174, 0.023771646, 0.0032946898, -0.036048125, 0.005785093, 0.015303686, 0.0014611806, 0.020374596, 0.010993514, -0.026938394, 0.008128654, -0.0044710496, -0.03327404, 0.053871498, -0.013191888, 0.027255526, 0.017831646, 0.014536996, -0.01060512, 0.033848245, 0.02161277, -0.0050704456, -0.052642908, -0.00060851226, -0.039946172, -0.012177166, 0.008124167, -0.040697895, 0.032152258, -0.051932577, -0.0147697395, 0.025524369, 0.029799456, -0.02870067, 0.06036113, -0.012670079, -0.00026966853, -0.020854177, 0.044813924, -0.03929333, 0.008366059, 0.012737983, 0.0072211316, -0.04459381, 0.030408658, 0.09376833, -0.014980287, 0.014113469, -0.004608467, 0.08109473, 0.009949197, -0.014039997, -0.0029732736, 0.050501138, 0.034770533, -0.009111453, -0.05050712, -0.037563838, 0.022314904, 0.024233576, -0.057987876, 0.014634483, -0.0075626294, -0.0322841, 0.029484978, 0.023154547, 0.044206332, -0.0026756045, -0.05216857, 0.037302837, 0.012366734, 0.034496937, 0.010853217, 0.019563742, 0.059256308, -0.053418968, 0.024269283, -0.014171891, -0.057925567, -0.0072755143, -0.037927836, -0.04124274, -0.0042757564, -0.04456742, 0.015566424, 0.08483197, 0.045166116, -0.01771295, 0.020165984, 0.02170963, 0.03888993, -0.0016282588, -0.07691951, -0.038016398, 0.00059943565, -0.009682943, -0.053633716, -0.008540603, -0.023040988, 0.003444823, 0.034743655, -0.035368953, 0.018032592, -0.058810286, 0.04935951, 0.06897915, 0.03935375, -0.05471983, -0.03275474, -0.033385124, 0.008957631, 0.02559887, 0.0613158, -0.006343563, 0.04412136, 0.006532812, -0.013074624, 0.01495711, 0.03051711, 0.03508127, 0.02015869, 0.030160798, 0.010791714, -0.029392688, 0.008480722, 0.012794522, 0.06147672, 0.023041273, -0.039143723, -0.0038403037, 0.012413098, 0.044005264, 0.01676117, 0.05588462, 0.07803113, 0.027812064, 0.025324123, -0.057212137, -0.04655667, 0.0380005, 0.019007469, -0.030364884, -0.018012999, 0.09294819, -0.017207853, 0.024447264, -0.054707773, 0.0193569, 0.036385614, -0.073079675, -0.043011587, 0.0553323, -0.033711042, -0.0065883896, -0.00255666, 0.001705976, 0.0024469248, -0.020918217, 0.06866591, -0.07956506, -0.0097961575, -0.005425021, 0.034640435, 0.038200714, -0.029779892, 0.07480901, -0.02477947, -0.05275087, -0.0025869056, -0.040043663, 0.032037873, 0.020940147, -0.031309426, 0.002787329, 0.044789903, -0.00409133, 0.032210376, -0.018519886, 0.014283648, 0.035095505, -0.0018263012, -0.035865624, 0.032752752, 0.016984481, 0.0049135988, 0.032386422, -0.020327259, 0.07200452, 0.0005424457, 0.025184149, 0.006204046, -0.04162963, 0.04925651, -0.024217034, -0.010681999, 0.021218503, -0.006622992, -0.022523288, -0.0321825, -0.05102335, -0.037681956, -0.0154779665, 0.00034561954, 0.036998846, -0.021106191, 0.022490792, 0.002129578, 0.049452435, -0.022335436, -0.01809894, 0.025905665, -0.030772798, -0.017247522, 0.0045673046, 0.036178324, -0.0024781139, -0.023018463, -0.02159596, 0.013653804, -0.048255473, -0.012267972, 0.03934562, -0.010670721, 0.03150112, 0.0043591657, 0.11765303, -0.04273935, -0.033323787, 0.09209047, -0.0071187867, -0.025832482, 0.03845979, 0.020391056, -0.016727408, 0.03173083, -0.010786352, -0.027949296, 0.08485741, 0.007970406, 0.04669758, -0.04914991, 0.035231248, 0.012451547, -0.026563145, -0.00084247405, -0.00026021, 0.0037046042, 0.018815774, 0.0253793, -0.016472047, -0.034954783, 0.042636257, -0.011301609, -0.08070256, 0.009833406, -0.012390065, -0.0051117325, -0.038409695, 0.006026533, -0.03683387, -0.03269293, 0.019587101, -0.024884362, 0.02999227, 0.032286294, -0.031034997, 0.03736384, -0.07745453, -0.04011336, -0.014557756, 0.044748057, 0.0028424393, 0.005976405, -0.027900131, 0.016961731, 0.02975466, -0.051733505, -0.0017976739, 0.049856063, -0.00437317, -0.0036179926, 0.053793762, -0.050376665, 0.0002870708, -0.017519588, 0.013567294, 0.04778316, -0.040671103, 0.05441738, -0.004920331, -0.0018793965, -0.051797498, 0.026523363, -0.00083784375, 0.012348988, -0.014247602, -0.037813976, -0.06569615, -0.049823187, -0.006557225, 0.018862193, 0.0054669576, -0.013336177, 0.00948264, -0.09866906, 0.025915638, -0.003587849, -0.0029929872, 0.009398423, -0.015189857, 0.036127236, -0.034926537, -0.027286964, 0.014310656, 0.021475436, 0.03826595, 0.007595464, 0.0018647634, 0.019687574, -0.010433119, -0.059879653, -0.034824096, 0.051634643, 0.0074137477, -0.04475251, -0.023396134, 0.0007424708, -0.0035807402, 0.012166295, 0.058761925, -0.031236857, -0.013135868, 0.043136623, 0.01930091, -0.06609493, 0.00030262407, 0.036470044, 0.003376309, 0.03166722, -0.07481247, 0.03138559, -0.047450457, -0.0027284354, -0.022800574, 0.004990123, -0.03382154, 0.00050820387, 0.049910884, 0.013746796, 0.034393225, 0.04714804, -0.07651698, 0.047790818, -0.019119304, 0.0057274676, 0.05282539, -0.0059773247, 0.03929304, -0.007986583, 0.03222189, 0.040050343, 0.052847717, -0.021200852, 0.00068554847, -0.06392335, -0.054410025, 0.070182666, 0.007639563, -0.023661673, -0.048638314, 0.030396326, -0.051569395, 0.039030045, 0.027666189, -0.06313452, 0.0011087419, 0.002476567, -0.00999352, -0.00080233277, -0.030128865, 0.017453792, -0.059486993, -0.0022969455, -0.02138593, -0.008628468, -0.035320252, 0.012012408, 0.059507567, -0.015566942, 0.015397935, 0.011370921, -0.018039068, -0.0123520605, -0.056074828, 0.023050116, 0.04028204, -0.016637363, 0.044307332, 0.010262579, 0.028778704, -0.06720015, 0.029631507, 0.0036348046, -0.0025330586, -0.011290292, 0.018500287, 0.019092552, -0.11892188, -0.027616411, 0.08133411, -0.039892826 ] }, { "values": [ -0.010431835, -0.045448314, -0.07317408, -0.06248774, 0.035411976, 0.010515127, 0.023426337, 0.037993476, 0.0125338975, 0.0112395035, 0.019437503, 0.076831415, -0.0057655354, -0.016012195, -0.07860344, -0.05091293, -0.0043509007, -0.0035097771, -0.051693924, -0.03974575, 0.072450176, -0.006730031, 0.03270451, -0.041856453, -0.007783053, 0.0050051794, 0.053821985, 0.00628287, -0.0033520905, -0.051447812, 0.0034226398, 0.03139817, -0.0032127749, -0.038869128, 0.07909627, 0.014155405, -0.050167866, -0.0061709876, -0.011462765, -0.03559073, -0.092078365, 0.021611987, -0.026244482, 0.029110597, -0.047011178, 0.031429794, 0.029925354, 0.0053634313, -0.033429965, 0.05894577, 0.010009685, 0.009848371, -0.07818087, -0.0058548483, 0.017849764, -0.020946201, -0.03299553, -0.048729125, 0.08595732, 0.047758106, -0.0058900383, 0.016065067, 0.009549356, -0.013003136, -0.04283933, -0.032565933, -0.053997193, -0.009372263, -0.060085975, 0.009356665, -0.022163061, 0.045420714, -0.053657316, 0.035605755, 0.024861319, -0.008706269, -0.004779704, 0.0131115625, -0.028246751, 0.033111267, -0.008801407, 0.017716367, 0.06476713, -0.00603496, 0.017364288, -0.00033569077, 0.059761938, 0.016816499, -0.012948344, 0.070105016, 0.043053113, 0.0017219438, -0.0041309013, -0.004552764, 0.03711502, -0.022026306, -0.060403716, -0.052662008, 0.0003713955, 0.080106005, -0.06951009, -0.03433075, -0.072754554, -0.023179406, 0.04372568, 0.021562971, 0.021286596, -0.035397436, -0.0075560347, -0.021539705, -0.06424846, -0.02121555, -0.01738735, -0.025062079, 0.0332154, -0.025908532, 0.012949204, 0.014900777, -0.041964985, -0.01449397, 0.0042655054, 0.019072156, 0.0003589925, 0.040544793, -0.0059227007, -0.0011534942, 0.00085253135, -0.020417808, -0.027073372, -0.0738829, 0.06369287, -0.09600006, 0.0057945373, -0.03870035, -0.044406492, -0.014893601, 0.018852998, 0.006723364, 0.00018953206, 0.011010334, -0.029155865, 0.019155668, -0.011907446, 0.011975914, 0.032210797, 0.007202863, 0.01778383, -0.004134839, -0.052166514, 0.004702031, -0.102705196, 0.00560807, 0.029070988, -0.0144506255, -0.05856092, 0.041563246, 0.10047186, -0.03318696, 0.087460294, -0.05585149, 0.011307118, -0.038790837, -0.0085051665, 0.026703795, -0.084710054, 0.011859269, 0.026400266, -0.05529077, -0.016597409, -0.038341634, 0.002462263, 0.034319248, -0.032928213, -0.077054866, -0.0155941555, -0.028705623, -0.01261218, 0.029319642, -0.0311665, -0.0035509984, 0.044902902, 0.04085186, 0.005039318, 0.009606907, 0.0061399345, 0.053937953, -0.00011258825, 0.043922074, -0.035535336, 0.03800544, -0.021790415, 0.022439001, 0.035627652, 0.04163034, -0.025106242, 0.0289606, 0.039056316, -0.025742155, -0.015395585, -0.04461506, 0.0068942863, -0.016995493, -0.019891655, 0.06369714, -0.013004967, -0.06778575, -0.038057383, -0.0013864987, 0.037011206, -0.015001446, -0.028440492, -0.022076711, -0.013631379, -0.050784398, -0.02176652, -0.0002530352, 0.084477976, 0.083751515, 0.028482346, -0.05069707, -0.054219045, 0.0083228825, -0.017648505, -0.004742879, 0.05047579, 0.007367036, -0.06015058, 0.025518404, -0.06006008, -0.01040977, -0.028150829, 0.0048466213, -0.0034995486, -0.05215989, -0.0040780907, 0.0031733827, -0.042413097, 0.012828497, -0.009511969, -0.051810075, -0.0072872248, 0.060551085, 0.059960578, 0.0289256, 0.017796831, -0.0017240231, 0.03218544, 0.095451295, -0.0154487295, -0.038992535, -0.047143918, -0.0149372285, -0.014129551, -0.0017310723, -0.016788812, -0.021235555, 0.0033780944, -0.045965366, -0.02126524, -0.011464396, 0.0052656205, -0.0029716352, -0.020734567, -0.045223337, -0.027635144, -0.076374136, 0.0042882413, -0.01847176, 0.01802849, -0.012042785, 0.013941635, 0.020945344, -0.05867406, -0.06955329, -0.03975176, 0.04297475, -0.03010635, 0.03189298, -0.013980615, -0.035259355, 0.008002211, 0.0080691045, -0.027613448, -0.014090147, -0.008991663, -0.04323918, 0.023705067, -0.03348807, -0.026843188, -0.07893033, 0.04510266, 0.0482271, 0.01406904, -0.005110202, 0.021602161, -0.009253298, 0.04182486, -0.006066018, 0.003991076, -0.010855997, 0.035517555, 0.08296538, -0.041685242, 0.006757099, -0.046639368, 0.041353565, -0.026427006, -0.026374524, -0.044121586, -0.002655047, 0.007798174, 0.042517252, -0.023863208, -0.01704739, -0.010250208, -0.02045633, -0.08006086, 5.3889507e-05, -0.050345987, -0.018973432, 0.027925462, 0.026189208, 0.0006345387, -0.0051330593, 0.071545094, 0.002255895, 0.0077150785, 0.00835766, 0.0014863696, -0.000869674, 0.009810599, 0.023982381, 0.005631474, 0.00096597936, 0.006482511, -0.06356196, -0.031417627, 0.0031448635, 0.044431962, -0.01301548, 0.040108763, 0.03526714, 0.0026434176, 0.034711625, -0.0017571376, -0.011949955, 0.04167132, 0.018170644, 0.032919314, -0.06484099, -0.016256906, 0.09234465, 0.048217174, -0.008067676, 0.05049142, 0.0072195167, 0.021278815, 0.009995408, 0.010293037, 0.015847707, -0.048187062, -0.033746257, 0.0014789479, -0.00054306333, 0.027363712, 0.020230452, 0.0016931575, 0.024102833, -0.0058339797, -0.026660845, 0.046122678, 0.0024620225, 0.018142577, -0.004888709, 0.027636873, -0.049757622, 0.01883623, -0.01688096, -0.0012618231, -0.039443936, -0.013442368, -0.037418265, -0.026254762, -0.0008108791, -0.047033295, 0.066438995, -0.061179668, -0.015736882, 0.028427063, 0.008987996, -0.006446531, 0.03691833, -0.005288817, 0.013822798, -0.011064012, 0.05208458, -0.029617023, -0.009928223, 0.015715757, -0.015257801, -0.014893167, 0.050280795, 0.057572756, -0.0022734643, -0.011814178, -0.021807155, 0.06282255, -0.02342799, -0.0017130232, -0.02232717, 0.034643203, 0.024789227, -0.009669899, -0.049166083, -0.009052471, 0.004261788, 0.02908245, -0.040794056, -0.028508082, 0.0024152596, -0.041300002, 0.025996184, 0.017562542, 0.043849695, 0.005593866, -0.045339976, 0.035790958, -0.009429903, 0.059682067, 0.011051283, 0.037249908, 0.012083699, -0.0359552, 0.02312172, 0.0063566, -0.023030119, 0.0039918437, -0.050989043, -0.03929222, 0.0015949372, -0.05097083, 0.020286495, 0.091444656, 0.04080484, -0.022689963, 0.030957315, 0.022728305, 0.021315724, -0.034617968, -0.06565731, -0.033780374, 0.021728868, -0.023606276, -0.07998727, 0.005745808, -0.012987149, -0.00020067423, 0.06669567, -0.037454955, 0.028003901, -0.08380333, 0.023953192, 0.042706035, 0.026762232, -0.041159406, -0.030851763, -0.048831984, 0.023634262, 0.0022574407, 0.03892174, 0.003827584, 0.03189233, -0.008230667, -0.020250477, 0.01899617, 0.028609402, 0.024009438, 0.00801088, 0.0007595657, 0.01612929, 0.0025806453, -0.010442868, -0.003800473, 0.0465377, 0.024298884, -0.05488009, -0.014796878, 0.027149117, 0.029309187, 0.025155548, 0.013673212, 0.05616189, 0.024936425, 0.0269352, -0.063434035, -0.059478913, 0.037337665, 0.023215082, -0.034579847, -0.028065927, 0.09909362, -0.0057198387, 0.027342204, -0.022429198, 0.06268828, 0.028158786, -0.071769655, -0.0096299555, 0.03711761, -0.032249063, -0.016715664, 0.0045945738, 0.003066576, 0.025662486, -0.03959481, 0.07422626, -0.068911694, 0.012082174, -0.032249663, 0.05158093, -0.047723446, -0.022548355, 0.08254255, -0.041076787, -0.030232975, -0.014138175, -0.06700745, 0.019786997, 0.03182707, -0.023194479, 0.008607436, 0.06406015, 0.015516105, -0.012834972, 0.005986557, 0.0233159, 0.02375865, -0.006868469, -0.029992858, 0.05695638, 0.0031858399, -0.012555725, 0.039828178, 0.01136557, 0.087858476, -0.009818912, 0.013094606, -0.01852484, -0.01877025, 0.05688697, 0.01624618, -0.025868116, -0.0057384805, 0.004168301, -0.020279732, -0.030786254, -0.06376553, -0.038844693, -0.0022249823, 0.04559173, 0.037067443, -0.01967177, -0.009158602, 0.02867555, -0.0020507104, -0.008191109, -0.041651797, 0.04921175, -0.0070520006, -0.013620817, -0.0117323715, 0.028105887, -0.0039737383, -0.047611333, -0.0071840743, 0.013328946, -0.040385023, -0.011736759, 0.035889037, -0.016105209, 0.04966651, -0.018009866, 0.07767373, -0.022204863, 0.004164646, 0.049771104, 0.0010200344, -0.026285557, 0.019552888, 0.029148908, -0.030258777, -0.007837655, 0.013057027, -0.015052385, 0.04835013, -0.017476344, 0.031531848, -0.03248171, 0.053524863, 0.0015526982, -0.017334392, 0.016737862, -0.02795823, -0.004186425, -0.0060835355, 0.0052352734, 0.014795348, -0.054548185, 0.021114483, -0.01754093, -0.0732248, 0.015550133, -0.01900489, -0.0021124857, -0.042398844, 0.011562881, -0.02891863, -0.050236143, 0.02848213, 0.030023793, 0.021700863, 0.069248825, -0.014428075, 0.009434244, -0.053242452, -0.053299867, -0.005502194, 0.04436776, -0.032106403, -0.019872012, -0.041277796, -0.012921052, 0.032508485, -0.015768625, -0.029846486, 0.04426495, -0.030409595, -0.030732494, 0.036018074, -0.072797686, 0.025023518, 0.00961427, 0.025276704, 0.053875256, -0.061390486, 0.038236186, -0.024441842, 0.03025293, -0.05138051, 0.04570212, 0.010275682, 0.009690545, -0.024646144, -0.029909572, -0.054753296, -0.038288623, -0.014089198, -0.0136004705, 0.003537755, 0.008508139, 0.024358114, -0.06128606, 0.037707884, 0.014405786, -0.016066562, 0.015869597, -0.0011955544, 0.031750586, -0.02712643, -0.038135484, 0.008115998, -0.004537406, 0.053423833, 0.0036370002, -0.027664285, 0.017973423, 0.0056984103, -0.050538912, -0.039566282, 0.047250655, 0.014562524, -0.046636246, -0.03766219, -0.02605194, -0.019716822, 0.0336675, 0.08000433, -0.016993111, 0.008264315, 0.04589384, 0.039224736, -0.02231582, -0.027884575, 0.029844573, 0.02815587, 0.03550861, -0.06313478, 0.049460754, -0.05043427, 0.008268009, -0.012611926, 0.015565622, -0.01882744, 0.016559249, 0.06797744, -0.0035798512, 0.031851504, 0.031338833, -0.08363802, 0.03591234, -0.02750878, 0.020452673, 0.06293346, -0.019912435, 0.043929923, 0.0016665421, 0.009862254, 0.041027907, 0.05149952, -0.0023035924, 0.0076348498, -0.036299888, -0.07430404, 0.07167125, 0.030633936, -0.0074359095, -0.07805306, 0.016207116, -0.057737544, 0.052053772, 0.036613878, -0.045335177, 0.031124415, 0.013161737, -0.021637896, 0.012928539, -0.017322104, 0.024392597, -0.078696445, -0.025289653, -0.021214532, -0.004394959, -0.0406045, 0.038147226, 0.03774546, -0.028216582, 0.007920435, -0.04284741, -0.008032585, -0.02916748, -0.05379491, -0.004673034, 0.031492844, -0.047556307, 0.06697221, 0.012253384, 0.04528343, -0.035202358, 0.023798827, -0.000152323, 0.01971096, 0.015792968, 0.002644369, 0.0006518858, -0.075640835, -0.010620889, 0.076564685, -0.03001863 ] }, { "values": [ -0.026379498, -0.03445044, -0.049751345, -0.056861777, 0.032384895, 0.03037173, -0.003855104, 0.02171564, -0.008940075, -0.0009208852, 0.026551722, 0.04406671, 0.019019945, 0.008838938, -0.04521994, -0.042677954, 0.015197293, -0.018114742, -0.0563728, -0.031287078, 0.057140876, -0.0060972883, -0.013017124, -0.066321775, -0.020673014, 0.009318666, 0.03952168, -0.013002118, -0.013863916, -0.036035568, 0.0077757686, -0.00939946, -0.02047808, -0.039820764, 0.043354455, 0.039219256, -0.024175823, -0.002346972, 0.029671134, -0.073175564, -0.05476471, 0.00830377, -0.06415271, 0.03156803, -0.0732972, 0.037100434, 0.00429694, -0.0016200389, -0.008460388, 0.051488657, 0.007908887, -0.006589777, -0.06479215, 0.016425718, -0.009902783, -0.013286016, -0.05448913, -0.07274116, 0.07505055, 0.029579878, -0.028870827, 0.027779432, -0.024881816, -0.0323268, -0.04703328, -0.00086975686, -0.05591669, -0.03466213, -0.08103615, 0.0020519153, -0.040226504, 0.011791171, -0.07538178, 0.02471392, 0.024509188, -0.023753317, 0.0009503084, -0.018346654, -0.016812684, 0.0026668126, -0.011211204, -0.013946215, 0.03518321, 0.0041681123, 0.009936153, 0.017275354, 0.05199744, 0.00048100585, -0.042892087, 0.04447864, 0.04961169, 0.0016693355, -0.040359348, -0.007905252, 0.05968704, -0.03602312, -0.009841453, -0.05324381, -0.0096855555, 0.09449708, -0.06495525, -0.030039866, -0.052030545, -0.047045372, 0.045226846, 0.050972197, 0.028789323, -0.04026189, 0.0024868688, -0.009741883, -0.06564566, -0.046481688, -0.041295137, 0.019069705, 0.03750997, -0.021421142, 0.04840968, -0.002400586, -0.03452378, -0.044475213, 0.0075104544, -0.0069776545, 0.01982846, 0.046305593, 0.019626506, -0.008617643, 0.002442311, -0.040031314, -0.03159435, -0.04010697, 0.038702436, -0.116838634, 0.008991842, -0.021791793, -0.04515215, -0.030027328, 0.037785035, 0.014052488, -0.04620075, 0.008534412, -0.02814961, 0.006310464, -0.040742345, 0.03833811, 0.041212134, -0.026489628, -0.024972435, -0.025734127, -0.032134052, -0.024342794, -0.08766655, 0.013238589, 0.008372625, 0.0074181627, -0.03669346, 0.013204972, 0.099679545, -0.06850206, 0.055534083, -0.06376254, 0.00056823, -0.05934255, -0.003162696, 0.0043947557, -0.03680594, 0.040061772, 0.04005181, -0.06751356, -0.039772335, -0.05126614, 0.012530009, -0.028815283, -0.05236876, -0.06382017, -0.04952961, -0.0064447382, -0.04580593, 0.030459467, -0.01821883, -0.013509843, 0.035807613, 0.05261467, 0.0064008054, 0.02554573, -0.04007086, 0.06507295, 0.032522418, 0.03971079, 0.005122264, 0.046444766, -0.040093906, 0.007828065, 0.044189885, 0.0008011207, -0.0036045366, 0.021097865, 0.08599441, -0.056926444, -0.033281878, -0.039708108, 0.011509377, 0.052373406, -0.03203439, 0.04192007, -0.027340792, -0.031938087, -0.02860435, 0.0030527653, 0.07371712, -0.016141845, -0.0027264704, 0.026755743, 0.0035918402, -0.013769724, -0.031277917, -0.03540185, 0.08306769, 0.03703884, 0.03743261, -0.06607874, -0.05510265, 0.034649, -0.012809768, -0.0091762375, 0.050741855, 0.043431118, -0.03288734, 0.015257464, -0.028503554, -0.021019196, -0.0205308, 0.024804294, -0.032787707, -0.03763684, 0.0075005027, 0.027645461, 0.0006515826, -0.0023247546, -0.043949697, -0.031265732, 0.009096446, 0.03812128, 0.062907584, 0.00571858, -0.012846887, 0.035831224, 0.049305715, 0.06929409, -0.055474687, -0.004886104, -0.03613958, -0.043526378, -0.02439111, -0.04694597, -0.04651799, -0.031981748, 0.004450501, -0.052155565, -0.021695951, 0.013166895, 0.030022167, -0.0196706, -0.024280649, -0.038545795, -0.022380896, -0.03406318, -0.0077830018, 0.014967292, 0.030243969, -0.027860763, 0.0057238187, 0.027046649, -0.07337352, -0.040184762, -0.01068672, 0.050590776, -0.011961552, 0.016735798, -0.022116521, -0.042032566, 0.02079646, -0.011750949, -0.028560849, -0.038688272, 0.005124132, -0.027290702, -0.004736773, 0.007359481, -0.022736272, -0.039102167, 0.01977759, 0.046230707, 0.015281267, 0.00042134195, 0.025977904, -0.03618475, 0.019526927, -0.002621123, -0.014156694, -0.031004053, 0.0059122825, 0.0827803, -0.01888678, 0.008414182, -0.0057254257, 0.029535053, -0.03529935, -0.034593813, -0.008110635, -0.0035136966, 0.01326243, 0.039668795, -0.032445975, -0.02218813, 0.00041125334, -0.0021742017, -0.11431588, 0.03133518, -0.02929597, -0.022483796, 0.017640743, 0.0043544406, 0.013663311, -0.01759757, 0.022847733, -0.009036013, 0.0028924146, 0.035987183, 0.011307968, -0.015471041, -0.00014642322, 0.03804653, 0.03251782, 0.015955467, -0.00850345, -0.018411662, -0.04831946, 0.017556658, 0.024293898, -0.0051382864, 0.05922892, 0.021025814, 0.0107062, 0.030812085, 0.030837698, -0.033512034, 0.02626373, 0.0011925737, 0.016868362, -0.07889648, -0.020760618, 0.08829297, -0.011198059, -0.020934379, 0.04015767, 0.02712351, 0.017695362, 0.037355885, -0.030206125, 0.02877752, -0.057746425, -0.024964172, 0.00543193, -0.017816292, 0.034784954, 0.031837232, 0.008497916, 0.03798076, -0.03769911, -0.015934203, 0.047763105, -0.00095347967, 0.025859114, 0.040113352, 0.040205404, -0.075696304, -0.0034649821, -0.024994683, 0.0010295345, -0.019548647, -0.03461723, -0.031114224, -0.0203178, -0.0013287032, -0.057302363, 0.03294283, -0.06365869, -0.006588639, 0.03391885, 0.016453091, -0.01894229, 0.0060447506, -0.017433617, 0.014596401, 0.018824818, 0.07173379, 0.0010629443, 0.0032188564, -0.0138771, -0.003496926, -0.037412055, 0.0052784327, 0.08010753, -0.024347575, 0.011699467, -0.015180119, 0.061570324, 0.018567538, 0.010298609, -0.031716086, 0.06642599, 0.02376437, 0.01055927, -0.014631845, 0.00909841, 0.0443265, 0.0271483, -0.050707754, 0.0031403196, -0.017511796, -0.011419052, 0.0050763595, 0.008371724, 0.058058444, -0.038961925, -0.046576712, 0.010810097, 0.04241625, 0.05477607, 0.0052913367, 0.0064692465, 0.012826231, -0.03472701, 0.0073967744, -0.065463334, -0.023932625, -0.008293226, -0.039437354, -0.020848377, 0.0040324377, -0.02576104, 0.010779033, 0.07614949, 0.0650973, -0.0288264, 0.018925648, 0.024550373, -0.021483451, -0.043313354, -0.07985382, -0.03960562, -0.008865365, -0.009131166, -0.071201704, -0.01546189, 0.008690343, 0.03531662, 0.04374186, -0.006934071, 0.006031315, -0.07109865, 0.033668827, 0.047483485, 0.013880216, -0.048821226, 0.0024609328, -0.05969369, 0.004919861, -0.0049371603, 0.042990416, 0.014786628, 0.020606218, 0.008501374, -0.01287225, 0.016655011, 0.018798472, -0.017672021, 0.015467057, 0.026185697, 0.014517268, -0.018845929, 0.002776993, 0.016603548, 0.024284512, 0.028992813, -0.06504633, -0.03499959, 0.031980153, 0.04018951, 0.015530633, 0.036355164, 0.042343076, 0.032977436, 0.041286256, -0.051739946, -0.035388704, 0.06541434, -0.021241132, -0.007462523, -0.037617054, 0.106967956, 0.029983435, 0.01733895, -0.017546535, 0.009721559, 0.022820007, -0.080374256, -0.010476086, 0.04448395, -0.007771269, -0.00020786247, 0.01523809, 0.026834834, 0.0016549523, -0.01188952, 0.068405196, -0.0803434, 0.0052933353, 0.0064800726, 0.041070372, 0.016576806, 0.0027657172, 0.06653412, -0.023458548, -0.03955459, -0.0021115132, -0.069678344, 0.011623149, 0.046722617, -0.05969913, -0.018272432, 0.04512239, 0.023838159, 0.015611687, 0.022119634, 0.0073100226, 0.023242822, 0.0029987977, -0.015623434, 0.06338405, -0.002359503, 0.01940491, 0.021520767, -0.009072, 0.09459724, -0.021606345, 0.033686355, -0.027857695, -0.033170693, 0.070959106, -0.0051738834, 0.0032455164, 0.01723948, 0.032368287, -0.016727014, -0.050558627, -0.046481073, 3.2674127e-06, -0.047959093, 0.0038691605, 0.04250445, -0.006612206, -0.0034093978, 0.018449824, 0.026760466, -0.0017046364, -0.04038216, 0.030107735, 0.022722175, -0.03412841, 0.003487652, 0.038119882, -0.03429825, -0.020409403, 0.010817957, -0.0039968584, -0.020382453, -0.0019106301, 0.020492626, 0.009331614, 0.024249405, -0.023113808, 0.08508924, -0.030782128, -0.013448777, 0.0500847, 0.02004602, -0.029456478, 0.019860312, 0.059545916, -0.03623327, 0.012482401, 0.01656936, -0.02119901, 0.049397334, -0.042035624, 0.017491696, -0.02779599, 0.065364406, 0.009742278, -0.04955313, 0.00040348992, -0.027074603, 0.010618289, -0.02933656, -0.0077758855, -0.00078029645, -0.04458186, 0.00460971, 0.0016562338, -0.09274584, 0.022750925, -0.034443397, -0.021690814, -0.041483328, 0.035995424, -0.025596948, -0.0022951267, 0.0012383073, 0.0029447284, -0.0019396405, 0.06000754, -0.018103307, 0.01202825, -0.06294755, -0.009188679, -0.02120411, 0.051485468, -0.02533919, -0.017099952, -0.030716548, 0.044540398, 0.044726685, -0.03492644, -0.020813199, 0.023214778, -0.004012073, -0.038277987, -0.0013885454, -0.07341477, 0.021870688, 0.001987919, 0.043447766, 0.019792888, -0.086888485, 0.029033676, -0.02387193, 0.01860696, -0.0071023167, 0.056330327, 0.02259196, 0.07292923, -0.030518504, -0.04878635, -0.062216092, -0.016156713, -0.029946785, 0.009215006, -0.00347509, -0.009851545, 0.004316903, -0.0559908, 0.03611309, 0.02591606, -0.01603494, 0.035288744, 0.019629033, 0.028183203, -0.009103387, -0.015274599, -0.011698967, 0.003835237, -0.008315361, 0.0020313512, -0.016606117, 0.00010488296, -0.004399771, -0.03845528, -0.041035194, 0.04092986, 0.022017023, -0.067592286, 0.0120970905, -0.020772701, -0.023497436, 0.0049909498, 0.0573001, -0.025868488, 0.018760981, 0.039925255, -0.0008685335, -0.048997615, -0.012247863, 0.015711915, 0.0048932326, 0.0085830465, -0.04552678, 0.062986314, -0.06978674, 0.006951015, -0.030206889, 0.018963153, -0.044004645, -0.026364384, 0.08510686, 0.014391352, 0.031974345, -0.0006619983, -0.076647334, 0.030793417, -0.03629829, 0.026159389, 0.065061145, -0.021357337, 0.011429188, 0.014546747, 0.018754104, 0.031801954, 0.051745262, -0.044091307, -0.011896344, -0.06636852, -0.04451274, 0.10251282, 0.029887069, 0.023748325, -0.049213447, 0.014396959, -0.049576562, 0.04663033, 0.048925553, -0.031908564, -0.014696955, 0.039074387, -0.0012275483, 0.011129436, -0.019575328, -0.0010807804, -0.06980922, -0.0378034, -0.014023344, -0.007830866, -0.04233461, 0.011813989, 0.026711402, -0.002151813, -0.006859066, -0.0670164, -0.0017172861, -0.0064248084, -0.03393756, -0.020975286, 0.06275657, -0.018571598, 0.03628748, -0.011352916, 0.04467383, -0.031844914, 0.040493485, -0.0020597707, -0.005006829, -0.003663418, 0.0026193054, 0.005972472, -0.09728139, -0.005676487, 0.065929115, -0.020555519 ] }, { "values": [ -0.0037897553, -0.039563462, -0.036939114, -0.03966073, 0.028005373, -0.0049847076, 0.020209333, -0.017926088, -0.00830574, 0.011531102, 0.013763476, 0.051617373, 0.008736292, -0.0084177395, -0.057196096, -0.02266619, 0.010066698, -0.005288002, -0.08949161, -0.060490914, 0.03705587, 0.0014665116, 0.012718343, -0.07240033, -0.009268175, 0.021874225, 0.021088364, -0.033182662, -0.01437046, -0.024654176, -0.0058411425, 0.027311757, -0.02080491, -0.039183225, 0.090680614, 0.025270645, -0.044318482, 0.003317348, 0.016221477, -0.058881607, -0.054267943, 0.013199537, -0.055637658, -0.0065459125, -0.045075007, 0.027738374, 0.026062416, 0.028638633, 0.016946, 0.0738316, 0.067895256, -0.0015924054, -0.06266079, 0.01729139, 0.02319814, -0.028211249, -0.09162282, -0.09601888, 0.048129108, 0.027704598, -0.035682887, -0.002358729, -0.030495739, -0.04270643, -0.014260325, -0.008358197, -0.018149823, -0.045505755, -0.074619204, -5.785996e-05, -0.028961308, -0.00070208963, -0.06678975, 0.037724603, -0.010198782, -0.028454022, -0.031013288, 0.017723288, -0.043852966, 0.0036511258, -0.028882034, 0.013049461, 0.045549173, -0.0052876067, 0.013011283, 0.024548164, 0.056432478, -0.016132632, -0.02963025, 0.043751307, 0.0685571, -0.01100555, -0.020855457, -0.0014776164, 0.03876512, -0.05592682, -0.013793948, -0.06757146, -0.022450741, 0.10551789, -0.04964058, -0.030264968, -0.0406051, -0.04627868, 0.047918122, 0.0337821, 0.01517539, -0.06549058, -0.0028415308, 0.040478233, -0.06974139, -0.0416662, -0.027546687, -0.0027909079, 0.023697352, -0.0048937392, -0.00025778747, -0.0057947813, -0.02580717, -0.042612206, -0.009303098, -0.0074947663, -0.04953979, 0.04210965, 0.0026129032, -0.0120674735, -0.026313975, -0.045263898, -0.030258011, -0.07747701, 0.067307346, -0.115298696, 0.011919408, -0.034648884, -0.058260854, -0.044376638, 0.05027574, 0.04514918, 0.007732824, 0.022926334, -0.027992913, -0.013098685, -0.0002408468, 0.024699714, 0.03288236, -0.052688878, -0.03506942, -0.030913996, -0.040255766, -0.0064780717, -0.04670827, 0.012781771, 0.024891805, 0.035557095, -0.043848146, 0.019073458, 0.09621443, -0.061847676, 0.033945747, -0.054592364, 0.018356832, -0.044496194, 0.010345295, 0.03003447, -0.016057607, -0.0009205169, 0.0052849404, -0.068452775, -0.023611972, -0.06032777, 0.02847052, 0.011250145, -0.06640543, -0.09134145, -0.004170659, 0.01948777, -0.024532998, 0.069240235, -0.00077844627, -0.020581933, 0.044013735, 0.013644278, 0.007893011, 0.01772768, -0.012685834, 0.04890408, -0.011498206, 0.038723107, 0.03381273, 0.05401584, -0.027994609, 0.0005974064, 0.01972431, 0.022756862, 0.007686197, 0.028378693, 0.08673802, -0.035722047, 0.024091216, -0.057408698, 0.040612895, 0.004056482, -0.009051277, 0.020050505, -0.027368318, -0.04825945, -0.030191293, -0.00016051403, 0.056738272, -0.012884034, -0.026806511, 0.007951637, 0.010221084, -0.013835455, -0.055661142, 0.025206905, 0.068348825, 0.04287035, 0.005475473, -0.033003595, -0.04816167, 0.02463564, -0.0045961454, -0.009909286, 0.03161545, 0.0022380862, -0.064535774, -0.02876033, -0.023630442, -0.010857077, -0.02337351, -0.008981216, -0.026388524, -0.048430894, 0.021352554, 0.0048764343, 0.013959626, 0.0014229371, -0.007812304, -0.02324712, 0.009298661, 0.015730921, 0.054885287, 0.020150205, 0.02107725, 0.04457296, 0.039031964, 0.09686789, -0.058586154, 0.001407907, -0.008292924, -0.030836323, -0.039036166, -0.012264632, -0.029912693, -0.03693702, 0.002696609, -0.060292482, -0.034619167, -0.05066997, 0.026350498, -0.013532491, -0.040448386, -0.04429527, -0.018159674, -0.041340794, -0.027970778, -0.0046775597, 0.070627764, 0.014104119, -0.01674446, 0.039896455, -0.04456211, -0.0601927, 0.007593529, 0.05674625, -0.02380393, 0.0048903795, -0.040969748, -0.03818597, 0.02147522, -0.025462871, -0.0440476, -0.034189153, 0.020189045, -0.032253142, -0.013160879, 0.001750138, -0.04446219, -0.046492543, 0.06897126, 0.021122212, 0.0099057825, -0.0067849564, 0.0023592445, -0.035228554, 0.020818861, 0.00019560171, 0.0135342395, -0.03022924, 0.0238943, 0.06398993, -0.007511965, -0.013421234, 0.009622735, 0.045952637, -0.040469356, -0.04112034, -0.030455075, 0.0030326876, 0.0052449503, 0.04481096, 0.001288007, -0.016180247, 0.013494004, 0.015759865, -0.09981814, 0.037390996, -0.015340059, -0.041310143, 0.015841577, 0.0024966127, -0.00068209565, 0.0050249035, 0.025776098, -0.022224128, 0.013855405, 0.02093244, 0.0017341669, -0.03318141, 0.0072833947, 0.03669647, 0.031849906, -0.0016617926, -0.008389806, -0.008707917, -0.019325856, 0.0037117633, 0.050257564, -0.010303992, 0.07009727, 0.005041847, 0.033865806, 0.012072777, 0.010950923, -0.03487044, 0.024769366, 0.008827539, 0.060082737, -0.07220499, -0.018064901, 0.1043159, 0.012842589, -0.005763563, 0.027858818, 0.033110548, 0.043091156, 0.04390477, 0.012876639, 0.0053554587, -0.04034068, -0.008603444, 0.01716071, -0.030394152, 0.028825454, 0.0039004076, 0.026966939, 0.027194668, -0.04493393, -0.023810014, 0.03965143, 0.020764148, 0.033386096, 0.022500565, 0.021708233, -0.083880946, -0.015243553, -0.010330595, -0.002093591, -0.021054607, -0.044153713, -0.024953254, 0.00042522655, -0.019828865, -0.040650733, 0.032412123, -0.07564735, -0.033042055, 0.040552445, 0.012201187, -0.013001551, 0.0307377, -0.028120011, 0.004724454, -0.009248386, 0.071878046, -0.028851524, 0.01869246, 0.03436132, -0.027339112, -0.027947033, 0.008862259, 0.06888458, -0.0034909144, 0.011754816, -0.0049749133, 0.053526383, 0.029542904, 0.020873506, -0.035642546, 0.053734183, 0.034767043, 0.026587779, -0.031223599, 0.0058078934, 0.014010681, -0.0077634184, -0.031234596, 0.009531977, -0.0015306649, -0.016559731, 0.0063057137, 0.026727583, 0.049216513, -0.012823774, -0.08996905, 0.038983945, 0.021949178, 0.012621715, -0.019197283, -0.010666936, 0.024023768, -0.04002299, 0.017498156, -0.06919282, -0.028663952, -0.012325333, -0.03685733, -0.023212824, -0.023322381, -0.007790324, 0.0067027966, 0.08598353, 0.039614346, -0.028587509, 0.036211476, 0.04559387, 0.012562235, -0.055163052, -0.054078005, 0.003356432, 0.029752586, -0.033756632, -0.047856156, 0.002245092, -0.003880756, 0.037230384, 0.03189528, -0.012459507, 0.014869123, -0.06808521, 0.0146387275, 0.029740587, 0.03302669, -0.019343589, -0.0057478533, -0.045822393, 0.014426562, 0.006957947, 0.03342774, 0.028068554, 0.011560583, -0.013518063, -0.006083143, 0.029949859, 0.024744356, -0.015547257, -0.012286743, 0.03936015, 0.015553428, -0.049438268, 0.024428833, 0.04219487, 0.041489687, 0.028085988, -0.057447523, -0.045251984, 0.022348441, 0.055178497, 0.014224222, 0.005623288, 0.043241467, -0.00017851529, 0.044851463, -0.041419454, -0.042718396, 0.06435668, -0.0003611551, 0.01601731, -0.05190735, 0.09405792, 0.023504019, 0.014534088, 0.004429369, 0.0062487335, 0.016081009, -0.029043214, -0.011682272, 0.04354637, 0.0003547637, 0.0056371386, 0.0072651943, 0.0371073, 0.0029747477, -0.04419171, 0.07112029, -0.04693006, 0.006244878, -0.023690974, 0.06541232, -0.016700916, -0.03990917, 0.063758515, -0.03963515, -0.03965803, 0.0023305998, -0.038104445, 0.006239771, 0.02912293, -0.039088126, -0.0023807199, 0.036147945, 0.0067883004, 0.009155635, 0.008554921, 0.03196773, 0.017857421, -0.0031247826, -0.031470563, 0.083435826, 0.010014132, -0.003973564, 0.05186796, 0.0119015295, 0.10222786, -0.011241472, 0.06469556, -0.017128414, -0.039068907, 0.07821815, -0.0058697346, -0.021267094, 0.040127296, 0.050956037, -0.06260628, -0.060015984, -0.03509643, -0.023547418, -0.05249828, 0.006085755, 0.02462721, -0.006171274, -0.004544186, 0.019050356, 0.0138245635, 0.0030707358, -0.003221547, 0.07269312, -0.0255129, -0.020984108, 0.004389587, 0.021275822, -0.008726395, -0.005257467, -0.015441699, 0.030838946, -0.019951168, -0.0107356, 0.042943884, 0.0031456412, 0.043416888, 0.0035908844, 0.1083692, -0.03462894, -0.017896954, 0.06073899, -0.010986294, -0.024680937, -0.007153336, 0.037136037, -0.007916218, 0.024093755, 0.030257044, -0.024279227, 0.0715337, -0.024298027, 0.02822978, -0.036700632, 0.028075581, 0.022428023, -0.039041597, 0.0028557172, -0.03820177, 0.023214405, 0.022769632, -0.012342707, 0.018073877, -0.02819062, 0.047107022, -0.015169911, -0.06714314, 0.020982144, -0.007857444, -0.0011260406, -0.054938477, 0.030641025, -0.009926627, -0.02541379, 0.011045393, -0.022803288, 0.0032271773, 0.054460496, -0.039650686, 0.0076853368, -0.035723157, -0.02719716, -0.017785877, 0.03186818, -0.03407728, 0.0018126442, -0.017333433, 0.00022965038, 0.07113055, -0.015801169, -0.029278891, 0.020850034, 0.000688188, -0.023662928, 0.026299633, -0.053701684, 0.026651997, 0.024378514, 0.0071884086, 0.026346121, -0.075699754, 0.054369017, 0.001839433, 0.032294936, -0.0031148524, 0.02099521, 0.0023200416, 0.024756381, -0.013849996, -0.037850935, -0.07693448, -0.028927773, -0.0016320016, -0.01909446, 0.009705527, -0.015271979, -0.00083341595, -0.046218295, 0.02407258, 0.016855286, -0.00013435032, -0.0016170104, 0.013320467, 0.025519105, -0.0022171228, -0.03632464, -0.015886879, -0.0074846577, -0.013934068, 0.02030423, -0.053127088, 0.013110198, -0.0037890899, -0.024367677, -0.021405064, 0.031395443, 0.01760632, -0.07078574, -0.0039579174, -0.0075451657, -0.010662188, 0.012026917, 0.03536093, -0.014330481, 0.026045466, 0.016590063, 0.010086946, -0.04488183, -0.045620862, 0.018148357, 0.01122185, 0.0041090245, -0.043599773, 0.06160908, -0.101214275, 0.0017976896, -0.00850849, 0.022680135, -0.077630766, -0.00548272, 0.051486723, -0.0021121916, 0.035112742, 0.011461717, -0.06576643, 0.029007375, -0.025784308, 0.0026388094, 0.059374217, -0.04424611, 0.022872144, 0.021733576, 0.036960527, 0.046329476, 0.06864365, 0.0021583387, -0.027931148, -0.06391632, -0.036087237, 0.07889991, 0.032286312, 0.011602096, -0.06558979, 0.020899659, -0.039844003, 0.06441249, 0.036256466, -0.049175788, -0.021008441, 0.024439296, -0.015585136, 0.021032246, -0.041993845, 0.014241509, -0.04474416, -0.022392578, -0.016785508, -0.023822082, -0.053787928, 0.026193185, 0.038718328, -0.0093046175, 0.009882026, -0.05439242, 0.0074560796, 0.022570664, -0.053458136, 0.005327107, 0.036618706, -0.01946672, 0.022682289, 0.0023328373, 0.038535528, -0.012185365, 0.041292846, 0.007917136, -0.0063049975, 0.00887501, -0.0033992268, 0.004916752, -0.06600967, 0.0019034933, 0.078352794, -0.02181959 ] }, { "values": [ 0.0018965824, -0.043352146, -0.025931371, -0.03280778, 0.055326544, 0.006153039, 0.014881057, 0.0024697576, -0.015605963, 0.0064925808, 0.0046656574, 0.039415166, 0.008087375, 0.009969623, -0.055567022, -0.015046606, 0.010547607, -0.017515011, -0.11589779, -0.045311242, 0.06434616, 0.0062613594, 0.00750705, -0.04890886, -0.010382143, -0.0115019, 0.04616779, 0.0031619198, -0.03104807, -0.011372797, 0.0020288147, 0.034293048, -0.0063695586, -0.032475453, 0.049376823, 0.060639415, -0.08960931, 0.0038575898, 0.051432174, -0.07071612, -0.07096585, 0.022749007, -0.039262973, 0.008390999, -0.054720532, 0.051115282, 0.057283632, 0.018353028, 0.013026664, 0.057247147, 0.042518355, -0.021603303, -0.04351149, 0.027521446, 0.00668256, -0.031314995, -0.07961925, -0.07343296, 0.043834236, 0.036877092, -0.028805865, 0.03406946, -0.024095355, -0.046198796, -0.0238425, -0.031180024, -0.027219813, -0.0282799, -0.04238443, 0.018614978, -0.02384074, -0.010031269, -0.07659814, 0.041944914, -0.010330027, -0.018206306, -0.004627305, -0.012549352, -0.0364151, 0.0083829, 0.020348737, 0.021617377, 0.03217612, 0.018023558, 0.0018526883, 0.014707767, 0.086262174, -0.038416617, -0.016854107, 0.04834597, 0.07238034, -0.0073157023, -0.046155483, -0.010371934, 0.01310201, -0.044368, -0.030454943, -0.042578228, -0.006046071, 0.058690004, -0.043636233, -0.03288093, -0.025294947, -0.05515158, 0.012824651, 0.018940534, 0.022698633, -0.082639545, -0.030035404, 0.015758963, -0.0700834, -0.032879483, -0.04055309, -0.0017912317, -0.01922742, -0.021690024, -0.019485636, 0.013938723, -0.020347659, -0.034687426, -0.023316769, -0.01998447, -0.04760012, 0.061241098, 0.000138266, -0.021878686, -0.029922884, -0.03514, -0.048171848, -0.04117073, 0.100582905, -0.10366425, 0.043862224, -0.032608423, -0.055719044, -0.020625193, 0.08727639, 0.029667621, 0.028526505, 0.015819836, -0.026057992, -0.015055178, -0.048470624, 0.03885219, 0.025705377, -0.031402953, -0.038797837, -0.046949837, -0.03140781, 0.019547187, -0.04783085, -0.02001374, 0.011209296, 0.03724155, -0.04740728, 0.06482915, 0.07596009, -0.045211997, 0.048148446, -0.05421685, 0.020465262, -0.015929077, -0.005046059, 0.018216016, -0.029412182, 0.010678303, 0.016720457, -0.06021105, -0.040157456, -0.074501894, -0.00040060963, -0.0034770886, -0.080118865, -0.07928515, -0.034609213, 0.0023257304, -0.025303118, 0.0393365, -0.04110889, -0.037759047, 0.040530402, 0.059641074, -0.028639285, 0.002380212, -0.026779568, 0.025341947, -0.000828384, 0.0536219, 0.021883894, 0.06004001, -0.013582029, 0.0021111837, 0.044199504, 0.018018713, 0.0041382257, 0.015666738, 0.06972156, -0.023819067, -0.00080416567, -0.036208622, 0.034471728, 0.013110617, -0.032735527, 0.048207223, -0.026363859, -0.009629589, -0.029559214, -0.03085857, 0.052069344, -0.023994152, -0.040686037, 0.004828253, 0.01563457, -0.053247716, -0.02921661, 0.023579681, 0.06817731, 0.062916666, 0.043150537, -0.038994793, -0.08799606, -0.011582594, -0.011404881, -0.011562318, 0.029236691, 0.007112574, -0.050318368, -0.017676523, -0.028784335, -0.0034208377, -0.0015237089, 0.015458466, -0.017632956, -0.0061319633, 0.028645856, -0.025955603, -0.0012914859, 0.0266467, -0.018572444, 0.02406948, 0.021372516, 0.005861946, 0.026117764, 0.03958787, 0.00740317, 0.060108405, 0.050353054, 0.08791765, -0.037461128, -0.019242102, -0.03416626, -0.016537951, -0.074456125, -0.0222423, -0.02613583, -0.0139930025, 0.02344789, -0.043270238, -0.03015358, -0.03717458, 0.04579215, -0.031079663, -0.01030181, -0.04045778, -0.017622517, -0.031441875, -0.032017857, -0.0006273085, 0.06288994, -0.0043289587, -0.029520335, 0.040695164, -0.058465432, -0.03661843, -0.0021579282, 0.066314146, -0.042729646, -0.021745525, -0.007921118, -0.03512907, 0.04843405, -0.0060376283, -0.017888486, -0.036172323, 0.0030808004, -0.034164622, -0.018161265, 0.033261668, -0.04343798, -0.025019644, 0.06372589, 0.029762613, 0.0058096685, -0.023689853, 0.002326282, -0.0067440765, 0.024403222, -0.0032042104, -0.043057933, -0.00036001738, -0.0050118947, 0.07938402, -0.03363057, -0.017114887, 0.023570823, 0.03296625, -0.021032808, -0.01282879, 0.0039264685, -0.010410293, -0.0021130538, 0.030421613, -0.013030736, 0.0027190468, 0.001344228, 0.005882197, -0.121959805, 0.022598926, -0.024524283, 0.00559938, 0.010436055, 0.0022318873, 0.035941977, 0.016912237, 0.05103484, -0.0033520353, -0.0074811033, 0.016872494, 0.005679169, -0.033064824, 0.020213693, 0.05428596, 0.048983723, 0.01972052, -0.0008556614, -0.0014710174, -0.020437151, -0.0028994665, 0.055295575, -0.004650333, 0.072987586, 0.012641596, 0.044414688, 0.015129943, 0.022822523, -0.054623324, 0.049972117, -0.007427067, 0.05380552, -0.07037469, -0.022740517, 0.08465973, 0.024743596, -0.004138017, 0.020474372, 0.003752647, 0.0068119816, 0.019276628, -0.00709267, 0.015446168, -0.015828546, -0.006338651, 0.017398445, -0.029414395, 0.04919131, 0.023269098, 0.04006477, 0.028894965, -0.040461123, -0.037711173, 0.056056112, 0.008756485, 0.025253402, 0.017691303, 0.028554415, -0.03138397, -0.000101779566, 0.009276526, 0.00089639955, -0.046387307, -0.03413023, -0.013581674, -0.0145486435, -0.036925208, -0.045935124, 0.039063618, -0.05248484, -0.0207668, 0.028370928, 0.021606006, -0.030110464, 0.03684417, -0.019401442, 0.02685844, 8.378974e-05, 0.06642213, -0.039568193, -0.012962847, 0.03971807, -0.015300706, -0.021338984, 0.014039033, 0.05181702, -0.019642528, -0.0035370071, -0.009155397, 0.03949345, 0.015504198, 0.011664122, -0.051980957, 0.054778893, 0.01586281, 0.002322652, -0.04966726, -0.020201297, 0.01053527, 0.019497767, -0.011412876, 0.010816482, -0.006818784, -0.011830794, 0.021663811, 0.019257078, 0.009538528, -0.027837312, -0.07911524, 0.010714241, 0.03409859, 0.029356325, 0.011772642, -0.00039296178, 0.028351337, -0.05064063, 0.022746924, -0.025568692, -0.016986206, -0.015938494, -0.024881924, -0.0059553445, -0.014202607, 7.966417e-05, 0.0103691425, 0.04077716, 0.046592113, -0.011752866, 0.0259845, 0.033849195, -0.0050375713, -0.04618737, -0.07265111, -0.00827313, 0.00958329, -0.014093452, -0.017952623, -0.006881579, -0.0038065151, 0.021657033, 0.029308723, -0.03300926, 0.037956186, -0.09928462, 0.016033769, 0.04738789, 0.049815815, -0.02977329, -0.0021887962, -0.04567894, 0.026489204, 0.016964933, 0.0694226, -0.0135066975, 0.014927114, 0.003652706, -0.025908194, 0.031350438, 0.037504766, -0.010874573, 0.03815358, 0.05736074, -0.010102805, -0.041145064, 0.024572354, 0.044392813, 0.045021582, 0.044952787, -0.05484282, -0.013009191, 0.03656432, 0.07431893, 0.039075814, 0.023505835, 0.05843899, 0.011964771, 0.015457703, -0.02993763, -0.045536164, 0.033729818, -0.0049672914, 0.028131297, -0.042107783, 0.079437554, -0.0015382214, 0.018600317, -0.022061063, 0.0023753531, 0.01078392, -0.058823854, -0.035531502, 0.045360416, -0.0025783626, 0.0137523, 0.0061578737, 0.03845254, 0.022861566, -0.020251637, 0.057994276, -0.064776644, -0.026396772, -0.014082554, 0.07122286, 0.036090236, -0.021585943, 0.05543567, -0.029765144, -0.053753145, -0.025994312, -0.015464506, 0.033834185, 0.030887827, -0.011948012, -0.0029369176, 0.028123233, 0.0022087349, -0.0027594366, 0.0029081074, 0.009990764, 0.028115708, -0.0014879936, -0.021903861, 0.040138796, 0.012562132, -0.00035123972, 0.03779646, 0.008220946, 0.09069538, -0.007626921, 0.039036054, 0.012990405, -0.049945887, 0.037973788, 0.014568885, -0.03321592, 0.06146447, 0.040709067, -0.047178518, -0.07068988, -0.020558074, -0.03741721, -0.060789835, 0.027969854, 0.008579133, -0.0007048863, 0.030440314, -0.030766737, 0.013935737, -0.0128031215, -0.016479863, 0.054319732, -0.02179805, -0.03066593, 0.010891285, 0.03933001, -0.032610256, -0.0006749664, -0.014088159, 0.01802979, -0.012522025, -0.026773904, 0.03378332, 0.00042286958, 0.016385771, -0.016927024, 0.105595015, -0.015440319, 0.00171356, 0.06987744, -0.012004843, -0.027622169, -0.0137832165, 0.014120873, 0.004389595, 0.023060855, -0.011260492, -0.006712872, 0.080507845, -0.02299294, 0.042035792, -0.028552776, 0.046300083, 0.026327724, -0.028652422, 0.017453171, 0.010170295, 0.027587533, 0.02389552, -0.011931811, 0.018435549, -0.039004706, 0.052363344, 0.004970155, -0.055532087, 0.0329144, -0.0075106905, 0.010148893, -0.06159528, 0.023424752, -0.01400001, -0.051051468, 0.026719246, -0.008288244, -0.012891807, 0.035630807, -0.04720347, 0.0033844414, -0.04870241, -0.0074701146, -0.024277976, 0.04421982, -0.03224642, 0.011535702, -0.022326078, -0.0018745352, 0.024934653, -0.016528912, -0.027165448, 0.038245898, 0.0009660732, -0.033315767, 0.0064187027, -0.058937244, 0.0420426, 0.008491075, -0.009542908, 0.0014960298, -0.09879545, 0.06977216, -0.0085348, 0.008454572, -0.0031696728, 0.05982879, 0.044766117, 0.043802366, -0.03233566, -0.015553624, -0.07251704, -0.036829356, 0.010302132, -0.021336209, 0.017689552, 0.0053856308, -0.005578808, -0.054204192, 0.007439579, 0.03180668, 0.017580712, 0.0031145376, 0.020017512, -0.008260702, -0.019128261, -0.034592874, -0.003559192, 0.0057715396, -0.00034817978, 0.004194348, -0.028619807, 0.019892298, 0.014769836, -0.018657394, -0.023363208, 0.027793016, 0.026568592, -0.0890123, -0.020009808, -0.027732907, -0.011972226, 0.0071418933, 0.016135646, -0.0032897259, 0.03049266, 0.012516409, 0.010339948, -0.0717765, -0.023010934, 0.016305285, -0.003840061, -0.0071145, -0.047024447, 0.008839324, -0.07968911, 0.018836997, -0.008310828, -0.018704703, -0.06431685, -0.017053869, 0.054202642, 0.0038250207, 0.05047535, 0.039369382, -0.06147009, 0.0058361283, -0.012440886, 0.0073019736, 0.06817181, -0.031050742, 0.026475575, 0.007967776, 0.033756707, 0.04182614, 0.053161025, 0.0035737432, -0.020704003, -0.044040926, -0.025574325, 0.086939804, 0.0130337095, -0.025677469, -0.03979821, 0.03277251, -0.055030115, 0.0865348, 0.06241549, -0.062181827, 0.01618001, -0.0016465324, -0.0066905543, 0.024045927, -0.0058018705, 0.029988898, -0.023828916, -0.008377988, -0.013463307, -0.022486519, -0.05889421, 0.0051707644, 0.047878385, 0.0191353, -0.003151808, -0.00015570146, 0.014843431, -0.0074251303, -0.09179863, 0.000569024, 0.021235188, -0.03331824, 0.03323919, 0.0015327326, 0.035225164, -0.030366987, 0.03005484, 0.009100437, 0.0050733504, 0.012651575, -0.01598959, 0.0035734652, -0.08655763, 0.022209268, 0.07035695, -0.043232832 ] }, { "values": [ -0.01908567, -0.020492008, -0.04706804, -0.04753969, 0.034396973, -0.005586519, 0.0031449941, 0.004528011, -0.036673643, 0.04252142, -0.009445263, 0.038981996, 0.010943315, 0.02385064, -0.053772386, -0.032065887, 0.004150711, -0.035436943, -0.08626717, -0.042083465, 0.047028773, 0.022994488, -0.0013000157, -0.06354279, -0.02084521, 5.001992e-05, 0.062298924, -0.0033457696, 0.0014363953, -0.024050148, 0.01019509, 0.02974623, -0.03292126, -0.032991685, 0.081501774, 0.046194587, -0.06688406, 0.022330806, 0.04288779, -0.051223576, -0.066399924, 0.041114938, -0.0143327005, 0.013829329, -0.049639717, 0.035341688, 0.06156064, -0.003494096, -0.029944204, 0.10528793, -0.001887462, 0.0011192047, -0.04237145, 0.023804832, 0.00070013595, -0.018806292, -0.047482256, -0.072988085, 0.06568048, -0.007252521, -0.023612019, 0.016931662, -0.0056736604, -0.06151739, 0.002064342, -0.033188783, -0.040949825, -0.019659586, -0.04259112, -0.001711044, -0.02610669, 0.00919409, -0.072151095, 0.009024697, 0.0056227604, -0.00079572055, 0.0052644336, 0.022106022, -0.01696776, 0.009001374, 0.0035395795, 0.0027854436, 0.06631051, 0.012718262, -0.0006271723, 0.023636136, 0.060446516, -0.011317885, 0.0061177565, 0.050606493, 0.057448354, -0.011569895, -0.05738818, 0.011649851, 0.018476961, -0.05648139, -0.043577492, -0.04947589, 0.005337847, 0.094063565, -0.016035587, 0.028985402, -0.024644125, -0.04128923, 0.013618704, -0.0091835065, 0.04615801, -0.087426245, -0.028420722, 0.03660552, -0.05966, -0.043844108, -0.06771568, 0.0026215638, -0.0031545933, -0.0085276775, -0.019982591, 0.0024904772, -0.0021441614, -0.02448718, 0.016279915, -0.042991582, -0.044173304, 0.051161777, -0.016131278, -0.002588252, -0.016747357, -0.04080789, -0.05038396, -0.049257535, 0.106637694, -0.09808085, 0.020318376, -0.027420277, -0.067156695, -0.03964585, 0.03735793, 0.03963095, -0.005776713, 0.007058828, -0.0060476726, -0.0024551067, -0.032637727, 0.022829851, 0.03701126, -0.027083559, -0.0007587558, -0.030943617, -0.03904754, 0.020797191, -0.0730046, -0.04033535, 0.029265206, 0.013184735, -0.04032147, 0.030369397, 0.09181701, -0.022741893, 0.05912437, -0.057087764, 0.0014992481, -0.038040303, 0.01305416, 0.0021255033, -0.027314655, 0.0171938, 0.032248504, -0.0883349, -0.0077713034, -0.06079665, 0.042630408, 0.035332106, -0.04553511, -0.11385857, 0.00061664946, 0.0065317024, -0.03584426, 0.062142197, 0.011296204, -0.04481111, 0.05340831, 0.035724368, -0.013925055, -0.01736024, -0.046646036, 0.0073028477, -0.002706161, 0.07539278, 0.033274986, 0.06422617, -0.036100015, -0.031099217, 0.0179599, 0.00068331807, -0.018653065, 0.023469016, 0.06489519, -0.014580579, 0.004071078, -0.05231795, 0.045976434, 0.00079413917, -0.020055419, 0.030742625, -0.017226102, -0.019731557, -0.06428452, -0.02275011, 0.028709793, -0.00391374, -0.039805196, 0.004174842, 0.0013408958, -0.06741593, -0.018194051, 0.022408344, 0.044599075, 0.082338996, 0.015000044, -0.057995185, -0.06658334, 0.0052472497, 0.017767064, -0.009239506, 0.034551445, 0.020509953, -0.004092408, -0.018428976, -0.027600694, 0.021021545, -0.0054313964, 0.013695269, -0.007678581, -0.005273783, 0.031211471, 0.000982565, -0.01494923, 0.03174333, -0.0012259992, 0.002944225, -0.0041307327, 0.016842894, 0.024297345, 0.020273155, 0.012871026, 0.041250475, 0.045652054, 0.12314906, -0.052055355, 0.00075813255, -0.04269254, 0.0013212694, -0.069648944, -0.007320402, -0.032027334, -0.03354704, 0.034263242, -0.04084115, -0.04608216, -0.04653009, 0.036379244, -0.026717475, -0.027476862, -0.049580816, -0.007894428, -0.0752901, -0.010469649, -0.008954025, 0.07747215, 0.007182208, -0.0039138137, 0.0026153037, -0.04101402, -0.054820813, 0.009224463, 0.044955093, -0.02638266, -0.0032473647, -0.010032141, -0.046910435, 0.028962681, 0.015793012, -0.019582942, -0.014212812, 0.023058906, -0.042594608, -0.01569698, -0.010322068, -0.032447357, -0.04626096, 0.064487584, 0.047709152, 0.021801375, -0.0015559956, 0.01731575, -0.03755875, 0.012768551, -0.0111506395, 0.0037890584, -6.1843435e-05, -0.0022926664, 0.096127465, -0.0435113, -0.017737467, -0.021873703, 0.032793764, -0.020856623, -0.023984104, -0.0035199057, -0.009312051, -0.0018265451, 0.052446466, -0.024793243, -0.005793621, 0.012072387, 0.02259753, -0.11101283, 0.03535712, -0.028502347, 0.01460224, 0.039049923, 0.0055308226, 0.02132518, 0.014598225, 0.05062449, -0.012685137, -0.022220647, 0.0062971823, -0.010201476, -0.044466164, 0.015259852, 0.042940274, 0.03916909, 0.013757738, 0.002147029, -0.020572428, -0.027524564, -0.007912224, 0.050043553, 0.026442723, 0.06123569, 0.027168384, 0.0339088, 0.0026503468, 0.023650289, -0.051067006, 0.025582362, 0.019139176, 0.065291554, -0.04934382, -0.018933171, 0.07464236, 0.017730094, 0.00028043793, 0.070411615, 0.018708304, 0.011936299, 0.033052858, 0.013972796, -0.0047162957, -0.016786369, 0.010439076, 0.002221074, -0.042288512, 0.0130497655, 0.019145785, 0.033626772, 0.016205389, -0.03349977, -0.058026202, 0.03528833, 0.0055073085, 0.029205134, 0.00087267533, -0.0036197603, -0.06060089, 0.005616818, 0.022522809, -0.011296872, -0.0405504, -0.028012771, -0.028745076, -0.007896771, -0.024727486, -0.040194266, 0.026534244, -0.05761513, -0.026343433, 0.018758813, -0.013819079, -0.03358332, 0.019380607, -0.016847642, 0.010842742, 0.006032293, 0.029930567, -0.038964476, -0.031870358, 0.0370874, -0.019570353, 0.0021144622, 0.0065918076, 0.04232059, -0.015643807, -0.009788606, -0.020596651, 0.047078494, 0.009508498, 0.016486512, -0.03337324, 0.054769654, 0.0022598475, -0.007905526, -0.04842075, -0.0032660316, 0.012484637, 0.0027632178, -0.024101203, -0.008535492, -0.0016942044, -0.0063202237, 0.013593884, 0.020919042, 0.053912684, -0.008941851, -0.06682456, 0.037072107, 0.0018860999, 0.06360088, 0.02338709, 0.016274435, 0.03935448, -0.06517042, -0.0051011313, 0.006984283, -0.008229673, -0.012621327, -0.0136827305, -0.0018374132, -0.003568059, 0.0058455467, -0.010766061, 0.067099735, 0.037043154, -0.056360245, 0.030675462, 0.027655793, -0.035182726, -0.042649545, -0.05943898, 0.019752141, 0.017431285, -0.01743698, -0.04442812, 0.042562317, 0.004259915, 0.0535848, 0.031004766, -0.041436937, 0.032747105, -0.06961659, 0.0010936352, 0.047788985, 0.05851208, -0.010859753, -0.021108977, -0.01395489, 0.033521216, 0.021090712, 0.06328734, -0.017518321, -0.028876606, -0.0016794325, -0.023770727, 0.03262043, 0.04265151, 0.00045707013, 0.01714047, 0.04746121, 0.017163962, -0.031326555, 0.009715551, 0.0231905, 0.058177, 0.037171714, -0.05645053, -0.03363699, 0.008804935, 0.051298857, 0.018155469, 0.008709268, 0.057027437, 0.026085515, 0.0025579047, -0.025505433, -0.042014983, 0.053965688, -0.021996092, -0.001759169, -0.052954316, 0.08981744, 0.0348196, 0.024439832, -0.010851, -0.0047518066, 0.01200535, -0.031062163, -0.05312606, 0.060793974, 0.018300314, -0.00022897753, 0.012351695, 0.06633583, 0.016624292, -0.033275094, 0.08947373, -0.0544056, -0.020736828, -0.025742123, 0.070983835, 0.018509097, -0.038633987, 0.057121474, -0.034492787, -0.06509631, -0.022795787, -0.051136438, 0.04847308, 0.039654687, -0.020499041, -0.0032576628, 0.040916633, 0.011505784, -0.018835766, 0.029656362, 0.008357788, 0.028266773, 0.0044337367, -0.020501541, 0.049511444, 0.01659529, -0.025741935, 0.041091725, 0.018963993, 0.08665252, 0.009875103, 0.03973783, 0.027671026, -0.019694466, 0.076910935, 0.011173408, -0.034576822, 0.05087859, 0.024710197, -0.06806557, -0.060323883, -0.026085004, -0.023920892, -0.054531902, 0.019948965, -0.009801547, -0.00983411, 0.0051989313, -0.009385499, -0.02450529, -0.025933005, -0.013881451, 0.04962788, -0.02492647, -0.042612035, 0.012457497, -0.0047866595, -0.041222766, -0.017135067, -0.011175227, 0.011292543, -0.021214552, 0.015324756, 0.027455453, -0.00029786158, 0.022281377, 0.0010807328, 0.11106469, -0.025937747, -0.023318866, 0.02530937, 0.009113997, -0.034433477, -0.002491348, 0.0013060085, -0.0019670415, -0.010608586, -0.018030943, -0.022257403, 0.05377052, -0.01598161, 0.025922837, -0.041604873, 0.04239312, -0.0022652207, -0.03684967, 0.015087009, -0.0052699116, 0.012234409, 0.03912409, 0.0007622378, 0.01624428, -0.03641035, 0.05269998, -0.009896935, -0.04695996, 0.0035872885, 0.0029681756, -0.007814763, -0.04765913, 0.04419318, -0.012310071, -0.032038655, 0.044703465, -0.0073259072, -0.01813628, 0.048319306, -0.04460653, 0.00905155, -0.049791276, -0.026812399, -0.022431463, 0.0766038, -0.016835399, 0.010149276, -0.064272285, -0.011655532, 0.016148472, -0.052386787, 0.0029055895, 0.011186322, -0.0012608649, -0.053551055, 0.011771729, -0.056502122, 0.056015637, 0.0036529978, -0.008878538, 0.033864018, -0.077979185, 0.067380875, -0.020471258, 0.010880847, -0.021531317, 0.045301255, 0.040698033, 0.017998315, -0.030000607, -0.042840607, -0.0495027, -0.030173237, -0.03446902, -0.023587218, -0.007044844, -0.00586122, -0.031625617, -0.048082106, 0.019156907, 0.07217839, 0.026354278, -0.02796409, -0.027874988, 0.0057405373, -0.024785353, -0.05798306, -0.03145416, 0.01999536, 0.00047706545, 0.03528079, -0.03482883, 0.011885944, -0.003186692, -0.026365165, -0.053292364, 0.011045142, 0.014652458, -0.05818164, -0.01326814, -0.01594226, 0.0031567384, -0.0024092712, -0.002708, -0.015611222, 0.020373903, 0.03029438, 0.020190004, -0.041700903, -0.02166926, 0.006656695, 0.0062360563, 0.010125183, -0.05758824, 0.024197266, -0.072406255, -0.00025267457, -0.031117225, -0.027585508, -0.046550382, -0.00063145877, 0.06347034, 0.002529936, 0.01767944, 0.024326226, -0.05816142, 0.023771396, -0.016403282, -0.017040716, 0.05395751, -0.04333741, 0.03774371, -0.017645868, 0.023579594, 0.04352428, 0.019776799, -0.001207486, -0.009272622, -0.020568255, -0.028940093, 0.0722761, -0.007607994, 0.016465655, -0.06510295, 0.01951717, -0.050367355, 0.04982206, 0.036572073, -0.025774095, 0.011277306, 0.011813195, 0.0030513627, 0.041440018, -0.02217445, 0.01328638, -0.02050656, 0.011181613, -0.009731455, -0.013351257, -0.037013095, -0.013245075, 0.055646487, 0.0031270946, -0.023674453, 0.00972051, 0.027076516, 0.011456859, -0.072299674, 0.0053752447, 0.033676557, -0.04617566, 0.052352402, -0.0049235746, -0.007827507, 0.011927444, 0.008963432, 0.021307927, 0.016842607, 0.02050011, 0.005122575, 0.0131393485, -0.079139166, 0.020169524, 0.060565054, -0.049850725 ] }, { "values": [ -0.065397516, -0.0024039878, -0.046580322, -0.053513832, 0.013454805, 0.022388726, -0.0050409194, 0.024631813, 0.0018794519, 0.0342587, -0.008234493, 0.025237674, 0.017253134, 0.043086328, -0.042671148, -0.07340668, -0.017151205, -0.029834794, -0.09716721, -0.06034339, 0.0486141, 0.02697602, -0.024037195, -0.06781713, -0.045679174, -0.024696263, 0.028674938, -0.015567827, 0.014003163, -7.444083e-06, 0.020112382, 0.029315326, -0.019205622, -0.0626215, 0.029324105, 0.05926118, -0.0775227, 0.024796246, 0.02574705, -0.0645032, -0.07855846, -0.0021302206, -0.013200149, 0.036678784, -0.03336238, 0.045359995, 0.063905604, 0.0062042326, -0.03686803, 0.09335787, -0.0064336187, 0.0042469837, -0.06723203, -0.004301791, -0.043338835, -0.029992094, -0.03655152, -0.05048305, 0.05628083, 0.00056735, -0.024532815, 0.00059802266, -0.009760167, -0.03386527, 0.013502858, -0.022042645, -0.041309346, -0.005268419, -0.02991302, 0.0075913607, -0.062306892, 0.0031204133, -0.08103069, 0.02094933, 0.0048897117, 0.013910378, 0.017783517, 0.01580004, -0.0034043891, -0.0072880434, 0.014166358, 0.044280637, 0.06390087, 0.012638513, -0.0020566722, 0.013065806, 0.05181284, 0.018757196, -0.0031198275, 0.025784545, 0.0579111, -0.010476263, -0.069040105, 0.012792578, 0.04098064, -0.033120275, -0.032049656, -0.05736297, 0.0068869498, 0.08199378, -0.06047171, 0.019104239, -0.052908808, -0.026168028, 0.021556638, 0.006677658, 0.023893666, -0.06352938, -0.027278455, 0.0047345506, -0.03740303, -0.053962562, -0.0314566, 0.0041259034, -0.021134537, -0.028166078, -0.024046643, -0.009470065, -0.008788437, -0.016748248, 0.008576378, -0.024656113, -0.0076604206, 0.070617266, -0.006358576, 0.0013120989, 0.00034420667, -0.019245923, -0.044264004, -0.03610377, 0.079266764, -0.058530886, 0.0449569, -0.028965129, -0.05428875, -0.01714135, 0.070967935, 0.03847482, -0.021733532, 0.019185828, 0.002385009, -0.0016089312, -0.036193017, 0.014881752, 0.042383503, -0.025608156, -0.005597958, -0.07110794, -0.057380643, 0.048409067, -0.11418392, -0.052797638, 0.059740707, -0.015473454, -0.08315673, 0.015245048, 0.08482871, -0.019364383, 0.05867127, -0.08453938, 0.011063205, -0.020343034, 0.009043746, 0.025735365, -0.025129147, 0.06629666, 0.041454274, -0.05011259, -0.0012651308, -0.05914395, 0.0057931845, 0.0017731887, -0.061874248, -0.077208966, -0.022795234, 0.0062256837, -0.052371215, 0.030230569, 0.010447527, -0.03266008, 0.039862573, 0.05164964, -0.021003196, -0.0010813638, -0.022734344, 0.046700954, 0.031552922, 0.0711343, 0.036661033, 0.05178393, -0.019449206, -0.007493754, 0.030191408, 0.003595873, -0.02980428, 0.003425062, 0.08698087, -0.040984612, 0.005581793, -0.04278699, 0.03691964, 0.00608819, -0.013393393, 0.025978947, -0.019893175, -0.009874956, -0.07706812, 0.00090801995, 0.047119014, 0.0034607858, -0.035849683, -0.02194956, 0.02009203, -0.036393728, -0.014606749, 0.001093615, 0.04501065, 0.0761682, 0.049240362, -0.050809093, -0.06861099, 0.01996234, -0.014399619, -0.013009991, -0.0011256782, 0.018546524, -0.025165278, 0.0021920006, -0.037087616, -0.042295977, -0.006328495, 0.014047058, -0.015765224, -0.0032988, 0.042220656, 0.030646522, 0.011037647, 0.007828594, 0.0451309, 0.01682993, -0.002203051, 0.0012591132, -0.0050987694, 0.013804452, 0.01200149, 0.0172591, 0.02316668, 0.12940404, -0.041568484, 0.0016829934, -0.05261979, -0.0026542824, -0.011069377, -0.027374053, -0.030184653, -0.043216042, 0.004646109, -0.06565113, -0.020287454, -0.024310853, 0.003918061, -0.012828211, -0.02816392, -0.040729884, 0.0042105946, -0.057470076, 0.004536485, -0.018417656, 0.033443637, -0.008745199, 0.000117070864, 0.0064513646, -0.02601151, -0.048251554, -0.0051088044, 0.026899686, -0.020271465, 0.0007000662, -0.028508468, -0.055255003, 0.024266493, 0.014777832, -0.00042864884, -0.017981054, 0.018011207, -0.013373714, -0.020583695, 0.016834298, 0.0012327505, -0.020020816, 0.039143242, 0.06806019, -0.013888643, -0.002552367, 0.039284162, -0.03820063, 0.007983231, 0.009118312, 0.0043743555, 0.015739104, 0.011849423, 0.077253416, -0.05223903, 0.009976974, -0.013976731, 0.053120952, -0.028885659, 0.0012232924, -0.016390987, -0.0087117925, -7.066212e-05, 0.026492508, -0.025264112, -0.024292266, 0.017872894, -0.00031651233, -0.13396111, 0.016145831, -0.025160406, -0.017557524, 0.040869556, -0.010632732, 0.018488836, -0.00987645, 0.021977728, 0.0036228816, -0.018295111, 0.030419113, 0.0035299973, -0.0311133, 0.018034164, 0.035819, 0.057074174, -0.006593654, 0.017339017, -0.028998092, -0.030433478, 0.010102564, 0.056450326, 0.013427674, 0.08644794, 0.020811463, 0.02989245, 0.008264487, 0.02714973, -0.056972876, 0.04808044, 0.012352268, 0.06071194, -0.06706525, -0.011751308, 0.044118445, 0.011614321, 0.001052908, 0.039020527, 0.0025278288, 0.00017362516, 0.014605281, 0.0071029286, -0.027770266, -0.02263842, 0.015113523, -0.018600708, -0.035929963, 0.020166112, 0.039156746, 0.0062029357, 0.03491955, -0.038304597, -0.06510642, 0.023695594, 0.008654138, 0.0068082074, -0.011868355, -0.0021743742, -0.040000323, 0.028277658, 0.031760376, -0.015426109, -0.049017258, -0.022785375, -0.04093534, -0.033914007, -0.0007552777, -0.04151225, 0.032683983, -0.04725306, 0.0036967476, 0.019918494, -0.008644446, -0.021897973, 0.047376353, -0.010028603, -0.003465163, -0.026746197, 0.0492161, -0.029872231, -0.003595288, 0.020160107, -0.017543664, -0.021649864, -0.0044853403, 0.06468908, -0.012305759, 0.0134645365, -0.018995948, 0.050162945, -0.010527683, 0.008153735, -0.01780372, 0.053857144, -0.0073900805, -0.0103401765, -0.044624303, -0.008366137, 0.02409662, -0.007002588, -0.037572086, 7.896199e-05, 0.0016676452, -0.030424535, 0.025815573, 0.0012667873, 0.035846543, 0.004376772, -0.056843184, 0.045428336, -0.003231567, 0.074227564, 0.05029908, 0.022610562, 0.050107103, -0.051515184, 0.0055962442, 0.020434724, -0.027824786, 0.0020731166, -0.017210603, -0.010508052, 0.022624772, -0.024481874, -0.009334791, 0.08237461, 0.025798181, -0.027523387, -0.007703852, 0.037649423, -0.034327276, -0.04059314, -0.07271868, -0.008971507, 0.042159032, -0.001672388, -0.031303916, 0.04799361, 0.046821248, 0.033060648, 0.038201388, -0.051490936, 0.026502082, -0.093828455, 0.0018815185, 0.036578756, 0.041480467, -0.03472681, -0.04573984, -0.044764202, 0.005370636, 0.020782493, 0.068790846, -0.0041613863, -0.015551693, 0.0064745233, -0.056812856, 0.02691457, 0.030811831, 0.009601468, 0.025418445, 0.021618528, 0.037788644, -0.04199998, 0.01008181, 0.017512623, 0.06954785, 0.047354646, -0.06376208, -0.015178188, 0.05169865, 0.053814992, 0.02620651, 0.038502883, 0.08179487, 0.015087412, 0.00223481, -0.03497922, -0.022913245, 0.045794412, 0.012426569, 0.010661523, -0.013861507, 0.08764144, 0.03366856, -0.011555646, -0.0341596, 0.008542821, 0.041133486, -0.045715824, -0.051028863, 0.031844363, -0.024879426, 0.0171618, 0.000982314, 0.025104098, 0.006505832, -0.014351302, 0.06523494, -0.05995514, -0.0048031043, -0.02821097, 0.06750584, 0.031591844, -0.022668442, 0.053114213, -0.032134008, -0.06786396, -0.011134105, -0.029888911, 0.029841851, 0.03237695, -0.0075173737, -0.023889137, 0.03511833, -0.004019525, -0.009057289, 0.024838988, 0.045149315, 0.027331242, 0.009597527, -0.011373417, 0.031313274, 0.011252035, 0.009113128, 0.038864188, 0.023978055, 0.10650902, -0.019386457, 0.02869093, 0.03470793, -0.020989407, 0.07067273, 0.027161429, -0.024845816, 0.05648991, 0.018989332, -0.0407836, -0.033127293, -0.029661337, -0.018466651, -0.03911189, -0.0028975524, 0.0043861847, -0.018563833, 0.0327719, 0.0016281742, 0.015434373, -0.011216941, 0.0012919644, 0.0034853462, -0.03536558, -0.030287454, 0.0066805524, 0.009092823, -0.026451003, -0.025756964, -0.030380115, 0.0037731281, -0.008293925, 0.028106747, 0.027214915, 0.014437007, 0.033304043, 0.017797748, 0.08779695, -0.018522404, 0.0008356751, 0.039372645, 0.013641989, -0.027168356, 0.0042455513, -0.0064931666, -0.019706413, -0.014494209, 0.0040897294, -0.01254713, 0.06964989, -0.035074268, 0.02874191, -0.039386738, 0.08192543, -0.0091679515, -0.040623076, 0.020422699, 0.01256068, 0.034176603, 0.005890856, 0.018327411, -0.012695162, -0.037232734, 0.026576975, -0.04288632, -0.06095833, 0.014967546, 0.017369399, -0.009169846, -0.03558166, 0.016787091, -0.0372158, -0.009728743, 0.030463027, -0.012085461, -0.020775001, 0.039938327, -0.051571317, 0.02503685, -0.046173066, -0.0121480115, -0.011968053, 0.0582248, -0.020865977, -0.014684841, -0.046429306, -0.016576735, 0.008797438, -0.041421976, 0.0266549, 0.016247965, -0.00834989, -0.057760783, -0.02071658, -0.039756678, 0.04439123, -0.009707675, -0.008423513, 0.019234125, -0.07143977, 0.07392787, -0.023863198, 0.02759816, -0.004802171, 0.06198122, 0.023137443, 0.037812077, -0.02703091, -0.03596272, -0.081433244, -0.025642864, -0.0298117, 0.014243351, -0.030724088, -0.007012417, -0.02511291, -0.05855145, 0.015974626, 0.060996078, 0.0043155174, -0.0054246406, -0.032543976, 0.001450578, -0.03431622, -0.053400822, -0.020098658, 0.017496549, -0.023389317, -0.0017549135, -0.038400013, 0.014626202, -0.007032916, -0.025809623, -0.05013252, 0.02196537, 0.0028031794, -0.07434797, -0.0023995626, -0.009979077, 0.009077157, -0.0115946885, -0.0072079753, 0.0075595314, 0.01316423, 0.020670174, 0.011040482, -0.06493657, 0.0026999332, 0.021808544, 0.025951233, 0.02630425, -0.04204026, 0.0060914657, -0.060718786, 0.023058873, -0.035622362, -0.026898557, -0.028956216, -0.0134174405, 0.048665173, -0.025684893, 0.04714243, 0.02877293, -0.06362786, 0.027711429, 0.014562073, 0.007664724, 0.049534015, -0.042975698, 0.028536709, 0.015268752, -0.0027511255, 0.052220035, 0.029053966, -0.019844363, 0.010725016, -0.030706901, -0.03634396, 0.083418824, 0.005078555, -0.01672713, -0.055397563, 0.034658544, -0.035678543, 0.05893288, 0.037572213, 0.0038234973, 0.006268659, 0.021152664, -0.0002084661, 0.053106386, -0.002342873, 0.015857207, -0.052546125, 0.01186801, -0.0320901, -0.00043517112, -0.05982399, -0.020489857, 0.053330176, -0.022806019, -0.018960614, 0.00798838, 0.002515019, -0.03194655, -0.07074056, 0.0099161165, 0.03134198, -0.0144799175, 0.049221177, 0.00919684, 0.0068667727, -0.0053208494, 0.043221395, 0.003985092, 0.036109127, 0.00330088, 0.019731944, -0.0012070156, -0.111613855, -0.013610446, 0.061852634, -0.02700654 ] }, { "values": [ -0.050428774, -0.028407423, -0.058230434, -0.065288536, 0.02109615, 0.013262679, 0.0027537968, 0.030234335, 0.0066148955, 0.044704173, 0.0039439322, 0.04443644, 0.015209628, 0.055781517, -0.049148615, -0.05908873, 0.0034862473, -0.04088221, -0.06523291, -0.034338865, 0.033306297, 0.02075544, -0.02677405, -0.06495823, -0.020791113, -0.0036604954, 0.020323072, -0.024407586, 0.016632272, -0.006285648, 0.027862063, 0.020361545, -0.015936837, -0.03586526, 0.06530931, 0.024240535, -0.044295233, 0.021853069, 0.022286287, -0.058952693, -0.055922437, -0.0024107087, -0.007827053, 0.016599774, -0.056882977, 0.035131425, 0.057204165, -0.02017016, -0.045002338, 0.079787396, 0.021395558, -0.003237886, -0.057013974, 0.0016811161, -0.0415038, -0.025395986, -0.03629183, -0.04823831, 0.055011354, 0.008662702, -0.022738766, 0.0015810768, -0.00666431, -0.02281654, 0.018454041, -0.004169941, -0.025883669, -0.022536825, -0.049427744, 0.015747016, -0.05214334, 0.002245868, -0.057730466, 0.023623277, -0.014064824, 0.0053842, 0.004927044, 0.033651404, -0.01752072, 0.006185996, 0.008104837, 0.01858457, 0.080620505, 0.051105376, 0.01881476, 0.007182511, 0.0509015, 0.026792578, -0.028904995, -0.0016418628, 0.080958046, -0.023930784, -0.059135105, 0.0030215625, 0.029177453, -0.07064482, -0.032476462, -0.067480706, 0.0026639327, 0.092882074, -0.06692981, -0.018175501, -0.08091009, -0.028608067, 0.03447779, 0.039242227, 0.017657863, -0.054681744, -0.00053049484, -0.006404561, -0.04935894, -0.0526852, -0.048573915, -0.0006236921, 0.008938354, -0.055155583, -0.015097357, 0.018084912, -0.015739968, 0.009327656, 0.0040850714, -0.025084645, -0.0111204935, 0.06811444, -0.0064427606, -0.0073446445, 0.034262374, -0.057970483, -0.040267486, -0.0531998, 0.06005027, -0.06635048, 0.017590052, 0.022342352, -0.060296472, -0.030818982, 0.027243758, 0.04871075, -0.048046373, 0.009408989, -0.014844154, -0.01786873, -0.00925811, 0.031054113, 0.025081364, -0.031178063, 0.014090798, -0.032242384, -0.05078314, 0.044863857, -0.1207426, -0.02633735, 0.051107395, -0.009266073, -0.076880746, 0.041521534, 0.07717736, -0.021135217, 0.033052403, -0.06510798, 0.013031676, -0.0102835735, 0.020501371, 0.031926088, -0.01939537, 0.04217251, 0.05531639, -0.032300353, -0.010434795, -0.08236568, -0.002646651, 0.0131532205, -0.03901044, -0.06061707, -0.012291308, 0.018575884, -0.070726775, 0.014451307, -0.03335194, -0.029188035, 0.024307933, 0.07120954, -0.011319763, -6.683222e-05, 0.0069057965, 0.031096924, 0.021677809, 0.071909375, 0.02669764, 0.06951624, -0.004255475, -0.039058443, 0.033419218, -0.010286028, -0.008537693, 0.019876527, 0.07859719, 0.0023608427, -0.010249039, -0.049854126, 0.019984538, 0.012915521, -0.030625707, 0.010433657, -0.01191517, -0.018627714, -0.08420891, -0.016042968, 0.053642534, 0.012057929, -0.019193867, -0.012793712, 0.0060408306, -0.035257373, -0.008215084, -0.008679408, 0.03271857, 0.036113467, 0.053803563, -0.04928845, -0.04973761, 0.024558587, -0.017615601, -0.034238458, 0.0029395008, 0.01741614, -0.016007535, 0.01851622, -0.041625965, -0.048332233, -0.017896237, -0.0026699854, -0.007835435, -0.035319794, 0.0631497, 0.0677302, 0.020558951, -0.013421507, 0.024965066, 0.03618776, -0.008290754, 0.026429662, 0.021181822, -0.0059346766, -0.011884782, 0.012744193, 0.028289929, 0.11920951, -0.057152268, 0.007796808, -0.04953127, 0.007097539, -0.017162798, -0.038128495, -0.03718841, -0.03636281, -0.01254215, -0.05714802, -0.014025193, -0.00468543, 0.019422159, -0.004461526, -0.0199312, -0.05343211, 0.001438929, -0.0899581, 0.0074449354, -0.010881708, 0.034041714, -0.0068009, 0.0027235204, 0.022879865, -0.04421614, -0.050595354, 0.018920267, 0.05407877, -0.016336093, 0.00889772, -0.048878692, -0.06882059, 0.025899133, 0.028180344, -0.015875224, -0.011658621, -0.009229555, -0.006233855, -0.013679935, 0.015107602, 0.02134326, -0.017622638, 0.042012878, 0.08598258, -0.009507796, 0.02516838, 0.042671595, -0.04197009, 0.0010469888, 0.010728992, 0.028825767, -0.020396877, 0.0017780944, 0.06855279, -0.03320095, 0.040144905, -0.017837688, 0.032272518, -0.061039228, -0.0023334615, -0.0057889856, 0.008689294, -0.008851576, 0.015291182, -0.02204108, -0.018698033, 0.0071835746, 0.00023840339, -0.10650671, 0.023265565, -0.012463136, -0.041990466, 0.020762363, 0.013439985, 0.003768228, -0.007917082, 0.01296052, 0.006970116, -0.005226166, -0.0065649557, 0.015510755, -0.014868956, 0.013248085, 0.025387743, 0.0430936, -0.023041805, 0.014451422, -0.009050012, -0.022892462, 0.028577955, 0.044215307, -0.004643127, 0.07109155, 0.029543573, 0.021460418, 0.012199406, 0.025464864, -0.028605215, 0.038236327, 0.009214974, 0.05292335, -0.03715746, 0.010580929, 0.02713555, -0.008446658, 0.027000668, 0.03736353, 0.03556258, 0.004896651, 0.06278496, -0.0060309004, -0.014964918, -0.031634632, -0.01108531, -0.03152449, -0.03409543, 0.010664749, 0.048635997, -0.007171, 0.04629137, -0.03605981, -0.053997856, 0.01698144, 0.009264952, 0.013869232, -0.0023745878, 0.029222496, -0.062436275, 0.028099816, 0.026998917, -0.01637282, -0.026522266, -0.030203363, -0.04581928, -0.0371139, -0.005521504, -0.0253791, 0.02725783, -0.050110616, -0.009165779, 0.03238196, -0.00405049, -0.022592409, 0.05359084, -0.015015592, 0.03233768, -0.00013709007, 0.038234074, -0.018670173, 0.0023125305, -0.0068459674, -0.0077285566, -0.05867659, -0.015402527, 0.055319257, -0.0013236889, 0.0027938965, -0.03661477, 0.059086505, 0.022985522, -0.0064157797, -0.04368515, 0.027689565, -0.05259708, -0.024653368, -0.01537784, 0.012043184, 0.054476876, -0.0019291061, -0.040950637, -0.008487059, 0.014783789, -0.011032388, 0.01815118, -0.020470751, 0.056050137, 0.012509657, -0.07774062, 0.043687776, 0.004009215, 0.065628245, 0.041512553, 7.289286e-05, 0.03488942, -0.04389618, 0.013744074, 0.0024637964, -0.045988046, 0.01139811, -0.024521036, -0.01693606, 0.0054695676, -0.005321784, -0.008651991, 0.072071224, 0.015181828, -0.033338588, 0.0059126937, 0.044391297, -0.014401968, -0.03875135, -0.07798887, -0.008227253, 0.048219126, 0.009106596, -0.035731148, 0.01930347, 0.018101776, 0.01597053, 0.05462272, -0.024521848, 0.009189953, -0.094179384, -0.0066564856, 0.03611242, 0.0499764, -0.028569592, -0.024058789, -0.056159157, 0.0066069635, 0.04015026, 0.040356077, 0.016047198, -0.004844468, 0.0033668203, -0.041224875, 0.034529954, 0.023782533, -0.008895304, -0.013558291, 0.009782363, 0.027090495, -0.028383825, 0.0240509, 0.011180337, 0.05221859, 0.03842586, -0.06703041, -0.027110903, 0.012343001, 0.048291605, 0.036272433, 0.04210316, 0.07111286, 0.029394101, -0.002974502, -0.038744096, -0.03390951, 0.039938, 0.0030650822, 0.0013296263, -0.025010504, 0.100255355, 0.024985846, -0.0146501, 0.00032102302, -0.022217035, 0.043050133, -0.05602455, -0.027560463, 0.03754372, -0.009608116, 0.032462854, -0.0011431171, 0.04247856, -0.024589472, -0.038136046, 0.064919904, -0.046702087, 0.01768557, -0.035888907, 0.07802115, 0.019255208, 0.009105533, 0.08603666, -0.032754816, -0.07003011, -0.0065514273, -0.04850357, 0.044181958, 0.042384956, -0.029231206, -0.019470226, 0.030907946, 0.020831155, -0.023584563, 0.044573233, 0.046857554, 0.020019766, 0.009253141, -0.00578817, 0.024048956, -0.015764512, -0.016777799, 0.05314372, 0.021435153, 0.110253334, -0.009616112, 0.042358883, 0.018765593, -0.02182674, 0.08867936, 0.027899608, -0.016753213, 0.03802273, 0.008585664, -0.039386213, -0.039381877, -0.022680186, -0.031262096, -0.0029401479, -0.0070617087, 0.012048205, -0.021341942, 0.024760198, 0.020142712, -0.0011142318, 0.00015266283, -0.0043806764, 0.009213338, -0.049785573, -0.028774202, -0.006121808, 0.016305665, -0.033546995, -0.030687409, -0.023227265, 0.008848008, -0.019360423, 0.04115679, 0.03585989, 0.030154837, 0.040947586, 0.011813765, 0.07695381, 0.008270437, -0.018456053, 0.04072049, 0.033391267, -0.043662, 0.005704154, -0.021145433, -0.02156799, -0.037074126, -0.018301565, -0.014459166, 0.05662258, -0.029952282, -0.0008061238, -0.035815474, 0.08996806, 0.026702158, -0.04107317, 0.006366021, 0.0047477055, 0.01245841, -0.00814249, 0.031489205, -0.012948683, -0.046276357, 0.0057252124, -0.035755087, -0.05414249, 0.047782943, 0.0137532875, -0.013561816, -0.043605015, 0.00531199, -0.027056111, -0.032767773, -0.010823521, -0.01055051, -0.03364364, 0.05901215, -0.061582807, 0.01213718, -0.035483986, 0.003762076, -0.02362987, 0.05024061, -0.034668777, -0.039476257, -0.030062092, 0.012997574, 0.029125536, -0.010572433, 0.020591084, 0.008764437, -0.010574304, -0.04920527, -0.022680786, -0.049075436, 0.035444293, -0.00014769337, 0.01244969, 0.054862425, -0.058868494, 0.050110336, -0.020240765, 0.0222323, -0.010113618, 0.05146295, 0.015057073, 0.043952387, -0.025639432, -0.050121523, -0.072926216, -0.023468135, -0.047465794, 0.020193767, -0.022293875, 0.019209536, -0.023713376, -0.09301317, 0.040068284, 0.029413296, 0.0064248526, -0.0010107459, -0.025142238, 0.010655687, -0.020716442, -0.024317712, 0.002610594, 0.012870378, 0.008343719, -0.0047128154, -0.024877384, -0.0032253417, -0.013123139, 0.0052226703, -0.03515782, 0.048924886, 0.008787589, -0.06413287, -0.0061469264, -0.016643265, -0.0074543213, -0.0002849348, 0.009236307, 0.0020118721, -0.0057594264, 0.014359466, 0.0124940695, -0.042472348, -0.02278074, 0.009049732, -0.00037853926, 0.03254149, -0.032818474, 0.016624955, -0.07523042, 0.033930413, -0.05268773, 0.010498965, -0.06446804, 0.0028173956, 0.039466, -0.005920714, 0.05549139, 0.0030917674, -0.09421525, 0.016464483, -0.016723722, -0.0064141983, 0.08397063, -0.02201483, 0.02436976, 0.013583536, -0.0005799378, 0.049172867, 0.03397016, -0.023355657, 0.007922493, -0.026594976, -0.02420563, 0.07276889, -0.0053059864, 0.005034418, -0.06254856, 0.048464384, -0.02660525, 0.09769585, 0.04778095, 0.012733858, -0.0017047176, 0.025608767, -0.0063956045, 0.030019866, -0.024674946, 0.007948664, -0.05816775, -0.0051619345, -0.0396545, -0.006248662, -0.064019844, 0.019706467, 0.0382686, -0.029077196, -0.044853956, -0.017205896, -0.00017453874, -0.008510279, -0.047240537, -0.012063261, 0.03739642, -0.014645253, 0.0327429, 0.0060973507, -0.00055193144, -0.02096127, 0.048884038, -0.015429013, 0.02148673, -0.014325318, 0.014967454, -0.0025064694, -0.10623569, -0.0109623205, 0.035750546, -0.036177576 ] }, { "values": [ -0.046128575, -0.044405352, -0.04253541, -0.055568956, 0.04312847, 0.048638772, 0.014019372, 0.020485286, 0.007758053, 0.022468928, 0.016704839, 0.017804047, 0.013049905, 0.03942298, -0.036016036, -0.023909982, 0.026640974, -0.02430739, -0.068193235, -0.041577682, 0.0674424, 0.003964969, -0.031111974, -0.01830347, -0.019467168, -0.011389462, 0.026910823, -0.00177613, -0.007120661, -0.04184942, 0.017765637, 0.03344213, -0.039974947, -0.05858459, 0.073930785, 0.06331095, -0.066315964, -0.0015647546, 0.021935944, -0.071259804, -0.059473295, 0.016389709, -0.0104626985, 0.015495278, -0.059348106, 0.02180629, 0.057094753, 0.031466503, -0.026075073, 0.06699725, 0.014156353, -0.02580803, -0.06308559, 0.0068175164, -0.032598946, -0.047275275, -0.080049835, -0.04611775, 0.07593975, 0.038606793, -0.025202714, 0.014745909, -0.017479273, -0.03732585, 0.009358401, -0.026912224, -0.03627348, -0.0335427, -0.026650859, 0.025075292, -0.032033354, -0.0042286236, -0.06742627, 0.031891506, -0.016249532, -0.0038718835, -0.010485787, 0.0034599314, -0.017901348, 0.013413817, 0.029543165, 0.009885793, 0.054712266, 0.049146835, 0.021166934, 0.0033129102, 0.040729575, -0.029288545, -0.02551543, 0.025696736, 0.10909976, 0.018138237, -0.05413893, -0.014000326, 0.015936557, -0.04907523, -0.049655925, -0.058652505, 0.0024828953, 0.05832553, -0.06378592, -0.030498287, -0.05833057, -0.037274044, 0.030200517, 0.021229185, 0.02103291, -0.060787868, 0.015918719, 0.0027204233, -0.07555533, -0.030971747, -0.08171186, 0.010772636, 0.025726141, -0.038942672, -0.03489459, 0.027428817, -0.0053010876, 0.018264037, 0.016158056, -0.033330366, -0.02880926, 0.08045592, 0.017843658, -0.0137652485, 0.0170108, -0.027805474, -0.052612934, -0.0400218, 0.09634489, -0.047814928, 0.02969957, -0.0069546024, -0.08050982, -0.009399543, 0.05836696, 0.03735784, -0.044713058, -0.0026405107, -0.027611613, -0.004374618, -0.0033551753, 0.044623587, 0.035984293, -0.03457502, 0.0147930235, -0.04728419, -0.02683064, 0.071560636, -0.120215155, -0.0403333, 0.05707882, 0.0018107432, -0.052026726, 0.10914738, 0.082440555, -0.037799817, 0.01879811, -0.06851062, 0.044969678, -0.003390418, -0.02454301, 0.008604902, -0.020179445, 0.033256777, 0.023061438, -0.021004772, -0.021609176, -0.076998174, -0.010840741, 0.016596716, -0.046016727, -0.04851833, -0.015808849, 0.054652803, -0.04800226, 0.0055934847, -0.054040216, -0.014252873, 0.018530337, 0.09657912, -0.015890323, 0.015377704, 0.00794267, 0.033365328, 0.017101858, 0.03366208, 0.009468708, 0.042882662, -0.009998595, -0.025236806, 0.032676205, 0.01077135, -0.027413968, 0.04231139, 0.05469784, -0.0039675953, 0.009481559, -0.02022818, 0.027228318, 0.007814941, -0.047897037, 0.007184406, -0.038699508, 0.0011968636, -0.049254186, -0.014182419, 0.047849994, 0.014486525, 0.0022462918, -0.0029649527, 0.00915616, -0.05257007, -0.018812038, 0.010624417, 0.057507347, 0.042107783, 0.07048903, -0.05994486, -0.06648098, -0.0018705592, -0.024793854, -0.049621303, -0.012191758, 0.029164396, -0.024379635, 0.00999633, -0.053814217, -0.024491351, -0.010727048, 0.006865306, -0.016474377, 0.0057168305, 0.047724433, 0.046323482, 0.018791838, -0.0043972502, 0.027440155, 0.018011412, 0.009217618, 0.029855814, 0.017091602, -0.028375413, -0.021303102, 0.03731006, 0.017650113, 0.10177369, -0.036213376, 0.0043312707, -0.039446834, 0.0074581136, -0.0002827309, -0.016328389, -0.011086187, -0.027723312, 0.014581038, -0.06277358, -0.0031400742, 0.0045748334, 0.03674763, 0.017464869, -0.021834332, -0.027012408, -0.026166473, -0.0539251, -0.0026720765, -0.010570768, 0.035870448, -0.013175676, -0.002847482, 0.023113796, -0.07580282, -0.038804427, 0.025937643, 0.050437298, -0.017810127, 0.012182337, -0.05268869, -0.08243094, 0.019233735, 0.020201232, -0.032431286, -0.012984143, -0.013313377, -0.016673481, -0.023781424, 0.018440468, 0.0007208422, -0.009728666, 0.047071192, 0.06054226, -0.021782774, -0.002714933, 0.03680588, -0.036257047, 0.011647838, -0.018533684, 0.03302829, 0.012107372, -0.0121547645, 0.07080269, -0.041871965, 0.020737426, -0.0082744695, 0.0046310513, -0.049723003, -0.0026749787, 0.006888805, 0.018996263, 0.0064863316, -0.0021644183, -0.0023169583, 0.00246779, 0.009022336, 0.017347652, -0.12962008, 0.013515463, -0.0021155234, -0.02714493, 0.033937417, 0.00800594, 0.01497335, -0.01193994, 0.041226447, -0.00040952905, -0.0141876275, -0.015622491, 0.026068779, 0.004433805, 0.016055731, 0.003806733, 0.023421234, 0.0009676004, -0.014636629, 0.0055005387, 2.872644e-05, 0.04514126, 0.054473013, -0.022881616, 0.07621023, 0.03403251, 0.012296471, 0.019139031, 0.010116984, -0.053830836, 0.049663216, 0.0034766786, 0.041639317, -0.052115668, 0.0069154, 0.020160407, -0.009479865, 0.0118497675, 0.035065226, 0.025579566, 0.0003106013, 0.043214735, -0.007741396, 0.0029768648, -0.027454793, -0.017937765, -0.005506177, -0.035289884, 0.043316543, 0.040795285, -0.0067260093, 0.040670186, -0.0198373, -0.039706264, 0.04906502, 0.018214867, 0.01773407, -0.0035007652, 0.022155032, -0.038572054, 0.0336996, 0.028535603, 0.0026241883, -0.04388239, -0.029775126, -0.03937171, -0.026611337, 0.011434255, -0.04924507, 0.023002377, -0.04836898, 0.005975279, 0.024867529, 0.019766176, -0.022725064, 0.05133051, -0.020844074, 0.030558117, -0.007694493, 0.048539057, -0.036839314, -0.016808277, 0.021889307, -0.0046627373, -0.049547024, -0.019708395, 0.08309993, 0.004119065, -0.0073521915, -0.019327074, 0.076615736, 0.023170386, 0.0001316116, -0.06364039, 0.016031738, -0.0047630123, -0.024576804, -0.014725962, -0.013923571, 0.02250492, -0.0045126043, -0.05971364, 0.024591513, 0.014472242, -0.014651326, 0.034868006, 0.0068814335, 0.013818768, -0.014222598, -0.06885513, 0.022275869, -0.004647719, 0.048369657, 0.024399567, -0.0065001133, 0.03740479, -0.0437794, 0.011811933, 0.01925476, -0.022055333, 0.00062292936, -0.007748812, -0.030544057, 0.0061821393, -0.03610987, 0.0045526233, 0.050435573, 0.0020853912, -0.005165226, 0.037051048, 0.048305992, 0.006515871, -0.04321823, -0.061079584, -0.015625117, 0.05423642, -0.015097274, -0.034574457, -0.0033142671, 0.016036859, 0.048209224, 0.052696817, -0.048058618, 0.020857884, -0.115406804, 0.00722643, 0.04367979, 0.05174589, -0.022394905, -0.022440251, -0.06028514, 0.002817925, 0.010671351, 0.03921217, -0.008818863, -0.0027016038, 0.015115368, -0.045598943, 0.011139641, 0.007938895, -0.03445617, -0.027674824, 0.026889307, 0.009102638, -0.036091246, 0.018070405, 0.019933518, 0.057627283, 0.055665024, -0.07123375, 0.0038631605, 0.030787878, 0.05468431, 0.03162291, 0.03283119, 0.05894035, 0.020666778, 0.00029410206, -0.057452977, -0.059100717, 0.025711162, -0.025385242, -0.0025021133, -0.019695994, 0.08791447, -0.016693668, -0.021714168, -0.027149308, 0.003919408, 0.02637284, -0.056004774, 0.0047944956, 0.03280421, -0.03240309, 0.0094666155, 0.014287276, 0.03594331, -0.015527458, -0.049989905, 0.046280697, -0.0571048, 0.023655122, -0.037435323, 0.0646494, 0.024632007, -0.002135199, 0.07224154, -0.06186278, -0.044924166, -0.032919943, -0.023958202, 0.057336736, 0.037054703, 0.0007916692, -0.028845739, 0.049437333, 0.034454662, -0.010434951, 0.017506823, 0.019244311, 0.0063157696, 0.007722951, -0.008621309, 0.02173415, -0.04406541, -0.007837316, 0.043579064, -0.01699986, 0.09972362, -0.021351704, 0.028733138, 0.025272299, -0.048901238, 0.069957785, 0.039659508, 0.013070343, 0.02515851, 0.022024436, -0.009333297, -0.034144938, -0.0050822846, -0.054205388, -0.013756138, 0.004024183, 0.022998657, -0.025666445, 0.029592274, 0.018295197, 0.0006008364, 0.004426844, -0.0111161545, 0.026325306, -0.0375567, -0.05982155, 0.00052546884, 0.014091861, -0.04738548, -0.036113907, -0.04943668, -0.029989759, -0.014488416, 0.0065182345, 0.01870896, 0.017291894, 0.048558127, -0.010326722, 0.06933356, 0.00070482865, -0.024258662, 0.032156944, 0.00070671714, -0.05840815, 0.005394035, -0.015510756, -0.00025845974, -0.006426594, 0.000459863, -0.019442702, 0.059750248, -0.030197829, -0.0063386164, -0.04169719, 0.07957768, 0.007872814, -0.017474342, 0.041479778, 0.008853382, 0.031904504, -0.016641283, 0.010376893, -0.0018901586, -0.010546217, 0.032117054, -0.050129525, -0.0346045, 0.058808062, 0.03549907, -0.0019281841, -0.05300099, 0.0015476996, -0.034385916, -0.03830992, 0.0021964284, -0.0003541735, -0.046430483, 0.045567952, -0.037033744, 0.026067067, -0.04161361, -0.011710576, -0.025927555, 0.046342593, -0.0625017, -0.0419636, -0.0069981595, -0.0013199357, 0.031785112, -0.019758696, 0.015089531, 0.020956933, 0.017389966, -0.042404152, 0.008107587, -0.035445135, 0.039045025, -0.013464042, -0.013812849, 0.015246264, -0.06611813, 0.052243985, -0.011261852, 0.010485163, 0.022233492, 0.036354896, 0.031681333, 0.058672614, -0.015157928, -0.05452201, -0.08784129, -0.017345576, -0.02400725, 0.025765846, -0.0004473447, 0.014601958, -0.0053964774, -0.069178835, 0.014552445, 0.01455053, 0.019865727, 0.011265715, 0.005187252, 0.019316241, -0.007340769, -0.027679028, -0.015044389, 0.011200946, -0.0015063828, 0.009147428, -0.026391683, -0.012930458, 0.010883893, -0.014115393, -0.022328073, 0.02985645, -0.00497271, -0.048913885, 0.015288328, -0.033939872, -0.02631501, 0.017551217, 0.039391723, -0.012674856, -0.002068573, -0.016183002, -0.007635099, -0.044448968, -0.02965028, 0.0120979315, 0.023784975, 0.019847495, -0.033037614, 0.033627417, -0.04541116, 0.046916366, -0.04825769, -0.0064935926, -0.057183105, 0.00062963215, 0.035842456, 0.014783152, 0.038357828, -0.0022796898, -0.102925666, 0.028234418, -0.039216798, -0.008706882, 0.11561878, -0.0023820866, 0.037206035, 0.005411752, 0.00068948476, 0.06618618, 0.016015688, -0.017527595, -0.008280061, -0.030735599, -0.013277642, 0.07177741, 0.023413911, 0.0066520614, -0.041297156, 0.008541501, -0.035005637, 0.067377426, 0.05572714, 0.003088568, -0.012586645, 0.026111612, -0.007195323, 0.023866002, 0.0037273457, 0.025111357, -0.07287543, -0.01972493, -0.026410941, -0.031287584, -0.042810272, 0.014817157, 0.023716833, -0.015578189, -0.028728353, -0.0012420332, -0.00030128812, -0.031816736, -0.060599435, -0.009073622, 0.033143792, 0.020723913, -7.059324e-05, 0.042503394, 0.01768178, -0.04991027, 0.03754391, 0.0030226943, 0.015012896, 3.922558e-05, 0.008939793, -0.0016689152, -0.097478114, 0.016315812, 0.05157004, -0.026209256 ] }, { "values": [ -0.019326331, -0.028985865, -0.04684007, -0.037726484, 0.053216144, 0.038435366, 0.044722535, 0.023777112, -0.0104028275, 0.009759616, -0.00925309, 0.020389266, 0.029858505, 0.028656838, -0.03972474, -0.040135473, 0.030773887, -0.022139993, -0.036834422, -0.041609913, 0.0328763, 0.03413134, -0.014721605, -0.041065995, -0.03308826, -0.016214939, 0.0181696, 0.013752174, 0.0012852893, -0.06837558, 0.007947484, 0.05894362, -0.038869247, -0.06164832, 0.083301894, 0.050607584, -0.04845604, -0.0012190517, 0.028220436, -0.056775894, -0.08567788, -0.0067513096, 0.003294785, 0.013372462, -0.0572272, 0.0095719565, 0.06026208, 0.015651647, -0.035273593, 0.07550534, 0.035752002, -0.015276785, -0.040585604, 0.019094901, -0.028942434, -0.031335652, -0.064321615, -0.08395884, 0.048906833, 0.020536615, -0.040165626, 0.013462276, -0.023869043, -0.04441539, -0.005242159, -0.050997052, -0.045562, -0.03485658, -0.061197426, 0.015613862, -0.025656749, -0.0032350628, -0.07799098, -0.00595931, -0.01832795, 0.011369451, -0.016191373, 0.026484067, -0.020445658, 0.030942034, 0.0058403215, -0.020032251, 0.060394846, 0.0821697, 0.025816407, 0.022757139, 0.02588488, -0.04147354, -0.006950592, 0.045386374, 0.11498963, 0.01803301, -0.04742283, 0.012876554, 0.012593527, -0.04765574, -0.043957677, -0.059525337, 0.045964137, 0.07724516, -0.04965954, -0.018249433, -0.025172088, -0.0090497155, 0.030690702, 0.01479934, 0.007929652, -0.077323414, -0.002666165, 0.008509258, -0.0725431, -0.0025588851, -0.053106155, -0.0005831739, 0.028317885, -0.059812583, -0.016131222, 0.031127164, -0.03137007, 0.031999588, 0.051182304, -0.044631794, -0.040666886, 0.06503367, 0.009489503, 0.0141899, 0.047389105, -0.036481064, -0.03258472, -0.062390827, 0.08573454, -0.08601455, 0.040079944, -0.0155214, -0.07823745, -0.047050845, 0.03661901, 0.03859816, -0.033367183, -0.027072035, -0.0020644763, 0.00031759232, 0.014990648, 0.03702578, 0.018838495, -0.03717734, -0.0029995488, -0.041874934, -0.069910355, 0.07297273, -0.104279034, -0.033066023, 0.042384136, -0.0028626956, -0.038858205, 0.072374426, 0.07269715, -0.014486794, 0.034375496, -0.037456293, 0.016697353, -0.014377515, 0.005605424, 0.004726355, -0.008022431, 0.021802561, 0.049531728, -0.022654124, -0.027999079, -0.04033877, 0.012255333, 0.024856947, -0.024122456, -0.061149243, 0.010274082, 0.04790435, -0.055581585, 0.014982414, -0.049776785, -0.03465714, 0.007686685, 0.079578534, -0.008302954, 0.0025868588, -0.014819971, 0.040575422, -0.01386452, 0.05044264, 0.002694416, 0.040206615, -0.002818649, -0.01787584, 0.04782426, 0.03375011, -0.025278771, 0.029450186, 0.068605736, 0.023068916, 0.014331693, -0.023024961, 0.045449447, -0.020231979, -0.04160974, 0.013502466, -0.025319992, 0.011609361, -0.045752164, -0.046780217, 0.022658821, 0.0052323495, -0.002435046, -0.005818637, -0.023628714, -0.04377527, -0.00033904528, 0.025116881, 0.0437578, 0.059732866, 0.07668898, -0.054438386, -0.047582146, 0.0041810484, -0.003801556, -0.0850586, -0.008726393, 0.0067440853, -0.012810754, 0.014680583, -0.049402554, 0.006692051, -0.01976693, -0.028564226, -0.0071648625, 0.0026130034, 0.04153421, 0.039061427, -0.01703702, -0.031575102, 0.004673624, 0.018106773, 0.018078364, 0.012228744, 0.025196752, -0.0078089256, -0.0144500565, 0.035938427, 0.027903777, 0.11129861, -0.02462386, 0.00822799, -0.011701632, 0.0070842174, -0.022498999, -0.028662693, -0.031560775, -0.027899735, 0.025884755, -0.039395858, -0.01051014, -0.0072186603, 0.029427608, 0.0023670634, -0.033925746, -0.025925305, -0.022160647, -0.09045885, 0.004099649, -0.03926218, 0.056170236, -0.015335489, -0.039590027, 0.0075227967, -0.037445232, -0.036282998, 0.038550705, 0.06135467, -0.0032438894, 0.014253912, -0.050606757, -0.07511344, -0.015916174, 0.017860662, -0.028560568, -0.012029762, -0.022110583, -0.016370025, 0.00015628728, 0.0117311105, -0.024130343, -0.04594211, 0.050633326, 0.057089757, -0.008790499, 0.02200928, 0.03651562, -0.027371196, 0.010874142, 0.015912497, 0.026520096, 0.0056194616, 0.006136154, 0.09932279, -0.04548299, 0.039739165, -0.011928096, -0.0030289656, -0.038416173, -0.0006661009, -0.0029275357, 0.016444372, 0.011423588, 0.026788546, -0.003319731, 0.009086573, -0.0072469595, 0.009804153, -0.09706985, 0.031197727, 0.0126131475, -0.025579171, 0.035714433, 0.028730147, 0.0020109487, -0.026894301, 0.05169726, 0.018384619, -0.0006303565, -0.021533487, 0.025571832, -0.025245769, 0.028258173, 0.016492203, 0.01610277, -0.025387034, -0.01335721, 0.0054531405, 0.011879247, 0.04373149, 0.049394336, 0.0059316726, 0.073365726, 0.015098322, 0.009262124, 0.03436852, 0.012224181, -0.045808565, 0.035360247, 0.016009009, 0.089486085, -0.038666934, -0.015138211, 0.057605248, -0.013040155, 0.013164071, 0.0295773, 0.022495486, 0.01775095, 0.05469579, 0.00630111, -0.0045611802, -0.034499764, -0.015387436, 0.005962918, -0.048963573, 0.008891505, 0.020388173, 0.004480055, 0.051813684, 0.0008663246, -0.063175015, 0.018137665, 0.018996479, -0.00478204, 0.0027601928, 0.020274065, -0.049317606, 0.024484197, 0.028186332, 0.0011138625, -0.055471208, -0.03722984, -0.03714472, -0.013606485, 0.0018208551, -0.036986914, 0.028342318, -0.054789208, -0.004497733, 0.015310953, 0.004953386, -0.04527964, 0.058912773, -0.016048461, 0.04267053, -0.027641075, 0.03287801, -0.010456289, -0.011814408, 0.04486002, -0.015882697, -0.04202269, 0.007324542, 0.05649455, -0.0038745208, -0.011810739, -0.002181299, 0.05716677, 0.027128275, 0.0032269722, -0.06052344, 0.009075565, -0.039592586, 0.0033330983, -0.02507466, -0.0024699098, -0.008663789, -0.013665801, -0.08192504, -0.0021738955, 0.005596707, -0.01860674, 0.0045195944, 0.005305641, 0.030033518, -0.016463904, -0.08509802, 0.021887314, -0.005244854, 0.04481477, -0.012496047, -0.026797064, 0.047738276, -0.07417174, 0.0071741426, 0.022407863, -0.020072367, -0.02786493, -0.016474599, -0.027966265, 0.0009829676, -0.022867566, -0.026590874, 0.07221259, 0.028383322, -0.0077154236, 0.051962472, 0.037911236, 0.012056778, -0.014782435, -0.08737757, -0.028108822, 0.07716819, -0.025582857, -0.06906598, 0.026017804, -0.0091260215, 0.050400693, 0.030530581, -0.04911291, 0.005152083, -0.08258154, -0.004232325, 0.052553643, 0.061817035, 0.008083975, -0.0125763295, -0.028377842, -0.0057110675, -0.005519369, 0.043820553, -0.019898053, -0.010600222, -0.00088714133, -0.036269944, 0.01777646, 0.016001316, -0.021264145, -0.023739614, 0.023364179, 0.03146086, -0.02858025, 0.032676097, 0.014243799, 0.046361256, 0.045130596, -0.049512286, -0.00077530136, 0.0029542097, 0.04043112, 0.004854476, 0.02392842, 0.049307965, 0.034699574, 0.0046441765, -0.06459404, -0.08065766, 0.03192423, -0.04715834, -0.021787915, -0.02910613, 0.07773265, -0.030802844, -0.010755186, -0.029019602, -0.017515136, 0.017274024, -0.010427097, -0.010532201, 0.064541385, -0.020355394, 0.008963744, 0.0219866, 0.035850164, -0.0113988565, -0.05669773, 0.071109794, -0.02377848, 0.028173352, -0.029715369, 0.06302025, 0.014549141, -0.030919619, 0.054418027, -0.08032019, -0.06658377, -0.038492873, -0.02168651, 0.06942828, 0.055413734, -0.005859838, 0.006367196, 0.045289733, 0.03142263, -0.018534824, 0.024258869, 0.03877877, -0.0022421735, -0.00015997392, -0.0107673835, 0.019868758, -0.03658079, -0.030158598, 0.034091413, -0.003352294, 0.08037228, 0.00845568, 0.0511359, -0.00047003524, -0.011312433, 0.097523674, -0.008569984, 0.010318349, 0.027435172, -0.00063191116, -0.042391542, -0.017247682, -0.0013411812, -0.0017304623, 0.00032428294, -0.0075767315, 0.02836666, -0.010460285, 0.02404931, 0.01691892, -0.03443727, 0.005391275, -0.014042088, 0.052662894, -0.027896032, -0.04007522, -0.0072685247, 0.013255456, -0.043006014, -0.03755308, -0.044021487, -0.010186956, -0.039144624, 0.003214457, 0.049674053, 0.015691806, 0.03746573, 0.0065068956, 0.06015122, -0.00015425863, -0.013810372, 0.035928644, 0.024671303, -0.061271526, 0.015495235, -0.014175885, 0.0064630625, 0.0035198522, -0.010368845, -0.04279893, 0.06623746, -0.00965176, 0.0011763368, -0.03702384, 0.07444607, 0.023299918, -0.013863738, 0.025057582, 0.0014921603, 0.012880319, -0.0074225767, 0.01150703, -0.0039831013, -0.021479579, 0.025185417, -0.027218916, -0.04902385, 0.040610783, 0.002953713, -0.00646422, -0.06372618, 0.0042692586, -0.04526681, -0.05231725, -0.0033582565, -0.03644615, -0.034027282, 0.004090707, -0.025742427, 0.011530934, -0.04329985, -0.017178698, -0.016735798, 0.05059568, -0.0657098, -0.030222142, -0.01612559, -0.019514676, 0.03359715, -0.022811564, 0.013908495, 0.026903754, -0.00029569157, -0.053646166, 0.043611478, -0.03427083, 0.040168013, -0.009151875, 0.0010299352, 0.03839947, -0.050643735, 0.040866155, 0.009806229, 0.02062476, 0.012501201, 0.009456719, 0.004703456, 0.04934984, -0.0221928, -0.060261354, -0.061531715, -0.019948063, -0.04167282, 0.0036212613, -0.003589098, -0.016324436, 0.0018124096, -0.043241862, 0.013408836, 0.020767272, 0.04115286, -7.334979e-05, -0.012966434, 0.025489226, -0.025138486, -0.040549707, -0.011603213, 0.011460856, 0.005083673, 0.016769838, -0.025479626, 0.018643783, -0.004047291, -0.031867377, -0.0119834095, 0.023955394, 0.012547371, -0.04718707, -0.019560376, 0.006186534, -0.0196686, 0.016190425, 0.007836242, 0.005871591, 0.0050405166, 0.003970719, -0.01862132, -0.028765682, -0.044192623, 0.0039497693, 0.041773833, 0.062828325, -0.028097114, 0.03706839, -0.052110415, 0.026036555, -0.024718508, 0.002404624, -0.051073868, 0.009566722, 0.050172847, 0.009420124, 0.037812073, 0.014435091, -0.089936845, 0.038172055, -0.057201527, -0.00448544, 0.09031822, -0.008184111, 0.03751427, -0.004284538, 0.023535969, 0.05298117, 0.0025107767, -0.0021917098, -0.0058972216, -0.046443075, -0.0070279418, 0.07438247, 0.027975919, 0.030835167, -0.06583672, 0.021265011, -0.034042846, 0.062671304, 0.018987756, 0.013900005, 0.0014021023, 0.032980327, -0.0068853456, 0.024901614, 0.005818555, 0.018704902, -0.060426265, -0.013436673, -0.007439838, -0.043269623, -0.041180436, 0.030421102, 0.023351237, -0.0009921785, -0.060087014, 0.0015323352, 0.0025918835, -0.014307259, -0.05086674, -0.010958518, 0.027494974, 0.01732433, 0.007780062, 0.02712024, 0.0044859312, -0.01926652, 0.005807444, 0.011289059, 0.027023664, 0.016951887, 0.022646446, -0.0055626025, -0.07764411, 0.008690349, 0.0381466, -0.053499494 ] }, { "values": [ -0.0014520758, -0.025033368, -0.051919397, -0.031894885, 0.051519778, 0.04481396, 0.042583954, 0.012665239, -0.021925787, -0.015257641, -0.0018110274, 0.012217272, 0.017298024, 0.01592989, -0.060498036, -0.027479444, 0.028936554, -0.02290191, -0.06876959, -0.0234462, 0.041554257, 0.029752558, -0.018813493, -0.023572052, -0.016346605, -0.024484089, 0.024707165, 0.007839786, 0.017023163, -0.0627123, -0.00786509, 0.04537122, -0.031084293, -0.086142965, 0.047663253, 0.08232538, -0.038414877, 0.01784313, 0.027643375, -0.05884316, -0.09989962, -0.027985917, -0.011473454, 0.029837342, -0.04479655, 0.026179085, 0.067329064, 0.010198521, -0.022587152, 0.06773493, -0.00844138, -0.032740057, -0.05131055, 0.005812541, -0.039269894, -0.033653405, -0.049242057, -0.06596252, 0.062300693, 0.018085178, -0.038328566, 0.024508536, -0.0071224845, -0.03802122, -0.011337224, -0.05638157, -0.05493601, -0.029471928, -0.056258775, 0.025862647, -0.032516543, 0.004363786, -0.07786645, -0.00026523334, 0.013163709, -0.003990858, 0.0055564423, 0.034816477, -0.01767313, 0.04108615, -0.0038389878, 0.008003339, 0.039079346, 0.053153526, 0.009631788, 0.04781177, 0.041783042, -0.047836516, -0.018108971, 0.01484838, 0.09951982, 0.03356566, -0.041505534, 0.0058652023, 0.0021127423, -0.023714224, -0.05206894, -0.05580025, 0.008135434, 0.09081961, -0.05800033, -0.005481348, -0.030429164, -0.042333838, 0.03402824, 0.025456987, 0.014175638, -0.076222785, 0.004411103, 0.04007067, -0.06581634, -0.009935549, -0.0408249, 0.017193472, 0.03385613, -0.020967988, -0.02853372, 0.00229188, -0.051843446, 0.012734551, 0.04604936, -0.03927196, -0.021726664, 0.066117845, -0.0035776636, 0.0021395998, 0.008232836, -0.041935932, -0.060854033, -0.07962131, 0.087828204, -0.110149324, 0.04861812, -0.03366591, -0.071964666, -0.01633531, 0.0485907, 0.023023752, -0.015127426, -0.02336575, -4.491679e-05, -0.0048136874, -0.04204686, 0.025736472, 0.018085094, -0.014586364, -0.005933365, -0.04558103, -0.07224181, 0.053801198, -0.078592755, -0.038051307, 0.042916358, -0.012888746, -0.054173023, 0.07329684, 0.06681919, -0.007932826, 0.018588485, -0.008522388, 0.028336465, -0.040507216, -0.0062494897, 0.0047864714, -0.033999942, 0.041026197, 0.062129043, -0.018629795, -0.011710758, -0.027382158, 0.020157807, 0.009797874, -0.02682185, -0.075237505, 0.010480093, 0.048071027, -0.06839158, 0.015028436, -0.05610678, -0.03172376, 0.0043943296, 0.0772191, -0.035137866, 0.03640948, -0.02923258, 0.032029133, 0.021567155, 0.038382053, 0.014887553, 0.017327944, 0.005236669, -0.012511631, 0.019458389, 0.03266685, -0.04487644, 0.011128118, 0.072679564, 0.014406356, 0.000986346, -0.017706756, 0.035609595, -0.0003855675, -0.03752691, 0.03583554, -0.002246774, 0.011998135, -0.037931975, -0.04523163, 0.022592083, 0.009579762, -0.020582728, 0.002442091, -0.0138072185, -0.036652822, -0.00428069, 0.03403247, 0.0698666, 0.03957332, 0.08882422, -0.04687466, -0.061117202, -0.0031030406, -0.009965009, -0.08019994, 0.014985645, 0.027222939, -0.00787937, 0.040562604, -0.06576959, 0.016701438, -0.008551264, -0.007191668, -0.0131052, -0.001080313, 0.031497233, 0.035947837, -0.0096247215, -0.029086556, 0.00439404, -0.0016122235, -0.009378961, -0.016022358, -0.009520716, -0.01344717, -0.01816437, 0.02559382, 0.025451025, 0.07764422, -0.017798742, 0.024007328, -0.01679379, -0.007627874, -0.0173949, -0.017821744, -0.015488081, -0.026090814, 0.041295826, -0.047979053, 0.017170593, 0.007374451, 0.026775628, 0.028673675, -0.021547815, -0.032724466, -0.010400063, -0.06898611, 0.0072316215, -0.047758225, 0.0586049, -0.019036084, -0.025364993, 0.013713206, -0.040184963, -0.047666304, 0.01462554, 0.060023542, 0.0025136329, -0.0009575974, -0.03884341, -0.06579771, -0.0125183165, 0.011077849, -0.018363466, -0.007240076, -0.039910533, -0.0054233456, -0.010045361, 0.02496603, -0.022767989, -0.033558045, 0.020305037, 0.055597812, -0.021520516, 0.029868752, 0.034740403, -0.030549938, 0.013156379, 0.013415623, 0.003300937, 0.043159053, 0.017727938, 0.08378984, -0.04680564, 0.051868685, 0.002793659, 0.02131321, -0.036684476, 0.005847764, -0.015724566, 0.016111873, -0.00916239, 0.020814966, -0.0048294505, 0.0028731707, 0.0087572895, 0.021432472, -0.11753437, -0.000118908676, -0.003082389, -0.0298041, 0.023382159, 0.0125775635, 0.022978177, -0.025626555, 0.06415748, 0.0146138985, -0.02068734, 8.286376e-05, 0.03528851, -0.023811163, 0.00012530122, 0.022604153, 0.02182322, 0.010256483, -0.0011009262, 0.0007396284, 0.0019325563, 0.021935958, 0.060492985, 0.02527396, 0.09020137, 0.030752016, 0.012083509, 0.018872015, 0.006255272, -0.058000688, 0.05702074, 0.027874475, 0.05483791, -0.0681098, -0.0023908375, 0.076448195, -0.013740297, 0.021305334, 0.01087273, -0.0017063031, -0.0048564207, 0.011233298, 0.021489827, 0.0018888497, -0.0309726, -0.018857663, 0.006921634, -0.052407853, 0.0011863478, 0.011722602, 0.005190596, 0.04796459, -0.021063479, -0.023380311, 0.031126272, 0.017865168, 0.004103066, 0.01020313, 0.012120625, -0.026200807, 0.028177481, 0.030854287, 0.006681378, -0.07879177, -0.029426495, -0.027448839, -0.04183176, 0.0074850353, -0.042266868, 0.014821908, -0.044184405, 0.019343013, 0.021735925, 0.015503582, -0.0479408, 0.04965519, -0.025907554, 0.021736603, -0.019115107, 0.040120948, 0.007415712, -0.034425415, 0.041382603, -0.012318495, -0.012584994, 0.014112126, 0.07850585, -0.0021032772, -0.007123584, -0.0047463034, 0.08005664, 0.0335886, 0.015369055, -0.0475854, 0.03731915, -0.01624455, 0.020829553, -0.021685949, -0.010624095, 0.0065387916, 0.007905952, -0.052955646, 0.018220624, 0.03744607, -0.026172897, 0.024583163, 0.015996223, 0.019139044, -0.016232057, -0.06202922, 0.027120104, 0.0035282809, 0.026930239, 0.020545611, -0.008974442, 0.046120763, -0.0539903, -0.009954979, 0.019782579, -0.025251457, -0.025205426, -0.021037657, -0.033164266, 0.0088842185, -0.025489122, -0.013633088, 0.06075178, 0.030912133, -0.008906411, 0.017563699, 0.030804094, 0.016513092, -0.014905946, -0.09517339, -0.05515426, 0.07396631, -0.006343602, -0.06755176, 0.020715497, -0.0014354319, 0.030216247, 0.0070717125, -0.076420404, 0.018735917, -0.08514894, 0.009774554, 0.063224964, 0.05794153, 0.0032106338, -0.013889352, -0.041259624, -0.020930126, 0.011652866, 0.055336945, -0.01456222, 0.00872243, -0.00859289, -0.02704691, 0.009368185, 0.011370047, 0.010635279, 0.009068184, 0.034661703, 0.036557708, -0.02296964, 0.0265741, 0.0047177887, 0.068711005, 0.046940666, -0.03424891, -0.007373116, 0.018228535, 0.042652883, 0.021744797, 0.020954674, 0.035185937, 0.043327775, 0.016332587, -0.060519345, -0.06655806, 0.05692644, -0.04139454, -0.022511909, -0.032415777, 0.07456932, -0.03235275, -0.0156316, -0.05387656, -0.023417588, 0.024680836, -0.020018563, -0.009435398, 0.0468167, -0.058629, 0.008070989, 0.011819465, 0.037541725, -0.004715814, -0.04559547, 0.06935597, -0.07027543, 0.005128684, -0.010944083, 0.061137415, 0.032363027, -0.020157557, 0.06537029, -0.078062534, -0.071864076, -0.035722207, -0.018171668, 0.07181354, 0.050193466, -0.008814634, 0.0032091732, 0.055089135, 0.01889451, -0.0014622514, 0.015473088, 0.025772164, 0.009837348, -0.006883632, -0.020402133, -0.013326185, -0.0066705164, -0.014525525, 0.0313776, 0.002195396, 0.079278365, 0.0010936981, 0.05664108, -0.0014024044, -0.02519753, 0.07185963, -0.0173541, 0.010848463, 0.042091135, -0.009890968, -0.010173772, -0.026235327, -0.01325147, 0.032703664, -0.0128238825, -0.0005271797, 0.03558895, -0.015199533, 0.042325553, 0.00030899464, 0.017981619, 0.0022660007, 0.005445209, 0.04540408, -0.021457242, -0.047174618, 0.0035275368, 0.0042267237, -0.035602942, -0.051675614, -0.038859148, -0.0311319, -0.02434142, -0.009395792, 0.05854611, 0.00992843, 0.03491036, -0.0042431336, 0.08476234, -0.005202795, 0.002399873, 0.039389487, 0.0038346958, -0.066615105, 0.034036674, 0.0008780387, -0.013287207, 0.026595809, -0.009659742, -0.041675176, 0.09006664, -0.013633803, 0.004731413, -0.04984227, 0.055110566, 0.0025243745, -0.02739161, -0.003486298, -0.008456653, 0.039622135, 0.0026831115, -0.0042242194, -0.024558775, -0.027730875, 0.01843807, -0.036150556, -0.05184671, 0.039654624, -0.0032926635, -0.014347789, -0.05993686, 0.024805218, -0.048876088, -0.040351395, -0.0037436623, -0.035852622, -0.020681707, -0.017545426, -0.028496651, 0.03048495, -0.07108963, 0.012022071, -0.003746018, 0.040135156, -0.04232075, -0.011815598, -0.022312377, -0.009941103, 0.0072065443, -0.04061748, 0.007952269, 0.037324224, 0.010133328, -0.053855307, 0.040931914, -0.039412275, 0.045619972, -0.009577742, 0.0072038053, -0.008016243, -0.061492164, 0.06487099, 0.017547892, 0.019151703, 0.008554819, 0.031688325, 0.024691373, 0.037719294, -0.038435154, -0.06582655, -0.073140375, -0.00865236, -0.006861899, 0.023040524, -0.0052180835, -0.011062251, -0.012935308, -0.05006014, 0.013264707, 0.021390582, 0.013748684, 0.018157227, -0.005990298, 0.007021901, -0.014429782, -0.045870226, -0.0039158156, 0.019335207, 0.014520987, 0.01020326, -0.0025137083, 0.034350708, -0.016061237, -0.07243867, -0.018038359, 0.017893592, 0.002073013, -0.05332638, -0.013141699, 0.009146832, -0.00063593977, -0.0024318928, 0.011277824, -0.018743653, -0.0010854092, 0.025272934, -0.025326021, -0.04070274, -0.016794875, 0.0026738893, 0.034548834, 0.051793586, -0.056657437, 0.052766252, -0.06541598, 0.02489747, -0.042170268, -0.008386463, -0.039182458, -0.0005117797, 0.06644123, -0.0019514612, 0.025160795, 0.03460764, -0.07670136, 0.041329592, -0.055486463, 0.00021425971, 0.061796743, 0.00536019, 0.023639873, 0.027538454, 0.02062412, 0.061662894, 0.028087622, -0.01566579, -0.029351847, -0.048051704, -0.007770183, 0.068441585, 0.015436548, 0.016503887, -0.053854503, 0.014106001, -0.047243487, 0.061043464, 0.016689627, -0.0028920847, 0.0027567015, 0.022761399, -0.008978044, 0.024820138, 0.006608681, 0.019511864, -0.048032653, -0.012501817, -0.02115016, -0.03233827, -0.03582118, 0.022146398, 0.049565937, -0.008141049, -0.0489263, 0.013347684, -0.004691096, -0.03315069, -0.041211493, -0.0051259743, 0.01759648, 0.0030904538, 0.00675573, 0.051476978, -0.0012941733, -0.02400974, -0.0059464327, 0.015479222, 0.019932069, 0.016218988, 0.00366405, -0.020427128, -0.05366077, -0.005658855, 0.04035033, -0.04346867 ] }, { "values": [ -0.00061413413, -0.052832607, -0.073485136, -0.05013091, 0.026521072, 0.04207249, 0.038150266, -0.020451587, -0.015077077, 0.0053060073, -0.009743101, 0.03894628, 0.013733294, 0.001992516, -0.04329935, -0.03306332, 0.023391576, -0.038098678, -0.07582676, -0.025603663, 0.029336305, 0.02836413, 0.0007921251, 0.0119732395, -0.020411257, 0.00567685, 0.023367416, 0.028388372, 0.0063236966, -0.047025066, -0.00033433817, 0.03991703, -0.027766464, -0.039358728, 0.07834957, 0.06245214, -0.04248413, 0.007837298, 0.025227033, -0.052262772, -0.093366735, 0.005186129, -0.0049049584, 0.019609936, -0.038162302, 0.033190466, 0.030287413, -0.019383881, 0.00680463, 0.07772384, -0.004859232, -0.052698705, -0.03404923, 0.0027626357, -0.037493844, -0.022159094, -0.04980195, -0.054435745, 0.07924004, -0.0015439743, -0.038578875, 0.0022557448, 0.027611336, -0.03836369, 0.011900887, -0.043534383, -0.026017077, -0.04780392, -0.04991633, 0.012723431, -0.0018552004, -0.0019062103, -0.06405782, 0.011127148, 0.00013375666, -0.01623714, -0.0051509934, 0.024101729, -0.026633885, 0.050793465, -0.017536644, -0.011187007, 0.06765222, 0.017095495, 0.0028571968, 0.04314521, 0.004102155, -0.057464242, -0.01550419, 0.016122054, 0.108922504, 0.013501034, 0.010701737, -0.0022052801, 0.0129788695, -0.041938208, -0.07868294, -0.06452272, 0.013363009, 0.07672598, -0.033722833, -0.00044585878, -0.033503108, -0.053504616, 0.04553979, 0.01614565, 0.030698646, -0.0665413, 0.013657639, 0.067193456, -0.05410048, -0.040353533, -0.046640914, 0.012541624, 0.05598689, -0.0024731348, -0.030646103, 0.033784635, -0.051183697, 0.045927808, 0.04450363, -0.06555498, -0.031397, 0.047723502, -0.022260547, 0.011630672, 0.011945086, -0.05435084, -0.05021425, -0.07563176, 0.08601439, -0.08121881, 0.035597328, -0.012180347, -0.0792281, -0.020814486, 0.021994099, 0.0066141672, -0.0065838667, -0.02550991, -0.0127545735, -0.03120611, -0.017386042, 0.017898697, 0.030573983, -0.017534642, 0.020076549, -0.027302807, -0.042496096, 0.018713808, -0.087976545, -0.025101157, 0.03539034, -0.012004861, -0.033674087, 0.08797239, 0.073330335, -0.03709185, 0.021220261, -0.01450139, -0.01019901, -0.037947714, 0.007151371, -0.005554713, -0.036538366, 0.0042692083, 0.023323359, -0.033539828, -0.0050132526, -0.03656129, 0.05570492, 0.014763678, -0.0023984576, -0.105677746, 0.0323334, 0.036799073, -0.06465203, 0.042758245, -0.052931596, -0.037757058, 0.056147777, 0.06279074, -0.007623681, 0.03750134, -0.0050993515, 0.020396171, -0.0057105212, 0.05496596, 0.0034776994, 0.013434579, -0.006467802, 0.015974075, 0.034493253, 0.021717073, -0.058387537, 0.012248232, 0.046290617, -0.0012219922, 0.011519678, -0.040910434, 0.022486815, -0.023326408, -0.01943458, 0.022206392, -0.0076176478, -0.039713174, -0.030263418, -0.03731568, 0.022167722, 0.039826117, -0.023958, 0.018562498, -0.021306828, -0.049129654, -0.005374577, 0.008961506, 0.06272018, 0.060339514, 0.085822664, -0.05132064, -0.06906526, 0.013383691, -0.0016950053, -0.0882003, 0.0022653488, 0.036560904, -0.019520247, 0.021636741, -0.053623553, 0.007747332, 0.009836379, 0.018155677, -0.018017322, -0.028464017, 0.0362823, 0.018809263, -0.0018795616, -0.04559499, 0.026895145, -0.03716018, -0.029688913, -0.012252748, -0.0083593195, -0.028801925, -0.011751673, 0.028953196, 0.022640737, 0.093430236, -0.02953018, 0.031567387, -0.023939488, -0.012342499, -0.002238465, 0.012597255, -0.026525395, -0.008330886, 0.033257637, -0.047075827, 0.008341793, 0.012083547, 0.02915376, 0.017843762, -0.020102007, -0.021816373, -0.0239873, -0.056844417, 0.011909364, -0.02485784, 0.03182935, 0.0016532842, 0.005753706, 0.028083859, -0.03760474, -0.073340625, 0.014998915, 0.049247682, -0.035600666, 0.033932336, -0.025673116, -0.084727965, 0.004549185, 0.005259794, -0.0153202545, 0.0014111039, -0.016740942, -0.011852215, -0.020843403, -0.011439759, -0.034294352, -0.035649896, 0.05988247, 0.071156606, -0.036543462, 0.052609984, 0.04748656, -0.03348153, -0.008950266, -0.008726539, 0.040565986, 0.06657107, -0.014540396, 0.066505395, -0.030583462, 0.03341046, -0.0037342426, 0.027334675, -0.05185756, -0.013263215, -0.02541349, 0.011582813, -0.01844456, 0.031127749, -0.00094481534, -0.0070827855, 0.021526903, 0.02590351, -0.07213806, 0.015552194, 0.00020195695, -0.01605314, 0.049777854, 0.032141928, 0.007043154, -0.019671137, 0.076751925, 0.008120161, -0.014867028, -0.026178628, 0.039757285, -0.0099200765, 0.009099272, -0.008380697, 0.006633686, -0.010641023, -0.023200864, 0.0061251684, -0.019538807, 0.0149946865, 0.050409038, 0.008871926, 0.080948316, 0.02818537, 0.01808464, 3.4024568e-05, -0.0060409256, -0.05256871, 0.053097207, 0.023274893, 0.049856458, -0.059000254, -0.016494833, 0.061097294, 0.00078430475, 0.022477608, 0.040004514, 0.022278331, 0.016470855, 0.031257786, 0.015036717, -0.0025528707, -0.037012774, -0.024667531, 0.022592895, -0.053273994, -0.02717424, 0.009826508, 0.014241677, 0.053081777, -0.020168113, -0.008678135, 0.021201758, 0.03941205, 0.024175249, 0.0005724235, 0.010773647, -0.06477068, 0.011499946, 0.020425482, 0.0072494126, -0.060511786, -0.03469043, -0.025073435, -0.04013097, 0.005433566, 0.0091460245, -0.009712437, -0.047641184, 0.015243316, 0.024071615, 0.02704109, -0.037735622, 0.04834095, -0.024163721, 0.037372395, 0.02589919, 0.026686195, 0.0026722285, -0.029279547, 0.028745096, 0.0005125316, -0.0032347774, 0.029062131, 0.07597584, -0.013972052, 0.007900249, 0.012585482, 0.077111304, -0.0043994663, 0.004897439, -0.04573015, 0.05093802, -0.0039879014, 0.009388448, -0.027099568, -0.0056230896, -0.008113739, 0.009996266, -0.054808635, 0.018857202, 0.053242173, -0.01935372, 0.035138123, 0.022644794, 0.033546347, -0.032181274, -0.0720718, 0.02352651, 0.017596258, 0.03096765, 0.016996497, 0.0023384145, 0.029618712, -0.03388808, -0.018352821, 0.020440167, -0.02982074, -0.0055425935, -0.010731057, -0.032234553, -0.008368884, -0.017149366, -0.01851974, 0.06723015, 0.01778941, -0.01295182, 0.07930269, 0.058772083, 0.00089300814, -0.008783939, -0.05180712, -0.046639133, 0.08678213, -0.041297436, -0.05526797, 0.008273438, 0.011821789, 0.020784933, 0.010373482, -0.057355456, 0.03352692, -0.061541867, -0.025092356, 0.050991897, 0.087406, 0.010121925, -0.009562585, -0.04210334, 0.019125452, 0.031736106, 0.04802848, -0.005075806, -0.0009093632, -0.022128416, -0.012060221, -0.009824937, -0.0031387315, 0.0039229183, -0.017577989, 0.029170636, 0.036311295, -0.013955498, 0.044376805, -0.006516976, 0.05215899, 0.04625126, -0.05637118, -0.012008403, 0.010592539, 0.031198947, 0.028812552, -0.0067857453, 0.024459789, 0.03687897, -0.0008211301, -0.04709403, -0.05488301, 0.06761081, -0.035793535, -0.023765342, -0.04484542, 0.086372375, -0.021481687, 0.0002940472, -0.028740376, -0.032107454, 0.0146948, -0.03398991, 0.018346941, 0.028025975, -0.06158283, 0.00093510194, 0.029484147, 0.0577786, -0.022720516, -0.046230257, 0.080760464, -0.05008164, 0.02564644, -0.040031295, 0.061311655, -0.028596371, -0.027961323, 0.059751227, -0.09173013, -0.05113765, -0.033342056, -0.03637694, 0.05484757, 0.022948187, -0.013444479, -0.017949734, 0.07077686, 0.010073466, -0.0072795087, 0.026892155, 0.013830588, 0.027396534, -0.027397053, -0.0075137643, 0.014889634, -0.024105659, -0.046374276, 0.046056096, 0.017547948, 0.07285102, 0.008544835, 0.0536021, -0.0076506417, -0.009941814, 0.09150292, -0.0027501488, -0.007379742, 0.014650519, 0.0022827333, -0.013112058, -0.02940342, -0.023291457, 0.001294843, 5.3132728e-05, -0.0065838085, 0.017271126, -0.043594588, 0.023304628, 0.03186658, -0.010713741, 0.033306997, -0.0150505435, 0.07323917, -0.02592085, -0.044703655, 0.0026640377, -0.00055494584, -0.0422438, -0.054473598, -0.021943938, -0.013448979, -0.024559531, 0.003125418, 0.047393125, 0.0054856646, 0.05611817, 0.010167193, 0.06674592, -0.010413673, -0.0009492175, 0.033505995, -0.019585973, -0.057262696, 0.04471695, 0.011615568, -0.034924842, 0.0012665385, -0.004659546, -0.04274305, 0.068148926, -0.018407758, -0.010057682, -0.04598929, 0.04515176, -0.008638262, -0.0088419365, -0.009088289, -0.031250756, 0.045333195, 0.01993929, 0.009928589, -0.022207787, -0.030672451, 0.020063665, -0.027392298, -0.048608292, 0.032080885, 1.9542184e-05, -0.028276015, -0.05789575, 0.030552091, -0.047973264, -0.071047865, -0.0017660103, -0.0049371584, 0.018693281, 0.0012215604, -0.01433183, 0.027401581, -0.069209866, 0.0038417599, -0.023208965, 0.06426585, -0.04509559, -0.013945721, -0.041685913, -0.02670284, 0.00982267, -0.019721262, -0.0002551383, 0.026645603, -0.0007964831, -0.028116172, 0.046197064, -0.037129853, 0.034874287, -0.012793989, -0.020083817, 0.014951747, -0.048961535, 0.065228544, -0.0012996654, 0.018294591, -0.02082817, 0.02834574, 0.01410399, 0.035414457, -0.045735236, -0.05190965, -0.054763343, 0.004992026, -0.025735706, -0.00037918045, 0.0057048816, -0.019386748, -0.017679157, -0.03236344, 0.031645004, 0.05044858, 0.030957485, 0.008335513, -0.01979007, 0.03940073, -0.0016067477, -0.07185469, -0.00035351043, 0.039705973, 0.009813796, 0.05159279, -0.016149849, 0.016252913, 0.0052951514, -0.08344492, -0.023336599, 0.019968942, -0.012813441, -0.031215861, -0.022400415, 0.0028334924, -0.00986521, 0.009173356, 0.04750047, -0.019801693, -0.01946275, 0.007319305, 0.02698909, -0.03580628, -0.027470902, -0.021303564, -0.004226273, 0.03853147, -0.06050362, 0.09015656, -0.057243332, 0.014106506, -0.045812827, 0.00023032594, -0.030640827, -0.002830929, 0.04865553, -0.0069797533, 0.0044141873, 0.020200532, -0.08166589, 0.02041839, -0.054818507, -0.0058218054, 0.044872694, 0.013964526, 0.034808148, 0.04006601, -0.00038222503, 0.047102805, 0.015704399, -0.0032723488, -0.020345395, -0.03819286, 0.0047287135, 0.045901857, 0.023417734, 0.033828452, -0.055629756, 0.00480709, -0.060686063, 0.06628219, 0.0011095348, 0.027251031, 0.006261578, 0.041715585, 0.0064907297, 0.0022426585, -0.0062101455, 0.015802817, -0.05354567, -0.014813404, -0.014021789, -0.027227012, -0.021089569, 0.019148488, 0.03678826, -0.0038236082, -0.048655175, -0.025283871, -0.00732816, -0.011292449, -0.049355086, 0.014490677, 0.0031913347, -0.009322757, 0.025557244, 0.052088086, 0.0037733284, 0.003819681, -0.029729858, 0.014094396, 0.02681889, 0.019029949, -0.017377043, -0.011814534, -0.008107273, 0.010040152, 0.028266506, -0.0670162 ] }, { "values": [ 0.0004731598, -0.036428623, -0.035602067, -0.03827542, 0.027485318, 0.046620574, 0.016086027, 0.018237317, -0.02818965, -0.012753934, 0.012056471, 0.015886161, 0.02427548, 0.013678487, -0.054659046, -0.014911402, 0.02976713, -0.027116118, -0.06620959, -0.00053914945, 0.059944734, 0.021739082, -0.037215002, -0.018367691, -0.005546931, 0.0060125445, 0.015580441, 0.010789699, 0.021565827, -0.048523884, 0.010491915, 0.011248431, -0.034691554, -0.023504598, 0.049718473, 0.049955282, -0.035527896, 0.0020957112, 0.052730273, -0.08247091, -0.07706032, -0.00042131077, -0.027797917, 0.024379926, -0.04010881, 0.032244563, 0.048749644, 0.021112451, -0.0072406493, 0.0462833, 0.0029140692, -0.047056716, -0.045789655, -0.0028553363, -0.018510161, -0.015453821, -0.044580225, -0.07313174, 0.055130422, 0.021786159, -0.01384193, 0.021705396, 0.014739164, -0.0476554, 0.011066077, -0.04042301, -0.056525934, -0.05662548, -0.039218653, 0.017439082, -0.009452739, -0.0029273396, -0.06481934, 0.0071620843, 0.0033868658, -0.014112178, 0.018933017, -0.016079225, -0.044708256, 0.037568357, 0.00035066326, -0.047504522, 0.01779941, 0.05972572, 0.009181591, 0.032426216, 0.021803293, -0.030693756, -0.040108725, 0.021109248, 0.08210064, 0.022193523, -0.014178396, -0.014843828, 0.03591228, -0.06665893, -0.04982862, -0.070150964, 0.04208318, 0.058202505, -0.067749955, -0.014742702, -0.039354447, -0.07215666, 0.05495912, 0.03724118, 0.027107732, -0.061643653, 0.016173584, 0.018261468, -0.08090378, -0.04059152, -0.0800802, 0.012909052, 0.028322507, -0.035523072, 0.0016962873, 0.029361533, -0.049072858, 0.012021913, 0.028166814, -0.009088055, -0.019065898, 0.05278237, 0.0012708568, 0.026201649, 0.030392278, -0.06755468, -0.021570958, -0.06568714, 0.061015148, -0.091286264, 0.039816108, -0.00879788, -0.08351284, -0.010897892, 0.03926621, 0.03354056, -0.030400958, -0.04393694, -0.0021223743, -0.012369762, -0.016096236, 0.046810795, 0.03980866, -0.037124068, 0.0138408765, -0.022342721, -0.034431323, 0.009389565, -0.08708088, 0.0014776635, 0.028342746, -0.004833197, -0.02223948, 0.052153956, 0.06834941, -0.06762878, 0.021738786, -0.014154166, -0.018889377, -0.042439222, 0.006654402, 0.0027499932, -0.03967271, 0.02789258, 0.039805397, -0.04000858, -0.023888052, -0.059905093, 0.023114512, -0.02144638, -0.036238708, -0.082188495, -0.010971223, 0.018759262, -0.065513045, 0.014773334, -0.047407765, -0.048360046, 0.0249055, 0.08164365, -0.0015316223, -0.0037959851, -0.040107217, 0.011575227, 0.03437791, 0.074560955, 0.0014597292, 0.04613137, -0.0012089012, 0.03344917, 0.04354438, 0.0015468146, -0.02422768, 0.03432644, 0.069932014, 0.012921666, -0.023443926, -0.053232115, 0.009724418, 0.022743298, -0.031597514, 0.03164143, 0.006536898, -0.036317617, -0.026217543, -0.03998285, 0.063617155, 0.019928312, -0.0072405906, 0.026384851, -0.012584313, -0.033118155, -0.000521533, 0.012742799, 0.058193862, 0.02921281, 0.09158787, -0.06015583, -0.056658346, 0.03256699, 0.019465838, -0.08353041, 0.01288014, 0.042841714, -0.0010081176, 0.05128437, -0.031379618, -0.011879163, -0.015561802, 0.02003705, -0.0224658, -0.025852043, 0.06341297, 0.03863939, 0.003910323, -0.025064008, -0.030577255, 0.0020117844, -0.010609126, 0.018965255, 0.010291515, -0.021419289, -0.027278198, 0.05809977, 0.03908108, 0.07659545, -0.045740135, -0.012502602, -0.025060128, -0.030838957, -0.033842705, -0.040418822, -0.025152214, -0.0141458195, 0.035514224, -0.027127383, 0.019188512, 0.02392204, 0.04607004, -0.0042580934, -0.017897448, -0.043360945, -0.02144246, -0.05042444, -0.00049593736, -0.02296604, 0.048276175, -0.046509102, -0.015532918, 0.013293717, -0.06311138, -0.04487887, 0.031155331, 0.050113127, -0.028480759, 0.011660949, -0.034895066, -0.08651467, 0.027348064, -0.010576778, 0.009230146, -0.01454504, -0.015150246, -0.0066446895, -0.025555896, 0.015099082, -0.009031422, -0.035549648, 0.045524858, 0.061922025, -0.010044804, 0.036597453, 0.06336121, -0.026581142, 0.0051528793, 0.00086818414, -0.006789867, 0.057792068, -0.017927071, 0.06580351, -0.04043059, 0.022411326, 0.01167705, 0.017325062, -0.059593756, -0.022474317, -0.0075518927, 0.013039112, -0.00078032946, 0.053535998, -0.032495856, -0.009352948, 0.0031716218, 0.030496018, -0.08749083, 0.010599766, 0.0031425839, -0.015160314, 0.040104635, 0.031650595, 0.0105801895, -0.024469623, 0.049046267, -0.0026236316, -0.018933356, -0.019936135, 0.06576996, -0.015705874, 0.015623854, 0.014574509, 0.015878057, -0.0061565554, -0.024406152, 0.027982501, -0.020747703, 0.047254022, 0.025501821, 0.010564508, 0.06547715, 0.038063947, 0.02651336, 0.02607675, 0.027261538, -0.057590872, 0.03991586, 0.0308529, 0.050213985, -0.075083785, -0.02059949, 0.067319475, -0.028029123, 0.016720636, 0.0065029785, 0.017355325, 0.029817643, 0.046718404, -0.021034887, 0.0063416227, -0.051837146, -0.03141551, 0.023952099, -0.029169487, -0.018550277, 0.02370533, 0.025531137, 0.054374937, -0.035019703, -0.0066877995, 0.037542894, 0.03633248, 0.014376835, 0.018899329, 0.018757844, -0.07798698, 0.013301717, 0.0041650333, 0.023449823, -0.06256064, -0.023115067, -0.02868041, -0.029554171, -0.0017277795, -0.039061256, 0.02526169, -0.031726304, 0.0025343283, 0.027743282, 0.024582667, -0.051318243, 0.029307688, -0.038836487, 0.04011504, 0.007874934, 0.040366624, 0.041036554, -0.019340789, 0.021089427, -0.0077544693, -0.029828634, 0.012507932, 0.054180548, -0.017574763, 0.010110082, 0.014670907, 0.082656786, 0.027662098, -0.0033627136, -0.055582803, 0.03794211, -0.03457503, 0.029421618, 0.0014230028, 0.003999318, 0.015331422, -0.0032448443, -0.0574729, 0.021539543, 0.035381895, -0.0024099033, 0.026878448, -0.009951556, 0.059518766, -0.051322103, -0.066296235, 0.042443715, 0.03675141, 0.03283437, 0.0018988363, -0.02787624, 0.021905912, -0.05182393, -0.019322595, 0.007795904, -0.033057697, 0.0013825456, -0.021844674, -0.023003701, -0.015536882, -0.014015081, -0.023233112, 0.048481483, 0.020599963, -0.017766751, 0.053209595, 0.028456703, 0.016418615, -0.021055989, -0.073676266, -0.059353996, 0.044658422, -0.003491438, -0.066780485, -0.008239957, -0.004438283, 0.041697733, 0.012509928, -0.02495176, 0.019868616, -0.10381434, -0.005197194, 0.06316252, 0.05730795, 0.0037442937, -0.018841173, -0.024904707, 0.011247523, 0.011069813, 0.05118961, -0.00022530013, 0.014961003, -0.014080798, -0.033781607, 0.012500476, -0.004154617, 0.008374013, 0.006276331, 0.042716216, 0.0062673013, -0.016043905, 0.044236246, 0.0054738116, 0.04951691, 0.049032386, -0.028108016, -0.01580652, 0.026963824, 0.031728517, 0.05341557, 0.017539153, 0.039383713, 0.026448699, 0.011074995, -0.039351888, -0.03863818, 0.04132891, -0.06334713, -0.018509017, -0.04878277, 0.0849555, -0.029279694, 0.0018830734, -0.018044736, -0.062112726, 0.0059952675, -0.061471745, 0.00083665235, 0.03649573, -0.039627425, 0.018841948, 0.014638624, 0.05262169, 0.017880604, -0.017785082, 0.0830367, -0.063427456, 0.0003592422, -0.01638457, 0.07064991, 0.016913284, -0.0136136385, 0.039254278, -0.063170746, -0.073088646, -0.01218555, -0.05236057, 0.047155034, 0.05566756, -0.029564023, -0.014197573, 0.069436155, -0.019360375, -0.018329011, 0.027654799, 0.010672427, 0.019285288, -0.013167874, -0.0059952703, -5.844299e-06, -0.016962457, 0.009854757, 0.033836957, 0.013043241, 0.08071792, -0.0032649604, 0.037173785, -0.026441334, -0.022829756, 0.10242169, -0.012996582, -6.9676557e-06, 0.04335923, 0.020828713, 0.014576918, -0.049195707, -0.019331427, 0.023627948, -0.017150266, 0.0071628746, 0.040546, -0.033248834, 0.0047072065, 0.034608275, 0.0041400343, 0.02080713, -0.031453803, 0.011792108, -0.0032616125, -0.056243304, 0.005345991, 0.026204983, -0.041065358, -0.04109104, -0.009266066, -0.008856145, -0.031855617, 0.011550175, 0.046221603, 0.015895188, 0.051035818, -0.0047769393, 0.052358564, -0.027660564, -0.0015189543, 0.028189655, 0.022640726, -0.06464351, 0.034679417, 0.025833346, -0.038375296, -0.013613389, -0.017922452, -0.032787308, 0.054616347, -0.029458359, -0.011366945, -0.039689586, 0.062993646, 0.0057715867, -0.020918304, -0.0077446317, -0.017628925, 0.057893638, -0.011845278, 0.0044024573, -0.008654217, -0.050137643, -0.00085914973, -0.020298135, -0.05547498, 0.019609844, -0.021700209, -0.012045971, -0.037927955, 0.039952632, -0.039283942, -0.03887748, -0.0114615485, -0.00922486, -0.037330557, -4.9537455e-05, -0.005764777, 0.0038894347, -0.0601024, 0.02477198, -0.0508135, 0.050235547, -0.038272586, -0.007108653, -0.016789533, 0.007975954, 0.0005605941, -0.0399896, -0.0034325733, 0.017816745, 0.012937431, -0.03038441, 0.035366368, -0.04007465, 0.041216306, -0.023279747, 0.02795694, 0.0028250094, -0.07957984, 0.043876592, -0.018636717, 0.03286032, -0.01926903, 0.031874545, 0.010841465, 0.054104887, -0.04133745, -0.055910565, -0.05142613, -0.010724307, -0.007192833, -0.01556142, -0.023455886, -0.0038980453, -0.022225948, -0.036676385, 0.024842113, 0.035228513, -0.0014673515, 0.012214775, 0.016831435, 0.007520254, -0.01613068, -0.043421578, -0.00030727894, 0.027349258, 0.010895871, 0.01728033, -0.023073953, 0.005865863, -0.023548549, -0.021230726, -0.045414537, 0.035782814, 0.01740182, -0.03377935, -0.028399825, -0.015174881, -0.00813586, 0.011702585, 0.03615319, -0.045454666, 0.005340812, 0.0069816425, -0.027265003, -0.04969979, 0.008120294, -0.011156622, 0.00020824758, 0.024310088, -0.03297545, 0.06884113, -0.06808945, 0.047503434, -0.058392417, -0.013386102, -0.03598664, 0.0021381327, 0.06769425, 0.015138741, 0.011122661, -0.0038294795, -0.073478125, 0.032703124, -0.07738129, 0.0187073, 0.07776667, 0.014213039, 0.022293163, 0.03731401, 0.027123405, 0.050095182, 0.032081198, -0.017022958, -0.02838848, -0.055132832, 0.008838093, 0.07931228, 0.022885479, 0.03435193, -0.05467863, 0.00027378977, -0.031295404, 0.0769007, 0.029599046, 0.01000122, -0.014237657, 0.04318249, 0.016276931, 0.0017639278, -0.0010344026, 0.006659869, -0.019224267, -0.023374846, -0.019959092, -0.024465268, -0.042378645, 0.030315423, 0.037967637, 0.007558775, -0.03698981, -0.036192957, 0.0066470155, -0.0022053362, -0.044526424, -0.00575614, 0.025371943, -0.018793566, 0.0014991435, 0.03035611, 0.016785188, -0.037028734, 0.0017031203, 0.015892003, 0.033991665, 0.0059079872, 0.010189721, 0.002322893, -0.05784413, -0.0012303174, 0.00908343, -0.0822468 ] }, { "values": [ 0.0023463825, -0.030390853, -0.020205647, -0.02425767, 0.057787776, 0.04103213, 0.04958892, -0.009288699, -0.032158636, -0.008155606, 0.010221842, 0.031442784, 0.001885968, -0.005511937, -0.04214957, -0.0033154204, 0.027080128, -0.01133085, -0.060148798, -0.027808797, 0.08052615, 0.020052947, -0.018650964, -0.02934962, -0.019093243, -0.036480248, 0.023325076, 0.0016599048, 0.024119176, -0.071350336, 0.031311784, 0.03911121, -0.036447365, -0.060251452, 0.07677348, 0.03659878, -0.032931533, -0.0026494702, 0.06794667, -0.05682848, -0.080152966, -0.0026867182, -0.032939237, 0.021916514, -0.042687073, 0.04465664, 0.06719002, 0.030126877, 0.019055368, 0.07131118, 0.041086067, -0.016186444, -0.011146638, -0.0016624171, -0.0070032733, -0.036053326, -0.06798789, -0.09331563, 0.036118634, 0.028430777, -0.019158226, 0.0056944247, -0.0022028114, -0.053145424, 0.030939784, -0.036628414, -0.021023002, -0.04779062, -0.047459614, 0.023290206, 0.011296496, 0.01054877, -0.049810745, 0.0055336347, 0.005542466, -0.007225081, -0.030508816, 0.021959053, -0.056547593, 0.022352029, -0.028599542, -0.0123889465, 0.03933264, 0.05827945, 0.014069731, 0.036995366, 0.003840668, -0.04651615, -0.014754504, 0.032230675, 0.09227299, 0.0344804, -0.00032875594, -0.0037625236, 0.004539095, -0.06215363, -0.05569626, -0.05734151, 0.024148582, 0.08053281, -0.02930969, -0.002599227, -0.015091136, -0.04742284, 0.07372546, 0.0017552653, 0.034668267, -0.075550586, 0.014103004, 0.02966743, -0.08912377, -0.039445613, -0.075710945, -0.009704152, 0.014294191, -0.020344697, -0.030055588, 0.019619273, -0.03435624, 0.0055032573, 0.03019913, -0.034119032, -0.056272876, 0.052556254, -0.010796742, 0.03193798, 0.0024803707, -0.043987416, -0.015646668, -0.08681951, 0.08071305, -0.1108599, 0.022658715, -0.0019828144, -0.07643373, -0.01894648, 0.036023594, 0.023137346, -0.012616573, -0.013963376, -0.028524412, -0.016732253, 0.009161835, 0.030140862, 0.016684117, -0.022228826, -0.0062601306, -0.00044656836, -0.078183554, 0.025599856, -0.089381844, 0.0035040719, 0.025138447, 0.018574543, -0.0008670361, 0.06957336, 0.083961755, -0.03453766, 0.033046674, -0.01761094, 0.0064043393, -0.01460376, 0.0076084062, 0.00090312184, -0.025320075, -0.01958709, 0.034724943, -0.01451045, -0.022541318, -0.06625276, 0.052091483, 0.009996403, -0.0294326, -0.10720827, 0.007888376, 0.042353928, -0.03359017, 0.037887827, -0.04355819, -0.018479839, 0.014697989, 0.06144863, -0.023028003, 0.0018207236, -0.030795265, 0.013453676, 0.012831777, 0.062841594, 0.019396778, 0.048016276, -0.0045555183, 0.03433054, 0.025684841, 0.016859036, -0.0067604757, 0.04764581, 0.063477345, -0.0009955971, 0.030316217, -0.037459783, 0.051054757, 0.0029547594, -0.023327954, 0.023674956, 0.008574943, -0.02875288, 0.0017654198, -0.03739744, 0.03544043, 0.018867126, -0.059369966, -0.017453993, -0.024820551, -0.043347564, -0.014902529, 0.031419788, 0.06527436, 0.011654149, 0.058907364, -0.037681535, -0.051153865, 0.022985497, 0.0085744895, -0.063154936, 0.017912945, 0.017234849, -0.030584581, 0.0055569657, -0.055496354, 0.03962156, -0.028242731, 0.011923033, -0.007819157, -0.014231505, 0.03651752, 0.034748606, -0.018344436, -0.02618314, -0.016147772, -0.016424531, -0.04632776, 0.026698114, 0.03045098, -0.002072672, -0.011123258, 0.07158511, 0.035198398, 0.08331302, -0.03530757, -0.01766922, -0.035817273, -0.03012707, -0.061934855, 0.003412645, 0.00029552917, -0.02753336, 0.03440712, -0.049851723, 0.013284777, -0.019343695, 0.057100683, 0.0010445056, -0.017835062, -0.039025716, -0.032716203, -0.04659141, -0.009819612, 0.012025436, 0.06305127, -0.00900929, -0.0067827613, 0.009485442, -0.045657545, -0.04394216, 0.01385844, 0.044163335, -0.030366806, 0.01608091, -0.02507687, -0.0856073, 0.023047179, -0.000850016, -0.0035401876, -0.011417845, -0.00016398048, -0.016835142, -0.016496839, 0.0121743595, -0.025296746, -0.02794531, 0.07398634, 0.04395753, 0.00925364, 0.028057473, 0.048092943, -0.01975851, -0.0027404933, 0.017143749, 0.0071327495, 0.014495106, 0.019811656, 0.07061789, -0.013915014, 0.021322675, 0.0045982115, 0.015766477, -0.051425982, -0.040806327, -0.0007232533, 0.027852675, -0.011263195, 0.03622915, -0.021428905, 0.019092463, 0.006267747, 0.03669106, -0.0984916, 0.00690714, -0.0035849772, -0.038328923, 0.022117529, 0.03735983, 0.0026594598, -0.00811375, 0.032645617, -0.015228498, -0.011224811, -0.02183407, 0.04794444, -0.013148471, 0.027028456, 0.010030288, -0.0031270017, 0.019519517, -0.009854869, 0.027531145, -0.0103884265, 0.03298822, 0.035167716, 0.017559333, 0.072602935, 0.010540304, 0.028727254, 0.026953781, -0.0041474192, -0.07583239, 0.039035313, 0.012524695, 0.06321357, -0.06338234, -0.039143987, 0.054331105, 0.017688118, 0.0010927219, -0.002248371, 0.027777353, 0.038872812, 0.03432095, -0.0048872405, -0.0087566385, -0.03387817, 0.02851164, 0.017998701, -0.044374626, -0.009840014, 0.023556508, 0.03176444, 0.04159598, -0.0172065, -0.024123386, 0.026181143, 0.037617825, 0.00010961945, -0.006505544, 0.016207634, -0.069946475, 0.0011281931, 0.025982609, 0.014827769, -0.0691583, -0.04476724, -0.012940428, -0.007097521, -0.014070949, -0.060933527, 0.019792918, -0.035202738, -0.031708423, 0.022858666, 0.035952203, -0.045167245, 0.033078898, -0.03461761, 0.05604339, -0.0009814912, 0.024204943, -0.011751873, -0.040995803, 0.025300909, 0.007089474, -0.028853698, 0.024881378, 0.038697317, -0.0024417418, -0.0116934525, -0.00350234, 0.07257891, 0.008127085, -0.017157806, -0.06829212, 0.03212895, -0.021652242, -0.00061217364, -0.004367182, -0.019289462, -0.014930812, -0.019782094, -0.045732066, 0.024974281, 0.01854514, -0.010318796, 0.03178143, 0.0073290444, 0.0347575, -0.03566839, -0.09666002, 0.044217408, 0.03252822, 0.014527978, -0.011557313, -0.009453163, 0.003520417, -0.071568385, -0.02766611, 0.008065268, -0.041695043, -0.020329894, -0.02072314, -0.035641078, -0.0074071838, -0.009552787, -0.017155569, 0.06948476, 0.017379055, -0.029244028, 0.06995293, 0.047270145, 0.005448508, -0.040413704, -0.07340017, -0.029144967, 0.05813094, -0.0076147513, -0.06907553, -0.006707515, -0.034647334, 0.042067986, 0.019900948, -0.029756183, 0.03703735, -0.08215019, 0.00013009318, 0.08204093, 0.058451086, 0.016579498, -0.02944972, -0.01583438, -0.005767834, 0.020167185, 0.010836958, -0.00049919606, -0.010885926, -0.02292584, -0.00070525764, 0.02671811, 0.012480369, 0.012043746, -0.014926846, 0.0670876, 0.0042398204, -0.01924787, 0.034690067, -0.0046526412, 0.03182888, 0.028546631, -0.0520325, -0.029058106, 0.011365583, 0.026845567, 0.017550468, 0.0132983755, 0.026280181, 0.016878948, -0.00020484254, -0.053218093, -0.059014115, 0.041253056, -0.04559528, -0.0122666145, -0.062667, 0.07365954, -0.028517762, 0.0052729216, 0.0016680077, -0.045034748, 0.0040596807, -0.03430615, 0.013799612, 0.039554846, -0.0363139, 0.00698684, 0.015684271, 0.05982648, 0.012753814, -0.023165733, 0.07170222, -0.03670087, -0.0058220625, -0.016958361, 0.068687856, -0.009049854, -0.045253024, 0.05409058, -0.074722, -0.0709205, -0.0047361567, -0.06363216, 0.037850004, 0.043387447, -0.020451324, -0.0179297, 0.061107993, -0.012358219, -0.011449245, 0.0013065182, 0.020671073, 0.008768231, -0.040745847, -0.0114920195, 0.014869387, 0.00715094, 0.007433534, 0.022402376, 0.0076001305, 0.076388486, 0.0021225912, 0.03133577, -0.012917426, -0.032617025, 0.088400126, -0.030647166, -0.01288508, 0.048976056, 0.015142164, -0.02851465, -0.04828087, -0.0191974, -0.0016189589, -0.03269556, 0.011642309, 0.03619594, -0.006923976, 0.024711208, 0.050816365, 0.0053215637, 0.009316283, -0.022101566, 0.060329676, -0.015083, -0.057826806, -0.002817889, -0.0029908286, -0.041668225, -0.0508705, -0.021324085, 0.00021081652, -0.029389305, 0.007026018, 0.048837636, -0.0054752403, 0.055692885, 0.006838599, 0.07775218, -0.03507037, 2.771552e-05, 0.04316329, 0.01995933, -0.062345084, 0.028757483, 0.016615964, -0.022801949, 0.008553213, -0.009683394, -0.0361156, 0.051726077, -0.022305012, -0.010403758, -0.07033026, 0.04924458, 0.011418483, -0.011223563, -0.010883977, -0.033945058, 0.06721299, -0.007557792, -0.0015147307, 0.00438376, -0.023760742, 0.028374886, -0.0155395605, -0.043576993, 0.008156864, -0.0106375925, -0.015292158, -0.041491296, 0.050494425, -0.029193673, -0.03803497, -0.02055224, -0.036974967, -0.019566888, 0.017027307, -0.015841937, 0.012753195, -0.052486748, -0.0032507423, 0.005670105, 0.05736043, -0.027728092, 0.018728178, -0.0036801316, -0.021921255, 0.033661876, -0.03853165, -0.0055762483, 0.033536464, 0.03726685, -0.020535134, 0.056835726, -0.040838633, 0.04253191, -0.004418981, 0.009071773, 0.02901943, -0.07810765, 0.057533856, -0.00798403, 0.019222906, -0.0019634678, 0.006408265, -0.007824624, 0.020946221, -0.017741911, -0.06300247, -0.048848405, 0.009804244, 0.009514145, -0.010974753, 0.00078239874, -0.036663063, -0.042144787, -0.044184074, 0.012001218, 0.031525876, 0.018706864, 0.0045269886, 0.014688307, 0.03219667, -0.02563912, -0.06085277, -0.009270268, 0.013576441, 0.024054538, 0.017575257, -0.04346835, 0.015426186, -0.009010417, -0.03793475, -0.021251455, 0.015849583, 0.033817306, -0.028220441, -0.027728783, -0.017704649, -0.0007550388, 0.0033286088, 0.044094108, -0.021336427, 0.008724004, 0.010952476, -0.0197597, -0.03148014, -0.009693144, -0.003955593, 0.0015578371, 0.032357424, -0.022932509, 0.06452305, -0.05826203, 0.017049378, -0.038925692, -0.002569267, -0.05844493, 0.017535621, 0.05028699, 0.022659859, 0.00578894, 0.0043564066, -0.078651726, 0.04636445, -0.067236185, 0.0035527206, 0.07218361, -0.010751935, 0.028526105, 0.035628375, 0.015302178, 0.034893468, 0.019336231, 0.016239233, -0.03162691, -0.05505233, 0.011362849, 0.071205676, 0.0123442905, 0.035251457, -0.055331927, -0.020494996, -0.045909744, 0.06973267, 0.05137045, -0.006815111, -0.01744772, 0.038849577, 0.0014287723, -0.0040895245, -0.025660915, 0.027686287, -0.02688802, -0.040445946, -0.021381335, -0.033621393, -0.04576917, 0.042161226, 0.060432564, 0.0011040944, -0.046036996, -0.037854522, 0.03067919, -0.032796692, -0.06779963, -0.0007666815, 0.022519777, -0.032616697, 0.012953799, 0.014293611, 0.012654515, -0.026114687, -0.010788718, 0.017633319, 0.022487296, 0.027307596, 0.014671126, -0.01218618, -0.038657337, 0.014389427, 0.04561022, -0.07144875 ] }, { "values": [ -0.011700348, -0.021892557, -0.018826908, -0.016128806, 0.05972598, 0.061896373, 0.03773915, -0.017879196, -0.0062343883, 0.0051921746, 0.013693273, 0.009237398, 0.0011484341, -0.0060781403, -0.031935524, -0.008890051, 0.005727623, -0.025288947, -0.09017783, -0.045850806, 0.0712831, 0.017117197, -0.026813151, -0.0023951589, -0.016738372, -0.03720485, 0.021446427, 0.012175394, 0.03052065, -0.059485327, 0.014147684, 0.051282246, -0.015669195, -0.063497834, 0.041969936, 0.06640495, -0.04290428, 0.014663595, 0.056618664, -0.03885477, -0.0898848, -0.009494566, -0.032744348, 0.0360136, -0.026786828, 0.04499269, 0.0916017, 0.019281967, 0.03517115, 0.06837258, 0.010772018, -0.028548481, -0.0083694365, -0.015837532, -0.015687488, -0.045313068, -0.05411935, -0.07252478, 0.037234984, 0.034852967, -0.026249036, 0.0009627209, -0.0106116505, -0.03749781, 0.034168385, -0.047735453, -0.037726667, -0.03583767, -0.039046384, 0.036645662, -0.0015841721, 0.0059250873, -0.060201883, 0.0102062365, 0.015329003, -0.00978289, -0.005555648, 0.020975808, -0.06299473, 0.028119003, 0.0049655368, 0.01588049, 0.035042908, 0.04609546, -0.008689744, 0.019941542, 0.012457594, -0.038008604, -0.0073055984, 0.015146677, 0.08212735, 0.031866137, -0.011720798, 0.0036094107, 0.005206288, -0.03821622, -0.06761692, -0.047113393, 0.024592446, 0.049824193, -0.031111501, -0.0010460741, -0.032253884, -0.03816932, 0.068678886, 0.0008560965, 0.03821409, -0.06263984, -0.0066345637, 0.015713086, -0.075638145, -0.044045903, -0.06649279, -0.019742906, 0.010906965, -0.01007177, -0.04857831, 0.013562542, -0.043538135, 0.025108188, 0.033766363, -0.040381834, -0.039209705, 0.052145474, 0.0004829487, 0.026748296, 0.0044387965, -0.03922429, -0.035560586, -0.0716246, 0.082969956, -0.10269853, 0.03936282, -0.0061163474, -0.06322616, -0.012939039, 0.06460725, -0.00092446734, -0.005087352, -0.012638315, -0.022743825, -0.020719843, -0.012785674, 0.028804887, 0.009388705, -0.022505233, 0.012508672, -0.019088766, -0.07697798, 0.038213976, -0.09701629, -0.0130612515, 0.03551119, 0.007513496, -0.004984924, 0.07271628, 0.07698638, -0.034710016, 0.046346083, -0.031591535, 0.0010563735, -0.018567016, -0.011188867, 0.017083464, -0.035312377, 0.009496052, 0.040995993, -0.026546294, -0.042517778, -0.051244687, 0.041074973, -0.014126551, -0.043494146, -0.086732656, -0.011239673, 0.03159368, -0.03520958, 0.020198457, -0.062022258, -0.029897554, 0.010999105, 0.08081527, -0.048055, -0.0030100972, -0.013576276, 0.02150549, 0.028282005, 0.070620105, 0.024716662, 0.040478133, -0.002739146, 0.03408291, 0.017462887, 0.008766463, -0.024969708, 0.02869079, 0.060673997, 0.022667807, 0.010631329, -0.023995174, 0.039955974, 0.004928889, -0.013520322, 0.046123058, -0.0107560055, 0.0024976893, -0.0057896664, -0.051083118, 0.049810637, 0.012805507, -0.059040274, -0.009354441, -0.027714603, -0.030054033, -0.006319122, 0.027000746, 0.08319768, 0.017228186, 0.07095187, -0.020350799, -0.08319621, 0.0038778312, -0.012888441, -0.05459828, 0.0033608305, 0.033122532, -0.04525522, 0.024659613, -0.06787886, 0.039158814, -0.011863993, 0.018413816, -0.00928033, -0.0020838866, 0.03642633, 0.059051447, -0.020609139, -0.02490988, -0.003955438, 0.004860447, -0.04930814, 0.0062026763, 0.0032467442, 0.00683688, -0.014915469, 0.06984722, 0.02263546, 0.084453814, -0.0054849465, -0.021552894, -0.06129551, -0.0251991, -0.053934705, -0.009433155, -0.004567022, -0.014441287, 0.045502156, -0.051838987, 0.008400955, -0.014749186, 0.039947353, 0.0045955316, -0.013028407, -0.03560879, -0.016257217, -0.06407192, -0.01212929, 0.022416553, 0.054643407, -0.017415078, -0.015430287, -0.00073769083, -0.048423566, -0.057727672, -0.013363601, 0.042411234, -0.039831948, 0.005865873, -0.017659832, -0.09752843, 0.03723838, -0.018162217, 0.014273831, 0.0019098043, -0.011390509, -0.01273899, -0.003940538, 0.009562338, -0.022551555, -0.014563292, 0.04319276, 0.05925905, 0.006020506, 0.01306709, 0.04708775, -0.010945642, 0.006292359, 0.013848879, -0.01498097, 0.016858326, 0.03976602, 0.059151452, -0.03544965, 0.041240506, 0.025074095, 0.019742878, -0.05190843, -0.018864451, -0.01875045, 0.026916847, -0.015558544, 0.019585753, -0.0018906813, 0.021292478, 0.01574854, 0.02550204, -0.11125958, -0.004855452, -0.024445057, -0.035898875, 0.03439106, 0.01166326, 0.015548761, -0.018792225, 0.048512857, 0.0033651588, -0.01047497, -0.017183598, 0.037674166, -0.007659296, 0.021131849, 0.019039068, 0.0002886132, 0.02004499, 0.007650803, 0.008010903, 0.00471754, 0.020051466, 0.064566515, 0.03225937, 0.08754792, 0.010081708, 0.041925788, 0.01914214, -0.014402407, -0.06531112, 0.059235945, 0.005699754, 0.045944836, -0.06743815, -0.031278633, 0.054174006, 0.011821725, 0.003829857, -0.0116421105, 0.0040215175, 0.0076907715, 0.012231528, 0.006877533, -0.017094705, -0.025037784, 0.041083653, -0.0008328454, -0.057126924, 0.002596132, 0.022297526, 0.019116197, 0.03787169, -0.016821453, -0.010676163, 0.025980676, 0.027018273, -0.0023419855, 0.0035000718, 0.024605777, -0.031980608, -0.00061982323, 0.034071017, 0.0335732, -0.077474795, -0.02985354, -0.0026758967, -0.015299618, 0.0058186683, -0.063389525, 0.029432675, -0.034086473, -0.010208902, 0.01658655, 0.031051252, -0.052849777, 0.042032715, -0.035617534, 0.057633832, -0.026609339, 0.030987807, -0.011715391, -0.043892294, 0.030515535, 0.0008333946, -0.026126586, 0.038746785, 0.057816777, -0.0030791846, 0.0050967815, -0.00093158026, 0.06890108, 0.0027471094, -0.014682931, -0.06259163, 0.027797446, -0.0032436529, 0.004637214, -0.004825796, -0.017084815, -0.0060408018, -0.0062397034, -0.038747057, 0.019519955, 0.003413033, -0.005903711, 0.04574999, 0.011610725, 0.012299721, -0.01964586, -0.07797957, 0.030745795, 0.045270342, 0.020320226, 0.025159933, 0.0023477604, 0.011683175, -0.060495034, -0.027091136, 0.012634844, -0.02923406, -0.013514049, -0.018594883, -0.045021717, 0.008421153, -0.004587629, -0.0034243045, 0.049846765, 0.02409772, -0.02911165, 0.0395314, 0.041384503, 0.0062480853, -0.021000506, -0.10370163, -0.04888188, 0.04306688, 0.000115053685, -0.04071153, -0.0008633235, -0.017746074, 0.008625339, 0.01994032, -0.06242744, 0.025363218, -0.1028412, -0.0014510046, 0.092194304, 0.06447183, -0.0035723252, -0.03573645, -0.031268775, -0.010823347, 0.05454122, 0.03371906, 0.0035260713, 0.02493756, -0.012706698, -0.0024950537, 0.021501377, 0.007663289, 0.026479358, 0.022081839, 0.077442974, 0.010615097, -0.026880113, 0.028738128, -0.00888738, 0.04587275, 0.03068987, -0.042301692, -0.007922742, 0.018342, 0.026672982, 0.047702573, 0.015956981, 0.019685622, 0.031875398, 0.01573466, -0.056458127, -0.056447513, 0.02782786, -0.038779885, -0.016998667, -0.041688107, 0.058967117, -0.02558577, 0.00046294084, -0.014868021, -0.020572353, 0.021935018, -0.048200622, -0.009355473, 0.030181572, -0.06525078, 0.006458597, 0.015168751, 0.04933836, 0.019705947, -0.004809476, 0.036755487, -0.06478571, 0.005993162, -0.005461755, 0.07380563, 0.029109348, -0.03854168, 0.06850785, -0.079211876, -0.07436755, -0.020679098, -0.036440924, 0.035597835, 0.04443333, -0.010767493, -0.013421723, 0.058956653, -0.020373713, -0.0065079015, -0.008339823, -0.0036756766, 0.009325284, -0.033904523, -0.011184906, 0.007902384, 0.017506601, 0.026283687, 0.027525878, -0.00038676025, 0.06419549, -0.011230161, 0.03644874, 0.0020400279, -0.041261584, 0.09011724, 0.006028839, -0.02082155, 0.06118002, -0.01115013, -0.0053148554, -0.042575806, 0.010322865, 0.00022834522, -0.04760093, 0.013900436, 0.042304058, -0.005062579, 0.025121769, 0.023245597, 0.023377439, -0.015792932, -0.010570902, 0.027736336, -0.018292813, -0.06591592, 0.00563522, 0.0033529715, -0.04463518, -0.045002952, -0.029540535, -0.022007028, -0.018034505, -0.010184303, 0.06467987, -0.011427608, 0.048225086, -0.005606538, 0.077602, -0.021552475, 0.015611429, 0.059939377, 0.0040957127, -0.049102493, 0.028938657, 0.0071935887, -0.017863836, 0.017478451, -0.0025249757, -0.026877569, 0.07885536, -0.013802627, 0.00068469596, -0.07268416, 0.060468167, -0.008514919, -0.0100167785, -0.013422194, 0.009494487, 0.08055728, -0.009902643, 0.00063761673, -0.020472448, -0.027883336, 0.027748939, -0.031739186, -0.055257287, 0.027252194, 0.0013933494, -0.0012878705, -0.048657503, 0.03976419, -0.035682328, -0.028199565, -0.00083912053, -0.016445559, -0.005598503, -0.0006807588, -0.016344756, 0.038211755, -0.05918586, 0.011792167, 0.013717731, 0.045324627, -0.024810268, 0.028536232, -0.020828031, -0.026362898, 0.033292618, -0.041379027, 0.0013342574, 0.030763442, 0.024990194, -0.025092984, 0.036471315, -0.052287452, 0.04108521, -0.0071149725, 0.0018420067, 0.016556092, -0.0744169, 0.08747735, -0.0051862206, 0.02934171, -0.0073654866, 0.01434191, 0.010359241, 0.054110095, -0.0027642823, -0.06252463, -0.055974495, 0.012284597, 0.017272187, 0.0110409465, -0.0006467365, -0.010925304, -0.047276333, -0.066399, 0.026341932, 0.029198209, 0.016148126, 0.019167032, 0.015060299, 0.0036745095, -0.026999779, -0.050991673, 0.008793284, 0.016288184, 0.03207703, 0.010478981, -0.030702723, 0.020245394, -0.010075315, -0.053554013, 0.00051456067, 0.019027015, 0.02868108, -0.039818276, -0.029527036, -0.029472137, 0.004715367, 0.0007206128, 0.036779344, -0.025828853, 0.002702111, 0.020703694, -0.014993626, -0.053723767, 0.013626262, -0.00056727644, 0.009979241, 0.035188053, -0.02702851, 0.051599324, -0.047244564, 0.031337533, -0.044905562, -0.016972702, -0.056809947, -0.007807674, 0.050412454, 0.006674863, 0.0156571, 0.018628411, -0.07087572, 0.040869594, -0.064986974, 0.0065257894, 0.06618354, 0.0060558715, 0.0012373092, 0.06966656, -0.0049269763, 0.04277313, 0.023126567, -0.0032336095, -0.015540427, -0.05863636, -0.003785898, 0.06609024, 0.0064788903, 0.0060111536, -0.04697631, -0.0053235795, -0.059881374, 0.049100574, 0.05626233, 0.008720352, -0.005980012, 0.016684381, 0.005071258, -0.0008119561, 0.015336829, 0.028293157, -0.033577643, -0.01742749, -0.027654422, -0.03220935, -0.04203409, 0.0111212395, 0.062660374, -0.0022916798, -0.037062738, -0.012998195, 0.016756458, -0.05234974, -0.070207395, -0.0070808753, 0.01891706, -0.011786766, 0.029180732, 0.020714618, 0.010472901, -0.033246677, 0.017702796, 0.032869656, 0.018608214, 0.025613079, 0.009911466, -0.004147835, -0.057475325, -0.008602157, 0.03684248, -0.0632024 ] }, { "values": [ -0.019115567, -0.033182554, -0.047091447, -0.032517537, 0.06486893, 0.052208725, 0.04257548, 0.0061527784, 0.003670621, 0.03425228, 0.004670722, 0.025174245, -0.007015339, -0.0004668863, -0.02799695, -0.03209897, -0.010801325, -0.015022055, -0.04380059, -0.056755103, 0.061608806, -0.011408078, -0.027960408, -0.02517939, -0.018599715, -0.008830933, 0.025775792, 0.00051772204, 0.050314605, -0.059217248, 0.022923578, 0.03411234, -0.020414865, -0.039339066, 0.09143838, 0.024556065, -0.028397378, 0.018742088, 0.039912477, -0.025550963, -0.10162841, -0.0009739465, -0.035425168, 0.026681883, -0.03335817, 0.04144625, 0.0830646, -0.0035412584, 0.012594232, 0.06755728, 0.0043067504, -0.024631288, -0.019081745, -0.012187901, -0.029716764, -0.042333808, -0.04405047, -0.10138865, 0.054997396, 0.015823195, -0.038886335, -0.019359365, -0.0015986576, -0.030722711, 0.042510033, -0.03950247, -0.023532452, -0.031149045, -0.047752604, 0.018810496, 0.0016367616, 0.0087063145, -0.052557237, 0.0109874625, 0.0035017505, -0.0041685877, 0.0005613356, 0.031766545, -0.05259484, 0.011761283, -0.014485572, 0.0015942279, 0.062915646, 0.04424277, 0.0020316595, 0.012828825, -0.005463739, -0.0045080474, -0.0051798862, 0.03869584, 0.10595511, 0.015455181, 0.01989336, 0.021099947, 0.03145944, -0.043034613, -0.055417124, -0.033765204, 0.035716582, 0.061719716, -0.028955853, 0.009856201, -0.054030363, -0.03045306, 0.05843881, 0.0040695816, 0.042124808, -0.05954723, -0.022734033, 0.007395624, -0.057598304, -0.05214834, -0.07527024, -0.050756663, 0.034762923, -0.016115125, -0.04215016, 0.03467663, -0.049861297, 0.03448276, 0.05437549, -0.009165091, -0.024254087, 0.04621885, 0.015101932, 0.03134499, 0.02998131, -0.042881418, -0.013612286, -0.06618858, 0.0643715, -0.083944365, 0.03767555, 0.0067563066, -0.047384825, -0.00871285, 0.04577938, 0.008680552, -0.011186446, -0.015744956, -0.0051723267, -0.0106695425, 0.01062834, 0.012531401, 0.012965722, -0.032754667, 0.016011197, -0.015200507, -0.06868204, 0.03066172, -0.10512296, 0.0021827319, 0.039256193, 0.0018862167, -0.016948218, 0.03373613, 0.07681944, -0.043830976, 0.06327598, -0.034067202, -0.0074995183, -0.021144507, 0.013821174, 0.023176303, -0.03514312, 0.021410415, 0.047041114, -0.038007483, -0.0045438977, -0.034641307, 0.048533086, -0.021699686, -0.032704063, -0.10582468, 0.009007499, 0.014924363, -0.016329091, 0.03785033, -0.04299269, -0.030124292, 0.011147748, 0.05749625, -0.038472388, -0.012645176, -0.00035395275, 0.030204676, 0.014472673, 0.087106735, 0.014162361, 0.027270362, 0.01145053, 0.028733773, 0.033365592, 0.017378435, -0.021430949, 0.034961835, 0.05849099, 0.0041935565, 0.0076073785, -0.04216361, 0.04529422, -0.00931619, -0.0037502893, 0.036584213, 0.0016158172, -0.007285219, -0.028049953, -0.05522178, 0.042178936, 0.02549354, -0.045643345, -0.021757571, -0.04203455, -0.02567809, 0.022494677, 0.013343522, 0.081291966, 0.029686345, 0.047759082, -0.03472335, -0.076473705, 0.035429925, -0.013309055, -0.045881055, -0.020665834, 0.009388041, -0.04134925, 0.02439448, -0.05373489, 0.029447077, -0.036920737, -0.0057321996, -0.0101666935, -0.0036232448, 0.027195154, 0.06066438, -0.022861095, -0.016610254, 0.020604692, -0.00033983943, -0.038878538, 0.02360533, 0.009800843, 0.0017409215, -0.003934996, 0.04041083, 0.03412677, 0.112682454, -0.024385255, -0.024253173, -0.05772069, -0.01430613, -0.030791784, -0.012120581, -0.017767552, -0.012814513, 0.02211064, -0.06083844, -0.003596734, -0.0176076, 0.03999522, -0.0008067903, -0.010927718, -0.036751658, -0.016596239, -0.0848653, 0.0034961763, 0.01425176, 0.039461307, -0.012549634, -0.002399825, -0.018461168, -0.04091403, -0.06857478, -0.0019672539, 0.038500186, -0.059101358, 0.012719552, -0.028024526, -0.105792165, 0.035035327, -0.0047485107, -0.003505764, 0.022526434, 0.0055616954, -0.005189758, -0.017047467, -0.01040545, -0.025589123, -0.036227223, 0.04582536, 0.06244018, 0.017890943, 0.03116548, 0.05160556, -0.015187268, 0.008204201, 0.026485369, 0.003937103, 0.008112083, 0.048162535, 0.057281878, -0.032947045, 0.045810595, 0.008898602, 0.029897803, -0.04539268, -0.024532435, -0.028714802, 0.024519507, 0.008047735, 0.036593065, -0.016428823, 0.028212178, 0.0018618392, 0.012263734, -0.088869065, 0.015296202, -0.032541692, -0.044977866, 0.03693241, 0.030353807, -0.010107353, -0.048553202, 0.044638693, 0.0027204384, -0.008720499, -0.027238993, 0.031971585, -0.029389115, 0.034945972, 0.002390983, -0.009978567, -0.022345755, 0.014330114, -0.01352796, -0.010923336, 0.016096279, 0.07213246, 0.02658841, 0.08278814, 0.024114182, 0.04977744, 0.0188391, -0.029191881, -0.047798578, 0.039521333, 0.018476477, 0.052928127, -0.04050951, -0.026062747, 0.05213338, 0.013913928, 0.02088731, 0.012185805, 0.01204732, 0.01979697, 0.026459403, 0.012048712, -0.032045614, -0.043734293, 0.027308282, -0.00038106515, -0.053267077, -0.015245972, 0.019195305, 0.024147894, 0.028890291, -0.012977906, -0.030624466, 0.010029699, 0.029651582, 0.002034924, 0.0021363976, 0.027711684, -0.053968232, 0.01315455, 0.024689067, 0.03600356, -0.04098121, -0.034150153, -0.009789397, -0.016246095, 0.0007933034, -0.051078204, 0.042242087, -0.044732094, -0.02911174, 0.009548491, 0.00815447, -0.055858888, 0.056085996, -0.022651957, 0.04804009, -0.033917427, 0.04065095, -0.0033389288, -0.03294402, 0.034451686, 0.015745983, -0.034658674, 0.046347953, 0.041828204, 0.006496833, 0.0037605865, 0.008870822, 0.06207399, -0.011065184, -0.027225995, -0.04801633, 0.034900505, -0.018496873, 0.012636605, -0.00721299, -0.0016300275, 0.0050132307, -0.0059075933, -0.035577822, -0.004532193, 0.0012408023, -0.014533911, 0.05068678, 0.009152765, 0.059232205, -0.0028100526, -0.070344366, 0.042711403, 0.030717768, 0.047306474, 0.02123846, 0.0036000698, 0.033329073, -0.0584539, -0.020687776, 0.03714931, -0.04790104, 0.0150979245, -0.0022189086, -0.04633871, -0.0023902818, -0.0057952763, -0.00683995, 0.07361404, 0.036432415, -0.044058483, 0.05752151, 0.045358077, -0.007445957, -0.011706319, -0.08485818, -0.033077672, 0.039590452, -0.0029664075, -0.046440035, 0.020135384, 0.0044656554, 0.0208906, 0.0203554, -0.053562213, 0.020731475, -0.09120492, -0.015264509, 0.093603596, 0.08106125, 0.00015806078, -0.026898272, -0.011088893, -0.006441528, 0.0464428, 0.022960976, 0.017133389, 0.022217985, -0.028199451, 0.006197374, 0.031025209, 0.016841028, 0.054693606, -0.0008576324, 0.059214484, 0.024204623, -0.020085268, 0.030589838, -0.016997822, 0.056743506, 0.02805326, -0.039659403, -0.022521028, 0.013851932, -0.0042373035, 0.050569642, 0.003879351, 0.028510928, 0.029172797, 0.016910706, -0.06688658, -0.053090006, 0.023527015, -0.033909436, -0.037557498, -0.040342145, 0.07051802, 0.0003362525, -0.00075480517, 0.013688167, -0.00342073, 0.027274886, -0.036864925, 0.00214048, 0.01639639, -0.05288775, -0.012291608, 0.012828271, 0.06420957, 0.028035333, -0.015408897, 0.062761545, -0.07439091, 0.028590359, -0.025407182, 0.08335331, -0.011139179, -0.03328452, 0.059512205, -0.07745549, -0.08365939, -0.011445986, -0.050902445, 0.02992881, 0.05489897, -0.025348803, -0.009919256, 0.08025538, -0.02107718, -0.0045163846, -0.0020200543, 0.002540443, -0.00039200298, -0.030382445, 0.009734411, 0.02707324, 0.00048988516, 0.023766909, 0.049271602, 0.025628991, 0.065015934, -0.0033183575, 0.028329812, 0.0010878687, -0.015522773, 0.10202814, 0.0029646128, -0.02587243, 0.055016413, -0.020355774, -0.0020842315, -0.03731918, 0.0051749013, -0.0071098087, -0.02638905, 0.0030159238, 0.05255085, -0.0076562692, 0.016309887, 0.04293952, 0.004669752, -0.019965306, -0.009932607, 0.020453006, -0.035386767, -0.06797566, 0.0033030133, -0.0035806566, -0.025504062, -0.045804475, -0.024880499, -0.01108089, -0.028061925, 0.016650926, 0.06637356, -0.0023290457, 0.053439513, 0.007062093, 0.05468332, -0.017625002, 0.008978176, 0.033199336, 0.026995584, -0.062478002, 0.02538447, 0.00890504, -0.02365401, -0.007783164, 0.0052912547, -0.03311971, 0.07556295, -0.0037688762, 0.0042270697, -0.07717965, 0.05653295, -0.0143509405, -0.008010216, -0.033266496, 0.0022990631, 0.056827404, 0.0025870248, 0.022536268, -0.0004926528, -0.040237892, 0.024012197, -0.027360557, -0.06619344, 0.016246477, 0.0085666245, -0.022794852, -0.051539257, 0.0327693, -0.04265946, -0.034465645, 0.0029959287, -0.0028269792, -0.009426616, 0.0017980608, -0.0045903325, 0.04383417, -0.038650565, -0.0050575207, 0.0013772644, 0.05312288, -0.019920422, 0.026237283, -0.022206735, -0.028156703, 0.051365923, -0.03712365, 0.00025447807, 0.015773544, -0.0038675782, -0.016373402, 0.034564298, -0.062121067, 0.028454589, 0.007488359, 0.008266882, 0.046974458, -0.064358205, 0.07698497, -0.006668971, 0.04941632, -0.021081924, 0.008078224, -0.01976328, 0.03033308, -0.002987456, -0.039689124, -0.043701798, -0.0001994335, -0.016664287, -0.0035931657, 0.0009096866, 0.009333711, -0.040566914, -0.071624085, 0.03897553, 0.033736154, 0.005246598, 0.007620444, 0.001489777, 0.017536031, -0.032010455, -0.05864945, 0.014589002, 0.0051095854, 0.0154749, 0.007040698, -0.03392777, 0.01793038, -0.0127709415, -0.031493552, -0.014464752, 0.021533461, 0.026519876, -0.032801334, -0.033264935, -0.013000877, 0.018448614, 0.012922794, 0.043838073, -0.018129827, 0.004322557, 0.03652439, 0.00785279, -0.04184549, 0.014753544, 0.009328417, 0.0076057715, 0.040519267, -0.023200998, 0.06557434, -0.0404607, 0.0168303, -0.034469835, -0.010579299, -0.047343716, 0.0032707292, 0.044054415, -0.010591328, 0.016706262, 0.0009905695, -0.07684694, 0.029968452, -0.06346743, -0.006148423, 0.0574823, 0.013029661, -0.0101142945, 0.06423238, -0.004814124, 0.055103634, 0.036830347, -0.002522825, 0.00085473375, -0.050297357, -0.014895455, 0.052187916, 0.011058034, 0.012727471, -0.048473086, 0.015434777, -0.064814106, 0.0634868, 0.038891472, 0.027215771, 0.009019617, 0.024603905, 0.0048842696, 0.008599822, -0.01072337, 0.024249159, -0.035855394, -0.022127703, -0.024447633, -0.02190239, -0.03859202, 0.0191612, 0.07016096, -0.008666215, -0.034111366, -0.03646006, 0.0207581, -0.026112404, -0.06880698, 0.011942239, 0.023158532, -0.017872049, 0.0454525, -0.0005689999, 0.0007555174, -0.023802992, 0.008345508, 0.024942366, 0.03167527, 0.0072113643, 0.0075403545, 0.006807384, -0.06398203, -0.024454754, 0.023055654, -0.058858298 ] }, { "values": [ -0.020692071, -0.022768583, -0.028158106, -0.03390049, 0.051730838, 0.05141618, 0.045161318, 0.0041725547, 0.0012069839, 0.010692675, 0.014113673, 0.006467674, -0.012425101, -0.0029080152, -0.021491876, -0.025702382, -0.013961701, -0.011577724, -0.07028146, -0.056647643, 0.064626716, 0.0158851, -0.044498246, -0.042276535, -0.014361736, -0.02673465, -0.0006416337, 0.0045739617, 0.04511565, -0.031628847, 0.016793152, 0.025713278, -0.01568244, -0.051999483, 0.049993448, 0.054655816, -0.027248956, 0.026740752, 0.048222918, -0.04935249, -0.08000281, -0.02844666, -0.03213958, 0.032580756, -0.03033909, 0.038655724, 0.09765058, 0.010374073, 0.002539914, 0.048376244, 0.021357963, -0.026098264, -0.033306364, -0.017900933, -0.03725034, -0.057278425, -0.046623416, -0.07585795, 0.049261488, 0.037416406, -0.036100667, -0.022163596, -0.029658793, -0.03814862, 0.019836646, -0.031150978, -0.02588911, -0.03603258, -0.05012677, 0.027160518, -0.018670892, -0.0042341324, -0.054792214, 0.010456294, 0.0036259252, -0.008967024, 0.00899034, 0.028703555, -0.023088416, 0.0064472337, -0.0058115725, 0.025339, 0.054605726, 0.06867888, -0.0012764073, 0.009788862, 0.009467301, 0.0014882301, -0.02253346, 0.038014937, 0.09214948, 0.015452585, 0.012665429, 0.023550883, 0.025928346, -0.05106808, -0.051970612, -0.036519643, 0.039977144, 0.030356849, -0.052410427, 0.020326464, -0.034789912, -0.02158126, 0.053172465, 0.022094173, 0.024800379, -0.054249275, -0.017515747, 0.01799407, -0.06517776, -0.05567161, -0.057893705, -0.041312944, 0.0050669126, -0.0096862335, -0.046019, 0.031120108, -0.033222012, 0.019014377, 0.03372451, -0.01457096, -0.028475022, 0.061610863, 0.003755361, 0.02696858, 0.0017640885, -0.029407933, -0.02517137, -0.027316863, 0.065039024, -0.10388506, 0.038792145, 0.005376345, -0.059218623, 0.001861498, 0.0761312, 0.009948483, -0.01942287, -0.004775538, 4.5422643e-05, -0.022122504, -0.0041049947, 0.01701628, 0.030975815, -0.005179034, -0.0020281828, -0.032925602, -0.09193222, 0.041188143, -0.09458095, -0.008481132, 0.053330675, -0.0018746407, -0.015841734, 0.045486286, 0.061625887, -0.0453351, 0.05867357, -0.03905647, 0.011064264, -0.052746806, 0.00383173, 0.043095253, -0.026349586, 0.037498977, 0.06100056, -0.0176746, -0.033659447, -0.038471825, 0.034951173, -0.02047187, -0.0531542, -0.08683455, -0.0017446368, 0.019365909, -0.046429865, 0.0235986, -0.031951748, -0.015047613, 0.0032496701, 0.081573516, -0.039226223, 0.0052682897, 0.0056934725, 0.030659186, 0.023333104, 0.07087786, 0.019425904, 0.030544028, 0.004845042, 0.062116317, 0.016893562, 0.022107812, -0.0426761, 0.04095891, 0.07424125, -0.013646795, 0.0015574335, -0.021791702, 0.035339233, -0.003967279, -0.0059923627, 0.045538284, 0.0022810746, -0.0037187962, -0.015341089, -0.055389985, 0.064960115, 0.0071133557, -0.045098707, -0.03148989, -0.055457283, -0.007218649, 0.016183574, 0.016916955, 0.09852827, 0.015345627, 0.060256727, -0.04073013, -0.08673176, 0.024108903, -0.028228834, -0.02506534, 0.00054309634, 0.02872721, -0.03023617, 0.023869012, -0.07328591, 0.0051237335, -0.025203668, -0.0056546526, -0.02653214, 0.01652629, 0.023759808, 0.07658879, 0.0046811644, -0.013726203, -0.01055362, 0.010137012, -0.015047768, 0.023529582, 0.016700631, -0.012132142, -0.010075285, 0.037829183, 0.020049818, 0.103176124, -0.013263115, -0.026227409, -0.050390176, -0.036303338, -0.024670972, -0.0037167785, 0.0054337955, -0.007891753, 0.032568328, -0.05089992, -0.0153793, -0.025171462, 0.031392958, -0.008858516, -0.020910038, -0.044104416, 0.004521909, -0.06740854, 0.0012607228, 0.01994394, 0.026948575, -0.022778785, -0.026662339, -0.0116745485, -0.051174905, -0.04732024, -0.013951557, 0.026972575, -0.042755444, 0.014860745, -0.036871605, -0.08093029, 0.024742678, -0.023127697, 0.008200519, 0.012799729, -0.000406149, 0.020208865, -0.01964324, -0.0024073422, -0.014557477, -0.019848047, 0.034778178, 0.06418144, 0.0050065517, 0.027375005, 0.07363211, -0.03131456, 0.0039487383, 0.029787092, -0.015085348, 0.019487567, 0.04959931, 0.06358206, -0.03513474, 0.04247291, 0.009894005, 0.014438372, -0.06128607, 0.0012519037, -0.025749808, 0.011711692, 0.004344792, 0.020197816, -0.029813243, 0.0030790395, 0.003469483, 0.0031117664, -0.11483726, 0.013919904, -0.011151899, -0.0661611, 0.00845392, 0.0055279685, -0.00066580094, -0.033953387, 0.039807525, 0.0054335524, 0.0037793845, -0.0043102335, 0.010241385, -0.022279903, 0.033714604, -0.003693653, -0.018052585, -0.008190432, 0.024754528, 0.015296305, -0.011832334, 0.016153619, 0.052206982, 0.010505727, 0.0815726, 0.011678139, 0.03946509, 0.02403424, -0.0043710023, -0.067855485, 0.051690683, -0.008562908, 0.043315094, -0.06373396, -0.01151603, 0.049056213, -0.0013734854, 0.002637997, -0.0139030395, -0.0010592422, 0.0002536791, 0.013448644, -0.013815321, -0.017666627, -0.026924834, 0.032468967, 0.0021585757, -0.057739936, 0.007775157, 0.018253418, 0.012922195, 0.027957167, -0.014042095, -0.020636994, 0.026436225, 0.041353274, 0.009266161, 0.014887954, 0.037730705, -0.022877935, 0.01500778, 0.023329383, 0.060305994, -0.049061157, -0.042230517, -0.014688909, -0.033583064, 0.007556556, -0.05323602, 0.044044208, -0.025848797, -0.013076329, -0.00090464053, 0.010591672, -0.051717624, 0.05063748, -0.017413199, 0.044723697, -0.054813687, 0.05880721, -0.008303739, -0.021268642, 0.024782084, 0.026609253, -0.02000049, 0.023829274, 0.051240314, 0.016082771, 0.007109251, 0.025124855, 0.056929234, 0.010038846, -0.015600867, -0.0656998, 0.043564517, -0.017938506, 0.00543701, -0.0009856076, -0.0073921178, 0.0042968104, -0.024335677, -0.042862672, -0.0003685056, 0.0008910666, -0.022402868, 0.053460956, -0.01175517, 0.053193126, 0.011616664, -0.0448535, 0.030817179, 0.020930564, 0.04668724, 0.027653845, -0.0011701799, 0.019103127, -0.06846859, -0.018348943, 0.039045945, -0.046286333, -0.0075105713, -0.010282978, -0.050335318, 0.024176838, -0.0036654829, -0.005226976, 0.060081907, 0.030980593, -0.025304014, 0.04605685, 0.044493087, -0.018601075, -0.021882817, -0.09750662, -0.044045158, 0.02678652, 0.00021518856, -0.026971221, 0.00077314297, 0.018556321, 0.03134843, 0.0076676626, -0.053268228, 0.018325534, -0.09011549, -0.009989592, 0.07227431, 0.069938704, -0.023628276, -0.04557169, -0.0060851355, -0.03575726, 0.04287684, 0.034355517, 0.02505255, 0.008167439, -0.022156779, -0.023329182, 0.029409003, 0.010396159, 0.03675879, 0.008401654, 0.053187367, 0.016925946, -0.029476067, 0.01775623, -0.008816013, 0.049761415, 0.030919254, -0.040662125, -0.0019377805, 0.035334792, 0.006966517, 0.052002765, 0.01142723, 0.021339804, 0.04432266, 0.007834004, -0.06651868, -0.056698654, 0.022637023, -0.039555334, -0.007310384, 0.00030606, 0.07221058, 0.008097451, -0.0006713855, -0.0036375604, -0.017295653, 0.057516407, -0.027638938, 0.010680438, 0.0117304325, -0.049249597, 0.0057252743, 0.011100814, 0.044736173, 0.024081744, -0.0135925, 0.039978422, -0.08011993, 0.022662167, 0.0002488099, 0.06926005, 0.022898357, -0.041069992, 0.04820376, -0.062130418, -0.07427067, -0.018751385, -0.068103515, 0.029452698, 0.06464478, -0.029886024, -0.026607614, 0.056342635, -0.028100763, 0.0052498775, -0.014286601, 0.0037323425, 0.0010590615, -0.025923654, 0.006212326, 0.02926627, -0.014638975, 0.037160154, 0.04452182, 0.010619711, 0.07596719, 0.012836698, 0.031631213, -0.0055968566, -0.031815242, 0.10442958, -0.0008047886, -0.0028485807, 0.059986953, -0.028421234, -0.0030235758, -0.03339993, -0.006118943, -0.004396724, -0.032810487, 0.0005588184, 0.04150843, -0.0068571586, 0.012111402, 0.038871765, 0.017849868, -0.022261394, -0.011844167, 0.009622589, -0.03031054, -0.062343944, 0.0055516693, -0.007208777, -0.032537162, -0.02318981, -0.028010873, -0.00021683556, -0.03572842, 0.01609233, 0.06613319, -0.009074938, 0.051664535, 0.008830989, 0.08274651, -0.018499168, 0.019985197, 0.026106125, 0.0072158338, -0.06242746, 0.036247753, 0.017728023, -0.018883042, -0.0027191674, 0.026466373, -0.036295213, 0.08836926, -0.025694262, 0.011788614, -0.08635566, 0.073121846, -0.012278204, -0.006981753, -0.017284816, 0.0015448151, 0.07991062, -0.012374488, 0.016329234, -0.014546339, -0.03262723, 0.034587044, -0.03666158, -0.06736851, 0.029396769, 0.01642686, -0.028073857, -0.033670798, 0.025684746, -0.038355984, -0.024763584, -0.004478791, -0.013837334, -0.029151628, -0.0070435307, -0.016165817, 0.040496375, -0.05216309, 0.0071787774, 0.022288812, 0.028461844, -0.020955704, 0.027730953, -0.014238701, -0.02473813, 0.058990367, -0.033208344, -0.014340946, 0.029634953, 0.0045738593, -0.036825214, 0.014357001, -0.063504785, 0.010715246, -0.0055616987, 0.024327803, 0.04311857, -0.065748535, 0.0870732, 0.002192231, 0.047009055, -0.003883188, 0.0167577, -0.006963957, 0.04821218, 0.015476324, -0.036854275, -0.060153063, 0.0057176845, -0.008065811, 0.011640866, -0.012598549, -0.014843156, -0.04667428, -0.07884553, 0.03761201, 0.033621162, -0.011427873, 0.031861763, 0.019174654, 0.005515333, -0.02680877, -0.03182668, 0.008206968, -0.009823382, -0.008731317, 0.008717812, -0.022110922, 0.021342197, -0.02048517, -0.032867495, -0.0012510347, 0.015393454, 0.01909746, -0.049003698, -0.027731316, -0.008504951, 0.026171234, 0.016914422, 0.042881772, 0.0017971413, 0.015765559, 0.042350687, -0.0119334115, -0.05475979, 0.016281938, 0.027806824, 0.039039623, 0.04733718, -0.00777665, 0.044686463, -0.04451809, 0.0026813757, -0.036973514, -0.013286068, -0.06424661, -0.018421689, 0.04245661, -0.017296743, 0.021990295, 0.005920371, -0.07009929, 0.060944572, -0.048088633, -0.0038596475, 0.06696371, -0.003169101, -0.00013573724, 0.066793606, -0.0017386851, 0.06026836, 0.027678547, -0.014068182, -0.0032449171, -0.06748415, -0.009806905, 0.048818145, 0.0295713, -0.0011813543, -0.034713637, 0.022057138, -0.059559062, 0.049452838, 0.02845033, 0.026499406, -0.011546291, 0.022976067, 0.008097045, 0.028125715, 0.010443689, 0.015709763, -0.04855986, -0.012924506, -0.018040378, -0.008914791, -0.047970545, 0.0043893075, 0.06415956, -0.008345923, -0.03608994, -0.021505317, 0.014795175, -0.052194495, -0.065419, 0.023773922, 0.041652005, 0.008615587, 0.04460252, 0.019461289, 0.022294069, -0.025501275, 0.022628075, 0.025388476, 0.027864307, 0.01341914, 0.026756514, 0.016505366, -0.057307865, -0.012034191, 0.038294576, -0.040943775 ] }, { "values": [ -0.001882379, -0.044527065, -0.031882748, -0.05101196, 0.043692894, 0.013911055, 0.04348015, -0.0016899555, 0.0013478675, 0.038969032, 0.026132032, 0.032316837, -0.0040852902, -0.0048658014, -0.061220363, -0.011851345, 0.005500481, -0.030634914, -0.042650376, -0.028772354, 0.04684286, 0.010379505, -0.021353574, -0.03976838, -0.00032864575, 0.008937164, 0.021398896, -0.017578973, 0.036855597, -0.0065076174, 0.031183038, -0.0038099983, -0.026123902, -0.04970743, 0.071093865, 0.017996626, -0.010671719, 0.038679045, 0.037135072, -0.061490253, -0.051375736, -0.0051707113, -0.019980472, 0.024018599, -0.041170817, 0.028369177, 0.07207135, -0.031261664, -0.010617713, 0.033949886, 0.008040074, 0.00020738039, -0.017220411, -0.00806661, -0.03084024, -0.028651223, -0.04384693, -0.05973247, 0.057962615, 0.024576457, -0.002105536, -0.0071283127, -0.020470567, -0.019396456, -0.009836043, -0.02278695, -0.02968033, -0.048922557, -0.052029658, 0.017726783, -0.026892724, 0.0041332105, -0.05235928, -0.0014020917, 0.0018413415, -0.017436864, 0.015669996, 0.045835383, -0.0025246309, 0.0038834596, 0.0006434261, 0.021945093, 0.087324165, 0.061279055, 0.012537061, 0.04156225, 0.019908173, 0.003476881, -0.05665906, 0.00339665, 0.095142476, -0.029382907, 0.0017520654, 0.02263764, 0.009889463, -0.079984136, -0.033587523, -0.058985896, 0.010175374, 0.059779447, -0.042303365, 0.006169356, -0.06176022, -0.060722876, 0.05595696, 0.037098683, 0.055863705, -0.06561493, 0.0058197924, 0.019313373, -0.063607074, -0.06224504, -0.05884122, -0.03655465, 0.009503482, 0.002489893, -0.021077016, 0.030099763, -0.048679892, 0.022185776, 0.032634303, -0.019034883, -0.028130976, 0.07087213, -0.0021782564, 0.0044596777, -0.0013566304, -0.059336144, -0.049819436, -0.040038627, 0.04071397, -0.11675955, -0.003188906, 0.014295398, -0.04146781, -0.000531285, 0.037635874, 0.0034150183, -0.06920451, -0.009544244, -0.0024072463, -0.04483883, -0.027421268, 0.01788665, 0.03031058, 0.00980938, 0.035204284, -0.010381434, -0.06801344, 0.03548708, -0.09007149, -0.01024025, 0.032701965, -0.008497247, -0.019198736, 0.042072352, 0.07130369, -0.0400043, 0.047837526, -0.025031371, 0.004390007, -0.06436059, 0.016781103, 0.02947827, -0.04667432, 0.03202341, 0.07961707, -0.013453354, -0.033987574, -0.06746505, 0.0029747994, -0.020106426, -0.040958546, -0.0931598, -0.009959672, 0.0141126, -0.041790493, 0.022091104, -0.033274904, -0.0128299305, -0.0018987948, 0.05619419, -0.051200874, 0.014179324, -0.009286843, -0.0032259608, 0.01616564, 0.05032812, 0.029203778, 0.05546946, -0.018200766, 0.029376118, 0.008089691, -0.0051055993, -0.030351428, 0.050178867, 0.07901442, -0.02556755, -0.046707287, -0.016986314, 0.009828341, 0.019356335, -0.022673842, 0.021602636, -0.002678438, -0.026338503, -0.03886442, -0.04676649, 0.06815321, 0.0036445588, -0.04471672, -0.004747526, -0.06823449, 0.00030425875, -0.021637695, 0.015081206, 0.09019755, -0.0065491046, 0.040152594, -0.04030384, -0.08448453, 0.013177932, -0.02210923, -0.022020461, 0.03447954, 0.049519636, -0.042651914, 0.027207084, -0.075421296, 0.0015364817, -0.039959937, 0.012516023, -0.0038944315, -0.0041266056, 0.042893976, 0.08114291, 0.034373444, -0.015883142, -0.03817801, -0.0033574966, -0.04042456, 0.04801565, 0.011535871, -0.015412945, -0.019659093, 0.014846867, 0.036487598, 0.08966275, -0.024886936, 0.018545492, -0.05024344, -0.04199877, -0.037654165, -0.0059675784, -0.01623545, -0.013275195, 0.010970086, -0.06195305, -0.005823767, 0.004192696, 0.018053906, 0.0034773035, -0.022951178, -0.06290662, 0.0014903967, -0.07670286, -0.013806346, 0.023950787, 0.04612262, -0.019542366, -0.027329454, 0.0068747066, -0.068008535, -0.025131855, 0.010797474, 0.029926807, -0.03449786, 0.025021736, -0.032386977, -0.062838696, 0.047303222, -0.0196254, 0.007979388, -0.0049975803, -0.0021436037, 0.009405355, -0.0015647033, 0.002791103, 0.0022101623, -0.022381585, 0.03831201, 0.05037001, 0.023106443, 0.034867667, 0.070038356, -0.03523803, 0.0121817235, 0.02786837, 0.0009163148, 0.008725972, 0.017054223, 0.051713027, -0.028511541, 0.058917657, -0.017522076, 0.0070680487, -0.062395923, -0.0053375554, -0.031996176, 0.011706828, -0.020113343, 0.0142207695, -0.03488011, -0.011751558, 0.0034689007, 0.015994092, -0.09951631, 0.023604538, -0.005305295, -0.051284876, -0.013949974, 0.00952563, -0.0041928235, -0.01417262, 0.03287825, 0.0042363396, -5.0474726e-05, 0.0015832885, -0.005082353, -0.028381485, 0.024902318, -0.0067357467, -0.016540736, 0.0018630999, 0.01995382, 0.011022905, -0.016148062, 0.009093646, 0.036929633, -0.005099937, 0.0589182, 0.03262845, 0.021968523, 0.0027671023, 0.013474409, -0.07521894, 0.061572623, -0.024910064, 0.021508088, -0.049802307, 0.010444387, 0.053613495, -0.0047275093, 0.014310603, 0.009464565, 0.032004144, 0.01933657, 0.03551071, 0.004488036, 0.0033308729, -0.023920318, 0.025836015, -0.002459012, -0.052096426, 0.0019473999, 0.0017773076, 0.025251623, 0.028704265, -0.03184771, -0.03194186, 0.04676422, 0.026676793, 0.018082982, 0.024518462, 0.034378696, -0.03273184, 0.01995778, 0.025964389, 0.041493434, -0.035061117, -0.028726738, -0.019923085, -0.050786782, 0.00626936, -0.04696939, 0.029664166, -0.02793117, -0.022306245, 0.0039848336, 0.008714866, -0.028013127, 0.05368911, -0.018426789, 0.044667233, -0.0018692999, 0.051596142, -0.0057047918, -0.040075857, -0.009904297, 0.023468394, -0.02093908, 0.0017087489, 0.07096196, 0.021565434, 0.008600595, -0.0036482003, 0.066173606, 0.0288278, -0.028055226, -0.050749876, 0.03897473, -0.019124657, -0.0027620608, 0.028800698, 0.012062844, 0.026109576, -0.017802967, -0.035542592, -0.0045903693, 0.019758578, -0.002200802, 0.05678139, -0.040959917, 0.06998528, 0.028232662, -0.047413055, 0.018042503, 0.027407847, 0.03375401, 0.035009038, -0.0113386875, 0.01611228, -0.059395306, -0.0067002373, 0.012801774, -0.060842928, -0.013622306, -0.022448044, -0.05270495, 0.014084037, 0.014347509, -0.0013725485, 0.04562582, 0.026345996, -0.052916557, 0.045990773, 0.059414495, -0.031492136, -0.028955888, -0.08935426, -0.035636015, 0.0011982122, 0.01800613, -0.029518986, 0.0006828167, 0.0065821526, 0.036771465, 0.025089853, -0.03319005, 0.003559882, -0.060298774, -0.0062055257, 0.05386995, 0.060498834, -0.02754471, -0.016710192, -0.008477417, -0.03261624, 0.051588137, 0.022943262, 0.024737984, 0.005565424, -0.01661947, -0.021566955, 0.041285846, 0.019690158, 0.02964949, -0.008297112, 0.045996454, 0.042160716, -0.009869726, 0.016307145, -0.005191981, 0.04489777, 0.026470454, -0.07551567, -0.025775876, 0.0014505517, 0.009584257, 0.060056407, 0.015335222, 0.03430633, 0.05385214, 0.007889214, -0.07481402, -0.0492512, 0.038685054, -0.03025756, -0.011963565, -0.00047514666, 0.08654487, 0.028374288, -0.0072192373, 0.008644166, -0.04057179, 0.052349932, -0.046457708, 0.0030858705, 0.01787895, -0.03279906, -0.006511568, -0.015896155, 0.05277759, -0.015803961, -0.017604247, 0.057426788, -0.0988684, 0.028595557, -0.012094328, 0.06956187, 0.018696355, -0.006595821, 0.06933734, -0.04005221, -0.068707086, -0.008038315, -0.07545739, 0.0459826, 0.06656485, -0.031722523, -0.03354415, 0.048173342, 0.012301443, 0.020855548, 0.013724298, 0.0031355491, 0.011020888, 0.00074836315, 0.010365987, 0.026542835, 0.0040735407, 0.014381516, 0.048922677, 0.019682677, 0.07559084, 0.013709186, 0.032078944, -0.006069665, -0.04764402, 0.08045506, -0.002553315, -0.010736039, 0.05669122, -0.03438565, -0.016581431, -0.059732947, -0.011851479, 0.0028655557, -0.017322227, -0.015456237, 0.03924431, -0.015397781, -0.0070003187, 0.024517536, 0.037839524, -0.020088026, -0.01910645, 0.019579329, -0.04489954, -0.06287107, 0.0013939413, -0.007818574, -0.030254282, -0.03275451, -0.01263273, -0.008214899, -0.01978059, 0.022295918, 0.058529563, 0.0062809107, 0.035329998, -0.0094398605, 0.09109685, -0.010841459, -0.027307678, 0.032137208, -0.012627942, -0.04518184, 0.022317622, 0.021607045, -0.019642016, -0.0042096674, 0.00436907, -0.054256514, 0.0787606, -0.045831293, -0.0060075666, -0.086914465, 0.036924254, -0.0033290202, -0.02763518, -0.02261357, -0.018801754, 0.050778314, -0.014636432, 0.015550213, -0.03306879, -0.037718147, 0.021537166, -0.041912615, -0.058667846, 0.02938513, 0.010227263, -0.038447574, -0.05693282, 0.045780566, -0.040952675, -0.034554172, -0.018736353, -0.01093034, -0.011856502, 0.017510228, -0.018237831, 0.037839867, -0.0665432, 0.032096438, 0.006370421, 0.034306645, -0.011167652, 0.013754507, -0.022248413, 0.0034809357, 0.061884314, -0.03192666, -0.023421086, 0.036185697, 0.01870295, -0.061423235, 0.012168996, -0.047465723, 0.008565305, -0.015968153, 0.029688282, 0.033785455, -0.05296397, 0.07853404, -0.019459277, 0.006805762, -0.008175319, 0.026393829, 0.0038468095, 0.050060656, -0.00120295, -0.026665151, -0.05431448, -0.009202775, -0.027575312, 0.029341107, -0.016250467, -0.0040455153, -0.036203258, -0.10615925, 0.045796353, 0.04912593, -0.022378614, 0.03184991, 0.01814811, 0.014260194, -0.0135225095, -0.014105977, 0.021546638, -0.0013310597, 0.008378511, 0.022259645, -0.03391131, 0.009843161, -0.01986917, -0.01309968, -0.028505862, 0.019440351, 0.015710527, -0.051167384, -0.00026878677, -0.0027233048, 0.027222157, 0.0066825454, 0.038822375, -0.024922486, 0.0038767324, 0.022749396, -0.02135211, -0.061901145, -0.0047699222, 0.028883105, 0.016976546, 0.02359407, -0.030006042, 0.046577137, -0.05756716, 0.0002494512, -0.0609774, 0.014215323, -0.0936116, -0.010103477, 0.04181457, -0.014360026, 0.016035777, -0.0034439047, -0.07522595, 0.056590497, -0.05162356, -0.005444412, 0.075348295, 0.012070023, -0.0015355839, 0.06914479, 0.009220319, 0.072578855, 0.024608908, -0.03143987, 0.00031604647, -0.05324228, -0.012085559, 0.04492121, 0.018409362, 0.020315608, -0.03083535, 0.02127157, -0.048391636, 0.07737172, 0.0207936, 0.0064205886, -0.00522381, 0.009920194, 0.013374395, 0.022369733, -0.0358475, 0.00047601384, -0.032376137, -0.023421822, -0.008105827, 0.0032807002, -0.04720749, 0.006225586, 0.054371722, 0.00929972, -0.042080674, -0.019519567, 0.0084538525, -0.046169598, -0.04868661, 0.012977283, 0.052585926, -0.0101643605, 0.035441596, 0.0060226186, -0.0006899445, -0.021177886, 0.042936467, 0.0075932946, 0.0067593306, 0.016022012, 0.015846735, 0.012021368, -0.06168524, -0.008654926, 0.03260142, -0.04455474 ] }, { "values": [ -0.017850013, -0.039319612, -0.0058916938, -0.052133035, 0.027074903, 0.014924933, 0.04499602, -0.010528543, 0.0055620917, 0.046950318, 0.029475486, 0.019502692, 0.013810614, -0.035739686, -0.06436438, -0.018381199, 0.015702171, -0.007513444, -0.04265814, -0.03270411, 0.052258845, -0.002766604, -0.019182567, -0.03269487, -0.009264367, 0.01126245, 0.022443797, -0.02912524, 0.0054932646, -0.005420613, 0.025149576, 0.0075382893, -0.039123096, -0.08249648, 0.09039476, 0.028837359, -0.04448138, 0.03717212, 0.0417317, -0.053240072, -0.057795063, -0.011752084, -0.029257579, 0.024116462, -0.030138193, 0.010271781, 0.081310906, -0.00019647363, -0.013294082, 0.03641976, -0.0055505624, -0.008522179, -0.0077894093, -0.020617018, -0.010422193, -0.054546196, -0.05540967, -0.056251608, 0.078448124, 0.0036393988, -0.020805923, -0.0025080713, -0.054275934, -0.012137723, -0.027868435, -0.030017085, -0.02740772, -0.034571994, -0.054073535, 0.013977461, -0.019798465, 0.001619111, -0.04350115, 0.00017117722, -0.010200376, -0.01770515, 0.012757795, 0.015303329, 0.0119904205, 0.0036729542, 0.011795035, 0.018299967, 0.083465934, 0.051602386, 0.0041633467, 0.037840907, 0.018508235, -0.028247638, -0.038474828, 0.0144751305, 0.09600816, -0.024726124, 0.003573864, 0.019705925, 0.0020047468, -0.06858405, -0.025908545, -0.05842534, 0.019806942, 0.06096596, -0.054761194, 0.013880772, -0.06068337, -0.058061656, 0.044595722, 0.014049756, 0.020102536, -0.045776572, -0.018373655, 0.018748553, -0.07901604, -0.05283138, -0.06274565, -0.035427563, 0.00508774, 0.003063102, -0.0048834197, 0.029548954, -0.033342835, 0.022137621, 0.036298905, -0.024183817, -0.047104377, 0.07725993, 0.013392062, 0.01626525, -0.031182148, -0.03573407, -0.041683108, -0.03815331, 0.05864355, -0.11822876, -0.006173582, -0.005841005, -0.050211605, -0.0065403422, 0.08260456, 0.01503013, -0.06190487, 0.0029778432, 0.0102381, -0.029251233, -0.043269772, 0.04137512, 0.023334792, 0.030665271, 0.009814789, -0.033237383, -0.074021645, 0.049959987, -0.07244836, -0.013070203, 0.031103648, -0.00017400314, -0.019968104, 0.061326597, 0.06316335, -0.050133277, 0.02982153, -0.044241462, 0.038582243, -0.06741442, -0.0317171, 0.020909157, -0.071499914, 0.025068691, 0.06281884, -0.019043382, -0.044559635, -0.04081096, 0.0049045184, -0.010198468, -0.04929759, -0.08748476, -0.0033681646, 0.028462397, -0.024455687, 0.03540394, -0.03409264, -0.015928918, -0.00752819, 0.05775379, -0.03967761, 0.032415856, 0.0005607241, -0.020230528, -0.01169649, 0.022112604, 0.017671557, 0.044771314, -0.014593321, 0.017293628, 0.011404929, 0.017172405, -0.015677772, 0.06485066, 0.06431512, -0.01841346, -0.02400742, -0.027760712, 0.0147823915, 0.025058681, -0.02720529, 0.014525257, 0.014256757, -0.011720048, -0.032735787, -0.031571954, 0.05656381, 0.006127727, -0.039954685, -0.012275862, -0.04288601, -0.01663722, -0.034406886, 0.039822035, 0.08956714, -0.0069813016, 0.048243206, -0.044319034, -0.102622755, -0.003285941, -0.05097208, -0.030475907, 0.021165852, 0.04652657, -0.053493258, 0.005714792, -0.0761452, 0.009628827, -0.04891173, 0.02224814, 0.0035016413, 0.024923233, 0.024909193, 0.07628855, 0.042820774, -0.00080609554, -0.019476637, -0.003756672, -0.024246903, 0.03525987, -0.009483413, -0.026426518, -0.025281709, 0.019690337, 0.06807825, 0.08970911, -0.014762535, 0.023990223, -0.055012617, -0.056995712, -0.038476575, 0.0071721063, -0.011549413, -0.006495782, 0.023194462, -0.07499245, 0.0010396581, 0.011605461, 0.015394317, 0.016960762, -0.02486704, -0.062747814, 0.0046089655, -0.08609023, -0.012002863, 0.016838677, 0.065090775, -0.004461896, -0.03340405, -0.0012058681, -0.06458191, -0.00988614, 0.030506745, 0.012075283, -0.04160733, 0.037964318, -0.026904264, -0.062273476, 0.037943948, -0.016657395, 0.0011543136, -0.008071231, 0.006544578, 0.0028082936, 0.0036881752, 0.027786411, -0.014644763, -0.026278604, 0.034843106, 0.027627194, 0.015142161, 0.011286432, 0.0641352, -0.009610896, 0.023366116, -0.0062439293, 0.0036432988, 0.010569991, 0.030281218, 0.04670505, -0.038406856, 0.04291598, -0.025030576, -0.0033968203, -0.06436161, 0.010365021, -0.023558723, 0.02664535, -0.008953692, -0.011988257, -0.01750998, -0.017288601, -0.01128559, 0.024944464, -0.10986148, 0.020950451, -0.003572848, -0.052052185, 0.0013555369, 0.005784765, -0.012249749, -0.041035887, 0.03547318, 0.011945509, 0.0084361965, 0.005633573, -0.013378444, -0.03370032, 0.03249297, -0.010885089, -0.008568524, 0.019539388, 0.0018960655, -0.0039688367, -0.0032309706, 0.020607058, 0.041727453, -0.039149966, 0.051934198, 0.009735507, 0.0315266, 0.016691897, -0.0041965726, -0.09402027, 0.05703878, -0.0065088295, 0.022902645, -0.05514367, 0.01058251, 0.05074519, 0.004316254, 0.0052578696, 0.023151863, 0.0015306203, 0.032828707, 0.01327194, 0.031090919, -0.002797043, -0.019073727, 0.040735614, 0.008375713, -0.043003615, 0.03487838, -0.0059531806, 0.018825822, 0.0108934585, -0.0036571817, -0.046679374, 0.055856258, 0.018759511, 0.014048958, 0.028901748, 0.025872864, -0.01734216, 0.023953326, 0.03621466, 0.02980097, -0.031759843, -0.010778625, -0.028653426, -0.034779444, 0.017073464, -0.065335244, 0.020482684, -0.031337686, -0.009412068, 0.028002923, 0.0035862578, -0.018797608, 0.054578215, -0.02793625, 0.027491381, -0.015212586, 0.05954441, -0.0231792, -0.02396279, 0.006388039, 0.010427313, -0.025537234, -0.0040434557, 0.08448886, -0.0009578365, 0.0038310639, -0.0016678008, 0.067560665, 0.0074851913, -0.011429019, -0.048906393, 0.044889927, -0.003800385, -0.007044476, 0.029265177, 0.0012845066, 0.020774225, -0.021758111, -0.03469569, 0.026683431, 0.01759184, -0.022908729, 0.060357798, -0.01571714, 0.038361147, 0.012422482, -0.035602212, 0.0107806325, 0.0029270777, 0.02716968, 0.016456809, -0.019445455, 0.04614238, -0.067898, 0.005225006, 0.0067300247, -0.047032874, -0.009315865, -0.021755124, -0.06453934, 0.0066898554, -0.010052896, 0.011645409, 0.040247962, 0.021962734, -0.036857028, 0.044356007, 0.054025553, -0.018263357, -0.025901932, -0.06509241, -0.025049463, -0.004632473, -0.01260878, -0.02456546, -0.006197565, 0.017128961, 0.04436087, 0.03375037, -0.052383997, -0.00092387764, -0.04826761, -0.007186959, 0.07200955, 0.05183366, -0.0267388, 0.00347801, -0.021127455, -0.02874019, 0.033400606, 0.04628626, 0.010289482, 0.009355939, 0.006681809, -0.024024317, 0.0569978, 0.009288542, 0.018727116, 0.007966446, 0.027904145, 0.06128011, -0.039630383, 0.027264964, 0.00478107, 0.059266362, 0.029491128, -0.07792137, -0.016763398, 0.021032766, 0.018109418, 0.036093246, 0.014803483, 0.033861775, 0.008185845, 0.018711485, -0.055031765, -0.048482463, 0.029044451, -0.036233075, -0.008372435, -0.0013003912, 0.065707155, 0.014995119, -0.019251067, -0.024169242, -0.0029927602, 0.03590475, -0.02434288, 0.006110339, 0.023543198, -0.03610603, -0.029844977, -0.0038478058, 0.04477626, -0.010088812, -0.024653895, 0.048108507, -0.12100503, 0.013621219, -0.0044114883, 0.055356774, 0.0058429586, -0.01071352, 0.04389722, -0.037760034, -0.07230927, -0.00346899, -0.06939259, 0.05072888, 0.03805159, -0.00927031, -0.025354544, 0.04566758, 0.009995834, 0.04235697, 0.0093140835, -0.019315623, -0.00025764346, 0.024149481, 0.0041804174, 0.026328672, -0.0036214695, 0.035616495, 0.034450006, 0.018546654, 0.06417332, 0.01769825, 0.029500166, -0.0019028875, -0.08943611, 0.06781467, 0.020112453, 0.012086637, 0.06031129, -0.0327831, -0.001648119, -0.051786333, -0.009312077, -0.033520963, -0.0410843, 0.0012191174, 0.035371173, -0.012975068, -0.004340069, 0.0272802, 0.046448413, -0.024513397, -0.00680646, 0.023779629, -0.023028225, -0.06797775, 0.008700828, 0.0027624888, -0.02110049, -0.024555618, -0.029310558, -0.0129279485, -0.025142401, 0.0026032713, 0.041732483, -0.0116679575, 0.03558231, -0.011272656, 0.09998609, -0.010025001, -0.03312269, 0.041432198, -0.033518128, -0.0330621, 0.017009031, 0.012547745, -0.010067545, 0.00038440066, 0.014606972, -0.05937059, 0.08581629, -0.03801222, -0.0019234432, -0.06388233, 0.025648864, -0.02342025, -0.029017344, -0.0011082479, -0.0134737035, 0.03982567, -0.013823655, -0.006513645, -0.044260968, -0.02584241, 0.049370248, -0.05107383, -0.037103485, 0.02876603, 0.02651368, -0.034457956, -0.04925519, 0.040440958, -0.037239622, -0.023398874, -0.007435613, -0.023673188, -0.015944716, 0.014679086, -0.019738734, 0.053044073, -0.078340195, 0.026398916, 0.009649993, 0.019756224, -0.039391827, 0.0026387223, -0.018757552, -0.017477749, 0.07992542, -0.04774394, -0.02137758, 0.02681614, 0.03584464, -0.03881585, 0.03950093, -0.032586373, 0.012947656, -0.019125352, 0.02255167, 0.015600172, -0.03461468, 0.08090932, -0.0013207516, 0.020087767, 0.024530938, 0.020392422, -0.001652106, 0.037016798, 0.01282359, -0.006187884, -0.06447841, -0.014819239, -0.010380081, 0.026895769, 0.0064847628, -0.020642819, -0.0024906958, -0.06715834, 0.030098485, 0.034854744, -0.016334485, 0.040466025, 0.025739381, 0.018723728, -0.008478729, -0.015274166, 0.009773129, 0.013964012, -0.013248053, 0.038605966, -0.05068594, 0.022776201, -0.002274929, -0.030178305, -0.01830482, 0.00486454, 0.033271614, -0.053966783, 0.022006882, 0.0045629474, 0.03180524, 0.011595183, 0.05418667, -0.03897313, 0.0111541115, 0.005639523, -0.0133928545, -0.052690532, 0.0129035385, 0.030861227, 0.020358546, 0.02298174, -0.029919224, 0.039755456, -0.029566828, 0.013628273, -0.046351507, -0.0016667637, -0.085646525, -0.009439992, 0.03305301, 0.0057150177, -0.013987479, 0.002421327, -0.08569079, 0.0500732, -0.0621302, -0.016551351, 0.06463667, 0.008546768, 0.012819916, 0.080627985, 0.03088179, 0.09564777, 0.02559429, -0.042654753, 0.009092947, -0.052704353, 0.0001421428, 0.031528715, 0.008517104, 0.015547903, -0.042349793, -0.011542063, -0.059390366, 0.076340884, 0.017627927, -0.025881575, -1.9184135e-05, -0.0023212193, 0.015164116, 0.016516523, -0.03506336, 0.011984991, -0.04362339, -0.037657626, 0.007538941, -0.0029384308, -0.039817408, 0.0008058839, 0.05373808, 0.019937398, -0.015985433, -0.008938941, -0.004589155, -0.06209797, -0.06357629, 0.014432904, 0.05725187, 0.008011528, 0.016277261, 0.0034926578, 0.0019478586, -0.048627064, 0.058188133, 0.012179768, -0.0034209262, 0.020746363, -0.0026853757, 0.003972041, -0.075859144, 0.0016633039, 0.048774112, -0.025804095 ] }, { "values": [ -0.0024772682, -0.032168645, -0.04381299, -0.015604792, 0.057189953, -0.012043612, 0.07241801, -0.005460192, -0.013720447, 0.025286006, 0.001004026, 0.021482827, 0.018751422, -0.015502207, -0.058795966, -0.019911313, 0.046392757, -0.020723224, -0.020138236, -0.020736847, 0.025246331, -0.0012602755, -0.020515583, -0.04589203, 0.0040803174, 0.04660889, 0.017796637, -0.035216734, 0.022531146, -0.022733731, 0.022889154, 0.03346917, -0.049492046, -0.07960212, 0.10075041, 0.014082731, -0.0433123, 0.0150202615, 0.024283605, -0.027759427, -0.06370512, -0.036450144, -0.026731461, 0.022427695, -0.04379099, 0.020796638, 0.0691866, 0.012947086, -0.031884577, 0.036511146, 0.024158075, -0.03710476, -0.0011338069, -0.0027737606, 0.008837763, -0.01912542, -0.034947995, -0.08682398, 0.056111906, -0.0040214006, -0.04582829, -0.00540686, -0.05163232, -0.01897548, -0.06475799, -0.044802558, -0.041649558, -0.051831696, -0.0582779, -0.01816037, -0.02091009, -0.019555178, -0.04355948, -0.018774599, -0.004611809, -0.0075328597, -0.0004201847, 0.002292908, -0.004901822, 0.022995641, -0.0071107666, 0.008092906, 0.07840816, 0.06413508, 0.0054771476, 0.050238416, 0.018431926, -0.013474684, 0.007761776, 0.022785835, 0.12908301, -0.030345384, 0.01172637, 0.05598894, 0.0017216977, -0.07258083, -0.010442061, -0.058888335, 0.029696055, 0.08987372, -0.027190244, 0.007315031, -0.0540052, -0.060344316, 0.051906817, 0.018391352, 0.036986995, -0.094370596, -0.0402879, 0.058562, -0.06860098, -0.034917474, -0.03351045, -0.036357168, 0.021383896, -0.0047130925, -0.016861523, 0.023301912, -0.04374111, 0.03993695, 0.068400554, 0.005107396, -0.0272394, 0.05665395, 0.010247996, 0.016073352, 0.0040289885, -0.055424593, -0.013919044, -0.064414784, 0.065544, -0.09360183, -0.0011686462, 0.00025292134, -0.04142264, -0.05568353, 0.036902435, 0.044982016, -0.06135438, 0.0114072515, 0.015074416, -0.015995735, -0.032531686, 0.014943608, 0.021045862, 0.0017584909, 0.012738772, -0.028356304, -0.06455072, 0.034957007, -0.051581156, 0.00920665, 0.026073726, 0.022777028, -0.028375449, 0.018683717, 0.059586454, -0.024132298, 0.05454525, -0.024778116, 0.03339814, -0.044565216, -0.028799545, 0.00025507723, -0.07121369, 0.025556318, 0.054780133, -0.034945603, -0.040960908, -0.0010886844, 0.015510495, 0.017087003, -0.046472583, -0.08471892, 0.023010036, 0.03346415, -0.04138667, 0.04045646, -0.01537736, -0.009385201, 0.0138871465, 0.03503161, -0.04319311, 0.020382045, -0.0007665861, -0.013815363, -0.020022664, 0.037496798, 0.019753542, 0.005253883, -0.013043929, 0.006917144, 0.046739295, 0.0040605166, -0.015658017, 0.048452806, 0.051779523, -0.010002873, -0.018314049, -0.03302991, 0.02579634, 0.022907464, -0.018107599, -0.032932416, 0.009216343, -0.0032029892, -0.030212963, -0.047562048, 0.021402957, -0.009922888, -0.031786807, 0.002243796, -0.023208516, -0.004797973, -0.023184143, 0.043425035, 0.047848143, 0.025510166, 0.010634157, -0.0349244, -0.07608359, -0.01840497, -0.051142845, -0.074951865, 0.042650167, 0.028408274, -0.05485807, -0.0018372295, -0.029378248, 0.023650274, -0.055821896, -0.0266304, -0.009687994, 0.017893016, 0.050878335, 0.063229606, 0.056887403, 0.0012666472, -0.017692767, -0.003958343, -0.033472538, 0.0065695792, -0.00014018702, -0.011307168, -0.0056560226, 0.017757019, 0.058837853, 0.115682736, -0.004044216, 0.027261913, -0.035382945, -0.017924072, -0.05832454, 0.005612109, -0.03779624, -0.0019248244, 0.023250433, -0.03143283, -0.008026605, 0.0066145333, 0.0081572095, 0.02475355, -0.02953387, -0.069778085, -0.009190072, -0.10887545, -0.023909247, -0.010924102, 0.089263484, 0.017785242, -0.018842662, 0.008989976, -0.021197384, -0.02932872, 0.031884592, 0.040976144, -0.04048362, 0.036727533, -0.015253578, -0.0647484, 0.020522492, -0.014681224, -0.016918443, -0.01774199, -0.0009036563, 0.00425315, -0.02040382, 0.01679524, -0.038782086, -0.061601188, 0.059312925, 0.029381253, 0.019450385, 0.00021266157, 0.06339631, -0.00482832, 0.023477329, 0.01078755, 0.022383137, -0.006505478, 0.015866904, 0.051132306, -0.022798963, 0.058335107, -0.019260023, 0.01250322, -0.042343028, -0.010350321, -0.048929602, 0.018000768, 0.002960696, -0.01102272, 0.011742508, -0.01589758, -0.017378442, 0.030698078, -0.07734336, 0.04611905, 0.0039832247, -0.017916223, 0.027223859, 0.009575655, -0.031008126, -0.0483487, 0.022360962, 0.031442102, 0.002517228, -0.019869281, -0.006267071, -0.059348177, 0.03983364, 0.02046045, -0.012593728, -0.019857455, -0.020094812, 0.0019778926, 0.01279217, 0.04613318, 0.027718322, -0.012776429, 0.043194257, 0.003852401, 0.008986176, 0.023171058, 0.003612659, -0.06889528, 0.024762187, 0.0023371424, 0.061566602, -0.043474823, -0.002570858, 0.0590062, -0.025191417, 0.00055665785, 0.0369833, 0.031548385, 0.05342124, 0.017275784, 0.04276202, -0.01786287, -0.038260784, 0.020768514, -0.0031140032, -0.025133125, 0.013066039, -0.036744595, 0.02408422, 0.019434694, -0.013631135, -0.053949513, 0.015981045, 0.025680399, -0.004684549, 0.03048044, 0.03297284, -0.03572541, -0.005985786, 0.022580633, 0.027201977, -0.023397926, -0.018516362, -0.023874983, -0.028976403, -0.0064241025, -0.035748046, 0.008460965, -0.026197052, -0.05064886, 0.02383361, -0.00605518, -0.036228932, 0.042496555, -0.030061, 0.02122346, -0.05820299, 0.049137402, -0.016949143, -0.0154318195, 0.0061711133, 0.019367551, -0.026658094, -0.013472479, 0.07927026, -0.008444297, 0.0048924787, -0.0010164974, 0.048542432, 0.056242246, -0.0013540968, -0.036730215, 0.0426842, 0.0036064829, 0.029666867, 0.0043812892, 0.014072351, 0.013604333, -0.031874985, -0.06286764, 0.0040764753, 0.022314524, -0.014517637, 0.025809087, -0.03179526, 0.054687813, -0.0009482921, -0.053677615, 0.0073922765, -0.0058003208, 0.032624826, -0.002130891, -0.036343526, 0.073647335, -0.07729688, 0.007626528, -0.007582003, -0.05473879, -0.008695676, -0.0142648695, -0.055049, 0.011438603, -0.013254299, 0.005836338, 0.056037694, 0.06213829, -0.013715646, 0.05269418, 0.052583877, -0.0057765073, 0.0074613593, -0.07062389, -0.010511054, 0.03868718, -0.041464612, -0.050608687, 0.017611548, -0.0021546753, 0.068567015, 0.022701673, -0.036043223, -0.016448496, 0.007025051, -0.005442368, 0.08668717, 0.04573192, -0.028286729, 0.023741253, 0.010955603, -0.01895345, 0.039909862, 0.027499795, 0.011992202, 0.004973681, -0.0120103685, -0.0054271505, 0.056703087, 0.022420824, 0.033194453, -0.0051825903, 0.013100404, 0.057695758, -0.03040065, 0.04066762, 0.01671136, 0.067663215, 0.02607457, -0.06695749, -0.027198864, -0.005696699, -0.008531958, 0.031715833, 0.009051126, 0.043708082, -0.014071082, 0.0056309584, -0.057137918, -0.04920829, 0.0314041, -0.016537324, -0.03335833, -0.024693275, 0.05276799, 0.022603275, -0.015043995, -0.02742054, -0.0012992959, 0.019975502, -0.009380478, -0.013866124, 0.047530945, -0.024256341, -0.012167006, 0.0041794525, 0.054909363, 0.0018669659, -0.037895232, 0.07928079, -0.07417194, 0.007251051, 0.0025388151, 0.04312299, -0.019225392, -0.01249343, 0.030665947, -0.070809275, -0.09116402, -0.023351504, -0.05798445, 0.043712527, 0.03390728, -0.010123098, -0.011907359, 0.05264915, -0.017063722, 0.05298995, -0.00024639734, 0.027436301, -0.008898279, 0.037633937, -0.005774651, 0.024092423, -0.02056422, 0.016084297, 0.037776507, 0.043138295, 0.058637425, 0.03047254, 0.058816954, -0.0041167107, -0.07399014, 0.08586917, -0.005969847, -0.0032086545, 0.073583566, -0.02109753, -0.013832691, -0.022168444, -0.0068499623, -0.0012051389, -0.021176884, 0.015095634, 0.056905743, 0.005623308, -0.008914172, -0.001483569, 0.028450843, -0.008705712, 0.0017222764, 0.036545552, -0.04138623, -0.042110324, -0.006102115, 0.0020322949, 0.011457314, -0.037184082, -0.026383039, 0.0064387624, -0.050567526, 0.010567993, 0.036113817, -0.002482837, 0.045411874, -0.025019864, 0.091870464, -0.039761517, -0.03744909, 0.046543807, -0.0340225, -0.039823964, 0.002453365, 0.014451337, -0.016075265, -0.012937475, 0.004796362, -0.045510832, 0.08239483, -0.020564755, -0.008859888, -0.05162657, -0.0050620614, -0.0055287015, -0.01364126, -0.015303997, -0.00787509, 0.016361982, 0.011562521, 0.005740666, -0.028402653, -0.0316057, 0.041388802, -0.024255868, -0.046525136, 0.011346115, 0.022483105, -0.057076447, -0.057772078, 0.017460119, -0.013643482, -0.051478345, -0.018263333, -0.019365564, 0.010633582, -0.00047606803, -0.015958248, 0.022857156, -0.034019083, -0.020668574, -0.0032132096, 0.010876694, -0.039611824, -0.001354155, -0.008392984, -0.02015674, 0.10391718, -0.022248833, -0.004368586, 0.012201203, 0.034043062, -0.039230738, 0.08804931, -0.04412614, 0.034912292, 0.011928912, 0.0049704737, 0.04256827, -0.04964844, 0.07068223, -0.013080261, 0.009471721, 0.016127676, 0.0278933, -0.034369364, 0.03612415, -0.00056137796, -0.017777493, -0.058036916, -0.024233311, -0.027041912, -0.001131545, -0.019766256, -0.04018002, 0.008058641, -0.050357565, 0.038101673, 0.032290384, -0.012631929, 0.029549176, -0.0025539207, 0.016523771, -0.030997232, -0.035395738, 0.01826228, 0.05222754, -0.012374993, 0.05113783, -0.036373228, 0.031637426, -0.011254339, -0.0067402073, -0.0217199, 0.011158242, 0.03418164, -0.045982648, -0.015415287, 0.028797181, 0.041400984, 0.03764198, 0.027819475, -0.031649012, 0.006554272, -0.020524686, -0.008862233, -0.04310348, -0.022770759, 0.02949127, 0.040805496, 0.04485881, -0.023752676, 0.033479188, -0.057476014, -0.0062276684, -0.015647275, 0.02952139, -0.04903124, -0.0059995437, 0.06719873, 0.0072307843, -0.013620692, 0.0031454847, -0.09169097, 0.023343192, -0.0572172, -0.03490037, 0.04415449, 0.02569457, 0.008404254, 0.050595574, 0.03715178, 0.112047955, 0.016458709, -0.025397476, 0.006526073, -0.037575733, 0.015085343, 0.039603375, 0.009262262, 0.038350698, -0.047435608, 0.00730208, -0.045292266, 0.07862027, 1.0969522e-05, -0.005353263, -0.0044648056, -0.0025323618, -0.004175275, 0.006153949, -0.04000165, -0.017127233, -0.051230423, -0.040090133, 0.015387886, -0.001273841, -0.062767394, 0.010218905, 0.039810948, 0.012486214, -0.01411419, -0.0028882097, -0.01426588, -0.009873416, -0.07701692, 0.0065066824, 0.027572092, 0.01454623, -0.007249201, -0.009730795, 0.018240448, -0.032778863, 0.054316424, 0.027083196, 0.022272274, 0.0003596913, 0.00447639, -0.015849994, -0.05448208, -0.006402909, 0.036046274, -0.042744335 ] }, { "values": [ -0.0003818647, -0.037121486, -0.061334312, -0.020283975, 0.04269876, 0.008760223, 0.060605973, -0.0069674593, 0.012433631, 0.008839352, 0.012678053, 0.027575219, 0.029542673, -0.042619076, -0.074533306, -0.040059704, 0.029387118, -0.010192241, -0.05427068, -0.03091587, 0.04291131, 0.00060351385, -0.0032363087, -0.043920036, -0.008740784, 0.0467547, 0.03255261, -0.018112972, 0.0122656645, -0.022329316, 0.004736431, 0.026929863, -0.036324143, -0.06793803, 0.07107365, 0.019118695, -0.05027448, 0.03897846, 0.022221642, -0.059790242, -0.08643049, -0.031756938, -0.044003826, 0.030764887, -0.03640164, 0.00032685336, 0.07105453, 0.0002784155, -0.03379335, 0.03324744, 0.0051908665, -0.011693953, -0.015160073, -0.008278854, -0.01792603, -0.037591577, -0.041385047, -0.060648978, 0.041336317, -0.0025545643, -0.034388434, 0.0022734534, -0.080194116, -0.023169661, -0.03502415, -0.044120796, -0.03466953, -0.018475652, -0.05530016, 0.00353712, -0.02210822, 0.0029221245, -0.041150328, 0.0013946097, -0.010899411, -0.014942714, 0.012825192, 0.032413796, -0.010523272, 0.04104788, 0.011258272, 0.012104303, 0.065377355, 0.05156175, -0.008477066, 0.056061503, 0.04041604, -0.012892307, -0.022157822, -0.00286723, 0.082687005, -0.037390683, -0.004492709, 0.016267052, -0.015593764, -0.044229046, -0.030391034, -0.059013642, 0.0045915255, 0.07916112, -0.066812605, -0.006521926, -0.0421645, -0.059075203, 0.017607866, 0.011600627, 0.030407554, -0.054329984, -0.035101067, 0.033896625, -0.061113883, -0.01367732, -0.010476825, -0.04238412, 0.00033102423, 0.0069861594, 0.0024892671, 0.0025161796, -0.047176544, 0.010906449, 0.0378931, 0.0036119497, -0.047100525, 0.07119633, 0.033706106, 0.0057661487, -0.022190463, -0.0492365, -0.030310655, -0.045156807, 0.07476503, -0.123138145, 0.0140483035, -0.014681237, -0.02463684, -0.015797084, 0.07270346, 0.00782112, -0.0327731, -0.008353678, 0.021060951, -0.026833905, -0.076754205, 0.024342757, 0.026561389, 0.041908395, -0.013446617, -0.041040346, -0.08808528, 0.053580243, -0.038170267, -0.030090997, 0.019552644, -0.0052105812, -0.0339617, 0.04000823, 0.05682537, -0.017916512, 0.028546471, -0.015547318, 0.041693833, -0.052667044, -0.018043024, 0.020758906, -0.072943, 0.030870812, 0.08335534, -0.02713632, -0.032101467, -0.007134936, 0.005644232, -0.008779486, -0.068569906, -0.09597294, 0.011165639, 0.03991953, -0.039331738, 0.0047045206, -0.022827256, -0.03589832, 0.02904443, 0.063027166, -0.06587869, 0.008842402, -0.012501719, 0.0007305637, -0.03005234, 0.032561522, 0.00860146, 0.018199528, 0.0029162432, -0.00062056206, 0.01709285, 0.049122564, -0.0166425, 0.038249813, 0.07532939, -0.023934424, -0.018385818, -0.0047728512, 0.018601505, 0.02872964, -0.027207663, 0.017215678, 0.016216889, 0.0028343499, -0.039287142, -0.044397596, 0.039596546, -0.024168685, -0.030636316, -0.0076304534, -0.026200335, -0.0070589297, -0.016120974, 0.043293208, 0.070947535, 0.0007802302, 0.016712824, -0.021143818, -0.11657423, -0.0051636393, -0.042753845, -0.06690757, 0.052435096, 0.03702935, -0.040052425, 0.013765475, -0.05193863, 0.01275797, -0.036239095, 0.012589913, 0.01142322, 0.0048472453, 0.023803247, 0.045088407, 0.03630891, 0.0029031923, -0.012094953, -0.0060326257, -0.00398784, -0.008959401, -0.004796029, -0.003908191, -0.009573702, 0.03336277, 0.05630105, 0.071225785, -0.007718531, 0.016175814, -0.056316067, -0.03930685, -0.055933505, -0.015169465, -0.036445938, -5.7518915e-05, 0.031473383, -0.058141917, 0.015042599, -0.00089157425, 0.009649878, 0.020079354, -0.023747835, -0.065132976, 0.0066148583, -0.09430555, -0.006759004, -0.012637069, 0.07098476, -0.0016218969, -0.037118785, 0.0005895811, -0.022978099, -0.030607713, 0.033025645, 0.039543264, -0.04815849, 0.02176028, -0.01950321, -0.049681667, 0.033795916, -0.0009842899, 0.008952423, -0.008088682, -0.022156399, -0.00029436577, -0.0030639574, 0.022580558, -0.009900469, -0.04970222, 0.016257608, 0.03636528, 0.010139345, 0.0067472304, 0.04385086, -0.0019851811, 0.03177648, 0.031640634, -0.039768174, 0.005457637, 0.051379092, 0.063098416, -0.048707724, 0.06293881, -0.018217376, 0.00015771111, -0.040241875, 0.0056248256, -0.017503388, 0.011360926, 0.005506299, 0.012473725, -0.006258091, -0.014839733, -0.02263711, 0.011839153, -0.091139734, 0.023868171, -0.011298194, -0.037726115, 0.010578658, 0.008260054, 0.007986426, -0.04384568, 0.04253205, 0.009243506, 0.0030003607, 0.030947717, -0.0074001225, -0.033418518, 0.025089351, 0.017575758, 0.013719488, 0.0022678275, -0.0056555024, -0.01336573, 0.0036223293, 0.019663136, 0.03844847, -0.004709857, 0.07006555, 0.013387068, 0.04588065, 0.017064983, 0.015308924, -0.078210376, 0.0594411, 0.00044427192, 0.05537384, -0.06854711, 0.013678138, 0.08209395, -0.014501072, -0.0048110257, 0.01631554, 0.0027434148, 0.030730156, 0.012584734, 0.030444764, 0.0028604898, -0.02601412, 0.017086215, -0.0043053157, -0.027305208, 0.020528954, -0.01967102, -0.007934417, 0.017091034, -0.01992782, -0.0388763, 0.038130388, 0.012217892, 0.012216785, 0.04701631, 0.0054349224, -0.020257875, 0.023006607, 0.04066563, 0.014544047, -0.05115861, -0.0011143086, -0.044033997, -0.04714082, 0.0029431134, -0.01889639, 0.013550025, -0.024972675, -0.008748438, 0.030668339, -0.0002798408, -0.027369536, 0.06946425, -0.016891075, 0.02842256, -0.031192977, 0.048243724, -0.017201267, -0.009169925, 0.035807617, -0.010870914, -0.014168324, 0.004916368, 0.08193921, 0.0010605875, -0.0020876671, -0.018356672, 0.06357563, 0.022139935, -0.008402013, -0.033019762, 0.039815217, -0.008949271, 0.004710162, -0.00040578307, -0.008920686, 0.017273467, -0.00904628, -0.042308394, 0.015973253, 0.0122116115, -0.017983872, 0.051958404, 0.00055741373, 0.03890126, 0.01297136, -0.037981346, 0.021141512, 0.017512439, 0.02075972, 0.011401092, -0.0353456, 0.07033584, -0.06063661, -0.009017961, -0.0018737626, -0.046565693, -0.04050337, -0.023025315, -0.076788746, -0.010743405, -0.011383916, 0.00977896, 0.043350518, 0.047963522, -0.030558335, -0.003432432, 0.047709815, 0.013731816, 0.0067334156, -0.067280896, -0.03503995, 0.016952846, -0.007979611, -0.020991774, 0.0028842431, 0.012816106, 0.03213869, 0.006243667, -0.07433126, 0.009558061, -0.021857155, 0.0051840683, 0.07937434, 0.06475291, -0.025846036, 0.0060294173, -0.0032638966, -0.008848874, 0.037109483, 0.068544604, -0.0067042504, 0.02059933, -0.004035142, -0.0259736, 0.038203176, 0.009425019, 0.043599933, 0.019067703, 0.019436928, 0.053292613, -0.029069353, 0.025915002, 0.01881545, 0.062352184, 0.014633296, -0.052715883, -0.015791066, 0.005378799, 0.0036927774, 0.053383447, 0.031408533, 0.039971028, 0.0051268577, 0.0102831945, -0.06087959, -0.05149114, 0.034077473, -0.013616737, -0.0017716736, -0.0061074025, 0.07088583, 0.0035281589, -0.024642834, -0.05638483, -0.00016160111, 0.030999394, -0.027827505, -0.021168074, 0.050123554, -0.05276066, -0.013731033, -0.016018033, 0.018020347, 0.0154756745, -0.037836872, 0.061297, -0.11258378, -0.0053984565, -0.015112443, 0.06043342, 0.008775854, -0.013846131, 0.05115324, -0.05209697, -0.08429083, -0.010942286, -0.05635504, 0.038990375, 0.068885684, -0.013364432, 0.00881023, 0.049581103, -0.0003258717, 0.059294324, -0.0103362715, 0.0058035674, 0.0091876155, 0.027976504, -0.004501393, 0.0010442806, 0.011614026, 0.020064134, 0.047130182, 0.026570208, 0.07562664, 0.016033275, 0.049753744, 0.012182151, -0.059256416, 0.0636717, -0.0029331113, -0.011196304, 0.06518955, -0.032320227, -0.020155307, -0.027572634, -0.007089464, 0.017694721, -0.034824718, -0.0037694846, 0.037734777, -0.0078998925, -0.0056583905, 0.0238255, 0.041366365, -0.020316962, 0.020747555, 0.033750452, -0.04469949, -0.04345131, 0.018896438, 0.0169317, 0.006144176, -0.026429437, -0.0261312, 0.004012707, -0.023657698, -0.0156354, 0.051381424, -0.01177537, 0.025581256, -0.009550577, 0.103577174, -0.014390797, -0.04994922, 0.05193497, -0.026845584, -0.04909553, 0.038014133, 0.013504647, -0.014824421, 0.0113218855, -0.006684394, -0.075091965, 0.09785684, -0.012189511, 0.009969749, -0.054445516, 0.018522998, -0.008752431, -0.038420483, -0.025876593, 0.005507531, 0.01698518, 0.0021047238, -0.0075804275, -0.05127452, -0.05000476, 0.03069189, -0.04517496, -0.037737153, 0.016403338, 0.011223341, -0.033521473, -0.051582832, 0.038969155, -0.049130417, -0.034897443, -0.009436288, -0.03513696, -0.015862968, -0.008840161, -0.022804169, 0.03969865, -0.084582426, 0.008724475, 0.0020219893, 0.020244984, -0.024921015, 0.0054526287, -0.02614292, -0.016781362, 0.050427593, -0.058074847, -0.003048017, 0.038737126, 0.02640511, -0.05137941, 0.069721, -0.04824304, 0.026183847, -0.017850704, 0.0028849787, 0.014484241, -0.034952674, 0.08295516, 0.007876201, 0.021378133, -0.0025277217, 0.027309781, 0.016530072, 0.020348804, -0.004747517, -0.007947009, -0.07058437, -0.020152858, -0.030031715, 0.016605891, 0.00078771735, -0.016992008, 0.00999148, -0.07882657, 0.023892233, 0.010953845, -0.02264137, 0.03615791, -0.008363367, 0.017550811, -0.03812907, -0.023624908, 0.028219143, 0.035020914, -0.002770023, 0.046066113, -0.030957807, 0.027015751, -0.02682996, -0.061196037, -0.026376974, 0.0105197, 0.033954017, -0.06755498, -0.011405685, 0.03351264, 0.04369318, 0.0007723642, 0.030856365, -0.040470246, 0.00055308803, 0.020565331, -0.016202495, -0.058096804, 0.0066794716, 0.02570516, 0.030205825, 0.031019356, -0.049342066, 0.030110786, -0.057430655, 0.0046640015, -0.030336056, 0.028609553, -0.0646652, -0.0019977263, 0.06927939, 0.0027466225, 0.0034036678, 0.045278266, -0.065694444, 0.059131704, -0.043041438, -0.025509868, 0.038485676, 0.02432921, 0.009693699, 0.057777748, 0.03714209, 0.07890294, 0.020248381, -0.03003384, 0.006974168, -0.055235673, -0.015319962, 0.058985226, 0.011446968, -0.006099672, -0.054851152, 0.0034583304, -0.063300475, 0.072981104, 0.01415135, -0.035664015, 0.0072759814, -0.009074977, 0.004166305, 0.020174684, -0.017237596, -0.005001468, -0.04097682, -0.018467613, 0.014126449, -0.014494741, -0.052965004, -0.012875049, 0.044491593, 0.0074185664, -0.034466684, -0.01005921, -0.008805376, -0.031276055, -0.03964471, 0.015938802, 0.03784713, 0.004407185, 0.0418499, 0.026691148, -0.0027652923, -0.055438466, 0.054767463, 0.01696949, -0.016385177, 0.029570464, 0.0102970945, 0.0035724223, -0.06022876, 0.0043201777, 0.04006718, -0.030298958 ] }, { "values": [ 0.0010624651, -0.041448567, -0.061692324, -0.026560433, 0.021926846, 0.010114111, 0.06513205, -0.0021879063, -0.0012602113, -0.017356176, 0.014331201, 0.075695634, 0.033950135, -0.025487913, -0.08065644, -0.043320403, 0.0017093072, -0.004281318, -0.054979473, -0.003859964, 0.049649417, -0.019962305, 0.039010737, -0.05314153, 0.008842066, 0.046950262, 0.024939662, 0.006399173, 0.03868416, -0.028979434, -0.00499971, 0.0124215735, -0.038996268, -0.048069857, 0.12350443, 0.004996416, -0.031236107, 0.026757361, 0.025119143, -0.033715993, -0.08194678, -0.035912085, -0.060481902, 0.04457263, -0.024526546, 0.018377636, 0.04578598, 0.0023809467, -0.016170673, 0.030894808, 0.0022135885, -0.003740343, -0.07179043, -0.042125277, -0.009702929, -0.03379633, -0.026134834, -0.06391938, 0.06461034, 0.011073596, -0.01236817, -0.0070956503, -0.049471695, -0.017181734, -0.02318595, -0.02532482, -0.022417234, -0.016809464, -0.0739974, 0.0007259135, 0.023647027, -0.006726857, -0.033441108, 0.037291955, -0.012832344, 0.0016369426, 0.021197774, 0.035919733, -0.0055552972, 0.042613555, -0.021769732, -0.005688398, 0.075185426, 0.026825191, -0.01770015, 0.039227966, 0.017837748, 0.022126658, -0.033514816, 0.010667369, 0.088416666, -0.04901994, 0.030336931, 0.02025287, 0.01656346, -0.07021321, -0.042209815, -0.07525893, -0.016841365, 0.073201016, -0.06822065, 0.0022860123, -0.060937043, -0.050437607, 0.043090343, 0.02287148, 0.049181227, -0.029916808, -0.023368351, 0.036090434, -0.022341227, -0.011951021, -0.018439015, -0.048345853, 0.02245368, 0.00014813567, 0.005287603, 0.0019291741, -0.030966729, 0.011633229, 0.031898055, 0.0017381633, -0.046359304, 0.080589406, 0.013260138, 0.018553788, -0.0054173064, -0.059109967, -0.006849227, -0.07311295, 0.058038928, -0.13028717, 0.02258048, -0.010319553, -0.03231409, -0.012180626, 0.061083093, 0.02727045, -0.011524479, -0.018257953, 0.01502372, -0.016265487, -0.04246327, 0.03169909, 0.009067183, 0.048661724, 0.005582704, -0.041573096, -0.08859209, 0.018318357, -0.058142647, -0.03174685, 0.009236789, 0.0051098876, -0.03214316, 0.047701657, 0.08266743, -0.024515579, 0.06303818, -0.02623848, -0.00089142047, -0.060003895, 0.009402276, 0.028410004, -0.0934678, 0.031222088, 0.06670256, -0.03655946, 0.00038446856, 0.0017414537, 0.029765714, -0.0018066618, -0.04799794, -0.112806514, 0.00050122134, 0.024313085, -0.03085837, 0.009184742, -0.029322315, -0.01821362, 0.056010563, 0.021968866, -0.046026256, 0.0034104774, -0.00633429, -0.0032532145, -0.038167752, 0.020586178, -0.00193302, 0.03399907, 0.018215017, 0.020978212, 0.044513017, 0.020115346, -0.009666001, 0.019984415, 0.072445236, -0.036870908, -0.001619312, -0.025302762, 0.017563716, 0.00054094347, -0.017159525, 0.011662216, 0.031975012, -0.031767223, -0.040057823, -0.040454146, 0.031022562, -0.017718876, -0.04449748, -0.025043624, -0.031277236, -0.01091023, -0.019855894, 0.032200772, 0.0909657, 0.035615966, 0.025366817, -0.016473364, -0.09873943, 0.004666101, -0.0299394, -0.07097912, 0.043198276, 0.0025988095, -0.05820816, 0.02281104, -0.035568964, 0.0032667548, -0.04293155, 0.010936975, 0.03200458, -0.014715784, 0.024489261, 0.011402195, 0.017887577, -0.00094225974, 0.0027146514, -0.03432966, -0.03352005, 7.3285686e-05, 0.0050866012, 0.0014712117, 0.008277437, -0.0063736183, 0.06408971, 0.08650036, -0.02888358, -0.0072512655, -0.040140547, -0.02001555, -0.015462305, -0.011715478, -0.021602219, 0.014237178, 0.015533138, -0.061939113, -0.0062222285, -0.002559977, 0.009423624, 0.0001048721, -0.02796972, -0.07752863, 0.011920451, -0.103945374, 0.016426727, 0.0020941277, 0.065671355, -0.0033604484, -0.030084834, -0.00014799702, -0.028693987, -0.035832856, 0.035445824, 0.03850426, -0.05601934, 0.041743837, -0.004692493, -0.049742784, 0.04031729, 0.0039601945, -0.0020139697, 0.018017236, -0.010823188, -0.010958918, 0.008491627, 0.00032552375, -0.0077597466, -0.07499072, 0.02793603, 0.026462553, -0.0021112792, 0.019278899, 0.033482358, 0.0062378533, 0.026962316, 0.04300499, -0.014830827, 0.0023605735, 0.05033621, 0.06234106, -0.05088242, 0.02982188, -0.031441096, 0.03581903, -0.04753045, -0.017889839, -0.047984276, 0.004442635, 0.016177317, 0.041201685, 0.0003210855, -0.0003383019, -0.022130204, 0.014454643, -0.06406973, 0.040306535, -0.028919078, -0.043907702, 0.016603233, 0.018925356, -0.013713827, -0.05446489, 0.037679676, -0.012287411, 0.030965788, 0.010489852, -0.010996355, -0.03225785, 0.029541586, 0.003137637, -0.007835793, -0.012047835, 0.0034136896, -0.032375857, -0.016238218, 0.02090129, 0.024811292, -0.029648669, 0.087514184, 0.007598478, 0.056546066, 0.012062201, -0.011507296, -0.05209332, 0.061905984, -0.018531786, 0.05804114, -0.05439267, 0.013350066, 0.08600009, -0.00069431926, 0.01624194, 0.02685276, -0.007274299, 0.043897953, 0.010110458, 0.03836163, 0.030215438, -0.04197464, -0.01712792, 0.015207901, -0.016081123, 0.0095459055, -0.024326053, -0.006828493, 0.01744707, -0.015963996, -0.034250177, 0.01408836, 0.033107568, 0.01954171, 0.008625342, 0.00013167586, -0.04727906, 0.01483151, 0.03280388, 0.01795919, -0.041769873, -0.011046463, -0.046903897, -0.054053776, -0.0033630356, -0.0037145836, 0.029235763, -0.03887432, -0.008069763, 0.029797364, -0.01343498, -0.016107026, 0.059174795, -0.00835488, 0.028172668, -0.032085497, 0.035799358, -0.01181397, -0.00082664023, 0.04339543, -0.010449063, -0.010198943, 0.035558585, 0.050457753, 0.0049892124, -0.007848111, -0.011448135, 0.046277374, -0.008554801, -0.010954519, -0.019047087, 0.025434047, -0.029028766, -0.007246187, -0.0011120376, 0.0011361366, 0.004470617, -0.00406871, -0.030154517, -0.013869768, 0.042455997, -0.032567214, 0.050132584, 0.019945385, 0.04911388, 0.011667585, -0.039465845, 0.03856933, 0.010504913, 0.03268992, 0.009431975, -0.008667539, 0.050561517, -0.04638422, 0.0015488599, 0.0014221123, -0.047066152, -0.021594282, -0.016100015, -0.06961127, -0.019559314, -0.019611837, -0.016064404, 0.055962805, 0.04932015, -0.050429594, 0.011872013, 0.044133667, 0.02399063, -0.019361125, -0.05266323, -0.039552208, 0.056135133, -0.025612373, -0.042380277, 0.018937819, 0.029417776, 0.011780627, 0.019838592, -0.052978568, 0.027611803, -0.029266557, -0.017368639, 0.07017812, 0.07048367, -0.013206698, 0.019091945, -0.011695766, 0.023605129, 0.015117308, 0.050845675, -0.014477918, 0.016758718, -0.022001904, -0.010996592, 0.04182804, -0.005744131, 0.053539667, -0.009294729, -0.0012380439, 0.05941188, -0.027801353, 0.02244999, -0.003373704, 0.05308931, 0.014253732, -0.051351428, -0.034954116, 0.016706925, -0.0030355717, 0.048215058, 0.010524794, 0.022510532, -0.0016998232, 0.012471696, -0.05147794, -0.052206907, 0.026054835, 0.010796782, -0.013130757, -0.010943018, 0.07553258, 0.01296362, 0.0076526967, -0.041291535, 0.00092285755, 0.028298607, -0.024536809, -0.029426454, 0.061849955, -0.052510757, -0.027956735, -0.006094666, 0.011112643, 0.027930189, -0.047457688, 0.07006003, -0.11852163, -0.004174478, -0.049084738, 0.07558745, -0.047957994, -0.03093379, 0.05362094, -0.042742305, -0.06953731, 0.010605543, -0.051192597, 0.018245166, 0.05195056, -0.017617397, 0.02518198, 0.058390725, 0.014764602, 0.028682375, 0.018145395, 0.0069931853, 0.012365791, 0.021201419, -0.016948486, 0.027076907, 0.01706834, 0.022194592, 0.03448533, 0.058737084, 0.06686931, 0.016221343, 0.04719687, -0.013859659, -0.03703455, 0.072310455, 0.0029186534, -0.017823935, 0.042432096, 0.0014950581, -0.022108447, -0.024159221, -0.014512118, 0.0125758, -0.011992883, 0.021354998, 0.03558388, -0.013865484, -0.032229986, 0.02949782, 0.030036818, -0.019389903, 0.011998374, 0.06046623, -0.028002933, -0.029596085, -0.0044365223, 0.032383945, 0.01821949, -0.038623992, -0.024429016, 0.011202798, 0.0012484164, 0.0010841836, 0.06250268, -0.031472433, 0.048651084, -0.03495369, 0.07142275, -0.02139231, -0.020068955, 0.017831165, -0.027723216, -0.026299648, 0.037690084, 0.007472592, -0.023470273, -0.0012942406, 0.002112653, -0.05100872, 0.08344974, -0.031102426, 0.011511764, -0.021401161, 0.03240927, -0.029291509, -0.031622086, -0.032773793, -0.029648298, 0.02187034, 0.021430366, -0.0044435393, -0.011798383, -0.061007466, 0.031049214, -0.03234725, -0.041235223, -0.0018475167, 0.0046479004, -0.034767963, -0.047283065, 0.032348763, -0.04156846, -0.06376022, 0.0009918996, -0.027214477, -0.0011194127, 0.012062149, -0.025617786, 0.029000647, -0.06456932, -0.009776513, -0.0014612568, 0.036510788, -0.03360358, 0.00093312014, -0.019006552, -0.038354192, 0.043147046, -0.048559938, -0.026983721, 0.021007998, 0.024063364, -0.03349727, 0.06272535, -0.055019394, 0.010961226, 0.012671733, 0.006623296, 0.029192023, -0.05832512, 0.079315424, 0.014489697, 0.04521941, -0.0069596674, 0.046254523, -0.0058102775, -0.00658284, -0.010602824, -0.0013090224, -0.057196062, -0.014246722, -0.037267204, 0.0019224947, 0.0020224052, -0.023766879, 0.017987624, -0.061101094, 0.021498915, 0.021654818, -0.03472865, 0.03999386, -0.005097408, 0.033498805, -0.037500363, -0.03578507, 0.051371977, 0.021691438, 0.006603167, 0.048146386, -0.041308157, 0.016315041, -0.02591081, -0.047556974, -0.016217412, 0.019054806, 0.021516087, -0.05507961, -0.043019768, 0.03401696, 0.031419262, 0.023212913, 0.057520363, -0.019060211, 0.015583055, 0.03380344, 0.016553752, -0.031025086, -0.011432985, 0.0069661452, 0.012488712, 0.027838375, -0.054696802, 0.04562358, -0.047020316, -0.0008478476, -0.009315506, 0.030144004, -0.05246066, 0.016067343, 0.0908073, -0.019076455, 0.018361976, 0.03443185, -0.054107957, 0.03921017, -0.038349167, -0.011883843, 0.046511628, 0.01027084, 0.011734439, 0.05642301, 0.024785558, 0.0549885, 0.033640567, -0.020467523, 0.017390672, -0.04960649, -0.031654883, 0.06651324, 0.030552803, 0.014327985, -0.068230376, 0.024587367, -0.056757085, 0.08139146, 0.0081331115, -0.043517835, 0.03764265, 0.0069024884, -0.008479439, 0.01482128, -0.014809198, -0.0042911596, -0.040430125, -0.030981876, 0.0028751558, -0.027184835, -0.040838894, 0.022938723, 0.032559883, -0.006013344, -0.017457727, -0.058313847, -0.015094508, -0.0356824, -0.044515774, 0.012696703, 0.030082406, -0.024478534, 0.048247296, 0.024569975, -0.0012279063, -0.041755494, 0.031467114, -0.0026640573, 0.008972851, 0.048398603, -0.016840573, 0.0029690212, -0.05400554, 0.015078428, 0.04245473, -0.024201406 ] }, { "values": [ -0.00033917988, -0.03710895, -0.03266318, -0.017983306, 0.015087346, 0.038097817, 0.04084446, -0.0011160807, -0.009831788, -0.018487401, 0.025505414, 0.055696685, 0.023064723, 0.008136912, -0.07258147, -0.012883805, 0.037712723, -0.0176807, -0.049347017, 0.00973434, 0.03483076, 0.0053385007, 0.0066236136, -0.055922497, 0.0032135374, 0.061239496, 0.021853434, -0.0014351843, 0.019650785, -0.016639095, -0.01962476, -0.025600377, -0.050901696, -0.023513911, 0.0814425, 0.0104719065, -0.033057928, 0.0029504, 0.04394041, -0.06872304, -0.06164307, -0.031487655, -0.052065462, 0.049665656, -0.032970916, 0.015101243, 0.03765594, 0.010884222, -0.025436245, 0.010361732, 0.000848609, -0.0009992425, -0.050791465, -0.010205608, -0.0058582257, -0.019795794, -0.038619548, -0.08167767, 0.060906045, 0.006943652, 0.0088014, 0.015731826, -0.07777105, -0.017854452, -0.020959325, -0.018081822, -0.04659227, -0.034567263, -0.07867588, -0.005347711, -0.0038035589, -0.017935729, -0.04654265, 0.02138264, -0.019734567, -0.015941931, 0.03307266, -0.011849954, -0.007381576, 0.03712947, -0.003071229, -0.025639255, 0.031803355, 0.061148215, 0.0015577544, 0.051285673, 0.008136906, 0.0021075695, -0.054797173, 0.0064770374, 0.075881355, -0.04195221, 8.8621055e-05, 0.024408069, 0.042111155, -0.090071075, -0.014863823, -0.071652696, 0.0011596227, 0.05723701, -0.06720022, -0.022904012, -0.052863024, -0.08110014, 0.047341816, 0.035679407, 0.051839773, -0.03600521, 0.0029912312, 0.02895612, -0.034906402, 0.0021859028, -0.0380294, -0.020559017, -0.0016343956, -0.013486752, 0.05134774, -0.017111827, -0.04006392, 0.001520289, 0.0054481486, 0.0061340504, -0.04310874, 0.0721599, 0.020544628, 0.013191762, 0.0063840766, -0.07811064, 0.0023313041, -0.06892361, 0.034204047, -0.14882421, 0.02868643, 0.00040459484, -0.051925156, -0.0174976, 0.07555749, 0.039955243, -0.039455328, -0.027961658, 0.021755716, -0.0118566435, -0.040811278, 0.06616948, 0.02010171, 0.021675708, -0.0017723034, -0.047962315, -0.06210494, 0.0140947355, -0.05581598, 0.00017319039, -0.0012364335, 0.018680936, -0.02929511, 0.037951455, 0.08230984, -0.048115555, 0.015517778, -0.02900881, -0.0017591257, -0.07665765, -0.00485223, 0.015383087, -0.083990045, 0.06310848, 0.08044088, -0.04206917, -0.026602628, -0.03569417, 0.007755961, -0.047513332, -0.07251554, -0.0980663, -0.028480023, 0.012949499, -0.039187737, 0.0044316873, -0.01262364, -0.03695665, 0.05417793, 0.017573094, -0.023918206, -0.00866588, -0.05296828, -0.008189239, -0.02074067, 0.03604555, 0.014888253, 0.051702883, 0.010208054, 0.038188446, 0.04087253, -0.00057131064, -0.00030011064, 0.007968309, 0.07852527, -0.015771, -0.04017625, -0.0428665, -0.001665327, 0.04169181, -0.026992643, 0.015700543, 0.020836582, -0.037399758, -0.041616723, -0.014062288, 0.04572151, 0.0029494774, -0.01811903, 0.027460441, -0.0029892493, 0.014720828, -0.014500072, 0.021072323, 0.07666955, 0.026264045, 0.025338994, -0.049823314, -0.058881704, 0.017337091, -0.00011720234, -0.041807905, 0.052994907, 0.03410843, -0.0050458107, 0.029262118, -0.010185171, 0.00023884967, -0.039430853, 0.03318975, 0.019201964, -0.013916973, 0.04438289, 0.034488294, 0.049981277, -0.005192457, -0.025951028, -0.008843158, -0.015573162, 0.00065588177, 0.010426512, -0.010649714, -0.0042170538, 0.04411204, 0.074217856, 0.07129037, -0.04102141, -0.017295232, -0.048695832, -0.026808279, -0.033274103, -0.045254648, -0.03267421, -0.005969231, 0.010936063, -0.07098315, 0.020068651, 0.016248768, 0.013776777, -0.013032441, -0.031114068, -0.08367347, 0.017529355, -0.082165614, -0.0188609, -0.0024916003, 0.06636179, -0.023568539, -0.035222255, 0.0014571438, -0.057773672, -0.028656004, 0.032719433, 0.027732596, -0.03216003, 0.030313276, -0.03345848, -0.06360706, 0.065117605, -0.017264418, 0.004460979, -0.012261632, -0.017854543, -0.0009779857, 0.017276246, 0.03767517, 0.0049813096, -0.050054133, 0.031061107, 0.015656954, 0.0030532838, 0.022680568, 0.05470004, -0.00960568, 0.015727468, 0.036349975, -0.031474963, 0.002276562, 0.0046647615, 0.053957336, -0.05314336, 0.01357968, -0.00474298, 0.034461908, -0.05980359, -0.024387076, -0.019813996, 0.014744939, 0.006733861, 0.057995815, -0.016480014, -0.01890799, -0.017691478, 0.017537767, -0.0930552, 0.04477523, -0.01321754, -0.032445822, 0.010221218, 0.024027655, -0.007460489, -0.0478163, 0.016071733, -0.0068354416, 0.012559396, 0.014137457, 0.0070987605, -0.040405747, 0.012919625, 0.000879464, 0.021223964, 0.0021899797, -0.020533472, 0.0010499912, -0.027632639, 0.04568723, 0.027560987, -0.0104251355, 0.055205625, 0.00850945, 0.04949122, 0.019007895, 0.025375968, -0.048837006, 0.058966376, 0.008660827, 0.071202636, -0.06459347, 0.0053446866, 0.084977284, -0.0234277, 0.009577979, 0.029969316, 0.015040416, 0.025010467, 0.038061995, -0.0025221722, 0.019904751, -0.0702781, -0.03079671, 0.023690827, -0.008413859, 0.0047033424, -0.0052810446, 0.01657338, 0.024563454, -0.030499384, -0.018990576, 0.0054463344, 0.020575907, 0.039208937, 0.031965483, 0.004885721, -0.06687, -0.013703443, 0.027496627, -0.0025133842, -0.027762102, -0.013158729, -0.05296645, -0.05360073, -0.0008408661, 0.0024414156, 0.0070645744, -0.040313557, -0.015261535, 0.043685917, -0.007828796, -0.03457935, 0.032985788, -0.03384428, 0.034080952, 0.0053410316, 0.044654403, 0.012555433, 0.013349143, 0.038859505, -0.020886905, -0.017583791, 0.011669866, 0.07118911, -0.014512558, -0.017767997, 0.005258755, 0.065181494, 0.014562422, -0.0069688438, -0.021206157, 0.012943814, -0.02267383, 0.015946217, 0.012931206, 0.008331896, 0.03721322, 0.004921427, -0.021349158, -0.012539397, 0.010578592, -0.007625555, 0.03966235, -0.0059821703, 0.069541484, -0.029292068, -0.05502211, 0.025464186, 0.035883177, 0.023396071, -0.012818049, -0.038075373, 0.040520146, -0.045792546, -0.0065356577, -0.03080919, -0.050883353, -0.023948876, -0.017331537, -0.046329007, -0.010811301, -0.02474973, -0.018454095, 0.05722239, 0.052199498, -0.031837847, 0.013356756, 0.038071282, 0.016209107, -0.021631334, -0.07110046, -0.03248456, 0.013807417, -0.0074197794, -0.029997416, 0.01919033, 0.027348794, 0.039645806, 0.007967161, -0.03809813, 0.0160423, -0.042748455, 0.017663276, 0.049366184, 0.058369804, -0.020148922, 0.02606925, -0.023339735, 0.031971533, 0.0044489647, 0.049485162, -0.002210364, 0.019732716, -0.010272238, -0.01930834, 0.03679689, -0.0047868825, 0.014390804, -0.0013473762, 0.012068382, 0.057673264, -0.038248036, 0.026412403, -0.029656919, 0.052892245, 0.028378913, -0.053224042, -0.035067547, 0.03858901, -0.010612821, 0.063404515, 0.022995306, 0.043079715, 0.008154659, 0.0020788393, -0.020822236, -0.03419537, 0.03014116, -0.01126901, -0.0055735, -0.031364255, 0.09763444, 0.0029988366, -0.0038612017, -0.029135602, -0.0284109, 0.016516525, -0.048640005, -0.052782107, 0.060124148, -0.0331281, 0.00020099613, 0.007670795, 0.039007433, 0.011438875, -0.03798247, 0.07251368, -0.10493713, -0.012440571, -0.04784026, 0.091847315, -0.008954639, 0.011405357, 0.044656575, -0.02960114, -0.0631492, 0.010138322, -0.052519973, 0.022364477, 0.04497693, -0.02215466, 0.0040085465, 0.05552744, -0.0022802479, 0.03639836, 0.035444617, -0.006187745, 0.013439199, 0.023141233, -0.011721054, 0.027881794, 0.003183239, 0.035377827, 0.02307555, 0.022155536, 0.06646012, 0.00034252438, 0.046066817, -0.013846348, -0.04711143, 0.0827258, -0.0033793822, -0.014380787, 0.072765455, 0.02145621, -0.0060509234, -0.04357294, -0.014276718, 0.016859699, -0.0015413902, 0.0071431412, 0.05228771, -0.009522839, -0.033549387, 0.026711164, 0.06262849, -0.0045381216, -0.01713573, 0.03171424, -0.0189064, -0.054298118, 0.0035393604, 0.058591522, 0.004281476, -0.024826923, 0.006932565, 0.001536275, 0.009323445, 0.018368023, 0.04405243, -0.02197271, 0.039244488, -0.042006236, 0.061990347, -0.05577228, -0.043192063, 0.023017041, -0.001766361, -0.017261289, 0.027741149, 0.02374846, -0.008242895, -0.021746574, -0.014251995, -0.052525405, 0.056508355, -0.043846227, 0.0046719657, -0.031171218, 0.03551698, -0.0008056756, -0.046263363, -0.016014243, -0.0062489, 0.033502024, 0.013108148, -0.014529658, -0.035159457, -0.04768989, 0.01237282, -0.016382167, -0.038800187, 0.0039375667, -0.0057951333, -0.0044067046, -0.033396617, 0.049142107, -0.043993324, -0.031869013, -0.021976179, -0.039451923, -0.039665602, 0.012689676, -0.03509936, 0.012119722, -0.06049032, 0.020530544, -0.027632765, 0.050742794, -0.029515147, 0.00040212608, -0.00020038185, -0.0007572331, 0.023794169, -0.053958803, -0.033231232, 0.023071496, 0.023095462, -0.038462665, 0.036786225, -0.043206487, 0.019149372, -0.034675695, 0.014767376, 0.0171711, -0.056733456, 0.063607566, -0.001310259, 0.018391471, 0.0032008921, 0.04477307, 0.011280911, 0.030169686, -0.030361563, -0.013787077, -0.04089602, -0.02553568, -0.049791243, -0.0101445345, -0.02049604, -0.004772557, -0.0008995244, -0.075273186, 0.0149385, 0.03425566, -0.03726862, 0.027666105, 0.009159216, 0.0007773419, -0.025420614, -0.020667432, 0.051607307, 0.025311379, -0.0112892855, 0.026628075, -0.041920125, 0.0017633466, -0.033061784, -0.011978293, -0.04876346, 0.055646, 0.02884602, -0.06267428, -0.014925326, 0.00887345, 0.023422554, 0.015824085, 0.02745696, -0.04775704, 0.03675955, 0.037993077, -0.0141547695, -0.04755992, -0.013795883, 0.010011758, 0.0008233586, 0.023276094, -0.04641673, 0.043511868, -0.0357315, 0.029770745, -0.024471441, 0.019530252, -0.048642617, 0.009123111, 0.09049571, -0.007810276, 0.019991295, 0.009613108, -0.06786502, 0.031211661, -0.059133086, -0.016077667, 0.07394571, 0.013153806, 0.013427839, 0.053642545, 0.02972305, 0.030581623, 0.037409455, -0.035497088, -0.0013021666, -0.049491595, -0.022953954, 0.073395826, 0.023848172, 0.020673674, -0.056810036, 0.012071428, -0.024545342, 0.102539755, 0.024359241, -0.0433298, 0.009678112, -0.007870509, -0.0067303227, -0.0035220021, -0.029202413, -0.0034561132, -0.0233563, -0.033645067, 0.004309438, -0.03485597, -0.058456376, 0.0076577887, 0.0059376, 0.028028965, -0.0024354167, -0.06851133, 0.0030366029, -0.023562018, -0.05487349, -0.013780735, 0.049922768, -0.021796932, 0.016969915, 0.0066333907, 0.005752399, -0.05835015, 0.044497885, -6.0632963e-05, -0.012760124, 0.021128055, -0.0017248505, 0.0121044535, -0.06637155, 0.013165711, 0.023296472, -0.04313489 ] }, { "values": [ 0.0100394795, -0.028169265, -0.02283359, -0.030206563, 0.033148356, 0.007187533, 0.049979884, -0.055711713, -0.031077432, -0.004816323, 0.028385974, 0.051292334, 0.026544275, -0.0020095229, -0.07325445, -0.020058144, 0.037220646, -0.00024213515, -0.05944705, -0.017606815, 0.044990465, 0.005673987, 0.023470283, -0.047157962, -0.002387876, 0.055236276, 0.024019366, -0.013347797, 0.02953559, -0.019590823, 0.0010414476, 0.0131117515, -0.06441958, -0.053522307, 0.10109361, -0.0043976945, -0.035525728, 0.01946528, 0.05335069, -0.059833564, -0.060512863, -0.0030705186, -0.045079965, 0.029490326, -0.0333158, 0.02455635, 0.051431946, 0.00452456, -0.0052342387, 0.039974898, 0.019645808, 0.017561566, -0.028609678, -0.00855732, -0.020139996, -0.029426906, -0.06193641, -0.08062015, 0.066642284, -0.0077405022, 0.011247922, 0.017687816, -0.071242556, -0.021448655, 0.015003332, 0.010637917, -0.042129423, -0.026969954, -0.05910804, 0.017946953, 0.009199456, -0.0013871224, -0.044372164, -0.0026912454, -0.015210605, 0.009728152, -0.016759636, 0.026315402, -0.029378897, 0.029423282, -0.039275642, -0.0046001263, 0.064223915, 0.04458849, 0.010404108, 0.060059313, -0.009732831, -0.0063362275, -0.03528691, -0.012089496, 0.06144222, -0.02722832, -0.0074398424, 0.00954122, 0.008477727, -0.077469595, -0.041869875, -0.07944063, -0.015066724, 0.094743244, -0.04465941, 0.0010148877, -0.046562076, -0.076229885, 0.06452572, 0.012626056, 0.07604989, -0.058310498, 0.0009740286, 0.073076874, -0.03940355, -0.028759763, -0.03121211, -0.015673643, 0.009452792, 0.012928664, 0.030507507, -0.03459332, -0.027039787, -0.010328895, 0.018448936, -0.017968187, -0.06966598, 0.06598531, 0.014282421, 0.012393401, -0.03958312, -0.055118557, -0.0038606594, -0.08509177, 0.045511343, -0.14330797, 0.003069527, -0.009297804, -0.040991426, -0.018513076, 0.047111753, 0.029054025, -0.010927329, -0.0076661403, 0.0040454236, -0.019577244, -0.04432059, 0.055171296, 0.007783249, 0.03875605, -0.0006997767, -0.012360105, -0.073516995, 0.042482354, -0.06204737, -0.01671313, -0.0048470586, 0.016203964, -0.030312877, 0.06114368, 0.08243589, -0.020608202, 0.025208995, -0.03710567, 0.022391075, -0.06621117, -0.008983702, 0.01644578, -0.07367301, 0.0014124069, 0.06024645, -0.035160292, -0.0107411845, -0.028354334, 0.034330234, -0.0028185064, -0.04893719, -0.112048976, 0.012518367, 0.03538847, -0.02677412, -0.00023488996, 0.016806763, -0.0010542371, 0.04943779, -0.011902322, -0.035898637, 0.007357591, -0.037824985, -0.042129353, -0.056163497, 0.034841172, 0.02608136, 0.050391372, -0.0026017614, 0.009391003, -0.006339833, 0.01536454, 0.0038831003, 0.025417194, 0.06958397, -0.018737832, 0.006691003, -0.035009824, 0.033156004, 0.010385679, -0.013345024, -0.0029076631, 0.020338738, -0.031084944, -0.035676904, -0.002925167, 0.03748017, 0.02051524, -0.036058724, -0.0019315755, -0.0006040939, -0.00230933, -0.052548096, 0.048659567, 0.06404532, 0.02654008, -0.0050124945, -0.038502935, -0.05002132, 0.0066688997, 0.01088466, -0.045822848, 0.04977681, 0.02867469, -0.038319584, -0.020370917, -0.02564122, 0.039237954, -0.03326763, 0.04600271, 0.0462833, -0.009862381, 0.015386345, 0.034868404, 0.034327716, -0.0025695944, -0.026439697, -0.041259274, -0.0540924, 0.009685272, 0.0080496995, -0.0059168674, 0.0162516, 0.045147326, 0.06478638, 0.07151235, -0.048655704, 0.0108973775, -0.028646223, -0.020032274, -0.042998895, -0.0079320315, -0.020202653, -0.029508619, 0.01997818, -0.08279635, 0.025454383, -0.0061330004, 0.025353234, 0.0033902565, -0.031259034, -0.07809462, 0.0097136805, -0.08529649, -0.024042137, -0.001842992, 0.0965759, 0.023274034, -0.006484556, 0.0023993906, -0.049959544, -0.041403126, 0.044442296, 0.027932076, -0.02739809, 0.034681965, -0.018892735, -0.055997387, 0.038826004, -0.01608832, 0.0040213554, -0.006313527, -0.0019251904, -0.024312155, 0.024221515, 0.026128419, -0.0089737605, -0.04477203, 0.044777162, 0.017238142, 0.019888515, 0.02003409, 0.0311394, -0.014231215, 0.018829733, 0.028109726, -0.006929535, -0.0024749886, 0.010662501, 0.07248294, -0.028904341, -0.004749029, -0.027597344, 0.029302042, -0.053987555, -0.04715763, -0.0054032626, 0.031989075, 9.390028e-05, 0.04875872, -0.00942549, -0.014176345, 0.0014881697, 0.04683597, -0.087763675, 0.03998402, -0.031167945, -0.024611492, 0.014576508, 0.028089007, -0.009187764, -0.030394, 0.01176797, -0.03012094, 0.019719446, 0.0032583685, 0.0048321127, -0.038046625, 0.031215448, -0.004384774, 0.019449078, 0.01719694, -0.014424646, -0.009862864, -0.00667877, 0.036754806, 0.024168456, -0.020027107, 0.05421563, 0.005892386, 0.03761184, -0.014430903, 0.011035713, -0.0800846, 0.053112898, -0.028963618, 0.0674898, -0.058008324, -0.016036697, 0.06943826, -0.004887353, 0.015542858, 0.04043993, 0.02328545, 0.033950523, 0.02748459, 0.03869038, 0.014951275, -0.047879916, 0.007341606, 0.021891037, -0.007996407, -0.00032167087, -0.022020405, 0.03376537, 0.001443205, -0.038534045, -0.041703936, 0.023737641, 0.03355129, 0.03205041, 0.004428564, -0.0077440073, -0.07097657, -0.017350696, 0.0422818, -0.003117791, -0.052127633, -0.016971752, -0.047707103, -0.045422383, 0.010729243, -0.0022819394, 0.0024116102, -0.043436617, -0.030522685, 0.035617147, -0.012274701, -0.012991408, 0.021174662, -0.007863626, 0.013550712, 0.0042471653, 0.00936308, -0.021753049, -0.023093669, 0.043297827, -0.023176672, -0.017568806, 0.017360253, 0.07560763, 0.0064983624, -0.01549517, -0.01875966, 0.053926457, -0.006495622, 0.0061963005, -0.02182898, 0.026169393, -0.021997817, -0.008452133, -0.00031174236, -0.00013924179, 0.0051130084, -0.012770708, -0.035691712, -0.007834812, 0.023766585, -0.0107677365, 0.03759792, 0.0055889725, 0.044981133, -0.016276885, -0.080361135, 0.021161301, 0.012501849, 0.0039457073, -0.00054341997, -0.029595012, 0.044426546, -0.06236593, -0.01229547, -0.03652803, -0.04520213, -0.04097206, -0.017452782, -0.060253613, -0.010878814, -0.0029264349, -0.012364543, 0.052980717, 0.037897706, -0.042334564, 0.022798436, 0.057837203, -0.00063170353, -0.053935904, -0.0467385, 0.005070834, 0.033006098, -0.011500655, -0.029847797, 0.010444777, 0.008519123, 0.050465453, 0.01681174, -0.053992018, 0.026982844, -0.02628759, 0.008893591, 0.04612146, 0.06422834, 0.0011814222, 0.008458911, -0.013220631, 0.021290917, 0.01065054, 0.023282621, -0.007165646, -0.0059979837, 0.0049114306, -0.012492125, 0.048289396, 0.0065515796, 0.029097803, -0.02854769, 0.028903196, 0.05928857, -0.03662085, 0.032204494, -0.017747328, 0.04645566, 0.02018811, -0.07143943, -0.040699027, 0.018689506, -0.011059088, 0.028388008, 0.0038541602, 0.030294636, 0.0076692402, -0.003813976, -0.01752684, -0.05132891, 0.037824962, -0.01247864, -0.0033308712, -0.027551781, 0.08502341, 0.011363321, -0.020915478, -0.032700192, -0.024378441, 0.014361772, -0.02578607, -0.031687263, 0.057448372, -0.019583886, -0.021994516, 0.012483593, 0.055166293, -0.0060005584, -0.04505394, 0.0806927, -0.09039126, -0.015568861, -0.057428975, 0.0921729, -0.040044602, 0.002434879, 0.051762097, -0.057298686, -0.056558896, 0.020549858, -0.06385114, 0.01345712, 0.027556214, -0.0146649955, 0.0006629798, 0.04748075, 0.013841026, 0.03866559, 0.034635562, -0.0028626875, 0.021464132, 0.012936572, -0.024593173, 0.040392086, 0.019717438, 0.012913927, 0.020233283, 0.018625846, 0.056960784, 0.0028607717, 0.044150703, 0.0046510133, -0.062827796, 0.07550542, -0.018044395, -0.03159365, 0.06979641, 0.022392545, -0.04499504, -0.043358963, -0.021853017, 0.009192793, -0.020207833, 0.016309703, 0.009048481, 0.0042404872, -0.022295356, 0.05227575, 0.043382052, -0.019828588, 0.003228428, 0.048017435, -0.017914128, -0.042654816, -0.007403102, 0.028007893, 0.0017403405, -0.027254678, -0.008529204, 0.010965914, 0.007856529, -0.0035670353, 0.04125704, -0.03804004, 0.03733154, -0.02687159, 0.09374302, -0.043460436, -0.06336119, 0.025435526, -0.02766403, -0.030995471, 0.010209666, 0.0065220133, -0.0075476696, 0.0058267605, -0.029038219, -0.061042815, 0.051202904, -0.037895624, -0.0049416022, -0.042755842, 0.014344588, -0.0139938835, -0.029970028, -0.015780687, -0.03477673, 0.049831506, 0.014341703, -0.020878812, -0.026829353, -0.036865395, 0.039243884, -0.032902233, -0.013527704, -0.003080077, 0.0141605595, -0.01300867, -0.039619997, 0.06197231, -0.028192353, -0.0420699, 0.0032318563, -0.051217947, -0.015933214, 0.03376386, -0.036062453, 0.02744134, -0.07926664, 0.016108664, -0.0018629628, 0.061960697, -0.019345209, 0.014137167, -0.0003860611, -0.034144204, 0.029661857, -0.054526962, -0.027311422, 0.03742833, 0.042695, -0.051959638, 0.04654075, -0.036890015, 0.024065336, -0.012911466, 0.0028890218, 0.018234884, -0.047572773, 0.077207394, 0.009941492, 0.008423697, 0.0054878998, 0.02162774, -0.007699577, -0.00056665594, -0.013860053, -0.044985943, -0.045185678, -0.010032354, -0.027174719, -0.007921049, -0.002195479, -0.023866003, -0.024958286, -0.07016304, 0.0046109823, 0.053091213, -0.028480886, 0.006869574, -0.003962861, 0.026652314, -0.015338839, -0.037954424, 0.016985172, 0.028577823, 0.011435028, 0.060483996, -0.05694811, 0.009970106, -0.016846746, -0.00090510433, -0.04043392, 0.028227134, 0.029826226, -0.026852451, 0.0040469673, 0.027967716, 0.021640219, 0.0012705943, 0.037168298, -0.04381771, 0.011199039, 0.021542395, 0.0031567316, -0.029378487, -0.017429005, -0.0009552876, -0.012659076, 0.018756578, -0.037452348, 0.039025262, -0.039755113, 0.007595763, -0.033437327, 0.021651533, -0.073066145, 0.009655558, 0.075868756, 0.0028296697, 0.00090287457, 0.02135973, -0.08471044, 0.038638826, -0.042372838, -0.027641488, 0.06438457, -0.006551919, 0.035111707, 0.052512094, 0.03460487, 0.024581086, 0.01943178, 0.0057285205, -0.0022783757, -0.048157014, -0.0031174624, 0.06772642, 0.010164901, 0.03025148, -0.06495151, -0.015189513, -0.030596346, 0.093664445, 0.016192537, -0.05442839, 0.010215336, -0.0026723896, -0.007051476, -0.010321402, -0.06500213, -0.004621058, -0.031629745, -0.02093082, 0.011642887, -0.013152403, -0.045489654, 0.02713373, 0.03840053, 0.0138628185, -0.022431536, -0.055531338, 0.0058291876, -0.036977805, -0.059184607, 0.0047007455, 0.064959414, -0.029589962, 0.023898223, 9.477786e-06, -0.015120992, -0.033953685, 0.035699204, 0.0033100538, -0.050599165, 0.039123483, -0.015713219, 0.014738969, -0.039467916, 0.03700292, 0.045330662, -0.043464042 ] }, { "values": [ 0.006773169, -0.03596649, -0.023375679, -0.01952164, 0.01715601, 0.03294051, 0.030841313, -0.041818522, 0.004953114, 0.0054383236, 0.033732586, 0.030843623, 0.023161216, 0.0013757764, -0.06128759, -0.030923147, 0.029025936, -0.009807546, -0.0733151, -0.023511384, 0.06625126, 0.004146391, 0.0068260124, -0.020929607, -0.016431939, 0.056907576, 0.028339142, -0.010489145, 0.023116535, -0.0041149543, -0.013113606, 0.011751339, -0.046674483, -0.05058429, 0.060001567, 0.0069729034, -0.05613776, 0.016449146, 0.042160988, -0.06666945, -0.08558849, 0.0075271083, -0.034829125, 0.04348086, -0.029505545, 0.017928617, 0.07295312, 0.0054883687, -0.011595304, 0.028748471, 0.007962828, -0.0011036694, -0.020401686, -0.007014148, -0.039959405, -0.029472629, -0.059273936, -0.046356555, 0.07057355, -0.01691859, -0.0036568858, 0.019128744, -0.05919058, -0.005972861, 0.022265779, -0.0043616225, -0.040038854, 0.0034652182, -0.036105525, 0.017870527, 0.0035004916, -0.015430906, -0.0448166, 0.02051171, -0.014944912, 0.0035990907, -0.011127903, 0.004978713, -0.04628246, 0.037994888, -0.0010433148, 0.011822782, 0.041126993, 0.02136714, -0.014342225, 0.041956935, 0.012657773, -0.02178673, -0.03223098, -0.0056132614, 0.059022594, -0.020871807, -0.02041185, 0.0016010285, 0.015389752, -0.0629388, -0.059492763, -0.06904748, -0.0023738057, 0.04753932, -0.036051057, -0.015317653, -0.057073258, -0.078430824, 0.0526464, -0.023287196, 0.058467742, -0.035116676, -0.022968993, 0.03711473, -0.043529894, -0.031035172, -0.04350286, -0.020073898, -0.016168542, 0.0018691599, 0.0052681644, -0.021542089, -0.0370558, 0.007185613, 0.00669805, 0.00080618716, -0.06849296, 0.055590596, 0.033233613, 0.01825951, -0.030570488, -0.049941927, -0.00407196, -0.06482432, 0.051918868, -0.13655587, 0.023523375, -0.025044728, -0.02699205, -0.002319933, 0.07922799, -4.5355962e-05, 0.0064908904, -0.0050374973, 0.008094667, -0.029435562, -0.0502033, 0.060373925, 0.004868798, 0.035542116, -0.012480315, -0.02285488, -0.07042423, 0.048873544, -0.07196399, -0.047138877, 0.0036077083, 0.01795981, -0.042190246, 0.06616173, 0.06331551, -0.034671042, 0.047533393, -0.036191512, 0.021238586, -0.04412429, -0.027603308, 0.012481369, -0.07063714, 0.04280205, 0.04199986, -0.04546805, -0.032103363, -0.009087888, 0.02600176, -0.020937767, -0.077748865, -0.08773882, -0.009606557, 0.02159535, 0.002150971, -0.016192958, 0.0015399073, -0.024029575, 0.06673717, 0.028837457, -0.05329965, -0.013500047, -0.027954824, -0.055383626, -0.055343337, 0.057977855, 0.026086163, 0.06335843, 0.01004813, 0.013085411, -0.004405597, 0.015912617, -0.0072440207, 0.008129592, 0.049914297, 7.7179e-06, -0.014524648, -0.042948287, 0.025980735, 0.030196603, -0.015442294, 0.026917845, -0.0009684368, 0.0056500747, -0.036081597, -0.017082611, 0.04472301, 0.0074871895, -0.018739728, -0.005982642, 0.014500537, -0.025062134, -0.04706685, 0.032444328, 0.07796619, 0.014285185, 0.016207276, -0.024574203, -0.06965619, -0.0072396253, -0.00090273714, -0.030010011, 0.021069333, 0.0337437, -0.035615996, 0.006714309, -0.028619476, 0.029552246, -5.8937658e-05, 0.04117794, 0.042971794, -0.00044949097, 0.019894304, 0.06126496, 0.027907781, 0.0042025237, -0.0014569239, -0.0053576156, -0.042355765, -0.015561025, 0.009253353, 0.010482758, 0.011492793, 0.06105922, 0.054646943, 0.080809996, -0.021220356, -1.2233013e-05, -0.060515586, -0.009920793, -0.063386634, -0.027375279, -0.023147332, -0.032327183, 0.03243468, -0.081061505, 0.031797335, -0.003431017, 0.031572416, 0.0055801324, -0.017108437, -0.072472885, 0.024026688, -0.080013864, -0.03108504, -0.00249453, 0.07756311, 0.009046139, -0.021030791, -0.024095967, -0.051178984, -0.058697965, 0.018285675, 0.033198226, -0.047986902, 0.019438174, -0.012235, -0.06633206, 0.048530515, -0.024034599, 0.022334665, 0.0069203363, -0.0055503603, -0.018833969, 0.01850369, 0.036524884, -0.017321192, -0.047146425, 0.028377311, 0.03851109, 0.00014427703, -0.0012513833, 0.025693506, 0.015012849, 0.020788647, 0.020781942, -0.027715646, -0.0054264762, 0.02210105, 0.066137336, -0.05906796, 0.0027824133, 0.00034251017, 0.019378033, -0.050329424, -0.007277055, -0.0082805, 0.024316832, 0.004090751, 0.028661894, -0.009916182, -0.009307005, -0.010808839, 0.031649157, -0.09087399, 0.028695226, -0.045035485, -0.0028084964, 0.0410541, 0.022374412, 0.0072830385, -0.049836963, 0.037136655, -0.007073246, 0.022610907, 0.02200077, 0.0016742452, -0.03989679, 0.040469024, 0.017730236, 0.03561745, 0.008986991, -0.002027464, -0.026849058, 0.005444479, 0.031427808, 0.054795466, -0.006939709, 0.057743937, -0.008373659, 0.051581983, -0.0065261666, 0.00052190217, -0.0824137, 0.07011986, -0.016316965, 0.05579863, -0.05568848, -0.01001863, 0.08445197, 0.0007456126, 0.011178005, 0.04707148, 0.011875423, 0.017357225, 0.007670573, 0.025708219, 0.0038166593, -0.04412574, 0.0073029264, 0.014830076, -0.0077233203, 0.015385953, -0.013514856, 0.026646497, 0.01836393, -0.031123918, -0.05630865, 0.020662017, 0.026335677, 0.037048213, 0.0063052475, -0.009983531, -0.042620365, -0.0012734672, 0.049611684, 0.0051986957, -0.06149854, 0.0031282678, -0.04962802, -0.031750787, 0.015841626, -0.0105292555, 0.013344359, -0.03079019, -0.0033824476, 0.03957336, -0.007719569, -0.032905396, 0.042049352, -0.009018225, 0.026253693, -0.008247172, 0.03630044, -0.03911672, -0.02467352, 0.050161637, -0.039961744, -0.025954328, 0.023088826, 0.07378179, -0.013275774, -0.016301045, -0.010735291, 0.050552733, -0.013161894, 0.008914698, -0.030825049, 0.029376576, -0.009023453, -0.0065642195, -0.005530596, -0.02135667, -0.0025968433, 0.00817268, -0.027601542, -0.0026931749, -0.0045082993, -0.0022030438, 0.0632331, 0.027586784, 0.032580208, -0.018416474, -0.06738193, 0.003358278, 0.03741144, 0.027457682, 0.015642414, -0.03834364, 0.039231576, -0.05850779, -0.0042271144, -0.031568836, -0.025024584, -0.025976887, 0.0076942327, -0.06925215, -0.011024664, -0.014323737, -0.0042792843, 0.046923514, 0.043911323, -0.028399816, 0.010912417, 0.059077606, 0.010544194, -0.04272513, -0.063018814, -0.0055918065, 0.014678522, -0.013568864, 0.0010199022, -0.00057611766, 0.034251593, 0.04243825, 0.017650401, -0.08415828, 0.017510409, -0.051278416, 0.0035826024, 0.05092789, 0.092989415, -0.0118438685, 0.011688572, -0.03706894, 0.0319262, 0.03981193, 0.073208086, -0.018853176, 0.014530381, 0.018506255, -0.022481723, 0.04218313, -0.013693691, 0.02866652, 0.0002508947, 0.042087857, 0.061917022, -0.04714854, 0.037914738, -0.00983966, 0.04982237, 0.04155073, -0.059078798, -0.007419063, 0.04216576, -0.0005489906, 0.046772804, 0.016043961, 0.04329513, 0.010744788, -0.0004778829, -0.009940041, -0.041926425, 0.0025121977, -0.011738607, -0.0061419727, -0.012319675, 0.07270968, -0.013927883, -0.022805413, -0.039599057, 0.011485065, 0.020343969, -0.043488145, -0.034128252, 0.04106623, -0.02464632, -0.0018808675, 0.007799973, 0.038145095, 0.010913695, -0.028143289, 0.053820793, -0.1205391, -0.0054206722, -0.03896085, 0.09468643, -0.012942707, 0.032530706, 0.070634685, -0.05148306, -0.06565653, 0.004044283, -0.042993847, 0.019983219, 0.043648068, 0.0073881205, -0.0046479516, 0.06038133, -0.006983318, 0.030812426, 0.02081983, -0.02508887, 0.008757512, 0.017521996, -0.014508058, 0.029266398, 0.027509486, 0.030166987, 0.022332266, 0.0033101572, 0.06265117, -0.010807892, 0.04175661, 0.01409916, -0.06390468, 0.06329634, 0.023772368, -0.034341354, 0.07623486, 0.02219801, -0.012272339, -0.038138345, -0.025412425, -0.006835144, -0.041672025, 0.03382033, 0.019873617, 0.00043994514, -0.01199567, 0.038838033, 0.03296225, -0.03317548, 0.0040986496, 0.016038004, -0.043596685, -0.059504557, 0.018676922, 0.044333342, -0.0077790427, -0.013547977, -0.028338563, -0.0057353307, 0.009632717, -0.007353825, 0.049824383, -0.03818904, 0.030911243, -0.046204526, 0.08811146, -0.046175174, -0.05991578, 0.041311335, -0.03681471, -0.035395756, 0.01217002, -0.009621344, -0.021499278, 0.00050455774, -0.04251636, -0.039004337, 0.04983597, -0.020763723, 0.021996707, -0.03368926, 0.02652301, -0.01458002, -0.01200076, -0.008262093, 0.011968331, 0.04899792, -0.0037118855, -0.02678105, -0.029145647, -0.04480865, 0.05637903, -0.033991504, -0.016349312, 0.0115927765, 0.029099207, -0.005758944, -0.05362656, 0.041559495, -0.036536857, -0.03447371, 0.028813329, -0.029660093, 0.002447367, 0.025535084, -0.03745872, 0.040569697, -0.07472838, 0.0334741, -0.022943446, 0.06290925, -0.023230877, 0.03324373, -0.009943212, -0.035167012, 0.030122932, -0.06296642, -0.0072604213, 0.033567745, 0.031437248, -0.05529861, 0.04019262, -0.046381883, 0.033431567, -0.02024866, -0.0067233425, 0.0077973483, -0.048401114, 0.09285156, -0.004485389, 0.023220934, -0.00057114323, 0.022751043, 0.007757144, 0.026562104, -0.017098473, -0.028518299, -0.057014387, -0.006471831, -0.012260685, -0.018161902, 0.006542331, 0.000802999, -0.023604771, -0.06971498, 0.010307053, 0.04458902, -0.02360353, 0.020300064, 0.00108465, 0.010649725, -0.026128594, -0.034798674, 0.042860176, 0.03991858, 0.01280602, 0.045886584, -0.05521178, 0.0035806533, -0.0043278225, -0.023330197, -0.024585461, 0.023508457, 0.033626735, -0.02826975, 0.003583354, 0.0060981233, 0.03331521, -0.0035312444, 0.025207043, -0.046488713, 0.0120667685, 0.023914965, 0.010155519, -0.050964806, 0.0050189164, 0.0069437684, -0.012978709, 0.021231197, -0.039130684, 0.009123317, -0.025422288, 0.028411513, -0.038026113, 0.005199903, -0.065903805, -0.025550418, 0.075610876, 0.00115916, 0.01498976, 0.03329731, -0.08129192, 0.030054301, -0.038318772, -0.0043492946, 0.070052445, -0.005952278, 0.027333485, 0.080042295, 0.020380689, 0.034203015, 0.016172124, -0.010658549, 0.018748999, -0.056162313, -0.009831977, 0.06546732, -0.00060416595, -0.0119689135, -0.060495418, -0.003281136, -0.04733761, 0.09017478, 0.018260991, -0.049052354, 0.033010572, -0.014824088, -0.0024968453, -0.014575986, -0.02234232, -0.000377129, -0.061885796, 0.007413841, 0.0051597743, -0.01897131, -0.047689818, -0.009853582, 0.03226179, 0.017872829, -0.009588027, -0.02726541, -0.005744144, -0.047411967, -0.08441516, 0.006450691, 0.051275928, -0.001800797, 0.03244446, 0.019790428, -0.014925252, -0.041425686, 0.044325586, 0.023931125, -0.050658725, 0.047273844, -0.013709744, 0.0039731613, -0.051777117, 0.01794185, 0.03593403, -0.038390025 ] }, { "values": [ 0.00020568808, -0.030333856, -0.048208047, -0.035064183, 0.031425558, 0.03072838, 0.025329074, -0.034139574, 0.0053666392, 0.018697415, 0.013522107, 0.0449861, 0.016895115, 0.017196791, -0.05142721, -0.06491395, 0.010288703, 0.0048549375, -0.04101746, -0.040651243, 0.05170163, -0.007856199, 0.007186803, -0.051577315, -0.025446648, 0.06626639, 0.044232387, -0.011377359, 0.04237298, -0.0067535, -0.0073508583, 0.010768102, -0.027650654, -0.039842468, 0.08449167, -0.022480108, -0.062460925, 0.016254263, 0.036249153, -0.047725704, -0.07897143, -0.0070590433, -0.03780944, 0.041764967, -0.03639933, 0.009854959, 0.075252034, -0.0041372837, -0.03835294, 0.039604086, 0.0074158353, 0.014983553, -0.03741776, -0.0069057397, -0.0687615, -0.036289155, -0.04428661, -0.06805314, 0.07661877, -0.028650753, -0.0052803564, 0.0021068626, -0.042306833, 0.0037054967, 0.02816679, 0.0012076963, -0.03182262, -0.0025812746, -0.0297959, 0.00092896895, -0.0069312323, 0.0022470301, -0.026911542, 0.014456071, -0.030311918, 0.022279792, -0.0047501703, 0.003550779, -0.028121209, 0.027402127, -0.034876358, 0.0034298084, 0.050850682, 0.019103758, -0.015125485, 0.038778476, -0.0029769682, 0.0097278925, -0.020057295, 0.017726392, 0.0741411, -0.04191117, -0.0060270713, 0.019736925, 0.018426565, -0.057656188, -0.054617494, -0.05567174, -0.0014073953, 0.06670953, -0.040474456, 0.0011388648, -0.06250004, -0.06581739, 0.055862572, -0.02771435, 0.063123636, -0.043569382, -0.030823205, 0.046067726, -0.013436344, -0.02452717, -0.04026192, -0.04581358, 0.0069855675, 0.010962578, 0.015554028, -0.016751152, -0.04124303, 0.017808266, 0.022959825, 0.013281869, -0.051503394, 0.05387377, 0.029178863, 0.013914188, -0.015233715, -0.04316343, 0.0027931577, -0.071412936, 0.05001035, -0.12597758, 0.022557842, -0.015212928, -0.016539022, -0.002197437, 0.05121831, 0.01930228, 0.0042264313, -0.011637129, 0.015097921, 0.008203191, -0.023906795, 0.039599728, 0.0016701614, 0.020405311, 0.008413724, -0.019533176, -0.06634376, 0.041675694, -0.090135865, -0.043911632, 0.01817857, 0.012761545, -0.05966512, 0.02211402, 0.071307346, -0.025535898, 0.053560562, -0.036556643, 0.028913463, -0.0394885, -0.023491593, 0.017731093, -0.075314194, 0.046375863, 0.06712155, -0.062310655, 0.011769617, -0.017162837, 0.034913387, -0.016800236, -0.054283105, -0.10738516, 0.022632658, 0.0152145205, -0.009909526, -0.00030745388, 0.007775753, -0.026717218, 0.05606202, 0.00080907554, -0.053396855, -0.032615498, -0.01775602, -0.026398253, -0.054851457, 0.060942795, 0.01663017, 0.06181311, 0.0070745833, 0.008030007, 0.013228262, 0.02329429, -0.0067415736, 0.018360851, 0.054558884, -0.016556544, -0.003360221, -0.06481569, 0.018410044, 0.012368733, -0.001091644, 0.012063148, 0.010574981, 0.004553551, -0.056040637, -0.002678117, 0.03945083, 0.01807056, -0.016960671, -0.012584017, 0.006767088, -0.02156028, -0.025079938, 0.017954344, 0.07235678, 0.04006207, 0.0038894871, -0.034203146, -0.054093193, 0.0154236425, -0.006916873, -0.022913465, 0.0014534211, 0.008330774, -0.010047721, 0.009738151, -0.03138973, 0.020519303, -0.007433895, 0.023948375, 0.04279153, -0.011720056, 0.016866542, 0.0648052, 0.016585495, -0.003981625, 0.011753186, -0.022327794, -0.034067303, -0.004514083, 0.01920062, 0.0052369004, 0.017117387, 0.025027687, 0.06293047, 0.114400014, -0.031742547, 0.0020152647, -0.057970267, -0.0137521485, -0.044983, -0.035168946, -0.01570623, -0.048463684, 0.011362348, -0.07617547, 0.013021113, -0.016578384, 0.022837969, 0.0071938704, -0.027155032, -0.076163776, 0.014070597, -0.08917471, -0.026468607, -0.0148374075, 0.07833783, -0.008935671, -0.012461023, -0.025777038, -0.046692494, -0.07205409, 0.011108257, 0.027145786, -0.03940224, 0.03652392, -0.028849527, -0.07460538, 0.025920453, -0.03279305, 0.015448856, 0.020989647, 0.009572546, -0.026564727, 0.015141715, 0.0073610614, -0.0065793106, -0.055281978, 0.03869765, 0.04403118, 0.032151673, 0.015145629, 0.03182328, -0.0030841837, 0.027197523, 0.036712307, -0.023804141, -0.016240917, 0.02718462, 0.061696574, -0.054823644, 0.0005786232, -0.010411115, 0.03440969, -0.03559074, -0.005578902, -0.02115758, 0.02535165, 0.025712023, 0.04894457, -0.011920055, 0.00036083368, -0.020457393, 0.014371604, -0.07654722, 0.03278368, -0.05173729, -0.015488358, 0.053898796, 0.030429099, -0.012089308, -0.05424618, 0.023245005, -0.008188393, 0.025909686, 0.02153782, 0.013554573, -0.046538617, 0.056783002, 0.006052315, 0.03713644, -0.01854174, -0.009301939, -0.04224964, -0.01046206, 0.03501221, 0.063175805, 0.0019791804, 0.060185004, 0.020273142, 0.04217021, -0.015647702, -0.011587022, -0.06819292, 0.047514264, 0.0046208412, 0.069012694, -0.040830363, -0.015889557, 0.06686946, 0.01607772, 0.021616304, 0.06390488, 0.0152001055, 0.024523081, 0.02101924, 0.026816662, -0.0011007377, -0.05364276, 0.014006375, 0.0020120386, -0.009037687, -0.0066666463, -0.009313049, 0.03724947, 0.0117441, -0.033497993, -0.049824048, 0.0142582, 0.028565813, 0.043647584, -0.00079769775, 0.0010180379, -0.049827054, -0.0019485094, 0.0382239, 0.010977032, -0.036159627, -0.01075071, -0.056644462, -0.03734472, 0.0113500515, 0.0039082197, 0.026268678, -0.03538265, -0.021101736, 0.014484838, -0.02981515, -0.036490344, 0.029310524, 0.0034718746, 0.022232221, -0.0062982487, 0.03110806, -0.027575368, -0.012168182, 0.04037348, -0.025040573, -0.029679053, 0.029191297, 0.051416278, 0.0021767006, -0.00419879, -0.020955028, 0.05508823, -0.008525845, 0.00872208, -0.014303994, 0.02741187, -0.007362996, 0.012215583, -0.009539895, 0.0015075088, 0.00445663, 0.010245534, -0.027068637, -0.016414342, -0.0063422867, -0.014981676, 0.05496234, 0.011333864, 0.061946806, 0.0047797402, -0.05886199, 0.013041307, 0.0123139275, 0.045585863, 0.026477035, -0.014927209, 0.053783912, -0.05540396, -0.0016290197, 0.006088447, -0.035841096, -0.015904948, -0.0030975398, -0.062099222, -0.011286909, -0.019338906, -0.009374681, 0.06238735, 0.04078009, -0.046839517, 0.011273365, 0.05007828, -0.0015136742, -0.032916814, -0.055751815, 0.008871704, 0.004282029, -0.004016206, -0.006147664, 0.022261893, 0.05489894, 0.037729744, 0.028594289, -0.07933494, 0.00021734863, -0.039112415, 0.005732193, 0.040410213, 0.10296357, 0.0006531629, 0.0008060907, -0.039935816, 0.03333385, 0.024938855, 0.0668786, -0.0149414055, 0.001407724, -0.007211865, -0.017751113, 0.03674393, 0.008380235, 0.05046805, -0.022624496, 0.023153711, 0.06886775, -0.049116015, 0.024751307, -0.01972493, 0.06311206, 0.026811194, -0.056900527, -0.021109954, 0.05011665, -0.028155511, 0.047361016, 0.0048428243, 0.05117181, 0.016904535, -0.007047656, -0.027556587, -0.06233976, 0.012340871, -0.007441035, -0.022779046, -0.0123059405, 0.08618805, 0.0039197123, -0.033286523, -0.029567637, 0.021295236, 0.027680228, -0.034888797, -0.02058542, 0.046317067, -0.0061735148, -0.02185625, 0.0126769105, 0.046341367, 0.018966665, -0.041894425, 0.07892376, -0.11253412, -0.0037573194, -0.042065293, 0.09738166, -0.05363772, 0.028112112, 0.0629721, -0.056396622, -0.07137727, 0.0020011528, -0.058805693, 0.007784667, 0.04770964, 0.0028220238, 0.0019755121, 0.08774802, -0.009793649, 0.019863838, 0.012173238, 0.0001603581, -0.007465932, 0.026807861, -0.0018251054, 0.038854443, 0.015037426, 0.02749237, 0.039051674, 0.030476294, 0.049544323, 0.0006691259, 0.024979608, 0.018467037, -0.046097185, 0.09214085, 0.035562374, -0.03585335, 0.067977116, 0.011519672, -0.0013910026, -0.02945662, -0.029878646, -0.0016964921, -0.0110968705, 0.023564965, 0.025954073, -0.0022155442, -0.0070256023, 0.046658922, 0.018223722, -0.04119677, -0.0010122843, 0.023415439, -0.055635165, -0.05547483, 0.00982685, 0.026718948, -0.004616593, -0.01636223, -0.022935154, 0.011628676, -0.016412774, 0.015657973, 0.054107677, -0.032465305, 0.03876424, -0.020668048, 0.06651792, -0.03917163, -0.059037834, 0.016225042, -0.013130732, -0.03057823, 0.02750371, -0.013475013, -0.031695493, -0.018187795, -0.03302021, -0.05265759, 0.041984607, -0.011264983, 0.015779614, -0.0416826, 0.032613102, -0.011517158, -0.011163589, -0.025772395, -0.012155902, 0.048528656, 0.0064121545, -0.013776634, -0.023329997, -0.042511243, 0.04515508, -0.030086968, -0.014535931, 0.008546174, 0.02971385, -0.024064336, -0.044531923, 0.042303707, -0.049633995, -0.025299473, 0.041742228, -0.013562233, 0.0004539647, 0.031312957, -0.03174928, 0.03764305, -0.06784399, 0.010456677, -0.018648637, 0.05637364, -0.019590799, 0.027624773, -0.019820973, -0.036399204, 0.039096225, -0.051867343, -0.0013186393, 0.022468504, 0.007052433, -0.062389936, 0.021047985, -0.051745497, 0.023714393, -0.027531683, -0.006378173, 0.04095324, -0.029783752, 0.07661313, -0.0088360505, 0.028062882, -0.024039542, 0.017375037, -0.016051233, 0.0048001595, -0.011657433, -0.034453742, -0.049821235, -0.0063909725, -0.03641295, -0.034058414, -0.014707832, 0.015669143, -0.02619765, -0.070520304, 0.027481696, 0.06853582, -0.02783901, 0.008281806, -0.02144878, 0.0028178908, -0.023277458, -0.042020112, 0.041428853, 0.04400739, 0.00353268, 0.042975467, -0.06051679, 0.021891294, 0.00474276, -0.01233838, -0.05642399, 0.040261503, 0.031358, -0.025608264, -0.004696977, 0.024201201, 0.038950313, 0.0021390575, 0.021667456, -0.021096313, -0.005040386, 0.050731223, 0.019955762, -0.027372446, 0.012289699, 0.024908366, -0.00787898, 0.033366963, -0.03482918, 0.031315543, -0.038647044, 0.026168711, -0.035427935, 0.012163811, -0.045166813, -0.0106058195, 0.069151424, -0.015753416, 0.01514946, 0.02298952, -0.080336474, 0.026318658, -0.024813129, -0.016918052, 0.075241186, -0.0063332375, 0.014636091, 0.058946375, 0.014322622, 0.04139748, 0.013036429, -0.005258259, 0.021015953, -0.035896894, -0.017616445, 0.05415041, 0.0022574759, 0.004754501, -0.07302034, 0.01285411, -0.04981677, 0.08763825, 0.019926285, -0.018428775, 0.036414444, -0.016243141, -0.0043731933, 0.010512771, -0.032964103, 0.0001955409, -0.0572413, 0.0016061027, 0.0055155605, -0.001576205, -0.059849877, 0.0019271644, 0.038580414, 0.012525266, -0.023724515, -0.031504177, 0.01670729, -0.027820032, -0.08887738, 0.017398685, 0.06369703, -0.0024442296, 0.050440047, 0.005963987, -0.016158232, -0.028653702, 0.03600074, 0.027401414, -0.017025884, 0.028763086, -0.0017018962, -0.0049584396, -0.056887288, 0.003312927, 0.033010792, -0.038196195 ] }, { "values": [ 0.0031602297, -0.018515596, -0.041268684, -0.039225176, 0.0048529687, 0.04916806, 0.02642579, -0.012342976, 0.014806912, 0.007191154, 0.026228286, 0.03706224, 0.029307056, 0.012368878, -0.030281885, -0.071730785, -0.004216837, 0.008662175, -0.051551383, -0.032222778, 0.06139763, 0.012001319, 0.0002890968, -0.05269877, -0.03948705, 0.046246726, 0.037305318, -0.013744196, 0.03206696, 0.017762749, 0.0075114504, 0.0058510695, -0.010029825, -0.036809884, 0.047145713, -0.008258236, -0.06133264, 0.011329933, 0.03560434, -0.06763226, -0.06629448, -0.035423994, -0.02907358, 0.04675502, -0.023533812, 0.006575694, 0.077738255, 0.0058330093, -0.039667014, 0.034285486, 0.02262895, 0.014576349, -0.03821594, -0.007293038, -0.083806865, -0.0518605, -0.03983373, -0.049852476, 0.06911533, -0.01194143, -0.026006592, 0.004489014, -0.052825823, -0.0059037963, 0.025188606, 0.018547455, -0.028195638, 0.0062304824, -0.027619138, 0.0013068469, -0.03702934, 0.021086365, -0.015722828, 0.0034053547, -0.030535324, -0.0027827835, 0.002925056, -0.01039189, -0.0141077265, 0.03367323, -0.016173346, 0.015527952, 0.035998907, 0.03555364, -0.017173182, 0.036683258, 0.012946714, 0.01574053, -0.022399977, 0.017635893, 0.084027596, -0.032144643, 0.0050049084, 0.002447815, 0.015648575, -0.047076706, -0.05073754, -0.0582118, -0.005270431, 0.03616415, -0.06225744, -0.00423051, -0.04810164, -0.06701853, 0.051407684, -0.010514049, 0.042123776, -0.02839572, -0.041889302, 0.033953074, -0.014277169, -0.020280931, -0.02153073, -0.03707651, -0.022640841, -0.009232567, 0.024504168, -0.00013768348, -0.04941623, 0.010538937, -0.013139354, 0.017698908, -0.05641336, 0.06821863, 0.02222279, 0.014960904, -0.02121858, -0.0330207, 0.003218751, -0.04787515, 0.050088964, -0.13105446, 0.052496374, -0.024928793, -0.029423395, 0.0027517993, 0.077419646, 0.013798014, -0.010953543, -0.014754609, 0.018203579, 0.008374226, -0.029470807, 0.03702729, 0.009614314, 0.038490526, -0.0024856136, -0.031851634, -0.07658056, 0.04759335, -0.078411534, -0.049871158, 0.03215532, 0.022315035, -0.07586947, 0.036631756, 0.05167355, -0.0169755, 0.054085437, -0.058598924, 0.0319073, -0.031615328, -0.013053296, 0.02341996, -0.08449624, 0.054119136, 0.06142088, -0.04264032, 0.00063065195, -0.02550918, 0.025635771, -0.029838629, -0.06897754, -0.09431663, 0.0019286282, 0.022557322, -0.021087902, 0.0069827884, -0.0031590636, -0.04035742, 0.05183204, 0.031006226, -0.058782853, -0.01772307, -0.0040237675, -0.02253054, -0.045596663, 0.057069506, 0.016854387, 0.06562606, 0.0075266464, 0.028858915, 0.0057848697, 0.028796846, -0.012761522, 0.030147258, 0.07077008, -0.018468449, -0.0068751667, -0.06808646, 0.013407931, 0.021932203, 0.005123311, 0.017569557, 0.007510311, 0.012186424, -0.0469303, -0.0002991739, 0.049419615, 0.0023429228, -0.0006135458, -0.016556047, 0.004193169, -0.0057806107, -0.025300832, 0.01524869, 0.08809009, 0.023053508, 0.036658715, -0.041681375, -0.06911874, 0.029683448, -0.016586753, -0.012923642, -0.00417724, -0.0030102113, -0.0049778908, 0.019378731, -0.05278001, -0.020930134, 0.0025521945, 0.038758975, 0.013725677, 0.0034371319, 0.023425544, 0.08105309, 0.033622354, 0.0036656966, 0.00230438, -0.009562131, 0.00312888, -0.009848308, 0.026615798, -0.011747621, 0.014371951, 0.032998625, 0.043024763, 0.09699295, -0.009603116, -0.01327564, -0.037484847, -0.029053787, -0.024434255, -0.03606567, -0.0068006306, -0.050334204, 0.014915237, -0.07030533, 0.020297227, -0.010507013, 0.027534986, 0.014748948, -0.021212297, -0.06203353, 0.010332681, -0.06605989, -0.030232016, -0.012325596, 0.06297123, -0.026495822, -0.04127186, -0.00867445, -0.047181975, -0.05189751, 0.0101776365, 0.033453654, -0.027869143, 0.023800705, -0.035945676, -0.06893664, 0.035640627, -0.041383173, 0.030141005, 0.007237014, -0.006337529, -0.009086087, -0.0042146742, 0.028905312, -0.0068976833, -0.05234426, 0.028469417, 0.05063408, 0.0135728065, 0.027055817, 0.04917505, -0.0134728495, 0.017841436, 0.02493763, -0.035582904, -0.012963721, 0.041485492, 0.05014459, -0.053200226, 0.009320247, -0.00011398415, 0.03785644, -0.039468225, 0.019732779, -0.028626895, 0.0058038556, 0.01668907, 0.025759533, -0.023089735, -0.040202368, -0.023182154, -0.0019917246, -0.08617891, 0.015007906, -0.03414269, -0.03229606, 0.035968125, 0.024661507, -0.002970611, -0.034816366, 0.015527542, -0.00703741, 0.025283955, 0.03747201, 0.006172404, -0.037549302, 0.04460482, -0.0062306984, 0.033907816, -0.016217612, -0.0058267, -0.012485748, -0.025117965, 0.03220308, 0.060440972, -0.0077804704, 0.07742957, 0.0048013427, 0.023510655, 0.019343993, 0.004364042, -0.06272704, 0.066539034, 0.001056096, 0.055945642, -0.063310936, 0.011140795, 0.06925765, 0.017529126, -0.004173232, 0.038094297, 0.015670963, 0.016713876, 0.023147505, 0.012967789, 0.015616211, -0.040093895, 0.013828455, 0.0125055, -0.0022279443, 0.022913069, 0.0021797088, 0.036304187, 0.009874001, -0.029774047, -0.045901187, 0.030820921, 0.034228966, 0.038230218, -0.006572624, 0.003397599, -0.014170814, 0.013677727, 0.037771378, 0.019997327, -0.033956107, -0.020204758, -0.04887243, -0.045250382, 0.004370597, 0.009325158, 0.03418259, -0.01641341, -0.011024307, 0.022219295, -0.016882258, -0.036159463, 0.05274066, -0.008636918, 0.02653163, -0.01325718, 0.05441372, -0.025722703, 0.007608125, 0.044194803, -0.0109831905, -0.034196626, 0.013537727, 0.06518633, -0.006138459, -0.008505242, -0.01810989, 0.057594914, -0.0049788626, 0.017935876, -0.03005955, 0.031982765, -0.010492789, 0.008260001, -0.014118891, -0.011890474, 0.0049353293, 0.004391262, -0.041420884, -0.017993819, -0.011798664, -0.032232255, 0.06154034, 0.0066979215, 0.055663466, 0.008341001, -0.049464133, 0.001278153, 0.0070590884, 0.048227087, 0.026234562, -0.023417449, 0.050937627, -0.047907654, 9.0851296e-05, 0.019329501, -0.051966067, -0.022400908, 0.0011003644, -0.068388104, 0.008475443, -0.020524822, -0.0066215903, 0.052150775, 0.03365241, -0.030476764, -0.00040294483, 0.050578352, 0.006223904, -0.025574282, -0.06476468, 0.0013106228, 0.008474642, 0.011075406, 0.0070058703, 0.006723557, 0.0669135, 0.028490735, 0.017955512, -0.059804715, -0.006175783, -0.029435344, -0.009683415, 0.027030721, 0.100074984, -0.015108129, -0.0060098437, -0.041419383, 0.033433564, 0.034096956, 0.08577215, -0.014791441, 0.012016111, -0.0024647836, -0.031226143, 0.024744427, 0.0016629448, 0.036698226, -0.010782394, 0.004466612, 0.06180638, -0.043476954, 0.03241789, 0.00097385695, 0.0586772, 0.031645272, -0.043891825, -0.0013239452, 0.07491376, 0.0007502122, 0.04000523, 0.02545334, 0.06281646, 0.01950697, -0.02186564, -0.01969312, -0.06319644, 0.015202642, 0.001462589, -0.007965264, 0.010071649, 0.09979179, -0.0012132325, -0.03896128, -0.04345725, 0.02331296, 0.04436719, -0.024750631, -0.022465188, 0.055185903, -0.0045436663, 0.0020639787, 0.006001474, 0.016472988, 0.011276372, -0.034640267, 0.06427603, -0.12352596, 0.0024267517, 0.0017694782, 0.09908015, -0.02467945, 0.02807039, 0.059744928, -0.051098824, -0.06765786, -0.012874656, -0.045097888, 0.011102442, 0.07262573, 0.00996589, -0.02126375, 0.06752342, -0.030851623, 0.03227211, 0.003662288, 0.01875292, -0.0003910993, 0.015228993, 0.012632138, 0.040527213, 0.008704389, 0.029066253, 0.02907201, 0.026241919, 0.072529264, 0.016809842, 0.014394919, 0.004722191, -0.046672985, 0.09194268, 0.009226142, -0.021378176, 0.060721017, 0.002970118, -0.004447551, -0.022225259, -0.030613793, -0.0106403725, -0.0018891529, 0.020640207, 0.023579512, -0.018535923, -0.01594132, 0.03059878, 0.03731796, -0.025111258, -0.014562642, 0.0066892523, -0.049595978, -0.045329157, 0.010985472, 0.034401614, 0.001547184, -0.0040267087, -0.03525141, 0.020158572, -0.015650619, 0.021659276, 0.05082317, -0.031376507, 0.03216477, -0.012381283, 0.06972893, -0.039474662, -0.039367296, 0.03025935, -0.019779108, -0.030456468, 0.04322813, -0.013052488, -0.04035119, -0.0093889795, -0.009058047, -0.05873531, 0.054274898, -0.02156702, 0.019550756, -0.039758593, 0.046152867, -0.0035883386, -0.03134133, -0.016460419, -0.013679948, 0.061846334, -0.0043000067, -0.010382857, -0.03270186, -0.03235076, 0.050779432, -0.0343994, -0.0244358, 0.0099718645, 0.017199995, -0.014730258, -0.047524206, 0.031753585, -0.05666749, -0.013354027, 0.02935361, -0.0074371975, -0.016867327, 0.024905458, -0.055022888, 0.036216356, -0.069888555, 0.006536985, -0.006819599, 0.030533046, -0.022077557, 0.022455905, -0.037056185, -0.026647413, 0.044440147, -0.042480648, -0.0017118682, 0.03926827, 0.012486297, -0.0600424, 0.007813482, -0.06613272, 0.01339384, -0.04063905, 0.0002772301, 0.038195502, -0.030478947, 0.077567935, -0.016716404, 0.02362116, -0.0198121, 0.02703401, -0.014554069, 0.020336546, -0.0005883461, -0.018383922, -0.056982227, -0.0010357671, -0.02024302, -0.033487912, -0.0047211424, -0.016072832, -0.020856725, -0.07390991, 0.012588409, 0.062541485, -0.024051853, 0.02845066, -0.01528145, -0.0076859565, -0.03137288, -0.037148368, 0.053683948, 0.03340952, -0.028111212, 0.032249797, -0.036751978, 0.025620295, 0.00040813145, -0.021147093, -0.048339516, 0.03585004, 0.034975626, -0.047281258, 0.00045803655, 0.018388234, 0.053335, 0.013758331, 0.010172897, -0.023332024, -0.0026984892, 0.07045164, 0.00022503106, -0.054392226, 0.020844448, 0.042481527, 0.0019766542, 0.053597454, -0.047853757, 0.005573727, -0.03853372, 0.037857052, -0.03844277, -0.0059148143, -0.06331261, -0.016416907, 0.06074907, -0.034244604, 0.025510317, 0.02916471, -0.08058788, 0.042875465, -0.018468019, 0.0028869659, 0.08181137, -0.008083347, 0.022922542, 0.06317761, 0.017402269, 0.043018777, 0.0031749075, -0.016994093, 0.024109213, -0.047793902, -0.032596387, 0.05964235, 0.025577521, -0.014004777, -0.06573862, 0.030507088, -0.039990902, 0.08305383, 0.016818471, -0.011344079, 0.006810501, -0.023723867, 0.0016905442, 0.022672722, -0.015658913, -0.013854115, -0.076733254, -0.004613325, 0.015362056, 0.011687817, -0.07480058, -0.0051896153, 0.02864075, 0.008936485, -0.016544502, -0.018248007, 0.011296995, -0.04937868, -0.073764, 0.01531417, 0.06509966, 0.012923476, 0.04546949, 0.03871446, 0.020665616, -0.031085497, 0.04983898, 0.013669196, -0.0051113213, 0.038792904, 0.021136234, -0.009161699, -0.06387007, -0.011571609, 0.038459476, -0.036669627 ] }, { "values": [ 0.003646321, -0.028049443, -0.06648452, -0.031132713, 0.011181912, 0.020527631, 0.029820394, 0.0057682805, 0.010589213, 0.037194416, 0.011514173, 0.06784347, 0.0213161, 0.0063361693, -0.047692947, -0.044581328, 0.00047147163, -0.018582357, -0.041182477, -0.022719393, 0.011857007, 0.021277374, 0.026837723, -0.04857401, -0.0116034355, 0.045733463, 0.03006191, -0.0073660305, 0.034771215, 0.026688213, 0.014965932, -0.00067433063, -0.004294745, -0.0139893815, 0.07705403, -0.030478254, -0.047739264, 0.007915363, 0.01197184, -0.033527095, -0.06273229, -0.008120834, -0.005868349, 0.021258, -0.060087148, 0.022280166, 0.05264839, -0.028914673, -0.03264414, 0.04936135, 0.025957799, 0.0035833726, -0.052158676, 0.015255745, -0.06641648, -0.019888757, -0.030415552, -0.044697233, 0.07367839, 0.010906628, 0.0016800537, 0.016468795, -0.011056167, -0.0039801756, 0.01201806, -0.00044904547, -0.003934997, -0.02446709, -0.032971703, -0.017910773, -0.04072473, 0.032941654, 0.0038398248, 0.021529844, -0.048044223, -0.009185114, -0.0074874912, -0.012048112, 0.0052116555, 0.031717695, -0.012862234, 0.009300471, 0.054355115, 0.042764384, -0.009685257, 0.035986055, 0.045313664, -0.0067635877, -0.025804741, 0.01918151, 0.10831348, -0.042684037, 0.017862124, 0.019340668, -0.0030760735, -0.08696599, -0.06615938, -0.051897608, 0.007901048, 0.042046, -0.058962453, -0.02933624, -0.06845913, -0.042752054, 0.06612181, 0.020437269, 0.06767368, -0.033988744, -0.005699444, 0.024163084, -0.011435274, -0.036647607, -0.044258974, -0.039783183, 0.0014903854, -0.05166901, 0.00074904296, 0.027723882, -0.05451593, 0.014280143, -0.031409055, 0.01145516, -0.04554762, 0.055740803, -0.030590469, 0.012560555, 0.0051597245, -0.06943465, -0.018623788, -0.072895624, 0.06142738, -0.1275476, 0.017607847, 0.017827507, -0.027885297, -0.008054513, 0.033432364, 0.02499034, -0.051285304, 0.0066806865, 0.014785063, 0.0035406551, -0.020597022, 0.02055777, 0.013653456, 0.034093592, 0.0068602692, -0.001656607, -0.06504808, 0.030045878, -0.09294159, -0.026918877, 0.0010759461, 0.022326777, -0.05033861, 0.039504558, 0.069274895, -0.036453325, 0.07294424, -0.05993639, 0.008889486, -0.025093358, 0.011062821, 0.012443719, -0.077844694, 0.045905072, 0.061218176, -0.050065022, -0.0525493, -0.05896551, 0.016961588, -0.024309436, -0.048450693, -0.08329538, -0.013945019, 0.025523534, -0.02644829, 0.0108398115, -0.010361352, -0.046462502, 0.036034714, 0.020776352, -0.04313351, -0.023393236, 0.007898202, -0.03845976, -0.028630681, 0.07180625, -0.010109185, 0.06387254, 0.006179604, 0.007959359, 0.023132293, 0.022434162, 0.007436748, 0.05214068, 0.09433539, -0.00071574154, 0.00053578394, -0.07213643, 0.0064935293, 0.03273771, 0.0008923025, 0.02081332, 0.0059745503, -0.0077223983, -0.058460064, -0.020873014, 0.048272792, 0.013980333, -0.004925623, -0.011804769, -0.032184303, -0.026360173, -0.006265635, 0.004432408, 0.08533447, 0.02621849, 0.050929137, -0.024865346, -0.04052312, 0.007963028, -0.0117965285, -0.024567088, 0.027027782, -0.007369442, -0.014803192, 0.02844048, -0.060178235, -0.02347521, 0.0031542843, 0.028338682, 0.004793201, -0.032046653, 0.05515086, 0.07838596, 0.029478468, 0.007957632, -0.018845629, -0.019601656, -0.009837386, 0.02785348, 0.059123598, -0.02246829, 0.018051958, 0.0035572918, 0.049282473, 0.101971984, -0.024097882, 0.012046496, -0.011084857, -0.008882478, -0.01191986, -0.03911952, 0.0032559184, -0.056158014, 0.01364223, -0.06478356, -0.0074689384, -0.012160493, 0.032823656, 0.0036051925, -0.0024986973, -0.062062196, -0.01753941, -0.06880762, -0.0065570218, -0.017187648, 0.04816382, -0.017110148, -0.02159428, 0.026363539, -0.052801926, -0.046499923, -0.005166619, 0.061569296, -0.037195943, 0.019795982, -0.04102283, -0.066588536, 0.041582853, -0.027217634, -0.0040785023, -0.0049879286, -0.020909447, -0.017246656, 0.0015042236, 0.027399564, 0.011240244, -0.024457386, 0.053177007, 0.0651608, 0.0028339522, 0.05591515, 0.050474256, -0.009147021, 0.011963093, -0.002849563, 0.0011014829, -0.031117797, 0.009888662, 0.05611476, -0.034620706, 0.00871988, 0.021891946, 0.02868624, -0.048839938, 0.010865591, -0.022378767, -0.0023328392, -0.0005967617, 0.022308687, -0.01443641, -0.023966167, -0.019291304, -0.007030582, -0.061214272, 0.019994374, -0.031209987, -0.05153529, 0.0068116006, 0.032117307, -0.012638316, -0.01269771, 0.0210541, 0.009978968, 0.03460225, -0.004392009, 0.0035501374, -0.04405905, 0.028006773, -0.009687065, 0.03710005, -0.043780472, -0.017725667, 0.0062794997, -0.030213987, 0.024289865, 0.04027603, 0.0079291, 0.05232083, 0.0058410014, 0.019071888, 0.006323583, 0.008961116, -0.038852952, 0.058608044, -0.0018222586, 0.035254978, -0.027119175, 0.0018406835, 0.06336876, 0.018203847, 0.013261994, 0.041689076, 0.028057443, 0.040816795, 0.061686892, -0.007983697, 0.02882175, -0.03523755, -0.0095589785, 0.013506159, -0.017866377, 0.024309589, 0.012863757, 0.015317797, 0.035446804, -0.029281609, -0.06682245, 0.015338156, 0.02109598, 0.045394443, 0.0072626653, 0.031817738, -0.009367871, 0.016199654, 0.020621149, 0.022802556, -0.011408474, -0.04758596, -0.030700576, -0.061914306, -0.013526371, 0.0025289382, 0.039116144, -0.024802359, -0.021656737, 0.0066961036, 0.016712673, -0.022605281, 0.06869788, -0.028555527, 0.05085435, 0.023425246, 0.04261388, -0.018072031, 0.0016185878, 0.009657967, -0.0048400257, -0.046822, -0.00045050823, 0.041933402, -0.011864601, -0.022718746, -0.01586904, 0.07731735, 0.007492339, 0.014532263, -0.042666066, 0.0057705664, -0.015319652, 0.02931263, 0.006351972, 0.0045500677, 0.031171523, 0.009064143, -0.027798098, -0.022339681, 0.0075668464, -0.020364765, 0.05559092, -0.01545797, 0.068017, 0.028722748, -0.048170447, -0.006241276, 0.020014953, 0.04155937, -0.0022512649, -0.018235032, 0.018517213, -0.049437765, 0.012042821, 0.002696615, -0.020709738, -0.0055642473, 0.0014868578, -0.051561244, -0.003059501, 0.017949533, -0.012145187, 0.03237991, 0.029158091, -0.036041696, 0.024652066, 0.0709445, -0.0035905906, -0.022466639, -0.067554444, 0.004453212, 0.019827325, 0.0072538615, -0.01460198, 0.016282525, 0.04038777, 0.025802016, 0.043716017, -0.030233154, -0.0061988384, -0.07881618, -0.02222124, 0.037289277, 0.10707855, 0.006538401, 0.010904386, -0.061349154, 0.046671104, 0.06437156, 0.070149176, 0.018775895, 0.012659921, -0.026433382, -0.023151148, 0.020045834, 0.015779434, 0.00039893654, -0.0223359, 0.0044452376, 0.04788917, -0.01745368, 0.019807449, 0.010831005, 0.05802601, 0.014434568, -0.055412456, -0.024528453, 0.046445824, -0.0011479662, 0.02644939, 0.02413693, 0.07016792, 0.025325049, -0.030324427, -0.032705855, -0.04132388, 0.02694944, 0.0070101055, -0.0077042044, 0.0011599596, 0.11929648, 0.0204814, -0.029825019, -0.01910074, 0.0038125925, 0.043100633, -0.04649054, 0.008585106, 0.06343094, 0.0288611, -0.0003263549, -0.0032804257, 0.014518913, -0.00860505, -0.029793978, 0.07126576, -0.09412362, 0.018280778, -0.006457499, 0.07646874, -0.02372034, 0.036675937, 0.07512624, -0.019647496, -0.05087016, -0.02768736, -0.052685924, 0.05051038, 0.056275714, 0.0035256431, -0.022314798, 0.07468248, -0.013424221, 0.019619357, 0.040649455, 0.030744115, -0.014062103, 0.0070090196, 0.026766747, 0.036595643, -0.0029997255, -0.019629847, 0.030084958, 0.03258325, 0.07838949, -0.009821144, 0.017982922, -0.0020228338, -0.0338606, 0.088497266, 0.015701836, -0.026867904, 0.03849791, -0.0011906801, -0.026582316, -0.048391175, -0.0357262, -0.04263988, 0.020815307, 0.016154783, 0.03332529, -0.036114138, -0.026446797, 0.040348724, 0.014499146, -0.0019920818, -0.025361804, 0.048675947, -0.055235926, -0.030642554, -0.0072477073, 0.03953783, -0.018574817, -0.03565811, -0.0098415315, 0.017817969, -0.034934722, 0.035190262, 0.06245871, -0.011754184, 0.02929392, -0.04316701, 0.053703096, -0.028408032, -0.02664704, 0.024203112, -0.004694205, -0.034788392, 0.005174945, -0.019732267, -0.055904415, -0.0371936, -0.01537672, -0.042048395, 0.06088566, -0.02554126, 0.006964547, -0.0220016, 0.022644734, 0.017644722, -0.024824904, -0.012500871, -0.022358093, 0.04769265, 0.00014841111, -0.0008844493, -0.015885774, -0.04388037, 0.021221774, -0.011535762, -0.044873167, 0.036775533, 0.005322911, -0.026288878, -0.06862884, 0.025049431, -0.050715663, -0.054149937, 0.0050968966, 0.006937479, -0.018723892, 0.054880396, -0.038393915, 0.003070438, -0.04435715, 0.025401684, -0.033215582, 0.034876537, -0.042807534, -0.0004107591, -0.03656135, -0.010909219, 0.039067954, -0.026234608, -0.0126678925, 0.030638678, -0.0025453293, -0.06075173, -0.009172843, -0.08659065, 0.018958881, -0.02230154, -0.008605495, 0.06893413, -0.03179674, 0.05946257, -0.011067656, 0.014978787, -0.02381054, 0.03970292, -0.020624302, 0.013892136, -0.04329539, -0.029037543, -0.047851276, -0.00075785647, -0.042860948, -0.045515396, -0.005343389, -0.01175175, -0.014387486, -0.0685175, 0.04569588, 0.046729263, -0.014578204, 0.025606507, 0.0005024289, -0.00581378, -0.0036614675, -0.011533041, 0.07256556, 0.020068163, 0.008159478, 0.027697865, -0.01811454, 0.009180839, 0.00018067846, 0.010512129, -0.04803631, 0.027301852, 0.019509438, -0.031989202, -0.005718444, 0.01210759, 0.021643551, 0.022004955, 0.016346455, -0.028930679, 0.018405505, 0.050277375, -0.0046437983, -0.054825827, -0.014040078, 0.04792287, -0.002080823, 0.024449779, -0.040295254, 0.033527363, -0.035083514, 0.019344019, -0.028550725, 0.009140835, -0.072922975, -0.008422057, 0.07181335, -0.038002696, 0.018181454, 0.004554486, -0.09620987, 0.013674082, -0.031996693, 0.002905472, 0.08849997, 0.005541587, 0.019554531, 0.06605697, 0.019008515, 0.04309102, 0.01708482, -0.032356795, 0.031819664, -0.03137265, -0.038084935, 0.026904108, 0.03563468, 0.02084496, -0.070888266, 0.05153858, -0.036505256, 0.10302116, 0.034188334, -0.00028682037, 0.01996339, -0.005334929, -0.0034643025, 0.0040375576, -0.046442203, -0.021314172, -0.069276564, -0.03523171, -0.005012004, 0.002866445, -0.053106442, 0.024055127, 0.0075533283, 0.015915979, -0.031239646, -0.023689786, 0.024578633, -0.02091717, -0.07848651, 0.00985272, 0.039084487, -0.015570115, 0.022683106, 0.0029467978, 0.0074593984, 0.0006959227, 0.05574598, 0.021282606, 0.032918938, 0.016240323, -0.0062258635, -0.0022912037, -0.06877828, -0.017102884, 0.040459834, -0.063657165 ] }, { "values": [ -0.005604317, -0.025644299, -0.051737428, -0.051759623, 0.011742097, 0.029396718, 0.013186629, 0.007992351, 0.013664241, 0.04426277, 0.02728038, 0.043606974, 0.038339578, -0.023152338, -0.041913565, -0.038184326, 0.00546118, 0.024525475, -0.038044784, -0.01765772, 0.018994138, 0.01822357, 0.040373452, -0.0532307, -0.028179018, 0.0311161, 0.050982937, 0.0020064646, 0.009302172, 0.015473729, 0.0126826335, 0.014807577, -0.011123653, -0.047963988, 0.08648645, 0.0028183197, -0.06908687, 0.019508366, 0.007420129, -0.027496334, -0.07268411, -0.005125056, -0.012576689, 0.04073545, -0.044330467, -0.006003836, 0.046185296, -0.0008906065, -0.021364843, 0.035404637, 0.028542563, -0.0077752043, -0.06298138, 0.0065405364, -0.04523816, -0.055416595, -0.066528864, -0.019177422, 0.08871599, 0.0020792328, -0.022157285, 0.009883707, -0.026481533, -0.000737296, -0.0029136473, -0.00038880025, -0.021500723, -0.020222425, -0.030056033, 0.010150114, -0.039758995, 0.020962307, 0.016381277, 0.03761105, -0.027029444, -0.012222491, -0.007019884, -0.049321096, 0.017926216, 0.03984965, 0.00082914566, 0.011007829, 0.04884854, 0.027297363, -0.015441917, 0.028029636, 0.047897853, -0.05561458, 0.0010226227, 0.044918295, 0.10619866, -0.024367241, 0.0023364706, -0.01034022, 0.008089651, -0.07070985, -0.065838605, -0.07424387, 0.022495093, 0.042393025, -0.07115836, -0.02318364, -0.042945925, -0.037420187, 0.049136203, 0.023187641, 0.030026406, -0.0021899005, -0.012175772, 0.016207084, -0.041041713, -0.0250073, -0.038462915, -0.033665672, 0.0061103995, -0.06318902, -0.008234494, 0.020252787, -0.028814068, 0.0010914764, -0.03562935, -0.008110366, -0.050995607, 0.065737516, -0.016950324, 0.014970059, -0.028710963, -0.023655383, -0.017606124, -0.070610434, 0.062409703, -0.12445451, 0.01780242, -0.005510112, -0.023769429, -0.021974789, 0.07652885, 0.03024893, -0.0338852, 0.017196342, 0.008542129, -0.0072638425, -0.025423206, 0.05150832, -0.0023534754, 0.060430538, -0.0044908747, -0.00852974, -0.06529278, 0.038334765, -0.06007218, -0.04458667, -0.002830232, 0.032355625, -0.039844587, 0.06931252, 0.055198643, -0.036044575, 0.08707755, -0.07782019, 0.014975738, -0.016603706, -0.013237354, -0.0057081506, -0.08408444, 0.026105447, 0.041245252, -0.05186689, -0.066683695, -0.0438291, 0.0050455714, -0.011932995, -0.048950147, -0.07009026, -0.01678175, 0.026479714, -0.013944696, 0.003162391, -0.025558444, -0.028698562, 0.03155325, 0.031206021, -0.016840743, 0.0013037907, 0.04042036, -0.048370644, -0.04020947, 0.026082905, -0.030907797, 0.053918317, -0.001924983, 0.008134962, 0.04194935, 0.041483317, 0.00043032464, 0.07337685, 0.09475476, -0.012393751, 0.012865711, -0.07003629, 0.013363464, 0.017094318, -0.020021165, 0.026463201, 0.010023864, 0.028210059, -0.04244137, -0.025039136, 0.042694286, -0.008380471, 0.0080876555, -0.03084699, -0.007242855, -0.049674693, -0.01583039, 0.025957778, 0.11775863, 0.026580788, 0.075117305, -0.01487347, -0.07494197, -0.020528298, -0.030642059, -0.03665602, 0.020609567, -0.01474152, -0.035161357, 0.0144888405, -0.059489146, -0.018684724, 0.0065149665, 0.036622174, -0.0066115903, -0.003523712, 0.046917453, 0.0607559, 0.03049562, 0.0070398515, -0.025646279, -0.03660911, -0.006366123, 0.030901793, 0.06050963, -0.02278722, 0.007576858, 0.023918318, 0.061113473, 0.07390439, -0.01900533, 0.001355317, 0.005718049, -0.04705466, -0.040663205, -0.005239727, 0.005710056, -0.041255314, 0.025001008, -0.06895778, -0.01638437, 0.0136973215, 0.034213293, 0.005649465, -0.0058621746, -0.057628047, -0.015470504, -0.07262772, -0.009007567, -0.0041779056, 0.05647388, 0.0025766082, -0.017632065, 0.015538279, -0.06962635, -0.03604436, 0.012343911, 0.054817356, -0.045138035, 0.025117993, -0.037859462, -0.05249403, 0.022730788, -0.028545639, -0.018677631, -0.018318024, -0.01704653, -0.02784765, 0.0030716294, 0.033136055, -0.030033866, -0.03598216, 0.0688288, 0.04165883, -0.011105044, 0.03174589, 0.03981787, 0.013145088, 0.024285901, -0.030236036, 0.0063650236, -0.01257996, 0.030773904, 0.06528676, -0.045525573, -0.010885037, -0.009297041, 0.011934493, -0.043200865, 0.029631967, -0.0138633195, 0.0023783657, 0.021726713, -0.004518269, -0.012477941, -0.030169457, -0.025000803, -0.0017734228, -0.073771894, 0.010471988, -0.02736968, -0.04939046, 0.021648835, 0.027221115, -0.021908589, -0.028363552, 0.04273261, -0.00033085028, 0.039041013, -0.020214807, -0.004978057, -0.05035829, 0.02192286, -0.0016234054, 0.04313391, -0.008219234, -0.01835142, -0.007396826, -0.030279698, 0.031214615, 0.03587223, -0.023179408, 0.043590546, -0.021877006, 0.032838937, 0.052057296, -0.009327816, -0.055954386, 0.06690562, -0.02443882, 0.021655334, -0.03308873, -0.0046904567, 0.06402048, 0.023779232, -0.0044721514, 0.047508672, 0.0077423113, 0.037370104, 0.038754642, 0.0024158824, 0.026627345, -0.02807258, -0.0015154348, 0.025376616, -0.0063561522, 0.048499644, 0.0042777453, 0.0047463235, 0.034691606, 0.005346749, -0.0855196, 0.024055127, 0.023011988, 0.017947935, -0.006755844, 0.027762722, 0.00022466671, 0.025552314, 0.021081727, 0.03858455, -0.024285626, -0.04589389, -0.025594816, -0.031195767, -0.019360745, -0.036075592, 0.0589578, -0.012479274, -0.0051894966, 0.010996841, 0.018339805, -0.01431583, 0.063243195, -0.024161646, 0.024000391, -0.002220509, 0.041701037, -0.027394392, 0.0028376118, 0.036929462, -0.0010205035, -0.03496976, 0.0029539762, 0.022743095, -0.019046478, -0.038517006, -0.018717168, 0.06660545, -0.009435215, 0.024971463, -0.060339812, 0.03126918, 0.0039892583, 0.014134034, 0.001967163, -0.00076003844, -0.005552803, 0.029920705, -0.029053504, -0.003763745, 0.006303694, -0.038751986, 0.045762975, 0.0053572906, 0.030289814, 0.008141714, -0.02838787, -0.015748974, -0.008808622, 0.037966676, -0.004633316, -0.026962021, 0.012727972, -0.06577006, 0.03272106, 0.01317421, 0.004087802, 0.0034651011, -0.000918457, -0.06471722, 0.0091863265, 0.014559855, -0.008509101, 0.022954985, 0.034126334, -0.015579152, 0.025123816, 0.05683953, 0.008962406, -0.044121612, -0.051036235, -0.0037769985, 0.02124354, -0.020455636, -0.0021368717, 0.0017881247, 0.04017124, 0.025695924, 0.047479354, -0.060734384, 0.01701154, -0.08318417, -0.025760483, 0.04311785, 0.093852095, 0.006716648, -0.0024329822, -0.07401569, 0.039268926, 0.033766054, 0.074929155, 0.000864263, 0.0023517662, 0.0030443876, -0.04798916, 0.016001392, 0.0015799147, -0.008574679, -0.013082897, -0.0067916233, 0.054136686, -0.043537997, 0.014650389, 0.026530737, 0.05673898, 0.02407155, -0.06820358, -0.007458125, 0.056698147, 0.028416136, -0.010821137, 0.02058161, 0.036002763, 0.005274189, -0.028103411, -0.034948837, -0.04085291, 0.007132311, 0.0050304746, -0.016457913, 0.026292894, 0.08952037, 0.0048755095, -0.033360496, -0.050629664, 0.040660102, 0.022433339, -0.033866163, 0.026704941, 0.03020813, 0.014939075, -0.008937297, 0.00830722, 0.009548014, -0.007222862, -0.050811104, 0.054345727, -0.110364504, 0.02839106, 0.011701969, 0.049309235, -0.05009021, 0.028955575, 0.047671873, -0.008708439, -0.03629594, -0.03929112, -0.036107793, 0.061605733, 0.04341527, 0.013696086, -0.0042358665, 0.066363335, 0.012962881, 0.012888226, 0.02297868, 0.015393974, -0.031192088, 0.013375413, 0.0008708685, 0.044749323, -0.029152408, 0.008556203, 0.033008758, 0.021786693, 0.07350131, -0.022152178, -0.00536439, -0.006291505, -0.038877275, 0.058639653, 0.015494772, -0.010593157, 0.024602091, 0.019293897, -0.012906461, -0.051253054, -0.04411951, -0.064688556, 0.0075569768, 0.049404494, 0.03415573, -0.020787327, -0.013865956, 0.02563908, 0.00599, -0.0012679965, -0.031991113, 0.05052301, -0.0227477, -0.035791527, -0.0042203255, 0.04157914, -0.009803678, -0.040004328, -0.018458761, 0.022175957, -0.05050342, 0.008544728, 0.04028799, -0.03863761, 0.03876438, -0.056009293, 0.06697867, -0.025365815, -0.016393466, 0.008152877, -0.0195851, -0.02702455, 0.004054111, -0.025504125, -0.0470104, -0.009657705, 0.0076949927, -0.04310547, 0.05880857, -0.022262288, -0.018582044, 0.00080782425, 0.020653954, 0.0064418633, -0.012410751, 0.028105652, -0.019798908, 0.053074468, -0.0152248265, -0.041274007, -0.008803879, -0.033444032, 0.020194003, -0.024019353, -0.019267157, 0.03485808, 0.024573503, -0.017380357, -0.057379197, 0.022956613, -0.04245531, -0.06625939, -0.00010865359, 0.010653495, -0.01881772, 0.06046169, -0.030486943, 0.01073116, -0.05838225, -0.019887753, -0.039456356, 0.032991786, -0.04639612, -0.011814018, -0.01528939, -0.039869167, 0.050906073, -0.027011616, -0.024397226, 0.03491629, 0.01021886, -0.054681025, 0.009477574, -0.06848047, 0.021498298, -0.026699852, -0.004183386, 0.05127668, -0.03853223, 0.04956784, 0.0120100705, 0.025293881, 0.0016942417, 0.031284325, -0.024678174, 0.022734435, -0.033870302, -0.005280059, -0.07446074, -0.0096972305, -0.011920338, -0.03062845, 0.030099131, -0.03790358, 0.016948432, -0.019093197, 0.027741387, 0.028876843, -0.0023371994, 0.049211062, 0.031696614, -0.00086997554, -0.02176615, 0.010744598, 0.043727715, 0.01565151, -0.0036479353, 0.043506026, -0.039507005, 0.027172258, 0.04335385, -0.0034516826, -0.036109764, -0.0013152132, 0.03230315, -0.033918303, 0.013669558, -0.0093738455, 0.002518882, 0.049031112, 0.039151955, -0.038848367, 0.040375434, 0.015943153, 0.020170134, -0.052465927, -0.003967025, 0.05210139, 0.009954638, 0.016568951, -0.05113231, 0.0127260275, -0.017856697, 0.014438462, -0.017038854, -0.009926462, -0.0803236, -0.009723034, 0.06617469, -0.027177695, -0.00016002331, 0.021726495, -0.1045466, 0.017393045, -0.04394124, 0.02019296, 0.0965761, -0.01618565, 0.046286106, 0.059372015, 0.026830558, 0.06779698, 0.0135855125, -0.015141828, 0.03626744, -0.017080806, -0.020853005, 0.050972614, 0.024953226, 0.010879773, -0.06705168, -0.0060727675, -0.04011987, 0.08506979, 0.025418496, -0.0045762616, 0.0023669947, 0.011667148, -0.011775555, 0.0035173588, -0.02851731, -0.009141093, -0.083441995, -0.0540523, 0.010223511, -0.0021166361, -0.035026748, 0.0154870115, 0.0031839234, 0.009559657, -0.007656176, -0.0029888866, 0.016532041, -0.040801395, -0.08881033, 0.011061729, 0.05349882, -0.011233484, -0.0016123928, 0.021006672, 0.024282431, -0.021979876, 0.045466807, 0.02245979, 0.02744018, 0.04289232, -0.0058931285, 0.0043192655, -0.08377942, -2.3737306e-05, 0.057420507, -0.044694673 ] }, { "values": [ -0.016054766, -0.020328024, -0.045295, -0.047968972, 0.020284966, 0.024772037, 0.02123636, 0.0036237508, -0.0036073127, 0.031027902, 0.011458557, 0.047494147, 0.03775554, -0.015556162, -0.048151024, -0.037062652, 0.019828849, 0.021613115, -0.023645436, -0.041177627, 0.0053462912, 0.048371855, 0.050747912, -0.06467704, -0.03291041, 0.028521016, 0.047879215, 0.014536693, 0.00045157623, 0.0019452386, 0.004641226, 0.040349703, -0.019617727, -0.032745317, 0.096401915, -0.0074536027, -0.066346936, 0.014573408, 0.041649323, -0.011046757, -0.07670923, -0.013135404, -0.010449606, 0.023956059, -0.045847945, -0.013723155, 0.047178287, -0.026438415, -0.04564451, 0.05164342, 0.040968157, 0.0014923178, -0.047872107, 0.025560163, -0.049479276, -0.02988282, -0.05765292, -0.047719717, 0.060909066, 0.002457269, -0.039291188, 0.006246275, -0.037031494, -0.019141125, 0.0004265843, -0.028756596, -0.027583845, -0.021844737, -0.03298567, -0.020789808, -0.027910082, 0.0057550143, 0.00562678, 0.011963653, -0.042952992, 0.0013704202, -0.02395333, -0.0490824, 0.024304237, 0.031846568, -0.003538815, -0.020180944, 0.062472265, 0.059600588, -0.028103966, 0.013246879, 0.032681853, -0.06320482, 0.02726631, 0.04058555, 0.12252045, -0.017829392, -0.012905697, -0.0014639482, -0.0045792535, -0.059966657, -0.07127195, -0.059736427, 0.046575606, 0.048432596, -0.053472992, -0.01073534, -0.027124064, -0.016841916, 0.050007984, 0.025911333, 0.034337338, -0.031067299, -0.03237087, 0.042687736, -0.027150448, -0.017164564, -0.019393029, -0.03700845, 0.021525523, -0.06581959, 0.0046119895, 0.017065119, -0.039283335, 0.019232113, -0.0032463877, -0.028130714, -0.03840018, 0.05529139, -0.02530067, 0.022634836, 0.0044175074, -0.0323941, -0.007031727, -0.086783834, 0.06982963, -0.10927612, 0.004844058, 0.0024671785, -0.031613488, -0.050985236, 0.04493445, 0.03298855, -0.033512156, 0.01583988, 0.008278988, 0.0070310393, -0.0014129203, 0.037168216, -0.0055923644, 0.037059605, -0.0065368293, -0.024996845, -0.084787965, 0.034492064, -0.0723165, -0.015199233, -0.002742859, 0.022805154, -0.022564517, 0.03980188, 0.048248112, 0.005913904, 0.11091756, -0.065909766, 0.02536569, -0.0055047884, -0.0043990193, 0.0013649185, -0.06778909, -0.012398522, 0.04697492, -0.051230695, -0.05506323, -0.016996998, 0.010026612, -0.008727093, -0.035504587, -0.08250823, 0.015496113, 0.054905806, -0.026521584, 0.008597607, -0.016733428, -0.033097237, 0.034471452, 0.03299256, -0.026654737, -0.025010101, 0.03710968, -0.030391721, -0.062139202, 0.04477314, -0.04285173, 0.029987888, -0.008043318, 0.011854158, 0.074227415, 0.043013547, 0.003928854, 0.05616482, 0.09450046, 0.0021717825, 0.02836001, -0.05960845, 0.03248357, 0.00698417, -0.021290608, 0.011973522, -0.009441166, 0.023802418, -0.032326005, -0.039577987, 0.034278218, -0.021610646, 0.0052935323, -0.014528791, -0.023159765, -0.039504886, -0.004595096, 0.023976928, 0.09953856, 0.025127297, 0.07079289, -0.022711629, -0.054898944, -0.022703331, -0.01690005, -0.054136258, 0.03037252, -0.021285623, -0.017936995, 0.00011100636, -0.041209776, -0.014572677, 0.012958296, 0.024492458, -0.0038376898, 0.011856519, 0.03209231, 0.06366632, 0.018319184, -0.00082400575, -0.014634394, -0.047202893, -0.0086046625, 0.013547714, 0.051182974, -0.0016025358, 0.0007371894, 0.02945981, 0.055305123, 0.08903281, -0.013304704, -0.005089935, 0.005458326, -0.048442014, -0.039859712, -0.018687578, -0.0056072758, -0.03625334, 0.0321896, -0.04386768, -0.03140812, -0.0030339141, 0.022671327, 0.001435654, -0.026524536, -0.05419584, -0.027306931, -0.10552294, -0.017071383, -0.016367918, 0.0691856, 0.012004042, -0.034822416, 0.026508521, -0.036406614, -0.041343104, 0.029877603, 0.046910945, -0.048601095, 0.0175461, -0.032529436, -0.039016653, 0.004451124, -0.04500098, -0.009426912, -0.013914742, -0.015446164, -0.013656466, 0.007421182, 0.021241708, -0.022749906, -0.052307878, 0.06164524, 0.026616542, 0.017589392, 0.040961776, 0.03695213, 0.012278672, 0.021753484, -0.0026830267, 0.008986352, -0.0022726953, 0.03136682, 0.08424872, -0.03910743, 0.005366088, -0.014524206, 0.004118494, -0.034462765, 0.022564458, -0.008508652, -0.0006980874, 0.041761026, 0.013890792, -0.0017080309, -0.022975355, -0.023229532, -0.0014354985, -0.067333184, 0.019961132, -0.023212703, -0.043321136, 0.017670792, 0.02261192, -0.017266175, -0.024515783, 0.059748475, 0.013692098, 0.022561599, -0.030755986, 0.006941225, -0.040435236, 0.04199888, 0.00390641, 0.0361326, -0.017810889, -0.03418799, -0.005889288, -0.021483094, 0.053011887, 0.037822653, -0.0027886447, 0.04878282, -0.01635326, 0.017753916, 0.054805275, -0.00326046, -0.050793022, 0.03777328, -0.006307142, 0.06349942, -0.032416016, -0.03336066, 0.060686745, 0.011175527, -0.015651777, 0.05246445, 0.025543924, 0.04436596, 0.055292986, 0.0019426701, 0.016229752, -0.031167971, 0.0072583538, 0.017217917, -0.0030850118, 0.015938783, 0.005624344, 0.007384228, 0.028385516, 0.02706447, -0.1045604, 0.0012896621, 0.01722002, 0.01343017, -0.008944059, 0.017586984, -0.0010127134, 0.027661089, 0.028157184, 0.017273962, -0.022557806, -0.040407248, -0.035136905, -0.038226817, -0.027795684, -0.023883848, 0.05345672, -0.018642485, -0.0044938046, 0.0042618774, 0.0035540757, -0.039842755, 0.062195167, -0.011944604, 0.037724014, 0.0016391877, 0.018886713, -0.03954744, 0.009300542, 0.04940677, -0.0052158055, -0.032843273, 0.017737621, 0.0062210043, -0.030956103, -0.031150993, -0.03244358, 0.06096619, 0.011668997, 0.028829107, -0.063673824, 0.0031713862, -0.025938684, 0.016251288, -0.020742616, -0.0025427183, -0.039351203, 0.011030546, -0.062168606, -0.01295456, 0.003874052, -0.031732127, 0.0021736622, 0.020084344, 0.041576717, 0.008617452, -0.04658957, 0.0026915013, -0.019257465, 0.038191125, -0.013160889, -0.035566363, 0.028552122, -0.0736546, 0.0067460714, 0.040966667, 0.009633149, -0.0038739042, -0.012996119, -0.06379365, 0.01976008, 0.018670946, -0.028544331, 0.038871646, 0.052705128, -0.009058445, 0.026519548, 0.0361432, 0.02916174, -0.024348961, -0.059268616, 0.029049762, 0.04991864, -0.02175657, -0.0134320315, 0.013538125, 0.021112157, 0.02904198, 0.035108376, -0.05622258, -0.0182389, -0.040266667, -0.02109563, 0.046450794, 0.08983839, -0.0014850312, -0.0006488402, -0.050791275, 0.03261871, 0.03329541, 0.06952166, -0.021187045, -0.012203763, -0.010275915, -0.035384167, 0.0072582765, -0.0061667, 0.008998473, -0.030417927, -0.0050379094, 0.055395707, -0.04571378, 0.016016975, 0.015627444, 0.04371456, 0.017949203, -0.05402904, 0.0016302967, 0.03993272, 0.023037208, -0.025680572, 0.0053237923, 0.04263336, 0.0024621626, -0.036693983, -0.04884575, -0.06340376, 0.012061931, -0.011467161, -0.019347431, 0.0065388097, 0.08995091, 0.006045134, -0.028818894, -0.036749244, 0.015399729, 0.004737077, -0.0054884986, 0.019112445, 0.06725937, 0.018450951, 0.007840997, 0.01606914, 0.010331694, -0.026089609, -0.061762784, 0.07104953, -0.055498257, 0.049071882, 0.003994586, 0.025627632, -0.060906213, 0.015031199, 0.03184247, -0.022740344, -0.039551288, -0.058919404, -0.022633478, 0.06998975, 0.048396926, 0.010045684, 0.0065716538, 0.07781951, 0.010364603, 5.032354e-05, 0.011160878, 0.021297785, -0.022590129, 0.027903406, -0.014901735, 0.050815623, -0.030269003, -0.016061354, 0.036129646, 0.022788988, 0.059178766, -0.010603762, 0.0163672, 0.008077464, -0.017429147, 0.069069736, 0.005792999, -0.014959582, 0.04901406, -0.0032279869, -0.03861799, -0.039283514, -0.026201831, -0.047094766, 0.018956497, 0.025109233, 0.023112342, -0.020555928, -0.007845486, 0.037190214, -0.032905452, 0.0010704793, -0.031678822, 0.057612006, -0.041647155, -0.01223982, -0.002867884, 0.036345337, -0.010501957, -0.03638674, -0.022171661, 0.04275644, -0.05393967, 0.012772749, 0.04985747, -0.030080013, 0.017464459, -0.0414746, 0.08327038, -0.032037083, -0.024836238, 0.009087112, 0.0010474931, -0.030752648, 0.006162607, -0.019655572, -0.049022667, -0.027760264, -0.0014222511, -0.061922748, 0.049867585, 0.0008479584, -0.02067978, 0.00036561966, 0.031753007, 0.025424754, -0.021691842, 0.00899818, -0.01263304, 0.029562509, -0.006892694, -0.0259754, -0.0053391345, -0.03320489, 0.03778693, -7.361952e-05, -0.016237415, 0.03822474, 0.0066061635, -0.024519164, -0.054801147, 0.031769916, -0.046445806, -0.079114094, -0.015816245, -0.008405821, -0.011347259, 0.046532203, -0.011592509, 0.0066364673, -0.044465683, -0.041789386, -0.032914083, 0.03484921, -0.039168805, -0.011552199, -0.008051428, -0.033772156, 0.05568737, -0.008997919, -0.014559196, 0.04197713, -0.0002175722, -0.06469656, 0.040177364, -0.050305806, 0.020961331, -0.02738278, -0.017479882, 0.08428093, -0.02461867, 0.051025093, 0.00963318, 0.022386681, -0.017006034, 0.024328712, -0.032951687, 0.0373622, -0.021677738, -0.020980397, -0.054600902, -0.009368854, -0.03343267, -0.036535844, 0.01993234, -0.043752905, 0.013196799, -0.011909264, 0.02964038, 0.038329493, 0.0014480726, 0.036055386, -0.0009708, 0.007814458, -0.02891833, 0.012171081, 0.028685173, 0.032253258, 0.00388525, 0.048136443, -0.021303399, 0.03304051, 0.03454951, -0.015778866, -0.038400624, -0.010479471, 0.029874217, -0.023955908, -0.014800416, 0.009461242, 0.013201586, 0.033215497, 0.0123163005, -0.024393344, 0.010940532, 0.009267578, 0.027836006, -0.049436353, -0.019405983, 0.022212055, 0.0250669, 0.037059102, -0.045240507, 0.02594606, -0.030757852, 0.002360968, 0.005438315, 0.0005808234, -0.08673829, 0.002107568, 0.09533947, -0.010779682, -0.0026449065, 0.045744076, -0.11824047, 0.025546106, -0.045276478, 0.0058338204, 0.083879225, -0.013168026, 0.04096615, 0.02142574, 0.029249966, 0.05986893, 0.0017907765, 0.009414105, 0.05764227, -0.0001499881, -0.020423055, 0.070328355, 0.022414038, 0.031419422, -0.0885114, -0.0054843165, -0.03950667, 0.07786964, 0.021559635, 0.012948531, 0.004155826, 0.012603253, -0.0009565545, 0.01059461, -0.015939925, -0.013545454, -0.08850166, -0.05906868, 0.04362447, -0.02582975, -0.044030663, 0.018429622, -0.014110573, 0.016683523, -0.036331963, 0.008291245, 0.010538747, -0.0035940204, -0.08280047, 0.008508324, 0.04710261, -0.007308877, 0.029584315, 0.014717525, 0.014049539, -0.002930795, 0.0278968, 0.023107694, 0.026146846, 0.037263952, 0.019722419, 0.009108629, -0.07484121, 0.016993765, 0.06090328, -0.056304164 ] }, { "values": [ 0.015476828, -0.0042468114, -0.057928395, -0.036617666, 0.04175566, 0.026096996, 0.023216013, 0.016471397, -0.009904746, 0.016843477, 0.013391828, 0.03391998, 0.044288293, -0.028040463, -0.06085243, -0.037418626, -0.0018345114, 0.01577581, -0.04852653, -0.026331445, 0.006453505, 0.048708875, 0.049188323, -0.05160509, -0.012590994, 0.032957252, 0.056764085, 0.010363621, 0.011873159, 0.0049374765, 0.008583182, 0.03453745, -0.0034800982, -0.051338326, 0.0681806, 0.013652709, -0.061489068, 0.04268407, 0.017941752, -0.041245483, -0.089615084, -0.030743163, -0.025431132, 0.03956867, -0.04040429, -0.008435492, 0.05470644, -0.032383904, -0.043621276, 0.033502888, 0.020883122, 0.0009829992, -0.062380496, 0.024407351, -0.0784003, -0.029225618, -0.04324532, -0.027981248, 0.05565855, 0.00834058, -0.0507641, 0.0006754483, -0.035946585, -0.021752838, -0.017420154, -0.034751896, -0.036611494, -0.021504475, -0.046054192, 0.0022608133, -0.04551859, 0.021954902, -0.0023722507, 0.0036611783, -0.020199178, -0.014397862, -0.01899793, -0.015676003, 0.020307234, 0.047846463, 0.012599037, 0.013790217, 0.04652915, 0.025880761, -0.024594259, 0.03273322, 0.066226356, -0.050537597, 0.0057065445, 0.029345063, 0.09811352, -0.019606354, -0.031230085, -0.00444405, -0.009500726, -0.029477954, -0.061792757, -0.053830754, 0.024101576, 0.056835435, -0.078859106, -0.017224705, -0.030226765, -0.036583632, 0.029855132, 0.022072218, 0.04446453, -0.02154384, -0.02583344, 0.034430675, -0.034373432, -0.013073158, 0.009035437, -0.012579032, 0.023005566, -0.062223732, -0.0075837793, -0.0058805007, -0.0522945, -0.0051156813, -0.019056268, -0.0060877264, -0.02667616, 0.06240993, -0.02058676, 0.01960525, -0.021057066, -0.038565733, -0.023844194, -0.07063482, 0.06997531, -0.13261026, 0.025116548, -0.018299809, -0.016419224, -0.029660314, 0.06397014, 0.023829686, -0.01860666, 0.00865824, 0.023126222, -0.008836437, -0.06322682, 0.021924105, 0.0030480209, 0.06957161, -0.018909099, -0.037175164, -0.07349266, 0.041099276, -0.022453446, -0.037134327, -0.0013241342, 0.00851357, -0.04465589, 0.047939524, 0.03964134, -0.019454774, 0.085049324, -0.04830377, 0.052383725, -0.012474732, -0.00756042, 0.003510554, -0.07512475, 0.023643168, 0.041221514, -0.040785894, -0.046292324, -0.015637921, -0.0015650822, -0.03455825, -0.041381802, -0.07443145, 0.0015426392, 0.027261099, -0.037460003, 0.0058103176, -0.024593327, -0.04239137, 0.043077603, 0.05222041, -0.05066831, 0.0038999591, 0.002421654, -0.013795207, -0.02755345, 0.033534255, -0.048200946, 0.015467209, -0.0033283709, 0.00894972, 0.04421398, 0.064285964, -0.008560892, 0.046667665, 0.10813188, -0.008587859, 0.0064524137, -0.03552053, 0.021877674, 0.032166354, -0.024111211, 0.046798337, 0.008027432, 0.03039186, -0.043530926, -0.046702612, 0.045459326, -0.034006886, -0.0050409515, -0.019068351, -0.016190046, -0.035659883, 4.1513165e-05, 0.028780183, 0.12585519, 0.030842435, 0.06850415, -0.026781535, -0.07474707, -0.021921776, -0.032343313, -0.061767027, 0.03951234, 0.0005617951, -0.033388082, 0.023563014, -0.054746922, -0.0012536981, 0.0038354308, 0.031763546, -0.0028157497, 0.005528228, 0.014134688, 0.05294697, 0.034195647, 0.01905901, -0.035105538, -0.055230167, 0.008190043, -0.00044641376, 0.030413546, 0.0009862174, 0.002525847, 0.029525544, 0.050724156, 0.054687686, -0.0071164537, -0.0064641056, 0.002032198, -0.057817925, -0.047181435, 0.0024897023, -0.0014653056, -0.017005412, 0.031486195, -0.039865, -0.011241502, 0.002898897, 0.022622135, 0.013696644, -0.008020588, -0.0621749, -0.0062220967, -0.096826494, -0.012471126, -0.033432163, 0.059128907, 0.0049037794, -0.02794362, 0.015522341, -0.03964978, -0.0375637, 0.014466346, 0.05585541, -0.035307266, -0.003910505, -0.026359955, -0.030324293, 0.004158926, -0.032853298, 0.005696166, -0.014868212, -0.033713274, -0.020848338, 0.008405865, 0.03107412, -0.023464294, -0.053919055, 0.036944594, 0.039955962, 0.0031870247, 0.028516179, 0.045898188, 0.016571116, 0.019543925, -0.010736966, -0.0385029, 0.017393244, 0.03851867, 0.090315916, -0.03793544, 0.02458687, -0.0114918165, 0.004414458, -0.030749688, 0.015981361, -0.012494105, -0.0021885405, 0.024583353, 0.011714058, -0.019826395, -0.025898531, -0.017289432, -0.013244501, -0.07558158, -0.010231689, -0.023830466, -0.044729788, 0.01331141, 0.020900903, -0.0051952195, -0.026289074, 0.0653476, 0.0015133721, 0.022191372, 0.015603274, -0.0067831012, -0.04849712, 0.010117528, 0.02292113, 0.04509424, 0.007044464, -0.024239026, -0.013110854, -0.026964389, 0.018123442, 0.017557506, 0.014542773, 0.067507654, -0.011404123, 0.025800422, 0.05105206, 0.008614254, -0.06251145, 0.06628137, -0.011231867, 0.036522057, -0.07212402, -0.015741812, 0.08752914, 0.014160526, -0.008669324, 0.036143865, 0.004863313, 0.025797803, 0.019564336, 0.01484109, 0.0056652594, -0.018784598, -0.0033783556, 0.014517252, -0.0022947004, 0.02455635, -0.0046421746, 0.012138663, 0.020736905, 0.00091473165, -0.072708026, 0.007377545, 0.010653646, 0.00013283783, 0.010308572, 0.010494788, 0.015197664, 0.025514761, 0.028200993, 0.019924711, -0.042036746, -0.029904347, -0.034615554, -0.051004663, -0.030700108, -0.03336794, 0.049170293, -0.014603809, 0.013008141, 0.014473519, 0.0041557997, -0.0416597, 0.073505424, 0.0076475083, 0.024877764, -0.011137176, 0.021546887, -0.023006769, 0.0142289, 0.045172688, -0.00045068827, -0.0075493087, 0.018597111, 0.03635585, -0.02726628, -0.026795292, -0.022360688, 0.056515228, 0.018218808, 0.030905498, -0.040378552, 0.042334415, -0.0022250882, 0.029383712, -0.024223553, -0.01573106, -0.015495907, 0.024923868, -0.043955624, -0.009883143, 0.012224362, -0.04134213, 0.022063153, 0.023140416, 0.036759492, 0.014193723, -0.013599149, 0.010517699, -0.006565788, 0.04324383, -0.002126043, -0.016802648, 0.038518943, -0.07511737, 0.013092333, 0.037429787, -0.0061510676, -0.019499457, -0.030402932, -0.06962937, 0.017916046, 0.019998923, -0.019259391, 0.03738407, 0.059605643, -0.014563179, -0.0058379043, 0.026587436, 0.011173238, -0.027177764, -0.06229526, -0.01850463, 0.05128425, -0.017984949, -0.023986863, 0.003477044, 0.012809338, 0.018585023, 0.009298531, -0.07052893, 0.003432933, -0.057025246, -0.025860565, 0.06273247, 0.10243427, 0.005853186, -0.011160471, -0.05301139, 0.01709956, 0.046625722, 0.083896525, -0.008565589, 0.0013828841, -0.011845308, -0.040430363, -0.0032146308, -0.01404947, 0.030076174, 0.012517026, -0.0016350332, 0.06470919, -0.03464888, 0.009435609, 0.03839743, 0.04359014, 0.0037579879, -0.048559032, -0.005743177, 0.042286072, 0.02258086, -0.01369371, 0.038651444, 0.03413267, 0.017353881, -0.022003612, -0.04023897, -0.047478173, 0.035635643, 0.018910173, -0.010170943, 0.017886646, 0.0966415, 0.0011260824, -0.028094253, -0.075876616, 0.015442224, 0.009315063, -0.031366438, -0.0021230688, 0.04331043, -0.005193427, 0.0036904777, -0.011592696, 0.010195615, -0.0066574905, -0.058910124, 0.0658377, -0.0909845, 0.040148705, 0.036086105, 0.03540502, -0.01771831, 0.020777848, 0.037819892, -0.021649182, -0.04750933, -0.052523952, -0.0115796495, 0.07557354, 0.062563024, 0.014040783, 0.013172534, 0.06624698, 0.005788806, 0.016003355, 0.010541427, 0.024335181, -0.0073288875, 0.029168831, -0.018731726, 0.021508882, -0.0078653, 0.008649561, 0.039141554, 0.018516753, 0.07082453, -0.012222022, 0.013116034, -0.009659634, -0.017650777, 0.05565617, -0.021816818, -0.025979312, 0.038134977, -0.016754668, -0.037844643, -0.046482913, -0.03152211, -0.016609706, -0.0058594667, 0.031958636, 0.035718653, -0.019598622, 0.0021594025, 0.012774861, 0.0054651177, 0.0052920743, -0.01379287, 0.042873267, -0.025882833, -0.008080042, 0.00060264004, 0.040805995, 0.00032499398, -0.041517526, -0.022257535, 0.032840945, -0.04410552, -0.012466282, 0.05196727, -0.036954783, 0.01830438, -0.04416472, 0.09156529, -0.016542468, -0.017109187, 0.024511155, -0.002893492, -0.042432178, 0.016168052, -0.004391406, -0.043439437, 0.030056166, 0.0022112173, -0.06611323, 0.073714085, -0.0026858724, 0.0006853951, -0.0098528, 0.009566631, 0.024119172, -0.033797707, 0.00082771067, -0.012811539, 0.030666607, -0.0061886325, -0.026673459, -0.01770852, -0.044264425, 0.016150797, -0.017400365, -0.038884997, 0.018338395, -0.005735271, -0.036501255, -0.060948696, 0.036336243, -0.05417025, -0.072448626, -0.007047493, -0.0073511084, -0.016063906, 0.014076196, -0.024605284, 0.027663998, -0.07247281, -0.024616046, -0.016786631, 0.035453744, -0.033187028, -0.00650811, -0.035530686, -0.0339242, 0.019780114, -0.035468318, -0.011674869, 0.06592711, 0.0050330567, -0.08513605, 0.034681916, -0.062821195, 0.0278406, -0.01587024, 0.0010404752, 0.035367377, -0.046605397, 0.06138693, 0.019139139, 0.023186807, -0.021974072, 0.04552189, -0.018404925, 0.040055446, -0.030331196, -0.025873346, -0.07682031, -0.009350418, -0.027333338, -0.024925597, 0.020422611, -0.04993334, 0.008765537, -0.026539512, 0.014551819, 0.016599318, -0.009317009, 0.043774724, 0.0011211645, -0.0044472315, -0.037011974, 0.0014162869, 0.051299263, 0.03767054, 0.008889864, 0.036985744, -0.015002926, 0.032077152, 0.018004833, -0.055084284, -0.03417913, -0.011261931, 0.03737334, -0.048500694, -0.018271228, 0.010137319, 0.023697946, 0.020290958, 0.008469906, -0.033241373, 0.008554121, 0.025096701, 0.0065775993, -0.063011155, 0.006078606, 0.041730236, 0.03826573, 0.041421566, -0.08183661, 0.002950148, -0.040888686, -0.014586382, -0.01221795, 0.0071670967, -0.07349321, -0.029139794, 0.089245684, -0.023985142, 0.01501699, 0.07288572, -0.08948925, 0.03697111, -0.033309095, 0.0112621, 0.059386402, -0.008979748, 0.04077209, 0.033179596, 0.031385962, 0.05395047, 0.016712017, -0.015206829, 0.03633573, 0.0034792398, -0.027161136, 0.07744649, 0.0146267805, -0.0021200024, -0.06811855, 0.0098784445, -0.04269085, 0.07093739, 0.02179924, -0.015668549, 0.0018140493, 0.0014416483, -0.011488289, 0.017048813, -0.007734845, -0.014213318, -0.0977641, -0.04456732, 0.028036466, -0.00951762, -0.029917508, 9.485795e-05, 0.0139441695, 0.006228808, -0.033925865, 0.017346347, -0.0064660795, -0.03184741, -0.0722951, 0.010076579, 0.050800126, -0.01746472, 0.022500891, 0.036064886, 0.019369792, -0.01280224, 0.021750957, 0.026460793, 0.029207185, 0.044566832, 0.00028655847, 0.0018133614, -0.0712646, -0.015249475, 0.055506743, -0.046607077 ] }, { "values": [ 0.023835417, -0.018843384, -0.06826487, -0.038013104, 0.036987677, 0.015278723, 0.025145357, 0.0044732573, -0.005731879, 0.013625377, 0.015633523, 0.05131527, 0.033944666, -0.032956198, -0.058955725, -0.034610298, -0.033975188, 0.0035175197, -0.065602876, -0.015065989, -0.010132597, 0.04202061, 0.060011584, -0.037681513, 0.0017908808, 0.04640745, 0.04528131, 0.010368068, 0.019784654, -0.0050568394, 0.011389004, 0.036789488, 0.0054060747, -0.030028984, 0.09812576, 0.010706389, -0.033348467, 0.02359157, 0.0069729188, -0.026760291, -0.08910258, -0.0040844013, -0.029975437, 0.02669615, -0.028745336, 0.008643049, 0.029857654, -0.03269749, -0.040494345, 0.043283474, 0.019019807, 0.002249388, -0.08352703, 0.0011700233, -0.059928603, -0.02893398, -0.048133906, -0.023910914, 0.06508376, 0.016601797, -0.046348218, -0.018441759, -0.0029839233, -0.022866977, -0.0023998008, -0.027992865, -0.037887964, -0.01814849, -0.057514455, 0.017712984, -0.018743956, 0.020618254, 0.001992379, 0.018713031, -0.0072003105, -0.014607099, -0.03480664, 0.011827865, 0.021292808, 0.039802697, -0.009801443, -0.0022016263, 0.06543217, 0.021682898, -0.022962894, 0.022837687, 0.043832753, -0.050164334, 0.00033347707, 0.039689068, 0.100568734, -0.0045496556, 0.0071598515, 0.015791137, 0.005067257, -0.045957077, -0.08176444, -0.06583878, 0.011654607, 0.06130479, -0.0667214, -0.007961907, -0.026867555, -0.033221267, 0.038382456, 0.030671453, 0.06466609, -0.024186978, -0.03669914, 0.04903526, -0.008973744, -0.02951808, 0.0016342567, -0.015608932, 0.041583095, -0.06217685, -0.011632599, 0.019514678, -0.01575515, 0.010629925, -0.012828409, -0.027315956, -0.02059767, 0.072503954, -0.043583278, 0.023569463, -0.012328489, -0.052026223, -0.02736656, -0.08513353, 0.077739544, -0.12069995, 0.0016928887, -0.009101558, -0.01384028, -0.035712935, 0.039220393, 0.040356155, -0.012595244, 0.021949714, 0.011510558, -0.022478648, -0.031313647, 0.022400727, 0.013793136, 0.06796283, -0.009690392, -0.021509318, -0.05733796, 0.026139716, -0.048648108, -0.04108044, 0.005660229, 0.014737611, -0.039129533, 0.05843093, 0.065307826, -0.021421978, 0.108828545, -0.04087475, 0.02096456, -0.029483393, 0.022567809, 0.0049111866, -0.07206453, 0.01802464, 0.014926009, -0.051692497, -0.05338661, -0.011768149, 0.00955158, -0.0057319, -0.0035309023, -0.078946486, 0.021523288, 0.015057205, -0.041471303, 0.024503762, -0.014883234, -0.035049845, 0.05681352, 0.049005046, -0.010724175, 0.008751952, 0.006944479, -0.021488994, -0.018492837, 0.052090317, -0.058002498, 0.025809303, -0.0019443881, 0.03409756, 0.04247051, 0.05303536, -0.012421628, 0.054033265, 0.114414416, -0.008102793, 0.006509966, -0.04076016, 0.033493277, -0.00061692763, -0.0209452, 0.041299168, -0.0063954284, 0.0065148263, -0.043507982, -0.04058533, 0.044390578, -0.024037754, -0.002956351, -0.034457084, -0.03049714, -0.050271034, 0.0063752746, 0.023610067, 0.12391718, 0.059891097, 0.06607193, -0.020383153, -0.059755117, -0.0041802498, -0.025736388, -0.07245936, 0.027598735, -0.0035345396, -0.048053097, 0.0017757948, -0.063340105, 0.0015397551, -0.0034989216, 0.032103498, 0.0084114615, -0.009137107, 0.011162546, 0.019667637, 0.009914727, 0.0028367527, -0.017838394, -0.0793935, 0.0017079787, 0.009063888, 0.029149793, -0.015651058, 0.009883703, 0.0047190986, 0.04130765, 0.06730007, -0.034346666, 0.0013163491, 0.011230569, -0.03186309, -0.01572126, 0.024657337, 0.0050713127, -0.0049659787, 0.025902301, -0.044083577, -0.030710664, -0.015418242, 0.03492864, -0.0037858384, -0.012056369, -0.062443294, -0.007934043, -0.0992919, 0.010313068, -0.031191481, 0.037849173, 0.024058105, -0.014504298, 0.0146189155, -0.035063606, -0.047198586, -0.0026513997, 0.043662436, -0.047994044, 0.022247443, -0.023136826, -0.028766405, -0.0009458182, -0.02586152, -0.01658214, -0.002070876, -0.018267488, -0.03739953, 0.0027005037, 0.0014109485, -0.034407217, -0.05510523, 0.054090895, 0.054459896, -0.01336347, 0.05492055, 0.030565042, 0.02262285, 0.026250256, 0.0014000835, -0.0041361134, 0.010627395, 0.017924977, 0.10229327, -0.018288394, 0.021802261, -0.024883261, 0.018804835, -0.03787976, -0.00026663157, -0.019172493, -0.016483331, 0.027287725, 0.023647686, -0.020537727, -0.03215776, -0.011886664, -0.003626492, -0.054174382, 0.0059088087, -0.020749021, -0.06559858, 0.01241398, 0.019577887, -0.0056560193, -0.024538774, 0.06636677, -0.004381163, 0.029795758, -0.0124792615, -0.01873268, -0.03136827, 0.015966794, 0.012681167, 0.01949379, -0.01584408, -0.0274649, -0.012372958, -0.02652012, 0.011773247, 0.020004103, -0.00012137122, 0.06452741, -0.018908272, 0.043900445, 0.012411872, -0.016049832, -0.05827677, 0.06151275, -0.023067957, 0.046149552, -0.07178674, -0.027720599, 0.08143484, 0.024933362, 0.01421243, 0.04381197, 0.009629776, 0.05240585, 0.014985333, 0.0020451997, 0.014961797, -0.02675726, -0.013879507, 0.031379256, -0.020497242, 0.025374752, -0.012670816, 0.0048115156, 0.034147445, -0.008623235, -0.060126554, -0.001907391, 0.025466945, -0.00018236712, 0.0022601269, 0.013849312, -0.01623175, 0.023918124, 0.015138888, 0.029326148, -0.033005968, -0.037732385, -0.046531606, -0.053150974, -0.026178824, 0.004458425, 0.047565952, -0.022355491, 0.01815987, 0.009506863, 0.007885228, -0.025310649, 0.054761197, 0.008337754, 0.02511706, -0.016823683, 0.012779199, -0.0091924, 0.0138200605, 0.05303899, 0.004421759, 0.0075481506, 0.026669009, 0.030043708, -0.015696777, -0.020185713, 0.011577429, 0.047740266, -0.007570612, 0.023695126, -0.04093758, 0.034043353, -0.0006931261, 0.033280946, -0.019632304, -0.0052504838, -0.02100865, 0.027577072, -0.0469736, -0.019632455, 0.0379477, -0.03938451, 0.030612847, 0.021049632, 0.056040626, 0.0046410942, -0.014124455, 0.022143396, 0.0036570732, 0.048991267, -0.011311712, -0.0062280386, 0.02191926, -0.073644295, 0.010923325, 0.019433739, -0.005791272, -0.003661374, -0.041899007, -0.05846565, 0.0020894562, 0.035393734, -0.006259841, 0.049681492, 0.05957826, -0.012163689, 0.01621273, 0.05056514, 0.012103164, -0.035010744, -0.042521287, -0.019940782, 0.072416104, -0.03458277, -0.043635666, 0.0024251128, 0.0202391, 0.014664039, 0.012124615, -0.06093861, 0.012384456, -0.065151654, -0.049471702, 0.056791965, 0.101162545, 0.018423745, -0.021012042, -0.054848585, 0.018322745, 0.04350609, 0.074800685, -0.010990816, -0.0077984147, -0.016278742, -0.03395083, -0.001592735, -0.008616394, 0.018991359, 0.007670629, -0.008624545, 0.053794164, -0.02409856, 0.018144326, 0.03496533, 0.033734076, 0.00801198, -0.06067889, -0.0093703205, 0.019349732, 0.027511775, -0.011406315, 0.008813158, 0.027223654, 0.030864334, -0.019455316, -0.052004974, -0.056199435, 0.040133964, 0.027068378, 0.0041716164, 0.001559763, 0.09781026, 0.016311081, -0.0009421945, -0.054281443, 0.013394011, 0.00509656, -0.023940848, 0.012368837, 0.027108507, -0.01711706, -0.0009219058, -0.0128482245, 0.006512738, -0.0026062764, -0.052568194, 0.06071884, -0.08606395, 0.03724971, 0.016632535, 0.03570862, -0.05279, 0.00044529914, 0.039164647, -0.03134084, -0.037932143, -0.055136595, -0.016691048, 0.06943475, 0.047528673, -0.004155468, 0.013471771, 0.068661086, 0.013274648, 0.004300119, 0.032061666, 0.017268883, 0.015619567, -0.0007738422, -0.008253475, 0.030692825, -0.008235268, -0.023315167, 0.027888956, 0.031215424, 0.06449345, -0.014081518, 0.00813566, -0.025761507, 0.0031015947, 0.059684932, 0.0041914764, -0.027501721, 0.029417891, 0.0040341313, -0.047954183, -0.041365, -0.03205914, -0.02039877, -0.0047351937, 0.042994116, 0.031784456, -0.02559508, -0.015530262, 0.031300392, -0.041570585, 0.02380265, -0.0011354384, 0.066448286, -0.022924894, -0.008187536, -0.007730988, 0.03744826, -0.013139308, -0.04606498, -0.026542865, 0.033280365, -0.04074675, -0.0052746134, 0.047613833, -0.037937712, 0.040532622, -0.055279803, 0.071479894, -0.021302046, 0.013525125, 0.012734921, -0.0050709927, -0.04705191, 0.007371389, 0.0042053335, -0.052915853, 0.017141994, 3.4591594e-05, -0.043013696, 0.07105511, -0.008888454, 0.009574017, -0.023362506, 0.013232306, 0.004387201, -0.018980099, -0.008923818, -0.033480052, 0.037962396, 0.0035501553, -0.025547823, 0.00028343574, -0.048993897, 0.005942273, -0.02305915, -0.04396945, 0.016505456, -0.007856922, -0.04718388, -0.06757433, 0.024160977, -0.05447218, -0.0955251, -0.009687645, 0.0056051486, 0.013941489, 0.025649788, -0.0046541644, 0.006786244, -0.05990506, -0.029539496, 0.00035453105, 0.060537808, -0.04457324, -0.016424505, -0.046856403, -0.039013717, 0.012154337, -0.031119745, -0.027044522, 0.06011327, 0.0032829049, -0.059090238, 0.036109418, -0.0771009, 0.019350078, 0.014621149, -0.00044969434, 0.050077196, -0.059191182, 0.058024857, 0.021490516, 0.04951422, -0.037860412, 0.054151345, -0.025717508, 0.008505576, -0.035884295, -0.031451464, -0.05637152, -0.007834868, -0.032719616, -0.03693943, 0.018165212, -0.04925797, 0.014847246, -0.006303868, 0.03101694, 0.026892843, -0.008038728, 0.043966003, -0.011454251, 0.023183033, -0.010763581, -0.023059605, 0.051318698, 0.020201743, 0.020549765, 0.051237468, -0.017636022, 0.017196346, 0.028807754, -0.056757767, -0.021289892, 0.002854157, 0.017220024, -0.041691013, -0.02859524, 0.011076088, 0.016075702, 0.027007742, 0.031769488, -0.015152785, 0.012259735, 0.026342684, 0.02586407, -0.05199335, -0.019525852, 0.016937045, 0.035613246, 0.03821093, -0.0764845, 0.02894362, -0.036152598, -0.019037288, -0.0052037947, 0.012028324, -0.07799172, -0.026661072, 0.0877116, -0.02211219, 0.026144188, 0.054360583, -0.071679756, 0.032810245, -0.031810872, 0.017413544, 0.06994301, -0.021522518, 0.031532723, 0.033092096, 0.03713654, 0.05067316, 0.018153524, -0.009574036, 0.019533303, 0.013398794, -0.0394919, 0.062253755, 0.0265246, 0.010802615, -0.06995866, 0.026013846, -0.045104124, 0.077822015, 0.009770891, -0.013464669, 0.020945707, 0.014642364, -0.010445444, 0.017063864, -0.009568545, -0.004653382, -0.09456961, -0.028108114, 0.024787253, -0.018924356, -0.0050681466, 0.032657664, -0.0024246355, -0.00047307025, -0.059293725, -0.008012462, -0.009237382, -0.03606641, -0.07204756, 0.019818265, 0.04593718, -0.028086115, 0.036286645, 0.025589818, 0.008185303, -0.018251747, 0.005485223, 0.016713928, 0.029111655, 0.039361127, -0.021827906, -0.0020313256, -0.05180883, 0.0024465339, 0.04329452, -0.039758094 ] }, { "values": [ -0.00083768205, -0.03002897, -0.0464324, -0.053907495, 0.019996358, 0.021714456, 0.005943351, 0.016576946, -0.04063517, -0.010706089, 0.029431779, 0.043515448, 0.025620043, -0.013581157, -0.050024815, -0.012738365, 0.013246706, -0.029125843, -0.050293364, 0.002231225, -0.006396215, 0.058541957, 0.029234326, -0.033509, 0.014753598, 0.05080422, 0.026435193, -0.013857198, -0.00350196, -0.0031715, 0.019453825, 0.0030869634, 0.003518374, 0.0003967514, 0.04755898, 0.02425563, -0.017954167, 0.01736944, 0.028473586, -0.061912887, -0.08418154, -0.024550594, -0.029154567, 0.025800856, -0.034643713, 0.029795213, 0.018839248, -0.038754072, -0.012267551, 0.009228727, 0.024791108, -0.0055999495, -0.061391015, 0.025197841, -0.060933925, -0.00650215, -0.042335108, -0.042469647, 0.074275985, 0.002227411, -0.03055733, 0.013164201, -0.011083754, -0.02732352, -0.005978059, -0.016114803, -0.04082657, -0.053029355, -0.069336995, 0.015129405, -0.025862591, -0.008286726, -0.0039810305, 0.0008650131, -0.0027802356, -0.04433468, -0.01486675, -0.028374672, 0.01209295, 0.039957613, 0.009397908, -0.023155319, 0.030817058, 0.03097108, -0.017050853, 0.04425831, 0.041953716, -0.037754197, -0.03407278, 0.039153416, 0.0944365, -0.012702775, -0.027795406, 0.0024734966, 0.031148383, -0.069236234, -0.05504853, -0.05184837, 0.022146564, 0.03759417, -0.084250376, 0.013946874, -0.02557937, -0.054656178, 0.04957105, 0.054217223, 0.071752906, -0.040898018, -0.010668409, 0.059670776, -0.01576961, -0.03813883, -0.03603613, 0.014169894, 0.025502738, -0.061034136, 0.013356519, 0.005117314, -0.040499378, -0.01196766, -0.038840927, -0.00931459, -0.0037634869, 0.065716654, -0.043926965, 0.026787324, 0.012583747, -0.06951887, -0.028610352, -0.07580517, 0.058079623, -0.14155453, 0.015047656, 0.0069497633, -0.025804859, -0.027620845, 0.056098588, 0.03693869, -0.030084554, 0.0035015761, 0.020414406, -0.047667917, -0.042528186, 0.04015739, 0.023876518, 0.04102032, -0.037007883, -0.04893757, -0.057086445, 0.0067696148, -0.0530554, -0.032280207, -0.026912466, -0.00076711125, -0.031611327, 0.06529471, 0.056884833, -0.05331122, 0.07471836, -0.04828866, 0.0052400376, -0.053860392, 0.023421306, -0.022931773, -0.031378236, 0.048199333, 0.013458708, -0.04076635, -0.09740229, -0.056437638, 0.0278082, -0.057725467, -0.05250248, -0.08400569, -0.0030116502, 0.0072912145, -0.031071242, 0.023607368, -0.0074026887, -0.017663302, 0.05302978, 0.042364217, -0.014277967, 0.017851083, -0.032261077, -0.03648514, 0.0042342665, 0.06737804, -0.036980916, 0.046230152, 0.010498753, 0.052710302, 0.047890525, 0.037256144, 0.009883125, 0.050519187, 0.11869167, -0.024376605, -0.010487852, -0.0398081, 0.009862631, 0.053169683, -0.022639906, 0.052474223, -0.0056606736, 0.007082844, -0.03060176, -0.043024037, 0.06931629, -0.015842488, 0.009580254, 0.0010819469, -0.034256276, -0.043780725, 0.004958116, -0.005023354, 0.1365848, 0.057163417, 0.067478515, -0.053779416, -0.036405418, -0.0021308886, -0.003255768, -0.058142405, 0.06284145, 0.031136334, -0.0047487305, 0.02203795, -0.037444416, -0.008149322, 0.002887889, 0.0345092, -0.026490562, 0.011248528, 0.017550046, 0.034619167, 0.034941223, 0.0123988, -0.056680404, -0.039768793, 0.014658381, 0.0042579565, 0.030569503, -0.029512987, -0.010299519, 0.04600257, 0.05036757, 0.048403513, -0.050066583, -0.003960699, 3.7901722e-05, -0.044995993, -0.027996108, -0.0059137386, -0.00033017783, -0.04015962, 0.045612037, -0.05378817, -0.015771762, 0.010104793, 0.05050534, -0.01590209, -0.00459633, -0.06352691, 0.0006901478, -0.05151611, -0.004511979, -0.025476437, 0.035112325, -0.00857977, -0.01875162, 0.024700267, -0.060528588, -0.00857293, 0.010840869, 0.05685854, -0.01310547, 0.016589439, -0.02883546, -0.04754218, 0.0327039, -0.023872122, 0.04037927, -0.01762039, -0.01976784, -0.02784178, 0.014127789, 0.04717953, -0.027024824, -0.03366815, 0.05112189, 0.044178277, -0.016086629, 0.027763482, 0.08530727, 0.008761813, 0.015410903, -0.025982816, -0.032191254, 0.038340334, -0.017027007, 0.089336954, -0.033535447, 0.010379831, 0.0050440235, 0.015236459, -0.042175606, -0.009481335, -0.0011040873, -0.007950197, 0.01779758, 0.04149591, -0.03439832, -0.04495903, -0.006863729, -0.0019215412, -0.086275846, 0.02113899, -0.0063493093, -0.056091703, 0.008724849, 0.028953658, 0.008658125, -0.02806088, 0.051895928, 0.0073730587, 0.016591601, -0.0142659405, 0.005756328, -0.033159647, -0.021675633, 0.007234288, 0.012913173, 0.0039526653, -0.032760207, 0.003776328, -0.061015632, 0.017870707, 0.0052738646, 0.013565467, 0.036958933, -0.012594509, 0.019294448, 0.023092298, 0.03970736, -0.038292382, 0.04995229, -0.006907907, 0.04326495, -0.08950134, -0.026466845, 0.07542529, -0.0035370423, -0.011714733, 0.03391869, 0.03680019, 0.035000674, 0.029547721, -0.02710291, 0.01638544, -0.044017218, -0.026735831, 0.034940965, -0.012727128, 0.040998753, 0.0044672973, 0.038342237, 0.013019136, -0.010073626, -0.039941836, 0.017866947, 0.034626413, 0.018781526, 0.03479274, 0.020956654, -0.024194738, 0.008335185, -0.004537298, 0.024669385, -0.014946361, -0.03367285, -0.043032654, -0.051384352, -0.025668817, -0.02052491, 0.02898568, -0.023354106, 0.016681151, 0.008862367, 0.010721269, -0.050983954, 0.016065596, -0.017220935, 0.03681495, 0.016818281, 0.025340375, 0.013992819, 0.019747254, 0.022852112, -0.0069889193, -0.017177159, 0.015005378, 0.030967696, -0.053290494, -0.0030164733, 0.031799186, 0.06151892, 0.016526671, 0.016999155, -0.05229177, 0.046508763, -0.0010064278, 0.030026589, 0.001756872, -0.012200634, -0.0020657328, 0.033526417, -0.040706147, -0.0074826037, 0.030761158, -0.00552736, 0.024673365, -0.0036844676, 0.059192896, -0.028348798, -0.026284672, 0.02052244, 0.019454217, 0.040072, -0.015387738, -0.0102309035, 0.017522776, -0.062357157, 0.0056670783, -0.0073211286, -0.016281072, -0.0062545594, -0.022706449, -0.022831982, -0.0029793915, 0.018516446, -0.028851744, 0.02808383, 0.056128066, -0.004376352, 0.02058838, 0.038347866, -0.015681908, -0.025462195, -0.07342942, -0.021515984, 0.03497668, -0.011422687, -0.058343425, -0.0069767376, 0.013866107, 0.05535503, -0.006082052, -0.045764122, 0.021540212, -0.05900963, -0.04263952, 0.049836107, 0.093235575, 0.004045441, 0.004732702, -0.06858186, 0.031209094, 0.02986663, 0.07268192, -0.0046018683, -0.017435543, -0.010135717, -0.037179455, -0.007093156, -0.0053018946, -0.023134658, 0.0142793115, 0.00949636, 0.05176864, -0.02773755, 0.010552516, 0.03461493, 0.03930442, 0.013036531, -0.0367282, -0.01731442, 0.041802607, 0.027133081, 0.007819011, 0.039158143, 0.045570213, 0.02701396, -0.016748773, -0.01839548, -0.033297054, 0.05025687, -0.0033549112, 0.011796297, -0.017132157, 0.10961732, -0.0023934166, -0.001700149, -0.037322316, -0.026589809, 0.020925768, -0.05843599, 0.0075743315, 0.033719007, -0.0025107125, 0.009029905, -0.012814277, 0.024402274, 0.014937106, -0.036145862, 0.07468299, -0.09148167, 0.019129455, 0.017195899, 0.054173686, -0.0102486415, 0.015379963, 0.021199489, -0.021190746, -0.027880743, -0.023850655, -0.049950346, 0.07149755, 0.05285617, -0.017425068, -0.018633772, 0.080461, 0.013111181, 0.002888643, 0.032861136, -0.0035742356, 0.005387373, 0.023930421, -0.009239225, 0.028738232, -0.010924032, 0.007843008, 0.022356773, 0.021082096, 0.073277384, -0.019445298, 0.015528798, -0.03581066, -0.020588763, 0.06619932, -0.014538043, -0.016246589, 0.04077819, 0.0146578755, -0.023464065, -0.060918234, -0.026154231, -0.011657041, -0.014869977, 0.028917786, 0.022773746, -0.011996407, -0.019124517, 0.030581044, -0.007943083, 0.017626239, -0.017735114, 0.034616478, -0.0076462487, -0.01957814, -0.008087497, 0.0407143, -0.021727161, -0.037178323, 0.0024587172, 0.017278058, -0.03713445, 0.0037032545, 0.04370788, -0.023772925, 0.027482258, -0.044990167, 0.06496401, -0.047363378, -0.009040611, 0.019716378, -0.013769677, -0.052403454, -0.0029277378, 0.03135104, -0.054384127, 0.00792792, -0.022208044, -0.03820291, 0.07209747, -0.025498223, 0.014724152, -0.009440439, 0.018505339, 0.016742732, -0.022583392, -0.010313815, -0.021978494, 0.03989637, 0.0071446397, -0.02816888, -0.022904476, -0.0481329, -0.017991075, -0.0056102644, -0.031746082, 0.027354611, -0.024926752, -0.029492019, -0.041200288, 0.045620486, -0.04638709, -0.06732456, -0.013708092, -0.016088918, -0.03422667, 0.028994288, -0.014170158, 0.0034678304, -0.06390877, 0.016845407, -0.026516078, 0.068368144, -0.029670803, 0.01467313, -0.03662768, -0.014680177, 0.0009911022, -0.03720555, -0.02599268, 0.06517129, 0.008991751, -0.06100079, 0.0066595436, -0.07427893, 0.030956175, -0.018604977, 0.009417918, 0.016168328, -0.0765594, 0.07459324, -0.008153213, 0.008334293, -0.030710613, 0.059351165, -0.0143775055, 0.04982108, -0.056924853, -0.03172737, -0.049206622, 0.0006612096, -0.0419467, -0.03459104, 0.009358121, -0.039538164, 0.0038832389, -0.0010346276, 0.022828426, 0.035780158, -0.0067236195, 0.053565416, 0.0191257, -0.0058215163, -0.009302239, -0.0076392395, 0.04548645, 0.021361256, -0.0013370474, 0.025257621, -0.008653197, 0.0062460736, 0.012101493, -0.02594838, -0.047522597, 0.008177031, 0.015167611, -0.051321015, -0.0076210997, -0.008209001, 0.024834838, 0.01580606, 0.03182997, -0.036618467, 0.052107904, 0.027236804, -0.0072805146, -0.06624677, -0.004586161, 0.027298927, 0.03558737, 0.015685214, -0.07012663, 0.031492386, -0.032130565, -0.00563894, -0.023904033, 0.00016546244, -0.060445577, -0.037220027, 0.083626255, -0.012547022, 0.017373934, 0.03804473, -0.063808456, 0.043139096, -0.045103475, 0.01751554, 0.06739871, -0.0042114924, 0.04674336, 0.035768826, 0.026345327, 0.04096912, 0.003239364, -0.046585422, 0.0052796854, -0.00492125, -0.014272939, 0.05994248, 0.016655885, 0.014733897, -0.064098544, -0.0025180476, -0.028129706, 0.08932358, 0.026082793, -0.0038792763, 0.0044614966, 0.030524297, 0.0014451104, -0.0128563335, -0.028040046, -0.011720722, -0.07548291, -0.050906323, 0.020050287, -0.010071365, -0.018237412, -0.0054606693, -0.010306349, 0.0312847, -0.04347549, -0.0009047989, 0.008409444, -0.028510585, -0.06421085, -0.011466909, 0.04523059, -0.01932828, 0.0022867112, 0.018240653, 0.056208182, -0.0070630256, 0.030984636, 0.0031741522, 0.041934554, 0.02351259, 0.0027302515, 0.0036536946, -0.053367108, -0.0045319404, 0.015220219, -0.07570661 ] }, { "values": [ -0.0056648753, -0.0053077037, -0.020029508, -0.022235705, 0.026787162, 0.022883052, 0.02340163, -0.01754749, -0.025186637, 0.00803315, 0.025501968, 0.048719693, 0.018966928, -0.026062744, -0.03973654, -0.031372435, 0.0044969753, -0.0016660992, -0.05852427, -0.0231724, -0.000952988, 0.049803257, 0.04290009, -0.033749245, 0.0027531227, 0.022230772, 0.031861126, -0.00218807, 0.013453496, -0.015486847, 0.018992044, 0.04294257, -0.0054781763, -0.031077635, 0.08690227, -0.003364171, -0.037450116, 0.007968452, 0.04073987, -0.033900514, -0.09237838, -0.005067417, -0.038544048, 0.032941885, -0.032557465, 0.029949144, 0.05582679, -0.008684413, 0.0064866035, 0.044673774, 0.044952266, -0.007934551, -0.038656604, 0.010205349, -0.04712561, -0.028403537, -0.059535585, -0.06327073, 0.06302824, -0.0008595717, -0.032245543, -0.0008617834, -0.02438118, -0.03736044, 0.014528992, -0.013905265, -0.027627943, -0.03463665, -0.056035858, 0.027892014, 0.002974841, 0.014629261, 0.02227314, 0.0026874682, -0.012362214, -0.0060563786, -0.051024448, -0.021932352, -0.011639928, 0.014019234, -0.007122148, 0.00024982917, 0.036154643, 0.044583414, -0.017666427, 0.041175924, 0.037963763, -0.06454751, -0.0041503487, 0.024079883, 0.09243872, 0.009516252, -0.005337215, -0.0006198778, 0.024103785, -0.07052295, -0.0827681, -0.053160448, 0.044047955, 0.06756188, -0.049489524, -0.00028540968, -0.014516081, -0.032767676, 0.06551904, 0.019596819, 0.057610936, -0.01795336, -0.017069642, 0.06816229, -0.027800452, -0.03196037, -0.01810399, -0.012895718, 0.0043846164, -0.082412004, 0.00012829078, 0.008182032, -0.036427118, -0.026070988, -0.021881035, -0.019667264, -0.045537334, 0.041641295, -0.05736225, 0.029399212, -0.03780654, -0.059526175, -0.00040261424, -0.09415575, 0.054606162, -0.14067535, 0.010485886, -0.01438471, -0.02624461, -0.04099106, 0.048589025, 0.036878943, 0.0032090102, 0.0036934002, 0.0075795664, -0.032161053, -0.00530924, 0.04353954, 0.020550096, 0.045941994, -0.034568507, -0.016006302, -0.07662395, 0.020644795, -0.064287856, -0.005910491, -0.030742893, 0.026788883, -0.019313099, 0.061157092, 0.06450063, -0.019045826, 0.09545333, -0.049893595, 0.01889903, -0.014766196, 0.02542357, -0.020346636, -0.06603597, -0.0054380726, 0.0051111667, -0.049747024, -0.069172606, -0.027398601, 0.043752257, -0.015839804, -0.027485853, -0.09972349, 0.01018456, 0.036858086, -0.012423133, 0.03324701, 0.017007472, -0.00078323245, 0.040873937, 0.018459748, -0.020069297, 0.017302513, -0.0013537398, -0.055449218, -0.024800003, 0.08557904, -0.021002894, 0.06139077, 0.0028685431, 0.049806993, 0.021693569, 0.019882156, 0.0030178088, 0.04728155, 0.09748183, -0.019734709, 0.042931028, -0.042705562, 0.05226901, 0.02463298, -0.012979374, 0.049930733, -0.0011002308, -0.0041315528, -0.018198544, -0.018246079, 0.049487904, -0.0066789784, -0.014454629, -0.040041078, -0.027806178, -0.050702147, -0.016842782, 0.04715976, 0.11060069, 0.044863265, 0.04362467, -0.027157798, -0.049603265, 0.013318004, -0.012382862, -0.04706673, 0.045262598, -0.011567118, -0.028535053, -0.01624415, -0.054050844, 0.041476607, -0.015440954, 0.047798663, -0.0073488792, 0.008963938, 0.017803375, 0.028686581, 0.016262848, 0.0059618386, -0.03137238, -0.05979655, -0.021548716, 0.027798362, 0.045884725, -0.01703451, -0.0008457768, 0.05853492, 0.058631793, 0.07749695, -0.046909936, -0.01810639, 0.010706149, -0.03846992, -0.02573107, 0.022403717, 0.0025596928, -0.043870725, 0.034160204, -0.06653524, -0.0071266578, -0.028965404, 0.053026468, -0.002075912, -0.011205856, -0.069009475, -0.013861565, -0.06809507, -0.007571862, -0.008735694, 0.06447953, 0.03414374, -0.018016383, 0.009887849, -0.0288214, -0.035277914, 0.0024237388, 0.04510206, -0.025177648, 0.0072477157, -0.008026515, -0.05331953, 0.03203801, -0.03136781, 0.0057640728, -0.033614773, 0.0006874733, -0.034158174, 0.026869914, 0.035853144, -0.040988088, -0.03143585, 0.0718326, 0.048680086, 0.004194873, 0.039063375, 0.037315864, 0.025881793, 0.016163865, 0.0025323676, -0.0057887635, 0.006239746, 0.017810848, 0.08115701, -0.0130972415, -0.017152907, 0.013812291, 0.020448375, -0.053151008, -0.02581577, 0.001904606, 0.0069072912, 0.017519156, 0.03918936, -0.010303551, -0.03349413, 0.025558555, 0.020292133, -0.075354636, 0.001953531, -0.012259887, -0.0500465, 0.017266452, 0.03329584, -0.010686207, -0.018186182, 0.058714185, -0.011170397, 0.01916397, -0.011063632, 0.008992331, -0.029613962, 0.013979126, 0.014591947, 0.020229148, 0.0067090383, -0.02964534, 0.0046938285, -0.04370194, 0.015362102, 0.028206496, 0.010808114, 0.046230976, -0.032781485, 0.029638693, 0.028786803, -0.008575669, -0.059485946, 0.046244323, -0.021077909, 0.05113035, -0.061119314, -0.054842316, 0.0750419, 0.021989131, -0.0075916573, 0.032825835, 0.016847324, 0.0631358, 0.020729529, 0.0049691726, 0.010793856, -0.017952776, 0.0125693325, 0.041674543, -0.024013989, 0.025299916, 0.008278606, 0.017356457, 0.020409862, -0.007801717, -0.07060505, 0.0025128408, 0.034948558, 0.0035678097, -0.01255468, 0.0027292348, -0.028937748, 0.014995528, 0.0056867013, 0.014670978, -0.036244754, -0.051526356, -0.028176228, -0.034008604, -0.026097225, -0.03373875, 0.026007982, -0.010003632, -0.0029919571, 0.016634166, 0.017166426, -0.046179846, 0.053427406, -0.021974294, 0.030841507, 0.0031606914, -0.0058764215, -0.028303437, 0.014415414, 0.053810716, -0.011536446, -0.020196568, 0.013593273, 0.03385773, -0.010171406, -0.008860069, 0.018692842, 0.072005644, -0.017090838, 0.021339698, -0.065660484, 0.03575678, -0.010836355, 0.020083675, -0.019564146, -0.019009328, -0.028279074, 0.0026477692, -0.022107648, 0.005509266, 0.024691075, -0.0085131, 0.04363035, 0.025069108, 0.034771897, -0.04064187, -0.036272466, 0.020231122, 0.011342052, 0.025021182, -0.01945266, -0.02064098, 0.025586734, -0.07948799, 0.0014347894, -0.005190249, -0.026003227, -0.0042810002, -0.006807138, -0.033722855, -0.013038056, 0.025941122, -0.030056497, 0.059090514, 0.050153926, -0.009137027, 0.03189173, 0.07196735, 0.021170741, -0.036574785, -0.06968335, 0.009490972, 0.06492391, -0.021950038, -0.030991212, -0.012314323, -0.014728787, 0.041764304, 0.021283304, -0.055922832, 0.010808467, -0.039153326, -0.05015442, 0.07235754, 0.09966677, 0.012215469, -0.017375926, -0.041468278, 0.035087492, 0.042222474, 0.055578824, -0.020213302, -0.02833525, -0.015500872, -0.015430591, 0.024081165, 0.00057328225, 0.009123102, 0.0057592285, 0.022851307, 0.06395666, -0.044444356, 0.04244499, 0.030542662, 0.026347697, 0.011344351, -0.051051047, -0.022808474, 0.008234326, 0.020960664, -0.025674624, 0.011394408, 0.053467296, 0.004236641, -0.014527109, -0.016408253, -0.029536206, 0.028570123, 0.019674053, 0.015751207, -0.010910859, 0.09568218, 0.007351866, -0.006942333, -0.020896958, -0.026917286, -0.001334014, -0.012710842, 0.0044971043, 0.054139163, 0.011545416, -0.003370862, -0.008577602, 0.024341142, -0.0081773745, -0.028125156, 0.0810852, -0.07641219, 0.020069182, 0.012970886, 0.07199718, -0.055266995, 0.0063958857, 0.039961673, -0.034629773, -0.062262546, -0.028908327, -0.038863298, 0.04524279, 0.05960962, -0.00501547, -0.00998042, 0.06320505, 0.0010466523, 0.0077047804, 0.01022752, 0.016654411, 0.008822093, 0.0010827065, -0.0094085885, 0.04316071, 0.012203418, -0.006113719, 0.014283447, 0.02222215, 0.06823459, -0.011743264, 0.017264137, -0.009609092, -0.02278928, 0.05838448, -0.017005183, -0.03674009, 0.052333754, 0.024297496, -0.049689654, -0.059443526, -0.014360571, -0.030767107, -0.027528945, 0.031214405, 0.02930323, -0.015699575, -0.010505074, 0.05667244, -0.026434254, 0.014795523, -0.020640982, 0.050532203, -0.023985399, -0.009355498, -0.005338813, 0.02710014, -0.0051475, -0.03342078, -0.017739207, 0.03480199, -0.013523926, -0.0014782218, 0.037432656, -0.03234282, 0.037131842, -0.029568046, 0.08637522, -0.048056696, 0.0009890345, 0.026300285, -0.012455522, -0.04994696, 0.0002716296, 0.0227938, -0.05198153, 0.029057316, -0.029952455, -0.05252136, 0.066839956, 0.020255357, -0.013491717, -0.044222455, 0.007316919, 0.015698124, -0.011024233, -0.025336891, -0.05514317, 0.04798821, 0.012733145, -0.024440603, -0.0121658025, -0.043128688, 0.027433438, -0.003117482, -0.02056102, 0.014249495, -0.01609523, -0.02328667, -0.06828564, 0.052907098, -0.055871878, -0.07668043, -0.010637255, -0.028161611, -0.010588124, 0.033869468, -0.015798531, 0.0077322214, -0.05662417, -0.008009356, 0.010139413, 0.059455525, -0.029992148, 0.02556349, -0.021364009, -0.039699685, 0.027123623, -0.037800293, -0.020347878, 0.073411845, 0.023609908, -0.05135853, 0.039175544, -0.06791011, 0.020485247, 0.0057145557, -0.010403541, 0.031573705, -0.073428966, 0.05996833, -0.0009966391, 0.016466055, -0.015069999, 0.027463507, -0.0371132, -0.0012299006, -0.037560374, -0.044174716, -0.027411837, -0.0067444197, -0.021201253, -0.049093816, 0.01969896, -0.061025035, -0.0136263855, -0.018133098, 0.011943984, 0.034533117, 0.016152762, 0.02856023, 0.015200112, 0.02755055, -0.019102639, -0.026261771, 0.022869477, 0.007665928, 0.016060486, 0.026086718, -0.033277977, 0.01689648, 0.01374227, -0.024177281, -0.031887747, -0.011337442, 0.024563663, -0.020558503, -0.006075616, -0.009226246, 0.018538713, 0.031049099, 0.021912565, -0.027445106, 0.036115337, 0.0327783, 0.011429031, -0.059062023, -0.019574573, 0.0078890715, 0.019017879, 0.026473021, -0.0447276, 0.029136838, -0.028821247, -0.012820475, -0.0047360854, -0.009364162, -0.08859531, -0.010048918, 0.07864357, -0.0015426843, 0.0039394484, 0.05363464, -0.072138056, 0.050171837, -0.03135068, -0.0005456177, 0.0722545, -0.0305893, 0.05094374, 0.03571161, 0.045619216, 0.04354529, 0.029591043, 0.016390035, 0.016929623, -0.004539329, -0.0150391385, 0.05504752, 0.009462936, 0.035047572, -0.068822585, -0.0070784143, -0.038742296, 0.08845639, 0.023558334, -0.025084242, -0.0058750613, 0.011098858, -0.00013391806, -0.012550596, -0.04119061, 0.0075403396, -0.07107176, -0.051463686, 0.010111981, -0.008149648, -0.019007493, 0.035376344, -0.004374737, 0.012446289, -0.05299679, -0.005809067, 0.014711564, -0.037669737, -0.089653924, 0.018840244, 0.0429971, -0.01584129, 0.013738034, 9.412683e-05, 0.032136355, 0.00011303681, 0.025989313, 0.007917608, 0.014744146, 0.04925654, -0.0063910424, 0.0050624474, -0.03590299, -0.0021022651, 0.05000889, -0.072783835 ] }, { "values": [ -0.002316605, -0.01100232, -0.009633799, -0.018942837, 0.015122408, 0.046383865, 0.014836251, -0.013161498, 0.006416354, 0.019970302, 0.028967164, 0.025761796, 0.02995238, -0.037215628, -0.037898228, -0.04933327, 0.0036559855, -0.013775681, -0.07668185, -0.02828936, 0.02357039, 0.04228953, 0.03567778, 0.00282488, 0.00027689646, 0.023030486, 0.04058473, 0.005328683, 0.0070526334, -0.0009214154, 0.016834978, 0.05236135, 0.006144675, -0.036259566, 0.040921483, 0.021535976, -0.068924315, 0.0035747667, 0.03752775, -0.048845995, -0.10752166, 0.004170825, -0.022036016, 0.033193756, -0.017325776, 0.027208924, 0.05983925, -0.016320925, 0.0011412755, 0.040886503, 0.021619765, -0.010214398, -0.023236966, 0.020282656, -0.05371619, -0.028641615, -0.058241535, -0.027760975, 0.061969474, -0.008087743, -0.034400057, 0.00041677678, -0.022333067, -0.028686112, 0.008606713, -0.033451706, -0.044823274, -0.015048674, -0.038150396, 0.046495695, -0.0070526823, 0.017174885, -0.0068553067, 0.014537428, -0.0050333277, -0.015622448, -0.021327885, -0.039873995, -0.029660212, 0.019861888, 0.045458004, 0.029559841, 0.030958045, 0.012788744, -0.027640063, 0.0339157, 0.06429195, -0.071139365, 0.0013149052, 0.022879256, 0.07384919, 0.0047709327, -0.030158786, 0.014416229, 0.031787768, -0.031423684, -0.08628803, -0.058969144, 0.058111202, 0.040510688, -0.057416774, -0.0036344035, -0.017255856, -0.032681953, 0.05437114, -0.0040889513, 0.044588696, -0.007621345, -0.04948178, 0.05185064, -0.016274532, -0.03309279, 0.0018925501, -0.027891532, -0.0072372085, -0.06346369, -0.016246691, 0.008346992, -0.043909892, -0.0040698396, -0.024468645, -0.015567697, -0.04761291, 0.03915162, -0.042517427, 0.050334893, -0.020797275, -0.049217276, -0.033181697, -0.06643976, 0.053696465, -0.12190718, 0.024098856, -0.02253118, -0.02092024, -0.042084243, 0.06527992, -0.0011580532, -0.0033629937, 0.008465957, 0.013684183, -0.025898717, -0.040985666, 0.04528051, 0.015662035, 0.04791677, -0.034700967, -0.04718963, -0.06888064, 0.045616493, -0.06059304, -0.022349818, -0.03273008, 0.020896766, -0.026071217, 0.05997804, 0.049464483, -0.029404953, 0.10162337, -0.04667448, 0.023010137, -0.009603365, 0.006428596, -0.0038869737, -0.06148662, 0.02090289, 0.0025325678, -0.06752064, -0.10090735, -0.021656973, 0.033002026, -0.028221954, -0.04910471, -0.065989815, -0.014599352, -0.002675548, 0.0010387676, 0.013976838, -0.013209007, -0.026116969, 0.050394915, 0.037780263, -0.03803119, 0.020129768, 0.0048375293, -0.06559562, -0.026440343, 0.10180949, -0.020202316, 0.06721594, 0.0063494667, 0.05204932, 0.032030307, 0.028259143, -0.009376696, 0.04316273, 0.0868137, -0.0036569089, 0.008019738, -0.033391614, 0.023701642, 0.035269108, 0.005623245, 0.071771376, -0.017704044, 0.025645494, -0.033232253, -0.021831404, 0.038806356, -0.008194463, 0.0017195137, -0.031287644, -0.021573815, -0.045942616, -0.0069235926, 0.03417106, 0.105794504, 0.05658153, 0.046518017, -0.008498305, -0.0756094, -0.011932104, -0.024814805, -0.044249512, 0.030248612, 0.015768353, -0.030156173, 0.019910915, -0.05028431, 0.030857885, 0.021117752, 0.05386625, -0.013901438, 0.0014791217, 0.003574893, 0.04295776, 0.010932858, 0.0111965155, -0.024440136, -0.023259532, -0.005349524, 0.004103192, 0.035465676, -0.014198365, 0.0014553852, 0.07652227, 0.039588332, 0.07057667, -0.016872618, -0.011153107, -0.04377489, -0.025064183, -0.035549555, 0.0074544423, 0.0062638647, -0.019239184, 0.03547394, -0.062399704, 0.008402647, -0.010379207, 0.054934517, -0.016765445, 0.009093013, -0.052969456, 0.007576092, -0.07614351, -0.01343781, -0.01597083, 0.052922036, 0.029384524, -0.014032208, -0.011057611, -0.042391695, -0.05403111, 0.001490241, 0.042558208, -0.03113136, -0.003507114, 0.004947332, -0.06455287, 0.038022578, -0.05158579, 0.019509852, -0.018567357, -0.006816691, -0.026119504, 0.036765058, 0.03343496, -0.031464964, -0.031181145, 0.03536926, 0.054396212, 0.0024894113, 0.012099221, 0.042728487, 0.03687724, 0.031021856, -0.024566917, -0.024480084, 0.014309344, 0.020577915, 0.086690694, -0.028388292, 0.00018302849, 0.024799608, 0.011302074, -0.059318323, 0.01575679, -0.013962631, 0.0037933048, 0.005688591, 0.028942503, -0.0019894377, -0.030209035, 0.017531702, 0.010365718, -0.080911025, -0.0065062507, -0.037301943, -0.023467897, 0.03455657, 0.01758133, 0.009572338, -0.026288461, 0.07710798, 0.02016816, 0.017111173, -0.007114401, 0.00891501, -0.03171726, 0.020079352, 0.03167911, 0.041843258, 0.0033641993, -0.021590695, 0.002409282, -0.03474932, 0.00044483866, 0.04659454, 0.003822659, 0.043850306, -0.024155708, 0.046013843, 0.029744264, -0.0073115528, -0.067266025, 0.06944295, -0.009617883, 0.037234116, -0.06355504, -0.047372095, 0.078785986, 0.018788734, -0.01504416, 0.02771168, -0.001907172, 0.03576392, 0.013849505, 0.012098455, -0.00034718128, -0.011264725, 0.009699419, 0.04455753, -0.01930026, 0.03796926, 0.010323404, 0.013455829, 0.031092938, -0.0041855103, -0.064110555, 0.016038066, 0.015301811, 0.02060128, 0.0030290368, 0.0046468866, -0.0035653294, 0.012916185, 0.006708396, 0.008318453, -0.043358143, -0.031311557, -0.03695842, -0.047918215, -0.011649861, -0.05067421, 0.027120367, -0.006620776, 0.013064365, 0.017515711, 0.02533053, -0.051292483, 0.05076299, -0.020576138, 0.026631627, -0.0088415565, 0.007828477, -0.033054963, 0.006641007, 0.04029255, -0.020934546, -0.020741317, 0.011439329, 0.045285296, -0.026731364, 0.0023335118, 0.019675618, 0.052214693, -0.0164302, 0.02308663, -0.06584434, 0.04906059, -0.0009341293, 0.02160671, -0.016108228, -0.015226055, -0.013350318, 0.014056274, -0.017364604, -0.007088631, 0.0036820697, -0.0070389328, 0.053078294, 0.027321147, 0.0056629297, -0.045188617, -0.026720235, -0.0065879123, 0.01309452, 0.03255682, 0.024933435, -0.01961957, 0.040218856, -0.07072505, -0.00031636737, -0.0006704374, -0.011709564, -0.005965067, -0.015306177, -0.04778737, -0.004946977, 0.022525167, -0.02825373, 0.031459756, 0.05883831, 0.00499791, 0.029812483, 0.063119315, 0.02041992, -0.022037786, -0.08284315, -0.016799727, 0.033719525, -0.028219631, -0.010877657, -0.0005087866, 0.012086396, 0.031850237, 0.010547034, -0.07947806, 0.013912701, -0.057606634, -0.04734185, 0.07558319, 0.09995935, -0.0131917875, -0.027308304, -0.064320914, 0.024306338, 0.07053037, 0.10764053, -0.028202478, -0.010140473, -0.009286052, -0.03428618, 0.01381149, -0.0045263553, 0.017635562, 0.041954033, 0.04221849, 0.05285989, -0.05410986, 0.035781544, 0.033232853, 0.035932895, 0.03852701, -0.05850388, -0.00075654656, 0.017682275, 0.031469423, -0.0011856128, 0.03387772, 0.045196578, -0.00028985593, 0.0017637851, -0.005534689, -0.03226536, 0.015726497, 0.010137322, 0.022095691, 0.005734717, 0.08509654, 7.147426e-05, -0.008314531, -0.04421545, 0.001617712, 0.009500416, -0.044043303, -0.010204635, 0.036977, -0.009921177, 0.007521703, -0.016557928, 0.023933563, -0.012270188, -0.017386092, 0.04537774, -0.09476969, 0.015097165, 0.03260587, 0.06328463, -0.009037241, 0.018368013, 0.051699672, -0.027858585, -0.06486351, -0.050153926, -0.01865355, 0.053785034, 0.051908035, 0.003942853, -0.01784449, 0.054716, -0.017242111, 0.012317855, 0.012428206, -0.005964367, 0.018050961, -0.004492037, -0.009609213, 0.027438901, 0.026661683, 0.0030619372, 0.0042161457, 0.0120836925, 0.06964261, -0.02664841, 0.016010523, 0.016171249, -0.027107436, 0.062089708, 0.010909561, -0.041756906, 0.061529122, 0.008170692, -0.031800643, -0.050691314, -0.008186674, -0.037213184, -0.036835983, 0.023654882, 0.037224952, -0.013163401, -0.010398361, 0.014352971, -0.01355631, -0.02712491, -0.022950374, 0.03417942, -0.020697173, -0.014717032, 0.004613342, 0.039708607, -0.030168653, -0.021060767, -0.022092609, 0.025627397, -0.020724894, -0.0141496025, 0.049232554, -0.020717429, 0.02312798, -0.037581466, 0.08925145, -0.03717116, -0.00026431508, 0.052342158, -0.023497222, -0.03773763, -0.00088687957, 0.014636149, -0.052118644, 0.033522326, -0.037142176, -0.02898522, 0.06789346, 0.01943376, 0.012487785, -0.04246011, 0.036956627, 0.0013780418, -0.025168205, -0.010314639, 0.001152098, 0.04404949, -0.0071608797, -0.027969643, -0.022850612, -0.051585693, 0.031947896, -0.032911416, -0.02802407, 0.025052536, 0.0052032047, -0.0014099958, -0.07499292, 0.04240993, -0.061394427, -0.07889869, 0.008951926, -0.0050330474, 0.0082949875, 0.01589984, -0.016250387, 0.022734927, -0.059660733, 0.0017913653, -0.011766444, 0.056318212, -0.03931312, 0.034997508, -0.041295227, -0.032236047, 0.026141297, -0.049886, -0.005994236, 0.048002116, -0.0006463755, -0.04988441, 0.023245059, -0.08196271, 0.026976904, -0.0026693554, -0.010705125, 0.014202595, -0.06841353, 0.08400746, -0.0006357361, 0.015263268, -0.023001116, 0.039234716, -0.022172265, 0.035367697, -0.035473444, -0.03221814, -0.030818895, -0.017406534, -0.019749492, -0.02139785, 0.022310652, -0.049780138, -0.0011353284, -0.023405744, 0.007905768, 0.041569147, 0.019773258, 0.024720917, 0.005666093, 0.013981437, -0.02165781, -0.023520209, 0.032275647, 0.019853508, 0.016549153, 0.0071428837, -0.024317572, 0.027796429, 0.007978257, -0.044720113, -0.03312108, -0.0050752666, 0.03083933, -0.025139803, -0.010118614, -0.016401412, 0.03341154, 0.025711212, 0.029056584, -0.036770158, 0.03666086, 0.031379666, 0.0120076155, -0.06976432, 0.02007353, 0.025314916, 0.018815748, 0.028143069, -0.05735945, -0.0075893993, -0.0232263, 0.0073884884, -0.015036318, -0.029640662, -0.08211544, -0.038834963, 0.08021213, -0.020669518, 0.024594877, 0.06953313, -0.051769774, 0.029738015, -0.020894831, -0.00091054884, 0.043771595, -0.008030055, 0.045135595, 0.061555468, 0.029392447, 0.05331546, 0.029232256, -0.011170543, 0.026106494, -0.021721803, -0.023041716, 0.054176137, -0.0021892188, 0.010666361, -0.050659068, 0.008501576, -0.056330755, 0.080920294, 0.028371112, -0.015056155, 0.019638458, 0.002246802, 0.01221194, -0.01278092, -0.023490112, 0.017454624, -0.08399545, -0.012740333, 0.004528648, 0.013686945, -0.023886196, 1.7419836e-05, 0.0035557493, 0.02453901, -0.043005805, 0.023606835, 0.0030922398, -0.046461444, -0.10053283, 0.011601865, 0.030087193, 0.0036522024, 0.018416757, 0.0022189177, 0.033958938, -0.013360579, 0.031745464, 0.024181796, 0.00839926, 0.03829027, -0.01795855, 0.015900623, -0.0649364, -0.028531028, 0.033611402, -0.074658856 ] }, { "values": [ -0.031080052, -0.035695292, -0.029452339, -0.020801349, 0.023399344, 0.043190006, 0.025985105, -0.009830588, 0.010159228, 0.039819926, 0.012280619, 0.044968456, 0.0076727406, -0.0054538837, -0.046086356, -0.041608624, 0.016768668, -0.015677968, -0.06380612, -0.03329428, -0.0020522566, 0.051765032, 0.03999538, 0.018673072, -0.024132907, 0.06257318, 0.025310881, -0.0028369238, 0.025730452, 0.023262661, 0.013701909, 0.0307055, -0.0020018164, -0.016050493, 0.09089232, -0.008182052, -0.03229064, 0.02464586, 0.04306809, -0.04240585, -0.097083, 0.023711855, -0.003477846, 0.0041496684, -0.017167607, 0.020573914, 0.04771481, -0.050174966, -0.041705567, 0.06900538, 0.0123012, -0.0009852843, -0.025252393, 0.008161891, -0.06705213, -0.023966212, -0.026431171, -0.038509257, 0.091328084, -0.021664256, -0.02824873, -0.02156019, 0.00406218, -0.032544974, 0.016267225, -0.007997515, -0.05251522, -0.015171238, -0.037129834, -0.014037181, 0.023993999, 0.008311348, 0.0043736785, -0.0012002139, -0.0228557, -0.001678796, -0.032274745, -0.0044379137, -0.014554932, 0.030873438, -0.004983237, -0.0064057373, 0.079186864, 0.03924536, -0.02956575, 0.024866922, 0.027097795, -0.05834482, 0.01809437, 0.02255998, 0.080015756, -0.007984629, -0.0056287074, 0.011491478, 0.02835908, -0.05289817, -0.08692748, -0.030499615, 0.039390013, 0.055175867, -0.02362033, 0.0038247393, -0.0410469, -0.034227557, 0.056377057, -0.008166282, 0.05698575, -0.042102106, -0.047145233, 0.056234263, 0.009376088, -0.057998803, -0.041945614, -0.023413464, 0.035973325, -0.04226683, -0.011770249, 0.050599486, -0.025536478, 0.011362978, -0.010590198, -0.016572809, -0.02218311, 0.03640555, -0.04541351, 0.018675884, 0.010131003, -0.06478826, -0.005779394, -0.0778465, 0.052466724, -0.08474886, 0.004021197, 0.010549616, -0.004826526, -0.026704928, 0.010792525, -0.016147286, 0.014028786, 0.026475167, 0.030456157, -0.020577734, -0.0018916298, 0.0110010905, 0.0010108125, 0.018890679, -0.041917954, -0.040578954, -0.061069485, 0.030051703, -0.11651324, -0.014396428, -0.017398743, 0.005610886, -0.0047502643, 0.023168879, 0.066775545, 0.00041874775, 0.09675541, -0.064115845, 0.030994026, -0.038155414, 0.031931307, 0.011472923, -0.0427395, -0.017297406, -0.012456085, -0.06421951, -0.056337167, -0.0023782044, 0.023259213, -0.01623753, 0.0045626666, -0.12314209, 0.019637976, 0.005578048, 0.019166254, 0.033635795, 0.0015861361, -0.029291766, 0.04701906, 0.008148943, -0.02899427, 0.0065854015, 0.008149623, -0.050601996, -0.03063676, 0.13109104, -0.02494398, 0.05963557, 0.0037331856, 0.0304741, 0.031737022, 0.002945586, 0.00080427626, 0.051203422, 0.0802315, -0.0057678255, 0.038643792, -0.0452827, 0.032455433, -0.0033407207, 0.018691612, 0.04694771, -0.037150975, -0.005356394, -0.067181714, -0.04642406, 0.03840929, 0.037573285, 0.016212327, -0.035174847, -0.024579972, -0.06606312, -0.002516431, 0.0071381363, 0.09422039, 0.05192803, -0.007130605, -0.01853216, -0.049309462, 0.030568238, -0.00231118, -0.044171344, 0.021800768, -0.0042450726, -0.02174681, -0.00015462395, -0.024137052, 0.033792228, 0.029368619, 0.023287905, -0.0029420508, -0.006727529, 0.016270008, 0.04668346, 0.017907174, 0.0070448313, 0.008628091, -0.022633852, -0.0020911358, -0.0045417827, 0.02158297, 0.002772958, 0.013057732, 0.02590895, 0.049001273, 0.09413545, -0.05850558, 0.010878343, -0.045721468, -0.0015933053, -0.011158659, 0.002722823, 0.010269249, -0.01880885, 0.027855217, -0.044006653, 0.010545511, -0.0045829806, 0.030924825, -0.013083268, 0.028419971, -0.0680887, -0.026595064, -0.08162577, 0.035226207, -0.033587713, 0.059418563, 0.03807724, 0.008305903, -0.014466323, -0.036665205, -0.06470195, 0.03228437, 0.035515342, -0.052440256, -9.358264e-05, 0.0015044367, -0.07645648, 0.018846188, -0.020439079, -0.0005762828, -0.0045990194, 0.0027406907, -0.026878547, 0.021937788, -0.0076000104, -0.011393998, -0.04592259, 0.04932984, 0.05951503, 0.0073427605, 0.06344002, 0.049577832, 0.017271655, -0.00035188385, -0.0028849498, 0.014961691, -0.01322395, 0.010254706, 0.061496746, -0.021741506, 0.005940934, 0.0411291, 0.020502197, -0.028765596, 0.015163397, -0.006634753, 0.023447476, 0.013714932, 0.019033609, -0.014025679, -0.032906044, 0.029712351, 0.03845162, -0.060829192, -0.0017623717, -0.044978626, -0.042187747, 0.035850897, 0.0378494, -0.0070718643, -0.030965911, 0.058796532, -0.0016766342, 0.011505019, -0.015339709, -0.003918671, -0.02837842, 0.021632466, 0.0028627515, 0.021159358, -0.05401116, -0.04006485, 0.01352557, -0.0373896, 0.00023022834, 0.047612514, 0.009675361, 0.054084715, -0.02628816, 0.029766688, 0.00392141, -0.0099356305, -0.053636126, 0.012756168, 0.018985659, 0.045595933, -0.020474197, -0.031823106, 0.049489774, 0.023206428, -0.014006129, 0.058052212, 0.030226119, 0.069554314, 0.030554507, 0.005132038, -0.01003856, -0.034125604, 0.0060706353, 0.028899793, -0.026733749, 0.019892504, -0.00580514, 0.029457226, 0.00028058654, -0.0131727345, -0.07001233, -0.005668424, 0.036761932, -0.0008407177, 0.0009686471, -0.0021360477, -0.025649186, 0.0126247, 0.00031496087, 0.0021524744, 0.004199393, -0.05213415, -0.04128052, -0.036675338, 0.009358797, -0.001320248, 0.042146176, -0.0012305524, -0.011650214, 0.0074247452, -0.0004724023, -0.01715175, 0.07078331, -0.02779395, 0.01995993, 0.0149517385, -0.0012036101, -0.034737732, 0.014880141, 0.027472762, -0.013141851, -0.033823438, 0.010128742, 0.032667004, -0.018160312, 0.013850308, 0.014535451, 0.08257811, -0.021051275, 0.030606104, -0.04781833, 0.04268996, -0.018162485, 0.03618088, -0.017969552, -0.012847004, -0.0059317565, -0.011914161, -0.038720973, -0.022563327, 0.03808816, 0.014135098, 0.05219305, 0.04185998, 0.050685883, -0.013759075, -0.0336005, 0.004013382, 0.005153811, 0.0443446, 0.012412558, -0.018958528, 0.048823822, -0.06774901, 0.00016086489, 0.02186938, -0.022597974, 0.02147951, 0.0029196076, -0.031603098, -0.00019989275, 0.027304184, -0.019692248, 0.04317847, 0.056978524, -0.018046996, 0.04009085, 0.054626893, 0.02840466, -0.0012757598, -0.054857317, 0.021877639, 0.055745553, -0.029773653, -0.034240026, 0.022420483, 0.040600378, 0.060900792, 0.028655313, -0.055386443, -0.005619372, -0.032315254, -0.047777675, 0.0739129, 0.08800203, -0.004211003, 0.009121204, -0.030083163, 0.019887794, 0.06956058, 0.08577285, -0.019135542, -0.020415097, -0.04078742, -0.010310142, 0.023620365, 0.022678705, 0.020090668, -0.007052071, 0.047062036, 0.04543044, -0.027135415, 0.026479026, 0.037436407, 0.036340415, 0.037452225, -0.05460211, -0.0070662294, 0.009506388, 0.014484211, -0.009467956, 0.0141448565, 0.06776914, -0.015624028, -0.022342704, -0.0015661524, -0.044254463, 0.02963178, -0.012812814, 0.008111798, -0.03720364, 0.10193313, 0.012667788, 0.00084973185, -0.021542106, -0.0106017105, 0.00060395605, -0.018439123, 0.0065529826, 0.03481975, 0.018112363, -0.016839568, -0.019826414, 0.031747393, -0.03034315, -0.030581828, 0.06979424, -0.10900741, 0.031841304, -0.022990925, 0.035026275, -0.040002026, 0.021328295, 0.03905719, -0.03130029, -0.0517358, -0.02393609, -0.02459277, 0.06627584, 0.03630118, 0.0014535681, -0.016351027, 0.06719139, -0.007945142, 0.0028919647, 0.021853356, -0.0023531753, 0.018706588, 0.00301485, -0.016743226, -0.0053460635, 0.024157256, -0.040045526, 0.028387658, 0.024962269, 0.050746758, -0.016490772, 0.021647776, 0.024190648, -0.01661084, 0.077183716, 0.030322304, -0.032748714, 0.05953402, 0.008057372, -0.0069734915, -0.03409489, -0.016040258, -0.051924746, -0.018771572, -0.0043516085, 0.021130024, -0.021033617, -0.023347499, 0.026410595, -0.046760492, 0.018123796, -0.0026704809, 0.03089127, -0.044315323, -0.008786685, 0.00819195, 0.022512509, -0.061832543, -0.022323333, -0.014772474, 0.04213037, -0.04496291, 0.030840792, 0.045899905, -0.003137877, 0.0040375525, -0.0360524, 0.09165221, -0.059493855, -0.014005598, 0.029939122, 0.000100798134, -0.072646074, -0.012967903, 0.022674236, -0.04592286, -0.041525133, -0.039981257, -0.041516263, 0.05358064, 0.029465338, 0.027071262, -0.057596486, 0.008955022, 0.002961705, -0.015385804, -0.0073031816, -0.0132242115, 0.029572437, 0.010232619, 0.013260388, -0.030739592, -0.054595836, 0.05499709, -0.013489766, -0.02535553, 0.036552288, 0.003814831, -0.055580318, -0.050644383, 0.040288545, -0.05486446, -0.089099444, 0.006779246, -0.0018198187, 0.011312612, 0.04792631, -0.015204095, 0.020730298, -0.04694511, 0.022296418, -0.013621577, 0.06582679, -0.0008097603, 0.03447683, -0.06154841, -0.016455697, 0.0405533, -0.034303278, 0.027548626, 0.037495382, -0.011633184, -0.04583542, 0.03756668, -0.06747824, 0.02179674, -0.015334781, -0.037675742, 0.04139753, -0.053550016, 0.07235779, 0.0026394671, 0.035724632, -0.057251044, 0.023328455, -0.029082945, 0.032285612, -0.029517516, -0.024749864, -0.031170709, -0.011981887, -0.047317095, -0.037672497, 0.0054321177, -0.039299864, 0.0038124507, -0.031170432, 0.036230635, 0.07387053, 0.0072507686, 0.016105777, -0.023412136, 0.045287147, 0.02176487, -0.032958984, 0.049183775, 0.036840487, 0.016207783, 0.04624622, -0.0082978485, 0.025549838, -0.00798926, -0.06097127, -0.04886629, -0.017413959, 0.022972878, -0.00029586616, -0.038891118, -0.0027268217, 0.06376473, -0.0014539566, 0.024312217, -0.030442689, 0.011670863, 0.041896816, 0.03763819, -0.073305175, -0.006335431, 0.010947621, -0.01633356, 0.038280863, -0.051298346, 0.027501354, -0.023534661, -0.0032024735, -0.011123692, -0.009277249, -0.056374066, -0.025891133, 0.05128852, -0.026962964, -0.011787122, 0.05207107, -0.07154686, 0.028089942, -0.029316934, -0.026183398, 0.03988168, 0.0062538064, 0.008796976, 0.02514622, 0.028657772, 0.04072142, 0.015857939, -0.011710123, 0.008496667, -0.015636232, -0.020129172, 0.027803205, -0.016888961, 0.03356588, -0.081578024, 0.0048791124, -0.060665496, 0.078744434, -0.0005151799, 0.0010963826, 0.026324296, -0.003703237, -0.0021989788, -0.020062532, -0.03427717, 0.017870655, -0.06834273, -0.029271353, 0.026024142, -0.0063919113, -0.00039339368, 0.019978423, -0.007510713, 0.029894847, -0.052208364, 0.007451009, 0.0045266277, 0.0028803784, -0.09463192, 0.023976088, 0.020133207, -0.0110456785, 0.023103548, -0.020742513, -0.00063312205, -0.0074535245, 0.020149693, 0.031467747, 0.023735687, 0.036672812, -0.0059447777, 0.023905134, -0.05278397, -0.024386056, 0.013349966, -0.0905377 ] }, { "values": [ -0.015744025, -0.004621064, -0.034403637, -0.03164728, 0.012036065, 0.055208746, -0.013878244, 0.010012717, 0.006609202, 0.011351022, 0.033170156, 0.024690118, 0.026966378, -0.011674748, -0.014695239, -0.058636054, -0.013175884, -0.01673609, -0.06572202, -0.032305203, 0.028301679, 0.04299447, 0.010721629, -0.008223484, -0.012477961, 0.031223623, 0.021405896, 0.011738003, 0.02386736, 0.023792814, 0.041659523, 0.031696294, 0.020090044, -0.011278342, 0.04514512, 0.013767492, -0.050137766, 0.02098287, 0.047252007, -0.06684142, -0.093914315, -0.011231044, -0.012149552, 0.023180969, -0.0052295676, 0.026397819, 0.06577029, -0.02600866, -0.022539208, 0.033117138, 0.034242097, 0.0015108457, -0.04439491, 0.011388993, -0.08367727, -0.037703916, -0.03964364, -0.034474637, 0.07594241, 0.0034464847, -0.044300925, -0.028874272, -0.019156141, -0.038717534, 0.03591929, -0.012163171, -0.037910916, -0.011206019, -0.02447955, 0.02531256, -0.027884196, 0.03835812, 0.0034232484, 0.018291187, -0.01945244, -0.01819771, -0.009481524, -0.04120058, -0.029541694, 0.0305486, 0.019590534, 0.0023995088, 0.0421378, 0.050365157, -0.016922552, 0.013098221, 0.046163682, -0.032674182, -0.01032686, 0.03264157, 0.070290394, -0.016398886, 0.00068331516, -0.0028784997, 0.029149573, -0.024836447, -0.07785451, -0.04157553, 0.070789546, 0.014459648, -0.074628145, 0.0056825085, -0.012721338, -0.02683951, 0.065050855, 0.011957448, 0.04198021, -0.014693011, -0.059183244, 0.023561299, -0.0034119615, -0.04090489, -0.009110272, -0.026965598, -0.0058736606, -0.0682542, -0.0046246406, 0.030814584, -0.04886065, -0.013885184, -0.04138839, 0.0075305267, -0.044650327, 0.055443723, -0.039312784, 0.052476756, 0.006422012, -0.028794223, -0.020552961, -0.05373099, 0.0422634, -0.100928366, 0.054205656, -0.007803054, -0.030738581, -0.023994604, 0.06907645, 0.0062353015, 0.011628605, -5.504874e-05, 0.022035537, -0.011278522, -0.015494891, 0.041472677, 0.028681956, 0.023214553, -0.0258364, -0.047720432, -0.069899105, 0.05450632, -0.0914442, -0.021789769, -0.021352816, 0.022087524, -0.032984864, 0.03771983, 0.042270582, -0.040744606, 0.091688246, -0.068948284, 0.006040488, -0.0140797915, 0.03013835, 0.029253371, -0.06528407, 0.029322641, 0.00044376208, -0.06841733, -0.077378735, -0.018412454, 0.0314365, -0.04004835, -0.058528107, -0.0742851, -0.028109642, 0.003432645, -0.011067213, 0.018065833, -0.014445368, -0.031700436, 0.04173738, 0.05131956, -0.021655425, -0.0025560858, 0.013096391, -0.026873028, -0.019751634, 0.10269398, -0.02568104, 0.074614294, 0.012809905, 0.06701798, 0.03509146, 0.03294339, -0.00829745, 0.052056193, 0.09300218, -0.011179704, 0.0009489712, -0.04184001, 0.0060559018, 0.010790372, 0.027938683, 0.059686687, -0.03269426, 0.011072775, -0.02326566, -0.033612028, 0.0449943, 0.00071017246, 0.021204675, -0.047744747, -0.028931856, -0.038533982, 0.012431792, 0.009189916, 0.11066454, 0.056987308, 0.039338686, -0.02776286, -0.06436707, 0.020388406, -0.01617916, -0.015615794, 0.023864549, -0.0056237737, -0.02129883, 0.015588305, -0.043357912, -0.0023584806, 0.015758904, 0.022137841, -0.017523902, 0.014850278, 0.02076665, 0.039158016, 0.014509385, 0.025134912, -0.03155705, -0.006650983, 0.03084997, 0.016806267, 0.040220827, -0.016711507, 0.013739951, 0.060554013, 0.01567478, 0.079537906, -0.027729781, -0.049317315, -0.022904847, -0.030646818, -0.0049874857, -0.004421768, 0.0118807955, -0.0185223, 0.028490527, -0.047371227, 0.008465805, -0.00889593, 0.047555506, -0.034618024, -0.003636945, -0.037026603, -0.004659082, -0.06887503, 0.009520419, -0.024426216, 0.035533138, 0.0055866367, -0.029687528, 0.0019273536, -0.039344676, -0.05549242, 0.006334607, 0.04352736, -0.038786165, 0.00075194944, -0.02242962, -0.06505898, 0.030540004, -0.04430416, 0.018513178, -0.018639125, -0.0030147943, -0.014931128, 0.0049217627, 0.011459537, -0.024879968, -0.03819721, 0.034996253, 0.0678949, 0.0070616086, 0.02678951, 0.059868246, 0.0131955575, 0.017677717, -0.02310524, -0.034965016, -0.008280802, 0.025196737, 0.07929506, -0.034226798, 0.0043335226, 0.030906307, 0.017170204, -0.066792525, 0.011837188, -0.018678686, 0.0023611572, 0.022174625, 0.038311347, -0.021841366, -0.05031137, 0.013288842, -0.004896569, -0.079534486, -0.011345425, -0.034561004, -0.053669717, 0.03352426, 0.036450274, -0.0006017846, -0.037767127, 0.05489761, 0.0036188925, 0.02913329, 0.003656386, 0.0041623223, -0.03168937, 0.025859566, 0.0021204436, 0.03461432, -0.0150667215, -0.01032282, 0.019669317, -0.05665519, 0.00701443, 0.04126453, -0.02420364, 0.07801089, -0.017321778, 0.043870695, 0.046493582, 0.0070946077, -0.056189116, 0.05300961, -0.0017732539, 0.055959877, -0.0695961, -0.029167, 0.06064203, 0.01577437, -0.019594206, 0.027559347, -0.0042093717, 0.040228367, 0.024264373, 0.005751859, 0.0056799776, -0.020974772, -0.0010873493, 0.041600607, -0.009280582, 0.04197787, 0.01886366, 0.018464085, 0.022722065, -0.002536307, -0.06389449, 0.025501303, 0.0372626, 0.020620093, -0.0071272766, 0.008577888, 0.0038120258, 0.024227966, -0.0009274978, 0.03002895, -0.02298946, -0.039401885, -0.02959162, -0.053560253, -0.009835136, -0.033251133, 0.048108097, 0.002160651, -0.0073423535, 0.007452474, 0.016901132, -0.042201255, 0.064665675, -0.017681135, 0.031028848, -0.022878753, 0.02484114, -0.022542296, 0.035750672, 0.044637773, 0.013462354, -0.040317353, 0.020588128, 0.028964393, -0.023212975, 0.004257639, 0.019748718, 0.07109683, -0.027897349, 0.023968544, -0.0693362, 0.027585648, -0.019067924, 0.033853002, -0.023621203, -0.012957383, -0.013425942, -0.00040512256, -0.034253728, -0.025218837, -0.0024399331, -0.020554394, 0.04596856, 0.025691755, 0.03622493, -0.015531224, -0.024468217, -0.006017135, 0.010656714, 0.044219878, 0.015523737, -0.020425528, 0.046144836, -0.061277945, 0.011702825, 0.028064031, -0.034450922, 0.006121459, -0.009091107, -0.055903293, 0.01093013, 0.008048859, -0.03160831, 0.02431311, 0.049975548, -0.009098441, 0.036580935, 0.042257234, 0.019736454, -0.015297656, -0.072026744, -0.011160216, 0.038345173, -0.006505095, -0.022824526, -0.007918658, 0.043644894, 0.038964067, 0.0315424, -0.05509152, 0.013746145, -0.05602488, -0.06357586, 0.052072544, 0.099604174, -0.013603131, -0.042612553, -0.052871034, 0.027459526, 0.06307933, 0.10273981, -0.01722977, 0.0038540114, -0.019142687, -0.04265654, 0.020804092, -0.00029004316, 0.014878316, 0.035399567, 0.012938116, 0.032998692, -0.03411648, 0.036202937, 0.020125082, 0.031474665, 0.04322114, -0.04851296, 0.01468415, 0.05122348, 0.018215243, 0.014190296, 0.044716727, 0.06120093, 0.022293093, -0.015297853, -0.0008496287, -0.036637336, 0.022182314, -0.006777544, 0.026555603, 0.012734085, 0.10753863, 0.003615357, -0.0067219017, -0.03747619, 0.0023392502, 0.034159083, -0.02892848, -0.012448181, 0.04668891, -0.009133864, 0.016285878, -0.022972308, 0.011502874, -0.005059954, -0.016368223, 0.052942645, -0.10712124, 0.026963733, 0.025426004, 0.07337673, -0.0061156973, -0.0042809937, 0.033006277, -0.037925478, -0.051536888, -0.036616262, -0.022562258, 0.058339614, 0.06847773, 0.005477094, -0.029135024, 0.05374985, -0.032191686, 0.010435238, 0.017513648, 0.022217412, 0.018431287, 0.0005877471, -0.007099609, 0.026540779, 0.023242978, 0.0117853265, 0.023825072, 0.019305471, 0.0781449, -0.00036882042, 0.00055008655, 0.0029596423, -0.01540786, 0.08647596, 0.0031211334, -0.036926415, 0.0371304, -0.0018269401, -0.009609684, -0.030253394, -0.025880259, -0.053102974, -0.020935575, 0.004438427, 0.030784952, -0.027369816, -0.023310201, 0.004737971, -0.012441223, -0.0036657143, -0.030527936, 0.009981275, -0.03340198, -0.0012882266, -0.00674877, 0.034036845, -0.035567246, -0.0046321806, -0.016426848, 0.046007648, -0.034811623, -0.00088794646, 0.059494425, -0.017912144, 0.030533062, -0.007891127, 0.07258669, -0.044840652, 0.007378078, 0.04076766, 0.012134939, -0.040448442, 0.013332089, 0.014249067, -0.058906052, -0.00109324, -0.021431522, -0.03392491, 0.070991255, 0.010962093, 0.022532057, -0.049368333, 0.051565483, -0.0037458614, -0.01585757, -0.0015133405, 0.0025574057, 0.048426688, -0.0008717619, -0.0037592747, -0.015467722, -0.056722105, 0.03900271, -0.039667834, -0.035527732, 0.019729063, -0.016706776, -0.002250158, -0.043495942, 0.013016767, -0.058629252, -0.069750026, 0.009924474, 0.016025104, -0.0118660275, 0.022001198, -0.030390913, 0.012404115, -0.041689258, 0.0105176745, -0.028164981, 0.036898304, -0.03557938, 0.02978917, -0.054686327, -0.027572637, 0.03951739, -0.044862494, 0.02278549, 0.06530797, -0.003997219, -0.047311395, 0.008223651, -0.088469006, 0.014416093, -0.009600352, -0.007905811, 0.04225008, -0.061216258, 0.07182034, -0.009365724, 0.03705527, -0.036235314, 0.035105996, -0.02821553, 0.03510259, -0.0166751, -0.02407413, -0.046248965, -0.011096117, -0.034482207, -0.033616498, 0.007000605, -0.061106384, -0.006845798, -0.04159914, 0.007977036, 0.049147148, -0.0043116477, 0.027218966, 0.003957742, 0.014910277, -0.027552728, -0.026685767, 0.04755423, 0.0051164567, -0.023105145, 0.009366548, 0.0012874098, 0.021624839, -0.0069985325, -0.0495237, -0.044678986, 0.013926266, 0.030791765, -0.033710923, -0.025249457, -0.023795448, 0.051496126, 0.017242994, 0.028855707, -0.016357033, 0.03843487, 0.061580032, 0.003618496, -0.07787065, 0.023210859, 0.04137011, 0.024908766, 0.0722164, -0.040182084, -0.008539882, -0.0094466265, 0.021997495, -0.011448194, -0.034004685, -0.061135564, -0.039638747, 0.058582902, -0.043083165, 0.02940302, 0.0468242, -0.053292885, 0.0493545, -0.0036169533, 0.019118689, 0.071775585, 0.006937969, 0.029672809, 0.03874384, 0.043754313, 0.042437933, 0.024471393, -0.022685774, 0.019919105, -0.02586851, -0.032785796, 0.049799476, 0.021376, -0.0063704806, -0.06704522, 0.03684319, -0.058802478, 0.0695358, 0.019738404, 0.0045330166, -0.0017488297, 0.019004507, -0.0020952371, 0.0047397413, -0.0010663528, 0.005848635, -0.085796185, -0.008359562, 0.006834104, 0.012093888, -0.030396499, 0.01375884, -7.364863e-05, 0.014510449, -0.045617707, -0.007817161, 0.0016486293, -0.032037187, -0.07273141, 0.025513494, 0.037414398, 0.009519913, 0.018114338, -0.0036365697, 0.05376132, -0.02182982, 0.029094566, 0.0027247046, 0.03236045, 0.038766816, 0.0025909336, 0.020373318, -0.06629174, -0.034489878, 0.014948643, -0.06633642 ] }, { "values": [ -0.017141562, -0.022178914, -0.032063168, -0.03949916, 0.005936751, 0.016716538, -0.027329909, 0.016228408, -0.011919601, 0.0006084248, 0.040520675, 0.039262846, 0.032264475, -0.00063967676, -0.056341406, -0.04159327, 0.019298783, -0.04758856, -0.049953442, 0.00654394, 0.030681113, 0.035029776, -0.0006221743, -0.013079975, 0.008199932, 0.06602336, 0.020747678, -0.005057775, 0.014603561, 0.015359647, 0.034769125, 0.0042268685, -0.002048645, 0.013344949, 0.04445326, -0.0048485547, -0.028813364, 0.00908223, 0.04392093, -0.08055865, -0.06879207, 0.0069708335, -0.0050544245, -0.007176459, -0.025934426, 0.032535885, 0.04758319, -0.030096289, -0.032004457, 0.026848026, 0.022933137, -0.0052530337, -0.013453314, 0.012242927, -0.04642337, -0.004120543, -0.033040155, -0.038278416, 0.06715851, 0.010642066, -0.003736117, -0.0025130287, -0.029545961, -0.038703084, 0.015348831, -0.0028590309, -0.040941924, -0.05722692, -0.037269708, 0.01422775, -0.04235564, 0.023873717, 0.011299879, 0.03214119, -0.035883784, -0.027944496, 0.0039642816, -0.052975904, -0.03186271, 0.020735877, 0.024563456, -0.023272881, 0.042331938, 0.07737752, 0.011920728, 0.025727661, 0.028274145, -0.025248127, -0.032955725, 0.0014000288, 0.075433165, -0.049085427, -0.025152214, -0.018076794, 0.016749931, -0.090982884, -0.065779984, -0.040800393, 0.054082558, 0.041319795, -0.049416356, -0.0055933343, -0.037082694, -0.045339834, 0.06229317, 0.037928425, 0.056042563, -0.05069354, -0.005962385, -0.00092461414, -0.011397038, -0.038588364, -0.029109448, -0.00096507877, -0.0039196583, -0.044084158, 0.034165967, 0.0016702599, -0.045047667, -0.0014175994, -0.04323506, -0.0011021545, -0.031659484, 0.04092655, -0.036432814, 0.04208693, 0.040601425, -0.0855195, -0.03729859, -0.086417355, 0.036078993, -0.109190226, 0.017199462, 0.019517604, -0.06031822, -0.031098584, 0.037648816, 0.00922958, -0.017920073, -0.016103443, 0.018958809, -0.02726487, -0.019256273, 0.043039683, 0.027888108, -0.0059146094, 0.0006425965, -0.037461597, -0.04772155, 0.030764861, -0.101988085, 0.0015552586, -0.014090343, 0.006879718, -0.022612855, 0.018236922, 0.06578468, -0.04917754, 0.05503084, -0.053939827, -0.006510746, -0.046850223, 0.031745795, 0.03851343, -0.07054986, 0.010209415, 0.02972416, -0.07100016, -0.07261994, -0.055073634, 0.011621223, -0.028936496, -0.061398886, -0.063131936, -0.034894895, -0.0015402895, -0.035310846, -0.000478093, -0.046279944, -0.03177874, 0.0074246055, 0.04773075, -0.023615083, -0.017958824, -0.026654834, -0.03464955, 0.014312756, 0.104302116, -0.022276895, 0.07399543, -0.020144021, 0.052243218, 0.035848096, -0.0027109429, 0.014028495, 0.03892534, 0.08723538, -0.0028221055, -0.01241861, -0.04271708, -0.0065623457, 0.031993918, 0.0037718082, 0.042195305, -0.04569887, -0.0151474895, -0.027935967, -0.034600195, 0.0622464, -0.0059363362, 0.02345601, -0.025118757, -0.032157812, -0.046425454, 0.010994153, 0.006012421, 0.078711286, 0.03384203, 0.039656498, -0.03575044, -0.057331674, 0.015906896, 0.0017747496, -0.029208878, 0.07460532, 0.030963903, -0.010850774, 0.031452976, -0.022041827, -0.009828252, -0.0002719514, 0.010269705, -0.017462827, -0.005806112, 0.061990637, 0.053956147, 0.033353355, 0.012974308, -0.0451665, 0.008573229, 0.021816552, 0.03966661, 0.04692894, -0.014671524, -0.0040622675, 0.071102336, 0.047126126, 0.08602436, -0.06798742, -0.045077622, -0.046491016, -0.02488729, -0.013553044, -0.040468864, -0.007882929, -0.044986896, 0.007333169, -0.040509988, 0.0053991512, 0.017433953, 0.042000785, -0.022503458, -0.029301787, -0.05532758, -0.021327863, -0.0846102, -0.0048893415, -0.018718373, 0.054909296, -0.017826125, -0.012832498, 0.02219823, -0.049514856, -0.019584494, 0.022539955, 0.048976332, -0.021263614, 0.017525828, -0.009347981, -0.06027597, 0.047118623, -0.034523584, 0.024475234, -0.054353625, -0.016912965, 0.0010941675, 0.014524121, 0.02943046, -0.0062647727, -0.04960034, 0.034149215, 0.061366584, 0.02529597, 0.030555453, 0.06266374, 0.0010959065, 0.01670293, -0.018341875, -0.0450651, -0.02475862, -0.006921618, 0.049364533, -0.031412486, 0.016738866, 0.033195503, 0.012425583, -0.059323736, -0.0041635935, 0.0032776932, 0.02098622, -0.0015703562, 0.04110869, -0.033903405, -0.03771353, 0.016273314, 0.0033134534, -0.08757081, 0.018096218, -0.0038492961, -0.031851165, 0.028878858, 0.052008264, 0.0037851778, -0.014821998, 0.037722293, 0.011338049, 0.017331712, -0.013069279, 0.018826235, -0.03567988, 0.021566026, 0.026588155, 0.0300469, 0.0004431279, -0.023909254, 0.04155826, -0.053068355, 0.01623378, 0.020135714, -0.0058023995, 0.050971307, 0.0075812205, 0.024047235, 0.055790987, 0.02870873, -0.034160916, 0.041089512, 0.020209245, 0.064667135, -0.05957888, -0.006674711, 0.051219877, -0.012741241, -0.02290994, 0.020431107, 0.039908372, 0.045037605, 0.05804244, -0.011557132, 0.014130781, -0.042916205, -0.019795587, 0.019346042, -0.0036774976, -0.008784213, 0.022082755, 0.0026283944, 0.03233924, -0.024983505, -0.054186303, 0.03543443, 0.034799032, 0.04009083, 0.034814205, 0.010264947, -0.025091313, 0.018274015, -0.013712675, 0.012454931, 0.001984396, -0.026416227, -0.02255615, -0.052273504, -0.021038612, -0.018737048, 0.029750288, -0.006732057, -0.034468517, 0.0021105828, 0.03320395, -0.042445607, 0.056257334, -0.048739802, 0.05337055, 0.014753403, 0.022359725, 0.0075636273, -0.0009691166, 0.0005289962, -0.026158456, -0.049551956, 0.0012402552, 0.024629423, -0.030517995, 0.025240032, -0.0014680366, 0.08882705, 0.00045095143, 0.009077544, -0.06017921, 0.013846172, -0.04404771, 0.03342391, -0.0011200091, 0.010536947, 0.027285205, 0.014987904, -0.04523613, -0.019535292, 0.008037715, -0.0017774564, 0.047346096, -0.0050943983, 0.050158292, -0.019132791, -0.045252014, -0.0099607175, 0.038794097, 0.01837987, 0.013740066, -0.05125823, 0.009881285, -0.040665496, -0.00667632, -0.003981658, -0.046388395, 0.008026077, -0.0014928449, -0.027999558, -0.0067351074, -0.0029541766, -0.040342353, 0.023718849, 0.052711077, -0.022353644, 0.04154618, 0.034714527, 0.011952077, 0.0046380474, -0.0852941, -0.017607175, 0.026239723, 0.021973774, -0.061740074, -0.005915649, 0.006597311, 0.04546405, 0.043373086, -0.026018357, -0.01205289, -0.04991632, -0.039681103, 0.051398907, 0.0734389, -0.016122334, -0.018174315, -0.063446306, 0.031278066, 0.06298725, 0.06777435, 0.0030428336, 0.0026137957, -0.0072636944, -0.026613202, 0.01734626, 0.019868799, 0.012288191, 0.015587372, 0.01392418, 0.01710206, -0.018322876, 0.03732484, 0.010434026, 0.03247972, 0.017587302, -0.052371938, 0.005920261, 0.01816496, 0.025675619, 0.036454994, 0.052205052, 0.0771754, 0.051821288, -0.010920761, -0.011987521, -0.022990093, 0.03960803, -0.009307521, 0.021197356, -0.011726112, 0.11524374, 0.013507367, 0.017134754, -0.015428493, -0.042806614, 0.03679982, -0.05378993, -0.01624949, 0.06457347, 0.0017192499, 0.014935681, -0.015761292, 0.020427696, -0.013716213, -0.03248132, 0.07623262, -0.09338969, 0.026596552, 0.003086474, 0.06022315, 0.008924417, 0.016385308, 0.055049185, -0.030670669, -0.046485342, -0.02571037, -0.0442935, 0.06405998, 0.086105615, -0.016407877, -0.013536288, 0.038420916, -0.008572395, -0.005627978, 0.025000714, 0.030224195, 0.01969046, 0.014086755, -0.0241665, -0.008195008, 0.015732568, -0.0106269615, 0.0137762735, 0.016943056, 0.06702778, 0.004992727, 0.017607452, 0.0018984907, -0.036281448, 0.09938949, -0.0046502943, -0.016662575, 0.029378688, -0.013179134, 0.005496438, -0.04049201, -0.032082714, -0.039283253, -0.017770184, -0.015259294, 0.01891451, -0.030875036, -0.02554443, 0.019368043, -0.017164009, 0.009108831, -0.05405439, 0.0077949115, -0.029434126, -0.007298891, -0.011669228, 0.039234072, -0.023873486, -0.029534366, 0.0116195865, 0.053287838, -0.025829574, 0.014138122, 0.04681446, 0.016347317, 0.028479066, -0.018220741, 0.0774112, -0.055214413, -0.04788681, 0.05199953, 0.033824153, -0.042212855, 0.00557894, 0.035389584, -0.03994682, -0.029306563, -0.0386975, -0.033555686, 0.044154357, -0.013272886, 0.01300952, -0.016501844, 0.051488005, 0.048915297, -0.03773162, -0.007111033, 0.0007901204, 0.017181568, 0.005599194, -0.020308025, -0.01601266, -0.06757615, 0.009792604, 0.0005296899, -0.028291399, 0.020211508, -0.047754575, -0.010326239, -0.050387103, 0.025842212, -0.037560888, -0.0596264, -0.016377268, 0.011512618, -0.038286682, 0.050864898, -0.015234805, -0.013322783, -0.040096357, 0.04751905, -0.03638392, 0.050882354, -0.011637905, 0.013403394, -0.039560553, 0.020271925, 0.03146021, -0.032456163, 0.017432058, 0.062379647, -0.010656658, -0.044038024, -0.0012596507, -0.06280046, 0.039297704, -0.02174672, 0.0066363662, 0.04787983, -0.05439997, 0.069771536, -0.040204674, 0.019681117, -0.027147796, 0.03697626, -0.010863102, 0.04970492, -0.034776468, -0.021608578, -0.03565348, -0.014240105, -0.046235904, -0.047958177, -0.017755276, -0.036737867, -0.005469457, -0.062044233, 0.03496943, 0.033503007, -0.016626125, 0.029636458, 0.028776612, 0.01351165, -0.031357165, -0.0012055343, 0.048986226, 0.0107652135, -0.001829306, 0.0070966408, -0.005976796, 0.008745311, -0.026159603, -0.037665095, -0.05673774, 0.029425545, 0.031136442, -0.039594144, -0.035691727, -0.033883274, 0.04971483, 0.006548359, 0.02226429, -0.037989717, 0.021995557, 0.049305424, -0.021442907, -0.07043877, -0.0011762686, 0.034293547, 0.007223847, 0.06173465, -0.009405136, 0.009457827, -0.030300293, 0.03822592, -0.027111363, -0.012112882, -0.05098107, -0.026659098, 0.067205854, -0.008574961, 0.01976702, 0.006296743, -0.07278338, 0.05088704, -0.02797557, 0.008073041, 0.08428616, 0.030759744, 0.016148752, 0.018823352, 0.041686263, 0.029887801, 0.03350253, -0.04531798, -0.0044710287, -0.030111114, -0.018579649, 0.05025751, 0.021240022, 0.0072613913, -0.07743938, 0.015722943, -0.03567494, 0.09408339, 0.047020517, -0.00035260443, -0.012003526, 0.02762711, -0.0033198206, -0.010759932, -0.022235733, 0.0029872057, -0.05850053, -0.019673822, 0.0103269955, -0.0014203928, -0.022734074, 0.042759087, -0.00978897, 0.006999579, -0.05312199, -0.0075552813, 0.0052365223, 0.0037561401, -0.046818957, -0.0019154303, 0.036341302, -0.014702748, -0.007949943, -0.021996751, 0.023811836, -0.031139731, 0.044790085, -0.008172304, 0.0372349, 0.029148022, 0.013113138, 0.032551482, -0.050612006, -0.014523504, 0.0011645331, -0.06533106 ] }, { "values": [ -0.03693968, -0.0074313004, -0.013218825, -0.04292462, 0.008561749, 0.038001284, -0.026791101, 0.011990333, -0.0070146187, 0.021404166, 0.03866905, 0.008504313, 0.038702264, -0.007842827, -0.04559108, -0.04074373, 0.03162489, -0.016807897, -0.05724022, 0.008577095, 0.043436367, 0.01817986, -1.6147464e-05, -0.011356262, -0.0023523245, 0.062098473, 0.035675015, -0.012025115, -0.013723922, -0.00013548239, 0.048514437, 0.011630419, -0.03065593, -0.017288368, 0.07251818, 0.010296517, -0.053036075, 0.024777675, 0.030955398, -0.08153132, -0.057902973, 0.004508262, -0.008063554, 0.0116314525, -0.010665386, -0.007202771, 0.03272364, 0.032274354, -0.02997728, 0.016974632, 0.0009339446, -0.029454084, -0.00449202, 0.013314441, -0.04184267, -0.039826035, -0.066109344, -0.020749124, 0.09278351, -0.008062556, -0.033562712, -0.021876667, -0.053264488, -0.03687825, 0.022904523, 0.0027818542, -0.06586944, -0.033388942, -0.03696425, 0.02637376, -0.051110283, 0.010570185, 0.0049527753, 0.012238334, -0.031035677, -0.03649871, 0.0004155393, -0.04940334, -0.025075195, 0.046863876, 0.039305575, -0.028379528, 0.04533271, 0.06279748, 0.011611138, 0.010299729, 0.042211592, -0.04980675, -0.02380115, 0.028052494, 0.06883099, -0.02542958, -0.021818377, -0.036005862, 0.045000598, -0.06958634, -0.07681111, -0.059799675, 0.06512717, 0.03042012, -0.073108464, -0.011662433, -0.031143852, -0.031592093, 0.05880993, 0.03013176, 0.01760113, -0.023673534, -0.01759642, -0.027805883, -0.020941522, -0.026855964, -0.03523632, 0.012825872, -0.025014125, -0.02729022, 0.031947073, -0.0029326924, -0.010339746, 0.0012360719, -0.02098248, -0.02617634, -0.05366685, 0.044318978, 0.002943532, 0.043754376, 0.025895424, -0.03791629, -0.040841658, -0.0708434, 0.05038467, -0.097131565, 0.020177552, 0.02039176, -0.068720356, -0.020347724, 0.057121404, 0.0011134112, -0.024003878, -0.005065441, 0.01532008, -0.017670074, -0.020204887, 0.062446363, 0.018004678, 0.0076128314, -0.0022685882, -0.04703638, -0.024751466, 0.05232429, -0.09471787, -0.0059139295, -0.011043416, 0.019146152, -0.0260521, 0.04525062, 0.06515613, -0.04911143, 0.043443523, -0.082328014, 0.007193998, -0.022420052, -0.0016772001, 0.022126695, -0.08632581, -0.0069770636, 0.012866892, -0.06889033, -0.08437692, -0.053399537, 0.008056424, -0.023182042, -0.061010905, -0.037230074, -0.036161434, 0.006285227, 0.0060726255, -0.015619787, -0.046711225, 0.0124095585, -0.010592428, 0.06542195, 0.0042044814, 0.012177445, -0.017471498, -0.038442794, -0.00087288197, 0.04504894, -0.013284577, 0.08135816, -0.027153973, 0.025307447, 0.061870538, 0.012280337, 0.014323938, 0.08207002, 0.08692485, -0.017480912, 0.005104511, -0.031943113, -0.0005035666, 0.03141672, -0.0009267783, 0.031433817, -0.050570104, 0.0027910166, -0.021891965, -0.023554, 0.051562935, -0.004113498, 0.018967064, -0.025891837, -0.00936501, -0.05454609, -0.003698452, 0.022700706, 0.09400241, 0.019207679, 0.06013551, -0.022438286, -0.051673695, -0.0085401, -0.011422078, -0.031128613, 0.06074514, 0.025853045, -0.015491659, 0.0106663965, -0.032244902, -0.0019384075, 0.0062049557, 0.031081343, -0.020493707, 0.014794137, 0.03945138, 0.057069566, 0.042000517, 0.015541908, -0.034928776, 0.0034358224, 0.032049447, 0.048122834, 0.06102161, -0.023466121, 0.0100013865, 0.0812094, 0.051846653, 0.074104786, -0.04632782, -0.075369895, -0.040323935, -0.043621093, -0.038728874, -0.024274081, 0.010857175, -0.02596569, 0.008636023, -0.043336567, 0.018990608, 0.045404144, 0.06482048, -0.0051835096, -0.014393221, -0.04241664, -0.007944215, -0.08303699, 0.0059566787, -0.0089214975, 0.05579251, 0.0037841357, -0.003455747, 0.0020340104, -0.069172464, -0.0052998764, 0.0373466, 0.028773697, -0.025892433, 0.03308435, -0.021289734, -0.05170417, 0.045205113, -0.046643645, 0.0012430548, -0.051738575, -0.007756992, -0.012751741, 0.013858468, 0.027377022, -0.028074743, -0.042888775, 0.045328014, 0.043827195, 0.031358495, -0.0064581456, 0.042978857, 0.008428963, 0.030334167, -0.048692092, -0.03970615, -0.018344983, 0.031225218, 0.051903907, -0.043878596, 0.0016658377, 0.013236471, 0.00038936417, -0.063555844, 0.010355362, 0.009579162, 0.023167195, 0.008055276, 0.03745029, -0.009103237, -0.019831117, 0.01633893, 0.020819962, -0.11529988, 0.019028358, -0.009661739, -0.041998733, 0.060806487, 0.038365725, -0.014740593, -0.031443562, 0.040963948, -0.020125369, -0.0040866253, -0.01336693, 0.021907274, -0.03016835, 0.012503631, 0.032425556, 0.037071187, 0.022722336, -0.035534695, 0.0393679, -0.042342, 0.024377352, 0.011855713, -0.054963175, 0.048908226, -0.015723282, 0.042219557, 0.088438675, 0.0060743783, -0.060083725, 0.030810071, 0.005397548, 0.062636964, -0.04771131, -0.0055523557, 0.039595425, 0.002999506, -0.03306697, 0.043593317, 0.012854384, 0.04329557, 0.029272923, 0.008871373, 0.005113084, -0.038815502, -0.003010975, 0.04043745, 0.0093159685, 0.026095815, 0.01629362, -0.0061723315, 0.01947787, 0.010371155, -0.06997717, 0.044409584, 0.03584781, 0.04468517, 0.031367064, -0.00012332705, -0.02177419, 0.033712424, -0.011115998, 0.011654043, -0.0032638768, -0.02644788, -0.029576054, -0.016303904, -0.02136398, -0.058320623, 0.04825167, -0.004227924, -0.024548624, 0.02040377, 0.03813198, -0.034974504, 0.07444929, -0.047148567, 0.036641896, -0.007082003, 0.03957977, -0.006616852, 0.0035264788, -0.0064566163, -0.007996677, -0.037594236, -0.0039098216, 0.04528675, -0.025527425, 0.0034168474, -0.01879222, 0.100884765, -0.017404918, 0.017169526, -0.06978204, 0.023465902, -0.027572704, 0.03408579, 0.032259386, 0.0024459285, -0.0059858407, 0.016250571, -0.042007092, -0.0036978228, -0.017478142, -0.027577974, 0.03212666, 0.005500494, 0.0119834235, -0.041301657, -0.031031167, -0.022753185, 0.015300642, 0.037226833, 0.01539484, -0.045959704, 0.036234483, -0.061673533, 0.0012097212, -0.018910203, -0.022069966, 0.009803676, -0.00351879, -0.048566163, -0.00092045194, -0.015545871, -0.010754469, 0.020796347, 0.06430489, -0.0022513822, 0.0414918, 0.026092043, 0.021217808, -0.018513141, -0.068826556, -0.012806427, 0.009396345, 0.007869458, -0.07454805, -0.007518816, 0.014146966, 0.050457872, 0.05113433, -0.041524667, 0.0077783023, -0.053239457, -0.039266378, 0.051284894, 0.06449665, -0.021017004, -0.03627977, -0.06328041, 0.0051717483, 0.051766187, 0.07166778, -0.00086684595, -0.017586414, 0.0061083417, -0.02949692, 0.005327844, 0.00551984, -0.0027227942, 0.024587119, 0.0071645337, 0.025179438, -0.04835552, 0.042619195, 0.005800222, 0.031374607, 0.025549414, -0.07803035, 0.009743215, 0.022828737, 0.0495296, 0.011881606, 0.04786885, 0.062119823, 0.0126989335, -0.0045188437, -0.01489023, -0.030280763, 0.032582954, -0.011527294, 0.008071615, -0.012399593, 0.09198768, 0.0039307955, 0.0075612203, -0.030195124, -0.015379737, 0.017836995, -0.049891252, -0.006840519, 0.04721711, -0.02381391, 0.0066750697, -0.009254021, 0.01837812, -0.023481466, -0.044468712, 0.059807155, -0.1027892, 0.02125789, 0.018836442, 0.03866247, -0.013109306, 0.007942211, 0.023868352, -0.030433048, -0.029456105, -0.0376576, -0.0278714, 0.045280956, 0.07797414, 0.0029169517, -0.028356792, 0.042311475, 0.008093057, 0.012389666, 0.019683149, 0.012495337, -0.01582209, 0.026742047, -0.044623785, -0.0072337273, -0.019225962, 0.011216802, 0.0064304452, 0.011882735, 0.05355316, -0.012944928, -0.0023753557, -0.0102473525, -0.048911486, 0.08019823, 0.014487005, -0.0045317444, 0.0031727934, 0.0074282927, 0.021869717, -0.013709169, -0.027886964, -0.05994496, -0.051817887, 0.022247871, 0.031251535, -0.010215855, -0.008723062, 0.005289241, -0.010020463, -0.005817844, -0.061325733, 0.038886983, 1.4313024e-05, -0.00981005, -0.015830828, 0.023742957, -0.016444312, -0.023083227, -0.006157427, 0.052537184, -0.02826447, 0.0048873774, 0.02841588, -0.014306681, 0.038941268, -0.030806947, 0.07468771, -0.053153723, -0.035496946, 0.041805595, 0.010528759, -0.041026384, 0.009689117, 0.019312503, -0.024660176, -0.014639897, -0.010195583, -0.021438707, 0.045439687, -0.016292421, 0.004275613, -0.0038470873, 0.058546003, 0.04263283, -0.03271055, 0.026590172, -0.0053257043, 0.03237353, -0.010125579, -0.044174023, -0.017464675, -0.062472302, 0.013276233, -0.01753627, -0.005826546, 0.02227413, -0.009607231, 0.0024793937, -0.04013137, 0.011072391, -0.038389612, -0.039093167, -0.007354267, 0.010102724, -0.04988917, 0.045262717, -0.009640262, 0.005138411, -0.030138155, 0.017279448, -0.0353709, 0.05469754, -0.021302836, -0.01275197, -0.020689156, 0.0002792578, 0.04539796, -0.044594552, 0.008115879, 0.042929202, 0.007152054, -0.030549368, 0.02461231, -0.058236726, 0.043840654, -0.02022437, 0.011029896, 0.048174664, -0.05447016, 0.049911603, -0.026426157, 0.032690376, -0.0004791888, 0.035445318, -0.022111645, 0.07359352, -0.012831694, -0.019404756, -0.058136463, -0.016895402, -0.027504297, -0.014168349, 0.012526281, -0.04621972, 0.028926631, -0.039439596, 0.0052603157, 0.017325202, -0.0042517763, 0.02186034, 0.043366555, 0.022203354, -0.028166074, 0.0075799767, 0.0346281, 0.00013330518, -0.0071225935, 0.049547933, -0.022934325, 0.008011923, 0.0018164999, -0.03049164, -0.0482828, 0.02399432, 0.04511309, -0.033492375, -7.2632014e-05, -0.034101423, 0.02186964, -0.00010336728, 0.044353448, -0.05892193, 0.020501584, 0.030601485, -0.008664983, -0.085535534, 0.0053215986, 0.038758498, 0.020754695, 0.048356842, -0.018422361, 0.0023457746, -0.024662644, 0.04761202, -0.026614808, -0.016356636, -0.053905472, -0.0414751, 0.067071, 0.009446587, 0.001063094, 0.007720488, -0.088059165, 0.046274632, -0.035139885, 0.018418295, 0.09335716, 0.017542407, 0.0360202, 0.034084518, 0.058517992, 0.050968956, 0.036486145, -0.017429065, -0.0066716573, -0.022036323, -0.003094318, 0.05566231, 0.0068562934, 0.0024996693, -0.06328837, -0.022963554, -0.04565388, 0.062057085, 0.040458377, 0.0023199033, -0.028720412, 0.042972654, -0.0074283495, -0.0083294725, -0.020073475, 0.020957932, -0.05552534, -0.029506385, 0.023389181, -0.005732023, -0.01057323, 0.026811024, -0.010321925, 0.03142368, -0.044061236, -0.014460984, -0.0147368945, -0.010857663, -0.062399194, 0.0048260232, 0.05967416, -0.0037669286, -0.026787605, -0.020554896, 0.04092911, -0.064214714, 0.036865424, -0.015221016, 0.007948764, 0.039355367, 0.014589573, 0.022996012, -0.08519826, -0.01785147, 0.017623859, -0.057996023 ] }, { "values": [ -0.04016726, 0.00400896, -0.009971877, -0.022916539, 0.018780643, 0.03568797, -0.012530977, 0.004528463, -0.013463557, 0.0028560222, 0.020188522, 0.019080885, 0.028041087, -0.014590508, -0.05672947, -0.048324924, 0.039613698, -0.012806063, -0.040421527, -0.006281985, 0.033924095, 0.03993584, 0.019551206, -0.0461381, -0.033338856, 0.054877333, 0.033229336, -0.0100075295, -0.0027953018, -0.0066034026, 0.042161938, 0.036553606, -0.032664187, -0.016235199, 0.08837099, -0.0026141456, -0.051577646, 0.015513638, 0.062125314, -0.059944823, -0.06338274, -0.012127195, -0.0023116209, 0.0110303415, -0.009285043, -0.011937699, 0.031458784, 0.002583276, -0.05992517, 0.053859938, 0.017871851, -0.014088799, 0.0022732443, 0.025022581, -0.025410805, -0.023677489, -0.05422393, -0.035577185, 0.061188027, 0.0029055635, -0.032854117, -0.008756483, -0.064538606, -0.04234175, 0.009791573, -0.0049997885, -0.07297754, -0.032642093, -0.034488846, 0.0026564158, -0.02753826, 0.0063551823, 0.0011170125, -0.025008166, -0.05353555, -0.010511105, -0.021968476, -0.021532424, -0.019478021, 0.040847253, 0.02140997, -0.052770186, 0.07102851, 0.10942965, 0.005559197, 0.016930532, 0.020928351, -0.061502255, -0.0059907306, 0.01999452, 0.08298704, -0.014936945, -0.036956023, -0.01346094, 0.04385661, -0.06338797, -0.080354586, -0.055586003, 0.07137259, 0.053032465, -0.05553532, -0.0033337101, -0.029784681, -0.003472233, 0.061709564, 0.019477772, 0.011842974, -0.056018453, -0.026804777, -0.016781444, -0.0035770275, -0.010794066, -0.018774673, -0.0048899585, -0.011692316, -0.04684862, 0.03773967, -0.0068410393, -0.008309404, 0.017864332, 0.011373197, -0.039821237, -0.050331123, 0.039851338, 0.0073111197, 0.05177943, 0.063693, -0.06334104, -0.025737667, -0.100841105, 0.046298377, -0.09023816, 0.013870841, 0.035007264, -0.07574847, -0.039827663, 0.03155647, 0.00097447174, -0.024890395, -0.01958321, 0.01669153, 0.0005575916, 0.0005876088, 0.052518453, 0.0047603413, -0.007370238, -0.021626163, -0.04810028, -0.06067047, 0.037693996, -0.10279747, -0.00016091965, 0.003546668, 0.012870599, -0.0065808273, 0.0042184982, 0.061742797, 0.0018086279, 0.049422868, -0.070182465, 0.0184588, -0.030695295, 0.00795972, 0.0326201, -0.064647496, -0.036386658, 0.031739235, -0.073783524, -0.06356049, -0.04823277, 0.008897988, -0.009095066, -0.030836584, -0.064821504, -0.004127069, 0.030526817, -0.030300628, -0.004451091, -0.042563476, -0.0036504779, -0.009229079, 0.051669303, -0.015855713, -0.009307021, -0.015211242, -0.022855964, -0.020442095, 0.07110896, -0.029782394, 0.057852432, -0.019493543, 0.010854102, 0.06677649, 0.01693384, -0.0011696172, 0.07289082, 0.09044258, -0.0046388116, 0.008023682, -0.033847366, 0.020815944, 0.008506266, -0.0033695255, 0.022564912, -0.035786714, -0.008888601, -0.028928723, -0.038846694, 0.036411908, 0.0029737442, 0.01106781, -0.029840862, -0.029735988, -0.029500186, 0.004587067, 0.024950925, 0.063351154, 0.013595278, 0.05556786, -0.023667462, -0.050326183, -0.008468364, 0.010468402, -0.06454021, 0.055348195, 0.003672057, -0.010729788, -0.006933452, -0.032473665, 0.0032456375, 0.004789923, 0.0133399675, -0.011530647, 0.009998227, 0.026001588, 0.0552001, 0.008021721, -0.0111427605, -0.022519004, -0.018246217, 0.008572928, 0.015824325, 0.053858176, 0.012571541, 0.0002676253, 0.07938578, 0.06543944, 0.09133807, -0.051597875, -0.05360811, -0.04142661, -0.029531233, -0.048973955, -0.03222073, -0.018718727, -0.009574267, -0.0014551793, -0.023335256, 0.013262081, 0.027642285, 0.025816906, -0.013176376, -0.03538346, -0.047064148, -0.027265718, -0.13006821, 0.0060060397, -0.016109873, 0.05929786, 0.009412759, -0.024229301, 0.005612127, -0.028113835, -0.018354567, 0.066039264, 0.02316297, -0.014791939, 0.035656024, -0.018735932, -0.041365735, 0.03152851, -0.038815886, 0.013073051, -0.04874475, -0.0062734615, 0.00020850079, 0.03513001, 0.0058056046, -0.02002834, -0.05193946, 0.036999833, 0.038379785, 0.053445917, 0.028311094, 0.03914248, 0.0065333573, 0.0144949015, 0.00062153355, -0.032671183, -0.014729822, 0.042214822, 0.0693926, -0.053212155, 0.021720538, -0.0043315855, 0.008895894, -0.0769195, 0.0060820677, 0.0013422238, 0.030314317, 0.024810087, 0.05726675, 0.011040763, -0.014678091, 0.01004087, 0.02396699, -0.096210845, 0.022506716, -0.011822724, -0.042379513, 0.05977724, 0.034363687, -0.015332762, -0.021410912, 0.048399586, -0.006687161, -0.00125065, -0.023242045, 0.019636452, -0.008061729, 0.03072284, 0.026079917, 0.02561983, 0.009339517, -0.030392718, 0.03809744, -0.029712101, 0.03770714, 0.010170966, -0.017231327, 0.054758687, -0.0032035247, 0.034527857, 0.0776507, -0.002520736, -0.054530952, 0.014721057, 0.020609455, 0.1005609, -0.01949483, -0.018739183, 0.043374322, 0.0045796745, -0.0306989, 0.030171255, 0.02429263, 0.047659487, 0.041089714, 0.019221108, -0.008139074, -0.04686398, 0.012660837, 0.024865434, 0.0048640966, -0.015856136, 0.016280605, -0.014315561, 0.017138202, 0.025242025, -0.08138004, 0.0064926962, 0.019746391, 0.028037995, 0.020561252, -0.022478826, -0.026935799, 0.022121666, -0.0039225807, 0.009354284, 0.0008621194, -0.039608948, -0.039497774, -0.016906425, -0.01788173, -0.040437292, 0.049026914, -0.011823398, -0.023011152, 0.018996116, 0.031602703, -0.047485653, 0.08527655, -0.021125069, 0.041780144, -0.016347922, 0.026264118, -0.0150351925, -0.0014293642, 0.011837542, -0.012450094, -0.033806402, 0.01208459, 0.023899881, -0.020635769, -0.00071601436, -0.029201092, 0.08588546, -0.00488482, 0.00953726, -0.06935174, -0.010788687, -0.06888553, 0.012354263, -0.004136645, 0.015994444, -0.03652815, 0.0015470289, -0.06138968, -0.026187738, -0.020710375, -0.025169045, 0.002276524, 0.0015455473, 0.021836834, -0.036669496, -0.057730168, 0.00081232743, -0.010674374, 0.037237033, 0.014115078, -0.05356782, 0.046048686, -0.07522802, -0.015269049, 0.010837673, -0.011539122, 0.0028754205, -0.020449692, -0.047968186, 0.00848765, -0.010703455, -0.035607446, 0.03889312, 0.06536351, -0.011647528, 0.050233323, 0.026525747, 0.041936826, -0.011255479, -0.0741757, 0.0126252705, 0.028080106, -0.0109634185, -0.072669, 0.0068128654, 0.0042888056, 0.0398204, 0.045022387, -0.023067573, -0.009983373, -0.019766802, -0.029725254, 0.05091928, 0.06133756, -0.010448186, -0.02650857, -0.031970903, 0.013347626, 0.035022188, 0.04696715, -0.01808451, -0.031691387, -0.011475565, -0.017469069, 0.016544616, 0.010899705, 0.012804579, 0.010446847, 0.0113285035, 0.026730444, -0.041399803, 0.0330553, -0.008463345, 0.021416508, 0.008650995, -0.05415229, 0.022782542, 0.008428394, 0.050718583, 0.0060782502, 0.035824362, 0.06241066, 0.018462816, -0.016583435, -0.034247823, -0.058342796, 0.032965604, -0.02002928, -0.0129595725, -0.025570763, 0.08355682, 0.013859019, 0.0002802615, -0.025513427, -0.024761027, 0.00026862815, -0.017470282, -0.019341443, 0.071829826, -0.0176263, 0.01140984, -0.010071034, 0.0075083496, -0.04189673, -0.040593054, 0.084365726, -0.07085626, 0.02865881, 0.0062143067, 0.047520008, -0.038682353, -0.004492664, 0.016555505, -0.034637585, -0.05152363, -0.051593505, -0.012947666, 0.041613758, 0.08134977, 0.00290333, -0.0058101853, 0.041357774, -0.0045312135, 0.0049160924, 0.016656475, 0.028986529, -0.004109713, 0.02510544, -0.058045585, -0.002398359, -0.014152879, -0.010553943, 0.01761169, 0.02597932, 0.055575345, 0.005248606, 0.018046305, 0.004812203, -0.023955239, 0.08588928, 0.00320034, -0.012879435, 0.016317107, -0.01925121, -0.0114840185, -0.009122927, -0.0057118796, -0.033174407, -0.03324829, -0.003500027, 0.027903507, -0.015197662, -0.009799307, 0.013311144, -0.046675928, -3.388182e-05, -0.06752736, 0.03516101, -0.0144929495, -0.002405439, -0.015454474, 0.020374954, -0.010913719, -0.032825634, -0.020295022, 0.06390095, -0.035470627, 0.008235961, 0.053168785, 0.00730767, 0.030923543, -0.008895922, 0.07497592, -0.02900194, -0.027688347, 0.027127815, 0.035535198, -0.04364919, 0.01514763, 0.0077517903, -0.0045941514, -0.03363036, -0.031367037, -0.043708395, 0.033901487, -0.008328822, 0.016475657, -0.017509455, 0.08308289, 0.06436189, -0.048023913, 0.008124347, -0.015750224, 0.014244754, 0.0044021085, -0.014794442, -0.004427569, -0.072423436, 0.013664199, -0.005767384, -0.017553382, 0.008817768, -0.030079138, -0.021402722, -0.02640613, 0.020569256, -0.042233262, -0.04849036, -0.025949813, -0.012305511, -0.04302126, 0.043997303, 0.005652341, 0.001313348, -0.042527962, -0.0015113233, -0.004423679, 0.06934989, -0.022337744, -0.008703662, -0.021304976, -0.0020021582, 0.040060777, -0.029332139, 0.0075713075, 0.03819545, -0.0039217635, -0.042018402, 0.049999814, -0.03740182, 0.018788384, -0.023973063, 0.014475682, 0.07882264, -0.05196207, 0.050042905, -0.02732036, 0.03787959, -0.024936963, 0.008439531, -0.027113918, 0.05737116, -0.008790796, -0.01902343, -0.03200519, -0.020360164, -0.04972652, -0.024990793, -0.0032843885, -0.04361694, 0.016584842, -0.03582674, 0.016195973, 0.034045212, 0.005454298, 0.014419379, -0.0027520275, 0.027698848, -0.047997113, -0.01544692, 0.024292089, 0.014735109, 0.008917587, 0.04553373, -0.0031927482, 0.01909881, -0.012542634, -0.056675926, -0.045027204, 0.019171298, 0.03900143, -0.026283242, -0.03246286, -0.009961639, 0.025969835, 0.0014053314, 0.02322509, -0.03319997, 0.0006396433, 0.020058092, 0.0004662785, -0.07401361, -0.00056865753, 0.00281417, 0.035859898, 0.08478415, -0.024643738, 0.0006559912, -0.03473486, 0.033025, -0.010995081, 0.00058700814, -0.064608, -0.012410956, 0.09246813, 0.018411227, -0.0002334292, 0.031649105, -0.09015218, 0.045299027, -0.036377966, 0.0016151099, 0.06514283, 0.0029313068, 0.030295132, 0.018137887, 0.05677278, 0.037407428, 0.023888653, 0.00018916163, 0.011774912, -0.008705328, -0.008918149, 0.060266905, 0.0027094122, 0.022911062, -0.09992029, -0.010578912, -0.034841962, 0.0642181, 0.03678564, 0.008541658, -0.02250155, 0.025167145, 0.002334603, 0.0054379227, -0.009869882, 0.01957662, -0.049989227, -0.032571197, 0.04918115, -0.026701307, -0.027262378, 0.045932706, -0.012712384, 0.018507544, -0.05735137, -0.005093257, -0.01560212, 0.012506392, -0.058892597, 0.020534374, 0.05684212, -0.006301069, 0.011675722, -0.020450702, 0.025598735, -0.044143785, 0.028966598, -0.012603898, 0.011667667, 0.042866267, 0.033675477, 0.03338972, -0.087010525, -0.014055688, 0.025460526, -0.068015374 ] }, { "values": [ -0.030608393, 0.021163024, -0.025237372, -0.02373067, 0.04005596, 0.0363161, 0.004377466, 0.014866296, -0.010760907, -0.009816807, 0.027477961, 0.003992001, 0.03332929, -0.011999327, -0.051426012, -0.047606908, 0.0122447945, -0.013099027, -0.059211582, 0.00699699, 0.04671935, 0.02650509, 0.00862949, -0.04175551, -0.006823046, 0.05192115, 0.037622392, -0.009879061, 0.008127973, -0.006020639, 0.039151482, 0.027952136, -0.03073109, -0.0438791, 0.08740078, 0.017316053, -0.06547193, 0.031839117, 0.031852752, -0.06269323, -0.0711198, -0.03257432, -0.014199267, 0.02980889, -0.013859685, -0.02547306, 0.041596938, 0.014435859, -0.04318308, 0.031904522, -0.015724378, -0.02155852, -0.017359981, 0.0150834955, -0.045145653, -0.040007684, -0.031391364, -0.028555771, 0.07234296, -0.0021440298, -0.03884649, -0.024043655, -0.08614423, -0.037327096, 0.021199416, -0.020744074, -0.08195195, -0.026452474, -0.03683879, 0.0006188056, -0.0441682, -0.00047817483, 0.0040505393, -0.023291517, -0.032009125, -0.018615551, 0.0143300425, -0.0064620995, -0.014885515, 0.05696853, 0.018449215, 0.008233591, 0.040197607, 0.062327825, 0.0041934345, 0.024184076, 0.04086849, -0.04171785, -0.022826219, 0.013651982, 0.07507808, -0.016541464, -0.042770885, -0.035641287, 0.032658625, -0.046685148, -0.07268328, -0.06940805, 0.029927144, 0.06008143, -0.073622845, -0.0014647235, -0.03961409, -0.026050776, 0.041655943, 0.024576815, 0.020640854, -0.03175715, -0.0213989, -0.022535078, -0.0063736946, 0.0057467953, 0.00696605, -0.00031517108, -0.0025426904, -0.024822924, 0.040683888, -0.039250445, -0.009025004, 0.0046017184, 0.009782065, -0.014645964, -0.044924412, 0.047724083, 0.006565821, 0.04039308, 0.03181186, -0.0420464, -0.025527818, -0.08237017, 0.04788365, -0.11205378, 0.01597674, 0.011507545, -0.06408008, -0.014259249, 0.05126468, -0.013486368, -0.009033667, 0.0058444566, 0.02717895, -0.001511567, -0.055084575, 0.038060274, -0.0060723587, 0.03483372, -0.014482253, -0.06850551, -0.04226817, 0.040079527, -0.068104014, -0.015458615, 0.009205201, 0.005657053, -0.031192014, 0.026608177, 0.07694219, -0.010458183, 0.039999653, -0.062973306, 0.030827595, -0.032120418, -0.0055855727, 0.040648162, -0.09501425, -0.0120957745, 0.052059, -0.068829685, -0.03752165, -0.020316007, -0.0090698255, -0.02359194, -0.05638425, -0.05224733, -0.012118065, 0.011488991, -0.023931837, -0.0024378442, -0.055616688, 0.0048580463, 0.008703239, 0.067406386, -0.021248842, 0.01384422, -0.04294697, -0.002703412, -0.0025772236, 0.024755416, -0.023836348, 0.059199497, -0.031095298, 0.011054747, 0.050621677, 0.030732255, -0.019163098, 0.0525229, 0.09773595, -0.013704311, -0.009481133, -0.010508743, 0.013074731, 0.038742725, 0.002198779, 0.048086405, -0.017818445, 0.008010125, -0.025523525, -0.021965718, 0.039083794, -0.006275631, -0.0064397296, -0.018748123, -0.039863393, -0.018790698, 0.006443284, 0.03443303, 0.100185774, 0.028333483, 0.052924287, -0.026809838, -0.06389095, -0.018422334, -0.01630225, -0.04631592, 0.063221045, 0.038510583, -0.009280901, 0.017701274, -0.0467952, 0.005519926, -0.012526953, 0.023156611, 0.016007695, 0.00070928095, 0.010377556, 0.058836073, 0.018428287, 0.012998199, -0.028353877, -0.025167422, 0.019889517, 0.004317787, 0.047999114, 0.0039720954, 0.019966722, 0.07961118, 0.052733056, 0.060844246, -0.028866967, -0.05213846, -0.03442916, -0.04644885, -0.06073383, -0.01178, -0.0030237813, -0.004817032, -0.009607398, -0.039429326, 0.009366474, 0.010079571, 0.0294717, 0.016678073, -0.04356511, -0.056674022, 0.0020193506, -0.131612, -0.012179405, -0.023669604, 0.04448115, -0.0019977258, -0.026278628, 0.00593342, -0.040030103, -0.010244129, 0.025080372, 0.024797319, -0.015005761, 0.020436864, -0.010536698, -0.032131735, 0.032777917, -0.055862196, 0.010348134, -0.0340547, -0.00833634, -0.0060072197, 0.02282292, 0.0216073, -0.020976383, -0.06988931, 0.020423932, 0.03951683, 0.04919218, 0.0066512055, 0.032578435, 0.0041736257, 0.03832357, -0.002991236, -0.06740721, -0.0034095217, 0.065548964, 0.051952306, -0.058149695, 0.030262165, 0.0010611046, -0.0029491675, -0.058458973, 0.015720604, -0.006036138, 0.027944509, 0.00872056, 0.06696935, -0.015693692, 0.003024209, 0.0061809686, 0.004992364, -0.11203184, 0.012494656, -0.031534657, -0.042585876, 0.05175674, 0.025568066, -0.016273014, -0.032507535, 0.052841097, -0.010129114, -0.011099991, 0.0026251443, 0.030200632, -0.007203541, 0.00482636, 0.026042113, 0.03198465, 0.029790588, -0.025990771, 0.020371417, -0.036914047, 0.024096435, 0.012432259, -0.020153917, 0.0756339, 0.0077314917, 0.039105345, 0.07751004, -0.00064584205, -0.06442672, 0.050752923, 0.011891619, 0.0761007, -0.06238456, 0.0021462895, 0.073215455, -0.006901392, -0.04033415, 0.035201326, -0.016424986, 0.024394019, -0.001497677, 0.033834267, -0.00013581569, -0.029167343, 0.008831858, 0.022386825, 0.013186433, -0.0033287453, 0.0068342458, -0.01987541, 0.009418197, -0.0034496686, -0.04088033, 0.028896254, 0.03820094, 0.029614722, 0.029148085, -0.03001483, -0.02037588, 0.023422934, 0.003460427, 0.0066845296, -0.025124328, -0.010781001, -0.039511852, -0.025981672, -0.01742167, -0.037708424, 0.04798632, -0.0142549705, -0.006430646, 0.014062436, 0.026381971, -0.048613243, 0.0790385, -0.009927628, 0.029473469, -0.01948327, 0.03266377, -0.0012894919, -0.0031969182, 0.012940663, -0.0012726408, -0.010367473, 0.0143543035, 0.044579968, -0.013569997, -0.01099084, -0.040766798, 0.08236009, -0.0010117271, 0.013644858, -0.01546508, 0.018144071, -0.037371013, 0.027284427, 0.00023496631, 0.027959494, -0.019760692, 0.02392491, -0.05558555, -0.015524754, -0.015150177, -0.037134692, 0.015382904, 0.01880911, 0.023448603, -0.019084416, -0.03691081, 0.0020792019, 0.0048783654, 0.035950016, 0.028516915, -0.04051308, 0.052206974, -0.07458672, -0.012395972, 0.0020424002, -0.046257105, -0.025195757, -0.03640641, -0.06653097, 0.004419869, -0.033437543, -0.020783035, 0.054187518, 0.0751349, -0.007896057, 0.0067841257, 0.010158769, 0.03442134, -0.02634419, -0.07454272, -0.03004437, 0.019709405, -0.010265148, -0.0569286, 0.020660145, 0.007226299, 0.019399928, 0.030667087, -0.055113826, 0.009710854, -0.025293745, -0.00050623406, 0.07136117, 0.0548313, -0.035251115, -0.023570651, -0.0403279, -0.0042195898, 0.054595947, 0.049437363, -0.0011185148, -0.021899123, -0.013965193, -0.022316892, 0.011110815, -0.0053497953, 0.032086797, 0.037775356, 0.00083991745, 0.04423646, -0.043758042, 0.021507842, -0.019304391, 0.030032538, 0.012434236, -0.05155637, 0.013974392, 0.027554419, 0.046908993, 0.030478815, 0.050755788, 0.045642536, 0.026807932, 0.009111978, -0.03641658, -0.04255579, 0.050496563, 0.014634398, -0.0065101986, -0.003144307, 0.083589286, 0.011270603, -0.0016816498, -0.059316847, -0.016172294, 0.023374382, -0.042833753, -0.037452914, 0.07215702, -0.055055015, 0.0032990088, -0.013559399, 0.004836794, -0.008581876, -0.042021025, 0.07002769, -0.100934006, 0.014100383, 0.021624738, 0.03967383, -0.0045776884, 0.0015739049, 0.012321077, -0.037538484, -0.046547033, -0.034911603, -0.003705924, 0.030249558, 0.09532624, 0.004336076, -0.007090752, 0.03191467, -0.0061526694, 0.01807467, 0.0036897224, 0.025609616, -0.0031820373, 0.037363116, -0.052153587, -0.009252946, -0.0011699682, 0.023043437, 0.014111278, 0.02224108, 0.05780146, 0.0024989962, 0.010642734, 0.0068102297, -0.035260223, 0.06431433, -0.026003538, -0.018008113, 0.026204789, -0.032234285, -0.00557177, 0.004501461, -0.0074420674, -0.0076425252, -0.047051292, 0.010450296, 0.03716697, -0.012323127, 0.0062859915, -0.0035083008, 0.010164365, -0.025272852, -0.03959241, 0.028321764, -0.004494004, 0.0021552222, -0.019570395, 0.031021483, 0.026175657, -0.04120545, -0.018934472, 0.050094932, -0.009812168, -0.013140607, 0.043031942, -0.01677584, 0.03218064, -0.017737292, 0.09578731, -0.027630683, -0.03635589, 0.028756488, 0.021119673, -0.03288727, 0.032886803, 0.015406377, -0.020501252, -0.00019411881, -0.01405661, -0.04847377, 0.043427978, -0.012879484, 0.007731606, -0.01900481, 0.056500908, 0.056496397, -0.06872424, 0.008835905, -0.0046014097, 0.027624384, -0.002167302, -0.032740068, -0.031468824, -0.074097775, -0.0016678793, -0.011458343, -0.016616795, -0.002530308, -0.034738768, -0.011926018, -0.029965462, 0.026522396, -0.044731524, -0.026233964, -0.013017589, -0.0067619286, -0.048037164, 0.0032459365, -0.012999622, 0.035212748, -0.05661122, 0.0052894833, 0.010767127, 0.06657949, -0.02029031, -0.0027591875, -0.016175259, -0.006502838, 0.018844698, -0.058269296, 0.00066945725, 0.046558842, 0.0065736393, -0.06172754, 0.03909465, -0.04712958, 0.0250022, -0.01482478, 0.018280024, 0.05179428, -0.050405305, 0.05912326, 0.0035894932, 0.031441048, -0.012666741, 0.04231762, -0.008570492, 0.067770556, -0.0016679186, -0.02022916, -0.05366907, -0.014596126, -0.03177309, -0.003574197, 0.0094534755, -0.034120947, 0.022025272, -0.05585129, -0.007998612, 0.013065425, -0.0027390353, 0.024403995, 0.017946698, 0.009921715, -0.050696693, -0.024544543, 0.039436452, 0.02862231, 0.020994835, 0.048129965, -0.0038925395, 0.027078412, -0.0025521799, -0.07757382, -0.041700926, 0.022671325, 0.03522908, -0.038646493, -0.041083112, -0.011095743, 0.02968551, -0.017940871, 0.018431228, -0.045586757, -0.014248397, 0.04462856, -0.0008513045, -0.08274805, 0.012934046, 0.023933716, 0.045928802, 0.08294474, -0.052082855, -0.0062890532, -0.034497533, 0.01931216, -0.025547322, 0.015311248, -0.051018625, -0.03841933, 0.100428924, -0.0013666465, -0.0026275788, 0.048459284, -0.070248924, 0.063861705, -0.029922238, -0.0031309417, 0.053573035, 0.017886179, 0.009475261, 0.035977203, 0.05036764, 0.056326535, 0.035397742, -0.021582736, 0.004689378, -0.007546562, -0.016402429, 0.068222284, -0.0014778248, 0.0008982558, -0.070672914, -0.016860632, -0.042751182, 0.05594849, 0.031918477, -0.008029883, -0.038725823, 0.016136765, -0.018069215, 0.013437984, 0.006514051, 0.003430363, -0.049624905, -0.022639213, 0.036833696, -0.021622391, -0.04761742, 0.019443711, 0.01845601, 0.021435387, -0.04362989, -0.021702709, -0.034511108, -0.026142845, -0.06327357, 1.4236587e-05, 0.062145125, -0.014155626, 0.0012639187, -0.002776977, 0.02277514, -0.06789474, 0.0392368, -0.020593166, -0.005886679, 0.04270447, 0.034028575, 0.0319066, -0.08371263, -0.0318505, 0.028700592, -0.03538135 ] }, { "values": [ -0.010685083, 0.0046253954, -0.037589077, -0.041108936, 0.036907557, 0.027974328, -0.0040887417, -0.00014352862, -0.027985435, -0.010785617, 0.027545946, 0.022014055, 0.036553193, -0.01481516, -0.049056996, -0.041927394, -0.018696088, -0.023465494, -0.061070338, 0.015672276, 0.027073188, 0.014131008, 0.036494255, -0.039209582, -0.012054268, 0.07115471, 0.039770663, 0.0043705967, 0.020661155, -0.010634009, 0.044766847, 0.028482493, -0.021349385, -0.03504944, 0.11428051, 0.0056387587, -0.049382243, 0.020081561, 0.01474112, -0.040110257, -0.06002834, -0.015787955, -0.020765372, 0.023819342, -0.012546095, -0.014965116, 0.030673854, -0.0071467194, -0.034974992, 0.035061557, -0.017078845, -0.010471231, -0.059770525, 0.008949018, -0.04819501, -0.024943613, -0.02517667, -0.024809562, 0.07732498, 0.01303078, -0.039882854, -0.04385888, -0.053981006, -0.02579591, 0.047183953, -0.016471298, -0.08187885, -0.024044547, -0.047291413, 0.00961267, -0.033467475, 0.0075177033, 0.00475354, -0.015919348, -0.020495953, -0.0055311536, 0.017938541, 0.008380142, -0.010429599, 0.057379108, -0.018029258, -0.00987909, 0.06482404, 0.041171584, -0.008129156, 0.012698308, 0.018424472, -0.025674066, -0.016306799, 0.025311068, 0.0713061, -0.016003203, -0.005321567, -0.030652288, 0.040848, -0.062618054, -0.084704325, -0.08645268, 0.015906174, 0.064196594, -0.07100589, 0.012367708, -0.020969313, -0.022447154, 0.06339202, 0.030994678, 0.043480832, -0.03514581, -0.026238853, -0.014698502, 0.017478537, -0.005324848, -0.0058007683, -0.009920084, 0.0054615713, -0.02703457, 0.04319086, -0.032727238, 0.010606154, 0.019971099, 0.0055013485, -0.034864835, -0.016287, 0.05122975, -0.025718609, 0.054831147, 0.05235883, -0.048551254, -0.017225733, -0.10419874, 0.0412584, -0.118545435, 0.010414373, 0.016196877, -0.067605026, -0.00040200463, 0.026731852, 0.012150744, 0.0057084556, 0.0021397874, 0.027280869, -0.011557115, -0.0272651, 0.034845132, -0.019098828, 0.032684367, -0.0015820577, -0.05302403, -0.030921726, 0.021305462, -0.09663104, -0.03517089, 0.0159101, 0.009199334, -0.037148993, 0.028095983, 0.088860445, -0.019189296, 0.058038294, -0.07092325, -0.012369691, -0.04198638, 0.0065629478, 0.035880663, -0.10410559, -0.021011507, 0.04488524, -0.067883626, -0.03945737, -0.025422223, 0.0047166734, -0.007814863, -0.02426243, -0.043153226, -0.006341927, 0.011544011, -0.031088633, -0.010959754, -0.039546337, 0.007389211, 0.044478476, 0.055040643, -0.0085999975, 0.011422038, -0.036715478, -0.0020832026, -0.00020464082, 0.02709215, -0.039007455, 0.06101495, -0.008903299, 0.016024316, 0.06041903, 0.03101161, -0.007761783, 0.04932993, 0.115098044, -0.020546198, 0.0009658876, -0.011855893, 0.017140439, 0.006514615, 0.0046130745, 0.046954636, -0.023981407, 0.004820707, -0.04657686, -0.018405318, 0.049426366, -0.015577682, -0.0033119787, -0.029925888, -0.050678037, -0.033544257, 0.01039034, 0.017054986, 0.1201027, 0.06552723, 0.063997455, -0.022074167, -0.035633832, 0.001690287, -0.0031396553, -0.056906335, 0.05106473, 0.03216021, -0.021439206, 0.01878296, -0.039617967, 0.0134556405, -0.010912505, 0.015953872, 0.019930275, -0.02390913, 0.022674205, 0.018219031, 0.0012075054, -0.008354415, -0.01911153, -0.057286866, 0.0024224438, 0.012380516, 0.04492307, 0.00011142904, 0.030859565, 0.053172596, 0.04364291, 0.08067554, -0.06266742, -0.04619398, -0.018419381, -0.025789026, -0.049373735, -0.00043704585, -0.0031915745, 0.00072880037, 0.0016669666, -0.03923687, -0.014710267, 0.008801634, 0.028942905, -0.0043680724, -0.027059391, -0.06956932, -0.0086414665, -0.12897483, 0.0049166684, -0.013850138, 0.02950321, 0.003967052, 0.0067611025, 0.018922592, -0.03674699, -0.02629259, 0.015614079, 0.014623496, -0.035644513, 0.037893854, -0.006326208, -0.02263632, 0.022300338, -0.047466192, -0.011762657, -0.018228242, -0.001804612, -0.031141415, 0.011640091, 0.0050006416, -0.024095755, -0.074980125, 0.034724664, 0.04255946, 0.02799911, 0.030296234, 0.023474822, 0.0037738741, 0.03143271, -0.0014579949, -0.03062872, -0.013658016, 0.052164353, 0.06146996, -0.04536448, 0.025997085, -0.017259525, 0.010772125, -0.055818345, -0.007728068, -0.03011669, 0.017585818, 0.031732105, 0.08336453, -0.02453079, 0.005544348, -0.0018370452, 0.006339155, -0.096864186, 0.028465489, -0.032417618, -0.05277425, 0.057490576, 0.04072157, -0.02617422, -0.021347033, 0.052288663, -0.037125017, -0.0050175325, -0.017712303, 0.029885188, -0.011793749, 0.010464223, 0.021548014, 0.005566794, 0.0027816205, -0.020283932, 0.011133487, -0.040109854, 0.019843122, -0.0015902688, -0.020225247, 0.07391854, 0.009385552, 0.052811857, 0.053589817, -0.024729263, -0.0538276, 0.033766434, -0.0041697295, 0.07969979, -0.06185635, -0.0043259505, 0.06573214, -0.008896982, -0.0228385, 0.045854136, -0.01905663, 0.040646996, -0.003066879, 0.030405479, 0.009485716, -0.042692177, -0.006481804, 0.03519353, 0.014007477, -0.0035824669, 0.00686129, -0.020090317, 0.02295055, -0.0048445105, -0.038162515, -0.0036213151, 0.04499152, 0.028758045, 0.013441656, -0.022832688, -0.036891773, 0.012429768, -0.0050544483, 0.018864105, -0.019898837, -0.01797404, -0.04978283, -0.03456505, -0.0255406, -0.023269542, 0.059152547, -0.018109983, -0.0063511, -0.0017612543, 0.021866772, -0.036530353, 0.064317994, 0.00072840694, 0.025369216, -0.012924773, 0.021621045, 0.005711789, -0.010542282, 0.015155833, -0.009244938, 0.010917097, 0.042086124, 0.030531896, -0.012828824, -0.0100573255, -0.033019427, 0.061324768, -0.018560393, 0.011492913, -0.0065260353, 0.005489051, -0.0476296, 0.041659784, 0.0031288967, 0.039721772, -0.0212317, 0.031334262, -0.06690696, -0.025229828, 0.0105167935, -0.034173936, 0.020228807, 0.02077636, 0.045994766, -0.023419729, -0.027272943, 0.007475337, 0.018438807, 0.043329313, 0.02332955, -0.017457055, 0.03901515, -0.07313766, 0.0005153491, -0.00074790785, -0.025846984, -0.0010589275, -0.03831324, -0.069715396, 0.0014418735, -0.01770657, -0.020630758, 0.05856065, 0.08373211, -0.016864713, 0.019398065, 0.011912897, 0.014340241, -0.031270582, -0.051948063, -0.03697958, 0.041775398, -0.024106061, -0.0757395, 0.036409546, 0.032081466, 0.0078628715, 0.039644245, -0.04668412, 0.011626891, -0.04867563, -0.027638707, 0.05136067, 0.06786732, -0.014803713, -0.02341708, -0.053944904, 0.009908856, 0.0467388, 0.041847035, 7.2260285e-05, -0.030274745, -0.01929441, -0.0059222253, 0.001175258, -0.0066172164, 0.023316253, 0.015949206, -0.010109277, 0.034863263, -0.029942714, 0.012322874, -0.018068867, 0.012788667, 0.001267764, -0.051003523, -0.00455125, 0.036791813, 0.03308739, 0.019014576, 0.026733397, 0.026828473, 0.041000754, 0.006266158, -0.037544567, -0.054128792, 0.064597026, 0.024521274, -0.0220505, -0.005787224, 0.10216693, 0.023519214, 0.0146512035, -0.05105646, -0.0060614566, 0.024002772, -0.036741417, -0.023371404, 0.056335207, -0.06099308, -0.004112179, -0.022865089, 0.009235119, 0.0036200434, -0.045973595, 0.07700424, -0.09845822, 0.027747026, 0.0045402218, 0.048392065, -0.048553683, -3.4010623e-05, 0.0058916165, -0.045635894, -0.037129026, -0.030925915, -0.026028708, 0.023648111, 0.07478582, 0.0035722682, -0.00446219, 0.045677993, 0.016717926, -0.008713734, 0.028720995, 0.026418302, -0.009825666, 0.017358115, -0.041853946, 0.0037240651, -0.029575577, 0.0044163046, 0.016521145, 0.04139459, 0.05289223, -0.0073279273, 0.00365483, -0.0062210667, -0.014242581, 0.07352713, -0.0106168995, -0.027107026, 0.009948059, -0.009691629, -0.018430723, -0.0023662683, -0.015850276, -0.0029468108, -0.042005844, 0.026333107, 0.04275791, -0.019465312, -0.015420082, 0.018555373, -0.032933205, -0.008399148, -0.034167524, 0.041509382, 0.00843966, 0.010887103, -0.035761144, 0.03083711, 0.025337297, -0.06771369, -0.0155136855, 0.05532349, 0.0034459056, -0.008892776, 0.041720003, -0.014306631, 0.053311337, -0.033394594, 0.05452683, -0.025528029, 0.009357249, 0.014547556, 0.02266129, -0.029657241, 0.016402543, 0.013999245, -0.037064206, -0.013190234, -0.008524377, -0.03074807, 0.043779712, -0.03847596, 0.018717837, -0.011621801, 0.04854467, 0.041501753, -0.05501567, 0.005546902, -0.031928934, 0.03986647, 0.0060174814, -0.030342154, -0.0077787586, -0.072139986, -0.015038353, -0.013354783, -0.02695468, 0.003426471, -0.037763536, -0.021645775, -0.032106955, 0.024158904, -0.038897518, -0.04668529, -0.00064280885, 0.013965677, -0.030846553, 0.024061998, 0.0050467225, 0.02397366, -0.045362532, -0.008159606, 0.011523947, 0.084753014, -0.035812162, -0.010750267, -0.028269965, -0.027648484, 0.0042053843, -0.043437358, -0.009179066, 0.05367761, 0.00036345213, -0.06354503, 0.019719228, -0.06052658, 0.034463152, 0.0044313497, 0.025211377, 0.06534185, -0.07187874, 0.047363408, 0.008640119, 0.046241514, -0.03259251, 0.0545325, -0.022696046, 0.054474145, -0.0060097417, -0.023697812, -0.040773556, -0.016255893, -0.032901116, -0.019348996, 0.011505852, -0.031264342, 0.034638796, -0.030334879, 0.006678711, 0.037577886, -0.0069816797, 0.025240269, 0.012251382, 0.02973174, -0.04309508, -0.042757507, 0.047032677, 0.025573304, 0.022287013, 0.056372095, -0.01045392, 0.020420102, 0.0057520196, -0.057159733, -0.04309043, 0.022218281, 0.020373147, -0.03194489, -0.050322615, -0.014974382, 0.0190708, -0.0006729888, 0.02674256, -0.024240991, -0.0010972096, 0.044410847, 0.02317832, -0.046500985, -0.010230643, 0.005803567, 0.03780634, 0.08867829, -0.052493636, 0.0184242, -0.025322404, 0.009266918, -0.024671473, 0.022368366, -0.04680938, -0.026365088, 0.1121769, -0.012766387, 0.0046307524, 0.0349143, -0.06596875, 0.052536424, -0.030928565, 0.005501419, 0.057063427, -0.0015144726, 0.008943726, 0.03268696, 0.043428, 0.04549718, 0.03595441, 0.00040677827, 0.0024931696, 0.0020112356, -0.03195499, 0.070629194, 0.008282689, 0.0028070046, -0.081842296, -0.009423698, -0.042848285, 0.05370126, 0.02144903, 0.0042676926, -0.0072263246, 0.03927757, -0.025637265, 0.014298555, 0.007851112, 0.0037727093, -0.06312489, -0.017621351, 0.028151011, -0.02503757, -0.013679728, 0.03898947, 0.013087632, 0.01691294, -0.05619487, -0.04896936, -0.03477544, -0.027513271, -0.051815625, -0.0062658302, 0.054091718, -0.030628938, 0.0022982883, -0.00932152, 0.009458311, -0.053492155, 0.025034362, -0.02194248, 0.0028486094, 0.042256966, 0.010925115, 0.027882572, -0.07424753, -0.016311316, 0.031449527, -0.034830227 ] }, { "values": [ -0.023714026, -0.011912108, -0.014801839, -0.041703332, 0.031996038, 0.019225579, -0.018969657, -0.004750933, -0.019047545, -0.010159645, 0.03556351, 0.013289215, 0.025103973, -0.0029740587, -0.04899403, -0.036978252, 0.005095468, -0.0458683, -0.061817113, 0.02414832, 0.032634147, 0.030373221, 0.0033588966, -0.01678277, -0.0036799628, 0.08427346, 0.020033035, -0.010205071, 0.010873898, -0.015477322, 0.030697715, -0.0052161417, -0.032906946, -0.011509959, 0.07539018, 0.018505568, -0.04274747, 0.0070913793, 0.013091191, -0.08566776, -0.045328755, -0.018880764, -0.024784915, 0.006190715, -0.03421727, -0.0052940673, 0.022063112, 0.0048772255, -0.018323522, -0.002680293, -0.019821227, -0.020565787, -0.02385151, 0.01813792, -0.019031063, -0.014066026, -0.044334766, -0.030674595, 0.068315476, 0.0017757603, -0.03535577, -0.012326145, -0.06498517, -0.033824045, 0.04852038, -0.014992306, -0.09094848, -0.02882107, -0.06043999, 0.015848676, -0.04822813, -0.020483118, -0.014613902, -0.034685567, -0.03012086, -0.026842304, 0.034786772, -0.016953465, -0.02171079, 0.04234478, 0.017396789, -0.023595072, 0.028806813, 0.046246424, 0.001975627, 0.023785695, 0.013827087, -0.018569373, -0.05340099, 0.023356523, 0.06287154, -0.019646121, -0.029357918, -0.046956785, 0.055161223, -0.07573327, -0.06404944, -0.07027688, 0.020116601, 0.05581781, -0.072669074, 0.009633307, -0.026717016, -0.0471721, 0.050452873, 0.04572902, 0.061895926, -0.04329737, -0.020953575, -0.011674921, -0.0031143215, -0.005988339, -0.043172147, 0.01128578, -0.02528742, -0.014930681, 0.05768235, -0.039428208, 0.010441306, 0.010566402, -0.0043716417, -0.016943889, -0.021437865, 0.054502204, -0.0064488533, 0.040979624, 0.03723212, -0.061559517, -0.02249269, -0.075820014, 0.035290588, -0.115845375, 0.014741465, 0.018584326, -0.05579031, -0.022150442, 0.027007725, 0.0029165186, -0.016628627, -0.014381423, 0.020784443, -0.047519285, -0.04240415, 0.051852603, -0.0033539394, -0.0011701086, -0.016925683, -0.054085564, -0.010754551, 0.02660914, -0.09785015, -0.025855402, 0.008140758, 0.014926752, -0.036998726, 0.046595987, 0.07847574, -0.053604063, 0.025771227, -0.062247768, -0.018101748, -0.06105205, 0.016626488, 0.01420511, -0.06580712, -0.00011046532, 0.04194485, -0.06713996, -0.067706645, -0.043757845, 0.011855147, -0.04041869, -0.06530496, -0.0392258, -0.029261215, -0.008643732, -0.007926533, -0.014919404, -0.035637997, 0.012909217, 0.049018946, 0.06637748, 0.00095403247, 0.014575661, -0.072559156, -0.018438479, 0.0044726855, 0.03266165, -0.004276225, 0.07292766, -0.029133366, 0.025262145, 0.041976225, 0.026725838, 0.011021418, 0.04493908, 0.119005665, -0.01669416, -0.022378488, -0.007881377, 0.023655802, 0.035596892, -0.00033578358, 0.046008565, -0.039664987, 0.009954198, -0.03652801, -0.017438088, 0.06459197, -0.010117027, 0.023686511, -0.0024199367, -0.026557922, -0.02279949, 0.0028635918, 0.009142477, 0.110242814, 0.047040157, 0.055005956, -0.04756954, -0.009474299, 0.01915134, 0.016339459, -0.02963133, 0.07028872, 0.06536973, -0.0080422945, 0.012582549, -0.016329821, 0.012142031, -0.013576023, 0.023892427, 0.0027545013, -0.02167865, 0.04275291, 0.029608019, 0.032629874, 0.0017205895, -0.039892778, -0.03742182, 0.029530844, 0.02860979, 0.054523565, -0.021238916, 0.01599437, 0.08638591, 0.040845875, 0.0841477, -0.084095605, -0.059746258, -0.016448097, -0.022064611, -0.049782448, -0.019268753, -0.0152504165, -0.019165734, 0.02259094, -0.038292762, -0.0018417174, 0.0005219401, 0.04822669, -0.010910546, -0.028512219, -0.06901091, -8.9498e-05, -0.077158816, -0.003825305, -0.0024878897, 0.034061097, -0.0035241263, 0.012426334, 0.006371024, -0.060742583, 0.010576329, 0.014858061, 0.029523445, -0.02454142, 0.021308566, -0.014303859, -0.031347413, 0.046635114, -0.056157812, 0.0076387185, -0.02778387, -0.0042436337, -0.010270963, 0.0065777996, 0.031435773, -0.011353415, -0.064299725, 0.021889618, 0.03590508, 0.02468846, -0.004133162, 0.05567823, -0.013106301, 0.039893992, -0.010111623, -0.05107406, -0.007256084, 0.033470236, 0.068564035, -0.05086175, 0.029841736, 0.00053034135, -0.007588008, -0.0385427, -0.010567922, -0.0009150718, 0.005544015, 0.023227258, 0.08292517, -0.035469882, -0.01179978, 0.01286909, 0.018222803, -0.12760724, 0.053719517, -0.008460186, -0.03645589, 0.05017201, 0.035040267, -0.012078721, -0.026833156, 0.023524791, -0.032810222, -0.013908714, -0.027417716, 0.04086251, -0.013684424, -0.008950535, 0.020094872, -0.0027545155, 0.015192141, -0.041825656, 0.031694207, -0.039426625, 0.020521771, -0.018547196, -0.017068032, 0.0493174, -0.0041853543, 0.04235425, 0.04575697, 0.008652515, -0.042850215, 0.018355314, -0.013027727, 0.08235914, -0.07829079, -0.0034566023, 0.057048287, -0.012179614, -0.03139521, 0.043953963, 0.0025334384, 0.03728445, 0.0133783035, 0.0019720665, 0.012107755, -0.06188071, -0.030352574, 0.031980954, 0.021052035, 0.0003589052, 0.013412561, 0.009896204, 0.019204432, -0.020974014, -0.03669142, 0.022797056, 0.054207437, 0.056766476, 0.05138863, -0.0052454467, -0.044095427, 0.008196913, -0.0123639675, -0.00028480677, -0.017748602, -0.016577087, -0.05042277, -0.01128625, -0.01640612, -0.013502644, 0.028754883, -0.024660828, -0.02007722, 0.0073530483, 0.03564177, -0.027484758, 0.022461977, -0.020968353, 0.028739035, -0.00952718, 0.036227748, 0.023145562, -0.0072587514, -0.003425768, -0.018812157, 0.0059183086, 0.014419903, 0.05589102, -0.034246854, -0.0029564747, -0.012463515, 0.06866347, -0.0108115915, 0.017738534, -0.018994901, 0.030155748, -0.021937476, 0.051815644, 0.03419564, 0.02150726, -0.0009619357, 0.04070743, -0.058593325, -0.009919791, 0.001806362, -0.022176748, 0.025431175, -0.0003873749, 0.06724453, -0.04830532, -0.034527756, -0.0071846447, 0.042265955, 0.04152639, 0.0154169155, -0.02562571, 0.030460004, -0.058413442, -0.0074740704, -0.059058014, -0.027027447, -0.009740389, -0.015212933, -0.03858136, -0.005643055, -0.019451939, -0.0074165664, 0.046249874, 0.087027706, -0.010910031, 0.010647325, 0.023345947, -0.005259026, -0.022255674, -0.04950225, -0.02790281, -0.0016824832, -0.000541882, -0.07844035, 0.008925509, 0.02206235, 0.04091787, 0.010767227, -0.044688568, 0.011625015, -0.04037243, -0.020257734, 0.04588819, 0.06919251, -0.016063081, -0.003734039, -0.056351498, 0.022504644, 0.046535324, 0.0573726, 0.002962309, -0.016148219, 0.0076328204, -0.008630189, -0.0006951145, 0.0018018169, -0.0020671347, 0.02066068, -0.004526989, 0.025662743, -0.017731184, 0.030001132, -0.005344894, 0.0310026, 0.017303018, -0.049913257, -0.011217229, 0.029010706, 0.016023247, 0.038929902, 0.037512593, 0.058754787, 0.037686642, 0.012116343, -0.009697681, -0.036606535, 0.061290774, -0.014233981, -0.0013350671, -0.018612623, 0.10302972, 0.016573835, 0.009785159, -0.032094195, -0.015960999, 0.0237179, -0.05684925, -0.033924997, 0.059415285, -0.05542621, 0.0061239917, -0.006496486, 0.038307533, 0.019683361, -0.028506381, 0.068881996, -0.09381487, 0.01088653, 0.0050872006, 0.05410884, -0.00461003, 0.01491419, 0.003678636, -0.041740354, -0.03146466, -0.020087127, -0.048717618, 0.028648641, 0.07773231, -0.0211644, -0.02759483, 0.05323448, 0.014163976, 0.008644327, 0.03934521, -0.004134267, -0.0030583555, 0.0140555715, -0.03839988, -0.0024388079, -0.03482588, 0.020265779, 0.004749407, 0.015553338, 0.049600754, -0.01816095, 0.008085704, -0.016442684, -0.027001785, 0.08282357, -0.0067845993, -0.014896527, 0.014286884, 0.0104532335, -0.0043928665, -0.013692017, -0.024012383, 0.002265052, -0.056158736, 0.024693206, 0.04182724, 0.003047673, -0.012182103, 0.018438842, -0.022162097, -0.007892456, -0.027612496, 0.03648358, 0.016769957, -0.0072689834, -0.028221887, 0.03507051, 0.01733435, -0.04069382, 0.0066634645, 0.028458454, -0.003372849, 0.004932302, 0.03457117, -0.016842155, 0.05248408, -0.04823756, 0.06379508, -0.051620077, -0.023538118, 0.03798674, 0.0040734992, -0.04945234, 0.020882752, 0.028761487, -0.028629554, -0.024336575, -0.021410454, -0.030286767, 0.032872807, -0.0361868, 0.01681961, -0.004015656, 0.043575276, 0.052468296, -0.04649983, -0.0042634793, -0.009782456, 0.027711792, -0.0058420785, -0.05012476, -0.033524774, -0.064604364, -0.01406596, 0.006420214, -0.023100747, 0.017110227, -0.020611057, -0.013217806, -0.032616068, 0.032542072, -0.03592194, -0.016588457, 0.006430438, 0.0010910277, -0.05262288, 0.020608151, -0.0008835453, 0.013978064, -0.0411565, 0.032359075, -0.006211284, 0.09661441, -0.019253964, -0.01736476, -0.020979652, 0.008657152, -0.0023157394, -0.05162018, -0.018480971, 0.05712062, 0.009208689, -0.05287668, -0.00014628116, -0.062187355, 0.047308125, -0.014331366, 0.023026004, 0.044057973, -0.0775709, 0.061437994, -0.022256507, 0.021238774, -0.025857992, 0.06395435, -0.012790814, 0.0847264, -0.020775588, -0.034181688, -0.040694743, -0.013453504, -0.029289065, -0.030038493, 0.00016581407, -0.015708515, 0.024673117, -0.028641727, -0.0022563909, 0.030304784, -0.004133063, 0.027397014, 0.035544083, 0.011878038, -0.016394597, -0.03539437, 0.045968227, 0.02200962, 0.007936734, 0.06442598, -0.0053060064, -0.0063934284, -0.0028713392, -0.020365588, -0.05120908, 0.041469257, 0.020313695, -0.049722962, -0.0066047553, -0.018111, 0.026025351, -0.016954118, 0.027990773, -0.057474267, 0.008992992, 0.042918555, 0.012584779, -0.065444194, 0.011519024, 0.0043905294, 0.023355948, 0.052252132, -0.033905707, 0.028898647, -0.022883685, 0.02537371, -0.039525125, 0.016370047, -0.04202282, -0.03712024, 0.09340969, 0.0054808995, 0.008638581, 0.010551614, -0.07782377, 0.067050025, -0.036133535, 0.0075792205, 0.061927415, 0.01751752, 0.0151185235, 0.041593846, 0.04192799, 0.044505302, 0.023760023, -0.016200384, -0.013132362, -0.017332148, -0.0022881778, 0.06829546, 0.007767277, 0.005770685, -0.06609703, -0.02108048, -0.027148543, 0.059512444, 0.038372185, 0.010958265, -0.027439179, 0.032986924, -0.005202025, -0.0071287127, -0.020615047, 0.00061923335, -0.055707343, -0.027093846, 0.0369758, -0.026142092, -0.012708047, 0.002681335, 0.005162237, 0.046009444, -0.06696905, -0.056550086, -0.012411965, -0.022801675, -0.051370632, -0.034304623, 0.04996394, -0.010922158, -0.021764776, -0.013054037, 0.02007891, -0.057415422, 0.042498525, -0.021732802, -0.018495077, 0.03101495, 0.014610077, 0.031253427, -0.07374156, -0.001360356, 0.00063276786, -0.045447595 ] }, { "values": [ -0.007918993, -0.0031540294, -0.006745058, -0.026803117, 0.029382017, 0.016324148, -0.0027318036, -0.040625557, -0.031637676, 0.0032935843, 0.039129496, 0.009540723, 0.03933326, -0.031293713, -0.061602317, -0.037396334, 0.006466334, -0.029930664, -0.06960669, -0.020736102, 0.020490993, 0.007731184, 0.015166708, -0.015404058, -0.010753325, 0.062025204, 0.035568297, -0.021118358, 0.008471735, -0.035817355, 0.038631715, 0.033492386, -0.034222294, -0.048321687, 0.10097913, -0.009785182, -0.05024339, -0.0024081508, 0.0361905, -0.060742795, -0.048391614, 0.016912824, -0.027082713, 0.015273613, -0.019833185, -0.0048606056, 0.040527754, 0.023363844, -0.0047619278, 0.031036602, -0.0048887124, -0.0009229173, 0.0010042483, 0.014919867, -0.026420042, -0.02364654, -0.04898082, -0.05456223, 0.06194175, -0.018809998, -0.0076916753, -0.008660682, -0.05031938, -0.03577437, 0.040940747, 0.010250146, -0.07887207, -0.026498184, -0.03374538, 0.036889438, -0.015596984, -0.014148948, -0.0005836494, -0.033104386, -0.018469479, -0.014369757, -0.009629295, -0.007756745, -0.054921836, 0.04581471, -0.0022877285, -0.023909869, 0.042222254, 0.03754152, 0.0104385, 0.022638036, 0.004722551, -0.04112089, -0.025845185, 0.01703991, 0.04670481, 0.009850972, -0.019551793, -0.023179282, 0.048710164, -0.07747191, -0.07946477, -0.09764677, 0.029406246, 0.096192814, -0.03741867, -0.0046950504, -0.021353979, -0.055098776, 0.068595834, 0.01907374, 0.024607778, -0.036527067, -0.028186068, -0.0027216636, -0.013353959, -0.0067920187, -0.02606271, 0.003960293, -0.02952318, -0.020657763, 0.04338337, -0.024299592, 0.007614761, -0.0085035, 0.009002542, -0.020990634, -0.049699, 0.036946308, -0.0032031806, 0.045447808, 0.0028999702, -0.05315779, -0.0122787645, -0.08761951, 0.03972894, -0.13339953, 0.0049859346, 0.00234901, -0.05543329, -0.023986481, 0.017663883, 0.017696083, 0.012825951, -0.018225206, 0.0015985682, -0.01967798, -0.011905014, 0.052673753, -0.01026836, -0.0038283449, -0.026270254, -0.022051023, -0.021823885, 0.019619856, -0.111143, -0.014020681, -0.011192065, 0.011250915, -0.029614393, 0.03931176, 0.10380611, -0.025310608, 0.026077447, -0.058712125, -0.010005384, -0.037149057, 0.0076325443, 0.01802031, -0.0679201, -0.044865236, 0.030849595, -0.07455523, -0.05150085, -0.05180619, 0.029381528, -0.005385435, -0.036080867, -0.05741089, 0.003094316, 0.013211435, 0.0052387305, -0.01169115, 0.00092570524, 0.026268274, 0.044155255, 0.02454544, 0.0047578006, 0.018094625, -0.050274216, -0.030300481, -0.026672956, 0.049622566, 0.002592311, 0.071117714, -0.017799653, 0.0088622365, 0.028073246, 0.021502264, 0.017612325, 0.03700418, 0.09104905, -0.015845314, 0.016927693, -0.007374717, 0.04691728, 0.012519843, 0.0025567664, 0.03891493, -0.037209645, -0.0058739954, -0.019138318, 0.010181889, 0.05953395, 0.002744491, -0.018477237, -0.03338689, -0.014853954, -0.017830238, -0.02437739, 0.04330587, 0.079276614, 0.039277308, 0.042865057, -0.034916375, -0.015983013, 0.023353124, 0.013980116, -0.02487626, 0.06078789, 0.04259698, -0.035904486, -0.025342565, -0.024212591, 0.0453865, -0.024682779, 0.035698198, 0.009751502, -0.03383529, 0.027844379, 0.02999321, -3.2051765e-05, -0.0021397956, -0.015460624, -0.04978428, -0.012349524, 0.030382449, 0.07206044, 0.0014130824, 0.025642576, 0.0837158, 0.053532567, 0.084753245, -0.08108795, -0.053606745, -0.029242767, -0.025164315, -0.07197158, -0.011103693, -0.016741633, -0.032230835, 0.006678543, -0.07742702, 0.0055056447, -0.0037909262, 0.04884686, -0.0077762716, -0.024049692, -0.06407428, -0.007934273, -0.07916471, -0.021431044, -0.009173571, 0.05573398, 0.023351273, 0.041262973, 0.0066741793, -0.04500908, -0.027691418, 0.0181388, 0.013924174, -0.021072555, 0.031153884, -0.008906248, -0.038678247, 0.026706798, -0.06383643, -0.00071631547, -0.037074894, 0.011114646, -0.019510929, 0.023731712, 0.01153535, -0.026318174, -0.052618086, 0.04463767, 0.03545876, 0.04262703, 0.024106938, 0.018591901, -0.012709351, 0.030946236, -0.006994964, -0.027280334, -0.0325386, 0.049514342, 0.06123851, -0.023496239, -0.0071024676, -0.0063559758, 0.004769427, -0.06268181, -0.050951578, -0.0027897914, 0.029918803, 0.022124162, 0.08944895, -0.018085744, -0.010760844, 0.02886496, 0.035269182, -0.12139088, 0.041427165, -0.029167688, -0.017114187, 0.05873801, 0.045464844, -0.011518392, -0.016403798, 0.030228648, -0.04536743, -0.0033621946, -0.016715763, 0.03366413, 0.0016003543, 0.019442175, 0.031342857, 0.002891075, 0.025599057, -0.029439935, 0.017098654, -0.035439603, 0.01567776, -0.0092756925, -0.0282597, 0.049581096, -0.006945497, 0.044049423, 0.044259816, -0.02688207, -0.07034798, 0.014522709, -0.005783341, 0.09875074, -0.05282375, -0.032251157, 0.05711428, 0.016343176, -0.02720831, 0.038441874, -0.0103303045, 0.05087993, 0.0027196456, 0.037505336, -0.0035051878, -0.055784356, 0.014306977, 0.032512512, 0.016856791, -0.0055087665, 0.0026208838, 0.005913676, -0.001237693, -0.012529827, -0.05147071, 0.018703444, 0.041581187, 0.03912063, 0.018157162, -0.005548719, -0.064570144, -0.0031848564, -0.0016461441, -0.0013410994, -0.040368762, -0.030559951, -0.050693635, 0.008946266, -0.012307245, -0.04187122, 0.03452545, -0.019102257, -0.023941666, 0.017959677, 0.013310597, -0.024071012, 0.047514297, -0.0247743, 0.011724791, -0.003429135, 0.015673883, -0.006037761, -0.013748526, 0.016456138, -0.032216627, -0.0026470975, 0.026585465, 0.06767425, 0.0050855866, -0.0049241036, -0.017174155, 0.068022884, -0.04012951, 0.00610171, -0.023562683, 0.01762899, -0.027739795, 0.029711816, 0.028624874, 0.02885321, -0.021776937, 0.020862645, -0.03817138, -0.02162982, -0.0034284573, -0.019218488, 0.030099642, 0.0091589065, 0.049181215, -0.07162535, -0.055815574, -0.004557738, 0.028877722, 0.04197779, 0.015933124, -0.032122273, 0.05462906, -0.079445146, -0.01589099, -0.057905696, -0.013706422, -0.0038776894, -0.009378568, -0.040685147, -0.018445143, 0.0012121574, 9.8810146e-05, 0.05682894, 0.06127123, -0.020683026, 0.026968094, 0.051306363, 0.016349116, -0.04776013, -0.059590623, 0.0085144825, 0.010455966, -0.019537944, -0.07551073, 0.012736459, 0.0035240774, 0.041732907, 0.031334013, -0.04962113, 0.024697734, -0.023684246, -0.01962447, 0.05158877, 0.06584518, -0.00081949256, -0.022401951, -0.037201088, 0.018523764, 0.0528074, 0.03743552, -0.0030066806, -0.026114522, 0.011653667, 0.010116393, 0.016806938, 0.02666477, 0.01531097, -0.0019869427, 0.0064414204, 0.021702653, -0.040729504, 0.045604043, 0.0006195831, 0.014283074, 0.0152205955, -0.06450221, -0.00058241875, 0.0035424167, 0.02142866, 0.0031584909, 0.01316723, 0.057609193, 0.019104319, 0.009220391, -0.012789046, -0.0380585, 0.06519144, -0.005922208, 0.0022836865, -0.03139808, 0.08829786, 0.010299919, -0.0038027542, -0.015507086, -0.0075618755, 0.0049759746, -0.049973734, -0.026857423, 0.051810645, -0.023188872, -0.020390783, -0.0032992817, 0.03231051, -0.0008160249, -0.03523034, 0.09362472, -0.07958479, -0.00014915409, 0.0011565296, 0.06727389, -0.03265988, 0.007593922, 0.032180455, -0.06362993, -0.05050691, -0.025783705, -0.05123988, 0.005628797, 0.07058452, -0.011763025, -0.021060023, 0.041830413, 0.012867442, 0.0060155187, 0.021472417, 0.022196483, -0.008709872, -0.0117205, -0.04958652, 0.0054250523, -0.011311603, 0.018799363, 0.01090036, 0.0109300595, 0.062701374, -0.015584849, 0.014431813, -0.020211248, -0.03414161, 0.07203589, -0.013018136, -0.03216118, 0.01708691, 0.022815589, -0.031564098, -0.031535, -0.026332736, -0.017950578, -0.06006927, 0.032218583, 0.036777794, -0.011591844, -0.014023616, 0.056545228, -0.037397075, -0.013077605, -0.04107417, 0.04253815, 0.010651738, -0.01534945, -0.02082607, 0.024730818, 0.014841, -0.056783818, -0.011465717, 0.046811994, 0.009096605, -0.000666706, 0.038304765, -0.01830012, 0.053358443, -0.024089552, 0.066607125, -0.040540457, -0.03328315, 0.037099455, 0.017658228, -0.047502376, 0.0020884543, 0.028070083, -0.017306745, 0.0044792495, -0.038524095, -0.024516193, 0.035504464, -0.00065177603, 0.018576905, -0.02709915, 0.024206199, 0.04645275, -0.040429987, -0.018268356, -0.038956016, 0.024160758, -0.0081792595, -0.047502022, -0.027373372, -0.07156212, 0.00840693, -0.024719246, -0.0038962152, -0.008527989, -0.020067561, -0.015759768, -0.037983272, 0.038202103, -0.036878023, -0.031553023, 0.015379322, -0.009025473, -0.028403766, 0.0528239, 0.0021233738, 0.015432792, -0.04170167, 0.0063253897, 0.015981538, 0.095571674, -0.01617464, -0.019766333, -0.014008334, -0.019032562, 0.019387543, -0.0551985, -0.013744721, 0.06288038, 0.010545558, -0.033330444, 0.028003238, -0.060250208, 0.037190437, 0.014773134, 0.036039494, 0.041971747, -0.09144399, 0.054722264, -0.014917788, 0.029220687, -0.026546482, 0.032638054, -0.035149917, 0.039545394, -0.01173949, -0.0543034, -0.019492859, -0.014090777, -0.018779982, -0.0341442, 0.008736714, -0.028115327, 0.0054423823, -0.040468387, -0.0067951903, 0.0373616, 0.013673122, 0.008309274, 0.007511096, 0.026081197, -0.020865187, -0.042157363, 0.021103378, 0.017349113, 0.026594192, 0.067889415, -0.04229897, -0.0055754893, -0.0066230143, -0.019344956, -0.049756452, 0.028555973, 0.03346035, -0.01179899, -0.012521406, -0.0239043, 0.011870976, -0.0030207485, 0.03104348, -0.047431074, 0.00787391, 0.035966996, 0.022381216, -0.038638562, 0.0012450551, -0.013355033, -0.0007836904, 0.06425333, -0.039477617, 0.028597502, -0.047526103, 0.0018312664, -0.045008972, 0.021324351, -0.050058626, -0.012356451, 0.08695326, 0.03168126, 0.0047267186, 0.02821272, -0.08593612, 0.042424653, -0.032045584, -0.0055569415, 0.058579244, -0.01074196, 0.03740083, 0.03417628, 0.054613106, 0.027503503, 0.0562777, 0.033908665, -0.001966757, -0.022640068, 0.0027101315, 0.06586359, -0.012812144, 0.011896446, -0.079402134, -0.030726107, -0.043234393, 0.06261732, 0.038748916, -0.0033185044, -0.0017812658, 0.037353348, -0.0009245065, -0.012229885, -0.042054225, 0.012005937, -0.05061547, -0.014627781, 0.033407953, -0.017770085, -0.0034627647, 0.032731283, 0.024449643, 0.025673237, -0.06414798, -0.05895819, -0.016599499, -0.016225163, -0.06842024, -0.0076696225, 0.05752105, -0.015386275, -0.014065201, -0.03114221, -0.0011120315, -0.0391847, 0.027297324, -0.010345649, -0.029961407, 0.046299335, 0.0025190248, 0.024488764, -0.054315086, 0.0010429831, 0.03983835, -0.056360878 ] }, { "values": [ -0.009634273, -0.014047132, -0.0022897585, -0.021790253, 0.029622497, 0.029329717, -0.020983143, -0.019436235, 0.0015854222, 0.0073246933, 0.045039896, -0.0048517603, 0.014421733, -0.021707004, -0.050810553, -0.059652165, -0.0053780754, -0.03758457, -0.081644244, -0.03551034, 0.03931108, 0.0056513213, 0.01155149, -0.013217986, -0.010051429, 0.062333822, 0.043131743, -0.011729233, 0.00031192365, -0.027458109, 0.02880007, 0.018849285, -0.021395527, -0.036420044, 0.049676105, 0.021322487, -0.07502839, 0.0022329276, 0.028187051, -0.072502255, -0.05811155, 0.021311706, -0.022058263, 0.031869985, -0.030816281, -0.007849476, 0.058414124, 0.021483278, -0.006409772, 0.015717864, -0.036895078, -0.0132818995, 0.022047298, 0.014048693, -0.047836505, -0.025107803, -0.055711586, -0.011510729, 0.063117854, -0.016602725, -0.02585165, 0.0008389492, -0.05447168, -0.032378476, 0.041262176, -0.008419012, -0.10402223, -0.014021565, -0.019548912, 0.05190618, -0.033996385, -0.020892264, -0.019410577, -0.028018426, -0.021513011, -0.010551567, 0.0027612655, -0.0258699, -0.058770332, 0.052079942, 0.027098149, -0.012253209, 0.026412651, 0.02174538, -0.0055590197, -0.0058607575, 0.03133529, -0.038448494, -0.02032944, 0.013432691, 0.05971675, 0.0016920707, -0.049906977, -0.028794618, 0.054135647, -0.03914641, -0.061177827, -0.100482956, 0.021552375, 0.05481543, -0.031633906, -0.013374184, -0.029276656, -0.048066158, 0.037752207, 0.00737814, 0.030532863, -0.03293546, -0.045025703, -0.026831072, -0.0021411916, -0.012945922, -0.012989561, 0.0035018937, -0.036744006, -0.014659978, 0.030060852, -0.035907857, -0.015813919, -0.0030756034, -0.008441959, -0.0149191525, -0.0424831, 0.04581766, 0.022785831, 0.040905, 0.018107371, -0.03731658, -0.03430376, -0.06390958, 0.036869414, -0.119229205, 0.022259796, 7.32363e-05, -0.054033425, -0.0362964, 0.04032783, 0.0115097575, 0.01992871, -0.0037535164, 0.012488596, -0.013984317, -0.030903555, 0.06026174, -0.011808597, -0.0023313041, -0.023798583, -0.024478322, -0.011530796, 0.03264006, -0.10221549, -0.026962394, -0.008030583, 0.008635173, -0.043050624, 0.03981293, 0.0803745, -0.030892355, 0.037886593, -0.060520317, -0.0058681197, -0.031176224, -0.00037347566, 0.023341116, -0.052796155, -0.021341601, 0.031240182, -0.07706895, -0.06075637, -0.042319983, 0.0077389413, -0.029323502, -0.055674434, -0.03601053, -0.012882352, -0.028639184, 0.016946172, -0.003245908, -0.034632653, 0.017038902, 0.043637052, 0.06364392, -0.012484842, 0.015059159, -0.055207852, -0.033807926, -0.009911567, 0.05465907, -0.0019418279, 0.074051514, -0.013326207, 0.021639222, 0.04164787, 0.016034612, 0.026563672, 0.023913778, 0.07506177, 0.006105454, -0.008828754, -0.026416149, 0.009911318, 0.040680625, 0.004721557, 0.059073925, -0.050092485, 0.02237655, -0.016193064, -0.0082214, 0.04063766, -0.005466892, 2.593304e-05, -0.017964343, -0.006901268, -0.023806186, -0.008783611, 0.018801756, 0.10817832, 0.0378596, 0.046733484, -0.01727298, -0.035481278, -0.002410599, -0.00081205444, -0.00043825785, 0.0448337, 0.05736874, -0.014136535, 0.0075959796, -0.026252648, 0.033004906, 0.008961793, 0.025695391, 0.01761621, -0.015876383, 0.018818254, 0.06287604, -0.006439732, 0.02104964, -0.014851282, -0.01051939, 0.004829059, 0.014586014, 0.06265733, 0.010793557, 0.013253039, 0.109401144, 0.04140173, 0.07978578, -0.043291464, -0.07442871, -0.050533526, -0.012575329, -0.10227591, -0.033431392, -0.015654245, -0.030394625, 0.01590342, -0.053164814, 0.010295963, -0.00056265603, 0.039182775, -0.011350438, -0.03135993, -0.044707898, 0.0023612494, -0.08476944, -0.022583928, -0.0010341897, 0.04735161, -0.0061810412, 0.022688892, -0.0034333102, -0.046663634, -0.022769203, 0.016817708, 0.033260334, -0.010972412, 0.016966391, 0.00873875, -0.037191372, 0.04651069, -0.0787163, 0.0237678, -0.033675607, 0.009903162, -0.0017709121, 0.019859143, 0.015146084, -0.015332375, -0.065172054, 0.029529374, 0.051183444, 0.039707195, -0.00038722623, 0.026021216, 0.014448166, 0.036819227, -0.014293477, -0.05123423, -0.022229502, 0.046952598, 0.06709413, -0.042748857, -0.00042268744, 0.0002877011, 0.0060806256, -0.06415497, -0.017143233, -0.0076636528, 0.018155446, 0.02000025, 0.07630197, -0.022869859, 0.0014303676, 0.020009603, 0.017123498, -0.14072366, 0.0413981, -0.036164954, 0.0005393316, 0.07923342, 0.026744375, -0.0014499659, -0.028691731, 0.037040904, -0.023218187, -0.00053174247, -0.014059395, 0.02961548, -0.010319055, 0.019124234, 0.040128134, 0.019908637, 0.014855819, -0.032116693, 0.003176627, -0.042077698, -0.0020108651, 0.018279621, -0.013018237, 0.05723429, 0.0012438463, 0.03144081, 0.06431757, -0.023214651, -0.067754395, 0.040309075, -0.0050681126, 0.08653276, -0.06944845, -0.03040709, 0.06192804, -0.0026517832, -0.03330414, 0.03859762, -0.012818088, 0.024834016, -0.0016684161, 0.018948164, -0.020123646, -0.040728547, 0.01635089, 0.018583402, 0.025995815, -0.00238645, 0.026203629, 0.015877485, -0.0012810769, 0.00043168064, -0.071089424, 0.018962935, 0.03874327, 0.037536494, 0.032974504, -0.014199871, -0.04402561, -0.0034818596, -0.0074119363, 0.0067461054, -0.025768448, -0.011521915, -0.041152097, 0.01364571, -0.010491807, -0.04762018, 0.0387939, -0.0019726935, -0.014624805, 0.004946975, 0.015892116, -0.0518895, 0.04327912, -0.009512376, 0.02488612, -0.0049777874, 0.03169092, 0.008549047, -0.013154308, 7.306231e-05, -0.017938549, -0.0065586306, 0.021056218, 0.05954326, -0.020268187, -0.0006308551, -0.018719852, 0.06303854, -0.035099287, 0.016931223, -0.018791746, 0.02168655, -0.020359, 0.038842373, 0.022100486, 0.014105209, -0.020728787, 0.039972126, -0.043155488, -0.029335909, -0.03281918, -0.0060381717, 0.034030095, 0.015701713, 0.028235113, -0.04524606, -0.042090364, -0.026006429, 0.023659341, 0.06256693, 0.034586888, -0.036829405, 0.048143808, -0.07575277, -0.007695763, -0.02340329, -0.010663549, -0.007987823, -0.004626012, -0.042500526, 0.0017562442, -0.005299963, 0.0008616352, 0.037096374, 0.06311972, -0.012570218, 0.006111875, 0.041517936, 0.00414752, -0.035496194, -0.08001214, -0.019565497, -0.018803565, -0.019474436, -0.051516186, 0.016978024, 0.017498555, 0.027174724, 0.026366862, -0.065502636, 0.017697528, -0.057384, -0.0050507165, 0.059819374, 0.06854373, -0.009848637, -0.014276371, -0.060069457, 0.020230157, 0.07644525, 0.07552303, -0.0054363147, -0.014259152, 0.020584062, -0.020966489, 0.0118268, 0.027337933, 0.009258319, 0.025173783, 0.01944301, 0.019483933, -0.030034665, 0.028257448, 0.008178738, 0.021960925, 0.03506753, -0.054944836, 0.01846208, 0.031003978, 0.025996683, 0.021767238, 0.043974523, 0.060651198, 0.018645642, 0.007167605, -0.012223752, -0.031002393, 0.036317408, -0.011724372, 0.009327919, -0.016162025, 0.0725699, -0.0010193941, -0.0024201237, -0.017267486, 0.0009474364, 0.021983707, -0.07349783, -0.041092683, 0.03945229, -0.032959975, -0.0031836648, -0.0068182303, 0.028579302, 0.0029533673, -0.036010712, 0.07656711, -0.09237477, -0.009083506, 0.016880054, 0.06885846, 0.013655284, 0.02937168, 0.03591398, -0.058670536, -0.036892537, -0.045269698, -0.024655746, 0.016070046, 0.08380157, -0.009868775, -0.025529321, 0.0417751, -0.00049621676, 0.006811166, 0.007410082, -0.00372233, -0.0106087085, -0.006028345, -0.059574563, -0.00571422, 0.004626703, 0.031668443, 0.018578218, 0.0048245904, 0.07607161, -0.018252436, 0.0052026846, -0.010823785, -0.045831274, 0.07226976, 0.014605369, -0.04191856, 0.017819937, 0.00054477394, -0.00095819007, -0.020202534, -0.027891569, -0.028752813, -0.07091669, 0.028943263, 0.027624166, -0.0158779, -0.0013879588, 0.013452721, -0.014870635, -0.03876655, -0.05262766, 0.02535902, -0.015747538, -0.021181041, -0.012847598, 0.030707685, -0.0012350202, -0.058557488, -0.016241403, 0.038339492, 0.015380317, -0.007747847, 0.048124406, -0.023945779, 0.029088067, -0.028709887, 0.07664984, -0.039413735, -0.025061889, 0.041431494, 0.013388329, -0.037491523, 0.0085945055, 0.016748076, -0.016416484, 0.02609062, -0.026052402, -0.008098165, 0.024535762, 0.0040613543, 0.03352679, -0.043272153, 0.045022897, 0.04863089, -0.03884783, 0.005150119, 0.021374533, 0.027060296, -0.026486209, -0.06041034, -0.033929482, -0.06260424, 0.012907364, -0.024017038, -0.013712992, 0.0010843168, -0.010019524, 0.0021441444, -0.03299819, 0.013312042, -0.03544721, -0.017867878, 0.023652235, 0.012251036, -0.020734714, 0.030091725, -0.01305884, 0.027254729, -0.04465239, 0.02600091, -0.011405124, 0.09227793, -0.011274002, -0.0088120885, -0.0095191505, -0.007841574, 0.025982322, -0.046870045, -0.0036872078, 0.056186587, -0.008009918, -0.052195262, 0.0071737864, -0.07156962, 0.04619405, -0.00514787, 0.021706665, 0.02141383, -0.08885897, 0.068807684, -0.014183769, 0.028609404, -0.01791976, 0.04755615, -0.013732828, 0.08268438, -0.02653603, -0.04096108, -0.031244172, -0.011421942, -0.013419529, -0.035976827, 0.0044129808, -0.010983858, -0.00942247, -0.034979604, -0.00022532349, 0.027138727, 0.007903549, 0.008670507, 0.0138467075, 0.009333352, -0.03475975, -0.029350348, 0.046164233, 0.04077145, 0.034886062, 0.049627975, -0.026277825, -0.0025496206, -0.008353803, -0.03312707, -0.05603638, 0.025261259, 0.049997997, -0.010653331, -0.015241334, -0.02896097, 0.04346881, -0.017167432, 0.014375035, -0.06351115, 0.0064963116, 0.021449082, 0.019553285, -0.07457183, 0.02560667, 0.008145861, 0.013669302, 0.063764066, -0.045691073, -0.0111374715, -0.03554266, 0.023977743, -0.063251786, 0.01706301, -0.04233872, -0.042214498, 0.08562967, 0.0030037141, -5.0040002e-05, 0.044013873, -0.07777441, 0.03760547, -0.021381725, 0.010628773, 0.05399592, -0.0015849357, 0.026775064, 0.05851461, 0.026708523, 0.02851303, 0.041857887, 0.0019370447, -0.0030517315, -0.01949591, -0.0028702808, 0.06886376, -0.018927403, -0.012120982, -0.058925297, -0.015299344, -0.040504865, 0.064746365, 0.04116133, -5.50482e-05, 0.013331142, 0.035466123, -0.0027460777, 0.0067624175, -0.007814238, 0.021940501, -0.050034624, -0.0028353701, 0.034038622, -0.00221319, -0.027155777, 0.002253185, 0.019015323, 0.030603223, -0.059189558, -0.035801835, -0.017743394, -0.021990662, -0.07735509, -0.020382097, 0.042555366, -0.007883707, -0.0042269616, -0.021892706, 0.022322344, -0.05049962, 0.04263192, -0.0076875375, -0.036257856, 0.037490804, 0.009911039, 0.029233295, -0.08490332, -0.010683114, 0.030982874, -0.059033595 ] }, { "values": [ -0.017259832, -0.02327982, -0.03579445, -0.04306628, 0.046173736, 0.018700004, -0.021447834, -0.018641718, -0.0020912474, 0.021701865, 0.026363306, 0.021760687, 0.017332518, -0.012072959, -0.04709325, -0.06965274, -0.02977525, -0.021774953, -0.05983926, -0.042462993, 0.023269176, -0.0043696733, 0.0034470526, -0.036786646, -0.024254262, 0.08252524, 0.05121345, -0.02105357, 0.029480658, -0.02486914, 0.029510481, 0.017408192, -0.014028587, -0.032016248, 0.0836308, -0.016437499, -0.056584656, 0.012534679, 0.02194913, -0.050436918, -0.056422204, 0.01310432, -0.03193712, 0.022069277, -0.03357789, -0.011431753, 0.0543333, 0.00013133931, -0.0184074, 0.03062907, -0.021457946, -0.0021965927, 4.4958824e-07, 0.006845299, -0.07281241, -0.027000181, -0.037319332, -0.0418646, 0.066375956, -0.030621266, -0.026355138, -0.035411395, -0.03844907, -0.028266337, 0.06822964, -0.004895923, -0.08007354, -0.01716073, -0.03395228, 0.021311203, -0.04124671, -0.015926352, 0.013934819, -0.036768045, -0.037290465, 0.00613485, 0.0016235848, -0.009368796, -0.05614683, 0.040198285, -0.010355053, -0.009700015, 0.05378356, 0.030703317, -0.012192969, -0.02026857, 0.0042752926, -0.01686148, -0.013361711, 0.022289487, 0.078155436, -0.022818785, -0.032208294, -0.019689059, 0.048714798, -0.027211122, -0.062316768, -0.062464073, 0.009355186, 0.084029816, -0.023644306, 0.008595886, -0.022949027, -0.049288608, 0.039913867, -0.010102436, 0.034208894, -0.05083889, -0.046728812, -0.023206582, 0.022413494, -0.005542887, -0.045308616, -0.026967594, -0.007843266, -0.015967786, 0.023666717, -0.024178922, -0.01107808, -0.00983019, -0.011657663, -0.0012428146, -0.028652113, 0.045084465, 0.01350464, 0.036505494, 0.03516761, -0.04823463, -0.015479021, -0.06359683, 0.0412737, -0.10705139, 0.00498632, 0.020065049, -0.0437072, -0.025292045, 0.008147453, 0.02196535, 0.027654527, -0.014581724, 0.022775698, 0.0059091793, 0.0017962344, 0.0389935, -0.025707822, -0.017366847, -0.01077274, -0.024422739, -0.028580299, 0.01904556, -0.12882002, -0.020936616, 0.0054400256, -0.0077616223, -0.050889228, 0.004473276, 0.0838922, -0.019973692, 0.03664252, -0.055988014, 0.0005059011, -0.022134313, 0.020012463, 0.039733656, -0.052113567, -0.031780347, 0.051708482, -0.088890746, -0.004146745, -0.049468637, 0.027932214, -0.03497526, -0.05036495, -0.066931665, 0.020342255, 0.0015706767, 0.023915758, 0.03338619, -0.024514627, 0.018043846, 0.04584484, 0.029467493, -0.015688214, -0.005337075, -0.050701864, -0.017288009, -0.011046794, 0.06416903, -0.005598964, 0.06621772, 0.002981828, 0.009296736, 0.042600717, 0.019193245, 0.03521485, 0.0327289, 0.07657954, -0.007453311, 0.0050450345, -0.03330493, 0.03058212, 0.016622853, 0.032873023, 0.03880722, -0.05044251, 0.024227642, -0.040148646, -0.012089894, 0.041393407, 0.0061643114, -0.0040499633, -0.027051905, -0.027522411, -0.020461963, 0.008530038, 0.010192949, 0.098650075, 0.056253225, 0.03309009, -0.026406763, -0.016931416, 0.03489843, 0.0004660254, 0.013936958, 0.021190546, 0.028584868, -0.010941052, -0.0070639746, -0.014514486, 0.02483431, 0.0028093432, -0.009781142, 0.018745558, -0.01677028, 0.023034738, 0.07435263, -0.02104909, 0.014107502, 0.007748649, -0.03127672, 0.0038476936, 0.02124039, 0.062472668, 0.011562575, 0.021645978, 0.07779777, 0.044649433, 0.10386483, -0.06607715, -0.07793205, -0.050560318, -0.0074325805, -0.07823962, -0.025687985, -0.016256098, -0.032208614, 0.00357371, -0.055503633, 0.004216556, -0.023608636, 0.0368092, -0.00516711, -0.017199967, -0.06527142, -0.012257872, -0.090232074, 0.0049090222, -0.00402657, 0.055555716, 0.005102987, 0.024796145, -0.0016819545, -0.03831438, -0.03565113, 0.016333276, 0.0064076195, -0.024271756, 0.024087826, -0.014322827, -0.04471022, 0.040084362, -0.06850812, 0.0053872955, -0.012735603, 0.023201294, -0.0008685147, 0.014037596, -0.004228789, -0.013541005, -0.072085515, 0.033818457, 0.05727885, 0.04905513, 0.026810454, 0.021868814, 0.0021009387, 0.03151003, -0.0061386097, -0.04142036, -0.03978832, 0.058270115, 0.056419637, -0.04287241, 0.014561116, -0.005704173, 0.03032779, -0.051374383, -0.01553531, -0.015366242, 0.036500417, 0.03999032, 0.08267709, -0.029229684, 0.000540544, 0.013286389, 0.011425389, -0.13116282, 0.044426486, -0.043816168, -0.028660724, 0.088677764, 0.050989036, -0.025199827, -0.031282526, 0.021402054, -0.05276851, -0.0001958427, -0.014538155, 0.027408786, -0.02515471, 0.020548986, 0.022056323, 0.01221494, -0.013929144, -0.03750554, -0.0067902966, -0.048303828, -0.0029612824, 0.023433039, -0.006126971, 0.04551972, 0.016999481, 0.03463085, 0.064648375, -0.040440302, -0.05032928, 0.005682123, 0.012700522, 0.09859883, -0.039253004, -0.020468473, 0.043400407, 0.017667873, -0.020082481, 0.05414549, 0.0050475826, 0.039660916, 0.018328456, 0.035102814, -0.038684845, -0.0436492, 0.018160887, 0.008094711, 0.009583914, -0.02669074, 0.018226076, 0.021917652, -0.0029436082, 0.00583426, -0.072167344, 0.0034147033, 0.04509875, 0.03679223, 0.017197998, -0.013068379, -0.056580555, 0.0017997444, -0.0078033074, 0.0013509195, -0.0036838276, -0.025947854, -0.0517011, 0.022568526, -0.01671316, -0.029708376, 0.053556576, -0.009763597, -0.028866068, -0.006326975, -0.0036200103, -0.049253363, 0.04827981, -0.0061307605, 0.0019252585, -0.0008146306, 0.032821834, -0.0053118947, -0.009164457, 0.011626208, 0.0010344844, -0.0050727674, 0.03964522, 0.03233451, -0.013876416, -0.0055965935, -0.027709901, 0.06985317, -0.0419087, 0.009174793, -0.003967418, 0.005536978, -0.026133964, 0.067474894, 0.014965056, 0.026428247, -0.0069483058, 0.03381341, -0.0384804, -0.02551692, -0.017961916, -0.013427613, 0.030352538, 0.01630203, 0.06621744, -0.013050813, -0.026199684, -0.017007025, 0.0033121277, 0.078462616, 0.023450527, -0.012337472, 0.062752895, -0.067654826, 0.0026534214, 0.0045580817, -0.022752319, 0.008329369, 0.0032976805, -0.045976255, 0.0077560055, -0.010262959, -0.0063636447, 0.059267238, 0.06672233, -0.030416558, 0.020872382, 0.03850808, -0.0059660133, -0.015776105, -0.064549185, 0.00028920174, -0.017447334, -0.017280838, -0.054039925, 0.035698187, 0.041887246, 0.028052412, 0.04296732, -0.061381396, 0.011652369, -0.05289302, -0.009770571, 0.057365924, 0.070269555, -0.003362789, -0.014144237, -0.04578273, 0.033349857, 0.06614749, 0.05522456, 0.014464621, -0.008974654, -0.005036793, -0.0072834347, 0.012129414, 0.02797295, 0.03146738, 0.0056544454, -0.0047305217, 0.029455945, -0.027135603, 0.02783954, 0.005777713, 0.025660822, 0.015322264, -0.048298184, 0.00575749, 0.03275163, -0.0052566454, 0.009358591, 0.030948784, 0.07971254, 0.026190896, -0.0027512107, -0.028170913, -0.04212541, 0.051987145, -0.013442232, -0.014247144, -0.026447043, 0.090297826, 0.017839089, -0.008626171, 0.004540233, 0.007707074, 0.027224392, -0.047488198, -0.028325453, 0.051891576, -0.01592885, -0.025208578, -0.01155435, 0.030404888, 0.002702065, -0.053473264, 0.090501726, -0.08749311, 0.017165445, -0.0014031063, 0.07565357, -0.024701105, 0.019533446, 0.025712013, -0.057190623, -0.041632194, -0.04210164, -0.048693232, 0.0073677218, 0.07666826, -0.009054957, -0.028805716, 0.063704945, 0.0010128231, 0.0033078992, 0.006242098, 0.017652981, -0.02557027, -0.014602291, -0.05020574, 0.014011471, -0.008522159, 0.024376264, 0.036796123, 0.032494333, 0.07034737, -0.0062791375, -0.01658555, 0.005371437, -0.027132535, 0.089673355, 0.020297842, -0.034299083, 0.013302686, -0.011405872, 0.0040626666, -0.021800684, -0.029339187, -0.025866574, -0.06436338, 0.02364644, 0.034514144, -0.022984458, -0.010032026, 0.031776804, -0.03436071, -0.03152195, -0.039312005, 0.026175054, -0.035905346, -0.013974725, -0.014106563, 0.011009403, 0.010896302, -0.061083265, -0.020240512, 0.048203185, 0.00038641592, 0.021720324, 0.055210575, -0.016850105, 0.05228731, -0.0162523, 0.058297604, -0.040623944, -0.02554206, 0.014384017, 0.03499855, -0.039731473, 0.011200768, 0.01613796, -0.01988377, -0.018850444, -0.013195423, -0.012315874, 0.02478317, -0.0019075675, 0.029330116, -0.049644113, 0.027351089, 0.054362953, -0.045543995, -0.014415676, 0.0028713066, 0.019249855, -0.0065196496, -0.023174884, -0.025770137, -0.0536006, 0.024429627, -0.005285796, -0.019026445, 0.0023800046, 0.0005337445, -0.022163762, -0.023401808, 0.014393191, -0.045229074, -0.030916821, 0.027651003, 0.01422724, -0.025485756, 0.043436732, 0.0024854585, 0.04435434, -0.033195145, 0.006849631, -0.002347966, 0.085659474, -0.009255591, -0.015665801, -0.023123888, -0.020773169, 0.05223258, -0.04104048, -0.0002732582, 0.055369526, -0.014442767, -0.055035602, -0.013537968, -0.07817492, 0.04314409, -0.007175493, 0.015497795, 0.05087069, -0.07769457, 0.054161232, -0.010467578, 0.039907087, -0.03296515, 0.023303172, -0.03940207, 0.048725147, -0.008949943, -0.03426927, -0.031876527, -0.014208435, -0.033592835, -0.048849694, 0.0028514462, 0.0014617438, -0.0049179173, -0.036980208, 0.01057695, 0.034841318, 0.011071282, 0.007507946, -0.008049153, 0.030899141, -0.02086885, -0.03341609, 0.030097283, 0.044597294, 0.020881739, 0.04543887, -0.023038784, 0.0013046282, -0.0060035284, -0.032454856, -0.07543475, 0.026284406, 0.04276568, -0.017831795, -0.018848244, -0.01328408, 0.04370851, -0.0062433197, 0.027315788, -0.036480814, -0.004168468, 0.046096686, 0.03206217, -0.046716843, 0.019911405, 0.014956184, 0.0070696864, 0.09139366, -0.03455257, 0.020555545, -0.033517238, 0.0064007402, -0.050628386, 0.026142385, -0.031211268, -0.015753016, 0.07096339, -0.0111314505, -0.0017092517, 0.029296288, -0.084943235, 0.046942182, -0.025632719, -0.003687861, 0.047379497, 2.6246116e-05, -0.0012959528, 0.029717654, 0.018263638, 0.03206976, 0.044409838, 0.019428622, 0.0011920544, -0.0060146656, -0.0171357, 0.05198518, -0.026055604, -0.0014408294, -0.07587691, 0.008054319, -0.043717783, 0.071315356, 0.02437626, 0.020828044, 0.009582931, 0.03468884, -0.013899852, 0.003045843, -0.026451096, 0.031082673, -0.041350678, -0.021360323, 0.03836692, -0.018351667, -0.01250603, 0.006695212, 0.027989952, 0.01852326, -0.05651609, -0.034402277, -0.0040105134, 0.002564082, -0.06909723, 0.005093421, 0.04479633, -0.014718903, 0.006389643, -0.039718077, 0.018241601, -0.038868483, 0.019209847, 0.0006271963, -0.01393397, 0.026527848, 0.014746653, 0.035490505, -0.087244906, -0.015678886, 0.049013596, -0.051355734 ] }, { "values": [ -0.01626834, -0.023271784, -0.020892115, -0.055096313, 0.036191568, 0.021161318, -0.011761459, -0.009757358, -0.006765792, -0.000110805566, 0.036226515, 0.018160839, 0.022705408, -0.0022405693, -0.02706967, -0.07898663, -0.041252267, -0.02111229, -0.08218579, -0.029089725, 0.03848097, 0.0033034266, -0.0013643152, -0.026794473, -0.014902732, 0.060747016, 0.018466404, -0.03323394, 0.03001954, -0.0013205969, 0.05256783, 0.011318442, -0.00097099715, -0.022423007, 0.055747587, 0.00787056, -0.038521193, 0.022937668, 0.026637735, -0.07415142, -0.028518189, -0.025390606, -0.031865746, 0.025331208, -0.023953175, -0.009387929, 0.052075356, 0.011243562, -0.0032929939, 0.017384432, -0.0060698395, -0.0015977928, -0.00062858243, 0.0045998995, -0.08470054, -0.041853227, -0.0333411, -0.014539198, 0.08964247, -0.006272159, -0.039947424, -0.03561157, -0.062041722, -0.03126802, 0.06934233, 0.017195513, -0.078460276, -0.027238252, -0.042121712, 0.029279787, -0.06281506, -0.020957548, 0.012891327, -0.030819781, -0.041222494, -0.007962309, 0.0071536982, -0.010987058, -0.029110009, 0.03924504, 0.017600453, 0.008782318, 0.0365188, 0.027047096, -0.009994737, -0.024674691, 0.011570016, 0.009955699, -0.025955638, 0.017897975, 0.081381425, -0.014878081, -0.029709596, -0.044312663, 0.0453849, -0.027210604, -0.04430853, -0.058034312, 0.006439036, 0.047968555, -0.045582842, 0.016407669, -0.017452752, -0.044376776, 0.051864624, 0.017909901, 0.040650025, -0.032117646, -0.050543774, -0.023465056, 0.0103272265, -0.024267659, -0.030967306, -0.0025270549, -0.009945392, -0.014605428, 0.034339458, -0.018191596, -0.018612595, -0.017803045, -0.04295626, -0.004504464, -0.033499945, 0.061414916, 0.0024594043, 0.025495164, 0.015527483, -0.02307169, -0.030823614, -0.036194373, 0.04837374, -0.10543657, 0.025816625, 0.00887822, -0.0521943, -0.0014063584, 0.04196117, -0.015569436, 0.0016038474, 0.012266166, 0.013271021, -0.016055426, -0.015769426, 0.044997793, -0.0054875277, -0.007539089, -0.008631982, -0.030486679, -0.040968865, 0.03746535, -0.11921306, -0.02785477, 0.018527828, 0.0034749445, -0.064667694, 0.027609978, 0.07981117, -0.017597266, 0.046545085, -0.09428721, 0.0042134887, -0.019447612, 0.028740011, 0.06654552, -0.049566336, -0.004650178, 0.05179958, -0.05421099, -0.03415075, -0.04615114, 0.021195954, -0.036039732, -0.06946781, -0.05069519, -0.010240373, 0.021678403, 0.010257466, 0.036516707, -0.040131144, 0.0325936, 0.0347527, 0.055931572, -0.020217072, 0.00925517, -0.044952102, -0.013395838, 0.0033086133, 0.042281896, 0.0100817215, 0.070490986, -0.004111117, 0.054875113, 0.025541235, 0.029270725, 0.012959623, 0.03379294, 0.08213863, -0.021942103, 0.009754734, -0.02996956, 0.011775737, 0.025921902, 0.035216913, 0.035424512, -0.063103646, 0.02238085, -0.012161359, -0.012670356, 0.07102368, -0.0027265807, -0.0063545345, -0.03244874, -0.032750882, 0.00078477024, -0.0013226339, 0.011172471, 0.12798376, 0.051753767, 0.044923943, -0.02175702, -0.03207615, 0.026305055, -0.004370037, 0.015240352, 0.035137586, 0.02529879, -0.008928236, 0.0013187985, -0.031157525, 0.0023271616, 0.0032666372, 0.01146058, 0.010728395, 0.008816165, 0.019124279, 0.09510827, 0.018286008, 0.040872872, -0.02173013, -0.016778808, 0.0242724, 0.026422799, 0.053247325, 0.0012687377, 0.023852864, 0.0782292, 0.02556679, 0.07202698, -0.048713993, -0.08480085, -0.018994208, -0.03259836, -0.048722584, -0.010788967, 0.0010484579, -0.042834528, 0.009342986, -0.0545216, 0.0023617153, -0.012257468, 0.042828213, 0.0056381333, -0.012653185, -0.043821856, -0.011444276, -0.06426429, 0.0037438995, 0.024334397, 0.03133284, -0.027003301, -0.000785681, 0.011972478, -0.053243935, -0.008297178, 0.008361176, 0.01764825, -0.0097990865, 0.030136313, -0.01654721, -0.033438496, 0.04801015, -0.06725102, 0.017293667, -0.01780192, 0.010390835, 0.00071799976, 0.0058999457, 0.010492835, -0.00710904, -0.06334066, 0.02178985, 0.076189525, 0.048403647, 0.012998569, 0.056954537, -0.021067912, 0.022844525, -0.01619168, -0.049840752, -0.0272901, 0.05911104, 0.045104012, -0.037089087, 0.019249182, 0.004663698, 0.017878741, -0.04767994, -0.002243688, -0.013949311, 0.023303933, 0.018356001, 0.054652266, -0.034143627, -0.028295986, 0.02424904, -0.0011415959, -0.14348, 0.027628027, -0.02434409, -0.05225338, 0.054593485, 0.026765922, 0.0007310323, -0.0072962847, 0.018187137, -0.03620978, 0.009982058, -0.0006047643, 0.018727534, -0.017043943, 0.008635484, -0.00082754926, -0.010793124, -0.009272451, -0.023560846, 0.023199128, -0.05568207, 0.0068111117, 0.017502163, -0.016271282, 0.06945056, 6.3533545e-05, 0.012207418, 0.07161526, -0.010654173, -0.05900158, 0.024623828, -0.022671374, 0.068308875, -0.064136125, -0.0022699996, 0.040148795, -0.0024245048, -0.03893797, 0.025590358, 0.014458636, 0.008753831, 0.018618124, 0.014429952, -0.013579946, -0.029646154, 0.022002809, 0.011402631, 0.0071193343, -0.005394562, 0.026288424, 0.02025849, -0.0075575304, -0.009515644, -0.055642042, 0.04415963, 0.04953311, 0.036954768, 0.027980082, 0.008327022, -0.029504055, 0.011484924, -0.007923228, 0.024395173, -0.01129445, -0.03258421, -0.038773004, 0.001400128, -0.012109568, -0.021783877, 0.03427893, -0.0058307434, -0.027710492, -0.014200412, 0.013571278, -0.04077379, 0.05975886, -0.017611336, 0.010278041, -0.00082834583, 0.059460472, -0.0053276657, 0.003644353, -0.0008214348, 0.03471922, -0.0025228057, 0.021116922, 0.05614817, -0.017042045, -0.007685956, -0.01606113, 0.06948461, -0.029367689, 0.02137993, -0.02365346, 0.023793442, -0.010801694, 0.049875665, 0.013464985, 0.011705937, -0.011825037, 0.026747681, -0.06266015, -0.022312375, -0.0062819687, -0.033500653, 0.027738191, 0.004670259, 0.05827968, 0.0028661021, -0.022710405, -0.02591294, 0.0046319636, 0.059769135, 0.022137625, -0.01936966, 0.05932237, -0.059515268, 0.0049313563, -0.003947722, -0.04724935, -0.0050831637, 0.0046433983, -0.057273358, 0.0256566, -0.017275631, 0.004384156, 0.05183955, 0.05809937, -0.020375926, 0.0022398548, 0.041206345, -0.017366271, -0.022873899, -0.07890477, -0.0139735425, -0.019803325, -0.0008679641, -0.038335707, 0.010773285, 0.04936509, 0.01912425, 0.032334466, -0.05372327, 0.016710097, -0.060355783, -0.008577648, 0.04917691, 0.05485965, -0.020667873, -0.02460905, -0.04947024, 0.016513474, 0.07543274, 0.04932108, 0.0118761705, -0.017482124, -0.0004198182, -0.02678972, -0.0053285128, 0.015086052, 0.019285152, 0.014035599, -0.010582552, 0.021276154, -0.033740744, 0.022622522, 0.0029440091, 0.030114893, 0.0102286525, -0.04516593, 0.015016517, 0.048191942, 0.015910847, 0.013710524, 0.04498899, 0.0840111, 0.045938972, -0.0069656437, -0.031273488, -0.050164025, 0.06277866, -0.01389782, 0.01074201, -0.0031641882, 0.11051105, 0.017480653, -0.006852065, -0.017960401, -0.0039999164, 0.06149197, -0.051998805, -0.018883344, 0.04093018, -0.022224398, -0.018328955, -0.021364607, 0.017923532, -0.014805703, -0.03918295, 0.06355217, -0.08692068, 0.0099757835, 0.036817636, 0.071783856, 0.011274223, 0.0073510194, 0.024537507, -0.045674235, -0.026899979, -0.023009714, -0.04160784, 0.0042073615, 0.08483764, -0.024884684, -0.0556069, 0.041825276, -0.018231317, 0.020247051, -0.007068283, 0.007013407, -0.023259435, -0.007880806, -0.046955653, 0.02656597, -0.005711209, 0.04271835, 0.030962065, 0.02300422, 0.08006878, 0.0141063705, -0.001700957, -0.009517217, -0.038360506, 0.092932425, -0.0003220653, -0.022277815, 0.011567047, -0.01150613, -0.004782347, -0.013247431, -0.048361246, -0.044838443, -0.052709877, 0.007750739, 0.023479471, -0.021283744, -0.017975725, 0.013704143, 0.007853003, -0.019401172, -0.039800886, 0.021183137, -0.018501716, -0.011693759, -0.02453592, 0.013913504, 0.0012758444, -0.03413259, -0.027300365, 0.05154833, -0.0060578967, 0.021769531, 0.04571109, -0.02587281, 0.04678251, -0.01622181, 0.06793876, -0.04681041, -0.017541558, 0.021929588, 0.025428073, -0.037436686, 0.028187016, 0.004979909, -0.02382952, -0.0013053118, 0.005955456, -0.020811794, 0.04178097, -0.027676828, 0.027406158, -0.05451099, 0.04606387, 0.039607964, -0.043839462, 0.003335121, 0.0008090343, 0.039257932, -0.01707569, -0.02725636, -0.031998202, -0.04097224, 0.026137032, -0.01193659, -0.023846447, 0.011198009, -0.019193135, -0.010360245, -0.023929538, 0.011404575, -0.023104656, -0.012870495, 0.034149352, 0.013290082, -0.035973422, 0.04171438, -0.028488886, 0.054938108, -0.042916607, 0.020477599, 0.007987569, 0.06533684, -0.009024017, -0.011512397, -0.03658243, 0.0008667746, 0.055534396, -0.049152814, -0.0043195053, 0.06653919, 0.015548837, -0.06138007, -0.040155478, -0.09392721, 0.029629106, -0.01807953, 0.031027874, 0.05029999, -0.07695563, 0.06957162, -0.015437529, 0.042236593, -0.015661422, 0.0341055, -0.02387375, 0.083476916, 0.021369927, -0.032915812, -0.05097033, 0.008330363, -0.02497355, -0.040193807, 0.008445493, -0.033930965, -0.0150260525, -0.060986664, 0.002694824, 0.03136008, 0.0038803744, 0.024250362, 0.019903569, 0.017416842, -0.024264969, -0.012599266, 0.034150135, 0.034646064, 0.0046948274, 0.060528707, 0.0071454844, -0.002369323, -0.01270308, -0.04298191, -0.058802288, 0.028139656, 0.04016352, -0.022993902, -0.0053273016, -0.01193482, 0.05864871, -0.008138631, 0.036458984, -0.031225445, 0.0022278791, 0.050708417, 0.015033917, -0.07838682, 0.02820033, 0.040448572, 0.024044326, 0.102074154, -0.0323417, 0.0019951584, -0.017170282, 0.011100486, -0.04792447, 0.004109253, -0.05003083, -0.030932494, 0.05144392, -0.027246378, 0.014336842, 0.0063291364, -0.07739901, 0.068613835, -0.01952862, 0.014058733, 0.052393295, -0.004384797, 0.00462522, 0.028047875, 0.025258387, 0.027888112, 0.027100123, -0.0004069354, -0.0037739761, -0.018109469, -0.016224636, 0.06444003, -0.0053340807, -0.012069489, -0.055471543, 0.0027129587, -0.039362635, 0.047881555, 0.022663303, 0.030803353, -0.025681594, 0.031067066, -0.0063792337, 0.020299783, -0.025035374, -0.0013465673, -0.060925405, -0.0360978, 0.034055497, 0.0124443555, -0.048637565, 0.009656316, 0.01946834, 0.009941275, -0.06045047, -0.02647606, -0.00820349, -0.029134441, -0.06649256, -0.000686798, 0.04724807, 0.0073176874, 0.001550444, -0.010408299, 0.050398253, -0.04190645, 0.023155265, -0.023720779, -0.011877797, 0.036698718, 0.034951426, 0.044567615, -0.08918422, -0.015476235, 0.047629867, -0.04558095 ] }, { "values": [ -0.02424748, -0.05011391, -0.045588806, -0.06626258, 0.027584197, 0.0022498118, -0.0016343391, -0.020935355, -0.008363671, 0.032648053, 0.009054546, 0.06079933, 0.046102315, 0.0011012839, -0.07974534, -0.04178864, -0.007512087, -0.03297439, -0.05420808, -0.0216474, 0.0071277977, 0.0049448498, 0.042697597, -0.02998485, 0.003914532, 0.06471251, 0.033583343, -0.053886805, 0.0397323, -0.012352553, 0.03229169, 0.017124927, -0.012872135, -0.036267318, 0.09477317, -0.0118566835, -0.0023829439, 0.013048151, 0.022510014, -0.056798108, -0.03391907, 0.0068983636, -0.0038997405, 0.0016301532, -0.04507717, 0.008176709, 0.022205137, -0.03275126, 0.011702696, 0.043979235, 0.026465269, 0.023582164, 0.012534358, 0.023487212, -0.048508216, 0.00961713, -0.035789426, -0.042445287, 0.08506231, 0.0018888077, 0.0038857087, -0.004409131, -0.048529904, -0.015163351, 0.039793476, 0.0014271445, -0.054460343, -0.051781807, -0.020507237, -0.0027316215, -0.038913094, 0.0018319006, 0.005165701, -0.014275145, -0.043206673, -0.01888695, -0.0039709555, 0.0078308, -0.028775627, 0.029392518, 0.015504373, 0.009937716, 0.06805704, 0.030626066, 0.0032344153, -0.00532323, 0.009235236, -0.011913827, -0.028501628, -0.02387404, 0.11034632, -0.017405553, -0.038840417, -0.018753517, 0.0029078072, -0.08326725, -0.03191424, -0.052352987, -0.009172159, 0.08288305, -0.032660626, 0.004749374, -0.061669823, -0.047688846, 0.053812403, 0.04023512, 0.04091879, -0.05928115, -0.0057998854, 0.011953343, -0.03650448, -0.019159894, -0.048018135, 0.01901971, 0.008977451, -0.022588428, 0.014479377, 0.00010272964, -0.033897497, -0.006193632, -0.04834074, -0.02630903, -0.03502361, 0.047928818, -0.04464601, -0.012054912, 0.024182783, -0.06653186, -0.05737558, -0.08300445, 0.08142106, -0.12786801, -0.034139566, 0.019530756, -0.033135425, -0.011598408, 0.0042585675, 0.0018499048, -0.045857146, 0.01622793, 0.0029461884, -0.024616908, -0.01949773, 0.025052305, -0.016326904, 0.0060792817, 0.040222675, -0.017815484, -0.042899624, 0.013258156, -0.12107148, -0.008190316, -0.0068895025, -0.016723508, -0.04960089, 0.05057214, 0.08853741, 0.00503515, 0.028130984, -0.06895983, -0.002151459, -0.032966655, 0.035332255, 0.045070495, -0.032968692, -0.044736475, 0.06849753, -0.058207847, -0.047636546, -0.06818186, 0.0119069, -0.003216256, -0.028370336, -0.080376394, 0.0029283946, 0.058117967, -0.0129702715, 0.02352758, -0.032137066, 0.025830347, 0.04480156, 0.015347508, -0.050582226, -0.00630892, -0.0408616, -0.012882059, -0.023925357, 0.051708333, -0.01284606, 0.05658286, -0.031320345, 0.020611016, 0.019573454, 0.01517038, 0.040888384, 0.059433922, 0.06394573, -0.016762856, 0.029820515, 0.0052634045, 0.022520421, 0.017819958, -0.0026534393, 0.0010895355, -0.045681566, -0.023701398, -0.05434782, -0.015766734, 0.07762834, -0.008142973, -0.012368062, -0.016498642, -0.039997794, -0.031021005, -0.0161769, 0.0062702047, 0.095128104, 0.045143764, 0.026641952, -0.03436465, -0.050181698, -0.00959612, -0.0033932417, -0.02099291, 0.069513984, 0.027193522, -0.03163433, -0.009946548, -0.03055945, 0.007415161, -0.017074423, 0.016957989, 0.020705968, -0.010393513, 0.04155044, 0.06842228, 0.022012452, 0.025048666, -0.026399488, -0.0149549795, -0.028541634, 0.047364645, 0.049500756, 0.021900639, 0.018943794, 0.05011295, 0.04592074, 0.06679274, -0.07765741, -0.026898183, -0.005384196, -0.029327637, -0.03578463, 0.011482218, -0.01859676, -0.056884892, 0.013909595, -0.08309517, -0.0052995216, 0.0023500512, 0.030748244, 0.017064508, 0.0010177487, -0.061370388, -0.03889076, -0.07725151, -0.013194475, -0.0038901968, 0.06420582, -0.0036887506, 0.012197701, 0.049777485, -0.058632936, 0.0046083024, 0.005396739, 0.041790858, -0.0057045617, 0.042265855, -0.022478528, -0.042464934, 0.03324938, -0.02580744, -0.010485068, -0.025362018, -0.005955788, -0.011292049, 0.02360596, 0.017108068, -0.0045861285, -0.032387827, 0.054640252, 0.05643813, 0.04536501, 0.04953132, 0.06358519, -0.038079396, 0.0032402086, -0.015156601, -0.008067756, -0.045029197, 0.0051312936, 0.054846026, -0.0023689554, 0.0331204, -0.0016391122, 0.00164893, -0.04072119, -0.028493112, 0.0021462338, 0.032477222, 0.015716199, 0.032521497, -0.023683017, -0.050349258, 0.0110486, 0.017986596, -0.11056366, 0.035213895, -0.026201092, -0.028966306, 0.009730668, 0.039421357, 0.017764369, 0.0014628103, 0.026470264, -0.026831409, 0.015257217, -0.037571028, 0.010722552, -0.01577895, -0.00492016, 0.0068282033, -0.0066896677, -0.014853397, -0.0054267086, 0.016351016, -0.032218393, 0.0013059786, 0.02899998, 0.005271923, 0.05545949, 0.0029410233, -0.002526679, 0.04685263, -0.0037125705, -0.03857031, 0.03255628, -0.018593153, 0.040605, -0.021951623, -0.013915403, 0.04090402, -0.009418871, -0.031755738, 0.036649927, 0.039545435, 0.03993465, 0.049118724, 0.0112809455, -0.010320758, -0.031381153, -0.0003787097, -0.0022271199, -0.024044652, -0.024009649, 0.012706132, 0.02730639, 0.0055244784, -0.023698574, -0.050223574, 0.049022093, 0.042188384, 0.04137181, 0.038898423, 0.030094737, -0.038301792, -0.010402262, 0.010832937, -0.0130467815, 0.00971623, -0.040231265, -0.037929803, -0.008624563, -0.025445573, -0.00454919, 0.013864669, -0.024021406, -0.031730413, -0.0050019016, 0.01163124, -0.010406615, 0.05606065, -0.035213873, 0.014814782, 0.03948768, 0.021842722, -0.0149149, -0.00027039813, -0.021598132, -0.00028546096, -0.02677429, 0.00975298, 0.07643845, -0.0077426857, -0.0013342988, -0.03275995, 0.07860465, -0.0039804964, 0.011078923, -0.028093982, 0.02897223, -0.0064425655, 0.022572568, 0.029718928, 0.035274938, 0.031119272, 0.040337592, -0.048124395, -0.023104742, 0.027566167, -0.0019479627, 0.024544958, -0.01031809, 0.04160343, -0.008873124, -0.035112586, -0.028693156, 0.0060597053, 0.026244665, -0.0003437865, -0.023008222, 0.031599786, -0.040575877, 0.004301931, -0.042083126, -0.03570492, -0.007181426, 0.00036183067, -0.032164354, 0.0077226427, 0.014537377, 0.0026519431, 0.04082671, 0.043425728, -0.0135969855, 0.007053447, 0.06262536, -0.0049993233, -0.034193195, -0.06865787, 0.013790735, 0.014038968, 0.0050281473, -0.06321327, 0.016491633, 0.012939122, 0.02771651, 0.03533766, -0.0132539645, 0.02141289, -0.033508833, -0.001314625, 0.04013284, 0.05425543, -0.00067502446, 0.0065033487, -0.042274263, 0.023871284, 0.06961803, 0.023828998, 0.02719537, -0.030095046, -0.004791238, -0.0049522305, 0.014080895, 0.009885261, 0.028812017, -0.024714924, -0.001817699, 0.02443296, -0.011305829, 0.012664487, -0.0011162661, 0.030332066, -0.012682974, -0.07670118, 0.010531905, -0.020918902, 0.010858011, 0.0049041198, 0.013653094, 0.08949532, 0.049865842, 0.00063947414, -0.035805132, -0.042564217, 0.07565214, -0.011902134, -0.009341286, -0.01811382, 0.13752566, 0.019700922, -0.016572211, -0.0010669244, -0.014614308, 0.0397751, -0.05274645, 0.0013398473, 0.04887893, 0.0084105665, -0.016531281, -0.02808274, 0.025753625, -0.06232418, -0.0397781, 0.08422595, -0.065008186, 0.020796089, 0.00041561722, 0.061896607, -0.014979194, 0.017913569, 0.060624763, -0.040423, -0.054154404, 0.0037835196, -0.048285402, 0.04406052, 0.06457342, -0.03179546, -0.028625784, 0.050587628, 0.037100583, 0.013571296, 0.0096989265, 0.011396024, 0.0014773095, 0.0016567785, -0.044050522, 0.0022877485, -0.009056709, -0.013267197, 0.01888776, 0.034462117, 0.061936203, 0.0025234125, 0.024794983, 0.01715206, -0.039460912, 0.072806686, -0.012768029, -0.012238255, 0.032006506, -0.00893895, -0.037489593, -0.048797045, -0.041827578, -0.050688554, -0.033741187, -0.011415447, 0.02308422, -0.03832877, -0.022198955, 0.039946567, -0.01244947, -0.0012350363, -0.007333738, 0.060986802, -0.0060823383, -0.019977892, -0.035329204, 0.015768155, -0.013930048, -0.06492393, -0.008295227, 0.031325918, -0.010779626, 0.027626442, 0.04359014, 0.021725185, 0.025299562, -0.034615807, 0.0647331, -0.021302573, -0.052796174, 0.05092451, 0.035939224, -0.05865437, -0.019162087, 0.0017428886, -0.03486917, -0.04724954, -0.037229914, -0.030399999, 0.053301547, -0.04019867, -0.0024068602, -0.048412118, 0.012661813, 0.051356763, -0.03725639, -0.0065609016, -0.0326786, 0.01152808, -0.009326313, -0.011092512, -0.048074465, -0.02772559, 0.019427735, 0.017195374, -0.013608619, 0.016622785, -0.02786336, -0.03835666, -0.039097518, 0.04344048, -0.014490186, -0.035189282, 0.00075839605, 0.00015224089, -0.023377739, 0.08273438, -0.019568827, 0.031699438, -0.04046259, 0.03140564, -0.010619047, 0.079539694, -0.015275026, -0.021047566, -0.04911011, 0.004949821, 0.049519505, -0.039920326, -0.014692937, 0.052762788, 0.026753236, -0.06318984, -0.026681492, -0.060832854, 0.040462706, -0.021719566, 0.013024549, 0.034837563, -0.0473256, 0.06329743, -0.028040882, 0.0246415, -0.026423104, 0.016439322, -0.008329322, 0.07550467, -0.0013142365, -0.04078578, -0.027055597, 0.00248517, -0.032244172, -0.03111637, 0.010745136, -0.022878796, -0.026945079, -0.09998982, 0.03467426, 0.035848115, 0.011865775, 0.03991947, -0.018923491, 0.018012483, 0.0027082942, -0.003712567, 0.023543047, 0.038347322, 0.02214381, 0.05147785, -0.009200525, 0.004740664, -0.0025109353, -0.02569667, -0.06650009, 0.02749494, 0.011209096, -0.023786055, -0.008466235, -0.012465866, 0.03458887, -0.0009069661, 0.019370914, -0.03254153, -0.00372093, 0.022382157, 0.01959113, -0.057653874, -0.035033308, 0.012880291, -0.01059612, 0.05840128, -0.039847605, 0.026017077, -0.037660986, -0.0007184881, -0.053871162, 0.0040957863, -0.05814664, 0.012415537, 0.040522087, -0.011312058, 0.023569204, 0.0046723816, -0.106716536, 0.038838033, -0.042928755, 0.012876216, 0.06359533, 0.0032520986, 0.0083768, 0.02517976, 0.037041906, 0.027898662, 0.035670925, -0.0032941776, -0.002668789, -0.017382748, -0.006090297, 0.056363367, -0.0021098608, 0.011739092, -0.07305247, 0.0076647084, -0.03248444, 0.08744591, 0.04639108, 0.015089475, -0.011340388, 0.017343018, -0.002574354, -0.0099543035, -0.072168656, -0.0062304847, -0.05360445, -0.07797626, 0.017052675, -0.008400947, -0.020984747, 0.032159373, 0.004983818, -0.00061955745, -0.06716288, -0.009237572, -0.0017659119, -0.027261853, -0.031255726, -0.020162817, 0.009443104, -0.01794865, 0.0013687797, -0.013085853, 0.023402913, -0.00888225, 0.026186833, -0.023604125, 0.004605225, 0.024111355, 0.008559558, 0.025823284, -0.083304316, 0.015908659, 0.05351973, -0.06905192 ] }, { "values": [ -0.028238902, -0.0532557, -0.02546215, -0.045613088, 0.013817311, 0.018279262, -0.0007445806, -0.027646834, -0.015018485, 0.02456397, 0.02645029, 0.037342988, 0.06603106, -0.035548795, -0.054839414, -0.06234252, -0.0059637525, 0.010032506, -0.07436002, -0.0308195, 0.017176127, -0.011284708, 0.012977828, -0.038228914, -0.009813541, 0.06917802, 0.037919644, -0.06001437, 0.037633225, -0.036353823, 0.036322895, 0.0178386, -0.004183083, -0.055559564, 0.07007331, 0.010704369, -0.051047355, 0.006823652, 0.02203674, -0.050216552, -0.02708744, -0.0046297046, -0.022796849, 0.01805506, -0.05378365, -0.014234053, 0.023940463, 0.014547959, 0.0005656652, 0.04587124, 0.034991667, 0.006251505, 0.029419227, 0.0154089825, -0.0473482, -0.035031483, -0.07635369, -0.022555904, 0.07798434, -0.010308001, -0.0068562096, -0.01022539, -0.07136005, -0.025197893, 0.046668928, 0.01778243, -0.051323764, -0.05476124, -0.012585709, 0.026647955, -0.05005583, -0.019910904, -0.0015579277, 0.0014901024, -0.027732156, -0.01676715, -0.0071387556, -0.013629742, -0.024936376, 0.04497369, 0.030108547, 0.010472666, 0.04805848, 0.02971388, 0.019596554, -0.021103676, 0.011035913, -0.0517763, -0.02666273, -0.0024431348, 0.11109152, -0.0067828647, -0.06632103, -0.024890425, 0.0075561306, -0.03783385, -0.032264113, -0.07154793, 0.011911435, 0.080492355, -0.023813115, -0.007859775, -0.031318467, -0.053063318, 0.04012453, 0.013311759, 0.0034422171, -0.055190105, -0.0143102445, 0.0043212804, -0.047942437, -0.010558644, -0.026857464, 0.04174046, -0.0005350533, -0.030554863, 0.009612347, -0.022214372, -0.023399916, -0.027237248, -0.039674472, -0.04062288, -0.0472455, 0.06573281, -0.010995376, -0.016811375, -0.015704993, -0.027083749, -0.04333539, -0.059670776, 0.10744476, -0.110342726, -0.018331522, -0.0013350227, -0.047484756, -0.00029595345, 0.048648667, 0.033045344, -0.027691355, 0.031225298, -0.01774076, 0.015115353, -0.02504901, 0.059999354, -0.03434416, -0.005637369, 0.017910894, -0.014481974, -0.03379877, 0.020065896, -0.08747145, 0.00012654088, -0.0033879264, -0.0097704185, -0.055658597, 0.06266472, 0.074865505, -0.00030550596, 0.015973123, -0.082203776, 0.01541832, -0.008170469, 0.013823012, 0.0635922, -0.051274236, -0.05279744, 0.050852124, -0.052163187, -0.030370556, -0.08002458, 0.01390209, -0.0061533973, -0.043253798, -0.055454776, 0.011458171, 0.059696417, 0.009561279, 0.018736929, -0.04712009, 0.05533996, 0.01934853, 0.041793123, -0.02765032, -0.0023917856, -0.037062597, -0.019842103, -0.0318938, 0.024335256, -0.0029919632, 0.04735699, -0.010639083, 0.008063263, 0.019618815, 0.055356964, 0.0411281, 0.054117788, 0.053868756, -0.019672487, 0.039652947, -0.023047477, 0.017089114, 0.008978256, -0.0085042305, 0.0023890792, -0.04103637, 0.013902959, -0.042147223, -0.002360572, 0.06778965, -0.01616318, -0.010185009, -0.0050680786, 0.0025401758, -0.027595634, -0.026161639, 0.034788184, 0.093909785, 0.040252082, 0.044323053, -0.022082334, -0.06282209, -0.029174108, -0.005520975, -0.023237277, 0.04957937, 0.0101390155, -0.027778951, -0.043644648, -0.031732608, 0.010159822, -0.014492924, 0.017704248, 0.013043844, 0.024122687, 0.037946127, 0.07480764, 0.029307455, 0.027421348, -0.024635041, -0.027698409, -0.018334743, 0.051162988, 0.05172518, 0.014630976, 0.023012202, 0.06644781, 0.053187814, 0.028666418, -0.047818843, -0.037174135, -0.003984716, -0.05195839, -0.0658547, 0.027683726, -0.03252832, -0.040784873, 0.004994588, -0.07780593, -0.0009744151, 0.0075471816, 0.0541747, 0.03335396, -0.00873501, -0.048848312, -0.024552388, -0.07689179, -0.011585998, 0.00024664312, 0.08273081, -0.0014457, 0.02198296, 0.03178369, -0.045986496, 0.00021950506, 0.030259013, 0.020423647, -0.013697453, 0.037540913, -0.017364796, -0.037952445, 0.029928178, -0.04643328, -0.02630478, -0.027560405, 0.0069287433, -0.0035156768, 0.02155803, 0.04067162, -0.04651179, -0.027322428, 0.055268727, 0.050121162, 0.036523502, 0.008054289, 0.030352222, -0.008524278, 0.010881838, -0.029883707, -0.009925536, -0.032668393, 0.025582543, 0.04807051, -0.008380331, -0.0025299399, -0.03332628, 0.009920389, -0.051041465, -0.031017106, 0.01442408, 0.04896881, 0.009463576, 0.03675779, -0.02384046, -0.04957367, 0.0059648613, 0.0020525525, -0.13243356, 0.014225387, -0.0162951, -0.03416932, 0.03287281, 0.008681477, 0.0070564225, -0.011652822, 0.025017459, -0.026960272, 0.0076162973, -0.040088695, -0.004627497, -0.012179055, -0.002914262, 0.0094061, 0.0032722827, 0.0002543167, -0.023013404, 0.022595704, -0.031855725, 0.029120013, 0.029306956, -0.019669974, 0.046488836, -0.018156549, 0.012378768, 0.074482635, -0.0063446006, -0.06388343, 0.05117369, -0.016386852, 0.034779575, -0.01877749, -0.046342198, 0.02898128, 0.0050078123, -0.036265787, 0.041065592, 0.045327038, 0.015906697, 0.03798443, 0.024052653, -0.017000988, -0.009282565, 0.028202763, 0.009834027, -0.014887739, 0.0060627377, 0.01769591, 0.029179575, 0.00096365646, -0.0077129137, -0.08542789, 0.044106454, 0.037884563, 0.023800071, 0.033934638, 0.009424877, -0.047198243, 0.00068188447, 0.019032823, 0.011348476, -0.023857974, -0.033353906, -0.044058118, 0.013047989, -0.03420529, -0.018322177, 0.0021322165, -0.033864275, -0.026713833, -0.0028004728, 0.020071363, -0.037776478, 0.091280736, -0.034128603, -0.0198999, 0.02563381, 0.030045673, -0.03818327, -0.007594081, 0.002601689, 0.030188102, -0.024429807, -0.012329505, 0.07206133, -0.012582721, -0.024370626, -0.034261473, 0.071920075, -0.009498837, 0.022376776, -0.04279087, 0.030718304, 0.016576106, 0.0069724726, 0.027254408, 0.005443312, -0.005406168, 0.034237113, -0.048749894, -0.010531229, 0.008756539, -0.010094825, 0.031485442, 0.014067909, 0.02225326, -0.023780268, -0.034673598, -0.045223676, -0.0025242232, 0.023130588, -0.026885666, -0.02165219, 0.048579052, -0.071854346, 0.0054346477, -0.032111377, -0.019377049, -0.020690782, 0.0045820144, -0.05748315, 0.024281213, 0.002929731, 0.012032515, 0.027891334, 0.02265921, 0.0005367366, 0.0024451213, 0.065708265, 0.00030744766, -0.05407095, -0.071162134, 0.007456051, -0.015449787, -0.013886543, -0.04697568, -0.011875822, 0.01739204, 0.039488148, 0.05151469, -0.03265032, 0.039316177, -0.059880286, 0.019986095, 0.044508353, 0.040369682, 0.0026561436, -0.0033065474, -0.064670056, 0.010366227, 0.03208391, 0.034179773, 0.013616513, -0.010895046, 0.033309378, -0.028566854, 0.011832336, 0.008599051, 0.014941197, -0.01261536, -0.01743166, 0.025194962, -0.045799028, 0.012652257, 0.025130402, 0.04470099, 0.0068960343, -0.07621635, 0.011193155, 0.0021684498, 0.030681018, -0.019307299, 0.04043784, 0.08712855, 0.018810976, 0.0057883835, -0.0327142, -0.034045853, 0.057238698, -0.009027563, 0.00047783152, -0.0132088475, 0.10529348, -0.007898127, -0.008642358, -0.036021724, 0.01698342, 0.028714128, -0.042751346, 0.012084441, 0.033574536, -0.0029173356, -0.020071063, -0.02649786, 0.016689597, -0.043340594, -0.04951425, 0.07541039, -0.07901868, 0.0010246553, 0.021235663, 0.048895247, -0.012123963, 0.01789349, 0.044872135, -0.047047265, -0.039930787, -0.011591935, -0.058195613, 0.02395071, 0.059914336, -0.016307753, -0.040562686, 0.04062787, 0.028656358, 0.024505759, 0.0036525347, 0.014372544, -0.020338038, 0.0036531098, -0.040158093, 0.029288143, -0.016684353, 0.027413577, 0.034406587, 0.020806447, 0.06578607, -0.0021220208, 0.010571153, 0.012522303, -0.056987908, 0.043005366, -0.014168045, 0.0016885124, 0.008275707, 0.024894027, -0.036261763, -0.050635863, -0.052324835, -0.057813693, -0.05098173, 0.021280145, 0.015876036, -0.016985003, -0.0025444624, 0.031670913, -0.0026948522, -0.004356906, -0.017149473, 0.054207575, 0.0058206925, -0.040397037, -0.015811434, 0.027302299, -0.010285148, -0.05397245, -0.012383603, 0.025781238, -0.010068562, 0.017640918, 0.015288646, -0.016575435, 0.02990031, -0.034344874, 0.060623597, -0.00884199, -0.042138547, 0.035918977, 0.019957712, -0.060360096, -0.010532227, -0.014900763, -0.018800525, 0.0015543938, -0.0054388116, -0.027480925, 0.057814643, -0.02409583, -0.0047156904, -0.037096076, 0.016712036, 0.028842147, -0.03386858, 0.019944051, -0.02599765, 0.021247579, -0.023653898, -0.023871528, -0.029068196, -0.0012822916, 0.031536855, -0.005548238, 0.0036163647, 0.0038521925, -0.014138401, -0.015862012, -0.02491007, 0.031195678, -0.027813582, -0.037911613, 0.0023591819, -0.012395054, -0.029886326, 0.077464044, -0.023354283, 0.03969659, -0.049578443, 0.0011550988, -0.023871485, 0.06118725, -0.01257108, -0.04017645, -0.017781993, -0.009814516, 0.054899503, -0.04780196, -0.0023953049, 0.055317253, 0.031676177, -0.052628692, -0.005010367, -0.06483425, 0.044610523, -0.016330736, 0.035170738, 0.017856732, -0.04895506, 0.04514806, -0.0032200085, 0.031430054, 0.009706252, 0.013685049, -0.025069574, 0.08883511, 0.00056779775, -0.042555872, -0.04966055, 0.0055622547, -0.001693966, -0.027661026, 0.021052752, -0.03332446, -0.019375661, -0.058666807, 0.017678693, 0.0036173556, 0.009295198, 0.036627047, 0.0029863797, 0.017824879, -0.013696981, 0.012205773, 0.009818139, 0.022734072, 0.02868453, 0.071071625, -0.02576724, 0.0051857247, 0.03024395, -0.009534621, -0.064993635, 0.017585889, 0.010650694, -0.011777457, 0.0054207253, -0.019954436, 0.012851919, 0.0074983155, 0.03921077, -0.0380645, 0.006226924, 0.014724803, -0.0009865464, -0.077365644, -0.0093602175, 0.01713516, 0.009280613, 0.07565993, -0.034424644, 0.0065298616, -0.05434224, 0.002453859, -0.06702139, -0.0020997983, -0.07373951, -0.002712193, 0.039455112, 0.0016891137, 0.020508252, 0.0142747015, -0.11522704, 0.049178455, -0.050865266, 0.010636124, 0.07404595, -0.03172743, 0.030920932, 0.01813555, 0.04583742, 0.04898674, 0.046464723, 0.018359968, 0.008199496, -0.031884607, 0.0034275684, 0.061373755, -0.011140245, -0.00820221, -0.04348951, -0.031361636, -0.024353279, 0.07149345, 0.03214015, -0.001026271, -0.02628054, 0.049406406, -0.0020163057, 0.004734866, -0.06351107, 0.019340763, -0.04053264, -0.07811622, 0.030942468, -0.005069171, -0.015624534, 0.031636704, 0.004257975, -0.0033570954, -0.045981515, -0.008664886, -0.013430016, -0.02380194, -0.07851875, 0.008569883, 0.035639867, -0.006489465, -0.021185538, -0.016363762, 0.02667114, -0.041598335, 0.017671093, -0.0030544954, -0.013308937, 0.02296546, 0.017428441, 0.027312636, -0.09566995, -0.0018883604, 0.088078626, -0.049374502 ] }, { "values": [ -0.02095987, -0.03804499, -0.028568944, -0.030773032, 0.02259099, 0.02071324, 0.0041589574, -0.021254322, -0.018077457, 0.015808642, 0.012988335, 0.037704766, 0.06856354, -0.036035348, -0.06687939, -0.060368787, -0.0073135337, 0.015279622, -0.046106182, -0.040951245, 0.014843549, 0.0070947157, 0.029587217, -0.068115965, -0.016764931, 0.0597182, 0.033262476, -0.039895806, 0.044900667, -0.053186417, 0.044176955, 0.038292494, 0.0010820449, -0.044450168, 0.08179722, 0.0041312655, -0.04119561, 0.0085650645, 0.047789987, -0.033696033, -0.03802326, -0.007294537, -0.016738009, 0.012999763, -0.053262178, -0.0077207307, 0.030404458, 0.0002445422, -0.02953848, 0.06483987, 0.0456632, 0.015156185, 0.026917245, 0.02179028, -0.04627114, -0.026816498, -0.06023677, -0.048063133, 0.043166373, -0.008632536, -0.010771469, -0.012489741, -0.0682654, -0.037071988, 0.03667749, 0.0021167658, -0.06203817, -0.05600521, -0.02161696, 0.01332049, -0.045832954, -0.0069244993, -0.011977194, -0.014443807, -0.036290664, 0.0050941017, -0.012997632, 0.002198053, -0.029341094, 0.04259202, 0.009365005, -0.016921246, 0.06289994, 0.057151288, 0.022137074, -0.018099329, 0.0013675985, -0.04577962, -0.018538559, 0.004752127, 0.12256464, -0.010360869, -0.065278135, -0.0072222427, -0.003418717, -0.03057324, -0.023956666, -0.0712568, 0.03764795, 0.08584259, -0.017812202, 0.009158088, -0.017610805, -0.034862276, 0.036317565, 0.0069900607, 0.007857845, -0.06861078, -0.02693269, 0.0020711308, -0.04109438, 0.0011593942, -0.0013088945, 0.022081688, 0.012713403, -0.03769441, 0.022572292, -0.01806351, -0.024615765, -0.020044807, -0.0077951374, -0.034643788, -0.042204536, 0.07133194, -0.019855894, -0.005227601, 0.0016532787, -0.051935017, -0.029073916, -0.07613147, 0.104452774, -0.1036569, -0.026155822, 0.010867649, -0.052768454, -0.0041336836, 0.021789957, 0.036932174, -0.022058124, 0.0076756952, -0.012803079, 0.017333813, -0.0066466373, 0.04503543, -0.029211605, -0.008891231, 0.014875148, -0.021122336, -0.059651896, 0.016576331, -0.0906983, 0.012094326, 0.0055719116, -0.01492974, -0.04099776, 0.03050271, 0.08009695, 0.013554387, 0.02938538, -0.06036487, 0.01025506, -0.0038220063, 0.03431058, 0.057527553, -0.053850822, -0.062364534, 0.0672434, -0.0622347, -0.01594734, -0.067256905, 0.018627044, -0.0059262314, -0.032668553, -0.070454754, 0.027255258, 0.06887609, -0.0134951705, 0.03315092, -0.050273817, 0.031675167, 0.02114529, 0.041032698, -0.039273825, -0.030268714, -0.049180426, 0.0015519789, -0.030096704, 0.05023625, -0.02027706, 0.036617484, -0.014908631, 0.004185835, 0.03440277, 0.050060216, 0.023838291, 0.047867753, 0.057790585, -0.0097633265, 0.04250269, -0.0144491205, 0.03531834, 0.0021048624, -0.003936761, -0.0017807725, -0.03487433, 0.011528187, -0.035222188, -0.010627717, 0.05622129, -0.028950257, -0.01607933, 0.0007869809, -0.008698232, -0.02021852, -0.0033563073, 0.04259049, 0.070426464, 0.043007217, 0.03155552, -0.03417099, -0.061953347, -0.022739505, 0.0036870067, -0.047552712, 0.046436504, -0.016764784, -0.034137793, -0.054562084, -0.019881593, 0.023136992, -0.020406712, 0.0010974729, 0.01895661, 0.020228582, 0.038465377, 0.06188856, 0.004472834, 0.013133427, -0.02656178, -0.034848087, -0.01594276, 0.043269213, 0.04855361, 0.018956665, 0.014527296, 0.054435275, 0.052961957, 0.05273368, -0.056364093, -0.046769433, -0.009140801, -0.052813675, -0.069062665, 0.024005566, -0.05165717, -0.031153046, -0.0038582478, -0.058558017, -0.014879609, -0.01864589, 0.03382538, 0.01703323, -0.02872719, -0.04532803, -0.033113647, -0.10640782, -0.008716083, -0.0069922777, 0.09626635, 0.00094505, -0.003105642, 0.026566096, -0.015975766, -0.0012691679, 0.041215573, 0.023943037, -0.011996149, 0.036997676, -0.01686231, -0.032489724, 0.023439094, -0.032533135, -0.027357882, -0.025190124, 0.010295715, -0.0024321813, 0.033291504, 0.015453985, -0.043057047, -0.039945107, 0.045017216, 0.049241915, 0.053780857, 0.021954954, 0.024662727, -0.010921005, 0.0112145785, -0.0043682167, -0.018925397, -0.026451439, 0.03610726, 0.060222153, -0.016584082, 0.014008678, -0.03378684, 0.015078981, -0.046443533, -0.040322658, 0.003808634, 0.04985503, 0.027614959, 0.056236245, -0.012004982, -0.046848066, -0.00023614586, -0.0057101487, -0.10948719, 0.018588368, -0.009164202, -0.032027103, 0.032433826, 0.0039975503, -0.009327944, -0.0007994294, 0.025139298, -0.030613702, 0.005522074, -0.031464744, -0.005732521, -0.0057955235, 0.015875919, 0.027756235, -0.0033291448, -0.010575586, -0.016218344, 0.02785705, -0.021149103, 0.034241706, 0.025554955, 0.009134409, 0.046786055, -0.002630179, 0.012906863, 0.0750824, -0.0067663994, -0.062054448, 0.03490928, -0.0144610815, 0.0688922, -0.011576052, -0.054627504, 0.04114551, -0.0072766193, -0.03980085, 0.032939475, 0.041338634, 0.028189296, 0.052123703, 0.03499854, -0.020105042, -0.008587356, 0.03671044, 0.018682178, -0.009032568, -0.022247022, 0.010739181, 0.02308315, 0.008029066, 0.004653463, -0.09297442, 0.024561146, 0.03127659, 0.0028872495, 0.026296431, -0.0007129051, -0.04814707, 0.009427527, 0.016695067, 0.011705871, -0.0341987, -0.037398826, -0.040906902, 0.0043726475, -0.039072603, -0.012453791, 0.01528923, -0.02628476, -0.033658266, -0.0026303588, 0.004415254, -0.04664707, 0.08948907, -0.016927324, -0.013141086, 0.0108275395, 0.019208971, -0.028942622, -0.0019079724, 0.025852336, 0.027669372, -0.021470122, 0.0013903052, 0.056463357, -0.015677877, -0.029999597, -0.04382089, 0.06355026, -0.0009426921, 0.019557267, -0.035382472, 0.0113371145, -0.011687802, 0.010546723, 0.013924292, 0.0034934487, -0.024344893, 0.009465858, -0.067285486, -0.025882568, 0.013172669, -0.016061358, -0.0023961733, 0.020521795, 0.035588115, -0.026465807, -0.042478103, -0.024982441, -0.009340126, 0.031491406, -0.03333062, -0.029676815, 0.056942225, -0.08536435, -0.01057214, -0.0038737059, -0.013187377, -0.038340252, -0.016184796, -0.0558114, 0.024999967, 0.012591859, -0.01200751, 0.04505016, 0.03603001, -0.010357816, 0.008570544, 0.0620474, 0.0073626116, -0.035278223, -0.077090986, 0.010492598, 0.0073670414, -0.013130939, -0.047735654, 0.0011987347, 0.012634618, 0.046530448, 0.037352163, -0.026560746, 0.021009859, -0.04105664, 0.012867591, 0.04599241, 0.042658612, 0.0019918277, -0.011490605, -0.045010637, 0.017689416, 0.026620947, 0.029504996, 0.0023241746, -0.021528214, 0.029331157, -0.017389936, 0.02569175, 0.008036928, 0.031120261, -0.00975685, -0.027864227, 0.029001053, -0.03542907, 0.016429486, 0.019116765, 0.027355403, -0.0074811075, -0.06647586, 0.0014437349, -0.015198892, 0.019880371, -0.017825542, 0.03374747, 0.07243954, 0.025363168, -0.008416694, -0.046276014, -0.05723961, 0.05761247, -0.011680803, -0.008488952, -0.020199483, 0.111764364, -0.000139939, -0.0055021895, -0.028437464, -0.0074156667, 0.023108669, -0.02510112, 0.0045504267, 0.068130255, 0.0016480302, -0.01603568, -0.037251305, 0.0041424027, -0.04992513, -0.04491592, 0.0965102, -0.057819974, 0.012332118, 0.024805456, 0.053785373, -0.019853365, -0.002851124, 0.032245807, -0.06220918, -0.070108235, -0.023635916, -0.055651013, 0.027114619, 0.079703726, -0.008917983, -0.016897155, 0.03102494, 0.024043713, 0.012864391, -0.00013465842, 0.034752835, -0.011868778, 0.0006475506, -0.041677624, 0.027754506, -0.01132269, 0.010214254, 0.039994616, 0.032483812, 0.055122025, 0.011837049, 0.01504714, 0.0144570805, -0.042460445, 0.050627694, -0.036871105, -0.010052614, 0.018379739, 0.001220048, -0.048913594, -0.05274778, -0.03040716, -0.028381398, -0.039898533, 0.0144073395, 0.018315816, -0.028012896, -0.0023588196, 0.039269704, -0.039308805, -0.008927063, -0.013263483, 0.065761484, -0.0050157495, -0.022074204, -0.012954483, 0.03325279, -0.007590409, -0.06458481, -0.020592056, 0.0441318, -0.008556512, 0.010865885, 0.021982033, -0.00776648, 0.02169596, -0.012351757, 0.059027843, 0.0017229847, -0.034517553, 0.03475827, 0.049562015, -0.056764208, -0.008758018, -0.016087813, -0.012041624, 0.0133541655, -0.009575553, -0.043792088, 0.053219914, -0.013429112, -0.0033925306, -0.041751456, 0.019087205, 0.041630525, -0.04670392, 0.010597751, -0.034294855, 0.0054835225, -0.015241262, -0.0019997242, -0.01385824, -0.014083429, 0.02908393, 0.0029552656, -0.013238643, 0.0013280076, -0.033260044, -0.023394302, -0.022413937, 0.037125625, -0.029584056, -0.04001476, -0.009826906, -0.020059617, -0.027099771, 0.067796394, -0.006156701, 0.034658022, -0.048533954, -0.027854132, -0.013331815, 0.05881688, -0.023419054, -0.026315497, -0.027105192, -0.013290895, 0.057423178, -0.045581564, 0.0019686318, 0.05956275, 0.031216241, -0.059679903, 0.016018942, -0.05741518, 0.03199177, 0.00088388415, 0.03378841, 0.03686213, -0.048262917, 0.035848234, 0.002244839, 0.048080664, -0.009667652, 0.0014782596, -0.033806525, 0.06065624, 0.004960347, -0.049592663, -0.046769906, 0.0016802459, -0.01762674, -0.046298593, 0.012636146, -0.049596425, -0.023856305, -0.058101814, 0.013813502, 0.009475015, 0.013798962, 0.029510507, -0.015399508, 0.029423753, -0.027126009, -0.011770371, -0.0013194064, 0.03553456, 0.02727935, 0.063855864, -0.021437878, 0.009872093, 0.0243048, -0.03144038, -0.05118102, 0.0041009663, 0.008269061, -0.020430272, -0.016656503, -0.0061798138, 0.018206127, 0.0013253586, 0.01731131, -0.020861978, -0.004938525, 0.011481311, -0.0019651502, -0.062037386, -0.025853263, 0.005548921, 0.023469513, 0.10172548, -0.027224572, 0.013332504, -0.05592119, -0.0030610655, -0.044465307, 0.0067682476, -0.07965976, 0.012405685, 0.059313223, 0.008032877, 0.024381941, 0.037962474, -0.101085626, 0.05952564, -0.04034129, 0.0059142364, 0.07479503, -0.025397327, 0.028631486, -0.0012021075, 0.04704146, 0.03209009, 0.043813903, 0.03872066, 0.022467436, -0.021460108, -0.005853877, 0.07329904, -0.006517466, 0.0018466351, -0.053716563, -0.014241113, -0.02333514, 0.066976786, 0.021005074, 0.0024068535, -0.027779477, 0.03725392, 0.0021033005, 0.02128383, -0.043875266, 0.013371304, -0.031616185, -0.062729396, 0.04441667, -0.020350445, -0.023670487, 0.046594024, 0.008692853, -0.0025805302, -0.0657397, -0.010861008, -0.0007857578, -0.0058670356, -0.072144546, 0.009480169, 0.039198194, -0.018751457, 0.009540731, -0.028539307, 0.014816739, -0.033017833, 0.008068958, 0.002386725, -0.0077227685, 0.028419582, 0.035516303, 0.030465001, -0.09340682, 0.0023065768, 0.0919432, -0.048874058 ] }, { "values": [ -0.010003305, -0.025316728, -0.030073158, -0.035353065, 0.031219283, 0.017237986, 0.015374818, -0.003800039, -0.016051069, 0.014249409, 0.019132262, 0.03308994, 0.06101569, -0.036210608, -0.07579551, -0.06895548, -0.006987654, 0.01507737, -0.06753731, -0.03050691, 0.016842457, 0.012731213, 0.035426095, -0.047449633, -0.0052265516, 0.06313521, 0.032958124, -0.042691167, 0.049591567, -0.040812716, 0.037116326, 0.03935013, -0.00704501, -0.059512857, 0.07481836, 0.02047213, -0.04070055, 0.02848446, 0.028921777, -0.040816776, -0.051645264, -0.026086995, -0.026748482, 0.031974714, -0.043804787, -0.011168195, 0.039013993, -0.008977844, -0.029000895, 0.04651186, 0.03560182, 0.008518571, 0.013595013, 0.019341715, -0.051220562, -0.040574417, -0.04120637, -0.027030434, 0.058223736, -0.01729212, -0.02399101, -0.020908581, -0.080260836, -0.03256957, 0.026967352, -0.0070884405, -0.07808075, -0.050953332, -0.012803695, 0.023721717, -0.061475277, -0.015012777, -0.008695203, -0.01868616, -0.02726956, -0.0076846546, 0.010750106, -0.0036781884, -0.027384335, 0.052280247, 0.033830337, 0.026695509, 0.05568021, 0.043126047, 0.0052676857, -0.010725091, 0.02269024, -0.030828923, -0.0051869634, -0.014599434, 0.10871766, -0.013407699, -0.072029516, -0.012788192, -0.00525891, -0.0061266795, -0.008965019, -0.059767228, 0.017915346, 0.09830668, -0.03819142, 0.011381964, -0.03549096, -0.049357206, 0.028705018, 0.010251955, 0.003414782, -0.0560597, -0.037808947, 0.016308041, -0.04269951, -0.0056818826, 0.007788425, 0.02337343, 0.02152014, -0.031208282, 0.0099534765, -0.048717514, -0.041660152, -0.03236474, -0.019522564, -0.025739828, -0.032924585, 0.069363505, -0.019182077, -0.013299513, -0.0151898265, -0.052054, -0.04072663, -0.06742219, 0.098527685, -0.10692759, -0.01741393, -0.019388324, -0.05660919, -0.0011240853, 0.042008664, 0.017638655, -0.006737127, 0.030756427, -0.019995935, 0.014576831, -0.045108438, 0.027329698, -0.041206654, 0.011189064, 0.011831168, -0.033547018, -0.04464583, 0.023454411, -0.065275975, 0.008361268, 0.0036340782, -0.012658248, -0.05766778, 0.042446773, 0.073775455, 0.0069129993, 0.010624271, -0.043963492, 0.03846975, -0.0072181546, 0.024946596, 0.0735449, -0.06874639, -0.036804408, 0.07158816, -0.049098425, -0.0023403673, -0.034941357, 0.0068386015, -0.018173683, -0.054484304, -0.07657688, 0.027672898, 0.055293832, -0.0129586365, 0.04393829, -0.048641656, 0.02804348, 0.037463512, 0.045823567, -0.048301127, -0.0020594639, -0.057047565, 0.014199771, -0.01368884, 0.03138245, -0.022665761, 0.02029865, -0.01454378, -0.0026615316, 0.016120559, 0.050114773, 0.0067271995, 0.0259993, 0.063088365, -0.014467883, 0.025469104, -0.011443262, 0.014803009, 0.026910406, -0.011196179, 0.024108805, -0.028562764, 0.029883431, -0.037275467, -0.021887248, 0.06806462, -0.03688695, -0.024312591, -0.00023475227, 0.00043416987, -0.013624222, -0.013093593, 0.03596047, 0.09631364, 0.04439025, 0.031838194, -0.030063376, -0.0752897, -0.022622487, -0.003203474, -0.05180299, 0.058174137, 0.013470091, -0.01891888, -0.02719827, -0.026138838, 0.017743547, -0.0071206563, 0.008028872, 0.02436383, 0.010998221, 0.02207408, 0.06267918, 0.014544975, 0.026049841, -0.009270079, -0.032696865, -0.005160145, 0.015308947, 0.021778526, 0.017021239, 0.021793894, 0.045525886, 0.03708726, 0.037621364, -0.041203, -0.016299348, -0.010877756, -0.055482253, -0.048395116, 0.040580425, -0.04552154, -0.011524344, 0.01152493, -0.0579681, 0.005861889, -0.016473833, 0.025657272, 0.051851895, -0.022842372, -0.05824779, -0.022439675, -0.09932715, -0.0078043034, -0.009823541, 0.087620415, -0.00625243, 0.0029469682, 0.031916354, -0.011891273, -0.0074803396, 0.03493767, 0.02588124, -0.02108405, 0.021684026, -0.008543075, -0.038639165, 0.023998156, -0.03545478, -0.0039289333, -0.016101636, -0.011891777, 0.0030207394, 0.024611527, 0.032032568, -0.050797287, -0.04928048, 0.01618154, 0.05427108, 0.046810195, -0.0001991927, 0.03401918, -0.007120617, 0.013274187, -0.014135043, -0.032887336, -0.012547079, 0.04553755, 0.05030705, -0.019821161, 0.030667253, -0.038091447, 0.00037937754, -0.0412926, -0.024261275, 0.0010044336, 0.054299537, 0.012933817, 0.047463782, -0.019269386, -0.04027581, 0.010214246, -0.016430935, -0.116208844, 0.0035487288, -0.020167638, -0.03221261, 0.024409045, -0.0052391756, 0.01088441, -0.01818468, 0.037002567, -0.019544031, 0.0040096496, -0.005983945, 0.00042021868, -0.011256595, -0.0114585785, 0.014403105, 0.0018195047, 0.0018307667, -0.019511012, 0.014543129, -0.02091198, 0.018817054, 0.042401973, 0.008553948, 0.06862448, 0.012040953, 0.010610734, 0.07010352, 0.004355276, -0.067712784, 0.046635836, -0.005468065, 0.04295512, -0.038059022, -0.03416518, 0.04702415, -0.014068871, -0.039511833, 0.032784022, 0.03189831, 0.0012845316, 0.020719735, 0.048141014, -0.026870238, -0.005768736, 0.025695836, 0.0067326846, -0.018953025, -0.012518182, -0.0046313917, 0.009914994, 0.0016619898, -0.0148614, -0.05997531, 0.038480274, 0.035126485, 0.014133335, 0.046926763, 0.0015230683, -0.030402932, 0.007084833, 0.023659868, 0.0005327853, -0.05096392, -0.028590895, -0.040257398, -0.011837566, -0.044246502, -0.004446173, 0.003939456, -0.027835842, -0.006480581, 0.0054395236, 0.007581705, -0.045974765, 0.08169293, -0.01830065, -0.02316854, -0.008642573, 0.040223006, -0.022807945, -0.0012460889, 0.0150403315, 0.046074893, -0.004366436, 0.008954742, 0.07832117, -0.024189027, -0.020715771, -0.034003694, 0.06400419, 0.01889131, 0.030756196, -0.0012033227, 0.03785556, 0.015621083, 0.021110792, -0.00011088596, -0.002454414, -0.0013911577, 0.024153078, -0.05994416, -0.0027623693, 0.027263504, -0.031089455, 0.005866734, 0.029911935, 0.028451325, -0.009641436, -0.023801427, -0.019464344, -0.009845749, 0.02616924, -0.017666398, -0.011327176, 0.071746655, -0.07258528, -0.0045432276, -0.010770775, -0.03088001, -0.039527006, -0.03279144, -0.053601667, 0.019585961, -0.0069369934, -0.004038952, 0.04309597, 0.04890655, -0.01363655, -0.01640214, 0.057435706, 0.01269587, -0.03544366, -0.07312925, -0.019847635, 0.0023407778, -0.018088361, -0.04394119, 0.0041652624, 0.021409534, 0.027012564, 0.015566474, -0.040257003, 0.027124295, -0.054780953, 0.020325338, 0.061818317, 0.038837284, -0.020327687, -0.013536386, -0.039814815, 0.004483341, 0.04339068, 0.040630355, 0.005272812, -0.011708444, 0.021563869, -0.032055795, 0.017575555, -0.011262662, 0.046706934, 0.021686245, -0.017710427, 0.0418298, -0.027469266, 0.0021331292, 0.018245595, 0.03534207, -0.0011147668, -0.054032236, -0.0015380398, -0.003818161, 0.023296138, 0.0024229013, 0.055330325, 0.07495253, 0.026130062, 0.009871219, -0.048822764, -0.04632759, 0.06327311, 0.00010727807, 0.0021287508, -0.00834244, 0.1171579, -0.0007928385, -0.010710249, -0.061958812, 0.0052337185, 0.026217166, -0.043516617, -0.009120634, 0.059780534, -0.01050738, -0.009012227, -0.03115871, 0.009639427, -0.040139053, -0.04383649, 0.09170011, -0.08735268, -0.010860532, 0.038900472, 0.042390246, 0.014775793, 0.00016167312, 0.040371906, -0.050146125, -0.06532984, -0.010774086, -0.04859406, 0.022396972, 0.08752422, -0.021481514, -0.029303538, 0.025958888, 0.015260867, 0.025726069, 0.0013961234, 0.04083225, 0.0036391104, 0.0198555, -0.04538346, 0.015501327, 0.004181774, 0.022965169, 0.042906914, 0.021429844, 0.060012147, 0.01272084, 0.026870813, 0.018998645, -0.047058873, 0.044567436, -0.04482098, -0.0026709712, 0.031233378, -0.023343934, -0.04574354, -0.040893223, -0.040901687, -0.012519216, -0.04724641, 0.009255443, 0.027476722, -0.020223185, -0.0002556869, 0.019149026, -0.004609625, -0.017753044, 0.0024412023, 0.05022409, -0.00804139, -0.023516715, -0.0030181003, 0.042377837, 0.005631892, -0.06495608, -0.03255513, 0.035418104, -0.0019137264, 0.007558298, 0.019829791, -0.015490463, 0.020250967, -0.008219221, 0.07374619, 0.004226206, -0.026324438, 0.040725444, 0.03204343, -0.040825654, 0.00073089445, -0.0019282538, -0.010848626, 0.03585569, 0.0032192522, -0.041131552, 0.08313283, -0.010572934, 0.0018833828, -0.05115259, -0.00054718496, 0.023862215, -0.06434607, 0.0009649435, -0.010903869, 0.0131269805, -0.008917924, -0.0037668352, -0.03503814, -0.011352078, 0.02420103, -0.009760735, -0.018352471, -0.0036042184, -0.035125032, -0.026337702, -0.025353126, 0.043576032, -0.025301253, -0.03779849, -0.0074982047, -0.013257677, -0.020946011, 0.043427378, -0.019519052, 0.059756327, -0.073985875, -0.0143168215, -0.009893094, 0.05212883, -0.01304356, -0.029881233, -0.038024504, 0.0056907944, 0.037492238, -0.06122926, 0.012204056, 0.05646317, 0.030527491, -0.07327937, 0.015809193, -0.06370114, 0.02866057, 0.0048928475, 0.028484339, -0.0020544645, -0.05914534, 0.057430312, 0.019324653, 0.037378516, -0.008897851, 0.026366625, -0.002735353, 0.08114478, -0.0031176521, -0.04335279, -0.06195545, 0.003850345, -0.007464974, -0.015770413, 0.018639421, -0.04124908, -0.012451035, -0.06494489, 0.009021351, 0.0037786826, 0.0034980848, 0.03530817, -0.0143764, 0.021936359, -0.025467744, -0.018876271, 0.015809335, 0.055570543, 0.02780703, 0.05958031, 0.0063639823, 0.009539646, 0.014274613, -0.07260644, -0.05187636, 0.0052435636, 0.00697242, -0.02605657, -0.02423203, 0.001549169, 0.040292688, -0.0052428474, 0.018848917, -0.022956232, -0.009167344, 0.01719939, 0.003289757, -0.06936038, -0.0023708846, 0.009357752, 0.03728278, 0.10345324, -0.061180025, -0.0012999738, -0.050895695, -0.011486902, -0.059891667, 0.009487012, -0.0624589, -0.00526186, 0.059571, -0.0049676155, 0.021746125, 0.062575966, -0.079362065, 0.06727927, -0.030060092, -0.004570416, 0.04457255, -0.017643243, 0.027428782, 0.024139613, 0.04028117, 0.061546005, 0.052451238, 0.02562817, 0.020411905, -0.0151149295, -0.012163773, 0.08148611, -0.000109245535, -0.015995404, -0.035649907, -0.015918097, -0.025952699, 0.072528005, 0.015282464, -0.008454377, -0.027813835, 0.02874144, -0.006654523, 0.021708205, -0.047244627, 0.006145731, -0.04418162, -0.062255476, 0.02896246, -0.007102305, -0.030642325, 0.032395184, 0.020730652, -0.0026393957, -0.06262564, -0.008165207, -0.025484812, -0.02274136, -0.06699096, -0.005450527, 0.03224631, -0.0062709837, 0.019262776, -0.0057234946, 0.016754879, -0.042406578, 0.009929834, 0.0009944736, -0.02387467, 0.019831052, 0.028420687, 0.031651534, -0.08515724, -0.027300596, 0.08489466, -0.039166875 ] }, { "values": [ 0.010220628, -0.040667012, -0.04738832, -0.019114446, 0.017696083, 0.0024794703, 0.05431008, 0.014412812, -0.018511772, 0.01033847, -0.0020575146, 0.04155148, 0.060996667, -0.022076648, -0.08871847, -0.0068180724, 0.008958311, 0.001579381, -0.021507071, 0.022423195, -0.024324534, 0.006974758, 0.035405453, -0.03484444, 0.044391252, 0.05094183, 0.03385783, -0.0386896, 0.053833563, -0.0026823936, 0.0070726876, 0.04706153, -0.0014042312, -0.045409612, 0.10568698, 0.021900643, -0.011610084, -0.005022423, -0.010951215, -0.028509414, -0.06548303, -0.0643024, -0.025457652, 0.03131375, -0.014949587, 0.032956973, 0.019130394, 0.024163578, -0.022218665, 0.0009891972, 0.05693303, -0.012704778, -0.02900688, 0.016516788, 0.0043227067, -0.014763265, -0.030320415, -0.05308287, 0.076845594, 0.011093735, -0.031041518, -0.044627037, -0.03263529, -0.0030470819, -0.0018595646, -0.008861264, -0.05327162, -0.069937296, -0.0109484205, -0.0036332207, -0.0489548, -0.017875938, 0.008707852, 0.0011621708, -0.020565173, -0.010235783, 0.005906314, -0.007785545, -0.019088244, 0.060425688, -0.005535768, 0.033192493, 0.061544895, 0.01903055, -0.011577935, 0.007591219, 0.009784902, -0.0195342, 0.009295603, -0.0052387533, 0.14274307, -0.013918167, -0.020119697, 0.02446401, 0.009064948, -0.063891254, 0.002294344, -0.048652127, -0.00641168, 0.09641636, -0.024881996, 0.020364024, -0.039270464, -0.06912667, 0.061974537, 0.038246177, -0.005148436, -0.060856126, -0.048075583, 0.058217265, -0.041983012, -0.027890107, 0.012333811, 0.008753539, 0.016118178, -0.014346625, -0.012321732, -0.024159763, -0.039279453, -0.020496225, -0.0022276272, 0.0034435866, -0.02249316, 0.052821748, -0.060247548, -0.012160619, 0.03007657, -0.07934453, -0.03164745, -0.07361273, 0.095127285, -0.07640724, -0.00775894, 0.0059872083, -0.046431918, -0.03720839, 0.021527756, 0.037286755, 0.0030237653, 0.04952645, -0.008492104, -0.014356956, 0.021171162, -0.0027393673, -0.022439277, 0.0015683216, 0.024153309, -0.03803745, -0.04543291, -0.009076001, -0.05484357, 0.025729561, 0.0071900226, 0.017011479, -0.06048642, 0.016998077, 0.08029732, -0.013730213, 0.032294955, -0.02557835, 0.014722044, -0.015051016, 0.03796452, 0.033281323, -0.05813226, -0.03820771, 0.03906252, -0.07361249, -0.029812984, 0.01010558, 0.020467248, 0.0032352891, -0.050832227, -0.056622714, 0.043287985, 0.04861421, -0.0059283716, 0.07412231, -0.023367578, 0.01646012, 0.0777695, -0.0076410784, -0.025240147, -0.0008945677, -0.029212626, 0.016119953, 0.001478274, 0.040050138, -0.00023873185, -0.0020016357, 0.0010152006, 0.028440977, 0.05676221, 0.033221357, 0.03329678, 0.019519204, 0.04210809, -0.04370424, 0.012544425, 0.002018084, 0.031928644, 0.0010379754, -0.001386674, -0.019344248, -0.040666837, 0.023652386, -0.034258004, -0.02714641, 0.042323016, -0.029782057, -0.035078708, -0.008152311, 0.0035057983, -0.005503673, 0.0010518399, 0.026835287, 0.0699159, 0.055020273, 0.037761178, -0.014564473, -0.03976656, -0.033059787, -0.014032951, -0.081376374, 0.066284895, -0.0076653888, -0.04219571, -0.034600735, 0.033771046, -0.013680002, -0.016695656, -0.043082807, -0.0064955605, 0.0028320027, 0.06561651, 0.048648648, 0.04388923, 0.03074028, -0.018109027, -0.035100807, -0.0025078203, 0.019063935, 0.01498092, 0.017772196, 0.050339073, -0.030075535, 0.026197745, 0.07112854, -0.056229293, -0.0043956726, -0.012398199, -0.019295834, -0.012109901, 0.04457044, -0.03143628, -0.0096926335, 0.025058283, -0.025235314, -0.012178238, -0.025773663, 0.01568691, 0.05474004, -0.017268183, -0.08027384, -0.025354508, -0.10448827, 0.009627781, -0.0060445, 0.07681686, 0.011876568, -0.009160046, 0.047958303, 0.0052212207, -0.03494576, 0.006714299, 0.048197433, -0.037367746, 0.011738434, -0.02651687, -0.033279598, 0.020161266, -0.04589416, -0.015047436, -0.031991865, 0.0075001065, 0.012734753, -0.013629552, 0.024502916, -0.06718373, -0.05247254, 0.050715767, 0.046012163, 0.037745025, 0.003663932, 0.04754241, 0.0027013542, 0.0018816476, -0.032288715, -0.011149227, -0.011523473, 0.018517403, 0.047739483, 0.013074623, 0.062372956, -0.019858161, 0.031020777, -0.01987349, -0.04246206, -0.052674178, 0.046275396, -0.0050337715, 0.022778349, 0.0015130864, -0.05954935, -0.0013341019, -0.010311045, -0.049941998, 0.0440786, -0.0006765045, -0.03173049, 0.02848896, 0.022319432, -0.017546752, -0.022650097, 0.03428952, -0.004312036, 0.014764929, -0.043890417, -0.0007691765, -0.045874376, -0.0038044727, 0.025752518, -0.01584937, -0.058225952, -0.029432232, 0.026525352, -0.007041445, 0.031952385, 0.033784043, 0.0025910062, 0.05325981, -0.014206775, 0.009799981, 0.053443942, -0.003979148, -0.022533841, 0.033367984, -0.0030500765, 0.044192962, -0.02551048, -0.013225584, 0.058657803, -0.026966287, -0.035056528, 0.015623955, 0.0421787, 0.05050047, 0.011594328, 0.035081554, -0.013573413, -0.02742865, -0.014524018, 0.027601775, -0.019762442, -0.010266379, -0.014909573, 0.011651229, 0.034023207, 0.008415705, -0.04541558, -0.017738227, 0.05111111, 0.002267975, 0.03718085, 0.03079115, -0.04538193, -0.019984143, 0.024787964, 0.0064850855, -0.030209543, -0.043156937, -0.0026790786, -0.004037465, -0.046712894, 0.013985617, 0.0268748, -0.026185561, -0.010038487, 0.008476321, 0.0050342185, -0.05815468, 0.04080401, -0.025582835, -0.017514253, -0.03172023, 0.037170894, -0.017454777, 0.025845094, 0.0057672677, 0.039206084, -0.029809492, 0.00786578, 0.063231885, -0.024684068, -0.008041425, -0.0010646459, 0.058841836, 0.06589014, 0.020432834, 0.0039976044, 0.052842993, 0.015957765, 0.048573118, -0.012864482, 0.00726235, 0.00718417, 0.0017818243, -0.050968412, 0.008779974, 0.04521861, -0.048328232, 0.0032029906, -0.005774913, 0.039764058, -0.024275124, -0.01886896, -0.023638066, 0.00050862425, 0.03134224, -0.021538947, -0.023862056, 0.053503484, -0.050244212, 0.035071306, -0.035236456, -0.03579316, 0.014048752, -0.027005209, -0.045113083, 0.0021075066, -0.015247574, -0.001560534, 0.07201734, 0.07009802, -0.027369205, 0.01881767, 0.056309685, 0.049565386, -0.020076163, -0.04735526, 0.0048205536, 0.06065967, -0.038037572, -0.062595814, 0.022096863, 0.014962749, 0.0437496, 0.0020260399, -0.019838303, -0.0014367533, -0.015650643, -0.0057831095, 0.080843695, 0.02043078, -0.03452801, 0.008004916, -0.039552778, 0.017076539, 0.039978284, 0.0051413607, 0.01869014, 0.00806939, -0.0031923742, 0.013366563, 0.028803866, -0.002005785, 0.033973947, -0.012262988, -0.02023384, 0.0390675, -0.028264463, 0.024060382, 0.01140952, 0.027146509, -0.0004912463, -0.035621397, -0.008331165, -0.024212547, 0.0078764595, 0.0046237954, 0.011191962, 0.06951542, 0.0031174775, 0.020681739, -0.05216505, -0.033737518, 0.045330513, 0.029308701, 0.0039514806, -0.011221812, 0.08293201, 0.025197675, 0.01311224, -0.029473802, 0.0011911477, -0.008537306, -0.034913294, -0.0018253465, 0.05526811, -0.02876906, 0.010803504, -0.028418329, 0.0137098795, -0.030508371, -0.0440676, 0.074405864, -0.04585966, 0.005960477, 0.022164911, 0.014311922, -0.027789203, -0.034605816, 0.026408298, -0.053052254, -0.06790326, -0.044009496, -0.041195426, 0.027100895, 0.06451508, -0.01595203, -0.018625066, 0.05003629, -0.02025828, 0.03909903, 0.018998517, 0.060858805, -0.007853367, 0.01755589, -0.039286174, 0.057942692, -0.018174067, -0.0033830826, 0.02907659, 0.052661106, 0.038629938, 0.0007653253, 0.06010052, -0.005025552, -0.024593009, 0.063952304, -0.04059528, -0.013692923, 0.036269013, 0.014477314, -0.0434441, -0.026016789, -0.027834067, -0.02607372, -0.017818317, 0.028799748, 0.0512306, -0.023797834, -0.023665713, -0.0037161836, -0.016851101, 0.0077006845, 0.031705257, 0.06249974, -0.041098982, -0.016466906, -0.045168355, 0.036229584, 0.038329575, -0.062539466, -0.01029393, 0.04656569, -0.020260882, 0.031295642, 0.017632248, -0.015521687, 0.045620117, -0.059344392, 0.06213175, -0.049551815, 0.003939587, 0.026064359, 0.031218212, -0.032802038, -0.03398431, -0.0064345063, -0.04380197, 0.023495056, 0.01797151, 0.0040472466, 0.093016185, -0.02976672, 0.0073074023, -0.010932072, -0.042824056, 0.034846112, -0.0674356, -0.02044772, -0.015859988, 0.0061870115, 0.010779938, -0.009767238, -0.014792686, -0.027450733, 0.02230296, 0.0017865554, -0.029376362, 0.007526587, -0.016277852, -0.038609892, -0.039430935, 0.02524363, 0.020476688, -0.07128362, -0.039154302, 0.019100804, 0.014422709, 0.04761426, -0.009807898, 0.0015178676, -0.015339529, -0.042005524, -0.022712879, 0.03377818, -0.02336432, -0.025156513, -0.049557466, -0.00721573, 0.06834072, -0.041423332, 0.0035793267, 0.064219445, 0.026613789, -0.022783648, 0.030034773, -0.07687374, 0.033666573, 0.029839482, 0.02153981, 0.063734815, -0.101199664, 0.062411148, 0.0029530684, 0.051251546, -0.015582614, 0.042308707, -0.05626666, 0.0501051, -0.020764537, -0.026359499, -0.059602086, -0.00033254977, 0.0049599153, -0.020100035, 0.0029233915, -0.06700877, 0.009730662, -0.036614988, 0.033442207, 0.015901437, -0.0033920722, 0.049883556, -0.02591922, 0.0150637105, -0.015829058, -0.02335644, 0.06403462, 0.073205605, 0.013548091, 0.040582266, 0.0015663151, 0.012854951, 0.025441863, -0.034563545, -0.008418149, 0.013863493, -0.024337195, -0.03767119, -0.06466058, 0.0036441681, 0.035296023, 0.0290801, 0.029001022, -0.013101468, 0.015233776, -0.011342301, 0.024142908, -0.048663944, -0.03866254, 0.023215022, 0.027255943, 0.07774243, -0.048513513, 0.031457826, -0.056013636, -0.0135796685, -0.014082696, 0.038283814, -0.027419938, 0.019244842, 0.07582748, -0.014524869, 0.008025116, 0.020632608, -0.09559491, 0.0402809, -0.033696465, -0.01890028, 0.02695366, -0.0035685773, 0.0047478536, 0.045134947, 0.0464642, 0.08672388, 0.07635568, 0.015281498, 0.01120494, -0.002435909, -0.009153733, 0.06919782, -0.0064394996, 0.013075741, -0.043256998, 0.022765795, -0.032103937, 0.10114731, -0.009376168, -0.002253595, -0.023161003, 0.055757515, -0.018792242, 0.007065593, -0.028177027, -0.012088756, -0.0528973, -0.046416797, 0.027504846, -0.025607796, -0.046646792, 0.039914273, -0.013959625, -0.012652311, -0.03023954, 0.0017773017, -0.025767304, 0.0013758632, -0.07657254, 0.016399788, -0.040380485, -0.017162183, -0.005945288, 0.004833051, 0.067288965, -0.01928153, 0.013173065, 0.020706197, 0.043824404, -0.0015116391, -0.00047523956, 0.021409286, -0.05724245, -0.022674527, 0.0857946, -0.032084946 ] }, { "values": [ -0.013758903, -0.022671893, -0.03338142, -0.02382333, 0.023314223, 0.0059437775, 0.0067244936, 0.024959931, 0.003426773, -0.022763973, 0.022370527, 0.042962916, 0.05248588, -0.027410703, -0.08059584, -0.0442052, 0.011142647, -0.010176714, -0.048666418, -0.00084192265, 0.0054181, 0.021207528, 0.017044704, -0.049623445, 0.025022173, 0.061129533, 0.008174469, -0.051220115, 0.053695038, -0.044229254, 0.016439723, 0.021436563, 0.01360594, -0.008204123, 0.06343136, 0.0069476, -0.010523123, 0.0058509447, 0.015193266, -0.04906572, -0.05933381, -0.049595162, -0.04048788, 0.023094814, -0.051174853, 0.028485656, 0.021419814, 0.014261621, -0.0039961385, 0.01138262, 0.062160652, -0.005496836, -0.00036422067, 0.022580521, -0.005834894, -0.03287802, -0.057644095, -0.055954505, 0.063563615, 0.0017393609, -0.003875548, -0.006961827, -0.078443274, -0.023377907, 0.0105450405, -0.025825107, -0.07129886, -0.05686061, -0.046832055, 0.0048977514, -0.073793106, -0.02278769, -0.016235616, -0.0031909174, -0.042560823, -0.019561501, 0.021912536, -0.0013859799, -0.05269098, 0.04719953, 0.05084899, 0.0012436926, 0.019115105, 0.04216796, 0.007944934, 0.013928227, 0.026152426, -0.023288831, -0.045107525, -0.012267861, 0.117701925, -0.010621467, -0.055123284, 0.004584941, 0.025794966, -0.06544474, -0.014530528, -0.049874164, 0.0016630101, 0.07970938, -0.06314448, 0.002934589, -0.024447046, -0.054432444, 0.044999707, 0.059258327, 0.0140491, -0.04282774, -0.014432388, 0.038537446, -0.032260314, 0.00030836576, -0.031546805, 0.018022457, 0.014082628, -0.033282418, 0.018687822, -0.036550473, -0.028494775, -0.03778727, -0.034217592, -0.008420336, -0.032003395, 0.061856855, -0.032071587, -0.006178166, -0.0003973917, -0.08888308, -0.024849959, -0.074281834, 0.06980229, -0.11824238, 0.00959118, 0.002213156, -0.044563312, -0.024843154, 0.052207854, 0.026381662, -0.016664278, 0.007108864, -0.015588091, -0.040236957, -0.0048005125, 0.04808976, 0.004852799, -0.03408853, -0.0047060126, -0.049722902, -0.052233152, -0.001286519, -0.06103868, 0.00862354, 0.007099451, 0.0065774266, -0.037326574, 0.03858998, 0.082587674, -0.035466716, -0.0040341904, -0.04547647, 0.01823208, -0.016635463, 0.045378145, 0.030250411, -0.008263687, 0.005604752, 0.03993206, -0.056623377, -0.050481938, -0.049518697, 0.03524256, -0.036659643, -0.07865699, -0.08282579, 0.009792245, 0.05520763, -0.0292339, 0.04099267, -0.043235652, 0.0027915312, 0.06245217, 0.046410948, -0.032624602, -0.011873098, -0.07155385, 0.004122165, 0.017795604, 0.05390147, -0.010984503, 0.030497387, 0.0027215525, 0.02028363, 0.021859946, 0.045904845, 0.028607562, 0.020893123, 0.09071296, -0.016529858, 0.024186404, -0.011760159, 0.035219133, 0.032167573, -0.016313033, 0.038276624, -0.029545201, 0.017842498, -0.022111537, -0.021509219, 0.076884225, -0.05111328, -0.0037486986, 0.011292908, 0.012929814, -0.0024825544, -0.0046303365, 0.022543717, 0.081756026, 0.0413427, 0.059246086, -0.043845613, -0.027711662, -0.0074310964, 0.0031364132, -0.033368733, 0.05721319, 0.012005698, -0.02433996, -0.050847765, 0.021817962, -0.0034427734, -0.012362246, -0.00626507, -0.0022370273, -0.023863846, 0.066669114, 0.04959319, 0.020656014, 0.028305795, -0.030809712, -0.029736724, 0.024097, 0.029075816, 0.025923366, 0.004681453, 0.029811079, 0.045920752, 0.052402105, 0.042542353, -0.088188834, -0.039011113, -0.012414554, -0.037207212, -0.03897454, 0.018647652, -0.038384926, -0.02422613, 0.020405838, -0.05642051, 0.0013455591, -0.023889463, 0.03186591, 0.009076224, -0.025834339, -0.07238016, -0.0141664725, -0.07062072, -0.003744392, -0.0062411143, 0.08183798, -0.0062323273, -0.010843456, 0.023778228, -0.01948989, 0.019827612, 0.018969947, 0.048716296, -0.014093423, 0.0021234408, -0.043922905, -0.05837786, 0.030833475, -0.022732712, -0.0024124084, -0.02753366, -0.010689426, 0.0058088405, 0.008980103, 0.047570713, -0.032665532, -0.032444984, 0.033729184, 0.04680912, 0.03054762, 7.2047675e-05, 0.050784405, -0.014846065, 0.013063797, -0.011678413, -0.034793425, -0.0122709, 0.042084146, 0.05246, -0.0050620353, 0.038599625, 0.0048004845, 0.021442384, -0.045321133, -0.060479064, -0.0032959946, 0.03673777, 0.008676022, 0.036345497, -0.0035516517, -0.053143665, 0.0077303117, -0.0002269382, -0.107981615, 0.029709568, -0.0001387307, -0.053879797, -0.007781936, 0.015256258, 0.010793136, -0.042506926, 0.028170893, -0.020886507, 0.009957723, -0.027602624, 0.0040365383, -0.016072318, -0.031206025, 0.025265668, 0.0007375294, -0.012062976, -0.03340751, 0.045943033, -0.030869352, 0.020025458, 0.0374399, 0.0006893707, 0.05694362, -0.0072586373, 0.023689343, 0.068745434, 0.015859978, -0.035692286, 0.031622097, -0.0042334613, 0.050575018, -0.049214255, -0.023912836, 0.055572435, -0.021347811, -0.04600368, 0.01765178, 0.042064738, 0.03338308, 0.0427885, 0.0046181413, -0.0020562548, -0.039368458, -0.018503852, 0.021385599, -0.025239382, 0.0043596765, 0.0143383425, 0.0073515275, 0.037172962, -0.010387438, -0.023701994, 0.01686884, 0.05956187, 0.030612882, 0.06057114, 0.014692788, -0.045552306, 0.00022134552, 0.018374877, -0.011522789, -0.025211535, -0.03997698, -0.040140983, -0.0036840816, -0.031098213, 0.015662402, 0.010375635, -0.03162326, -0.017552223, 0.03322639, 0.021818174, -0.052331865, 0.034176335, -0.03480783, -0.01634334, -0.0064405124, 0.041519217, 0.0008027694, 0.034181695, 0.016613262, 0.013312888, -0.004134839, -0.0016745862, 0.065410964, -0.039765783, -0.020479182, 0.009208594, 0.07783957, 0.04563395, 0.01828308, -0.023766471, 0.04576751, 0.0024557023, 0.030606573, 0.005172103, 0.0006057652, 0.012337324, 0.018303536, -0.04967486, 0.006232144, 0.050671358, -0.021894667, 0.012592019, -0.0041332757, 0.047896095, -0.03684477, -0.033004284, 0.00423707, 0.0146817295, 0.030535491, -0.026604485, -0.023774724, 0.047768313, -0.059759915, 0.006229389, -0.07007826, -0.041972853, -0.031051897, -0.012335673, -0.038187947, -0.0022263296, 0.0020845043, -0.013271887, 0.044617698, 0.05804494, -0.009284064, 0.0011346927, 0.055409383, 0.033305615, -0.022060217, -0.06654568, -0.004677118, 0.019572236, -0.0051108617, -0.04900718, 0.0013196768, 0.014563404, 0.047342982, -0.013065797, -0.005856668, 0.032719277, -0.06155587, 0.003957559, 0.056768294, 0.055819992, -0.014697633, 0.0020824927, -0.032958433, 0.02469934, 0.020679705, 0.040199257, 0.005686502, -0.004203768, 0.024264323, -0.0095087215, 0.024343701, -0.020986443, 0.00590251, 0.019755447, -0.02471782, 0.036678277, -0.034942463, 0.018886149, 0.009566039, 0.048144884, -0.011543078, -0.034359537, -0.019935923, -0.005342718, 0.02143271, 0.03826218, 0.04412982, 0.08870929, 0.008855187, 0.02235848, -0.018512549, -0.027664319, 0.0740803, 0.0063294834, 0.011293095, -0.029759472, 0.13063526, 0.0026561313, 0.011186142, -0.03206108, -0.024367759, 0.03425136, -0.05516412, -0.013052172, 0.066213295, -0.001688101, -0.0028746808, -0.027585367, 0.008376768, -0.0073138964, -0.019797966, 0.07540226, -0.06292279, 0.0016742554, 0.018863559, 0.054805364, 0.01333546, -0.014190433, 0.03382138, -0.03957431, -0.06476228, -0.0022637695, -0.0524836, 0.008177829, 0.08716339, -0.039077517, -0.034772426, 0.05384356, 0.018196257, 0.03894428, 0.0075807655, 0.026731934, 0.0072629866, 0.017145535, -0.03430371, 0.04150421, -0.018820444, 0.023245215, 0.036519613, 0.023306536, 0.062941656, -0.009188618, 0.0383947, -0.0064053293, -0.04444444, 0.07582549, -0.039171364, 0.011042076, 0.03558456, 0.028031629, -0.028486187, -0.053606283, -0.017830152, -0.020924876, -0.03933852, 0.009984501, 0.051349036, -0.0090153795, -0.016425166, 0.037560612, -0.008023674, -0.0005799624, 0.017453643, 0.059165392, 0.0036508034, -0.022998394, -0.024971548, 0.05910133, 0.018433338, -0.041354034, 0.0029761987, 0.018405365, -0.0034786945, 0.01862376, 0.0060804444, -0.031208726, 0.04016522, -0.028542973, 0.054934323, -0.038933743, -0.019818148, 0.044029336, 0.025323587, -0.053611696, -0.0121549, 0.0059492732, -0.018702693, 0.0024546853, 0.0039031922, -0.027972657, 0.100267544, -0.027399415, 0.0016122272, -0.006138029, -0.0045753643, 0.0404482, -0.05984594, -0.0065887, -0.030690687, 0.021381123, 0.0039356397, -0.011506682, -0.027805958, -0.0305363, -0.0027893095, 0.01244094, -0.03536729, 0.0032474643, -0.05051596, -0.01397814, -0.024787363, 0.049779773, -0.016744075, -0.034607872, -0.035583805, -0.021691823, -0.043088473, 0.038859673, -0.027454894, 0.019322457, -0.054153793, 0.018839594, -0.008819628, 0.058371074, -0.027053067, -0.019248638, -0.03728657, 0.011040674, 0.033095717, -0.052060284, -0.02504072, 0.063344546, 0.025848307, -0.025900006, 0.01430498, -0.0747521, 0.032406837, 0.009633185, 0.024558565, 0.0069871657, -0.085462414, 0.06784657, -0.0015371123, 0.04117685, -0.011917844, 0.03396402, -0.019224357, 0.0738736, -0.01339575, -0.04951035, -0.046917308, -0.006317753, -0.006320828, -0.04157285, 0.00964496, -0.040970717, -4.7420548e-05, -0.045568474, 0.016422885, -0.0035290623, 0.0046313545, 0.04259507, 0.00058694166, 0.010660073, -0.010435632, -0.025433326, 0.034576017, 0.005554843, 0.009879898, 0.045743093, 0.026451303, -0.001942435, -0.003263147, -0.011407465, -0.036796093, 0.030155145, -0.018323047, -0.05571251, -0.013656571, -0.0007268832, 0.026383178, 0.025302084, 0.018347153, -0.018558616, 0.038413346, 0.024148509, -0.01629494, -0.072308175, -0.01210017, 0.003519078, 0.03614917, 0.049587138, -0.041318797, 0.03686909, -0.02928896, 0.027124206, -0.03827846, 0.012409009, -0.05207397, -0.007813083, 0.06316016, -0.0029731346, 0.043456048, 0.036748372, -0.07947814, 0.060621064, -0.03887071, -0.0083445925, 0.05959184, -0.0013223769, 0.028126677, 0.044216722, 0.05081719, 0.04449888, 0.05441215, -0.0029135013, -0.003972683, -0.018719388, -0.0119838705, 0.081250966, 0.015037724, 0.01578961, -0.045326415, 0.0054931827, -0.022883207, 0.09750313, 0.032126375, -0.0059344796, -0.026757272, 0.029551601, -0.0028598588, 0.00892435, -0.04355975, 0.0077981716, -0.03959475, -0.07912592, 0.01771106, -0.035427023, -0.018394591, 0.024605704, -0.021727353, 0.017994938, -0.053357318, -0.024038859, -0.0026800844, -0.013469783, -0.050333723, -0.011931462, -0.0006819721, -0.0029666037, 0.0072525395, -0.007902159, 0.050426316, -0.04115711, 0.03842629, 0.0032409225, 0.01173021, 0.0032997595, 0.022557339, 0.017571794, -0.081889614, -0.011226003, 0.055997923, -0.05617877 ] }, { "values": [ -0.014866296, -0.041581728, -0.019762905, -0.0033772297, 0.026061349, -0.014010029, 0.019684415, -0.029427761, 0.0014884648, -0.008729428, 0.02925154, 0.04840831, 0.025255745, -0.025548529, -0.08946991, -0.050772484, -0.011264375, -0.0072165043, -0.086418085, -0.057145298, -0.010758602, 0.028283507, 0.0073962216, -0.023178231, 0.014968566, 0.08196233, 0.0035131217, -0.06361263, 0.02322369, -0.0366085, 0.027409634, 0.054227848, 0.0009013248, -0.014046595, 0.06255227, 0.0072588897, -0.04127036, -0.00040581616, 0.043667093, -0.055320982, -0.05918428, -0.026728416, -0.029448096, 0.02420752, -0.03954566, 0.018001089, 0.04372581, 0.004290329, 0.00021393968, 0.029056398, 0.0639956, 0.0018258865, 0.023770783, -0.002429606, -0.027117139, -0.027199933, -0.049312145, -0.045830835, 0.04222189, -0.018790962, -0.0144295, -0.008565534, -0.055098522, -0.024129702, 0.042212617, -0.015149511, -0.0692928, -0.027540578, -0.00027219535, 0.02713492, -0.039195105, -0.014167353, -0.013609642, -0.024002198, -0.029392645, 0.003716133, -0.019527731, 0.022660112, -0.056413833, 0.026932178, 0.024578286, -0.012835827, 0.047598317, 0.040047206, 0.0084997, -0.010598973, 0.016409097, -0.053846985, -0.039094348, -0.0153641105, 0.099862605, 0.0050048847, -0.04166504, 0.0077472166, 0.00962632, -0.055444747, -0.047377687, -0.07182558, 0.029098019, 0.107512884, -0.027723048, -0.015375275, -0.029974116, -0.06436086, 0.047685497, 0.033936445, 0.006997304, -0.05133919, -0.025431285, 0.01917631, -0.045732487, -0.017017651, -0.0017991997, 0.008545205, 0.0068863574, -0.01966484, 0.0021269415, -0.011975361, -0.022209354, -0.013870364, -0.011403239, 0.0014973464, -0.04890265, 0.06540564, -0.023805993, 0.0002703496, -0.021081159, -0.07499327, -0.015967604, -0.070933275, 0.08317436, -0.12927707, -0.016774306, 0.0008596746, -0.0378913, -0.023400666, 0.027568618, 0.04927952, 0.012213934, 0.016326182, -0.03277341, -0.015680294, 0.0038134344, 0.04666935, 0.0024660355, -0.01598607, -0.0019369652, -0.005740691, -0.022874791, 0.017091813, -0.087007366, 0.014570037, 0.012504199, -0.010143019, -0.03379116, 0.037322037, 0.10822396, 0.017891876, 0.023710607, -0.021345438, 0.054781836, -0.010049499, 0.031973597, 0.041699663, -0.046037663, -0.02897399, 0.041937906, -0.06482579, -0.044967193, -0.04583232, 0.03815707, -0.0025449109, -0.036999512, -0.10029135, 0.038365312, 0.041807346, -0.010338074, 0.02504461, -0.0026805708, 0.0038448721, 0.045664087, 0.037213095, -0.029416151, -0.020685896, -0.051978793, -0.021622425, -0.03006596, 0.088449836, -0.017674737, 0.021429278, 0.012045806, 0.014653893, 0.014172963, 0.05081707, 0.033801716, 0.017190209, 0.05890322, 0.001642493, 0.051221747, -0.019637799, 0.047154322, -0.0057387226, -0.0059746834, 0.030500432, -0.04585314, -0.014562018, -0.016857198, 0.007926783, 0.066660985, -0.017119957, -0.01773641, -0.016453322, 0.027309818, -0.0001401091, -0.012990989, 0.045035396, 0.05350034, 0.053947687, 0.030802619, -0.02360842, -0.03079396, -0.008189481, 0.017032225, -0.032461964, 0.049412783, -0.014283927, -0.052278075, -0.08295983, 0.0039485525, 0.04712582, -0.0232335, 0.009359354, 0.02643434, -0.00022162292, 0.054796204, 0.046294533, -0.00701872, 0.018237852, -0.014779704, -0.052704673, -0.012742716, 0.03989493, 0.028205754, 0.011144887, 0.035820805, 0.04448578, 0.03446489, 0.053472254, -0.06533321, -0.026793307, -0.008964612, -0.0070076776, -0.067417555, 0.011549868, -0.05814968, -0.031273205, 0.034625098, -0.067038044, -0.0022134522, -0.044566467, 0.041050356, 0.029690556, -0.020813217, -0.05445991, -0.015875794, -0.07334337, -0.01430982, -0.005019316, 0.09181567, 0.012085968, 0.009770357, 0.023465922, 0.010162932, -0.008195029, 0.03971982, 0.016409261, -0.021895796, 0.00973305, -0.028997928, -0.029951682, 0.030638503, -0.03137691, -8.563249e-05, -0.027519017, 0.010886871, 0.022714185, 0.029860044, 0.021282611, -0.04057799, -0.039129764, 0.04563522, 0.06382575, 0.0381252, 0.011167446, 0.032023225, 0.013505377, 0.016372224, -0.0048549124, -0.020834042, -0.008882092, 0.03118849, 0.06639234, 0.014675798, 0.008613148, -0.031555124, 0.007271018, -0.056504782, -0.055251475, 0.022400498, 0.050542645, 0.0062863207, 0.060695104, -0.012724377, -0.053541712, 0.03550287, 0.0011143202, -0.10418165, 0.01727188, -0.0050888807, -0.016438654, 0.023313012, 0.005394841, 0.014725557, 0.0016014542, 0.028930383, -0.017393691, -0.008399727, -0.031437725, -0.022526246, -0.003962839, 0.0063349763, 0.030547662, 0.0040642265, 0.0044308533, -0.050085243, 0.030731462, -0.0006755124, 0.013065659, 0.04000796, -0.0017023039, 0.056422815, -0.009508126, 0.0018771762, 0.029244334, 0.0037190693, -0.07511589, 0.02632462, -0.020818584, 0.07512382, -0.034373816, -0.04592816, 0.044018842, 0.000785677, -0.04067103, 0.016237697, 0.040086064, 0.027970187, 0.029999664, 0.030145336, -0.03987793, -0.021434555, 0.039033413, 0.021016035, -0.014087154, -0.0072287936, 0.009223626, 0.01244016, 0.01326695, -0.019236745, -0.05600463, 0.017445056, 0.032838866, 0.02287347, 0.017345361, -0.0019465563, -0.060946055, 0.006410348, 0.013997576, -0.0009673478, -0.059611626, -0.029916922, -0.04758077, 0.0035499495, -0.028938007, 0.01084928, -0.004931799, -0.021190831, -0.025943631, 0.02283661, 0.012991873, -0.041237347, 0.06258803, -0.011435226, -0.005900449, -0.007464737, 0.02656315, -0.02761208, 0.012553375, 0.031780668, 0.00071415043, -0.010604436, -0.0007655798, 0.061743457, -0.0007093663, -0.008203818, 0.015780117, 0.06527263, -0.016182045, 0.023977194, -0.028089343, 0.032197665, 0.0043767863, 0.011279381, 0.004531143, -0.0082218945, -0.008575046, -0.0072165737, -0.055044834, -0.0005709929, 0.034671977, -0.008966345, 0.026178595, 0.011663155, 0.037748747, -0.027827507, -0.06942711, -0.0077534295, 0.0057471073, 0.02985667, -0.026857499, -0.037464853, 0.06538363, -0.07548333, 0.002077444, -0.053116042, -0.034974977, -0.031888243, -0.023684043, -0.051928435, -0.009853403, 0.017266627, -0.003146875, 0.035690624, 0.030107316, -0.020570764, -0.0047956104, 0.083237916, 0.016321417, -0.03627865, -0.06488497, 0.021075621, 0.029193996, -0.00880226, -0.04223271, -0.019815737, 0.012248498, 0.04702288, 0.014284666, -0.03245892, 0.023968777, -0.037915092, -0.011713932, 0.042637136, 0.06593271, 0.0049146293, -0.022603322, -0.03165402, 0.010489287, 0.039082218, 0.053095445, 0.0025106214, -0.0108426325, 0.03829466, -0.013104427, 0.026639352, 0.0014656624, 0.014220215, 0.011524953, -0.0073898374, 0.022718558, -0.039276134, 0.043228146, 0.02562641, 0.039771035, 0.019592103, -0.043801773, 0.0047593783, -0.01704953, 0.018972648, -0.008012788, 0.015794175, 0.09298769, 0.002380093, 0.00092542457, -0.04004143, -0.028624788, 0.07333345, -0.0020863668, 0.03791584, -0.0255291, 0.09642281, -0.0067908033, -0.0061047915, -0.021116484, -0.020933913, 0.011862035, -0.048396986, -0.025723215, 0.056572493, -0.0009170624, -0.0008649299, -0.018684011, 0.011296018, -0.01967122, -0.03148228, 0.09324395, -0.06457519, -0.012861503, 0.028510524, 0.05293939, -0.0051277704, -0.0040844083, 0.06836065, -0.07019631, -0.076515205, -0.017608285, -0.065494135, 0.011416885, 0.06927686, -0.024670672, -0.03175104, 0.03552621, 0.00437264, 0.03342511, 0.002855187, 0.034503814, 0.0124044055, -0.0067515075, -0.031631418, 0.018570367, 0.0061557787, 0.0059047304, 0.03916309, 0.010377536, 0.05811892, 0.008798983, 0.040449232, 0.0057400335, -0.042270787, 0.042607944, -0.016312461, -0.023636436, 0.027171407, 0.011291885, -0.05066546, -0.0439075, -0.031494223, -0.026313758, -0.030892573, 0.017322691, 0.027386688, -0.030629814, 0.0014077638, 0.07095604, -0.048531663, -0.004070086, 0.012719577, 0.054415207, -0.009168783, -0.018312342, -0.0037828276, 0.039649528, -0.01148988, -0.03861597, -0.00956558, 0.025782194, -0.0021163519, 0.0058290134, 0.020539587, -0.03608633, 0.034127902, 0.003413515, 0.07858741, -0.021957131, -0.044566404, 0.060703382, 0.016253995, -0.06834571, -0.012273578, 0.0029038435, -0.01451343, 0.026746836, -0.026398325, -0.036251925, 0.0668642, 0.011843949, 0.0114990305, -0.05634451, -0.0048650927, 0.027448557, -0.037195206, -0.022807004, -0.031807017, 0.017467186, -0.004632325, -0.00054739637, -0.026186198, -0.026799204, 0.05026009, -0.009801412, -0.008176581, 0.018746858, -0.008595139, -0.020973746, -0.03843497, 0.02410668, -0.030612286, -0.03737598, -0.02413024, -0.03711415, -0.00039735483, 0.052083164, -0.01835486, 0.013093093, -0.049525, 0.0068037678, 0.008277957, 0.062308855, -0.025766809, -0.027836991, -0.026617836, -0.0040802914, 0.025061548, -0.05178804, -0.0069034523, 0.07574764, 0.019011945, -0.034060895, 0.008489367, -0.07309229, 0.02520528, 0.032863814, 0.014781099, 0.011995648, -0.07021776, 0.0640386, 0.013111348, 0.042170648, -0.024189612, 0.029928055, -0.028198931, 0.03422637, -0.016934346, -0.061943743, -0.041929204, -0.0011810649, -0.018386558, -0.034663234, -0.009749319, -0.033414673, -0.024427116, -0.039193198, 0.008711018, 0.0103303585, 0.017042374, 0.028533965, -0.023184113, 0.04847446, -0.027193815, -0.032290332, 0.037455373, 0.034632742, 0.0440798, 0.086377926, -0.0040769908, -3.529613e-05, 0.00868498, -0.025726091, -0.03327704, 0.026169673, 0.014116041, -0.0212261, -0.008148226, -0.01129348, 0.030845173, 0.00092290377, 0.025835834, -0.01281364, -0.0020195316, 0.014020543, 0.0033393244, -0.067459345, -0.018249208, -0.015192303, -0.00542445, 0.07368392, -0.03342295, 0.025703274, -0.052421436, -0.015882237, -0.035860844, 0.031457555, -0.06805703, 0.005319251, 0.044028796, 0.012079683, 0.01599353, 0.04332958, -0.09155645, 0.061476905, -0.017715622, -0.017844623, 0.076838255, -0.017990809, 0.027624577, 0.038744435, 0.060149103, 0.038998984, 0.056500975, 0.0385483, 0.015274623, -0.01130003, 0.007889415, 0.06970987, -0.0029043725, 0.0009951394, -0.05867743, -0.0013437541, -0.032262504, 0.09700861, 0.031704474, -0.024367908, -0.018908495, 0.0358225, 0.013003232, 0.004866661, -0.06463908, 0.016824236, -0.009684222, -0.048943516, 0.034550115, -0.00052855036, -0.019289616, 0.05345318, 0.0013305855, -0.0060438626, -0.090177365, -0.024964351, 0.013743996, -0.014465453, -0.07489838, 0.0147427805, 0.014115415, -0.018304402, 0.02303477, -0.006736759, 0.011391928, -0.041059125, 0.023542667, -0.0031606394, -0.028964821, 0.016862744, 0.032708094, 0.024502106, -0.05139341, 0.015274349, 0.07713486, -0.058583338 ] }, { "values": [ -0.008918077, -0.04271006, -0.01855436, -0.007706302, 0.01698819, 0.018863117, 0.007997618, -0.010240047, 0.013226073, 0.00029572693, 0.025129525, 0.03497685, 0.04375256, -0.031482458, -0.069023736, -0.08074149, -0.024521561, -0.0008864179, -0.0928043, -0.05883775, 0.012733037, 0.016657557, 0.017786406, -0.010647882, 0.0020239719, 0.06877873, 0.0134872785, -0.048206057, 0.027493773, -0.04480043, 0.01915965, 0.04183723, 0.025279585, -0.015628735, 0.05197158, 0.02834305, -0.067309566, -0.007450169, 0.026591841, -0.052083157, -0.057956856, -0.018774092, -0.038324118, 0.020833315, -0.04547045, 0.018655078, 0.056053717, 0.014428613, 0.014551155, 0.018435119, 0.054576542, -0.012719085, 0.020924985, -0.0055653946, -0.026201515, -0.034966625, -0.07589565, -0.018439487, 0.04208301, -0.01517091, -0.01338719, -0.003277309, -0.060779043, -0.014117903, 0.04323528, -0.002014838, -0.059807334, -0.02535362, -0.008230823, 0.039009605, -0.036383364, -0.020571856, -0.018401872, -0.0020075797, -0.03701129, -0.0023584226, -0.0031084316, 0.0007047041, -0.07252412, 0.049630553, 0.06530091, 0.020869624, 0.046642523, 0.022206804, 0.0057222517, -0.018846951, 0.035380155, -0.04827022, -0.039558884, -0.04072293, 0.118398815, 0.0005921329, -0.06547001, 0.009752597, 0.0017184931, -0.021095177, -0.03835188, -0.07622743, 0.022251576, 0.08300054, -0.030491952, -0.026988521, -0.030469801, -0.066943765, 0.046145923, 0.009271234, 0.0041053067, -0.043067653, -0.031286556, 0.014958325, -0.044847727, -0.014224856, 0.009884582, 0.016250918, -0.0038897027, -0.030851342, -0.013607239, -0.024479661, -0.050340448, -0.029679839, -0.04246515, 0.0087619135, -0.05753271, 0.058760297, -0.0060589383, -0.014828408, -0.027268205, -0.070250005, -0.025884261, -0.053561028, 0.09578749, -0.122911416, 0.0054437323, -0.019123688, -0.033640806, -0.031694006, 0.06568792, 0.045160126, 0.023098888, 0.01978296, -0.039702803, -0.013013387, -0.015830968, 0.049198184, -0.016934505, -0.038974404, -0.01094648, -0.020920573, -0.029625304, 0.021502804, -0.06714381, 0.017657677, 0.008815659, -0.000640845, -0.063049234, 0.058996506, 0.07578099, 0.010303916, 0.014349586, -0.040021673, 0.04882191, 0.0062047485, 0.027036559, 0.060917955, -0.038630307, -0.02314121, 0.03698011, -0.071863234, -0.041974414, -0.042497836, 0.042399637, -0.031681135, -0.06535492, -0.07291182, 0.02478621, 0.034243125, 4.5229363e-06, 0.01930039, -0.03712039, 0.011070134, 0.0422911, 0.05481627, -0.046298254, -0.012776518, -0.033618405, -0.026652725, -0.03251649, 0.087337896, -0.0025427616, 0.038730413, 0.028218277, 0.020963507, 0.010081912, 0.054028727, 0.030998904, -0.0023219367, 0.05185298, -0.0047235796, 0.020612888, -0.016888665, 0.020948634, -0.001077604, -0.010342231, 0.034742296, -0.046278935, 0.015326705, -0.018890657, -0.010339427, 0.04815182, -0.025951598, -0.00066932413, -0.018692812, 0.042335756, -0.006366252, -0.011484859, 0.034940105, 0.071927905, 0.055582706, 0.04523538, -0.01741459, -0.064281285, -0.014999971, -0.0014338921, -0.014812512, 0.02797738, -0.023243831, -0.03632707, -0.069429986, 0.003013912, 0.011823612, -0.0020392565, 0.005149461, 0.011047835, 0.004996487, 0.045448504, 0.052999604, -0.01456823, 0.036130168, -0.006580079, -0.031712353, -0.00096318213, 0.017058676, 0.03178158, 0.027120957, 0.025645886, 0.063256785, 0.035426106, 0.054702207, -0.040626563, -0.04580153, -0.019039938, -0.019397628, -0.061942693, 0.008820572, -0.059281517, -0.020577809, 0.02867781, -0.05835171, 0.0052949577, -0.03457899, 0.049923662, 0.027487302, -0.007158733, -0.060992163, -0.0070235166, -0.06808939, -0.024056053, -0.010066928, 0.09604777, 0.0048567993, 0.018113755, 0.021608528, -0.00520148, -0.019604543, 0.02272807, 0.02768118, -0.031415135, -0.0070240954, -0.019213844, -0.04828359, 0.04308949, -0.043144245, -0.0059755724, -0.033087607, 0.0064233844, 0.020081038, 0.024905616, 0.029284982, -0.039705154, -0.03411203, 0.026386013, 0.06418907, 0.036260094, -0.0049487175, 0.021930458, 0.0108219255, 0.015522686, -0.019000774, -0.049409296, -0.0050168354, 0.045480534, 0.063237526, 0.0047373325, 0.004637011, -0.0122657465, 0.019528994, -0.053236254, -0.041535057, 0.017166203, 0.044650074, -0.008266013, 0.035138622, -0.0071054273, -0.050848927, 0.028317884, -0.015357731, -0.11603173, 0.006842581, -0.011230232, -0.019038728, 0.022967754, -0.00522729, 0.03812866, -0.017974867, 0.053979438, -0.01019355, 0.012343234, -0.01358903, -0.005288847, -0.0039157355, 0.0043839524, 0.02409248, 0.03145056, -0.0067083766, -0.033353515, 0.015059401, -0.0025009285, 0.0054878383, 0.060987834, -0.006876898, 0.06611042, -0.008871932, 0.010692514, 0.06342823, 6.515639e-05, -0.06639465, 0.060171764, -0.013064603, 0.046898764, -0.046094798, -0.054354638, 0.060089275, 0.01918808, -0.03871316, 0.012763874, 0.030374272, 0.021570086, 0.02472413, 0.01568976, -0.028220035, 0.0017009424, 0.028504618, 0.022828793, -0.017063743, -0.002697216, 0.012929312, 0.023285272, 0.026109021, -0.021255052, -0.054934908, 0.028310925, 0.042404335, 0.016904222, 0.025885297, -0.007325655, -0.03485939, 0.0011861882, 0.021538831, 0.0029522595, -0.05825709, -0.01943915, -0.043519538, 0.0047173435, -0.02900713, 0.020902453, -0.006677577, -0.02567597, -0.0124960905, 0.017665135, 0.022977581, -0.04856606, 0.08792955, -0.018949172, -0.0074974587, -0.0061773723, 0.030302508, -0.03541229, 0.02510018, 0.04041644, 0.0024282383, -0.014452901, 0.007971182, 0.07393787, -0.027282575, 0.00047426892, 0.013006467, 0.058328796, -0.010936693, 0.025600512, -0.02809064, 0.025632072, 0.013886821, -0.001760869, -0.018749943, -0.015073643, -0.0075154244, 0.017596299, -0.04110909, 0.012396126, 0.02333441, -0.008943412, 0.04167338, 0.023429036, 0.020426095, -0.026992224, -0.06296314, -0.007898961, 0.018185833, 0.029814737, -0.018280858, -0.026564691, 0.05673746, -0.0630545, 0.020308375, -0.044462293, -0.031653002, -0.03208657, -0.0105057405, -0.042914353, -0.007654318, 0.008894461, 0.0072736586, 0.023246389, 0.03673778, -0.00311456, -0.011246491, 0.08445193, 0.021507818, -0.023281023, -0.07002556, -0.0101633, 0.0016346502, -0.023471437, -0.024251353, -0.033348054, 0.015864646, 0.019931134, -0.002526166, -0.04157975, 0.039638896, -0.07393919, 0.0054554627, 0.052175604, 0.05621125, -1.0168559e-05, -0.027990317, -0.045039717, 0.019546518, 0.052263737, 0.059328146, -0.011688709, 0.0144177405, 0.042140167, -0.035022188, 0.020648148, 0.007612559, 0.011708692, 0.010243269, -0.006909241, 0.024437523, -0.04416177, 0.035542343, 0.032226104, 0.056323312, 0.027765907, -0.049437147, 0.014903042, -0.0082950415, 0.023477059, 0.027689356, 0.039981626, 0.10372685, 0.008636742, 0.020393176, -0.015401802, -0.026556438, 0.044952746, 0.018891452, 0.037106656, -0.008105591, 0.098491676, -0.027493749, -0.00584331, -0.029398682, -0.0021674137, 0.024445841, -0.06536888, -0.015642937, 0.052296042, -0.012031638, 0.020505868, -0.036723934, 0.00041101617, -0.004453595, -0.033336822, 0.06910683, -0.05909105, -0.02258975, 0.031057397, 0.07639578, 0.017178219, 0.0018935365, 0.06846859, -0.043543037, -0.06906831, -0.029998265, -0.02832606, -0.005857829, 0.07765123, -0.026539022, -0.027972229, 0.032644592, -0.024441082, 0.03386154, -0.009464193, 0.02321809, 0.010465019, -0.003101013, -0.028372936, 0.03200151, 0.023770507, 0.023662906, 0.037051994, 0.011350682, 0.06516285, -0.00061275007, 0.024624042, 0.017222716, -0.047404002, 0.044536885, -0.0074696057, -0.027901104, 0.024437768, 0.011411219, -0.040693093, -0.047466923, -0.03617185, -0.042562064, -0.04415558, 0.026901318, 0.023358539, -0.019855645, 0.010180402, 0.043576695, -0.013309844, -0.019212069, 0.0074532432, 0.050459445, -0.026196878, -0.035114963, -0.0055707493, 0.05849684, 0.0015195099, -0.030381791, -0.009972587, 0.016446523, 0.015544074, 0.010548052, 0.018415887, -0.033928007, 0.03145066, -0.018122569, 0.06197495, -0.027328983, -0.028687743, 0.06683645, 0.017069941, -0.05559858, -0.0017131877, -0.005690499, -0.0074489308, 0.032520514, -0.021155983, -0.02833827, 0.06703707, 0.0011665516, 0.012062928, -0.036416627, 0.001996276, 0.03190421, -0.029767403, -0.012968535, 0.0006817049, 0.021814767, -0.01021966, -0.0015176887, -0.016575372, -0.014953987, 0.05378035, -0.011714118, -0.0063905073, 0.010446041, -0.0055148, -0.0076125273, -0.045807734, 0.02981375, -0.02546103, -0.044110607, -0.0067714197, -0.033248376, 0.008016231, 0.039148, -0.039629456, 0.03018211, -0.05445254, 0.0058029145, -0.009917285, 0.05030902, -0.034888834, -0.019644052, -0.020815585, -0.008719996, 0.03019415, -0.04304708, -0.0108745275, 0.06313344, 0.0114178, -0.038992696, 0.005932985, -0.08527762, 0.023088962, 0.022022022, 0.025043854, -0.009728205, -0.07178884, 0.07754664, 0.010066719, 0.042476784, -0.009837368, 0.034319155, -0.023328254, 0.05660681, -0.01714671, -0.061821476, -0.0443795, -0.011325736, 0.022920618, -0.03921482, 0.0128183, -0.023801487, -0.026737109, -0.053633787, -8.05962e-05, 0.006398694, 0.00028971574, 0.028451985, -0.011181152, 0.024815857, -0.019072536, -0.031306688, 0.04201755, 0.021632602, 0.05071905, 0.056622293, 0.003100123, 0.000918898, 0.009156434, -0.016640574, -0.035555996, 0.019041846, 0.008354213, -0.03598297, -0.018259685, -0.008137885, 0.028154258, 0.007973035, 0.015351683, -0.012203019, 0.01933107, 0.0042170966, 0.0059806085, -0.07867635, 0.014154374, 0.0038891647, 0.007437046, 0.06805473, -0.053839926, 0.0052450276, -0.062552296, 0.00882426, -0.036492236, 0.0055919862, -0.06858023, -0.0067827604, 0.046526, -0.009910332, 0.037419472, 0.057722945, -0.08102002, 0.057791788, -0.015337232, -0.011370106, 0.078900136, -0.0089089945, 0.043633934, 0.03490743, 0.048544656, 0.040172927, 0.05599239, 0.033027153, 0.024744317, -0.02991598, -0.016020266, 0.07249067, -0.0013580732, -0.016916303, -0.04267672, 0.016620545, -0.03802047, 0.10536169, 0.032959685, -0.030095203, -0.0023928923, 0.027184976, 0.00080932205, -0.0050622053, -0.043846935, 0.024565345, -0.027581256, -0.04839764, 0.01284291, -0.014297834, -0.024620175, 0.031869117, -0.002992963, -0.0027812733, -0.05286316, -0.0013640809, -0.0036904055, -0.02263523, -0.07904375, 0.015530145, 0.004540787, -0.0026229431, 0.021124005, 0.004191429, 0.019950807, -0.050372664, 0.028961403, 0.012663657, -0.024346434, 0.022756934, 0.00722566, 0.030371103, -0.07040093, -0.020590391, 0.06298703, -0.06621871 ] }, { "values": [ -0.019828098, -0.05598082, -0.050593097, -0.024792146, 0.024987664, 0.024143988, -0.00080786704, -0.014801599, -0.003397507, 0.016339678, 0.013555187, 0.042985447, 0.05235775, -0.019747714, -0.061711103, -0.07312458, -0.037933104, 0.0015904701, -0.07563862, -0.076416366, -0.01067532, 0.012513486, 0.014737421, -0.030390002, -0.0059824963, 0.07029521, 0.0073447535, -0.040594008, 0.045875642, -0.046277564, 0.013623758, 0.03599669, 0.028798, -0.0073029213, 0.07813462, 0.010945525, -0.041219614, 0.025077397, 0.021205295, -0.034512375, -0.044174124, -0.009865946, -0.039912857, 0.0142129995, -0.029424498, 0.017866995, 0.04994524, 0.004035154, 0.0002676131, 0.030797947, 0.04772659, -0.008463094, -0.0044420613, -0.01772578, -0.044881783, -0.027495068, -0.05098957, -0.04456737, 0.05482933, -0.046739608, -0.01872822, -0.015599824, -0.040717863, -0.010419405, 0.08040872, 0.012639641, -0.06025801, -0.027918804, -0.0022888028, 0.023199577, -0.028654875, -0.024877386, -0.007069589, -0.006215906, -0.045108534, 0.013560248, -0.0104763415, 0.01962705, -0.069333516, 0.038856406, 0.014585895, -0.007940734, 0.08725731, 0.013637718, -0.0015812181, -0.03821535, 0.007626776, -0.023165852, -0.03135538, -0.02503867, 0.1274635, -0.019911977, -0.036444206, 0.015697338, -0.00037026877, -0.014225778, -0.0333105, -0.07537395, 0.0032688328, 0.102576874, -0.033609703, 0.002582225, -0.025902158, -0.0730483, 0.049228158, 0.0017676043, 0.016606783, -0.060227208, -0.029393846, 0.02321298, -0.02192528, -0.020080656, -0.008333703, 0.015218434, 0.019363932, -0.0088355765, -0.009394522, -0.01592008, -0.044860777, -0.010119465, -0.02618478, 0.0015685512, -0.038473077, 0.069065034, -0.014399567, -0.014692459, -0.009550009, -0.06973339, -0.02010554, -0.07541651, 0.08439737, -0.09329414, 0.006886681, -0.014886075, -0.0375553, -0.03347324, 0.02520189, 0.043096554, 0.04000955, 0.008698572, -0.026613304, -0.0046229376, 0.017534237, 0.026352946, -0.043102648, -0.05942181, 0.0135864215, -0.012246566, -0.028352546, 0.009197489, -0.10347071, 0.019413842, 0.029991897, -0.0073889694, -0.07244958, 0.021930812, 0.08731671, 0.004576431, 0.009121228, -0.031672314, 0.025582226, 0.00058955676, 0.031421866, 0.060129296, -0.063171454, -0.035406355, 0.044949826, -0.08843257, 0.002175727, -0.04034238, 0.0485729, -0.027929604, -0.041726507, -0.09239087, 0.050106723, 0.040125113, 0.008885626, 0.04924308, -0.03653421, 0.0072610597, 0.049633853, 0.023018586, -0.03846417, -0.014933035, -0.028014233, -0.003702951, -0.03020691, 0.09188657, -0.018270284, 0.045679316, 0.034984566, -3.694201e-06, 0.027265813, 0.0426106, 0.03996314, 0.01181543, 0.05352762, -0.015514741, 0.034462716, -0.023292193, 0.02907516, -0.013100014, 0.00039426936, -0.0013668055, -0.04175545, 0.023502843, -0.046513993, 0.004406934, 0.047178645, -0.0036297746, 0.00085950276, -0.0151353935, 0.03475928, 0.0012866143, -0.014344362, 0.020056514, 0.06725419, 0.06371732, 0.02330707, -0.020490652, -0.04578645, 0.007551276, 0.004691881, -0.0077019418, 0.008456823, -0.039020468, -0.038656563, -0.07558214, 0.0121120475, 0.01409498, -0.008955559, -0.006518308, 0.034412526, 0.011563549, 0.061108634, 0.059124827, -0.019753456, 0.021417161, 0.022386204, -0.043660298, -0.02461006, 0.02483041, 0.029463818, 0.025554724, 0.037481107, 0.022265187, 0.02742383, 0.07815188, -0.07314116, -0.032500505, -0.012813008, -0.0130602755, -0.040956534, 0.014431226, -0.053377595, -0.028605506, 0.01932964, -0.059187934, -0.0060396395, -0.037530284, 0.044978112, 0.036856093, 0.0005677492, -0.070243716, -0.021509074, -0.07490139, -0.0026849324, -0.0038494666, 0.09627411, 0.013850547, 0.019557072, 0.021193117, 0.0013985954, -0.047916953, 0.04284286, 0.015185536, -0.02881673, 0.020110961, -0.017938443, -0.05225508, 0.027531095, -0.03836566, -0.022288026, -0.016665928, 0.015365977, 0.016411977, 0.028854573, 0.0016910027, -0.036731213, -0.043769393, 0.042759854, 0.058048453, 0.03346521, 0.0105223665, 0.027320663, -0.009821719, 0.0061219805, -0.008463961, -0.010238578, -0.022619832, 0.045801338, 0.056121286, -0.010079518, 0.0009881693, -0.02166211, 0.037527174, -0.05672793, -0.046134915, 0.0038144419, 0.06363404, 0.0053567756, 0.05065721, -0.0061507043, -0.059509274, 0.030405886, -0.001655416, -0.10401225, 0.026395475, -0.015674284, -0.031559777, 0.045944273, 0.011792931, 0.01277526, -0.02172124, 0.03427203, -0.024363687, 0.0036426424, -0.024710465, -0.015550427, -0.010167288, 0.008265561, 0.018802473, 0.005946231, -0.029361889, -0.04737792, 0.0020092656, -0.018780762, 0.01546726, 0.057665017, -0.013071044, 0.076234855, 0.011119026, 0.009239353, 0.045961045, -0.012168098, -0.059943266, 0.028979197, -0.0043632723, 0.04489213, -0.03359522, -0.03901178, 0.042363282, -0.0002006544, -0.030335272, 0.041432828, 0.031506296, 0.026931275, 0.03533571, 0.037799742, -0.030911263, -0.016498918, 0.040376652, 0.019923573, -0.021220224, -0.007835481, -0.008435055, 0.029852318, 0.0029178855, -0.015961135, -0.04999473, 0.005167288, 0.06834138, 0.0152336275, 0.0019880591, -0.0058894292, -0.056351636, -0.00063503976, 0.019631729, 0.011038774, -0.04503181, -0.033709183, -0.03292835, 0.010038149, -0.038247842, 0.037048906, 0.011287071, -0.024433246, -0.028572971, -0.0031760542, 0.008381272, -0.033256464, 0.09120357, -0.021294717, -0.025791183, 0.00010555838, 0.023695288, -0.024537887, 0.034812585, 0.038541973, 0.026259633, -0.021097329, 0.037647974, 0.06662978, -0.016816786, -0.006294335, -0.00064622064, 0.062418796, -0.016610872, 0.034349393, -0.0014000165, 0.008474249, -0.0013915768, 0.012423739, -0.0030045134, -0.007359583, 0.0013236506, 0.013087967, -0.05291109, 0.004689278, 0.036872957, 0.002460292, 0.037690047, 0.035654664, 0.046814267, -0.012857731, -0.059334975, 0.00016226861, 0.022627825, 0.03228432, -0.015085179, -0.0028822753, 0.060724963, -0.05587104, 0.025433732, -0.03411547, -0.04184139, -0.014363091, 0.0010754087, -0.04008742, 0.003328104, 0.008464079, 0.013926888, 0.043772545, 0.035691436, -0.02179482, 0.0076077646, 0.07131233, 0.006557046, -0.013627953, -0.049898956, 0.0055549997, 0.009223695, -0.01766737, -0.028972175, -0.011709925, 0.043513913, 0.025286753, 0.01546139, -0.035583768, 0.020011773, -0.059368074, 0.010680535, 0.032679357, 0.054666873, 0.007427014, -0.028200122, -0.038504377, 0.020399097, 0.056902867, 0.050834958, 0.006923127, -0.00063236826, 0.021833697, -0.022883257, 0.027752398, 0.00056603865, 0.030278355, -0.029735655, -0.013781715, 0.017108697, -0.04905991, 0.034659527, 0.023702849, 0.05113676, 0.017973527, -0.05645569, 0.008334429, -0.005841224, 0.0016987843, 0.011516757, 0.016093872, 0.09926594, 0.020820789, 0.016714869, -0.026833, -0.03919469, 0.056670964, 0.0061835744, 0.011273744, -0.028861849, 0.10597856, -0.0021328107, -0.017024636, -0.015655758, -0.002595231, 0.029165646, -0.04275115, -0.008847179, 0.055693854, -0.0030767976, -1.7676917e-05, -0.030518355, 0.016786866, -0.008994908, -0.04895321, 0.08448193, -0.07242703, -0.011822353, 0.011837171, 0.08231625, -0.0165, -0.003694863, 0.056991372, -0.06043819, -0.06281916, -0.01681433, -0.034714703, 2.472413e-05, 0.060446456, -0.01648685, -0.029137662, 0.04295904, -0.01746322, 0.01885531, -0.00088681, 0.039800506, 0.0014054313, -0.0130307255, -0.023787336, 0.04546056, 0.010954823, 0.003494775, 0.041810773, 0.03584275, 0.06501593, 0.0074901064, 0.024924913, 0.013854623, -0.03896483, 0.07059761, -0.00079452817, -0.03423455, 0.027708352, 0.003063879, -0.038871232, -0.04116138, -0.038209986, -0.037941232, -0.026285797, 0.026737921, 0.019744372, -0.027512556, 0.0031634027, 0.056441076, -0.039541386, -0.0088753095, 0.025839027, 0.050841704, -0.04351528, -0.033094067, -0.020980854, 0.044310533, -0.007586695, -0.05112015, -0.017304001, 0.02615755, 0.012445036, 0.025020199, 0.021196919, -0.026358865, 0.05429873, 0.0038051943, 0.039887875, -0.031990446, -0.028999303, 0.048043247, 0.029946852, -0.060004197, -0.0056176013, -0.0052138963, -0.02513497, 0.013952838, -0.014629594, -0.04529879, 0.050775588, 0.0078037046, 0.027734663, -0.04991841, -0.01109323, 0.026510824, -0.032985903, -0.025007516, -0.0019172954, 0.020584488, -0.004640743, 0.031194393, -0.013268422, -0.0060497834, 0.061757315, -0.004240966, -0.011891035, 0.0037780488, 0.01583109, -0.031848002, -0.04573131, 0.018213972, -0.028638735, -0.040145226, -0.000626969, -0.018118732, 0.01568989, 0.05695534, -0.039075714, 0.03207273, -0.040996764, -0.009241464, -0.013930855, 0.04179755, -0.033446748, -0.028045198, -0.030123891, -0.022730498, 0.04773947, -0.042962875, 0.0052780886, 0.06435373, 0.007314287, -0.042313203, -0.0041560344, -0.07682275, 0.022950709, 0.032634746, 0.008059822, 0.0076747476, -0.06764378, 0.057928566, 0.0231842, 0.05104154, -0.026543716, 0.01084588, -0.032565337, 0.043556094, -0.0046251244, -0.05667869, -0.062728606, -0.0064101783, 0.0027629454, -0.03848913, 0.01116397, -0.020127123, -0.036013447, -0.046166826, 0.021788301, 0.031803183, 0.013760119, 0.014768131, -0.031264983, 0.041749965, -0.010937658, -0.036731597, 0.03430747, 0.042069312, 0.035022985, 0.06813031, 0.0013754136, 0.0058585913, 0.0025682978, -0.020708362, -0.055290163, 0.020088453, -0.0028010136, -0.025609992, -0.012549789, 0.0020380586, 0.031334464, -0.0038654134, 0.01640511, -0.0042986716, 0.012541253, 0.013012132, 0.027622791, -0.057163175, -0.005580283, 0.005070614, -0.0022700657, 0.086484715, -0.041131336, 0.037359033, -0.06570798, -0.004277331, -0.043557037, 0.01807681, -0.058233988, 0.007598125, 0.03690057, -0.017170463, 0.02103366, 0.03666645, -0.08219317, 0.045683682, -0.01980327, -0.015765898, 0.075446, -0.0034420325, 0.02303861, 0.02821767, 0.052822683, 0.03912294, 0.054567017, 0.049090803, 0.021118918, -0.023500646, -0.0175481, 0.06815537, -0.0062678433, 0.0031004488, -0.06197428, 0.022339752, -0.023857603, 0.0912796, 0.013696473, -0.010337014, -0.003805901, 0.030740343, -0.0028065536, -0.0015328402, -0.05069236, 0.024283707, -0.027604142, -0.037462175, 0.022798086, -0.014697264, -0.0063327155, 0.049035117, 0.012607683, -0.004262816, -0.05745675, -0.022473823, 0.0024338516, -0.006960088, -0.06604449, 0.016246106, 0.018806241, -0.017034777, 0.011879615, -0.0067438004, 0.01433936, -0.044004332, 0.022650687, -0.0023350052, -0.024877455, 0.01918786, 0.0065505626, 0.03287631, -0.07756061, -0.012233988, 0.061818376, -0.047274787 ] }, { "values": [ -0.033081114, -0.05102139, -0.03037279, -0.03067342, 0.0022233808, 0.031065231, -0.012103868, 0.0013753305, 0.008208225, -0.024621267, 0.023222173, 0.031921048, 0.04951603, -0.009590011, -0.05568807, -0.08722797, -0.04211652, 0.0069605755, -0.09165691, -0.07232573, 0.018122263, 0.01721557, 0.012256639, -0.048777875, -0.001845331, 0.035273254, -0.007906009, -0.038151924, 0.031019395, -0.035899963, 0.018163402, 0.042196587, 0.035249446, -0.0012321938, 0.055810757, 0.038089518, -0.041703854, 0.024498688, 0.043032452, -0.05007759, -0.039808385, -0.04388783, -0.043585073, 0.026028078, -0.010398219, 0.009997894, 0.048118323, -0.0024031128, 0.01821209, 0.022601366, 0.058140505, -0.024858365, -0.0085674655, -0.04123798, -0.034889232, -0.042199332, -0.049999617, -0.03326688, 0.056206394, -0.010646826, -0.030433176, -0.0064914348, -0.054942608, -0.0012218932, 0.056747556, 0.03448813, -0.055468775, -0.02006117, -0.020278445, 0.02783916, -0.04597372, -0.036678903, -0.0063164835, -0.00042198226, -0.03652948, 0.0055025653, -0.0055119516, 0.0039742026, -0.058107067, 0.04307386, 0.04117738, 0.0010042939, 0.069029205, 0.026978249, -0.011727162, -0.037814323, 0.01635293, 0.0033704028, -0.04703757, -0.022332268, 0.13691422, -0.027773626, -0.025009532, -0.019749282, -0.0037912223, -0.014679579, -0.021954766, -0.06747897, -0.002721321, 0.07368649, -0.042138748, 0.010611783, -0.0077029937, -0.068532676, 0.029793182, 0.017961191, 0.004224425, -0.042487074, -0.054419413, 0.009095902, -0.026370415, -0.023463609, 0.016249942, 0.017690666, 0.013292502, -0.022247888, -0.013426851, -0.009271218, -0.041645914, -0.020832207, -0.05681921, 0.0012700802, -0.04526875, 0.08776738, -0.015741602, -0.026817074, -0.0067838724, -0.05798905, -0.020646967, -0.054154422, 0.108361095, -0.088740766, 0.028370494, -0.030036595, -0.05025117, -0.010548786, 0.07194647, 0.020411221, 0.029848387, 0.010557333, -0.04699991, -0.00800948, -0.001848154, 0.03352295, -0.025536833, -0.053954247, -0.0028509365, -0.024316253, -0.05987643, 0.025044497, -0.0807097, 0.008254667, 0.041619435, -0.0018272635, -0.0764091, 0.032759763, 0.07449682, 0.007147345, 0.0022704487, -0.046323832, 0.0331149, -0.009567068, 0.040760636, 0.08111453, -0.05129081, -0.010667473, 0.058945995, -0.07527029, -0.017680224, -0.031323627, 0.039129786, -0.033453207, -0.048156198, -0.08471333, 0.025259836, 0.04865272, -0.022652034, 0.03747772, -0.060478438, -1.0766474e-05, 0.04153628, 0.040747754, -0.046638258, -0.016446853, -0.0016973034, 0.0034032871, -0.016829174, 0.07058679, -0.018942477, 0.0439232, 0.04397231, 0.034242768, 0.01820789, 0.03646686, 0.011222186, 0.009503204, 0.057147507, -0.034973573, 0.028765563, -0.025621546, 0.015327624, -0.009997903, 0.0031396823, 0.010011572, -0.06277392, 0.012597786, -0.017970955, -0.010226453, 0.05966501, -0.022167386, 0.0024983033, -0.010884198, 0.030819358, 0.018139968, -0.008578396, 0.02570048, 0.07843584, 0.06937252, 0.05758459, -0.009332048, -0.066434555, 0.005480633, -0.0059218565, 0.0011512992, 0.01433448, -0.047071185, -0.023378514, -0.06143968, 0.0117732985, -0.026994716, 0.0076258564, 0.0032149968, 0.0228192, 0.02836533, 0.06880893, 0.06360245, -0.0072349473, 0.028096514, 0.014433772, 0.0025487205, 0.0025994238, 0.011617433, 0.013039637, 0.039607536, 0.039386604, 0.043723486, 0.023464186, 0.052183636, -0.047353983, -0.05938062, 0.0027364495, -0.032509, -0.027180273, 0.01643067, -0.04297361, -0.0020747415, 0.022301806, -0.0393106, -0.0030431277, -0.01850482, 0.059630144, 0.0243996, -0.0012921977, -0.047094263, -0.026267458, -0.047419235, 0.003645691, 0.014695271, 0.08899882, -0.02418271, -0.013037422, 0.032201905, -0.0026094033, -0.021344086, 0.043477215, 0.021159792, -0.019450625, 0.015243494, 0.003620307, -0.042495463, 0.035763513, -0.030984268, 0.01188323, -0.021296106, -0.0017259632, 0.023429297, 0.023893863, 0.010187802, -0.037267897, -0.047549926, 0.036097683, 0.0782156, 0.02860999, -0.013368351, 0.041539952, -0.01802775, -0.0012464881, 0.0062371143, -0.036375765, -0.002043333, 0.07137667, 0.05897671, -0.017755328, 0.016493902, -0.019680718, 0.03618852, -0.053837147, -0.026542759, 0.016240291, 0.041012805, -0.0010087256, 0.02691252, -0.024829399, -0.069021665, 0.025679324, -0.026835034, -0.10724569, 0.019369125, -0.014039517, -0.044173982, 0.025162095, 0.0004960799, 0.04025012, -0.005536218, 0.034354355, -0.014356422, 0.013746842, -0.021045562, -0.028045898, 0.0009414747, 0.014676699, 0.006516763, -0.0035112712, -0.011702889, -0.018413007, 0.02125614, -0.027450658, 0.013117671, 0.06434166, -0.028358558, 0.10559139, 0.0061754636, -0.0039475537, 0.061275423, 0.0128201, -0.06435989, 0.020302422, -0.032243673, 0.055193223, -0.037428603, -0.026416164, 0.038227048, 0.007299572, -0.037969667, 0.0025961697, 0.028857851, 0.014415101, 0.037711333, 0.01490479, -0.0022650294, 0.00092352304, 0.04580243, 0.022320356, -0.015514362, 9.492001e-05, 0.004421991, 0.021453625, 0.004792427, -0.040010855, -0.032046285, 0.025900198, 0.059950076, 0.018206064, 0.008677525, 0.011905261, -0.02716522, 0.022470543, 0.026957197, 0.034237355, -0.04836376, -0.03291848, -0.029954296, -0.020517224, -0.03162496, 0.050666224, 0.0119804675, -0.016276926, -0.018142428, 0.00093685125, 0.014285351, -0.029459381, 0.09504241, -0.019958515, -0.0062232036, -0.012403304, 0.04166485, -0.026997011, 0.046737, 0.046109907, 0.03754076, -0.0047935466, 0.03236044, 0.058370035, -0.02666977, -0.006872606, 0.015479066, 0.04877562, -0.010776648, 0.042186156, -0.03672069, 0.020263059, -0.012879959, -0.008181628, -0.015197736, -0.014143005, 0.007388695, 0.014595973, -0.06727575, 0.0017191406, 0.032405656, -0.019348068, 0.027901324, 0.029145442, 0.016755663, -0.009063153, -0.052786637, 0.013837856, -0.00072129956, 0.016122704, -0.02985533, -0.011816819, 0.06380985, -0.0401701, 0.03453048, -0.029616855, -0.044635985, -0.00794162, -0.002612336, -0.04496108, 0.018611748, -0.010652237, 0.0046070856, 0.03683439, 0.029971562, -0.0045656045, -0.0027408425, 0.059923828, 0.006136738, -0.0073497957, -0.051116776, -0.018219138, 0.009898572, -0.01258542, -0.006963865, -0.020741567, 0.04440216, 0.018187907, 0.0030916436, -0.039047476, 0.033446655, -0.068937786, -0.00884699, 0.025108492, 0.03867455, -0.010101413, -0.03603614, -0.027280856, 0.015463191, 0.050160263, 0.05934399, -0.012138865, -0.00027353826, 0.019022685, -0.032992642, 0.030598659, -0.007874612, 0.025573941, -0.005957495, -0.027134204, 0.014543232, -0.04684399, 0.035060167, 0.015718753, 0.05163159, 0.028217118, -0.042434532, 0.03511643, 0.022738745, 0.021538878, 0.016649425, 0.028861733, 0.11039865, 0.02374919, 0.0005679387, -0.038553175, -0.054470338, 0.04867034, -0.000110580135, 0.030686019, -0.010406553, 0.10203702, 0.002235867, -0.01187581, -0.031045426, -0.0044590505, 0.052842114, -0.046639577, -0.020341864, 0.053266127, -0.0173952, 0.018050686, -0.034123667, -0.008320904, -0.010117333, -0.038571987, 0.06398445, -0.08902646, -0.011101094, 0.03046811, 0.08132158, 0.010733648, -0.024295177, 0.057435445, -0.04543129, -0.054025594, -0.008246486, -0.028013725, 0.00073518563, 0.07437772, -0.014440071, -0.02259815, 0.02567123, -0.031833183, 0.03327804, -0.019779827, 0.025370164, 0.0060716597, -0.008352286, -0.024243265, 0.040365446, 0.020902969, 0.017744342, 0.043198455, 0.0345668, 0.07457878, 0.033053767, 0.038103074, 0.018370727, -0.031802382, 0.057773806, -0.00015777798, -0.025596393, 0.022945466, 0.010212241, -0.03285979, -0.030516844, -0.032768387, -0.059917662, -0.016008563, 0.018144298, 0.017612651, -0.030728003, 0.0045577777, 0.027341278, -0.026580194, -0.005319094, 0.009701129, 0.040473416, -0.037384585, -0.03153217, -0.024405228, 0.04221143, -0.013128284, -0.031958878, -0.022553317, 0.018273667, 0.027339846, 0.012479241, 0.01759724, -0.041259203, 0.02344991, 0.013387258, 0.039787848, -0.031243969, -0.012771683, 0.05149806, 0.023113733, -0.05416459, 0.025702635, -0.027099881, -0.022584612, 0.017401217, -0.015234057, -0.042009898, 0.06326607, -0.015246679, 0.026873067, -0.03755242, 0.024007507, 0.013505094, -0.025218332, 0.005644674, 0.015045553, 0.027202481, -0.0014565726, 0.03369074, -0.02730007, 0.0023157578, 0.073904775, -0.008389682, -0.014280437, 0.011445412, -0.017011141, -0.009070151, -0.031418353, 0.027818602, -0.026444556, -0.022025768, 0.0041418727, -0.02114273, 0.006662654, 0.042425334, -0.052235346, 0.04123535, -0.047722004, 0.0099416515, -0.011068213, 0.017300785, -0.037809487, -0.021896645, -0.04767592, -0.014630124, 0.05124269, -0.030589653, 0.003552187, 0.068443, 0.017406432, -0.040431812, -0.021953925, -0.09366118, -0.0018506089, 0.013914111, 0.01127555, -0.0027361158, -0.07148448, 0.065610334, 0.025546541, 0.063611045, -0.00865324, 0.038823165, -0.008828243, 0.065982245, 0.00057228014, -0.04276942, -0.059694022, 0.009443294, 0.014296506, -0.032015827, 0.0004270166, -0.03917068, -0.026733404, -0.047346767, 0.011391019, 0.024240337, 0.006082991, 0.029142108, -0.011644424, 0.030937452, -0.029186485, -0.02862378, 0.048899546, 0.029384917, 0.020524308, 0.058615163, 0.027581593, 0.014368307, -0.0019606089, -0.04471269, -0.028633913, 0.029507602, 0.015786553, -0.040234063, -0.009414217, -0.004216746, 0.042802088, 0.004141926, 0.038491435, 0.010881005, 0.018618898, 0.021945383, 0.027092656, -0.06660816, 0.010592955, 0.019552836, -0.0024894488, 0.0947056, -0.033215586, 0.005636638, -0.06769634, 0.00446999, -0.03697914, -0.013230864, -0.050012812, -0.014506629, 0.033448298, -0.043665927, 0.029379735, 0.025308602, -0.06388009, 0.061077453, -0.010394326, -0.006101743, 0.0741242, -0.015200591, 0.016384134, 0.018115334, 0.0488842, 0.03574538, 0.034533422, 0.032783415, 0.018491244, -0.03091399, -0.028361829, 0.07334918, 0.011742734, -0.01156161, -0.043908726, 0.036069218, -0.032105315, 0.07944876, 0.022339096, -0.017957674, -0.020374766, 0.030963708, 0.012183593, 0.023268504, -0.025255805, 0.0170866, -0.031781673, -0.055392068, 0.022500748, -0.0006972346, -0.035687402, 0.046202872, 0.01027624, -0.0019872212, -0.0523724, -0.015744459, 0.0005475721, -0.0330546, -0.04675324, 0.018832492, 0.025112456, -0.0113301575, 0.036832575, 0.037174758, 0.057591844, -0.044506446, 0.021980142, -0.019348776, -0.0077914936, 0.025634928, 0.02119544, 0.028579812, -0.083805926, -0.020136533, 0.060023844, -0.037282154 ] }, { "values": [ 0.0075790444, -0.063031204, -0.048643734, -0.05484146, 0.026827352, 0.004067905, -0.004408083, 0.018351825, 0.0025000079, 0.0151186185, 0.029988032, 0.03435448, 0.024784902, 0.00854373, -0.07126134, -0.06434877, -0.025981251, -0.021609226, -0.056267444, -0.028081883, 0.013809308, 0.013360204, 0.038135614, -0.031290684, 0.012420293, 0.041188795, 0.018323563, -0.0063305874, 0.02217342, -0.027262965, 0.032045126, 0.030236196, 0.01698555, -0.008386003, 0.062922135, 0.006133318, -0.041668653, 0.02678766, 0.029123059, -0.052603964, -0.07332243, 0.023313187, 0.002763982, 0.01403161, -0.029312337, 0.01614295, 0.028095221, -0.038147826, 0.022075435, 0.008865627, 0.02815954, 0.012710171, -0.014748083, -0.027139353, -0.019301096, 0.0077884863, -0.03405551, -0.036649782, 0.074441284, -0.0043748408, 0.00788648, 0.011508094, -0.01710014, 0.011490041, 0.02534685, 0.009138285, -0.07008997, -0.040090818, -0.024330495, 0.015959647, -0.06396015, -0.030324535, -0.016777651, 0.01920187, -0.041225284, -0.034015674, 0.016471338, -0.006534772, -0.051104862, 0.022135593, 0.05253724, 0.01758989, 0.077406384, 0.03911134, 0.008674653, -0.0066617476, 0.043593872, -0.024843015, -0.051499233, -0.02854962, 0.12425283, -0.05220184, -0.015758315, 0.0012025572, 0.0039248625, -0.072466955, -0.030113492, -0.060570765, -0.0019069203, 0.061734367, -0.045484524, -0.009630008, -0.043028414, -0.07265302, 0.03951433, 0.03688133, 0.021119656, -0.05293385, -0.033862926, -0.0077410643, -0.04243044, -0.01802299, -0.005614066, 0.0013083845, -0.0203418, -0.037931543, -0.023928305, 0.006278294, -0.0690536, 0.022111971, -0.047436796, -0.037211105, -0.038714442, 0.061899498, -0.020394031, -0.018799532, 0.0381672, -0.06053212, -0.048120685, -0.06895791, 0.08051533, -0.11053673, 0.027902912, 0.0028499987, -0.02412141, -0.026155319, 0.049606904, 0.028867286, -0.014005026, -0.002089449, -0.014884641, -0.04162693, -0.010139214, 0.028116994, -0.014208471, -0.0380346, 0.02954376, -0.022415934, -0.059176836, 0.038133297, -0.09354703, -0.005839172, 0.019019205, 0.02621946, -0.061739508, 0.05501684, 0.07403672, -0.012243071, 0.053215574, -0.044897925, -0.01532857, -0.009737326, 0.030991262, 0.04328715, -0.075838596, 0.014361341, 0.06045222, -0.06960805, -0.057043478, -0.064027436, -0.01183577, -0.009303658, -0.025620513, -0.05689099, -0.026833858, 0.01248374, -0.008556914, 0.006529072, -0.083553426, -0.022715144, 0.035873488, 0.018484106, -0.051991284, -0.021631552, 0.0011061812, -0.026974747, -0.0116389515, 0.08806821, -0.028159393, 0.05490382, 0.021117285, 0.027103957, 0.03430887, -0.0071875453, 0.026775084, 0.0009959365, 0.06507522, -0.02295797, -0.009885084, -0.013388888, 0.0025741232, 0.013028483, -0.016424881, 0.022642234, -0.04521318, 0.011583213, -0.0711325, -0.028309677, 0.06834435, -0.01503913, 0.0007166373, -0.010230926, 0.0032510534, -0.0046440414, -0.013707633, 0.016876671, 0.07987015, 0.045662794, 0.050163396, -0.029998532, -0.068467215, -0.030964732, -0.0070371856, -0.016617212, 0.041855317, -0.019570952, -0.037777618, -0.026425589, -0.016819522, -0.030076204, 0.0018558824, -0.0052439217, 0.014676013, -0.009900037, 0.07357135, 0.035669986, 0.012720529, 0.0026740558, 0.009454066, 0.03257808, -0.01836531, 0.041915756, 0.023956332, 0.025962047, 0.03137312, 0.04283786, 0.036506277, 0.06452096, -0.044388764, -0.015107922, -0.025323432, -0.038211856, -0.030141601, -0.004807249, -0.024588687, -0.036246557, 0.0146115925, -0.060905945, -0.001629181, 0.0246151, 0.036074914, 0.0160946, 0.027601201, -0.04979698, -0.020632053, -0.085138, -0.0014139455, -0.026633233, 0.0845011, -0.0077510267, -0.011299218, 0.03474321, -0.040719032, -0.030426618, 0.014084866, 0.04066526, -0.030785894, 0.038791616, -0.013611758, -0.040229026, 0.05780168, -0.013214838, 0.010668195, -0.022745581, -0.03389258, -0.0012307926, 0.031898048, 0.036376946, -0.030700568, -0.015131951, 0.04437755, 0.0649314, 0.01607124, 0.022417529, 0.042037748, -0.028629862, 0.021294555, -0.0048180437, -0.021230996, -0.02782837, 0.024986407, 0.043863893, -0.018761428, 0.02379411, 0.010547052, -0.006021276, -0.04141801, 0.001255737, -0.0005625182, 0.040471084, 0.008268672, 0.022567917, -0.026851248, -0.03874925, -0.009527228, -0.0058542425, -0.08507411, 0.022205656, -0.022259416, -0.023468481, -0.0030204917, 0.03545077, 0.031793274, -0.018259058, 0.035877645, 0.009170754, 0.010264438, -0.027717993, -0.022836797, -0.037439745, 0.016895968, 0.014105249, 0.009315676, -0.004884704, 0.017554084, 0.01805875, -0.0125516225, -5.684255e-05, 0.048103135, -0.017676251, 0.09049205, 0.0032668263, 0.0134481145, 0.040811274, 0.0085493075, -0.034337275, 0.048476692, -0.02675531, 0.029799473, -0.027585825, -0.008452838, 0.057838038, 0.0034710628, -0.0022955893, 0.019004487, 0.023915214, 0.021729654, 0.044691406, 0.009431431, 0.022634432, -0.0037110592, 0.0048125177, 0.005723529, -0.040597975, 0.017049663, 0.0074528316, 0.013512314, 0.016680583, -0.042739153, -0.052532986, 0.03254739, 0.046668895, 0.043294545, 0.014546227, 0.04072746, 0.001922809, -0.0012056135, 0.028354986, 0.015163583, -0.013137967, -0.030327987, -0.0032079222, -0.040145047, -0.014651012, 0.026912069, 0.020809434, -0.018603005, -0.024055451, 0.013808029, 0.031824593, -0.022884909, 0.074881904, -0.047660824, 0.034866966, 0.0041046534, 0.04297385, -0.0024554667, 0.01548374, 0.0129116485, 0.007106748, -0.028094046, 0.016794369, 0.059063, -0.024497729, -0.0035391904, 0.0136880735, 0.056715608, 0.0035259882, 0.029716706, -0.03273184, 0.0066658626, -0.04755612, 0.024755439, 0.007231798, 0.01572906, 0.053225018, 0.03545784, -0.026209086, -0.0067711705, 0.03752676, -0.0034296787, 0.05716722, -0.0075859935, 0.0136199035, -0.0018700156, -0.06302432, -0.006327946, 0.043934237, 0.019817205, 0.018885657, -0.0045885304, 0.027888536, -0.042038005, 0.01567375, -0.022246215, -0.04654143, 0.006774221, -0.0071489164, -0.054335322, 0.0110045895, 0.012217651, 0.023039332, 0.020761501, 0.033920635, 0.017337283, 0.037709396, 0.078005955, -0.012072333, -0.017952843, -0.071431234, -0.025790498, -0.007044516, -0.011446259, -0.008445223, 0.008575305, 0.020337058, 0.0079971785, 0.040160798, -0.024649337, 0.016460493, -0.090545736, -0.010790563, 0.017020375, 0.052656483, -0.009052334, -0.022296406, -0.03681752, 0.019189015, 0.08204741, 0.056524985, 0.020319715, 0.013591741, 0.0026748823, -0.020795079, 0.06312906, 0.014608206, 0.022509338, -0.0027772726, 0.008908116, 0.02686695, -0.019313073, 0.028009892, -0.00069029356, 0.019559927, 0.026043642, -0.089976646, 0.022789357, -0.0047098785, 0.016879966, 0.07396447, 0.0467305, 0.09156556, 0.033367947, 0.01705364, -0.051389635, -0.052314147, 0.0311589, 0.01992131, -0.0042908946, -0.008218541, 0.114213385, 0.0049695694, -0.01848238, -0.012129675, -0.0053375163, 0.046634182, -0.05986888, -0.022030154, 0.029287012, -0.007826072, 0.035330147, -0.030977763, 0.017633742, -0.04245986, -0.02299342, 0.05812691, -0.10406016, 0.011536119, -0.013069473, 0.09021992, -0.00032367915, 0.01737006, 0.067766696, -0.036887124, -0.06363545, 0.0006900558, -0.013566217, 0.04992136, 0.038038153, -0.0076719746, -0.016708182, 0.044229135, 0.0035042083, 0.02080577, 0.01621041, 0.033246536, -0.0032761043, 0.017295675, -0.014541921, 0.026468746, 0.014502206, -0.004184358, 0.032529436, 0.043361656, 0.07312113, 0.0125606805, 0.02636235, 0.017151253, -0.026711145, 0.07433651, 0.020097613, -0.035104543, 0.050555754, 0.01272562, -0.022704044, -0.06635732, -0.006884602, -0.049608905, -0.0014754661, 0.018434905, 0.024520883, -0.034127045, -0.008939696, 0.004634008, 0.009601821, -0.011266389, -0.00046585483, 0.037449136, -0.04025138, -0.035479937, -0.017205033, 0.05195353, -0.0041562845, -0.040648274, -0.0037859855, 0.005418736, 0.0031782917, 0.008305457, 0.027429214, 0.0016319273, 0.021795496, -0.022758324, 0.040035494, -0.0058281375, -0.024943242, 0.07251746, 0.0117477905, -0.03474848, -0.025082123, -0.008909293, -0.045097414, -0.0078195715, -0.02981921, -0.025545904, 0.09502371, -0.030612621, 0.013194428, -0.037605114, 0.026169635, 0.04771411, -0.024159841, 0.006241028, 0.00042157425, 0.022214673, 0.0012892614, 0.02662783, -0.055900965, -0.0248855, 0.03265803, -0.0028964703, -0.029109899, 0.026172608, -0.009919196, -0.011603495, -0.04781658, 0.035376888, -0.037548766, -0.06175009, -0.022475852, 0.0004717675, -0.013140895, 0.04163542, -0.049991414, 0.015630314, -0.034803424, 0.035810772, -0.027440635, 0.036268905, -0.01859189, -0.0065254685, -0.039796825, 0.01324413, 0.024245154, -0.012723911, -0.0050320458, 0.07316516, -0.0044048103, -0.039207775, -0.023347877, -0.0745052, 0.017205426, 0.009465242, 0.019618386, 0.011135058, -0.058683846, 0.081576966, 0.008320698, 0.025196202, -0.027018838, 0.039945155, 0.021991704, 0.06843441, -0.009311609, -0.011853144, -0.046823386, -0.0316169, 0.0053257076, -0.015571603, 0.0033827326, -0.005357848, -0.007516601, -0.0989552, 0.049421187, 0.047992248, 0.006290255, 0.041850574, -0.00035532907, 0.0085847955, -0.012559026, -0.01748315, 0.07320713, 0.007375482, 0.040652324, 0.03678612, 0.010555619, 0.024994113, 0.0037305274, -0.018825078, -0.032763537, 0.0457479, 0.015121363, -0.055009075, -0.016758233, -0.013652444, 0.02281005, 0.014752319, 0.002830724, -0.024430426, 0.0256941, 0.026355805, 0.00094935915, -0.06664285, -0.0245661, 0.027845383, -0.0036701132, 0.05386753, -0.033457503, 0.01274809, -0.05669545, 0.03448595, -0.024754126, -0.0037078368, -0.068171054, -0.023196822, 0.03828461, -0.037691984, 0.053432353, 0.011064589, -0.07041937, 0.013431289, -0.03605991, 0.0060807937, 0.08525994, 0.015224477, 0.021482721, 0.050215967, 0.058143493, 0.04727913, 0.046101037, 0.0074342326, 0.017686563, -0.015021209, -0.020638911, 0.062230945, 0.013109457, -0.0235776, -0.045681268, 0.056553304, -0.049758013, 0.11548501, 0.03479123, -0.020856766, 0.015153409, -0.0010754397, -0.0034512877, -0.012523333, -0.04868472, 0.007890194, -0.03996727, -0.039744556, 0.017730385, 0.00020541837, -0.04092725, 0.047545485, 0.007022975, -0.0016187363, -0.042930514, 0.0011237757, 0.0046383794, -0.042034317, -0.077439204, -0.0127384, 0.022939268, -0.012413274, 0.0017918431, -0.013634515, 0.02054612, -0.04521089, 0.03348949, -0.017919173, 0.038714588, 0.00097483984, -0.027937874, 0.022919308, -0.09416355, -0.018567735, 0.027952308, -0.067430206 ] }, { "values": [ -0.0010387241, -0.05924112, -0.015669703, -0.045775704, 0.019785369, 0.024889564, -0.0082003195, 0.016559353, 0.0192305, 0.041797146, 0.019933734, -0.0021617385, 0.03452339, -0.013662582, -0.04722975, -0.0685194, -0.013013024, 0.005488529, -0.069063745, -0.05060361, 0.029477239, 0.008716297, 0.029162932, -0.024802204, -0.0049821427, 0.03638354, 0.02889684, 0.005579256, -0.0029975215, -0.043062758, 0.036416903, 0.026095768, 0.0060928916, -0.022058025, 0.039279044, 0.036852725, -0.080572285, 0.024291648, 0.031906523, -0.04594979, -0.071616605, 0.03426024, 0.006029782, 0.027976464, -0.031831104, 0.005389403, 0.022245863, 0.004376483, 0.007452508, 0.020274032, 0.015701942, -0.01456888, 0.0008044586, -0.032673903, -0.015715906, -0.035155114, -0.07351948, -0.007599084, 0.083177336, -0.020460432, -0.0119074555, 0.007271544, -0.02099164, 0.010244712, 0.016422918, 0.013445253, -0.09025021, -0.024038743, -0.024767715, 0.050760727, -0.042666648, -0.04015863, -0.013970961, 0.020802958, -0.028021527, -0.014931839, 0.0071134744, -0.02207476, -0.03169194, 0.021537224, 0.050946284, 0.014001004, 0.07302444, 0.03011775, 0.008086553, -0.014703205, 0.03398414, -0.07587145, -0.046714034, 0.0005573229, 0.1390395, -0.03970258, -0.023767877, -0.00036229438, 0.01579576, -0.03352837, -0.027471615, -0.07535822, 0.010930105, 0.065168634, -0.03594656, -0.013343204, -0.008986682, -0.073358126, 0.02886149, 0.004556201, 0.0053907377, -0.045301333, -0.063484326, -0.0071961745, -0.056620914, -0.020380016, -0.008727548, 0.012765812, -0.01098029, -0.033287484, -0.029464321, 0.001398915, -0.042926535, 0.013979072, -0.013622172, -0.070011966, -0.028402524, 0.07654667, -0.0015776136, -0.022578463, -0.00046515476, -0.028127288, -0.05508583, -0.05715851, 0.10590943, -0.08823196, 0.026069874, -0.03147287, -0.035880238, -0.025532082, 0.06571386, 0.03867852, -0.0082311295, 0.015497243, -0.01777966, -0.019737082, -0.031861853, 0.063188925, -0.025183296, -0.017433112, 0.023347627, -0.008920209, -0.022553548, 0.05259224, -0.085946456, -0.022879459, 0.02383591, 0.020418892, -0.0569256, 0.0876791, 0.050822545, -0.0337537, 0.05529486, -0.057948187, -0.009919679, -0.016014809, -0.02254404, 0.03354179, -0.09368713, -0.011999867, 0.024558706, -0.08250345, -0.06265099, -0.060587503, -0.016341675, 0.0083539365, -0.017270649, -0.04536452, -0.020746209, 0.013755381, 0.003770846, -0.00085765077, -0.09518033, -0.016229039, 0.021234054, 0.041763585, -0.032105625, -0.010049973, 0.0077161076, -0.0401315, -0.02026825, 0.05072589, -0.027039073, 0.04091919, 0.025040133, 0.008964767, 0.04115533, 0.013190133, 0.013709424, 0.027095389, 0.03887023, -0.035042807, -0.0083740875, -0.028292922, 0.0056697354, 0.01638291, -0.01703144, 0.026018342, -0.05794111, 0.04122537, -0.058268193, -0.016582299, 0.042654805, -0.021572815, 0.0053128395, -0.032407936, 0.020122994, -0.023448413, -0.011594822, 0.025365183, 0.08784571, 0.055456493, 0.0580272, -0.027535541, -0.09667526, -0.04482313, -0.011180563, -0.028547123, 0.032706246, -0.030899009, -0.03534305, -0.047446135, -0.015462256, -0.024789205, 0.0185284, 0.017036485, 0.01629687, 0.024885634, 0.05020778, 0.033256654, 0.014326797, 0.004773357, 0.011227352, 0.017496156, -0.01092931, 0.050343763, 0.022961821, 0.008719859, 0.016614435, 0.061040547, 0.043734226, 0.05703697, -0.024130246, -0.006677796, -0.032382533, -0.040339347, -0.044195388, 0.010044057, -0.032449923, 0.0022082482, 0.024149913, -0.053435158, -0.006381801, 0.023346089, 0.04828331, 0.029439861, 0.009850848, -0.041134946, 0.0007477649, -0.0748974, 0.0010367455, -0.008487288, 0.08091923, 0.0048895124, -0.0031583402, 0.0171094, -0.0549202, -0.02561554, 0.019452622, 0.02892895, -0.037527893, 0.05516161, -0.008946343, -0.024372935, 0.048813432, -0.014438452, -0.005161492, -0.022693086, -0.018719574, -0.016829625, 0.030091174, 0.026657153, -0.06269782, -0.026685433, 0.043357067, 0.058626458, 0.01409994, -0.015451844, 0.013352959, 0.009789892, 0.020888494, -0.039479513, -0.0086249765, -0.010372206, 0.03173767, 0.056434825, -0.034878008, 0.0035965545, -0.025563838, -0.019452542, -0.051886167, 0.020745553, 0.017163359, 0.04889177, 0.02328311, 0.015504001, -0.032260116, -0.030728066, -0.010935235, -0.0029506218, -0.10799803, 0.014212969, -0.009655919, -0.016651465, 0.023210738, 0.0029989996, 0.026353115, -0.03776582, 0.06127398, 0.0016843997, 0.002880077, -0.035987955, -0.03149765, -0.027196942, 0.01698219, 0.011534052, 0.015867626, 0.0034482516, 0.010081458, -0.0072342693, -0.008370346, -0.0038013265, 0.06369256, -0.037793647, 0.06272659, -0.005032402, 0.033189997, 0.054400668, -0.008864813, -0.068000615, 0.051359303, -0.052061927, 0.028038153, -0.03188111, -0.035899088, 0.05127574, 0.0031373256, 0.00010743034, 0.037503537, 0.022266274, -0.0040083327, 0.023252008, 0.018730218, 0.01884504, 0.0094199255, 0.019854479, 0.0130089065, -0.023299878, 0.03714904, -0.008848698, 0.026109561, 0.012498241, -0.019774115, -0.076505475, 0.02805539, 0.044179995, 0.019108351, 0.01405604, 0.0152455, -0.0002217376, 0.0055551347, 0.018667156, 0.03280578, -0.029840624, -0.027104966, -0.015355359, -0.0062152864, 0.0004218279, -0.00012554039, 0.024556246, -0.017967055, -0.017142229, 0.02958885, 0.02746995, -0.011698404, 0.08701353, -0.022733027, 0.007827632, -0.016607763, 0.0506903, -0.009649314, 0.001342502, 0.02682918, 0.025880594, -0.01792322, 0.0029624517, 0.059327465, -0.02951494, -0.0072841262, 0.021298235, 0.05239221, -0.01646214, 0.042992324, -0.038978394, 0.014516482, -0.014541317, 0.012185423, 0.0071037016, -2.1735763e-05, 0.015983045, 0.039693855, -0.025304217, 0.010484791, 0.01216035, -0.012417757, 0.044132788, 0.021309521, -0.012574323, -0.0175511, -0.04293785, -0.023789426, 0.024968933, 0.027527306, 0.009386173, -0.014564395, 0.04219799, -0.05683337, 0.030830707, -0.0064953594, -0.024913363, 0.020661453, -0.0048345174, -0.0562131, 0.021252591, 0.01534144, 0.026224155, 0.005982242, 0.02053384, 0.03672944, 0.042545475, 0.074699596, -0.021472033, -0.0293824, -0.056740504, -0.039910167, -0.027687535, -0.022466082, -0.008117332, -0.010318229, 0.032003723, 0.031883966, 0.0421068, -0.045364242, 0.0266116, -0.096584275, -0.01741494, 0.0463478, 0.03950212, 0.0088924775, -0.03337619, -0.06578059, 0.0095129665, 0.047324937, 0.0729371, 0.0077531347, 0.0044166883, 0.032065712, -0.042496704, 0.048487112, 0.020141313, 0.009569699, 0.015886717, 0.0060804263, 0.02873089, -0.039756574, 0.02814282, 0.025977641, 0.01609862, 0.052990753, -0.09112209, 0.025664033, 0.015765278, 0.03811347, 0.030870585, 0.05631303, 0.07728765, -0.00073196075, 0.017741846, -0.053061, -0.052568205, 0.021233581, 0.009113747, -0.005308566, 0.006621091, 0.09626033, -0.018505862, -0.01508896, -0.037143305, 0.035391044, 0.035973903, -0.051326346, -0.009007122, 0.0072479406, -0.021708919, 0.0242925, -0.024125654, 0.019530648, -0.02986731, -0.04839069, 0.042701464, -0.123366416, 0.0013387192, 0.013582539, 0.07257325, -0.0014513823, 0.020364912, 0.0416471, -0.042064898, -0.0542229, -0.008633873, -0.016904375, 0.06119698, 0.029730165, 0.011700001, -0.022777466, 0.03609127, 0.010426206, 0.027368188, 0.013883212, 0.01837909, -0.014121907, 0.024756894, -0.022250606, 0.0256998, -0.0038193967, 0.022078391, 0.03640042, 0.023031462, 0.058199443, -0.002397002, 0.006782061, 0.01573886, -0.03797474, 0.042404074, 0.030330373, -0.039341357, 0.050902203, 0.029119892, -0.009467097, -0.05975078, -0.00723066, -0.055973426, -0.030473666, 0.042787597, 0.028678384, -0.02452883, 0.0034553183, 0.0010989122, -0.02447696, -0.009467113, -0.00015584029, 0.036847413, -0.022441931, -0.047040034, -0.0017007644, 0.042286865, -0.024996605, -0.041404042, -0.0016705221, 0.0050405776, -0.00029367043, -0.018719252, 0.019270739, -0.013317365, 0.021241738, -0.015905902, 0.043184485, -0.0067750853, -0.013310674, 0.050127152, -0.0061382703, -0.03914932, -0.020716496, -0.008275088, -0.032027707, 0.032661743, -0.009913064, -0.023137942, 0.09375449, -0.02400773, 0.009755557, -0.02717714, 0.023187052, 0.01583564, -0.010535609, 0.029132523, 0.006590158, 0.031134969, -0.018772522, 0.011094903, -0.039637707, -0.009562761, 0.04688499, -0.028106306, -0.018310534, 0.040577, 0.017625546, -4.985953e-05, -0.049275894, 0.026924994, -0.037920013, -0.064480714, -0.0023697286, -0.012204281, -0.002457795, 0.03551567, -0.037328206, 0.01822722, -0.04851023, 0.02401086, -0.027590372, 0.023866387, -0.035793275, -0.017835299, -0.015783044, -0.0029208618, 0.039434418, -0.0231286, 8.954384e-05, 0.06563493, 0.014305349, -0.04020021, -0.008416377, -0.06321923, 0.022484634, 0.009798273, 0.02156714, -0.0072509926, -0.052189462, 0.07926775, 0.037256468, 0.03404031, 0.008274211, 0.046908706, 0.021711608, 0.065631315, -0.012795916, -0.00071553554, -0.06101943, -0.0338062, 0.01470882, -0.002012552, 0.02526442, -0.012617669, -0.0066923783, -0.038160693, 0.03259969, 0.05094493, -0.0026397563, 0.041319095, 0.011039421, 0.014642261, -0.01587662, 0.00097152946, 0.045841765, 0.023119966, 0.034986977, 0.06908592, -0.015348773, 0.021690704, 0.036611687, -0.03688734, -0.019225528, 0.027760029, 0.019216035, -0.04956961, -0.000110602785, -0.009632726, 0.0048949453, 0.012923944, 0.02840098, -0.047423314, 0.02237325, 0.0062567415, 0.007363431, -0.091180496, 0.0034513688, 0.02381787, 0.0012247938, 0.065562874, -0.0380231, 0.0007790021, -0.0511551, 0.024574513, -0.03062577, -0.017438808, -0.06795631, -0.03718379, 0.030941438, -0.0033679712, 0.03774605, 0.017665746, -0.06343905, 0.02258908, -0.04423305, 0.013060502, 0.08682583, -0.005667294, 0.03867721, 0.05879001, 0.055273812, 0.070841014, 0.031325147, 0.018440401, 0.020899143, -0.019364173, -0.0069686538, 0.07527867, 0.005865083, -0.038593896, -0.030153945, 0.0060217055, -0.05559294, 0.09267193, 0.014082367, -0.029871522, 0.012509669, 0.031284593, 0.0043056323, -0.005962096, -0.021935944, 0.02552536, -0.0373097, -0.038241383, 0.030591512, -0.00020018271, -0.015114871, 0.04086591, 0.010004907, 0.005144799, -0.026956636, 0.004007745, -0.0071619777, -0.053017855, -0.10470937, 0.007613241, 0.04241564, 0.004464547, -0.010005694, -0.009621435, 0.03387414, -0.06346277, 0.02705618, 0.0016014962, 0.0074750357, 0.009717994, -0.03200479, 0.03591473, -0.10946278, -0.020726236, 0.04728654, -0.0429367 ] }, { "values": [ 0.0011817424, -0.03431624, -0.028337661, -0.042306915, 0.03872835, 0.01241021, -0.0022258644, -0.005547273, -0.0014517693, 0.030453697, 0.01197059, -0.0068703773, 0.047079265, -0.023320204, -0.05413907, -0.058172747, 0.002814654, -0.00889452, -0.048390288, -0.045672238, 0.02177651, 0.019212438, 0.05124698, -0.03220598, -0.023466216, 0.042298026, 0.030679809, 0.0073346524, 0.004226749, -0.044188637, 0.049806476, 0.045057025, -0.008241132, -0.014930146, 0.07152231, 0.009981088, -0.047680065, 0.037698884, 0.054357827, -0.023308435, -0.07300497, 0.03671288, 0.015515565, 0.014165158, -0.01654094, -0.00086196756, 0.01260935, -0.021016845, -0.022476684, 0.061109748, 0.024244888, 0.0032281566, -0.008291472, -0.021862278, -0.011376395, -0.0185004, -0.044335864, -0.04013426, 0.06725793, -0.02390264, -0.013227683, 0.005377113, -0.026349438, 0.0018262619, 0.020711377, 0.015013304, -0.10867022, -0.03976791, -0.026657159, 0.017077254, -0.030623103, -0.031839848, -0.018455923, -0.009325431, -0.027588582, -0.0025122587, -0.011230345, 0.020347338, -0.02380343, 0.015861997, 0.019507919, -0.013818634, 0.10241682, 0.04494091, 0.01804166, 0.012594073, 0.013488036, -0.07061191, -0.04671153, -0.013218151, 0.13626683, -0.029949376, -0.022534987, 0.018868146, -0.002939288, -0.06562822, -0.043362837, -0.07255506, 0.017504543, 0.08352084, -0.022396158, 0.0077728485, -0.014711725, -0.06146998, 0.053094957, -0.004567942, 0.012291644, -0.07212917, -0.048255377, 0.020766512, -0.060458697, -0.019351033, -0.0050738663, 0.032079916, 0.024995595, -0.024418583, 0.0010057527, -0.0016396119, -0.027490085, 0.050688405, 0.015128721, -0.0845844, -0.0248527, 0.06874589, -0.0068002623, -0.011796774, 0.034211908, -0.05922111, -0.035845626, -0.09032072, 0.10758776, -0.066080466, 0.005276528, -0.012306108, -0.04965595, -0.025757713, 0.0135302115, 0.03840661, -0.014727934, 0.007368927, -0.00039491802, -0.030398048, -0.015621877, 0.059655942, -0.023064459, -0.029908838, 0.025434699, -0.017858323, -0.039241634, 0.03788368, -0.0959795, -0.025785109, 0.036683653, 0.01761994, -0.037131626, 0.05738588, 0.058486514, -0.0139714675, 0.05436595, -0.049514197, -0.009238544, -0.020436354, -0.0034241972, 0.025485646, -0.06860975, -0.030456383, 0.038930546, -0.08324897, -0.048582096, -0.04032609, -0.0030100443, 0.03876639, 0.005667162, -0.06614908, 0.009421857, 0.03910948, -0.03527856, 0.0083467, -0.08684148, -0.04670567, 0.013848175, 0.018092098, -0.038342446, -0.018538984, -0.0127564855, -0.026116254, -0.024039373, 0.06559433, -0.056346048, 0.032464616, 0.013794638, -0.01498417, 0.03476255, 0.008811946, -0.012365712, 0.02517988, 0.049807668, -0.024102606, 0.0073002065, -0.014991575, 0.019835545, -0.0018490959, -0.017630234, -8.3188905e-05, -0.046261087, 0.031276777, -0.067815036, -0.014718478, 0.043308616, -0.017977923, 0.006942059, -0.022985507, 0.023233922, -0.017110348, -0.0010992795, 0.03891035, 0.054758266, 0.05809396, 0.03952079, -0.043169692, -0.08339476, -0.043284494, 0.0022375414, -0.058286432, 0.03911435, -0.03237957, -0.04730196, -0.055791527, -0.0071477285, -0.00070183264, 0.006659458, 0.0035451043, 0.027001156, 0.010665691, 0.042744085, 0.014367119, 0.010495686, -0.017851202, 0.031264313, -0.00044562848, -0.026262114, 0.032695748, 0.013594072, 0.015261541, 0.015104533, 0.051366534, 0.051177107, 0.08525742, -0.05850928, 0.020609671, -0.027125055, -0.04872081, -0.042435914, 0.019888649, -0.04852064, -0.00016338279, 0.0066231745, -0.054957602, -0.0067495396, 0.02720854, 0.013392945, 0.034423925, -0.0056390413, -0.04611424, -0.008622687, -0.12395921, 0.0029536637, -0.032070518, 0.11094371, 0.020145392, -0.00458473, 0.016561262, -0.030461665, -0.033803526, 0.041951973, 0.033255443, -0.038534716, 0.073890805, -0.011853546, -0.022044042, 0.021853939, -0.0006066062, -0.02275632, -0.023873067, -0.017720364, -0.022780987, 0.036467675, 0.0041410117, -0.06515479, -0.024909416, 0.042892847, 0.054004427, 0.030256214, 0.005707078, 0.016248034, -0.0031774982, 0.008294467, -0.015431062, 0.013818426, -0.014781656, 0.025383595, 0.07002649, -0.027117198, 0.031479944, -0.029991364, -0.03663742, -0.05499975, -0.006839535, 0.011045764, 0.060869142, 0.02758816, 0.024239814, -0.008008188, -0.035737593, -0.012015692, 0.0038292613, -0.06888072, 0.0231573, -0.0033033506, -0.009804513, 0.024849953, 0.010953553, 0.02463203, -0.026738316, 0.060662717, -0.0005831213, -0.00032980085, -0.04802331, -0.025018208, -0.006223997, 0.032549284, 0.02627386, 0.004602655, -0.0083482, 0.00898234, 0.00017136493, 0.0011084736, 0.0037092401, 0.053524613, -0.012086925, 0.07534545, -0.003820801, 0.023551827, 0.030466972, -0.0012562673, -0.06129687, 0.035017204, -0.042331982, 0.050649393, -0.017756844, -0.03492207, 0.052139528, -0.01961081, 0.0020636409, 0.051374894, 0.029458884, 0.025291853, 0.033512615, 0.029142698, 0.020705687, -0.0002750003, 0.028617166, 0.003498248, -0.0227867, 0.00196419, -0.007094513, 0.0031876552, 0.014829051, -0.02895916, -0.073584005, 0.0073846695, 0.0348026, 0.016202547, 0.012351275, -0.015705518, -0.010954908, 0.0014306265, 0.018339645, 0.032015163, -0.022437017, -0.026404554, -0.02701883, -0.021848103, 0.006852194, 0.016644182, 0.012449852, -0.023035254, -0.023276132, 0.023805734, 0.014160655, -0.0073256865, 0.07553999, -0.012186183, 0.023557156, -0.026293073, 0.01952357, -0.006215425, 0.012794459, 0.023403646, 0.017768351, -0.01240612, 0.004771081, 0.057442278, -0.015328452, -0.0036345231, 0.0028595042, 0.037191767, 0.0021965797, 0.033328682, -0.034357227, 0.013996071, -0.038869124, 0.0117127355, -0.0035623289, 0.008603328, 0.009555061, 0.022428755, -0.055157866, -0.0018134017, 0.0367965, -0.008943057, 0.016387349, 0.04243679, -0.001544186, -0.031720802, -0.07410232, -0.0011073428, 0.019430725, 0.027150286, 0.025681974, -0.025410758, 0.047560718, -0.066630095, 0.004510083, -0.001865762, -0.02849185, 0.020939209, -0.022756224, -0.054681186, 0.02440275, 0.027809404, 0.014580631, 0.04372252, 0.032706942, 0.01940965, 0.050236758, 0.064769335, -0.009175853, -0.014818348, -0.05078948, -0.014341545, 0.0042259987, -0.028309027, -0.022117719, 0.0066443705, 0.024695843, 0.033585694, 0.027878327, -0.025811423, 0.008843793, -0.052481588, -0.012549998, 0.04258813, 0.037829358, 0.01379939, -0.029684572, -0.032929286, -0.00064833154, 0.056374528, 0.051772278, -0.012935582, -0.008194585, 0.013214882, -0.017001582, 0.06804048, 0.02283102, 0.019673323, -0.0008006672, 0.00035659724, 0.03216075, -0.034242332, 0.028066156, 0.0125812795, 0.0043860907, 0.02295269, -0.09304952, 0.014425084, -0.015637837, 0.0361105, 0.05203722, 0.03139524, 0.05800612, 0.0025339464, 0.011725434, -0.051203873, -0.07931371, 0.032137234, 0.012778003, -0.036511034, -0.01713657, 0.10503342, 0.0054534096, -0.006866467, -0.03133949, -0.0035507432, 0.016773123, -0.035972275, -0.020974852, 0.02106491, -0.008749549, 0.028649878, -0.047969125, 0.030512257, -0.052892804, -0.034279812, 0.05698663, -0.08501186, 0.019540932, 0.0010222064, 0.07814048, -0.015330052, 0.006297464, 0.049327604, -0.079816125, -0.08542617, -0.015321935, 0.010670442, 0.06295514, 0.028795091, -0.0021405776, 0.001805928, 0.04190264, 0.026320165, 0.019330848, 0.018037843, 0.024228005, -0.00040068995, 0.03075427, -0.02601787, 0.023228358, -0.0055970517, -0.007848084, 0.045016073, 0.039092895, 0.050362, 0.00409608, 0.046285495, 0.022946035, -0.01754117, 0.067669965, 0.014756171, -0.03305902, 0.07029569, 0.013494895, -0.033848282, -0.057477046, 0.0077758813, -0.02041782, -0.021021865, 0.025615325, 0.016755642, -0.018094247, 0.0066227973, 0.014861257, -0.064336106, 0.013835689, 0.006613841, 0.03962282, -0.016094347, -0.035304714, -0.0040272567, 0.03503748, -0.037149906, -0.054063905, -0.0069334162, 0.028428672, -0.007316009, -0.018464917, 0.017389473, 0.0030783485, 0.0059901476, -0.0014463288, 0.038550265, -0.0020345415, -0.025951551, 0.054859135, 0.011154691, -0.039740678, -0.009245279, -0.026446966, -0.032684427, 0.020404672, -0.017929528, -0.05367019, 0.0898527, -0.01095978, 0.0023295179, -0.021587139, 0.031391308, 0.031171082, -0.014775657, 0.01943024, -0.019848926, 0.023943486, -0.0045316485, 0.034233566, -0.038119376, -0.020263573, 0.037999604, -0.021926485, -0.023964383, 0.051941667, -0.012514548, -0.037490033, -0.047120497, 0.055052996, -0.04154736, -0.06944893, -0.028248454, -0.024428962, 0.0074725826, 0.037930418, -0.015791237, 0.004013672, -0.048489112, -0.0027530158, -0.02898096, 0.048782732, -0.021436699, 0.0007615218, -0.040435493, -0.0021662654, 0.027388677, -0.021980012, 0.011520317, 0.0532471, 0.0135568, -0.05445087, 0.036343966, -0.044847418, 0.025361164, 0.02511476, 0.015217961, 0.0070307, -0.046109475, 0.061644837, 0.03180948, 0.047696184, -0.020799663, 0.02235165, 0.010137524, 0.044696532, 0.0001625396, -0.021796053, -0.054969806, -0.03165757, 0.002848339, -0.008553508, 0.01613702, -0.033974774, -0.0065415604, -0.060433574, 0.038759824, 0.07830225, 0.011349401, 0.02827461, -0.012917141, 0.017450856, -0.020260196, -0.028834764, 0.029707264, 0.022576794, 0.0424401, 0.08757108, -0.0074497014, 0.021150257, 0.019136513, -0.06809587, -0.017393203, 0.03643213, 0.0044654165, -0.039564982, -0.032907534, 0.015052834, 0.004396375, 0.008232963, 0.0005463942, -0.03554861, -0.015189778, 0.0006901514, 0.012092264, -0.05999675, -0.02400607, 0.0010382402, 0.004224106, 0.08563122, -0.02890418, 0.02690916, -0.052328575, 0.021467382, -0.016644485, -2.3809842e-05, -0.08053508, -0.016366241, 0.054977465, 0.013836522, 0.03372202, 0.032759998, -0.076482065, 0.019057209, -0.041711945, -0.0066332757, 0.08789096, -0.007944606, 0.030101772, 0.025477972, 0.07077177, 0.04640301, 0.036122352, 0.022453729, 0.02190579, 0.0014808762, -0.012336294, 0.0968935, 0.0056453403, -0.01431039, -0.04803415, -0.00017274737, -0.0650793, 0.0778619, 0.0021677287, -0.026009351, 0.011928848, 0.003016596, 0.0028663569, 0.012698104, -0.016765, 0.023767682, -0.030905576, -0.015327945, 0.040493917, -0.018467939, -0.0058277315, 0.060690515, -0.0032533102, -0.0063432264, -0.032640677, 0.00425895, -0.013090965, -0.027668113, -0.08407091, 0.0064896536, 0.050125133, -0.004819551, 0.0043273764, -0.015569964, -0.012838497, -0.051710248, 0.009394647, 0.0118078925, 0.006105581, 0.0034329467, -0.016267791, 0.036827695, -0.08149377, -0.0033102182, 0.018175554, -0.048487935 ] }, { "values": [ 0.012904983, -0.035210185, -0.038695507, -0.025629668, 0.0357186, 0.024407463, 0.008566099, 0.015858712, 0.012788712, 0.019175978, 0.011172093, -0.013780913, 0.03293739, -0.033533093, -0.063114986, -0.06892498, -0.0068664346, -0.0040002167, -0.06649312, -0.035666656, 0.030894073, 0.022529637, 0.025204046, -0.0385118, 0.0024048572, 0.02382414, 0.035390984, 0.008932935, 0.0032901666, -0.049766913, 0.021465356, 0.026278766, -0.0032796497, -0.03815462, 0.020925341, 0.03307608, -0.06380822, 0.041280728, 0.040124543, -0.029838333, -0.103773534, 0.0019723242, 0.005621568, 0.042830985, -0.025011899, -0.009913475, 0.029311264, -0.007804755, -0.020875549, 0.03802297, 0.0055636577, -0.0049674055, -0.017856194, -0.023171095, -0.015332305, -0.03632978, -0.043997508, -0.025877658, 0.055102006, -0.021944381, -0.021785349, 0.00605863, -0.036378678, -0.0022511932, 0.010580595, -0.013967562, -0.109797694, -0.020698352, -0.016119523, 0.025966376, -0.035973933, -0.021129701, -0.017249016, -0.01114838, -0.011105002, -0.01122389, 0.010908493, 0.010387316, -0.025059482, 0.04583706, 0.03480698, 0.018159013, 0.07271945, 0.05089431, 0.0048602177, 0.008991556, 0.033073667, -0.0624857, -0.041062787, -0.026498517, 0.116606675, -0.02441607, -0.030998359, 0.009397681, 0.0007053774, -0.024461178, -0.03078551, -0.06794875, -0.01240048, 0.076958805, -0.027263781, 0.004903521, -0.017920824, -0.07352987, 0.023576261, 0.011138064, -0.0010925203, -0.061414815, -0.07048227, 0.0030695987, -0.03957967, -0.011279378, 0.023536624, 0.018376533, 0.011656613, -0.018363196, -0.022288125, -0.03922065, -0.049396593, 0.021259272, 0.006165519, -0.07142019, -0.022837397, 0.06636814, 0.015778039, -0.014439903, 0.018568067, -0.047856838, -0.05109748, -0.07141459, 0.10664585, -0.093983315, 0.025761299, -0.034631364, -0.04346593, -0.026211694, 0.059228588, 0.023693923, 0.002610267, 0.009423663, -0.0059588407, -0.025592461, -0.056905136, 0.049384028, -0.028718881, 0.003726782, 0.015434766, -0.02382815, -0.05398999, 0.04592599, -0.05638157, -0.03470172, 0.031000206, 0.0057454244, -0.046529595, 0.06750452, 0.054706514, -0.018274887, 0.05061241, -0.027762795, 0.009052551, -0.012485591, -0.02266938, 0.03169811, -0.08748128, -0.0014020221, 0.05229528, -0.07978535, -0.031497784, -0.02166988, -0.027159732, 0.008953018, -0.025824307, -0.058528572, 0.0012673156, 0.03181244, -0.037688375, 0.011761094, -0.0946251, -0.060838882, 0.017263798, 0.04455926, -0.05421964, -0.021447625, -0.013839782, 0.0002751886, 0.00016091965, 0.05117965, -0.039792776, 0.02068075, 0.03112405, -0.0036454895, 0.037471294, 0.02076745, -0.014861891, -0.007436448, 0.05119598, -0.037808392, -0.01740527, -0.013712746, -0.0067491936, 0.03413604, -0.026042394, 0.038764354, -0.031853907, 0.03748533, -0.061149564, -0.02968877, 0.033163685, -0.026044052, -0.012904467, -0.024545982, 0.027119607, 0.00068407285, 0.0009989305, 0.03615451, 0.07778264, 0.039939694, 0.054514285, -0.030491399, -0.095244996, -0.040241793, -0.013840755, -0.05299901, 0.055362638, -0.017933797, -0.034829687, -0.022355257, -0.025004355, -0.01842026, 0.0075375354, -0.000490996, 0.042851828, 0.008521194, 0.013954698, 0.031527445, 0.004834177, -0.009697605, 0.027624713, 0.008033648, -0.014751018, -0.004503108, 0.001739406, 0.025304027, 0.00782778, 0.053275496, 0.043901123, 0.050381254, -0.024376627, 0.0027326483, -0.027014531, -0.043817133, -0.05011958, 0.010193737, -0.051609483, 0.015517544, 0.031563718, -0.04010878, 0.005389873, 0.02172055, 0.014213197, 0.051300347, -0.0064808363, -0.05062966, 0.009755829, -0.109305345, -0.0089196935, -0.03127995, 0.086905725, 0.002569669, -0.023579454, 0.019981252, -0.019461524, -0.027959354, 0.019762537, 0.032429546, -0.03266461, 0.046584096, -0.012625781, -0.016940895, 0.031326506, -0.0017116803, 0.006881278, -0.017347371, -0.034032937, -0.0013049024, 0.032956805, 0.022398837, -0.062397055, -0.04682648, 0.010978525, 0.061111577, 0.02552537, 0.005294633, 0.016052853, -0.000630404, 0.016541088, -0.007737572, -0.031174304, -0.005107751, 0.049824852, 0.060285997, -0.052924175, 0.048452877, -0.030795535, -0.027278146, -0.04007946, 0.014997362, 0.009113726, 0.03995108, 0.020830708, 0.035673324, -0.024015678, -0.016237086, -0.014772259, 0.0020774275, -0.094087176, 0.0059391884, -0.025490163, -0.013727903, 0.012507966, -0.003350298, 0.023463866, -0.03548622, 0.06698685, 0.01937473, -2.5100866e-05, -0.004724904, -0.023514623, -0.01103952, 0.018433806, 0.031297203, 0.017000409, 0.014996936, 0.010320971, -0.0052562966, 0.004061072, -0.00025294005, 0.06344887, -0.0027888645, 0.09190816, 0.0118978005, 0.036385987, 0.05158599, -0.00796312, -0.064012215, 0.05954224, -0.02518907, 0.042765148, -0.04045955, -0.014134464, 0.08479677, -0.022821955, 0.0038741196, 0.027997646, 0.004347056, -0.0075172135, 0.011305647, 0.038151514, 0.018655093, 0.002327709, 0.019935803, -0.0026474542, -0.018664332, 0.01320009, -0.010079258, -0.010765346, 0.022389375, -0.028934287, -0.051097397, 0.012654832, 0.03588143, 0.015570964, 0.021906333, -0.016155886, -0.0047617545, -0.0064072185, 0.024744237, 0.02875648, -0.044429537, -0.0067167296, -0.02598816, -0.024719773, 0.010665591, 0.009452453, 0.02806329, -0.021966167, 0.005390736, 0.026714185, 0.007776348, -0.023289567, 0.074218765, -0.0049382094, 0.023080325, -0.040387895, 0.052208077, -0.0017616224, 0.004858737, 0.024060672, 0.024804153, -0.0072462345, 0.015052394, 0.058376856, -0.019310145, -0.009924016, 0.010182158, 0.049641848, 0.009368961, 0.039352443, -0.014733383, 0.01696361, -0.0279298, 0.035592068, -0.0054861624, -0.000588035, 0.013978716, 0.030593108, -0.053661782, 0.00018812851, 0.016807426, -0.019856276, 0.011845844, 0.03838745, -0.003216536, -0.016776225, -0.049898632, 0.0008234302, 0.022749504, 0.030685028, 0.02144443, -0.021090137, 0.051738217, -0.056636963, 0.003197494, 0.0015687338, -0.029475972, 0.0017832099, -0.03635936, -0.06127266, 0.030695446, -0.0072250552, 0.023249278, 0.035675805, 0.04331688, 0.020339726, 0.012868293, 0.060967937, 0.002786652, -0.014804099, -0.07673295, -0.05229625, -0.0070455633, -0.036096133, -0.018925715, 0.019468017, 0.007868491, 0.017249407, 0.011763665, -0.058338217, 0.00787261, -0.06594462, 0.010441841, 0.068423524, 0.036281656, 0.00819023, -0.026746042, -0.052304633, -0.008238507, 0.05988589, 0.07001038, -0.01019831, 0.00045317528, 0.010026252, -0.032477863, 0.048130058, 0.008358157, 0.03610909, 0.03443639, 0.0082795415, 0.04107239, -0.017340686, 0.0054434775, 0.01182965, 0.008911383, 0.041503366, -0.07075892, 0.01743751, 0.009411064, 0.029676892, 0.053121544, 0.054129608, 0.057872906, 0.0040969853, 0.023428997, -0.070437476, -0.068475336, 0.040138476, 0.018906211, -0.019047005, -0.008005532, 0.081831664, -0.012858588, -0.01579021, -0.057560947, 0.013014283, 0.012996671, -0.043563183, -0.03692907, 0.029244343, -0.043229662, 0.030542912, -0.031260956, 0.009168682, -0.026262753, -0.03055043, 0.052268308, -0.11402094, 0.009355721, 0.028558118, 0.06314543, 0.020187767, 0.009686732, 0.054199014, -0.06387644, -0.07762688, -0.017907737, 0.0092779, 0.060926028, 0.04151309, 0.01548309, 0.0031660758, 0.036555056, 0.016699376, 0.03372539, 0.017072573, 0.03313049, 0.009533644, 0.033174995, -0.036199372, 0.0063818707, 0.013050244, 0.024083145, 0.04368538, 0.022847617, 0.058172733, 0.0072789015, 0.048989188, 0.013059639, -0.019636543, 0.04598285, 0.007072562, -0.035405796, 0.06500155, -0.00048106036, -0.0229424, -0.048124447, 0.012370342, 0.0026220374, -0.023584593, 0.024007661, 0.036415335, -0.023513965, 0.0032610062, -0.008084324, -0.030456789, -0.012499432, 0.017869687, 0.028459437, -0.02786796, -0.034061786, 0.01319279, 0.041210443, -0.01475976, -0.057418607, -0.011985292, 0.01611525, 0.011559499, -0.036443975, 0.031720594, -0.0072197393, 0.0063911765, 0.0020142375, 0.05308309, 0.0051755616, -0.016279407, 0.04788498, 0.014736937, -0.029180326, 0.00941101, -0.00062396954, -0.023352226, 0.0533402, -0.00968465, -0.041264955, 0.09667768, -0.008962872, 0.008508976, -0.027975697, 0.02569362, 0.026763739, -0.047415484, 0.009225927, 0.025316551, 0.023814984, -0.015127014, 0.011505391, -0.05608018, -0.022941144, 0.0332737, -0.033851136, -0.039989088, 0.03522607, -0.010186792, -0.0075682933, -0.05061634, 0.040594477, -0.049118154, -0.057024375, -0.028899463, -0.028215187, 0.010767542, 0.0128525635, -0.014348912, 0.010384593, -0.059896007, 0.006638114, -0.011937217, 0.025295941, -0.017839523, -0.00680734, -0.036275707, 0.008908996, 0.015705023, -0.03364205, 0.0139675, 0.06735036, 0.0073341113, -0.05757589, 0.015418893, -0.04013339, 0.025249897, 0.016967416, 0.021270566, -0.014184448, -0.058135238, 0.08257303, 0.045198105, 0.042718545, -0.011752343, 0.042370662, 0.035260133, 0.044993985, -0.01976914, -0.013345913, -0.05072759, -0.031573564, 0.0020903521, 0.017601384, 0.02113903, -0.026274402, -0.0033391465, -0.06045575, 0.041854564, 0.049094785, -0.0139781805, 0.042365838, -0.019783579, -0.0015993564, -0.029820133, -0.019928023, 0.0440256, 0.031383894, 0.051485404, 0.059714813, 0.0012945862, 0.0306715, 0.0019690709, -0.10532621, -0.0075227483, 0.029732093, 0.020027958, -0.05766383, -0.03904506, 0.019618146, 0.01620145, -0.002613325, 0.010057894, -0.039037634, -0.010238482, 0.016220033, 0.003076631, -0.06891476, 0.0047670812, 0.011006977, 0.021502072, 0.08220076, -0.05371095, 0.011263975, -0.05351952, 0.0077851997, -0.021392416, 0.00778439, -0.070235886, -0.040728282, 0.06681094, 0.013990333, 0.033842333, 0.05942361, -0.05061498, 0.042215705, -0.03491295, 0.002578651, 0.059150863, 0.007848021, 0.017885134, 0.055073127, 0.05912537, 0.06319408, 0.033001557, -0.002635324, 0.030707845, -0.016537292, -0.029935004, 0.10301113, 0.0060814656, -0.042240936, -0.041996047, 0.010528821, -0.05658001, 0.085850276, 0.006176621, -0.049306843, 0.012182907, 0.01885353, -0.0015875506, 0.0019314882, 0.014963451, 0.015437325, -0.036522705, -0.019151388, 0.03181958, -0.025813192, -0.025252564, 0.030314093, 0.015375934, -0.012146896, -0.021151068, 0.0077178045, -0.024889307, -0.045008555, -0.06809647, -0.0005547517, 0.049076833, 0.0022854817, 0.01078837, 0.007858341, 0.00072547933, -0.079345316, 0.016272195, 0.013556976, -0.0018259034, 0.0045717703, -0.011711071, 0.034332, -0.09632641, -0.035223812, 0.033039413, -0.0293708 ] }, { "values": [ 0.022463273, -0.05415966, -0.06952607, -0.04511598, 0.019173361, 0.025740542, 0.0076330663, 0.013519163, 0.00080256007, 0.023985041, 0.011307548, 0.03150427, 0.021868754, -0.04836196, -0.058758672, -0.06794715, -0.036681816, -0.008599533, -0.067256674, -0.028673049, 0.0015204798, 0.014219667, 0.035413958, -0.033344135, 0.013605042, 0.035853904, 0.036969997, 0.020844072, 0.0114309555, -0.048553783, 0.022382373, 0.029979462, 0.005156793, -0.0052573844, 0.033097655, 0.023199746, -0.056177355, 0.028781448, 0.024669064, -0.0055507747, -0.09795193, 0.023937622, -0.0060516465, 0.03797064, -0.012988233, 0.012971007, 0.0094565805, -0.011598816, -0.014704117, 0.050987333, 0.012027245, -0.0038622078, -0.05690985, -0.026132314, -0.02277804, -0.027072074, -0.031816587, -0.03416227, 0.06344357, -0.012378154, -0.02095681, -0.021637216, 0.0071456134, -0.00614008, 0.033437245, -0.016698781, -0.10222736, -0.010999235, -0.016048774, 0.029585922, -0.010395198, -0.011239021, -0.0047800746, 0.001507588, -0.0136648165, -0.017748462, -0.005213193, 0.019218573, -0.025289234, 0.051451765, -0.00021035566, 0.007533075, 0.07706233, 0.015311642, -0.013236849, -0.026040588, 0.024521984, -0.063901104, -0.026561985, -0.015168318, 0.12927729, -0.027588353, 0.020188378, 0.025653342, 0.019837951, -0.035231896, -0.056675147, -0.08889578, -0.016005373, 0.08277817, -0.026515877, 0.0072940188, -0.0015726343, -0.06463797, 0.033421557, 0.021262413, 0.017744102, -0.04903013, -0.06955139, 0.0153151965, -0.022951134, -0.035780866, 0.013154509, -0.0059718043, 0.018627178, -0.016256988, -0.030112794, -0.01901134, -0.036146443, 0.030830955, 0.0032127523, -0.061942786, -0.01134538, 0.07437936, -0.019263333, 0.006626721, 0.045601152, -0.061099607, -0.044854097, -0.08114593, 0.09844321, -0.093863666, 0.017474296, -0.024203701, -0.03733018, -0.022587243, 0.031702902, 0.041084047, 0.015810037, -0.010949588, -0.0085967, -0.031499524, -0.024274088, 0.04708162, -0.029462665, 0.0026783112, 0.019490242, -0.016733112, -0.036257178, 0.015683133, -0.07852379, -0.04112476, 0.025489353, -0.00049616076, -0.038499534, 0.046017088, 0.05996919, -0.018451778, 0.07897296, -0.034351733, -0.015024594, -0.0075681983, 0.0071309265, 0.019286832, -0.08974434, -0.010662675, 0.033813495, -0.085194975, -0.013589273, -0.052081693, -0.012867802, 0.01273815, -0.012289371, -0.061056975, 0.01100856, 0.022323066, -0.030288804, 0.037985243, -0.08224576, -0.05480665, 0.03172542, 0.0390851, -0.018394597, -0.031691857, 0.0070623998, -0.008905696, 0.007831534, 0.055425692, -0.059826776, 0.016870758, 0.063099205, 0.012011538, 0.06248202, 0.016841192, 0.006006235, -0.009798972, 0.06416846, -0.04608671, -0.015066087, -0.037247494, 6.56432e-06, 0.0068424707, -0.009943758, 0.034700934, -0.02955184, 0.00997659, -0.05590558, -0.022087831, 0.047014806, -0.013643085, -0.018593501, -0.03147072, 0.009927106, -0.0073110186, 0.015933031, 0.008892572, 0.09361669, 0.07743442, 0.07216163, -0.010464189, -0.06014767, -0.016838826, -0.001116735, -0.05144358, 0.032587368, -0.031160833, -0.049911838, -0.015984623, -0.0155814355, -0.022159982, 0.002909162, 0.0015707143, 0.04327238, -0.009843169, 0.018981794, 0.02131103, -0.012290059, -0.021517243, 0.042131197, -0.01365061, -0.019884273, 0.0042069126, 0.018229252, 0.011096512, 0.019278172, 0.03219633, 0.033992276, 0.0683933, -0.031428374, -0.0061581247, -0.020258509, -0.021195797, -0.03081823, 0.019640291, -0.041607533, 0.021998033, 0.03195338, -0.044156108, -0.0072891833, 0.0108232545, 0.019419935, 0.025742967, 0.0017129272, -0.051122103, 0.0013990508, -0.09619578, 0.012426594, -0.022646757, 0.06804913, 0.0075605083, -0.018744083, 0.02457667, -0.005731371, -0.050181866, 0.019626407, 0.028324729, -0.03738499, 0.06529322, -0.01804028, -0.019414298, 0.033077363, -0.010046137, -0.007550551, -0.0019494243, -0.010754675, -0.021178342, 0.029162487, -0.0025655332, -0.06137911, -0.060607295, 0.038686574, 0.08140126, 0.000947489, 0.042651374, 0.020159245, 0.011726972, 0.009374705, -0.009873435, 0.0061733606, -0.0153402, 0.04320347, 0.06304116, -0.049605347, 0.046269417, -0.040804833, -0.0021422582, -0.045557786, -0.0064358595, -0.028170621, 0.031306874, 0.0335546, 0.05658213, -0.032752402, -0.021108566, -0.006950213, -0.0014312214, -0.063484825, 0.014145203, -0.026933737, -0.0353821, 0.0378056, 0.009358925, 0.0077491826, -0.030542964, 0.07091399, 0.0070415535, 0.0039633815, -0.023226837, -0.024821632, -0.008287542, 0.02394773, 0.015907954, -0.013423553, -0.006326007, 0.0054027, -0.0051115896, -0.017498327, -0.010150493, 0.052389685, -0.0026461098, 0.081712954, 0.0151920365, 0.04305152, 0.038129393, -0.015599849, -0.04042101, 0.06127898, -0.034820072, 0.04747317, -0.03863284, -0.01402873, 0.08863525, -0.02255756, 0.013891483, 0.026414376, 0.0175877, 0.009840066, 0.017115239, 0.025744492, 0.021364389, -0.01797518, 0.015937384, 0.018381536, -0.008086545, 0.00052031054, -0.007649137, -0.0019279373, 0.025536384, -0.022030158, -0.050151728, -0.011326412, 0.04625009, 0.017186549, -0.009385587, -0.014136593, -0.03470583, -0.013834133, 0.0013597292, 0.034390546, -0.030440483, -0.02701178, -0.03020409, -0.029192377, 0.0051896535, 0.021733304, 0.054540955, -0.022396423, 0.0029518653, 0.014895852, 0.0023340413, -0.021830278, 0.06347847, 0.0067177815, 0.028778564, -0.027994055, 0.051640455, 0.00062772393, 0.011481426, 0.024218354, 0.033407282, -0.0012373612, 0.047460765, 0.032388218, -0.01944457, -0.00899332, 0.030275099, 0.040361866, -0.010541595, 0.034061737, -0.009889618, 0.020118834, -0.039038353, 0.050288815, -0.010132723, -0.00416498, 0.015454877, 0.026732197, -0.040109362, -0.015265941, 0.025413811, -0.01867534, 0.0140727535, 0.042621482, 0.03012367, -0.019853791, -0.043909524, 0.0012039873, 0.027357932, 0.043211106, 0.01387166, -0.003033846, 0.037129328, -0.04549851, 0.021364642, 0.02378551, -0.027949052, 0.028558936, -0.039531637, -0.06427564, 0.025520029, 0.0031646583, 0.0186358, 0.049755737, 0.03928378, -0.0024681503, 0.033862337, 0.065833375, -0.0018411804, -0.0114161875, -0.06479988, -0.059571296, 0.032023877, -0.04990481, -0.039484058, 0.022013174, 0.024935812, 0.013018339, 0.021296823, -0.038597155, 0.010528884, -0.06641235, -0.01808789, 0.05668695, 0.047543976, 0.01795709, -0.043869626, -0.058958184, 0.015935361, 0.061375517, 0.06802573, 0.0014583194, 0.007999301, -0.012004085, -0.024907982, 0.044743165, 0.007434713, 0.029007113, 0.016156137, -0.00029043044, 0.019333906, 0.003419655, 0.006059333, 0.027070552, -0.011745864, 0.0339256, -0.07000858, 0.013755969, 0.0051233144, 0.025396535, 0.03740524, 0.029268812, 0.04518479, -0.007387317, 0.012881238, -0.065406196, -0.05975675, 0.056699336, 0.0341711, -0.020688662, -0.013217546, 0.0907651, -0.0074567376, -0.0045421994, -0.03568343, 0.0048087244, 0.008199226, -0.049731404, -0.01977187, 0.018092947, -0.044465505, 0.015416445, -0.037224513, 0.00048572232, -0.016211467, -0.030368622, 0.06993184, -0.09901384, 0.022149269, 0.013950573, 0.068287574, -0.027731698, -0.00883072, 0.04900341, -0.0689744, -0.06879515, -0.021475576, -0.009699699, 0.053618886, 0.021202816, 0.01335976, 0.0047712307, 0.052601293, 0.008941773, 0.011233376, 0.03286047, 0.032969706, 0.014004626, -0.00059865054, -0.022813173, 0.029507747, 0.0059018205, 0.014202697, 0.03814155, 0.049573373, 0.06455003, 0.0006969111, 0.035546247, -0.010395909, 0.012951608, 0.056872346, 0.01857992, -0.04868423, 0.033620276, 0.002387811, -0.035606362, -0.050102912, -0.001526019, 0.0009382736, -0.0093242, 0.029804094, 0.053202037, -0.03681661, -0.008186842, 0.014558418, -0.07719829, 0.005095393, 0.0021562227, 0.043375004, -0.02016934, -0.019951524, 0.003538235, 0.023777204, -0.028313331, -0.08238364, -0.004739739, 0.01937965, 0.013839188, -0.017396066, 0.042441163, -0.009092869, 0.023037512, -0.0010931867, 0.025024492, -0.012361109, 0.01251836, 0.025732482, 0.027226768, -0.033682697, 0.004078416, 0.011135335, -0.04872779, 0.05343263, 0.0042922576, -0.027978748, 0.09688977, -0.014786041, 0.029725077, -0.031523302, 0.03136568, 0.02124645, -0.040730298, -0.0037057416, -0.0037650866, 0.028921112, -0.016711367, 0.028947009, -0.030067325, -0.041655697, 0.02300803, -0.033942696, -0.057643216, 0.027301673, -0.00032842794, -0.01193509, -0.05477788, 0.03345124, -0.046649728, -0.078990944, -0.029278142, -0.0071546137, 0.01370179, 0.023014784, 0.0077765714, -0.006412489, -0.05697966, -0.009215418, -0.009299587, 0.035376992, -0.019940488, -0.020894613, -0.03655099, -0.012626638, 0.012098586, -0.030803744, -0.0018211827, 0.06954069, -0.005177667, -0.03800472, 0.0046907766, -0.06542626, 0.028801678, 0.025218746, 0.014901434, 0.008967303, -0.069314495, 0.079150125, 0.034604494, 0.062423844, -0.033547502, 0.05652042, 0.012512375, 0.017357688, -0.03999422, -0.0074912463, -0.031756997, -0.028721178, -0.014577216, -0.0022964822, 0.028907586, -0.02576397, -0.00230666, -0.029133543, 0.050873894, 0.05423426, -0.0049858815, 0.040074535, -0.033266064, 0.020943185, -0.033723794, -0.03781619, 0.052280918, 0.031642005, 0.05947649, 0.060544062, -0.004779981, 0.026363883, 0.0031512138, -0.099542335, -0.019365085, 0.026041275, 0.0067705135, -0.046228472, -0.053481206, 0.0119533725, 0.006762912, 0.004465407, 0.0366315, -0.032676373, -7.7145905e-06, 0.021660766, 0.030029349, -0.046082158, -0.011885881, 0.0036892178, 0.013832479, 0.08435, -0.05175973, 0.046765063, -0.047147438, 0.0002705729, -0.0024255223, 0.01799842, -0.07175554, -0.022214394, 0.07216951, 0.0056813923, 0.03194065, 0.05520032, -0.04961895, 0.02832017, -0.042327266, 0.008404376, 0.04942201, 0.0049846554, 0.009750605, 0.059254237, 0.042392075, 0.04638258, 0.03215179, 0.0058622407, 0.03194137, -0.013656171, -0.042779017, 0.09858783, 0.018126441, -0.022099826, -0.03926828, 0.018415192, -0.062275354, 0.08886919, -0.00075758575, -0.034114998, 0.014673536, 0.050626494, 0.0013320403, 0.004621127, 0.021488601, 0.004224322, -0.030427786, -0.023902966, 0.028911013, -0.014578965, -0.011373342, 0.049150813, -0.0073791672, -0.020945184, -0.023687959, -0.020670425, -0.024154324, -0.037230805, -0.068592995, 0.013179081, 0.038532216, -0.015851071, 0.0183363, 0.013413404, 0.0149827115, -0.0645029, -0.0011148931, 0.012408706, 0.02013543, 0.017398486, -0.021450121, 0.039391752, -0.079748586, -0.034829825, 0.042050205, -0.018735176 ] }, { "values": [ 0.018724015, -0.0447625, -0.04925942, -0.041905023, 0.0019205649, 0.014368065, -0.024845267, 0.016727515, -0.00015683973, 0.007541695, 0.023985628, 0.014991562, 0.0056503327, -0.025664603, -0.061481714, -0.04778994, -0.0042392896, -0.041475162, -0.045273628, 0.017106686, 0.027042456, 0.031206029, 0.005486113, -0.041793317, 0.039264504, 0.045517873, 0.03503132, -0.0021756296, -0.0005190988, -0.059498902, 0.02515741, 0.009410573, 0.0021154599, 0.016760433, -0.0029343728, 0.019719925, -0.036348812, 0.023483898, 0.046233952, -0.042440157, -0.091953956, 0.012635984, -0.0020209774, 0.026157556, -0.04711308, 0.008154182, 0.0048952615, -0.006401019, -0.002246539, 0.023553982, 0.007227703, 0.008606014, -0.020166768, 0.014547436, 0.0005230932, 0.0060207327, -0.034863476, -0.04347392, 0.07563992, -0.0173575, 0.017078742, -0.0007779376, -0.006399003, -0.017263658, 0.02843158, -0.01939373, -0.10918557, -0.04232267, -0.030160267, 0.013200384, -0.04627095, -0.011281565, -0.031641517, 0.00061310903, -0.00828829, -0.047851194, 0.010418275, -0.012519608, -0.03252705, 0.044915423, 0.026703812, -0.024095934, 0.012281625, 0.048662722, 0.018575719, 0.0044921497, 0.019562967, -0.053995866, -0.051221088, -0.017012563, 0.09501481, -0.034427803, -0.0077991923, 0.009447132, 0.03561832, -0.077031225, -0.034974728, -0.0629538, 0.0055415737, 0.043186173, -0.027818525, 0.009048981, -0.00880459, -0.0896546, 0.03228323, 0.04131321, 0.032097846, -0.06330454, -0.04227398, 0.017883752, -0.04260553, -0.030309001, -0.02457982, 0.008637031, -0.011932564, -0.023692513, 0.007142998, -0.030567052, -0.049128063, 0.008783612, -0.0006749307, -0.049376097, 0.0068147164, 0.06523331, 0.0035446484, -0.0023283367, 0.032471158, -0.07399058, -0.039713785, -0.074397735, 0.072122596, -0.099693626, 0.04057654, 0.004957443, -0.050547164, -0.02283873, 0.045391686, 0.03888634, -0.021561453, -0.019207345, 0.0014554991, -0.054365244, -0.037698936, 0.07553391, 0.009189149, -0.023162127, 0.027243163, -0.015150096, -0.026992755, 0.023793481, -0.07095467, -0.04503799, -0.0040020547, 0.009873, -0.030400746, 0.048389208, 0.056695413, -0.06777411, 0.059952423, -0.038317163, -0.032624416, -0.0271215, 0.0017697067, -0.0028378405, -0.036488034, 0.019528303, 0.024985082, -0.067344174, -0.042033162, -0.06859116, -0.023524126, -0.037456382, -0.05412705, -0.07289143, -0.032112885, 0.016637577, -0.05479004, 0.009740812, -0.089350685, -0.0709037, 0.044148065, 0.05519975, -0.026071165, -0.049084567, -0.047996923, -0.02747107, 0.036006637, 0.06467696, -0.053044084, 0.031472247, 0.03781201, 0.022640502, 0.036486756, 0.006013415, 0.019342372, 0.0023488277, 0.07532111, -0.038174924, -0.036676012, -0.041788507, -0.014233434, 0.05859156, -0.0062772753, 0.051284954, -0.021211205, 0.01414336, -0.05411562, -0.02737662, 0.074380346, -0.0328857, 0.016344063, 0.01140394, 0.019537054, -0.01683697, 0.020748625, -0.0016617362, 0.0658359, 0.061831795, 0.068984635, -0.05573083, -0.0436511, -0.024014521, 0.009120397, -0.028973663, 0.06950125, 0.007477608, -0.030659974, -0.007529943, 0.0155901285, -0.027811171, 0.00019794096, -0.0032341515, 0.021811748, -0.022594042, 0.03179909, 0.039349355, 0.032979216, -0.020172425, -0.0058010463, 0.026476461, 0.01012821, 0.018796816, 0.017387796, 0.0019087945, -0.000759471, 0.06962483, 0.058339857, 0.06336845, -0.049964767, -0.03762046, -0.021760074, -0.050003685, -0.038443122, -0.0154071385, -0.053101387, -0.020324033, 0.04373437, -0.048356313, 0.01438402, 0.046145007, 0.025079211, 0.0010565945, -0.0028469008, -0.049164597, -0.00954845, -0.05421944, -0.008875444, -0.027975714, 0.071684234, -0.011516235, -0.015312249, 0.021657754, -0.047324523, -0.02227174, 0.023441011, 0.07110249, -0.027294196, 0.042754844, -0.034079067, -0.030019438, 0.061222065, -0.0027509604, 0.0072810547, -0.011901337, -0.024316365, -0.023903714, 0.027065728, 0.03174471, -0.039870292, -0.04157518, 0.03125562, 0.060187787, 0.013787551, 0.025971096, 0.050440338, -0.013266069, 0.022852933, -0.016121797, -0.03181956, -0.0017263456, 0.00042672968, 0.06664014, -0.03987079, 0.03452605, 0.0014401188, -0.019696541, -0.04470404, -0.03326375, -0.009323095, 0.028969256, 0.033881813, 0.06117132, -0.044911727, -0.040406093, -0.010951685, 0.008097983, -0.08913051, 0.014921022, -0.015421385, -0.002395873, 0.01185791, 0.015860146, 0.0017037084, -0.03928511, 0.03955472, -0.006110391, -0.001100437, -0.03321511, 0.015239286, -0.0034791776, 0.02040529, 0.031201039, 0.010786308, 0.0018139624, 0.0037822376, 0.034759376, -0.029407063, 0.015153922, 0.0348587, 0.015016042, 0.052181326, 0.010657411, 0.03214208, 0.029693268, 0.029627606, -0.031832647, 0.037691817, -0.028515847, 0.051254418, -0.05180036, -0.024693357, 0.08783571, -0.057041846, -0.00021066157, 0.030158335, 0.041405633, 0.019336505, 0.06321894, -0.007664824, 0.025914779, -0.030841136, -0.005276657, 0.006918284, 0.007301738, 0.00037214192, 0.024982326, 0.016836932, 0.031088104, -0.0401596, -0.05170677, 0.029879808, 0.033924986, 0.028195156, 0.027531318, 0.0009477476, -0.030175043, -0.02129799, -0.013975184, 0.017019063, -0.015118353, -0.017896172, -0.036971174, -0.018111354, 0.022223983, 0.0046468736, 0.041274857, -0.021737773, -0.0111412015, 0.025279267, 0.021824371, -0.032284368, 0.018202797, -0.018431947, 0.033666626, -0.010401428, 0.05843083, 0.024597192, 0.008106617, 0.0017494272, 0.0005349709, -0.021366905, 0.0096386885, 0.048566483, -0.03676798, -0.0077823233, 0.03945626, 0.059524, 0.022260299, 0.030118035, -0.038779676, 0.02393053, -0.046068262, 0.050731968, 0.018321836, 0.0058280607, 0.036133286, 0.026615938, -0.060769908, -0.013185731, 0.022916945, 0.008140576, 0.010008539, 0.004148427, 0.045562364, -0.056965817, -0.052854914, 0.0071392804, 0.039427366, 0.030649332, 0.0089593865, -0.034667265, 0.02045799, -0.04188623, -0.006518986, -0.012232112, -0.028330468, 0.01791094, -0.037235014, -0.030821316, 0.015300556, -0.002605039, 0.010681772, 0.043954168, 0.042282093, 0.009602161, 0.034196973, 0.046085335, -0.014925383, -0.01966514, -0.06935608, -0.051484298, 0.0021978645, -0.021747822, -0.041968077, 0.023225883, 0.007472071, 0.039826978, 0.007840885, -0.0018145646, 0.018548053, -0.071113735, -0.010373775, 0.052476846, 0.042982657, 0.00757503, -0.015726935, -0.053553965, 0.034810357, 0.03922016, 0.076143846, -0.009548862, 0.005534379, 0.0067856857, -0.026324535, 0.040166214, 0.007844439, -0.0006167745, 0.029896492, 0.010428531, 0.01977009, 0.017111342, 0.006962868, 0.011465492, -0.0029351795, 0.03457391, -0.06569475, -0.0003798236, 0.023588186, 0.012920554, 0.06801748, 0.042499132, 0.068287246, -0.010416953, 0.01746249, -0.051977668, -0.042034075, 0.038027592, 0.00014680329, -0.023481924, -0.041676424, 0.109113246, -0.015468728, -0.0015786666, -0.014527134, -0.027130527, 0.012845658, -0.07217108, -0.02558328, 0.028164748, -0.027195236, 0.027167963, -0.030262774, 0.043262906, 0.011039419, -0.0076681557, 0.06427471, -0.0876293, 0.007025925, 0.009474965, 0.086250305, -0.0039331997, 0.021130593, 0.039339036, -0.057773884, -0.0743901, -0.0033740504, -0.025568353, 0.051427543, 0.034497075, -0.014908038, -0.019574286, 0.06272529, 0.034285393, 0.017013812, 0.050170783, 0.0068651997, 0.02184124, 0.028448215, -0.031166703, 0.007075303, -0.006883511, 0.032649763, 0.035511453, 0.027731242, 0.054160282, -0.014718534, 0.042972255, -0.010647249, -0.02205719, 0.08576339, 0.009325684, -0.032952607, 0.046886105, 0.04997719, -0.00390668, -0.06867851, 0.012275175, 0.006616417, -0.017211763, 0.025303176, 0.054175597, -0.027532775, -0.012145247, 0.009090627, -0.036023743, 0.015630664, -0.006918251, 0.022847343, 0.014499791, -0.022186227, 0.015538373, 0.03925612, -0.027957352, -0.058654986, 0.034626205, 0.010804962, -0.0013547926, -0.014219147, 0.025450101, -0.0060982737, 0.0066426354, -0.023944367, 0.017270558, -0.034004312, -0.0190336, 0.043214582, 0.024295682, -0.041068148, -0.017065369, 0.013974541, -0.040574938, 0.02028305, -0.01800118, -0.025118345, 0.073941246, -0.031642333, 0.004209431, -0.0049448498, 0.0410767, 0.035725206, -0.044365715, 0.023949109, -0.0065162512, 0.039902616, -0.020807886, 0.0023182123, -0.045408394, -0.044736966, 0.0003636332, -0.012747676, -0.0501814, 0.029283939, -0.028857855, 0.009052904, -0.047472317, 0.055932686, -0.040632643, -0.04168816, -0.027378742, -0.011944033, -0.026879344, 0.01774976, 0.022463698, -0.025272848, -0.06304759, 0.0371624, -0.042178206, 0.046537884, -0.0027497653, -0.01064639, -0.037142824, 0.03349308, 0.0011375016, -0.035665758, 0.0046415715, 0.06456583, -0.002956067, -0.036400463, -0.01194746, -0.05863153, 0.051272437, -0.0026903932, 0.022366935, -0.0011407324, -0.08867015, 0.07560035, -0.010375986, 0.035094973, -0.028689977, 0.060464595, 0.015261883, 0.038999896, -0.040766798, -0.01564659, -0.023862155, -0.034540504, -0.009821747, -0.027438423, 0.0031392656, -0.029213822, -0.0072311717, -0.036758352, 0.064008944, 0.05874504, -0.014216775, 0.03005379, -0.0058057983, -0.00884158, -0.02884371, -0.029978354, 0.038016073, 0.022879481, 0.035666727, 0.056761254, -0.014470248, 0.020131115, -0.0073498166, -0.047849495, -0.04148818, 0.05227474, 0.00875116, -0.053900838, -0.029856177, 0.009647116, 0.0024790484, 0.018141482, 0.026071304, -0.06600746, 0.017845636, 0.02115948, -0.0117981415, -0.06513185, -0.0049508144, -0.00096003065, 0.01799922, 0.043123584, -0.028892793, 0.058774326, -0.01850882, 0.04320009, -0.0298528, 0.0100021865, -0.060934644, -0.04318739, 0.070592016, 0.025999669, 0.03717214, 0.029975139, -0.046288118, 0.030011276, -0.0556874, 0.01873925, 0.0718017, 0.021670356, 0.015003641, 0.051582564, 0.045676615, 0.027598606, 0.014246451, -0.035881605, 0.012053544, -0.021519367, -0.025182946, 0.09849051, 0.019832797, -0.016542144, -0.030793289, 0.003852938, -0.035940915, 0.10938099, 0.032388397, -0.027763613, -0.008469109, 0.031255145, 0.013548735, -0.008997722, 0.004460391, -0.0013343727, -0.015481509, -0.04547788, 0.017950755, -0.020151218, -0.031237667, 0.021472106, -0.024581123, 0.013139285, -0.018228255, -0.019432496, 0.016058318, -0.030626807, -0.05454661, -0.027521554, 0.032596692, -0.009089127, 0.0026913942, -0.015477996, 0.033444624, -0.07184217, 0.014140699, 0.030400977, 0.019504616, -0.0119572, 0.009196914, 0.021804327, -0.09727845, -0.010035006, 0.010039453, -0.039525725 ] }, { "values": [ 0.019721271, -0.055314902, -0.023154642, -0.025330322, 0.018617116, 0.008167218, -0.00071007933, -0.023316678, 0.0014062508, 0.026683947, 0.014864417, 0.0216082, -0.005298595, -0.03884933, -0.06335443, -0.033205535, 0.007533702, -0.0026219361, -0.07386241, -0.042775895, 0.011882939, 0.02644291, 0.0085294815, -0.05140607, 0.01798803, 0.037537113, 0.047223408, -0.007325997, -1.843239e-05, -0.06841013, 0.025786323, 0.031205866, -0.003414617, -0.016814776, 0.02566412, 0.0040778425, -0.052618347, 0.02102331, 0.060299043, -0.012933929, -0.089689836, 0.036776625, -0.0021931813, 0.02007253, -0.034367822, 0.025814302, 0.020995595, 0.017367128, 0.0068696034, 0.060027465, 0.021594854, -0.001376961, 0.009481798, -0.009708534, 0.0009792858, -0.022271572, -0.05478756, -0.057990875, 0.076718315, -0.042593863, 0.0057176836, -0.0020189625, 0.004570354, -0.012906626, 0.051259864, -0.007922703, -0.099075094, -0.025940277, -0.025878316, 0.022977166, -0.0060541485, -0.018993566, -0.010854346, -0.022249829, -0.00856933, -0.021946823, -0.040358078, 0.013380438, -0.051809214, 0.023981787, -0.008334297, -0.004687767, 0.05079943, 0.02614111, 0.0048906477, -0.009629795, 0.006990317, -0.09098139, -0.021487894, -0.01849371, 0.116938524, -0.011992525, -0.0027393114, 0.018560896, 0.025604293, -0.05623506, -0.04679117, -0.07993516, -5.049455e-06, 0.08796002, 0.010122614, -0.0006891423, -0.00097579195, -0.08951685, 0.034990072, -0.015277176, 0.0032637853, -0.07029902, -0.04610287, 0.022469848, -0.037160583, -0.03099527, -0.018514417, 0.010237227, -0.003561988, -0.0051241685, -0.023069734, -0.020375187, -0.036054403, 0.01294451, 0.010009792, -0.061089773, -0.038762905, 0.07415552, 0.0031402623, -0.0056889895, 0.003874627, -0.06591723, -0.019138364, -0.09181203, 0.10166559, -0.09344967, 0.022579918, -0.023292072, -0.03924324, -0.02792955, 0.022775171, 0.050177142, 0.014435795, -0.0043046754, -0.01986117, -0.035369717, -0.0071033984, 0.08017173, -0.010300752, -0.0011749387, 0.016137483, 0.020584414, -0.03142772, 0.014226209, -0.09116596, -0.02187822, -0.001589787, 0.0035187227, -0.018747436, 0.0436639, 0.06790859, -0.03993266, 0.05254849, -0.017431563, 0.005788905, -0.009859552, 0.0086394455, 0.005403234, -0.04853364, -0.041353095, 0.0064021777, -0.07010041, -0.015141931, -0.07989621, 0.0018225658, 0.006097243, -0.020637559, -0.086029746, 0.023160685, 0.029822372, -0.016977467, 0.030292796, -0.06097159, -0.045889284, 0.028253293, 0.023265056, -0.033185303, -0.040336683, -0.035676464, -0.048015963, 0.011408703, 0.0651963, -0.047071666, 0.03895036, 0.04210277, 0.00036747853, 0.020118764, 0.01059263, 0.030346764, -0.005337582, 0.051483177, -0.032291394, 0.010415228, -0.064128116, 0.029610416, 0.01989743, 0.004615757, 0.05291519, -0.032815173, 0.012538117, -0.041613035, -0.010040705, 0.059770748, -0.007803552, -0.03442797, -0.034432314, 0.030538945, -0.026311545, 0.0081250165, 0.03125994, 0.0498905, 0.07156436, 0.048214424, -0.022960853, -0.03495295, -0.024761759, -0.00078532536, -0.014609607, 0.04506054, -0.029681988, -0.048662633, -0.047613032, -0.004026914, 0.024162434, -0.008232149, 0.0017155313, 0.027933663, -0.009515276, 0.013522763, 0.03691398, -0.0059181456, -0.026437512, 0.020890813, 0.008679909, -0.027949322, 0.025830481, 0.025696933, 0.01946293, 0.004030526, 0.07773008, 0.058370244, 0.07302097, -0.055807278, -0.026078375, -0.042466894, -0.030238882, -0.08121085, 0.015150416, -0.040637497, -0.024855183, 0.03591493, -0.073638074, 0.0025377525, -0.0014685239, 0.03248947, 0.013462561, -0.003976327, -0.044443782, 1.6215663e-05, -0.07035804, -0.0072822897, -0.015518093, 0.096271835, 0.030648526, 0.011298591, 0.013619635, -0.01551905, -0.043395843, 0.022745045, 0.039392587, -0.030176, 0.045652356, -0.035363507, -0.025327122, 0.04869132, -0.009723486, -0.0051850067, -0.009432518, 0.0049987887, -0.022576509, 0.049612295, 0.013029803, -0.062340684, -0.038401783, 0.055452205, 0.07031246, 0.008726556, 0.038478717, 0.01179185, 0.0029697316, 0.00830383, -0.01644623, 0.010212213, -0.03695067, 0.031551313, 0.069199614, -0.02197157, 0.018536313, -0.020442637, -0.0017213745, -0.05748216, -0.02956475, 0.0023090101, 0.050415028, 0.013210236, 0.0456021, -0.02719393, -0.024731161, 0.018410705, 0.01850906, -0.092259645, 0.021149533, -0.026303984, -0.0064576757, 0.0335542, 0.020986568, 0.015751367, -0.017834082, 0.045256387, -0.0071547963, -0.0055521284, -0.04916727, -0.0024576844, -0.0062121777, 0.030767037, 0.042119604, -0.015801186, 0.003586566, -0.0059578167, 0.0058010523, -0.021164868, -0.0035454514, 0.053532127, 0.009955649, 0.040692717, -0.0062606456, 0.0322509, 0.023943555, -0.011045725, -0.05520073, 0.03890961, -0.037588824, 0.068058126, -0.026877763, -0.046280954, 0.08304055, -0.008189079, 0.009026168, 0.04204501, 0.04452156, 0.021326879, 0.050100263, 0.021869097, -0.01234682, -0.01853093, 0.03748176, 0.0058115916, -0.0024493749, -0.00030621502, 0.009908255, 0.02758409, 0.020728363, -0.02677996, -0.06848776, 0.0011925658, 0.040074814, 0.02014507, -0.008600446, -0.020143978, -0.060538463, -0.022048963, 0.004171688, 0.021876495, -0.031206554, -0.03938005, -0.02595508, 0.008926995, 0.02048049, 0.0075328317, 0.03412687, -0.021132648, -0.029451331, 0.022773199, 0.007246972, -0.028499115, 0.034778558, -0.012027994, 0.027783008, -0.010461727, 0.04736227, -0.020726174, -0.011646195, 0.018844862, 0.016987449, -0.01376046, 0.022737125, 0.041832186, -0.016146798, -0.024260987, 0.029730186, 0.063289955, -0.021419501, 0.03774331, -0.03822041, 0.027273318, -0.025469087, 0.04631965, 0.006480014, -0.0064574545, 0.005920786, 0.010908242, -0.031139877, -0.011769343, 0.012718924, 0.016734414, 0.006424838, 0.035582263, 0.021246752, -0.053139392, -0.07391288, 0.0071108975, 0.02392134, 0.04121776, -0.0026617341, -0.024920465, 0.0265706, -0.06345955, 0.018042, -0.005661693, -0.022342585, 0.017477667, -0.010954958, -0.0336595, 0.0034169129, 0.018285299, 0.027847823, 0.050019983, 0.018528702, -0.0026292833, 0.04790196, 0.073597, -0.01791804, -0.033352133, -0.06657039, -0.022489652, 0.0076523717, -0.038020965, -0.03224312, 0.018294584, -0.015243851, 0.039089438, 0.011936546, -0.044679612, 0.022673104, -0.04939504, -0.007829605, 0.06705224, 0.040384382, 0.028164946, -0.028531527, -0.040725823, 0.022563264, 0.045432303, 0.04806871, -0.008424812, 0.00093313894, 0.013103478, -0.003913254, 0.056477368, 0.025348343, 0.0070362817, 0.001122428, 0.026202437, 0.015519223, -0.011843816, 0.033103198, 0.026666155, 0.00555503, 0.03250471, -0.07267215, 0.0009121068, 0.0040437086, 0.02786949, 0.019840766, 0.023486203, 0.054783303, -0.033511188, -0.0010413869, -0.055857666, -0.050039463, 0.04294563, 0.015684955, -0.017874198, -0.04730499, 0.0853555, -0.010732855, -0.009588147, -8.721236e-05, -0.018339247, 0.00030633304, -0.045276877, -0.015263924, 0.028389217, -0.012991538, 0.005259706, -0.024375822, 0.04420862, -0.0003292715, -0.035908453, 0.07628704, -0.08003706, -0.0029612372, 0.002949397, 0.07407812, -0.029164774, 0.01551891, 0.07042233, -0.08488437, -0.0798287, -0.0106232045, -0.03387914, 0.032083344, 0.0171882, -0.0011594588, -0.0199522, 0.049956962, 0.011278429, 0.015087127, 0.019366711, 0.0059048426, 0.011180076, 3.4243873e-05, -0.035901893, 0.027102234, 0.01566713, 0.023721512, 0.03601467, 0.02594215, 0.06047647, -0.008377183, 0.0507079, -0.019137386, -0.024309564, 0.0540695, 0.0145447785, -0.05837515, 0.050175004, 0.03384811, -0.031896465, -0.06845621, -0.005782552, -0.027805096, -0.033957195, 0.05146756, 0.041633654, -0.018622413, 0.01648411, 0.037468143, -0.06354383, 0.0013224455, -0.0015683674, 0.049003165, -0.0076056016, -0.037388362, 0.028587848, 0.013182225, -0.03737789, -0.06693672, 0.017037405, 0.012230285, 0.013159104, -0.015207532, 0.023498226, -0.020066977, 0.02315927, 0.009064631, 0.048758753, -0.045183085, -0.03916091, 0.037969403, 0.01822138, -0.0545186, -0.041287478, 0.007106695, -0.027182283, 0.044724423, -0.012801792, -0.0073693204, 0.06337678, 0.003217428, 0.009197355, -0.036835093, 0.012080543, 0.028492404, -0.038002145, 0.006302126, -0.01428339, 0.030645525, -0.020828633, 0.016577398, -0.020146424, -0.035160273, 0.04084539, -0.012710949, -0.03818776, 0.0388071, 0.012342084, -0.0008359219, -0.052369613, 0.05651121, -0.035078205, -0.056510188, -0.02237612, -0.041871455, -0.0057008057, 0.05407046, 0.0126794875, -0.014293567, -0.046453424, 0.008338648, -0.017404275, 0.054627705, -0.0019745294, 0.002218501, -0.017021723, -0.0009584463, 0.04764817, -0.03593127, 0.0077943513, 0.066631414, 0.0070077307, -0.013448889, 0.010761917, -0.071968526, 0.058555275, 0.017325599, 0.000757034, 0.0072659114, -0.076362826, 0.0737636, 0.0124148745, 0.035032853, -0.01502995, 0.037394512, -0.00093559624, 0.003647796, -0.043975946, -0.03311909, -0.031796582, -0.029732201, 0.0034395137, -0.026362902, 0.012394552, -0.026955778, -0.03211404, -0.02495262, 0.051329613, 0.056964334, 0.020293033, 0.016332911, -0.013987441, 0.02741605, -0.026405878, -0.037980225, 0.01694087, 0.040619988, 0.06568196, 0.07160657, -0.044207465, 0.017713064, 0.016407361, -0.07142456, -0.025020016, 0.03304636, 0.028278003, -0.0377094, -0.034064386, 0.0077313846, -0.008661326, -0.011628924, 0.02291654, -0.058389224, -0.012624054, 0.006662445, 0.0149632115, -0.04301518, -0.023173995, -0.0073122224, -0.009174016, 0.0641006, -0.016947033, 0.057927128, -0.0448852, 0.00759813, -0.016951462, 0.015438424, -0.086557366, -0.009675728, 0.05625903, 0.05539659, 0.019890895, 0.041180164, -0.067015775, 0.025494648, -0.052516643, -0.0008196903, 0.06492393, -0.009177072, 0.023856692, 0.062099718, 0.049538594, 0.014918612, 0.04133555, 0.0113827195, 0.022386841, -0.01827748, -0.018886475, 0.08671528, -0.014041214, -0.013955292, -0.04154105, -0.013296586, -0.059481375, 0.10605016, 0.021486858, -0.04092353, 0.002469376, 0.04369851, 0.012168112, -0.011093799, -0.016297715, 0.025545254, 0.0048251417, -0.045334607, 0.027996212, -0.030662743, -0.01145486, 0.038251016, -0.0037473312, -0.010625587, -0.021612968, -0.017481497, 0.017474797, -0.0200645, -0.08884999, 0.008905662, 0.036594473, -0.02213338, 0.010462925, -0.018241618, 0.018063385, -0.053794485, -0.0014510286, 0.029936656, -0.010261498, 0.018975131, -0.009637901, 0.027912028, -0.062113535, 0.0064927177, 0.054858103, -0.034490425 ] }, { "values": [ 0.0061173677, -0.05458455, -0.0032559566, -0.016037399, 0.012566705, 0.037442148, -0.007934529, -0.008400381, 0.03666586, 0.04259495, 0.019068569, 0.011943996, -0.018548395, -0.02414262, -0.06145804, -0.059155617, -0.009065849, -0.019942757, -0.10217916, -0.05128125, 0.039810847, 0.022252662, 0.026098695, -0.019754687, 0.02249162, 0.025393272, 0.041896358, -0.007885119, -0.009261878, -0.048117522, 0.024325635, 0.03777177, -0.00032541453, -0.023951808, -0.013576919, 0.039164264, -0.069186226, 0.018476496, 0.037713412, -0.020950124, -0.094457336, 0.029288338, -0.012915993, 0.022186523, -0.055179715, 0.023150036, 0.031124722, 0.020377588, 0.01141216, 0.03996326, -0.0055413777, -0.016319191, 0.021843258, -0.0048929267, -0.0038699193, -0.02216024, -0.061930757, -0.014281996, 0.07570671, -0.02644916, -0.007872364, -0.0025991842, -0.020306047, -0.01437625, 0.029879175, -0.03186628, -0.08683535, -0.010756734, -0.02087995, 0.038588367, -0.017530737, -0.020612195, -0.019330418, 0.0066917017, -0.0050324462, -0.021034202, -0.012979195, -0.0064658625, -0.06035534, 0.027191734, 0.034892406, 0.027100893, 0.016217528, 0.029675104, 0.011336352, -0.013092458, 0.034328423, -0.0753269, -0.03245509, -0.020277912, 0.09696503, 0.00084316084, -0.022397116, 0.017966697, 0.021033807, -0.028211728, -0.03484843, -0.07744284, 0.018083243, 0.054150015, 0.011549446, -0.011118273, -0.023863686, -0.08047229, 0.029387735, -0.020424282, 0.0057487027, -0.051905163, -0.063493736, 0.009343546, -0.039232925, -0.028027877, -0.013164517, -0.0123032965, -0.0064678174, -0.004948853, -0.066638716, -0.023961613, -0.04825219, 0.0020087818, 0.0066703777, -0.04886744, -0.039046507, 0.054617975, 0.029152755, -0.009335823, -1.011615e-07, -0.053064812, -0.042216383, -0.06677094, 0.10320414, -0.10284211, 0.0193007, -0.013666075, -0.024646472, -0.039236743, 0.052849706, 0.021234086, 0.019567078, 0.03723529, -0.015268676, -0.049197167, -0.03043011, 0.07828897, -0.009021321, 0.0045944974, 0.009215925, 1.584453e-05, -0.051054277, 0.050890896, -0.07717129, -0.0309615, -0.0018027163, 0.010363946, -0.02685259, 0.056224596, 0.04978867, -0.049697313, 0.07958284, -0.026300874, 0.0013747214, -0.016917719, -0.0011889845, 0.011304228, -0.04155317, -0.014803857, 0.012374474, -0.06211833, -0.05102043, -0.036882058, -0.011081853, 0.0019401289, -0.038751304, -0.052630126, -0.0008839201, 0.010596743, -0.0096212905, -0.00033327742, -0.072046615, -0.041865807, 0.046955533, 0.05546573, -0.045730565, -0.027300991, -0.014418035, -0.04007149, 0.0069315946, 0.07994096, -0.034157876, 0.03840837, 0.04670335, 0.016473765, 0.023152655, 0.0035541349, 0.016212687, -0.015254763, 0.027665105, -0.02636244, -0.0103664845, -0.032392543, 0.0016370085, 0.046337564, -0.00053524633, 0.07974972, -0.053244162, 0.03844941, -0.040871784, -0.025649376, 0.05373878, -0.0273535, -0.02615577, -0.04666665, 0.011331404, -0.042161833, 0.003151455, 0.01366761, 0.08126565, 0.0462896, 0.041119985, -0.01513842, -0.070742935, -0.04725023, -0.021640992, 0.0053839334, 0.04081384, -0.00015718694, -0.032618493, -0.0253456, -0.020446505, 0.0039083436, 0.015906919, 0.006467284, 0.019964673, 0.0049892953, -0.009485398, 0.059831023, 0.004384526, -0.012269937, 0.013379975, 0.034008324, -0.024317978, -0.0039815214, 0.026730288, 0.03194623, -0.008375793, 0.07522039, 0.042942572, 0.08335432, -0.016661651, -0.03457577, -0.06050838, -0.033221222, -0.059224874, 0.0029715844, -0.028417675, -0.022025924, 0.05412085, -0.071995005, 0.0067791287, -0.003073787, 0.038904797, 0.013767302, -0.016459046, -0.03985207, 0.012936291, -0.06591115, -0.018106727, 0.0043753376, 0.069458544, 0.019762574, -0.00405595, -0.0016591451, -0.033572823, -0.046419125, -0.0058697015, 0.043499835, -0.038818315, 0.030836128, -0.016450157, -0.025871783, 0.06803856, -0.025536193, 0.016893696, -0.009473158, -0.0031401883, -0.010854412, 0.04443817, 0.011510887, -0.05406807, -0.033835102, 0.022000631, 0.07113644, 0.0159869, 0.0043918006, 0.0100017, 0.007837391, 0.018189026, -0.015158065, -0.018159842, -0.025128877, 0.046569444, 0.06973487, -0.032718934, 0.023480192, -0.0006041505, -0.007162503, -0.05701962, -0.01549592, 0.018243296, 0.037457775, 0.010551203, 0.017375082, -0.010015128, -0.02475714, 0.0049449224, 0.00464413, -0.10336189, 0.0025211503, -0.041251823, 0.0033765738, 0.03192597, 0.0030393861, 0.03814759, -0.04994848, 0.07378513, 0.0080487365, 0.0012514966, -0.024828466, -0.013279116, -0.0070945113, 0.03953761, 0.04208441, 0.019904546, 0.00096185406, 0.025265206, -0.0048144422, 0.00041964604, -0.014472239, 0.07435116, 0.013088032, 0.042051654, -0.009589249, 0.028533742, 0.03448441, -0.01756881, -0.0679024, 0.050267115, -0.03103102, 0.03156289, -0.045910113, -0.043508902, 0.082178235, -0.004487925, 0.006998579, 0.026548069, 0.017056718, 0.0006617256, 0.026573239, 0.011987466, -0.009982868, -0.005719029, 0.017895505, -0.006997905, -0.0150091285, 0.01782109, 0.018066399, 0.010381844, 0.02043681, -0.014993068, -0.06354187, 0.02403803, 0.01666519, 0.018881746, 0.009077041, 0.00389619, -0.03340655, -0.020682378, 0.0010523272, 0.019422293, -0.03573533, -0.020125518, -0.031794984, 0.017538017, 0.046768133, -0.0038430865, 0.037822258, -0.017033907, -0.0018311528, 0.023337472, 0.009786822, -0.05125842, 0.03962208, -0.008470987, 0.02139569, -0.025217555, 0.06297955, -0.029413138, 0.0034804938, 0.017817223, 0.002696237, -0.030203842, -0.007896176, 0.058404233, -0.020044522, 0.00013798208, 0.038306024, 0.06930003, -0.013116456, 0.0319419, -0.058838386, 0.008232684, -0.00667239, 0.018577134, -0.0033132897, -0.0066711977, 0.009530925, 0.02603099, -0.03824088, 0.0014475612, 0.0036547617, 0.008768218, 0.03416654, 0.025645416, -0.0010796553, -0.028600857, -0.061027713, 0.0021835624, 0.041723914, 0.057439175, 0.011845219, -0.029460063, 0.031212829, -0.063377574, 0.02243287, -0.004200433, -0.005063956, 0.018489357, -0.0032080228, -0.019867608, 0.0045413906, 0.011325477, 0.030114958, 0.023272196, 0.02216334, 0.028246017, 0.025656622, 0.07360314, -0.018003048, -0.02336547, -0.090343505, -0.03418948, -0.03462465, -0.036557503, -0.011789, 0.009332843, 0.0005941201, 0.0144732315, 0.018855205, -0.07005209, 0.02528796, -0.06903182, -0.0065977103, 0.077532366, 0.04735632, 0.012260158, -0.016486317, -0.060905017, 0.009753518, 0.076426096, 0.08001335, -0.009464814, 0.0035627496, 0.0052661807, -0.034811303, 0.046007242, 0.031843122, 0.024915231, 0.023102893, 0.034194987, 0.026275735, -0.010664622, 0.030396119, 0.032950126, 0.015194315, 0.056594577, -0.062150173, 0.025702272, 0.013565206, 0.0108199995, 0.041758347, 0.047304474, 0.06711297, -0.0009318375, 0.019642865, -0.043111674, -0.057441037, 0.022476753, 0.006776901, 0.0009239607, -0.019629106, 0.07273277, -0.02102853, 5.1432264e-05, -0.003196697, 0.006007232, 0.021322137, -0.0808569, -0.030278796, 0.007798353, -0.036390737, 0.009629966, -0.022534752, 0.035398424, 0.012891398, -0.017222561, 0.037900187, -0.086847536, -0.007840632, 0.027138034, 0.06577911, 0.0012505109, 0.022017045, 0.07242032, -0.07012227, -0.08016371, -0.024749434, -0.03720324, 0.03905735, 0.034236044, -0.005541553, -0.029789058, 0.052945856, 0.0117321685, 0.040725313, 0.004037122, -0.019207925, 0.015378132, 0.013995865, -0.05153697, 0.004633565, 0.047952835, 0.028994063, 0.032643028, -0.0046880557, 0.06772476, -0.015603413, 0.059345324, 0.0010856274, -0.030633446, 0.05753723, 0.037108626, -0.061411887, 0.05396819, 0.01898805, -0.014239795, -0.05769894, -0.00812242, -0.033823647, -0.040935352, 0.043396235, 0.038803697, -0.019292584, 0.010202755, 0.021844113, -0.03803822, -0.021080371, 0.0024522087, 0.043339793, -0.03228804, -0.034621283, 0.02262356, 0.020039206, -0.045334168, -0.046116997, 0.01898568, 0.0032124254, 0.017962221, -0.031995002, 0.044793583, -0.01313707, 0.0069063813, -0.022543324, 0.06103086, -0.040407777, -0.02242825, 0.05429781, -0.011488918, -0.03907545, -0.023305755, 0.011394667, -0.022326225, 0.040268738, -0.019553345, 0.0018404839, 0.061382536, 0.006828936, 0.0142297745, -0.036565475, 0.031069791, 0.024334487, -0.025171382, 0.008761471, 0.03828752, 0.020355472, -0.025164314, -0.0038794936, -0.045990393, -0.045352403, 0.0385191, -0.019334674, -0.044623267, 0.034738682, 0.023726346, 0.005315744, -0.056500696, 0.03714325, -0.029975263, -0.051609274, 0.011102415, -0.03706272, -0.0008787657, 0.035463847, 0.0013186027, -0.0020402381, -0.046665486, 0.025088377, -0.002945356, 0.04786912, 0.0076696738, 0.021521293, -0.027475715, 0.004242915, 0.050542396, -0.04923543, 0.016069535, 0.067379355, 0.0020081296, -0.026176628, -0.0018698409, -0.07336492, 0.05230698, 0.014851635, 0.023935376, 0.0005811983, -0.07667925, 0.10279778, 0.0084501775, 0.033654943, -0.019397015, 0.04227788, 0.022910988, 0.025976308, -0.025184551, -0.037897, -0.03769587, -0.025954459, 0.002985921, -0.011500802, 0.01983071, -0.0057448014, -0.034198478, -0.034472298, 0.05607935, 0.05263585, -0.000101918005, 0.034821536, -0.008500385, 0.011869837, -0.024830457, -0.023180021, 0.032392874, 0.038472142, 0.060733434, 0.0564352, -0.0262877, 0.010996943, 0.010161442, -0.0758908, -0.00848323, 0.0378172, 0.024720298, -0.042136546, -0.03289192, 0.0032253927, -0.0028340418, -0.01564721, 0.02638545, -0.054448403, -0.012668802, 0.004400641, 0.023177654, -0.07053138, 0.0133023495, 0.010450408, 0.007293827, 0.04148582, -0.04226878, 0.032691907, -0.038267404, 0.005119996, -0.020990986, -0.008625046, -0.07924113, -0.04071427, 0.053259138, 0.042526413, 0.028687777, 0.04697103, -0.048750795, 0.023829496, -0.031928513, 0.0119358115, 0.05776393, -0.004578576, 0.013799009, 0.07084802, 0.03286261, 0.02652368, 0.025680108, -0.023528384, 0.02135041, -0.024784256, -0.017802298, 0.07791269, 0.0010193601, -0.041201204, -0.0346126, 0.0010497379, -0.07003865, 0.09667386, 0.03719769, -0.016160442, 0.026543979, 0.03394802, 0.016990095, -0.015478252, -0.004343967, 0.022481414, -0.040155042, -0.022915147, 0.024063537, -0.03457386, -0.020926561, 0.0019736774, -0.0026398052, -0.00939174, -0.028007487, 0.013278733, 0.006414682, -0.03720229, -0.083118185, 0.0037089111, 0.015192154, -0.006907909, 0.02814468, 0.00094496977, 0.028034182, -0.060635496, 0.012962842, 0.049359195, -0.02488587, 0.0150173865, -0.013117115, 0.04013737, -0.080582365, -0.016549964, 0.03235474, -0.03859416 ] }, { "values": [ -0.0024809926, -0.056838926, -0.047977794, -0.043207612, 0.0127884075, 0.032072753, -0.011895953, -0.0034947493, 0.017518448, 0.05948583, 0.006528012, 0.028871464, -0.006892629, -0.012022874, -0.056133572, -0.071645156, -0.037199177, -0.016947147, -0.0616115, -0.0705993, 0.01652496, 0.010097749, 0.021115508, -0.039540224, -0.002447683, 0.05495101, 0.039921414, 0.0045993556, 0.018570447, -0.040057313, 0.018044477, 0.030783236, -0.00046907022, -0.005894009, 0.030174624, 0.0058643967, -0.057800017, 0.03162835, 0.0282593, -0.0075682006, -0.082664244, 0.040148806, -0.01954521, 0.023952287, -0.04536048, 0.0153575465, 0.030866295, -0.0032910698, 0.00016876438, 0.05294162, -0.0068873474, -0.014424324, -0.001920125, -0.014019457, -0.02069863, -0.021951498, -0.03522366, -0.058562852, 0.08374612, -0.053030014, -0.0124566285, -0.026742516, 0.0015257562, -0.0048772134, 0.05600253, -0.01350554, -0.08094929, -0.027100792, -0.015523204, 0.017500902, -0.016743986, -0.014002307, -0.0037901404, -0.012785965, -0.029412782, -0.009925212, -0.0033192984, 0.011993205, -0.0498974, 0.019505471, 0.0062895543, 0.010666265, 0.059017137, 0.015324971, -0.0016831148, -0.030213008, 0.022770548, -0.038088795, -0.030291134, -0.004479135, 0.10886024, -0.023086715, -0.0033604922, 0.020270761, 0.029400889, -0.010200024, -0.045610484, -0.06557735, 0.01112854, 0.08666163, 0.009049988, 0.018998787, -0.037809283, -0.078084625, 0.025669092, -0.029456377, 0.02015682, -0.05623112, -0.059697032, 0.010756481, -0.0048373514, -0.042489823, -0.035872128, -0.028777026, 0.028899893, 0.005877, -0.051244926, -0.0060308534, -0.052242354, 0.014506569, 0.02975928, -0.028057778, -0.011512594, 0.058280896, 0.027736165, -0.0034969526, 0.03325278, -0.050163414, -0.028198002, -0.06352405, 0.07946661, -0.09018139, 0.008926543, -0.007548686, -0.023240652, -0.030469373, 0.026348084, 0.025649242, 0.023012262, 0.009979682, -0.001496436, -0.030814882, 0.0035281552, 0.046257287, -0.01571281, -0.02280037, 0.024097566, 0.0032722661, -0.03699037, 0.032258485, -0.11051246, -0.026240326, 0.013745059, -0.010399611, -0.039748244, 0.010944573, 0.062090438, -0.038265046, 0.072039776, -0.032440946, 6.322476e-07, -0.010660099, 0.01885408, 0.019887295, -0.06796821, -0.0016330336, 0.039097574, -0.096674986, 0.004510787, -0.05293248, 0.012078432, -0.013351669, -0.038249727, -0.080723874, 0.025725927, -0.0052209506, 0.014775497, 0.025482548, -0.050156858, -0.03756596, 0.03911406, 0.007886373, -0.039548054, -0.048175, -0.019702483, -0.037478827, -0.003204088, 0.08629397, -0.035447747, 0.034708645, 0.0389229, 0.001906459, 0.036205556, 0.00480292, 0.013113114, -0.0059658126, 0.04008387, -0.03468699, -0.009669194, -0.052206103, 0.02605034, 0.015045124, 0.0174962, 0.055227026, -0.049544577, 0.032811552, -0.06615711, -0.025654553, 0.054390438, 0.0069455085, -0.013564297, -0.042271, -0.0067931204, -0.02879823, 0.010972085, -0.0018524871, 0.07102315, 0.07729768, 0.024639936, -0.018113047, -0.0632812, -0.005130538, -0.0019555374, 0.021962216, 0.010946808, -0.012850068, -0.03342461, -0.029346805, -0.016831132, 0.0046802694, -0.00667587, -0.011142238, 0.0249039, -0.0056071756, -0.0038969973, 0.07754613, -0.010484154, -0.011130084, 0.049342815, 0.012884154, -0.02245281, -0.0010462762, 0.025589582, 0.03644194, 0.009949745, 0.04318617, 0.04873157, 0.11162075, -0.03341934, -0.030244797, -0.060983278, -0.029289877, -0.033761736, -0.00023571361, -0.039293207, -0.02383035, 0.037923906, -0.06645994, -0.0054903184, -0.0076109613, 0.02598038, 0.008475026, 0.003522404, -0.054511264, -0.00022737509, -0.074463576, 0.0009794856, 0.004358615, 0.077529244, 0.015521842, 0.005023298, -0.010907455, -0.019863678, -0.07081045, 0.015562539, 0.029129472, -0.047529977, 0.049972314, -0.03626962, -0.03363152, 0.064240746, -0.02576985, -0.0014214672, 0.005592714, 0.009272933, -0.016806472, 0.041638765, -0.013222773, -0.055552248, -0.053515624, 0.02164119, 0.07957101, 0.024917139, 0.032743078, 0.009530195, -0.0030814458, 0.025905201, -0.01822188, 0.0042803674, -0.04372984, 0.0492687, 0.055551145, -0.046766393, 0.026569491, -0.016410569, 0.0037962017, -0.040819243, -0.018787067, -0.0003211831, 0.051542528, 0.028536677, 0.046040088, -0.027279498, -0.016720047, 0.004653932, 0.005642648, -0.09306049, 0.0145428125, -0.06330285, -0.015047656, 0.04954781, 0.020920482, 0.002348174, -0.041748397, 0.05444066, -0.0026564673, 0.0027131338, -0.024699504, -0.015437499, -0.020119276, 0.054086734, 0.026897414, -0.010040604, -0.027649835, 0.01925166, -0.019022694, -0.00778271, -0.010080524, 0.0774274, 0.02100919, 0.043334432, 0.01198865, 0.031402387, 0.0256512, -0.023358844, -0.049181838, 0.023083188, -0.022508582, 0.040498227, -0.021089558, -0.03965138, 0.06698082, 0.011083465, 0.017342322, 0.052695148, 0.020861983, 0.016951185, 0.035095684, 0.034560934, -0.02215146, -0.018214578, 0.029331237, -0.018199539, -0.004441, -0.010327767, 0.0011347433, 0.022756489, -0.0018532317, -0.024708444, -0.06836509, 0.012087203, 0.037849028, 0.020071136, -0.0065137213, -0.006907397, -0.046240907, -0.012372295, -0.0042728945, 0.01572694, -0.01714104, -0.02819938, -0.030072983, 0.025315074, 0.02573633, 0.0027106153, 0.05773389, -0.023751423, -0.025155595, -0.0047966125, -0.007508566, -0.03582801, 0.05837972, -0.004145803, 0.007729392, -0.016596975, 0.06999699, -0.010472458, 0.0076815747, 0.023652535, 0.021931129, -0.028623419, 0.02584231, 0.03942853, -0.013303625, -0.0018421282, 0.03142889, 0.07068373, -0.021076359, 0.028018186, -0.026986562, 0.018224344, -0.014268072, 0.044851437, 0.015630666, 0.002062369, 0.023020295, 0.019837596, -0.025088089, -0.014332518, 0.008554936, 0.007738144, 0.03189077, 0.030639213, 0.04748033, -0.0076112435, -0.05040593, 0.017527856, 0.030116878, 0.06084585, 0.025028264, 0.0072831768, 0.048832454, -0.061323334, 0.030324128, 0.019285416, -0.02565762, 0.029659692, 0.004652293, -0.03551655, 0.0030770183, 0.0048318156, 0.03775917, 0.043671686, 0.045190793, -0.008504988, 0.04078328, 0.07351453, -0.03044611, -0.009375482, -0.074355125, -0.019788947, -0.02719711, -0.0321804, -0.027248476, 0.036441095, 0.02017537, 0.022057856, 0.022197573, -0.06555625, 0.008707701, -0.065029524, 0.001624248, 0.07038063, 0.05058129, 0.02075993, -0.021121139, -0.050440956, 0.02050144, 0.07079045, 0.08020142, 0.005020265, 0.0071947086, -0.012625984, -0.02129254, 0.052407254, 0.029539132, 0.0490558, -0.0031812778, 0.027620059, 0.03753271, -0.008498487, 0.032529175, 0.026229845, 0.0249349, 0.038802125, -0.06579103, 0.016340137, 0.00058214064, -0.00444519, 0.047808353, 0.026666004, 0.07307307, 0.006011542, 0.01664433, -0.05435396, -0.05987193, 0.040148836, 0.0046473527, -0.028667904, -0.02462539, 0.08034126, -0.0007453154, -0.02270266, 0.007822508, 0.017930163, 0.026460297, -0.05929693, -0.015621655, 0.022034232, -0.024533125, -0.012652817, -0.025468726, 0.047844384, 0.019781902, -0.028389683, 0.07236975, -0.099318564, 0.0049126525, -0.0045214384, 0.09338959, -0.026882177, 0.011177798, 0.061280236, -0.0762118, -0.08825666, -0.013723631, -0.03896954, 0.036839195, 0.03677743, -0.013078913, -0.025027117, 0.06730812, 0.0079228375, 0.009909977, 0.00730431, 0.0040310314, 0.0011377073, 0.0064439485, -0.022822764, 0.029787065, 0.045411896, 0.028501702, 0.053320173, 0.031402927, 0.051802702, -0.0119226575, 0.026325395, 0.005461528, -0.0065818857, 0.07699928, 0.043773416, -0.06353397, 0.04858286, -0.0062163174, -0.0050494755, -0.05676002, -0.010475945, -0.024551293, -0.026118457, 0.041243717, 0.04882877, -0.025022922, 0.0011080053, 0.035606787, -0.054466676, -0.022799643, -0.0029591718, 0.024825813, -0.06031672, -0.037863355, 0.009263421, -0.0014922619, -0.029872604, -0.04399684, 0.012656174, 0.0031900643, 0.0049664495, -5.4489115e-05, 0.04898972, -0.006879708, 0.020790124, 0.0016271941, 0.036343805, -0.04429531, -0.036613412, 0.028371561, 0.020436281, -0.03983008, -0.014622807, 0.009769171, -0.026733538, 0.018065171, -0.012175654, -0.0077177524, 0.047238998, 0.0019970706, 0.02343647, -0.055178918, 0.014581355, 0.01367036, -0.027905133, -0.014298795, 0.024378426, 0.027329009, -0.01659221, 0.029878585, -0.034418304, -0.035622105, 0.048126932, -0.0009462151, -0.045560908, 0.037926786, 0.03565209, -0.01238595, -0.05252588, 0.046810266, -0.028745025, -0.040869795, 0.02779875, -0.021069717, 0.004357925, 0.040941276, 0.0129090715, 0.020467285, -0.04674988, 0.0035457194, -0.011968666, 0.05524625, 0.0026866787, 0.016794479, -0.032319654, -0.007023419, 0.061907887, -0.04535912, 0.013852056, 0.05120053, -0.016289454, -0.032551754, -0.0147149125, -0.07759294, 0.03032545, 0.013174557, 0.009272325, 0.02153786, -0.0708289, 0.07206469, 0.009431053, 0.04894485, -0.023717519, 0.03310778, -0.0103126615, 0.00991783, -0.029470738, -0.028205805, -0.04265743, -0.026148489, -0.014421419, -0.02750418, 0.015678048, 0.010021755, -0.026185963, -0.039162118, 0.06680227, 0.07188277, 0.00045750864, 0.022901142, -0.026748657, 0.023615463, -0.010766211, -0.03629775, 0.033953354, 0.052730083, 0.0435135, 0.06159983, -0.036373924, 0.022038339, 0.009753752, -0.06910644, -0.036448658, 0.039002173, 0.022288205, -0.03397716, -0.037232306, 0.0093692755, 0.009278791, -0.012197767, 0.03267287, -0.04540337, -0.0034571255, 0.024764748, 0.03082866, -0.046986625, 0.010686759, 0.01657847, 0.015895797, 0.070315614, -0.03678149, 0.058339708, -0.038067296, -0.012582587, -0.028371952, -0.0034120295, -0.05672474, -0.028785832, 0.050303727, 0.021826025, 0.014635969, 0.026582722, -0.053976092, 0.026109768, -0.04012212, 0.005819653, 0.055566646, 0.0015648224, -0.0011496891, 0.056237888, 0.031499736, 0.039608125, 0.033770077, -0.001801685, 0.029245969, -0.015496014, -0.023243776, 0.07467448, -0.00046305396, -0.014716157, -0.046189807, 0.011515997, -0.07890467, 0.087724485, 0.013613692, 0.007163387, 0.018752, 0.032187108, 0.004179973, 0.0013211423, -0.026329948, 0.012706788, -0.025395177, -0.023019532, 0.028049776, -0.020297209, -0.018910777, 0.0066134348, 0.014776664, -0.009238113, -0.025441894, -0.001274241, 0.010971278, -0.006788125, -0.082605034, 0.020339245, 0.026389241, -0.019393109, 0.042960003, -0.022328198, -0.0012494287, -0.04936094, 0.00878746, 0.031463154, -0.007840382, 0.009329765, -0.0061325855, 0.053080104, -0.08550227, -0.030715546, 0.036375, -0.039900422 ] }, { "values": [ -0.00911258, -0.050812118, -0.032402217, -0.040476933, 0.003277276, 0.041787136, -0.027346227, 0.021441327, 0.03808253, 0.052946463, 0.0073849764, 0.0051030056, -0.0053458954, 0.008009999, -0.050621156, -0.08191995, -0.040835507, -0.012591859, -0.06304748, -0.072747804, 0.04224507, 0.021474129, -0.005741674, -0.056698143, -0.005609359, 0.028556887, 0.021664904, 0.0028434985, 0.012176013, -0.029391743, 0.01720907, 0.01624077, 0.0071545257, -0.0052251522, 0.0021892032, 0.025514936, -0.063728735, 0.03833946, 0.027484372, -0.029893743, -0.08694349, 0.008698355, -0.018700507, 0.045866694, -0.03528471, 0.0056297923, 0.043958023, 0.005331959, 0.0044592503, 0.031807028, -0.003993513, -0.016930532, -0.008895376, -0.013791363, -0.035147086, -0.038804725, -0.030462848, -0.03214445, 0.08092682, -0.030400727, -0.031149423, -0.030519892, -0.013604416, -0.006251159, 0.049651366, -0.007114947, -0.079434216, -0.00054265856, -0.018229935, 0.020956662, -0.054880824, -0.02362424, -0.015088687, 0.0060808067, -0.033735946, -0.014917791, 0.015035388, -0.0024214922, -0.04017599, 0.042297766, 0.023443379, 0.026347766, 0.0483242, 0.040039472, -0.0030946152, -0.031664666, 0.041518793, -0.02311714, -0.04546902, 0.009240496, 0.11181626, -0.019049874, -0.015239653, -0.0048785466, 0.041375145, -0.004255416, -0.030601645, -0.05459665, 0.014801905, 0.041911617, -0.013434027, 0.015116837, -0.0363366, -0.07384738, 0.017585741, -0.01094057, -0.0008763254, -0.035121597, -0.07466316, -0.006128962, -0.005785491, -0.03877546, -0.015502164, -0.03053808, 0.002418863, -0.013056537, -0.052289493, -0.015094851, -0.056265272, 0.0010716843, -0.012245875, -0.023498457, -0.032321014, 0.056046207, 0.029863095, -0.0062780627, 0.024858695, -0.032397144, -0.03949596, -0.02370714, 0.08060137, -0.08849541, 0.038506087, -0.013239347, -0.022276517, -0.0097795045, 0.077257514, 0.012788867, 0.018168597, 0.00879276, 0.00604983, -0.025594065, -0.016683035, 0.04345474, 0.0017929808, -0.020930927, 0.015564435, -0.011610769, -0.058222547, 0.04717839, -0.097939536, -0.038107228, 0.024816915, 0.0021914886, -0.047318377, 0.014757252, 0.041341256, -0.047704145, 0.06898191, -0.04716876, -0.004688606, -0.008115339, 0.021596601, 0.03594633, -0.057485428, 0.029307468, 0.04814691, -0.090265416, -0.01602402, -0.03218521, 0.008617154, -0.011984952, -0.05007617, -0.058742877, -0.009892634, -0.0041726283, 0.0042058188, 0.008773361, -0.05842948, -0.04435151, 0.054279473, 0.04411055, -0.043708585, -0.050545998, 0.003877975, -0.01711204, 0.0036980542, 0.081601076, -0.031842846, 0.046623778, 0.035710774, 0.039935187, 0.025320724, 0.0012475036, 0.0043198382, -0.0029474313, 0.045388926, -0.052319966, -0.020309571, -0.046396885, -0.0024134268, 0.03628464, 0.027179142, 0.061559074, -0.0505949, 0.050443053, -0.059192795, -0.03741999, 0.04658372, -4.0393465e-05, -0.0044507673, -0.04505061, -0.012576245, -0.006724737, 0.0026175685, -0.0045919963, 0.08286866, 0.051495295, 0.0610876, -0.020168832, -0.06356542, -0.009223605, -0.008287535, 0.031866375, 0.007901132, -0.0078080543, -0.012697537, -0.008679563, -0.030138247, -0.030582843, 0.017314864, -0.028421871, 0.007152626, 0.0113319885, 0.018485261, 0.09988352, 0.0006938928, 0.003237449, 0.031413853, 0.039038673, 0.006716142, -0.002201111, 0.03846196, 0.029390173, 0.023764994, 0.03831047, 0.035085626, 0.092421465, -0.011519977, -0.050602376, -0.045055438, -0.04477224, -0.039890215, -0.006432989, -0.020319235, -0.01815761, 0.033114135, -0.048702963, -0.009591316, -0.007171434, 0.03258228, 0.010298683, -0.0031960749, -0.042822633, 0.0007139611, -0.058451902, 0.011853727, 0.008700227, 0.047403634, -0.0052250847, -0.020926785, -0.010249882, -0.01814265, -0.055797916, 0.0046061855, 0.028844811, -0.033585865, 0.03562338, -0.036026884, -0.03458065, 0.058805887, -0.035835456, 0.021064721, -0.00677916, -0.0038549823, 0.0008224777, 0.019480806, 0.00033309503, -0.04194048, -0.05774786, 0.013015405, 0.0811693, 0.013726369, 0.013254419, 0.022819307, -0.009819314, 0.030699195, -0.011288794, -0.032026816, -0.030172624, 0.0664707, 0.050478704, -0.053667434, 0.035747927, 0.0027272718, 0.008593935, -0.045128927, 0.013368386, 1.8339491e-05, 0.02490035, 0.027414395, 0.049335916, -0.031023078, -0.024331741, -0.019710971, -0.012645608, -0.107554, 0.0006173957, -0.04723092, -0.036893774, 0.040808294, 0.010860467, 0.01436989, -0.042186074, 0.05019872, 0.008507376, 0.012744547, -0.008876916, -0.026963484, -0.031295534, 0.049146593, 0.021457477, 0.0002465896, -0.0190604, 0.041964572, 0.0031925042, -0.02302847, 0.0001880321, 0.0790255, 0.0034563707, 0.06823824, 0.011473921, 0.038093265, 0.05707996, -0.0139744915, -0.05043276, 0.034494847, -0.009740295, 0.04285034, -0.034144748, -0.021399112, 0.06198469, -0.0025085576, 0.016969545, 0.029681388, -0.0048995446, 0.003527881, 0.02590008, 0.02129514, -0.0024423415, -0.013570119, 0.021972148, -0.017372781, -0.018377258, 0.013251211, 0.016963122, 0.0052623306, 0.0008164156, -0.012581092, -0.06143511, 0.021946596, 0.037195053, 0.02395405, -0.00011322867, 0.003625617, -0.023944477, 0.0119226305, 0.009423837, 0.04151172, -0.016905092, -0.02407196, -0.018558932, 0.007514921, 0.025065005, 0.0022992962, 0.064784616, -0.018601663, -0.0067350944, -0.001079242, -0.0024352334, -0.044616178, 0.067591995, -0.020142145, 0.013785585, -0.033724338, 0.08423732, -0.008757643, 0.02408444, 0.035890345, 0.02680502, -0.041372333, 0.004696206, 0.0356585, -0.016298305, -0.003394728, 0.037916, 0.07461735, -0.018797198, 0.036838114, -0.03557355, 0.012603316, -0.02954442, 0.042053074, 0.00046556973, -0.016482975, 0.024709499, 0.017822746, -0.041289147, -0.019457836, -0.0029312347, -0.007687954, 0.03446359, 0.017993806, 0.056668606, 0.0074495315, -0.038175825, -0.005326012, 0.019875694, 0.06516547, 0.02771303, 0.0013892541, 0.049169946, -0.044278853, 0.02150944, 0.028047552, -0.024810236, 0.029767495, 0.016596325, -0.042677894, 0.014778719, -0.012878079, 0.029354801, 0.035459373, 0.036241654, 0.0054652086, 0.013318789, 0.063946806, -0.026258519, -0.007337797, -0.09645957, -0.030698312, -0.034673862, -0.024766466, 0.010403913, 0.03560931, 0.03543886, 0.018740876, 0.02076894, -0.072891325, 0.011587098, -0.08574807, -0.0062723686, 0.055230718, 0.051138654, -0.0029361453, -0.041846685, -0.0478348, 0.01640133, 0.06593312, 0.09204642, 0.01655199, 0.018850492, -0.021224175, -0.04146431, 0.051752638, 0.022265324, 0.051659238, 0.01349955, 0.025431847, 0.041252676, -0.018218165, 0.013617047, 0.022228073, 0.029979933, 0.054862916, -0.049011935, 0.034303464, 0.028433273, 0.0102777425, 0.06097112, 0.04840519, 0.0833662, 0.024496881, 0.013269711, -0.058308393, -0.06585116, 0.030685976, 0.006404431, -0.014049293, 0.0059899683, 0.08819906, -0.0017712469, -0.0062822285, -0.0029551296, 0.021321334, 0.053096168, -0.047100283, -0.02421137, 0.012246865, -0.029437069, 0.012307783, -0.020529475, 0.029412188, 0.015767574, -0.031186834, 0.0545923, -0.10545943, 0.016219728, 0.017360525, 0.082036264, 0.0072360667, 0.0147720715, 0.050305568, -0.051847942, -0.06683663, -0.0089915395, -0.037495825, 0.044578694, 0.05712288, -0.0010331984, -0.025336122, 0.06001183, -0.009163213, 0.019942267, -9.204903e-05, 0.0228576, -0.0056520565, 0.021342015, -0.014700577, 0.043054484, 0.045184813, 0.0408454, 0.05205244, 0.022188706, 0.081641585, -0.009665249, 0.026777813, 0.0070941662, -0.021952601, 0.082291424, 0.038690295, -0.059483055, 0.053792607, -0.0054742508, 0.00094860326, -0.047577642, -0.01170579, -0.050819483, -0.021428527, 0.028365348, 0.03199978, -0.02506387, -0.004468031, 0.021287197, -0.025100157, -0.0341708, -0.009037474, 0.0069311704, -0.058369998, -0.03476868, -0.0013634445, -0.0030159785, -0.022020042, -0.018238429, -0.0034857735, 0.019808209, 0.0045929262, -0.0025259347, 0.05052461, -0.017742852, 0.018412797, -0.008762225, 0.04949488, -0.01941537, -0.018925522, 0.023526432, 0.02266742, -0.04590454, -0.0018172568, -0.013406044, -0.017072335, 0.015073482, 0.0045841406, -0.00040402485, 0.060416017, -0.014107991, 0.023219597, -0.052046705, 0.0330817, 0.017387206, -0.024427569, 0.00876155, 0.040756144, 0.0404142, -0.026995441, 0.013334413, -0.042899136, -0.029374054, 0.05184747, -0.011836443, -0.045181923, 0.034438606, 0.021386253, 0.00062430976, -0.040707015, 0.024302505, -0.039287716, -0.032905653, 0.02258795, -0.014433462, -0.016901575, 0.026309093, -0.020494534, 0.03423251, -0.047604058, 0.021751052, -0.019305035, 0.044323552, -0.0062859464, 0.013380052, -0.031960666, -0.00059450284, 0.06677754, -0.032874893, 0.02050366, 0.06628606, -0.018010473, -0.040611453, -0.04345318, -0.0799157, 0.022257466, -0.0065303054, 0.02993651, 0.019525232, -0.07304499, 0.086379774, 0.01625096, 0.058966313, -0.013507882, 0.032789793, 0.0046308106, 0.043341164, -0.005677271, -0.013760173, -0.055012412, -0.02492325, -0.010039139, -0.019973401, 0.015182472, -0.0023692576, -0.023913838, -0.050245944, 0.061182786, 0.060571752, -0.010703664, 0.04630037, -0.023957249, 0.006284422, -0.028129317, -0.01440624, 0.048059575, 0.03721049, 0.023320338, 0.035106756, -0.016435552, 0.026198275, 0.001966997, -0.06414411, -0.031346496, 0.029317822, 0.030031694, -0.047408115, -0.03127327, 0.00036720137, 0.029634086, 0.0017262633, 0.03651599, -0.023654921, 0.0039110105, 0.037347596, 0.013640488, -0.06478429, 0.03860388, 0.026206251, 0.019260451, 0.070852906, -0.031002358, 0.028017849, -0.030894691, 0.003808652, -0.022890484, -0.018179834, -0.052194737, -0.05463922, 0.047478415, -0.008567039, 0.033604153, 0.022834804, -0.04636354, 0.035323773, -0.02258078, 0.020393824, 0.06513541, -0.0037384909, -0.0064709624, 0.05621972, 0.026377218, 0.0587734, 0.02175037, -0.011669852, 0.025138104, -0.025835246, -0.030403107, 0.066050306, 0.016671522, -0.041518282, -0.049648494, 0.03349974, -0.062315315, 0.0858748, 0.008567971, 0.017973877, 0.011932297, 0.032363195, 0.0028258837, 0.010366667, 0.0018412034, 0.013775605, -0.048283774, -0.016634097, 0.028377099, -0.007331154, -0.041971494, 0.0008790627, 0.014084577, -0.004848672, -0.012667366, 0.009338544, 0.007715066, -0.035882216, -0.07628333, 0.017872816, 0.043055862, 0.0069323382, 0.026964376, 0.007705864, 0.029027142, -0.050593004, 0.015257837, 0.026888164, 0.009185682, 0.0013217218, 0.007947915, 0.03933142, -0.09342154, -0.050751362, 0.040218335, -0.037348725 ] }, { "values": [ -0.0075739063, -0.0384871, -0.071470715, -0.055814076, 0.011590119, 0.012491867, -0.017130457, 0.034389492, 0.039598707, 0.059887532, -0.0042202407, 0.031329315, 0.0021676943, 0.03996107, -0.07311774, -0.069307536, 0.022672065, -0.0068488456, -0.009959892, -0.031072635, -0.0073950905, 0.014094864, -0.0014859088, -0.09626152, 0.011566854, 0.060143415, 0.033351276, -0.056794584, -0.011688406, -0.036597054, 0.011199037, 0.008901486, 0.0029212993, 0.006334644, 0.07162959, -0.03325868, -0.053857964, 0.042056542, 0.0012709373, -0.03315386, -0.062965006, 0.0031342234, -0.013749034, 0.032942988, -0.06941907, -0.012494285, 0.006537806, -0.013786188, -0.02086992, 0.026234569, 0.016631879, -0.018585607, -0.014139265, 0.019068819, -0.018888278, -0.005512394, -0.009674318, -0.049602717, 0.09324262, -0.039797466, -0.014980437, -0.0070602107, -0.0050787143, 0.017842842, 0.035300523, -0.029337713, -0.029645978, -0.006306346, -0.025963025, -0.020241939, -0.049311735, -0.012231795, 0.007680664, -0.015954157, -0.03207415, -0.03903836, 0.0013789794, 0.029550156, -0.017452592, 0.043768737, 0.015739512, 0.011884751, 0.06563742, 0.04629501, 0.025747338, -0.016935553, 0.026620965, -0.014086448, -0.0401028, -0.0025681157, 0.12138354, -0.034038585, -0.032577462, -0.00092068076, 0.016768748, -0.064754814, -0.029882163, -0.041188672, -0.010996902, 0.07120039, -0.027350822, 0.0043512015, -0.07362727, -0.065704994, 0.027460203, 0.017911233, 0.009248754, -0.06624804, -0.021853337, 0.02037408, -0.018335987, -0.029696489, -0.045527354, -0.02435256, 0.021321349, -0.026514942, -0.036538955, -0.011615392, -0.049642064, 0.02246073, -0.002272517, -0.021358669, -0.037144154, 0.0571129, -0.0005766468, -0.0061177607, 0.06804236, -0.07701637, -0.040224914, -0.046931904, 0.10028814, -0.0980855, -0.023639143, 0.033828143, -0.025060905, -0.03176034, 0.0124422405, 0.037609078, -0.023743073, 0.008822136, 0.022752725, -0.04045833, -0.012121575, 0.015788175, -0.0011052588, -0.029925575, 0.014805015, -0.0072077746, -0.050725006, 0.02379696, -0.07541313, -0.012377575, -0.0041288384, 0.0035868094, -0.053371083, -0.014519239, 0.06385428, -0.033709053, 0.029761422, -0.024400698, 0.037346482, -0.037163477, 0.04169159, -0.010399687, -0.028108522, 0.020040814, 0.07856042, -0.0910072, -0.025061628, -0.040441785, -0.0060247765, 0.017391535, 0.0037683973, -0.0831021, 0.012137765, 0.0019651602, -0.022978945, 0.016688876, -0.049595956, -0.038482748, 0.054031603, 0.020792106, -0.049429175, -0.049342517, -0.013849582, -0.016298221, 0.0067357216, 0.074280225, -0.022568675, 0.03609255, 0.005932777, -0.025487533, 0.03874811, 0.004611173, 0.02394692, 0.049030732, 0.04329713, -0.02478145, -0.013808462, -0.061677072, 0.016892964, 0.0503659, -0.011577345, 0.022142965, -0.021501059, 0.022493873, -0.09790451, -0.0561856, 0.027988182, 0.024275502, 0.022563089, -0.015100711, -0.017407725, -0.025226787, 0.008360356, -0.016950604, 0.059672073, 0.019327493, 0.053711873, -0.028892443, -0.024580285, -0.03257564, -0.002608004, 0.0071039773, 0.040496603, 0.0043739937, -0.029535176, -0.004229848, -0.002790239, -0.010567481, -0.004036698, -0.03193511, -0.005397751, -0.021657139, 0.057859827, 0.10352952, 0.02373849, -0.017834421, 0.021559471, 0.024321198, 0.0058931843, 0.022309635, 0.056632, 0.0024265053, 0.015973998, -0.00048801658, 0.063716926, 0.10485392, -0.049275275, -0.004117668, -0.046728816, -0.031148896, -0.056907695, 0.0022689935, -0.020760108, -0.028462939, 0.028514072, -0.050365545, -0.01914014, 0.001813196, 0.026458817, 0.022298925, -0.013148446, -0.07864161, -0.022736989, -0.07752886, 0.029247375, -0.03544028, 0.04599809, -0.007562617, -0.0247642, 0.008033993, -0.0415075, -0.04495506, 0.0040930975, 0.03713803, -0.022599475, 0.03604321, -0.056899212, -0.047798567, 0.03485951, -0.005936951, -0.004331689, -0.010631087, -0.0099762175, 0.006774729, 0.0067608096, 0.01386795, -0.017896943, -0.03624679, 0.042150714, 0.0765407, 0.026404584, 0.040401373, 0.03578989, -0.025705596, 0.009425465, -0.0060745794, 0.011512034, -0.040854126, 0.023603564, 0.04107186, -0.029748524, 0.04757149, 0.0019050583, 0.013130574, -0.03186396, 0.013099534, -0.007815365, 0.044913854, 0.019667411, 0.04490832, -0.013537389, -0.016582701, -0.032216646, 0.010604383, -0.06423613, 0.024309, -0.047242764, -0.026193516, 0.040343806, 0.047298785, -0.015859695, -0.03073378, -0.0009920581, 0.013407178, -0.003170584, -0.04658878, -0.011901257, -0.033166524, 0.031871065, 0.020861374, 0.022525677, -0.049807817, 0.021912625, 0.027500989, -0.03426266, 0.016634071, 0.054187045, 0.025160892, 0.034035593, 0.040538426, 0.038856667, 0.044990852, -0.0034633658, 0.010195218, 0.01579867, 0.018687949, 0.047580928, -0.016539002, 0.009263735, 0.044297, -0.015031639, 0.01849051, 0.051504713, 0.02092078, 0.043816216, 0.06099716, -0.0031244832, -0.0046527614, -0.035938103, 0.006823944, -0.019098321, -0.02842218, 0.010435386, -0.004323806, 0.008700408, 0.02169787, -0.025700573, -0.07774281, 0.0099549545, 0.043884154, 0.049961355, 0.012505231, 0.018941015, -0.05413319, 0.014972566, 0.02299722, -0.008944229, 0.0028222515, -0.045486644, -0.034149986, -0.0024221558, -0.013419474, 0.0033346636, 0.059113752, -0.04337012, -0.02025026, 0.0030494428, -0.001731624, -0.029482223, 0.036215153, -0.028882489, 0.014869154, 0.0017721242, 0.05650597, -0.0013700639, 0.03037718, 0.0064081475, -0.007596654, -0.052667186, -0.0037951686, 0.041499212, -0.017467245, -0.012378748, 0.0071307966, 0.081604995, 0.0104050245, 0.019885695, -0.026694171, 0.021952108, -0.0447498, 0.055184796, 0.015587292, -0.000926847, 0.057307377, 0.012916351, -0.021150919, 0.00026490944, -0.0009776483, -0.0033963728, 0.018975217, -0.03556326, 0.06434137, 0.009625253, -0.04176133, 0.005875961, -0.0009568758, 0.059819274, 0.0053651095, -0.016632946, 0.033637974, -0.04055574, 0.015427985, -0.020657662, -0.001816984, 0.022156332, 0.011917036, -0.024938585, -0.0173767, 0.026348816, 0.009856425, 0.06346058, 0.04572461, -0.01913078, 0.00070911925, 0.059704587, -0.04851603, -0.013352369, -0.0724302, 0.02716657, 0.0021597536, -0.014734144, -0.005104221, 0.038117517, 0.005441735, 0.044072874, 0.03765665, -0.04762144, 0.0117647005, -0.05695858, -0.013328104, 0.033967692, 0.06006618, -0.002687348, -0.0076500564, -0.042115983, 0.037235186, 0.044021107, 0.05387525, 0.04758817, 0.006189598, -0.010129014, 0.008807674, 0.04749848, 0.022710634, 0.027276153, -0.014503986, 0.012476552, 0.043628234, -0.017574187, 0.016328517, 0.01120043, 0.03625243, 0.034900624, -0.051006977, -0.01703331, -0.011304351, -0.019667188, 0.054935906, 0.018454984, 0.07943532, 0.027963795, 0.0174718, -0.052200593, -0.06211141, 0.049355388, 0.00054203876, -0.018600518, -0.024114165, 0.09394464, 0.011289009, 0.002352217, 0.009438697, -0.0018685369, 0.036531907, -0.056363538, -0.006676292, 0.014175826, -0.00038791558, 0.01739773, 0.009442941, 0.05834473, -0.00013215333, -0.042521596, 0.074145846, -0.08548488, 0.01885857, -0.022691904, 0.053704724, -0.02692468, 0.031424955, 0.071561955, -0.030886983, -0.064396195, 0.009066295, -0.05908725, 0.07029536, 0.07724922, -0.011112241, 0.0051476285, 0.08077952, 0.02182377, 0.023150904, 0.028099408, 0.028008644, -0.018936904, 0.03508845, -0.004826381, 0.024420533, 0.012024664, -0.018937381, 0.049507584, 0.042683788, 0.067270234, -0.0294744, 0.02788246, 0.010438066, -0.03168086, 0.09665066, 0.0078111985, -0.030313099, 0.045497, -0.015189711, -0.015076233, -0.037272368, -0.02172813, -0.0488793, 0.0036896644, 0.03154226, 0.04667619, -0.03173598, -0.0005023177, 0.028360583, -0.017492637, 0.001260219, 0.011652362, 0.035227954, -0.048883107, -0.04900815, 0.0008696161, -0.007740228, -0.022108885, -0.019803846, 0.007520047, 0.0044904896, -0.036276378, 0.03235957, 0.049922682, 0.014349105, 0.026575146, -0.021103598, 0.050084915, -0.020382015, -0.053526457, 0.00043526618, 0.040301707, -0.08431292, -0.029489674, -0.007274157, -0.02981386, -0.055745706, -0.0023187085, -0.009771865, 0.059221167, -0.011706476, -0.0027497408, -0.019609205, 0.017167993, 0.06088419, -0.023372127, -0.006027645, -0.0012418533, 0.013813155, -0.012510561, 0.010817354, -0.034736235, -0.029164894, 0.00866495, 0.020179804, -0.024302512, 0.06704595, 0.022772536, -0.023596052, -0.04817092, 0.024598574, -0.034505352, -0.048346944, -0.0101071, -0.010834625, -0.03433621, 0.07097283, -0.011035768, -0.0053381347, -0.04427254, 0.035689767, -0.037237328, 0.064435385, -0.019084701, 0.006154467, -0.043608017, 0.013282431, 0.07612228, -0.033991057, 0.013166658, 0.031103162, 0.0013818075, -0.034993917, -0.017620005, -0.07326526, 0.037631664, -0.01656458, 0.033169787, 0.05846525, -0.05001657, 0.06692207, -0.0033551871, 0.043859776, -0.028062798, 0.022933127, -0.006604098, 0.016367517, -0.04210409, -0.018633857, -0.04794363, -0.024814969, -0.028260393, -0.017917065, -0.0017509697, 0.012420023, -0.011830053, -0.0654537, 0.07755279, 0.039803468, -0.0036181307, 0.041355073, -0.032886725, 0.012061883, -0.018928112, -0.01589594, 0.037133835, 0.03853933, 0.025659597, 0.027712494, -0.024793213, 0.03046449, 0.028031947, -0.021350542, -0.043509264, 0.033589687, 0.020857017, -0.05504931, -0.020446716, 0.0077504967, 0.02006168, 0.0024175276, 0.021863101, -0.02406384, 0.0050335885, 0.042106185, 0.012346999, -0.02993141, -0.007581914, 0.04678486, -0.0057846126, 0.04066019, -0.037846897, 0.03945931, -0.051820222, 0.0008169779, -0.034783583, 0.020238673, -0.027144281, -0.021769293, 0.037816495, 0.033772238, 0.035021372, -0.0010955198, -0.0719384, 0.004747699, -0.03884043, -0.013342042, 0.08355734, 0.011895177, -0.0063213687, 0.048737355, 0.017853962, 0.07776542, 0.048361853, -0.03643234, 0.016318174, -0.00019160908, -0.028856317, 0.031075843, 0.011512343, 0.018264905, -0.08050336, 0.044536117, -0.06455577, 0.108516194, 0.017535174, 0.013081436, 0.0028207714, 0.032738663, -0.009396499, -0.007878633, -0.041597277, 0.007709112, -0.030829802, -0.040833585, 0.0035460817, -0.021592202, -0.04161822, 0.00043284474, -0.02098719, 0.0056365444, -0.030635158, 0.0075476775, 0.019816957, 0.0074967244, -0.07435003, 0.019431144, 0.0380252, -0.028502014, 0.016693933, 0.0057749944, 0.0030493329, -0.0360181, 0.018179584, 0.027694667, 0.02037621, 0.0003965258, -0.012043876, 0.014574541, -0.07533377, -0.03335674, 0.048101142, -0.031734053 ] }, { "values": [ -0.0066053984, -0.045780327, -0.046064742, -0.054805998, 0.019360349, 0.042544566, -0.028715426, 0.021120016, 0.049887802, 0.08411653, -0.0013780304, -0.0035522864, 0.019517863, -0.0018142523, -0.06773183, -0.056453362, 0.023388155, 0.031108752, -0.013481231, -0.032142304, 0.03325925, -0.0044669253, -0.00567834, -0.08869974, -0.028260235, 0.047054607, 0.042720396, -0.030603016, -0.014767711, -0.04806637, 0.008504603, -0.0009750676, -0.018086288, -0.03426834, 0.05997305, 0.0060663684, -0.07546223, 0.04094181, 0.009735255, -0.018978018, -0.07570937, 0.01908603, -0.025518984, 0.054658692, -0.07868174, -0.020687208, 0.0038497066, 0.031913094, -0.00987742, 0.027486177, 0.0071571376, -0.037208233, -0.00040435136, 0.009292577, -0.018992877, -0.06048407, -0.059072737, -0.017257484, 0.111455545, -0.043160558, -0.023241851, -0.014484166, -0.024622252, 0.0033094208, 0.026954211, -0.013290001, -0.04286118, -0.013691807, -0.023773555, 0.0038078842, -0.052946456, -0.041457646, 0.00034208543, 0.027901405, -0.012821971, -0.030322928, 0.0016165487, 0.0025688035, -0.005062233, 0.05331893, 0.0155536, 0.0020225318, 0.05040636, 0.04695434, 0.024694754, -0.03466222, 0.02596971, -0.0691284, -0.034422442, 0.028123789, 0.12972786, -0.019718776, -0.054695442, -0.024154708, 0.01788315, -0.024213072, -0.028816141, -0.05379824, -0.005162196, 0.0630604, -0.021142041, -0.005305351, -0.04162746, -0.070428334, 0.014490704, -0.0074552298, -0.02573572, -0.04353265, -0.03616937, 0.011477515, -0.028381415, -0.02644145, -0.052505333, -0.007849953, 0.031573758, -0.019903515, -0.036427792, -0.017868366, -0.012827951, 0.005809265, 0.008655334, -0.042892944, -0.034240022, 0.058099292, 0.04204665, -0.0048809936, 0.018247766, -0.018483311, -0.038660977, -0.031592537, 0.11343467, -0.08747396, 0.010951914, -0.015805544, -0.03307385, -0.006840698, 0.053510014, 0.03424784, -0.00820016, 0.026998796, -0.002096136, -0.0055588544, -0.041765217, 0.048527673, -0.022744622, -0.020506904, 0.010679067, 0.007269237, -0.039095353, 0.025558775, -0.054506127, -0.037614536, 0.0063856794, 0.0013757773, -0.047864612, 0.034182876, 0.051038615, -0.061300565, 0.03107695, -0.048535626, 0.023224108, -0.03974415, -0.0002670802, -0.013082057, -0.049041886, 0.011878611, 0.038026102, -0.10055977, -0.03333681, -0.036600243, -0.0039439555, 0.031572264, -0.025816692, -0.075752154, 0.006784352, 0.018125625, 0.0091959555, 0.021242205, -0.06656327, -0.014124512, 0.035454944, 0.03514885, -0.007154116, -0.03570105, -0.0057553137, -0.019625125, -0.019256402, 0.02166558, -0.026482088, 0.026203921, -0.017112184, -0.01348993, 0.034966018, 0.03414222, 0.022538027, 0.061430033, 0.0317967, -0.044845108, -0.013679282, -0.061064746, 0.031845644, 0.038119793, -0.0035321894, 0.042704694, -0.038938627, 0.04889881, -0.074983686, -0.03316468, 0.016321266, 0.014768761, 0.02150881, -0.0371043, 0.0061245905, -0.04790525, -0.0016816127, 0.0027471487, 0.055980396, 0.03785945, 0.06368552, -0.020640634, -0.05830263, -0.047421895, -0.012472784, 0.008641029, 0.028741673, 0.0021024405, -0.016264038, -0.025140705, -0.009878968, -0.0061612865, 0.006851537, -0.002866901, -0.009363295, 0.019100377, 0.050728906, 0.098320186, 0.018016614, 0.0030179136, 0.003688977, 0.012457586, 0.00557027, 0.040039327, 0.05357801, -0.010832389, 0.008471757, 0.033760417, 0.08158877, 0.07476036, -0.035287615, 0.002766036, -0.04224072, -0.049319446, -0.076021016, 0.023130616, -0.011314773, -0.01651933, 0.023177275, -0.051471755, -0.008241009, 0.012389797, 0.058986913, 0.021747405, -0.01847222, -0.06690806, 0.0033473044, -0.07665596, 0.017280145, 0.0007550835, 0.07340886, 0.0042780503, -0.006741127, -0.018175341, -0.060028493, -0.034378145, 0.01888986, 0.01902883, -0.03151824, 0.04619935, -0.054869004, -0.039161503, 0.037500493, -0.008597943, -0.03269214, -0.030012505, -0.0041762674, -0.006046067, 0.013520625, 0.009055504, -0.060469177, -0.052946076, 0.046806987, 0.061583765, 0.0118057905, 0.0008741479, 0.013418893, 0.0052213017, 0.01520905, -0.0273822, 0.010983138, -0.02868893, 0.043514397, 0.046090763, -0.05276774, 0.0033969034, -0.03264786, -0.006270936, -0.025223527, 0.012647936, 0.02716107, 0.04282895, 0.041300185, 0.03929184, -0.039364353, -0.0031141704, -0.045112047, 0.003943568, -0.09263515, 0.00069695443, -0.039746337, -0.02847368, 0.052262515, 0.017616255, -0.0045683053, -0.04216624, 0.03673207, -0.014871463, 0.009662517, -0.054347463, -0.032784816, -0.037400648, 0.039216354, 0.014443535, 0.016934711, -0.006220302, 0.014360122, 0.0018857907, -0.027514134, 0.01664907, 0.06335616, -0.015533036, 0.005762676, 0.011384881, 0.058029324, 0.08204563, -0.023367228, -0.031406846, 0.027214007, 0.008908095, 0.036875244, -0.019494276, -0.022619223, 0.04068769, 0.0053255833, 0.021025496, 0.0655887, 0.01327556, 0.01680279, 0.033803053, 0.017226458, 0.0041937325, -0.011632236, 0.013390333, -0.005227016, -0.014516216, 0.042599566, -0.002989092, 0.012006078, 0.0089035025, -0.006134584, -0.095757775, 0.029567832, 0.051948044, 0.028611828, 0.0060257087, 0.0047096815, -0.061013736, 0.023976054, 0.030544816, 0.03382515, -0.012917825, -0.03807178, -0.027391456, 0.032989927, 0.0036018384, -0.024709279, 0.06408861, -0.033865213, -0.0099069355, 0.008094235, -0.00055109564, -0.03743293, 0.05750073, -0.018170685, -0.010383743, -0.023916138, 0.05409644, -0.021130182, 0.012446417, 0.031172646, 0.009815797, -0.04322918, -0.022289643, 0.028114961, -0.021531194, -0.0012115663, 0.007749671, 0.06712862, -0.0049597425, 0.03487412, -0.03413489, 0.029989332, -0.021121545, 0.01997767, 0.016540209, -0.007289142, 0.024426179, 0.03935182, -0.027348656, 0.011804226, -0.006917431, -0.0073588584, 0.015496258, -0.0027138488, 0.036823783, -0.004275717, -0.025204148, -0.009073948, -0.008925332, 0.04956494, 0.0004466414, -0.023633586, 0.027633624, -0.04239127, 0.013947021, 0.0042981585, 0.010120109, 0.03163898, 0.028758192, -0.035556972, -0.010676433, 0.012232935, 0.016414365, 0.036330577, 0.024869904, -0.010794379, 0.019816574, 0.047104165, -0.05280903, -0.03413777, -0.0584916, -0.008702562, -0.033909053, -0.027872493, -0.0012951993, 0.034772214, 0.023620097, 0.046218716, 0.0434958, -0.075554594, 0.027955899, -0.09406816, -0.002979261, 0.04903061, 0.034646697, 0.02038646, -0.010644786, -0.06523873, 0.012183272, 0.006644396, 0.06052247, 0.026501507, -0.005256055, 0.006794074, -0.02326105, 0.040312737, 0.023864577, 0.018193798, -0.0016076693, 0.0052413787, 0.044023383, -0.054684136, 0.0066232528, 0.04340439, 0.028767966, 0.061671846, -0.059463132, 0.006072042, 0.013116664, 0.010360368, 0.03472377, 0.024691245, 0.06384295, 0.014969977, 0.01731785, -0.042373925, -0.061133616, 0.034016542, -0.00570604, -0.033047974, -0.0021502625, 0.07593496, 6.989277e-05, 0.011813065, -0.02899519, 0.04994086, 0.015760459, -0.044190712, 0.011825262, -0.014373297, -0.017555332, -0.000460319, 0.012814055, 0.05808034, 0.008472779, -0.065880604, 0.05569401, -0.11437531, 0.008709336, -0.0019043287, 0.031260725, -0.02868769, 0.045529645, 0.046978626, -0.03892913, -0.039002538, -0.0014187918, -0.05465845, 0.072294325, 0.06029527, 0.006788701, 0.0015898434, 0.05894053, 0.03287475, 0.022357773, 0.006227668, 0.027155284, -0.041764166, 0.04682009, -0.016109614, 0.043366026, -0.00015956814, 0.038920935, 0.05063989, 0.022660073, 0.07063509, -0.045146063, 0.017136564, 0.006061965, -0.034492265, 0.054731004, 0.019292178, -0.030161636, 0.03679298, 0.008753036, 0.0047747674, -0.05453432, -0.022652347, -0.057097975, -0.037245534, 0.041280065, 0.037000813, -0.01952174, 0.0159406, 0.019104129, -0.024449414, -0.018995084, -0.0166576, 0.027170382, -0.028039066, -0.076671064, 0.008372828, -0.0132925315, -0.032419126, -0.02145759, 0.016964683, 0.0015497496, -0.025490925, 0.000726555, 0.033973463, -0.0063555264, 0.030558618, -0.032877896, 0.044267375, -0.014149818, -0.054970976, -0.030937266, 0.032879774, -0.077923864, -0.019802433, -0.014855627, -0.023527639, -0.014941921, 0.0031255498, 0.001204465, 0.045247342, -0.022493135, -0.009854929, 0.002023929, 0.015209992, 0.022629406, -0.011370563, 0.021630112, -0.0077848863, 0.03162253, -0.021764848, -0.020591283, -0.020208409, -0.012098377, 0.023834027, 0.0016011429, -0.0017057532, 0.05299355, 0.04849747, -0.0130393505, -0.035820235, 0.028163845, -0.03369626, -0.049970724, 0.015163004, -0.0024643873, -0.042403087, 0.07404252, -0.01447504, 0.026253566, -0.07060279, 0.020513594, -0.044600517, 0.051554203, -0.020866899, -0.015035506, -0.013666329, -0.009327611, 0.084643714, -0.028967408, 0.020334568, 0.023730243, 0.007657014, -0.038970575, -0.0043460773, -0.055719167, 0.04573122, -0.026913824, 0.049032014, 0.027072974, -0.05049272, 0.05743465, 0.021494282, 0.043520164, 0.025400465, 0.020996414, -0.00960057, 0.040133033, -0.023299346, -0.011966089, -0.04700735, -0.040734205, -0.007186201, -0.011668052, 0.03652948, 0.0037078792, -0.0049001495, -0.01469956, 0.04879683, 0.037299987, -0.012872519, 0.04924453, -0.0061081573, 0.015531957, -0.017126143, -0.00738319, 0.008813216, 0.043090165, 0.00214993, 0.041639645, -0.04861255, 0.03472753, 0.052121565, -0.03337667, -0.042200435, 0.010137771, 0.03385399, -0.05380064, 0.0020495728, -0.009224531, -0.0022317378, 0.0101329675, 0.040947255, -0.04479571, 0.02284532, 0.024842996, 0.0016605667, -0.05921756, 0.025320986, 0.040263817, 0.00655051, 0.035942264, -0.038473, 0.030486487, -0.036588598, -0.0011099606, -0.05161968, -0.016727243, -0.044513434, -0.04124318, 0.033241604, 0.034091283, 0.018250003, -0.012896479, -0.065933146, 0.016115174, -0.067742094, -1.1901439e-05, 0.082261786, -0.023218915, 0.0032539612, 0.035921082, 0.02731539, 0.09649952, 0.037726276, -0.022399323, 0.016197354, -0.009806758, -0.028028471, 0.043375645, 0.0011487602, -0.0011356939, -0.056786526, -0.020780696, -0.06323114, 0.08661234, 0.014308067, -0.0068044784, -0.0038777338, 0.06472325, -0.0010641649, 0.007387121, -0.010854342, 0.014963136, -0.03511554, -0.050339535, 0.022259424, -0.022600608, -0.021914292, 0.014063117, -0.0047956035, -0.006981817, 0.004824418, 0.0064512435, 0.01485014, -0.0075172717, -0.08208193, 0.024503011, 0.062470745, -0.0032099318, -0.00041150005, 0.0009471945, 0.018682504, -0.06405103, 0.011088946, 0.0352376, -0.0044148387, 0.0046112747, -0.0138805425, 0.02917037, -0.0963455, -0.02079834, 0.07437143, -0.014224177 ] }, { "values": [ -0.010594428, -0.03820369, -0.06089751, -0.034521114, 0.03041114, 0.030270709, -0.011901897, 0.031091604, 0.026075473, 0.06207875, -0.015919266, 0.0036194955, 0.02922473, -0.010148733, -0.08631727, -0.054556705, 0.028241571, 0.035836264, -0.0025266053, -0.029010905, 0.012757762, 0.020207424, 0.0076417713, -0.115851596, -0.03100927, 0.055319, 0.036742516, -0.034176104, -0.01530012, -0.061070863, -0.00030368823, 0.019494807, -0.015698876, -0.018960355, 0.07736049, -0.005489974, -0.07005142, 0.038913894, 0.022010416, -0.007084092, -0.07485698, -0.008890473, -0.01997258, 0.042096984, -0.07226135, -0.017077914, 0.00462523, 0.021003326, -0.039736684, 0.045967363, 0.030889062, -0.034895655, 0.005389647, 0.023576515, -0.011415687, -0.031729467, -0.050838843, -0.051163893, 0.06345114, -0.031279456, -0.048108447, -0.012931339, -0.030921621, -0.023846038, 0.02127082, -0.042305313, -0.034602858, -0.011056235, -0.031345036, -0.013902435, -0.028519655, -0.022333866, -0.010491941, -0.011746804, -0.013093304, -0.012021411, -0.0056155957, 0.024735667, -0.006150529, 0.0547838, -0.0008703226, -0.01316142, 0.06207292, 0.0764985, 0.022178527, -0.029643469, 0.028917894, -0.071767256, -0.009456308, 0.025660409, 0.1329874, -0.010154636, -0.054913945, -0.0017120262, 0.017480591, -0.031302307, -0.03598788, -0.041928284, 0.022032665, 0.08491709, -0.01085255, -0.0001590534, -0.028691689, -0.039792504, 0.015989257, -0.0041470253, -0.026587129, -0.06955276, -0.03754681, 0.024920797, -0.028725438, 0.00248345, -0.02734692, -0.020113122, 0.048740186, -0.03569523, -0.020194246, -0.021957662, -0.01650896, 0.020355266, 0.031093547, -0.04152343, -0.037384674, 0.050664376, 0.034427427, 9.1595786e-05, 0.043532256, -0.05078805, -0.013935137, -0.05496987, 0.10834852, -0.08138855, 0.0020239747, -0.0031221854, -0.035781674, -0.020258581, 0.021816835, 0.056059033, -0.00564691, 0.0077262367, 0.0023374283, -0.0022755149, -0.016412474, 0.032657683, -0.027753819, -0.029439978, -0.0060847905, 0.0018831356, -0.0719751, 0.016012896, -0.042140223, -0.014550278, 0.018590923, 0.0010277142, -0.039041817, -0.0006505641, 0.047458284, -0.034919646, 0.034200232, -0.03361182, 0.039608017, -0.030839428, 0.032607775, -0.005713566, -0.0436195, -0.005341536, 0.046036158, -0.10755903, -0.010274525, -0.021546297, 0.0019648792, 0.03409501, -0.01273599, -0.07927245, 0.03713406, 0.026803073, -0.024002682, 0.041184448, -0.05882065, -0.021841843, 0.043924414, 0.02457533, -0.026050773, -0.04792115, -0.022470133, 0.0045574033, -0.03403978, 0.052517038, -0.028254371, 0.012305755, -0.005840969, -0.018395169, 0.039391223, 0.0486507, 0.0022271834, 0.04087137, 0.03516761, -0.017450945, -0.008348467, -0.045374315, 0.04817922, 0.011061314, -0.010427408, 0.030802492, -0.03396102, 0.03709395, -0.08018812, -0.042963788, 0.0022870633, 0.0017503296, 0.007689429, -0.0371442, -0.012421223, -0.042945616, 0.017986491, 0.011367766, 0.03648385, 0.040327705, 0.05418372, -0.02977672, -0.035659313, -0.042268775, 0.002536318, -0.01517257, 0.041795515, -0.032401156, -0.01907475, -0.039065246, -0.008838173, 0.009965279, -0.008765011, -0.034735043, -0.007819575, 0.011375794, 0.03856531, 0.08443884, -0.010420018, -0.005193077, -0.00033226222, 0.00012921642, 0.020554343, 0.020018587, 0.06430774, 0.013129011, -0.004349043, 0.035932887, 0.082980566, 0.09601175, -0.039767534, -0.007924175, -0.03367766, -0.047139212, -0.08384549, 0.0063161743, -0.031061312, -0.0021091118, 0.011654614, -0.027157985, -0.02410939, -0.012721666, 0.033473615, 0.012133813, -0.039242145, -0.08446938, -0.014604288, -0.11686157, 0.021472154, -0.02064306, 0.079849176, 0.00023581048, -0.024261892, -0.013825517, -0.02612751, -0.033600528, 0.03016464, 0.013664707, -0.02054141, 0.04177466, -0.05998985, -0.030521557, 0.017772077, -0.003562041, -0.029990172, -0.026850818, 0.0008842568, 0.0046680514, 0.030464321, 0.0021113262, -0.055464484, -0.07051733, 0.03484428, 0.059004474, 0.03483933, 0.017980237, 0.009219122, 0.008741243, 0.005272039, 0.01014368, 0.009620374, -0.026549395, 0.042836342, 0.057490695, -0.055072933, 0.031026501, -0.03318879, 0.007320599, -0.048058283, 0.000957862, 0.018543387, 0.0336728, 0.04743154, 0.059035532, -0.009203473, -0.0003162303, -0.041133676, 0.0031192813, -0.07210431, 0.01749498, -0.03881799, -0.022615911, 0.05217411, 0.018750297, -0.02574189, -0.032368407, 0.03909324, -0.011158487, 0.0011132505, -0.048743825, -0.028665066, -0.03745191, 0.042803876, 0.024498915, 0.021668494, -0.016986337, 0.0039314525, 0.010037153, -0.016380107, 0.015638169, 0.062223535, 0.021961182, 0.00547786, 0.0029444557, 0.061265506, 0.08057075, -0.024615357, -0.01949632, 0.01124849, 0.02153085, 0.07634255, -0.011744739, -0.033226382, 0.06151767, 0.0008715008, 0.011497477, 0.0646475, 0.01903307, 0.034457985, 0.051387098, 0.020610457, -0.012327509, -0.026726251, 0.025783002, 0.0026421319, -0.011671704, 0.0019253414, -0.01164228, -0.000728105, 0.020776387, -0.0002121425, -0.09862838, 0.002218226, 0.038242057, 0.01865239, 0.0050999396, -0.013192174, -0.07040798, 0.023996076, 0.015513103, 0.013775648, -0.022356177, -0.042583577, -0.0315034, 0.034771282, -0.01820307, -0.008389426, 0.06828766, -0.036851145, -0.020754686, 0.008296488, -0.0016092408, -0.051131815, 0.056233685, -0.010222165, -0.0022813473, -0.03488383, 0.046648383, -0.025698118, 0.019550392, 0.04572585, -0.00536622, -0.035762943, -0.010920101, 0.02003823, -0.030045236, -0.008810864, -0.009523304, 0.057441555, 0.01921583, 0.03471104, -0.021693647, 0.016650122, -0.045539968, 0.044801492, 0.00028433115, -0.0025083546, 0.007054795, 0.01859479, -0.03620302, -0.0052253786, -0.0076403576, -0.003133993, -0.011460141, -0.008643446, 0.05259965, -0.009038221, -0.046779126, 0.017098626, -0.024958087, 0.051739503, -0.0154011585, -0.035187773, 0.041972037, -0.052818853, -0.0023972348, 0.0119233765, 0.009184785, 0.0074105435, 0.005718384, -0.034782697, -0.010769946, 0.015488846, -0.00461763, 0.06274426, 0.04358918, -0.018181138, 0.019552236, 0.04109677, -0.03268131, -0.013237703, -0.0729061, 0.011223429, 0.00091001304, -0.03307151, -0.01822785, 0.039167184, -0.017038627, 0.05515104, 0.026406944, -0.056196548, 0.0101111, -0.05962751, 0.0005984509, 0.053533424, 0.04492283, 0.0074903327, -0.010272135, -0.043607917, 0.017544514, -0.005182812, 0.05071262, 0.0061370437, -0.017450038, 0.0009936292, -0.0035139578, 0.04885023, 0.014297402, 0.034244597, -0.011045631, 0.00012728515, 0.049522858, -0.04672489, 0.015917115, 0.031082382, 0.020442894, 0.041848723, -0.04636449, 0.0063122227, -0.012593748, 0.007426439, 0.022555409, 0.023183933, 0.06416252, 0.020507725, 0.014017101, -0.052568644, -0.082554154, 0.048081633, 0.003730139, -0.03521427, -0.021301622, 0.06072298, 0.0022654643, 0.01666115, -0.028665565, 0.030756315, -0.0048034433, -0.009909583, 0.0008695905, 0.02786062, -0.020079935, 0.0042277356, 0.007309093, 0.045067217, 0.004474108, -0.06328338, 0.08153184, -0.07080033, 0.023133794, -0.015009404, 0.031764742, -0.03439722, 0.023925772, 0.03162166, -0.05839721, -0.05911561, -0.013796188, -0.052707344, 0.060640745, 0.080896616, 0.00027098303, 0.032032732, 0.06369466, 0.023984164, 0.016354896, -0.003587575, 0.051250655, -0.033399407, 0.04029084, -0.02793516, 0.04073088, -0.0054674973, 0.006134728, 0.057778995, 0.036078863, 0.05057996, -0.020839185, 0.02731537, 0.007887519, -0.009742215, 0.0683207, -0.013933012, -0.02809828, 0.041776843, -0.018188767, -0.019616004, -0.045034006, -0.008561277, -0.017496193, -0.02028263, 0.03547158, 0.030326301, -0.020272696, 0.028838648, 0.024987426, -0.06345483, -0.017448526, -0.0019391952, 0.046936534, -0.049154814, -0.05594353, 0.0069418866, -0.0060688034, -0.01744121, -0.024640854, 0.0024050993, 0.025160007, -0.042838745, 0.007449993, 0.05319684, 0.009818722, 0.031396788, -0.007916346, 0.05982862, -0.014957647, -0.056978017, -0.025954243, 0.06846809, -0.07282111, -0.008811189, -0.012416632, -0.0056778616, -0.013408313, 0.0008682685, -0.007776568, 0.05435258, -0.011870333, 0.002721915, -0.009253122, 0.021378618, 0.05354819, -0.02577652, 0.004306405, -0.0048597, -0.001553932, -0.010811725, 0.0028662016, -0.008169658, -0.027639724, 0.034147, 0.010299602, -0.017845193, 0.04729017, 0.00882172, -0.0146820145, -0.029551132, 0.035638865, -0.033087563, -0.064538285, -0.00900416, -0.038484488, -0.04097748, 0.06142203, 0.007933923, 0.009569372, -0.049593072, -0.012120012, -0.026718326, 0.057290778, -0.036911644, 0.00028489932, -0.019299207, -0.013951289, 0.075063094, -0.018832132, 0.01151168, 0.030559922, -0.00182512, -0.04379427, 0.033392493, -0.050369646, 0.04177772, -0.013893229, 0.04097969, 0.050721798, -0.05857867, 0.043370724, 0.013588645, 0.05286935, 0.00859708, 0.010461105, -0.025564069, 0.021983927, -0.02653683, -0.011520297, -0.042857792, -0.047474995, -0.023237182, -0.026489438, 0.024098, -0.0063816058, -0.0048903106, -0.004973472, 0.034250993, 0.02611676, -0.004775713, 0.032998547, -0.02755736, 0.01581873, -0.03383346, -0.020757807, 0.00020847893, 0.046644036, 0.017107517, 0.029550895, -0.031421725, 0.04166844, 0.039699793, -0.05539346, -0.041571636, 0.011206055, 0.030760946, -0.05907598, -0.036983818, 0.0070864516, -0.005391663, 0.0041393903, 0.011290972, -0.021228144, 0.014310262, 0.03277484, 0.008124651, -0.046772268, 0.005211286, 0.035679333, 0.021345466, 0.072086416, -0.033023443, 0.037807867, -0.054341037, -0.009999019, -0.025987783, 0.008061309, -0.044678982, -0.0136648035, 0.053741228, 0.05174645, 0.023086011, 0.017756937, -0.058633603, 0.024382092, -0.05164543, -0.022101875, 0.076723985, -0.013601622, 0.019448843, 0.016519312, 0.030002797, 0.07827682, 0.047327038, -0.006783776, 0.032678563, -0.008825824, -0.03879108, 0.058796663, 0.007510432, 0.016572783, -0.07992222, -0.0052568717, -0.06439762, 0.09228339, -0.0011165453, -0.010026771, -0.00419484, 0.057351597, -0.008717559, 0.021842355, -0.0011114297, 0.017221985, -0.025424933, -0.046881773, 0.03320144, -0.04382793, -0.03650072, 0.0216861, -0.022962647, -0.0061115935, -0.017692635, -0.00040056053, 0.016596977, 0.023000365, -0.07758827, 0.026507474, 0.05912076, -0.015452097, 0.026335305, -0.013649677, -0.000745245, -0.04389102, -0.0010397587, 0.04412285, 0.002539982, 0.009090032, 0.003032844, 0.023278302, -0.08174709, -0.028453609, 0.07520582, -0.021642717 ] }, { "values": [ 0.002797029, -0.03610979, -0.06758352, -0.03388101, 0.062134106, 0.029232342, 0.008993442, 0.04587588, 0.02769692, 0.06827827, -0.008256867, -0.005017931, 0.022095218, -0.013722984, -0.091939785, -0.057842467, 0.028865485, 0.018012082, -0.025932407, -0.021406466, 0.019382497, 0.03658708, 0.0045654345, -0.110731095, -0.013295116, 0.048678514, 0.0502151, -0.035720557, -0.010232537, -0.037967306, -0.007849067, 0.00924881, -0.013299027, -0.03715396, 0.051253073, 0.018250234, -0.06142186, 0.046189077, 0.018886887, -0.015539391, -0.08599085, -0.03244899, -0.025143668, 0.04620585, -0.07560282, -0.018286988, 0.01545518, 0.014394878, -0.051996965, 0.021640461, 0.00880749, -0.039450645, 0.0016941678, 0.034165375, -0.028059421, -0.039968453, -0.036703557, -0.035933185, 0.078615636, -0.034484103, -0.04804144, -0.0120332455, -0.035945095, -0.019215109, 0.00693079, -0.049079146, -0.043980274, -0.0015898099, -0.040434033, -0.008635841, -0.053048465, -0.024750678, -0.007962642, -0.013620834, -0.00729434, -0.0060952003, 0.012089707, 0.021151317, -0.010796169, 0.061457478, 0.021751117, 0.034007307, 0.049786832, 0.05570592, 0.009418353, -0.007162948, 0.05988134, -0.06521404, -0.029262485, 0.005560154, 0.12301413, -0.0066795116, -0.07092351, -0.00027748343, 0.009800679, -0.0093235, -0.0172773, -0.04143853, -0.010133176, 0.07993797, -0.024290688, -0.0006436137, -0.053020846, -0.06660675, 0.0028835365, 0.0025338768, -0.022224436, -0.06372826, -0.028986918, 0.03974722, -0.022841135, 0.003376133, -0.022978595, -0.016756618, 0.046213374, -0.01655537, -0.036901575, -0.05065232, -0.03933171, 0.0025164818, 0.020772858, -0.03090866, -0.027357053, 0.05318763, 0.031972244, -0.016494153, 0.028113646, -0.04248111, -0.033668287, -0.03324796, 0.12396075, -0.08885408, 0.0045680203, -0.027316196, -0.022007493, -0.014133988, 0.04372401, 0.026956137, 0.006801687, 0.032628015, 0.020691644, -0.007484271, -0.07066502, 0.017564107, -0.026109666, 0.009245945, -0.00825894, -0.01617982, -0.05455465, 0.01781906, -0.017160773, -0.024733713, 0.0148176905, -0.013906446, -0.06009911, 0.01823471, 0.046755936, -0.03802332, 0.0282027, -0.008345261, 0.06179816, -0.03454797, 0.009519546, -0.0068802666, -0.05111643, 0.026796775, 0.06572525, -0.09654539, -0.0034077743, -0.0001440239, -0.015557955, 0.010807104, -0.03473171, -0.08476405, 0.035580676, 0.027142959, -0.019765448, 0.03418876, -0.049372844, -0.028731287, 0.044629242, 0.03343528, -0.034163635, -0.039012067, -0.035949484, 0.019464495, -0.013508753, 0.0320068, -0.017175792, 0.0004997195, -0.012057023, -0.01931864, 0.022703966, 0.06650286, -0.0017927395, 0.03044979, 0.043937035, -0.02942817, -0.030010305, -0.014156246, 0.032274686, 0.047657784, -0.02531586, 0.059314862, -0.02305686, 0.051357828, -0.07480079, -0.045841604, 3.8694885e-05, -0.015921865, -0.0010069155, -0.030687958, -0.012108752, -0.038205493, 0.009859304, 0.00443547, 0.05300947, 0.038371317, 0.049371567, -0.034413785, -0.050687548, -0.047620002, -0.017463401, -0.027031055, 0.054894343, 0.009827329, -0.011582009, -0.01739086, -0.024506032, 0.008344378, -0.013930226, -0.019991264, -0.0031220373, 0.009661483, 0.017736591, 0.08727328, 0.0073918514, 0.010729854, -0.0023929607, -0.014574368, 0.020880684, -0.006185887, 0.047592074, 0.016718805, -0.0034140202, 0.021045439, 0.07330655, 0.06976382, -0.022343917, 0.0072891894, -0.027588105, -0.060569394, -0.09198044, 0.016032929, -0.030018087, 0.0024990253, 0.024099872, -0.03569848, -0.01751292, -0.020403584, 0.024754256, 0.035735384, -0.028481832, -0.09825121, 0.009644447, -0.10244302, 0.006675648, -0.02914218, 0.07143915, 0.0067234403, -0.021904144, -0.014284967, -0.022179967, -0.03054888, 0.007055318, 0.027527701, -0.022779228, 0.031104254, -0.05840064, -0.027044548, 0.01974928, -0.0018193572, -0.0193778, -0.022273282, -0.021012405, -0.0006095835, 0.019241294, 0.018202908, -0.047421597, -0.06319829, 0.015189502, 0.058865506, 0.026054813, 0.0049899933, 0.027155554, 0.013968205, -5.8011898e-05, 0.0034202938, -0.027134648, -0.0025342419, 0.049818154, 0.046467613, -0.063923396, 0.0504604, -0.033864647, 0.0048797126, -0.02483298, 0.009040431, 0.02773152, 0.023599166, 0.029488321, 0.046636894, -0.033538606, 0.005362965, -0.035400085, -0.0028412458, -0.08727356, -0.0055778753, -0.045122452, -0.018349923, 0.026303306, 0.0119658755, -0.00946435, -0.042393353, 0.045590732, -7.340031e-05, -0.000754931, -0.011360457, -0.017616343, -0.030667424, 0.013030185, 0.024351628, 0.03795662, 0.0041179843, 0.003154823, -0.0017899509, -0.016199637, 0.0031335189, 0.059856176, 0.030611359, 0.01865777, 0.014793282, 0.05027363, 0.07962688, -0.013162426, -0.033224236, 0.026144443, 0.029427748, 0.0480496, -0.03653156, -0.019211927, 0.064349145, -0.0074615786, 0.012428983, 0.06548229, 0.004482047, 0.013754165, 0.012842692, 0.02805532, -0.007981747, -0.020409144, 0.007081308, -0.013345069, -0.012261531, 0.009800756, -0.010517769, -0.0137098245, 0.023699375, -0.007358995, -0.07276266, 0.028505733, 0.027059158, 0.023089364, 0.020025183, -0.012312738, -0.04121049, 0.017478295, 0.03237468, 0.0035536857, -0.03156122, -0.025252972, -0.039716043, 0.01366815, -0.01737273, -0.008584788, 0.05537122, -0.03344676, 0.008981037, 0.021260904, -0.0034530112, -0.062338255, 0.048778456, -0.0036218434, -0.01825917, -0.035616796, 0.05464216, -0.020042285, 0.011737192, 0.02865774, 0.0051404783, -0.01393353, -0.01989079, 0.040969793, -0.026805378, 0.012600564, 0.003444584, 0.05561833, 0.03356462, 0.0318643, -0.0027388397, 0.033535555, -0.02146356, 0.05174666, -0.009153512, -0.0076291515, 0.026641726, 0.03527003, -0.036636796, 0.0171385, 0.004630459, -0.008372553, 0.0012072334, -0.0037543408, 0.04545869, 0.009878033, -0.022456707, 0.01768007, -0.01372675, 0.04716977, 0.0017037966, -0.020439185, 0.04039285, -0.03350384, -0.004672972, 0.0012128516, 0.0008268873, -0.0049201315, -0.005200443, -0.041598298, -0.0017985225, 0.0056600887, 0.014799088, 0.058777235, 0.046124417, -0.017437242, -0.016793393, 0.03819997, -0.032584358, -0.020498509, -0.06820269, -0.019686667, -0.007344668, -0.034516405, -0.01560345, 0.041049905, -0.008097301, 0.0429016, 0.012979504, -0.080290385, 0.0155924335, -0.0636849, 0.02473463, 0.07623019, 0.051159676, 0.008029807, -0.015613238, -0.050084475, 0.00032380514, 0.0069386456, 0.063999765, -0.0056464146, -0.011405384, -0.007873984, -0.013677218, 0.03328707, 0.0011127669, 0.050028834, 0.015720058, 0.005309717, 0.05653471, -0.035564143, -0.007381619, 0.039165515, 0.036059946, 0.046585858, -0.037381835, -0.002001035, 0.0059553105, 0.0040943446, 0.04080609, 0.03626665, 0.067315035, 0.021712195, 0.032826733, -0.057427116, -0.0728276, 0.05516935, 0.0051578493, -0.025854379, -0.0038224477, 0.068664044, 0.002078622, 0.00029464532, -0.05991985, 0.02182578, 0.0044251266, -0.031890236, -0.010203004, 0.012113266, -0.029925164, 0.01092703, 0.003970907, 0.031236555, 0.017117023, -0.06636919, 0.07163052, -0.09396228, 0.0038819932, 0.009511398, 0.014590534, -0.00976102, 0.028579367, 0.03695259, -0.04290019, -0.06171779, -0.018172985, -0.043920178, 0.06588118, 0.08650747, 0.00584182, 0.024521796, 0.06882784, 0.028131805, 0.035178825, -0.015326281, 0.040872414, -0.018892903, 0.05818186, -0.033329852, 0.015918087, 0.0061549484, 0.029811105, 0.06555133, 0.017545367, 0.06160032, -0.020616943, 0.027581627, 0.011381657, -0.014130634, 0.04496425, -0.015891338, -0.034776308, 0.057219572, -0.02095091, -0.015338176, -0.03934445, -0.017417787, 0.00051064556, -0.030703789, 0.03826955, 0.037682854, -0.018974258, 0.033213433, 0.0131766675, -0.029991552, -0.018937832, 0.0114195235, 0.033170637, -0.04859508, -0.045400564, 0.024195783, 0.005241138, 0.0003853688, -0.027036196, -0.00030877144, 0.017124593, -0.030737985, -0.0050869305, 0.054519463, -7.574843e-05, 0.020701118, -0.02514333, 0.07615699, -0.012961033, -0.0532822, -0.0120601775, 0.047591966, -0.07784112, 0.0057884487, -0.0021113371, -0.019953903, 0.0005719662, 0.00019060035, -0.009740232, 0.0677937, -0.012936495, 0.0037043558, -0.0037023819, 0.009604217, 0.042969447, -0.04449083, -0.004630734, 0.0034238026, -0.0063747605, -0.0099798795, -0.012797824, -0.03050086, -0.026894683, 0.01986668, 0.007016108, -0.019024847, 0.03829782, 0.007843002, -0.026232736, -0.033708017, 0.04141965, -0.044192933, -0.055683807, -0.009620683, -0.032186355, -0.035550024, 0.043199904, -0.012802957, 0.019715602, -0.07715044, 0.01029575, -0.025841668, 0.058282927, -0.0171521, -0.0014913831, -0.025910698, 0.00045624928, 0.055786617, -0.03455713, 0.014765791, 0.037522655, 0.00762405, -0.057334337, 0.015981369, -0.047046933, 0.0466415, -0.025614807, 0.046521172, 0.0076920125, -0.064404905, 0.06462134, 0.023598172, 0.03294443, 0.013867768, 0.040481772, 0.0006819823, 0.039612677, -0.035526358, -0.024989275, -0.05003346, -0.045366745, -0.015354159, 2.7833627e-05, 0.026426049, -0.0032614667, -0.0049493564, -0.022627484, 0.033082653, 0.024223143, -0.023547675, 0.051775545, -0.03444968, 0.0048892186, -0.031037495, -0.011815263, 0.015252052, 0.051916372, 0.019965198, 0.023660608, -0.0068887654, 0.03926152, 0.026941448, -0.08142953, -0.048104595, 0.017995682, 0.012871925, -0.07326443, -0.026963288, 0.022561114, 0.020079222, -0.01500963, 0.012639141, -0.028118413, -0.0016081858, 0.036193702, 0.00060084846, -0.05391948, 0.02781992, 0.042197946, 0.030052917, 0.05905073, -0.059952598, 0.022376975, -0.05436182, -0.021416083, -0.046780217, 0.028518243, -0.042786818, -0.037136275, 0.050293982, 0.035358485, 0.014973512, 0.043231413, -0.043959837, 0.041430242, -0.03872615, -0.023460325, 0.05185962, -0.0028529223, 0.019553352, 0.030450368, 0.026343338, 0.09455356, 0.046784177, -0.027698018, 0.032497503, 0.0017511861, -0.03291231, 0.06555768, 0.004637557, -0.006312491, -0.064202696, -0.00799799, -0.06648465, 0.10554216, 0.008232659, -0.030917214, 0.006678294, 0.042022772, -0.01347441, 0.023983398, -0.0014892649, 0.012357028, -0.03681723, -0.037739187, 0.016193965, -0.03750819, -0.031823516, 0.003678406, -0.004652867, -0.0066230204, -0.019743279, 0.019313648, -0.00698566, -0.001999581, -0.06058804, 0.018131342, 0.050682228, -0.007891342, 0.02497127, 0.010602311, -0.0008592559, -0.069823794, 0.004184689, 0.05319111, -0.012410679, 0.0044527943, 0.006711981, 0.016698243, -0.083061494, -0.03634643, 0.06403588, -0.0054632244 ] }, { "values": [ -0.00053857086, -0.026155323, -0.07994287, -0.06533931, 0.042115137, 0.019615624, 0.0077723553, 0.03914556, 0.013839478, 0.04602645, -0.004228416, 0.019548485, 0.025673036, -0.012073727, -0.10701367, -0.037148975, 0.0043463893, 0.038044278, -0.041478626, 0.0015240028, -0.0008504045, 0.028617851, 0.037877798, -0.10192692, 0.0052155578, 0.06733547, 0.027362145, -0.020703306, -0.006940689, -0.021826126, 0.0029253997, 0.0036483735, -0.0058287675, -0.03081748, 0.08840369, 0.013839317, -0.04256904, 0.042499218, 0.008836856, 0.004771409, -0.07496542, 0.0008738731, -0.038123004, 0.04031072, -0.07097495, -0.0020326935, -0.011265596, -0.017933285, -0.045484796, 0.028917994, 0.004936974, -0.024035405, -0.048197698, 0.0046355356, -0.030223921, -0.03727577, -0.02312801, -0.05002101, 0.09587221, -0.010335393, -0.050510336, -0.037202522, -0.009589045, -0.0037836535, 0.024193618, -0.04492277, -0.043893177, -0.012624071, -0.025083786, 0.0003028119, -0.02421704, -0.04781508, 0.005976896, -0.0063408115, 0.002756617, -0.014035505, 0.009799912, 0.051211823, 0.015283639, 0.05297096, -0.016597144, 0.006283563, 0.07478406, 0.03163913, -0.0054222583, -0.03871501, 0.03307339, -0.06702243, -0.016063394, 0.009776527, 0.12829721, -0.0080675725, -0.023045426, 0.0011695037, 0.021674687, -0.023551483, -0.04304138, -0.05594302, -0.024859812, 0.09256576, -0.022093533, 0.014412423, -0.05942615, -0.058288492, 0.0373543, 0.029193563, -0.0021425022, -0.048497684, -0.037748806, 0.037767254, -0.0050791507, -0.02099235, -0.03172686, -0.015778445, 0.078854516, -0.0148890605, -0.027761124, -0.034791727, -0.014241301, 0.01913113, 0.015268726, -0.047011357, 0.002946223, 0.0817056, -0.009277281, 0.004549803, 0.045365967, -0.054700393, -0.047478013, -0.057037503, 0.10581017, -0.08484976, -0.010435821, -0.010398041, -0.03179801, -0.007783857, 0.008186234, 0.0456302, 0.012750606, 0.036951944, 0.014563938, -0.02277971, -0.035685744, 0.022216825, -0.027971586, 0.028210865, 0.010672071, -0.008571935, -0.057317957, -0.0046778186, -0.042277187, -0.039396275, 0.024360592, -0.0112877125, -0.045554347, 0.020707559, 0.06269602, -0.032301433, 0.056276996, -0.013513029, 0.029835166, -0.041961856, 0.045550987, 0.008075818, -0.05979891, 0.002555596, 0.05009717, -0.09928821, 0.00021364244, 0.0035177916, -0.009135358, 0.0303066, 0.005452568, -0.0768974, 0.045521397, 0.02436375, -0.03342139, 0.061313134, -0.050386146, -0.014229612, 0.066124745, 0.008209436, -0.016428875, -0.045647144, -0.016566249, 0.009524976, -0.010902981, 0.042693365, -0.04610441, -0.016052525, 0.00029420838, -0.0010453691, 0.046309426, 0.036878463, 0.009195468, 0.021234397, 0.045652546, -0.028741444, -0.006067745, -0.030216724, 0.038335964, 0.0011666502, -0.01399341, 0.030735731, -0.024691382, 0.029191433, -0.079648696, -0.049826004, 0.029513407, 0.009992293, -0.0015677455, -0.029003887, -0.021774607, -0.03221617, 0.007207833, -0.012920634, 0.079683095, 0.06350202, 0.07120787, -0.025540678, -0.028088136, -0.043832906, -0.017669264, -0.040455878, 0.044595454, -0.006837693, -0.026615469, -0.01512621, -0.017438171, 0.007650386, -0.0144976, -0.00751579, 0.0057961275, 0.0018789044, 0.018632876, 0.056108125, 0.00049188087, 0.0093619535, 0.013603843, -0.032024786, 0.0036389893, 0.004192161, 0.031168558, 0.0052343765, 0.026757127, 0.00042599946, 0.061527852, 0.07102541, -0.050440475, 0.0025137416, -0.022052828, -0.04112168, -0.05922215, 0.05227714, -0.026098331, 0.015979923, 0.03639836, -0.030449029, -0.038525257, -0.009405491, 0.011082658, 0.021134749, -0.021571308, -0.09589829, -0.0033353397, -0.10496849, 0.03712343, -0.030605447, 0.04868477, -0.005047928, -0.018541139, 0.015521604, -0.027944734, -0.042565886, 0.016883202, 0.009208908, -0.028240133, 0.047654267, -0.04725671, -0.01271133, 0.011845935, -0.0015361633, -0.042272042, -0.007018417, -0.0051154085, -0.019240633, 0.009637964, -0.0021430631, -0.05978033, -0.081882715, 0.038452372, 0.047056206, 0.021235423, 0.03446205, 0.011829615, 0.014711206, -0.0005225662, -0.001193878, 0.013134129, -0.006049297, 0.035625804, 0.062057886, -0.04456004, 0.05511734, -0.050371666, 0.015929464, -0.033194657, 0.009421353, 0.0043708645, 0.027375957, 0.03817616, 0.06463745, -0.03201526, -0.0083939545, -0.035575267, 0.0011475523, -0.059055366, 0.0007680889, -0.04682695, -0.04516574, 0.036743734, 0.020048102, -0.011462024, -0.024335288, 0.04850462, -0.020673117, 0.0074316394, -0.05247055, -0.0300562, -0.029913858, 0.018091938, 0.0053708996, -0.011254942, -0.026897732, -0.0060240095, -0.006987797, -0.016752308, -0.0058526117, 0.056363516, 0.009076053, 0.032263838, 0.019350942, 0.054250658, 0.052856237, -0.039534647, -0.01786029, 0.030396434, -0.0035063077, 0.048408564, -0.04099045, -0.024083221, 0.054992322, 0.0012042916, 0.014439113, 0.07464353, 0.023438191, 0.03760274, 0.024871048, 0.026948944, -0.0075466144, -0.04030734, 0.011769599, 0.007769616, -0.011063897, 0.0026076266, -0.017241817, 0.0021350326, 0.013571887, -0.0034684849, -0.07088362, 0.000548555, 0.0491924, 0.016409779, -0.0033767736, -0.009089433, -0.05478634, 0.009065517, 0.0215302, 0.010133843, -0.025753608, -0.05194477, -0.04783145, 0.012533276, -0.034334872, 0.010034059, 0.07093059, -0.03196791, 0.007713944, 0.0014032491, -0.008307288, -0.044872623, 0.042754307, 0.006997031, -0.017628072, -0.02134274, 0.048626658, -0.0036633848, 0.008505889, 0.022626309, 0.014270043, -0.010666527, 0.031692196, 0.022448223, -0.018774064, 0.008666435, 0.011381089, 0.050184183, 0.011224507, 0.030959113, 0.0037337423, 0.033168264, -0.04378667, 0.051187243, -0.007076072, -0.00046512962, 0.029709738, 0.029266668, -0.01754667, -0.0026561606, 0.026068436, -0.009874353, 0.0010985471, 0.0012813191, 0.05858402, 0.0079336045, -0.027116576, 0.023450993, -0.011507607, 0.050412152, -6.0016922e-05, -0.018607197, 0.020264927, -0.034231003, -0.002329343, 0.010220621, -0.0035215744, 0.019689344, -0.01930277, -0.05002876, 0.007543986, 0.021754025, 0.014794825, 0.056187272, 0.056607638, -0.017593179, -0.0039598146, 0.03611635, -0.030960202, -0.041404035, -0.04356827, -0.0066851443, 0.044660743, -0.04124247, -0.0434475, 0.029902885, 0.014974471, 0.026450519, 0.017230019, -0.05535806, 0.010171052, -0.057280604, -0.0030737626, 0.06267224, 0.04419364, 0.005919997, -0.015091841, -0.051266644, 0.004936788, 0.011856469, 0.03634347, 0.008395929, -0.006238372, -0.017224787, -0.0055187973, 0.022868667, -0.008510859, 0.048181523, 0.00082043733, -0.0045580673, 0.03975575, -0.026337886, 0.008707933, 0.03783814, 0.024133772, 0.02664725, -0.05909209, 0.0017295998, -0.01150009, 0.0040516937, 0.030424876, 0.0032905214, 0.041832794, 0.0231596, 0.0077111647, -0.073764645, -0.07363655, 0.076051086, 0.018265612, -0.027222067, -0.018365975, 0.06387896, 0.013227349, 0.018546479, -0.049397085, 0.023534609, 0.00030279972, -0.025663095, 0.0024034055, 0.010860687, -0.03272884, -0.0032940044, -0.0017925022, 0.02727121, 0.001972173, -0.0730555, 0.07253279, -0.098593, 0.03018586, -0.0090747075, 0.004960825, -0.05229291, 0.008636495, 0.031386413, -0.05039856, -0.043339476, -0.017993553, -0.04138856, 0.06299739, 0.055444628, -0.0061870404, 0.031603627, 0.069469586, 0.039297912, 0.0116346935, -0.0011907873, 0.03990601, -0.02124691, 0.03806738, -0.025878225, 0.03377716, -0.00812424, 0.00066633016, 0.054328736, 0.039181747, 0.04976529, -0.016142866, 0.023762785, -0.018030943, 0.0038238096, 0.05230136, -0.016965957, -0.03482559, 0.031834822, -0.012343958, -0.025054285, -0.039525874, -0.02537713, -0.013120636, -0.0219353, 0.05503815, 0.031209536, -0.027087156, 0.027041467, 0.020739343, -0.066645995, 0.0029990985, 0.017391676, 0.05448997, -0.037615478, -0.040985484, 0.01915694, 0.00089669885, -0.021152215, -0.047593243, 0.0010842812, 0.020166645, -0.018502848, 0.009341859, 0.05179961, -0.0081719225, 0.029209005, -0.04160747, 0.05597302, -0.01910073, -0.030563591, -0.026553849, 0.04772702, -0.07084671, -0.020596446, 0.0008866548, -0.040743478, -0.015213523, 0.020601645, -0.0027297914, 0.06322149, -0.0136483, 0.006207262, -0.0054453323, 0.015786085, 0.028762799, -0.039247893, -0.018846964, -0.014273, 0.0083289435, 0.0027937563, -0.0046486706, -0.010868054, -0.017191537, 0.019445062, 0.008796051, -0.02972347, 0.05170891, 0.006843961, -0.038193423, -0.04411684, 0.022334123, -0.020077864, -0.092159376, -0.013414368, -0.0102550415, -0.021203827, 0.07018216, 0.008389007, 0.010601851, -0.07200213, -0.00768254, -0.030417122, 0.054701842, -0.024227446, -0.008005321, -0.044031277, -0.027525816, 0.04776044, -0.025139868, -0.007052168, 0.048445817, 0.00953995, -0.048527453, 0.01085753, -0.053760767, 0.041614696, -0.0056786635, 0.034315642, 0.03067803, -0.07256138, 0.04909127, 0.036806192, 0.056720823, -0.0021352177, 0.035391796, -0.012944453, 0.018068988, -0.036879607, -0.018308135, -0.04581795, -0.033150215, -0.024500985, -0.0054281233, 0.032252736, -0.021251338, 0.0017817157, -0.014611057, 0.051296186, 0.034370877, -0.03350377, 0.049102526, -0.03457032, 0.02388799, -0.009470885, -0.019108746, 0.024898568, 0.05356844, 0.040141724, 0.03757655, -0.008015167, 0.018372543, 0.03799295, -0.06876011, -0.037924316, 0.0150763, 0.008236454, -0.06463452, -0.050233506, 0.018214155, 0.024994927, -0.009994454, 0.03902076, -0.011944907, -0.005687761, 0.021583056, 0.032750398, -0.036638636, -0.0074763075, 0.028633911, 0.017592667, 0.07456049, -0.058330685, 0.03868792, -0.062326737, -0.03395468, -0.028134687, 0.037207957, -0.038199414, -0.020774813, 0.06204226, 0.024448337, 0.014464409, 0.035337716, -0.06619085, 0.032769646, -0.053049807, -0.014664537, 0.056804925, -0.0029559124, -0.0027920844, 0.02244636, 0.01888921, 0.08097186, 0.05806367, -0.010230824, 0.023049004, 0.008673439, -0.042311255, 0.06501765, 0.010749213, 0.018339453, -0.075048834, -0.002724942, -0.070995174, 0.100576974, -0.00947093, -0.023202244, 0.0036578637, 0.07274766, -0.027980765, 0.02231037, -0.00398658, 0.007298844, -0.049715824, -0.03754587, 0.019506399, -0.04068127, -0.010086409, 0.047558725, -0.023019694, -0.019339075, -0.021500155, -0.025723038, -0.006328735, -0.0011293715, -0.06303802, 0.029988367, 0.033994902, -0.035225462, 0.037794493, 0.009353615, 0.00827903, -0.049201887, -0.016987398, 0.025293926, 0.003001107, 0.021822056, -0.007753592, 0.038785573, -0.057978284, -0.01839156, 0.07758082, 0.0021666605 ] }, { "values": [ -0.0011643462, -0.021657104, -0.06207945, -0.05049658, 0.04907705, 0.033204153, -0.015514821, 0.050695304, 0.022521516, 0.043978687, 0.004005381, 0.0071984935, 0.012455491, -0.0046069776, -0.0786778, -0.051884256, 0.025330417, -0.007185245, -0.024205798, 0.014761704, 0.019430462, 0.033158224, -0.013074532, -0.10290428, -0.00917911, 0.066596664, 0.030595198, -0.058158692, -0.00887932, -0.05025267, -0.012998689, -0.013040408, -0.023571875, -0.0068734884, 0.058975186, 0.014259665, -0.03399235, 0.02234406, 0.017122801, -0.025783516, -0.068381414, -0.022724347, -0.04271266, 0.03590253, -0.09480399, 0.006909586, -0.007960287, 0.014044817, -0.016166989, 0.004951184, 0.02087509, -0.019713499, -0.023942137, 0.022674013, -0.006399109, -0.025299808, -0.040749144, -0.064796284, 0.107163735, -0.019820979, -0.02259743, -0.009748592, -0.03258041, -0.015879182, 0.022648688, -0.04291319, -0.037737902, -0.009097383, -0.06803189, -0.0007792684, -0.054774936, -0.05111813, -0.0016568678, -0.014018728, 0.0018598703, -0.03747931, 0.022585135, 0.028228624, -0.024038943, 0.04115501, 0.009450513, 0.0017045095, 0.015352861, 0.047764458, 0.006449849, -0.012557132, 0.028848832, -0.04700483, -0.06731026, 0.019429138, 0.118226394, 0.004215598, -0.05604285, 0.0065264087, 0.043855146, -0.05192591, -0.033048224, -0.040441353, -0.020958932, 0.06518329, -0.04334944, 0.0009387887, -0.041228116, -0.063328266, 0.026889509, 0.046199724, -0.0042461143, -0.054171205, 0.012520481, 0.03231493, -0.007837024, -0.004222976, -0.06174616, -0.009477939, 0.05059956, -0.023568084, 0.00041812513, -0.039313015, -0.012169527, -0.011911019, 0.007332685, -0.026413336, -0.013670085, 0.0641142, 0.023313103, -0.004343726, 0.038268127, -0.06821861, -0.021206139, -0.03310405, 0.07753803, -0.10471684, 0.011698337, -0.008311742, -0.028959205, -0.02827947, 0.03046768, 0.042672146, -0.025495637, 0.013415077, 0.018189732, -0.041237764, -0.048178554, 0.04056475, -0.00096321193, -0.022516772, -0.010314221, -0.021034583, -0.045160837, -0.005883611, -0.045603972, -0.033110064, 0.002233613, -0.013282289, -0.043356232, 0.024984183, 0.064900704, -0.06736091, 0.020088308, -0.018559437, 0.027805053, -0.061646845, 0.03778201, -0.03449486, -0.0038107617, 0.053901237, 0.052219298, -0.08405418, -0.0351158, -0.03478991, 0.009547225, -0.019656707, -0.038509246, -0.09866243, 0.0038221518, 0.025692787, -0.024833525, 0.028614007, -0.060035817, -0.02366764, 0.06425433, 0.026846988, -0.015322038, -0.03224753, -0.05788353, 0.009773447, 0.0112748835, 0.047825888, -0.020446213, 0.031257153, -0.0057287947, -0.011235203, 0.043863203, 0.040330596, 0.011108644, 0.03314949, 0.07221821, -0.052828684, -0.025960442, -0.018953139, 0.046222243, 0.052502118, -0.026344165, 0.05577891, -0.028669761, 0.026718332, -0.058976132, -0.033820856, 0.03762882, 0.006408481, 0.019790865, -0.00385057, -0.014413211, -0.027644468, 0.021212138, -0.025259558, 0.053577367, 0.037142534, 0.075236395, -0.05547113, -0.015381602, -0.020689428, -0.0051779263, -0.0018879592, 0.0469877, 0.017708661, -0.012417185, -0.021964094, 0.008723288, 0.01534964, -0.023778606, -0.002570556, -0.01587903, -0.018765159, 0.033709068, 0.07556426, 0.02392304, -0.00053175143, -0.013019314, -0.023194509, 0.029939724, 0.015893059, 0.057662796, -0.012508138, 0.0053894557, 0.044215802, 0.08746752, 0.07864855, -0.085350774, -0.010899809, -0.012652275, -0.03372928, -0.080382735, 0.020429503, -0.02830502, -0.00031947985, 0.026899552, -0.047870345, -0.0132882465, 0.0029390594, 0.047221508, -0.008835578, -0.02288653, -0.106241845, 0.0031680516, -0.06463608, 0.008573577, -0.01626712, 0.043116275, -0.003637956, -0.018800288, 0.0007965837, -0.046781395, -0.020570131, -0.010028221, 0.030254902, -0.009997747, 0.02799396, -0.06150872, -0.045278054, 0.038430348, -0.0071975985, -0.036563955, -0.016344156, -0.020256978, -0.009345987, 0.013000209, 0.031747717, -0.03737494, -0.056113627, 0.033172086, 0.048477564, 0.006908404, 0.0068273563, 0.033423785, -0.015020936, -0.0028127984, 0.00896659, -0.017751548, -0.025685798, 0.038968246, 0.058602627, -0.044835348, 0.026424937, -0.009950123, 0.01648992, -0.026608534, -0.034337755, 0.021988682, 0.019100048, 0.033690855, 0.04772966, -0.041471865, 0.005961373, -0.030812705, 0.0075038904, -0.09683529, 0.021125304, -0.040909875, -0.040342275, 0.014861503, 0.030299293, -0.0055585615, -0.053851306, 0.027420072, -0.03655315, 0.00090250326, -0.034770638, -0.0012750182, -0.011553575, -0.013086788, 0.007931595, 0.0068250885, 0.0019554736, -0.009687998, 0.017237803, -0.037867717, 0.008888223, 0.031991586, 0.020161724, 0.014569587, 0.022917645, 0.06939483, 0.056662578, 0.0012499309, -0.006653051, 0.02453918, 0.003690301, 0.051989734, -0.059738323, -0.033247046, 0.048783936, -0.0075695235, 0.01373492, 0.062157728, 0.0181342, 0.029996892, 0.034468904, -0.020491555, -0.0010702214, -0.05869266, -0.015905328, 0.006313591, -0.016425671, 0.035640404, 0.0077588293, 0.0039329026, 0.025725733, -0.030810082, -0.037781004, 0.010254323, 0.059399664, 0.0383808, 0.023985934, 0.005672626, -0.064895175, 0.0017775637, 0.022316394, 0.002708241, -0.014001683, -0.04994687, -0.040637255, 0.015080176, -0.020238835, 0.0033997246, 0.053347476, -0.048733015, 0.0042378753, 0.011800438, -0.0009155028, -0.046166115, 0.010593314, -0.02243569, -0.006114616, -0.012990101, 0.051331054, 0.017633181, 0.022737373, 0.013561774, -0.006741495, -0.01979074, -0.0036154813, 0.041055653, -0.024074685, 0.012480782, 0.023780067, 0.051241774, 0.026774207, 0.021642832, -0.025621952, 0.033369854, -0.03092337, 0.045441605, 0.00195358, -0.0010515385, 0.053617194, 0.043618303, -0.02992811, -0.0012026936, -0.00016600378, 0.0059503247, 0.0023202973, -0.027799362, 0.0681967, -0.018658865, -0.029344885, 0.006784692, 0.0013268666, 0.04723716, 0.009910168, -0.010208596, 0.023083476, -0.036136005, -0.004944829, -0.055409387, -0.004445322, 0.005643997, 0.0009063215, -0.02036147, -0.011045267, 0.0068536364, 0.0037377821, 0.0717915, 0.058089904, -0.02334745, -0.013847205, 0.047673028, -0.05370692, -0.034727506, -0.055740952, -0.019524157, 0.006336848, -0.01783095, -0.033504233, 0.0330102, 0.003513584, 0.049171, 0.004122275, -0.03746816, 0.04573714, -0.068726346, 0.0065928022, 0.055051565, 0.06438127, -0.0003677942, 0.011619205, -0.051098276, 0.023011852, -0.007949933, 0.037465304, 0.013939042, -0.0107030785, -0.011925021, 0.0018354019, 0.014207979, -0.001162074, 0.0022299392, 0.010123696, -0.010924071, 0.041295163, -0.03843636, 0.006684339, 0.008912948, 0.025377534, 0.03743332, -0.04024066, -0.018690161, 0.012213987, 0.0016294541, 0.05765289, 0.027817225, 0.057887107, 0.030094722, 0.040224556, -0.0375194, -0.049763557, 0.07029187, -0.01213735, -0.029609686, -0.018575612, 0.09507732, 0.00569525, 0.024637455, -0.024390755, 0.008374088, 0.024740022, -0.048751526, -0.010696858, 0.012508941, -0.017184202, 0.018467352, 0.00329181, 0.047267426, 0.03550765, -0.044948824, 0.053722896, -0.093215995, 0.012875557, -0.009724852, 0.037949614, -0.02133313, 0.02984338, 0.039605234, -0.036325432, -0.032669056, 0.0024839705, -0.05706678, 0.046019047, 0.07630681, -0.022533147, -0.007091205, 0.07668454, 0.041863587, 0.032015365, 0.009057517, 0.023843493, -0.010636636, 0.032777835, -0.02047994, 0.028188564, -0.014460131, 0.03703028, 0.038601596, 0.007979534, 0.06479792, -0.042007025, 0.037419762, -0.028290384, -0.012961972, 0.055633307, -0.017441161, -0.02184912, 0.037373304, 0.022855386, -0.009473857, -0.036654342, -0.0039864825, -0.0018290237, -0.04219484, 0.037255775, 0.072962865, 0.0041525555, 0.021183796, 0.03137496, -0.022980906, -0.008849467, -0.0029072037, 0.022623526, -0.011272113, -0.055782795, 0.006719565, 0.016159005, -0.0050172154, -0.013060271, 0.028911335, -0.0199162, -0.012241382, 0.010670869, 0.048847694, -0.011609924, 0.031243162, -0.054292623, 0.03704834, -0.035884663, -0.04676422, -0.026372705, 0.05784299, -0.081295185, -0.0134820165, 0.010811923, -0.0281555, -0.037699997, -0.0032070419, -0.0067818523, 0.049572453, -0.03063366, 0.0015727574, 0.027692439, 0.01886849, 0.05873415, -0.039259683, -0.002409316, -0.036492273, 0.012418102, -0.020944612, -0.016427534, -0.03078106, -0.026577858, -0.016926441, 0.033366002, -0.032685332, 0.03238518, -0.0026235287, -0.009909356, -0.023856277, 0.05124273, -0.052374035, -0.036453024, -0.01331409, -0.014547939, -0.06632015, 0.065296285, -0.013787153, -3.732968e-05, -0.075412095, 0.036972437, -0.024651129, 0.084418476, -0.015229083, -0.0077062626, -0.03387796, 0.0068767346, 0.049557988, -0.015044668, -0.022114612, 0.042466126, 0.014904576, -0.039547034, -0.001087344, -0.07310221, 0.045012984, -0.021462804, 0.053716574, 0.024456574, -0.08961094, 0.06383594, 0.009429216, 0.029962584, 0.015523332, 0.05309712, -0.009830785, 0.043394033, -0.043319695, -0.039184116, -0.021600386, -0.049971126, -0.024243157, -0.018632488, 0.025713116, -0.004331753, -0.0042538005, -0.025439577, 0.037876684, 0.022540485, -0.026149232, 0.054416012, -0.015254648, 0.012954301, -0.01298972, -0.026626984, 0.014511108, 0.013154786, -0.0025400727, 0.023008442, 0.00077135273, 0.015302144, 0.023284556, -0.030517684, -0.04693136, 0.03279302, -0.002779709, -0.078859724, -0.008549999, 0.013577237, -0.00020530552, 0.017854948, 0.0432969, -0.027019307, 0.040327758, 0.042858344, -0.013711465, -0.050670788, 0.0129974345, 0.016925337, 0.009174915, 0.0339865, -0.052052587, 0.051784817, -0.033864897, -0.0025138662, -0.047073033, 0.024777386, -0.029392058, -0.05326497, 0.068704575, 0.038114887, 0.022004804, 0.004586203, -0.054358043, 0.0350138, -0.048640646, -0.014069243, 0.06607479, 0.00075205165, 0.0153709445, 0.033040155, 0.033414852, 0.06145287, 0.03681065, -0.05071218, 0.008204958, -0.014004292, -0.037578795, 0.06667346, 0.020833142, 0.039975088, -0.06169314, -0.00090801355, -0.064984195, 0.11093778, 0.041812643, -0.016083792, 0.006384509, 0.05206188, -0.0061877742, 0.003545768, -0.01216872, 0.015741335, -0.03546756, -0.06838853, 0.018830514, -0.05708854, -0.024699742, 0.005094082, -0.036030397, 0.008750256, -0.0172445, -0.0321914, 0.012100483, -0.009045917, -0.044171426, -0.014431737, 0.04824322, -0.003668753, 0.007980952, 0.0007248709, 0.032209385, -0.048099622, 0.0011247506, 0.034505017, -0.003059394, 0.004668938, 0.0029135428, 0.016280988, -0.075739615, -0.009427771, 0.052079026, -0.0037478555 ] }, { "values": [ 0.0021897026, -0.038462956, -0.042143647, -0.029179366, 0.03156635, 0.0047206073, 0.0017498729, 0.004756395, 0.004052672, 0.036954265, 0.00536376, 0.015692344, 0.02342113, -0.02050257, -0.09448945, -0.020969713, 0.035114426, 0.02629499, -0.06332263, -0.011145723, 0.0033462832, 0.032199074, -0.017894818, -0.07889333, 0.016197111, 0.06741682, 0.017127147, -0.055985495, -0.027188905, -0.03097023, -0.0069840983, -0.0023723526, -0.02770321, -0.029408578, 0.08871174, 0.0095228935, -0.05345535, 0.02213394, 0.0324895, -0.015933651, -0.06834533, -0.009493625, -0.039586358, 0.030022116, -0.070079416, 0.02863445, 0.01880576, 0.035795014, 0.0022758024, 0.01406255, 0.045434903, -0.030625721, 0.0021613738, 0.013560657, 0.008647466, -0.02309776, -0.05879236, -0.07573402, 0.09788693, -0.031950302, -0.029009614, -0.02954461, -0.017080327, -0.013595087, 0.0472968, -0.009737385, -0.031096434, -0.012350594, -0.02331247, -0.0059486646, -0.0050608306, -0.051121116, 0.012966234, -0.017179795, -0.010016333, -0.01980936, -0.021808494, 0.037149474, -0.04608783, 0.05485942, -0.013094559, 0.014974693, 0.039793395, 0.038830206, 0.0066699, -0.028489467, 0.0071344473, -0.07357008, -0.033825293, -0.000544565, 0.11057402, 0.015681036, -0.04734548, 0.0119420355, 0.03259214, -0.057566285, -0.041470654, -0.038899552, -0.01640197, 0.09318727, -0.012460071, -0.018109776, -0.041337803, -0.07991768, 0.065714136, 0.011104938, -0.0128191225, -0.04712427, -0.007846349, 0.07331259, -0.028816253, -0.024685161, -0.043111205, -0.006844221, 0.030585267, -0.008407786, -0.022861643, -0.046362814, -0.005557217, -0.013368587, 0.01587457, -0.0145216165, -0.05901265, 0.052874133, 0.021279376, -0.0072918846, 0.0017113633, -0.062996805, 0.01294256, -0.05763507, 0.08441148, -0.118465856, -0.005660292, -0.005198527, -0.034160476, -0.031896017, 0.02787216, 0.039504502, 0.022905163, 0.04102766, -0.015715724, -0.033163335, -0.013143708, 0.0195088, -0.016628765, -0.005535575, -0.01880915, 0.0057215, -0.044065997, -0.006304875, -0.042676173, -0.025828468, -0.008658135, -0.0041751196, -0.034714807, 0.035691917, 0.06687468, -0.050250128, 0.019359617, -0.020317253, 0.06475537, -0.048070017, 0.03370352, -0.01803666, -0.02468427, -0.0009726298, 0.020498605, -0.100150466, -0.02141764, -0.01636885, 0.038723547, 0.026880298, -0.009283554, -0.08887459, 0.05576778, 0.039027467, -0.0064049074, 0.038599648, -0.008976942, 0.0072955196, 0.060681436, -0.0016201714, -0.028375838, -0.027147358, -0.028402368, -0.024745159, -0.02874923, 0.06873497, -0.004332026, 0.014698059, -0.00641587, -0.008064994, 0.0146347955, 0.0351207, 0.029100481, 0.0005309918, 0.03890707, -0.038440753, 0.017967975, -0.02121069, 0.07512344, 0.022149682, -0.0015170743, 0.031166427, -0.029731566, 0.012734913, -0.05011641, -0.020987533, 0.040308025, 0.020777855, -0.0048099696, -0.043529753, 0.003019074, -0.035619196, -0.015775414, 0.015682912, 0.028983619, 0.04248297, 0.038129095, -0.041679583, 0.00018230207, -0.04478901, -0.0015049245, 0.008674944, 0.061689954, -0.0043463097, -0.033297062, -0.04735206, -0.009144973, 0.045005046, -0.03518314, -0.0019828514, 0.0017850902, 0.0066599473, 0.023821585, 0.07614591, 0.02681278, 0.015408012, -0.0077415635, -0.029004382, 0.00012262858, 0.015146054, 0.0697595, -0.0056594443, 0.03933348, 0.03675701, 0.056686677, 0.07710564, -0.07113171, -0.0035532143, -0.027687594, -0.036218558, -0.0949731, 0.042821206, -0.018775314, -0.023503616, 0.044388983, -0.057362698, -0.009251802, -0.014221371, 0.048165996, 0.012873905, -0.01889037, -0.09510897, -0.004389088, -0.06329946, 0.0051324763, -0.01841833, 0.07064057, 0.009276912, 0.00039900868, 0.025389494, -0.014215797, -0.034798272, 0.0016422197, 0.025827186, -0.0082777245, 0.015177332, -0.060306277, -0.025191622, 0.04358838, -0.016279006, -0.021987246, -0.020279074, 0.011718872, 0.007977606, 0.025443427, 0.027433135, -0.06055317, -0.06360581, 0.066542745, 0.047852494, 0.015399403, 0.015881144, 0.01669481, 0.008657453, -0.0013590712, -0.0064337286, 0.0014678066, -0.029190933, 0.034601986, 0.057852954, -0.007437596, 0.001589978, -0.0010762108, 0.02302473, -0.039028168, -0.029129107, 0.03054741, 0.047754757, 0.004779144, 0.05188485, -0.023025764, -0.0038243001, -0.0014777858, 0.03071074, -0.09460751, 0.010043606, -0.06201378, -0.02249301, 0.03334901, 0.035211388, -0.0055668205, -0.01885593, 0.012796362, -0.035516225, 0.0084456, -0.044714063, -0.012144445, -0.019054381, 0.0018098281, 0.009494772, -0.0034204277, -0.008820907, -0.025074285, 0.010535368, -0.007220996, 0.0063097123, 0.040629875, 0.009926644, 0.008118646, -0.014654947, 0.049324524, 0.04173927, -0.017293528, -0.038599323, 0.03532975, 0.0033994617, 0.055925157, -0.039416425, -0.0464475, 0.059785184, 0.018887874, 0.013743579, 0.060895566, 0.024933945, 0.037311297, 0.022911433, 0.02218911, -0.020161785, -0.043112405, 0.031694114, 0.017487792, -0.00870532, 0.021225128, -0.019204058, 0.023979105, 0.0137468865, -0.022748416, -0.055730563, 0.0069467123, 0.06507625, 0.022031983, -0.002585231, -0.019249171, -0.09028074, -0.00084579684, 0.015382471, 0.0039539826, -0.040344633, -0.057241067, -0.034646813, 0.049990583, -0.01838674, 0.006120759, 0.049560256, -0.037459612, -0.006301021, 0.026061075, -0.007043224, -0.03630479, 0.03933371, -0.016389405, -0.009085176, -0.025728732, 0.033433646, -0.023867445, 0.017661514, 0.02939958, -0.01232506, -0.0404152, -0.0036228946, 0.04818267, -0.010139261, 0.014207327, 0.024440574, 0.06745408, 0.00062847283, 0.034145974, -0.029989269, 0.047108255, -0.02175843, 0.031582993, -0.002746512, -0.014834197, 0.017184708, 0.009751162, -0.013341484, 0.006155318, 0.0020444824, 0.008046676, 0.0062696445, -0.015107441, 0.050035693, -0.024098061, -0.059363957, 0.0046584383, 0.00016263925, 0.04920235, -0.021581555, -0.033489823, 0.03383333, -0.053671025, 0.0053658355, -0.062246922, -0.0090151075, -0.0022280281, -0.00084677973, -0.02001407, -0.023276353, 0.0014784966, 0.012224633, 0.062368974, 0.044534996, -0.005984723, -0.0046401885, 0.0575082, -0.035491362, -0.052521754, -0.04521177, 0.0240633, 0.02514192, -0.03910916, -0.035730477, 0.01716829, -0.020453684, 0.06384309, -0.0028314143, -0.059106916, 0.021306625, -0.04413258, 0.009016857, 0.06402332, 0.053071655, 0.012897453, 0.008573186, -0.032861177, 0.019780314, 0.0030352552, 0.035233535, 0.010056895, -0.009009213, 0.0027804032, 0.0030417242, 0.029377433, -0.015996952, 0.013399627, -0.02431135, 0.012838342, 0.042804044, -0.061015062, 0.03692702, 0.031413097, 0.043885596, 0.050640404, -0.05293054, 0.003869822, -0.015305888, 0.0057057254, 0.0053650234, 0.0007835777, 0.068009816, 0.008700148, 0.015616973, -0.047387835, -0.039022535, 0.06201506, 0.021585677, -0.0024500585, -0.03187796, 0.06320356, -0.011384546, 0.028439017, -0.014989602, 0.0008232702, -0.007971756, -0.028292118, -0.016529342, 0.025872067, -0.005638642, 0.00077658315, 0.01125759, 0.039433017, 0.01703843, -0.07086261, 0.07572539, -0.06485962, 0.0002593564, -0.021279441, 0.02262749, -0.047491807, 0.01680289, 0.06524058, -0.050718296, -0.03529427, -0.0062178667, -0.072806664, 0.032846898, 0.051396593, -0.012553508, -0.0085923895, 0.0532572, 0.014870784, 0.030380946, 0.00018056575, 0.028506577, -0.010913816, 0.03168142, -0.030931732, 0.042542413, 0.013776522, 0.007564217, 0.03559018, 0.0067364075, 0.063484825, -0.031645034, 0.051780965, -0.014105192, -0.02634991, 0.04839171, -0.026295654, -0.040416773, 0.039286308, 0.03296188, -0.017316105, -0.032158017, -0.024396032, -0.023147095, -0.04123573, 0.0650395, 0.021324622, -0.018272273, 0.021204667, 0.054418664, -0.025142081, -0.003014469, 0.020074721, 0.041488197, -0.048626147, -0.059525266, -0.0015145605, 0.00089062186, 3.1389097e-06, -0.015096077, 0.002287199, -0.002649894, -0.0008310606, 0.019718891, 0.039396424, -0.019812124, 0.042813864, -0.039264742, 0.075960025, -0.06393972, -0.06637434, -0.0035044502, 0.04177001, -0.099053435, -0.039034195, -0.0030287935, -0.02524593, -0.013390651, -0.01908242, -0.00802768, 0.040443186, -0.004239285, 0.009520356, -0.011101953, -0.015395645, 0.029409776, -0.014395995, -0.018808255, -0.021966828, 0.0053954674, -0.016744671, -0.018556403, -0.011149039, -0.016673418, 0.054504454, 0.029289119, 0.006108686, 0.0536214, 0.031297434, -0.033272907, -0.04433118, 0.04188154, -0.015116058, -0.069357984, -0.010515418, -0.048367508, -0.033601437, 0.089804314, 0.0036014693, -0.0013585705, -0.050845798, -0.0032860432, -0.02007276, 0.06131146, -0.013988354, -0.0039518517, -0.00815623, -0.013877277, 0.06823152, -0.027951477, -0.0049289353, 0.057754934, 0.023691704, -0.015587556, 0.021940561, -0.07321821, 0.05184228, 0.011840625, 0.027505223, 0.027888736, -0.08350553, 0.063845895, 0.011474036, 0.02219856, 0.012861064, 0.021677999, -0.037618633, -0.00018151422, -0.045072027, -0.046231676, -0.028146867, -0.03288099, 0.015076294, -0.0069441465, 0.01767448, -0.009636053, -0.016376955, -0.017785119, 0.03506054, 0.03360548, -0.015434841, 0.02871651, -0.00983022, 0.023072138, -0.022548534, -0.04119275, 0.02488239, 0.039239295, 0.013383591, 0.039418727, -0.050972443, 0.0118591525, 0.047555596, -0.008524939, -0.028217902, 0.0229306, 0.008637961, -0.05993713, -0.01778482, 0.00043665516, 0.0059588104, 0.008436633, 0.049056947, -0.023435043, 0.024164846, 0.011030306, 0.01022442, -0.030226333, -0.010261575, 0.024181742, -0.0069946144, 0.049036782, -0.037824225, 0.056158017, -0.06145493, -0.024825431, -0.027413482, 0.039319526, -0.04806096, -0.017107181, 0.04743402, 0.062227838, 0.00074439513, 0.01512574, -0.07067562, 0.03517647, -0.03808309, -0.04139175, 0.07084416, -0.020426804, 0.023510873, 0.05174864, 0.028401133, 0.06167151, 0.06002295, -0.0031111634, 0.009143153, -0.015609751, -0.011486481, 0.04721646, -0.006327273, 0.035420172, -0.08267526, -0.021539459, -0.06749087, 0.1092272, 0.031011734, -0.03384165, -0.005326605, 0.065075, -0.017011933, -0.011702581, -0.043926153, 0.023069663, -0.041079435, -0.056923985, 0.011509527, -0.04112961, -0.03558925, 0.021841794, -0.029315576, -0.008243701, -0.013263606, -0.015301696, 0.0074341297, 0.00183979, -0.06990704, 0.026001528, 0.040158685, -0.013867168, 0.0059895637, 0.00040436367, 0.024802813, -0.04108765, 0.0013614483, 0.042822435, -0.008134262, 0.014699475, -0.007820832, 0.02789199, -0.031473264, 0.015590321, 0.10424006, -0.007959983 ] }, { "values": [ 0.018368546, -0.046906278, -0.041939065, -0.010541646, 0.034313105, 0.036773354, -0.019192008, 0.017901737, 0.03604299, 0.04831683, 0.0035230576, 0.0057698903, 0.0026485068, -0.012271042, -0.08115734, -0.041037735, 0.022033775, -0.005970182, -0.056493312, -0.036495823, 0.031487808, 0.02756232, -0.00465917, -0.07795849, -0.01706202, 0.064650334, 0.04550612, -0.048176933, -0.028402826, -0.054809336, -0.013250765, -0.0072965603, -0.016319428, -0.039523847, 0.031458307, 0.0455062, -0.0650451, 0.02297925, 0.030975334, -0.022627661, -0.08483699, 0.0037566132, -0.037012752, 0.040099762, -0.06708802, 0.0090977345, 0.022258373, 0.036936127, -0.012154123, 0.004867598, 0.010104727, -0.040391415, -0.0043779262, 0.031959336, -0.005818151, -0.033538565, -0.06936947, -0.009872438, 0.092378266, -0.048839454, -0.016551733, 0.013126167, -0.026634743, -0.0056278496, 0.025011098, -0.028612563, -0.036444247, 0.009994561, -0.035911486, 0.022577863, -0.033075374, -0.04254081, -0.01464962, 0.0008381985, -0.0013457803, -0.012242828, -0.007292901, 0.021482378, -0.033351775, 0.0694976, 0.01655742, 0.0112684835, 0.021410517, 0.034627043, 0.00961882, -0.03232595, 0.04279072, -0.07237379, -0.0412493, 0.018072221, 0.094498225, 0.027046371, -0.0815086, 0.004495457, 0.007210175, -0.009415845, -0.04119961, -0.05319265, -0.0145764, 0.05343576, -0.019473262, -0.023898914, -0.029880365, -0.08296501, 0.025724288, 0.0003311378, -0.020165436, -0.051753353, -0.032036453, 0.043260578, -0.021103762, -0.011743751, -0.027785722, -0.0009088467, 0.012232451, -0.0056399377, -0.04084333, -0.04798623, -0.01651878, -0.014558459, 0.00456767, -0.010266795, -0.04376981, 0.05749564, 0.04604204, -0.00038780272, -0.0011126591, -0.042869505, -0.026763743, -0.043625318, 0.11962077, -0.10570603, 0.0154727325, -0.033577096, -0.0192165, -0.029330367, 0.066618286, 0.037222452, 0.028155494, 0.027371956, -0.014902564, -0.023722768, -0.05667647, 0.03895334, -0.0039393236, -0.010629071, -0.030795561, 0.008678591, -0.044328444, 0.024811555, -0.022117322, -0.05019816, -0.004488879, -0.0034469967, -0.06276595, 0.049784474, 0.047403354, -0.054704323, 0.030295506, -0.013433532, 0.058058582, -0.04278724, 0.00822754, -0.013287143, -0.014395695, 0.023561794, 0.027549889, -0.09754703, -0.044933278, -0.0044927737, 0.010031788, 0.009637337, -0.042935256, -0.085401356, 0.027788049, 0.0023033854, -0.006280638, -0.0024221037, -0.04044879, -0.02218536, 0.05854488, 0.044740822, -0.02871774, -0.029094186, -0.037129387, -0.019966783, -0.019510234, 0.056141976, -0.0046216208, 0.025643464, -0.0071927616, -0.011459122, 0.00652345, 0.06952966, 0.020008182, 0.021378145, 0.0263904, -0.015627839, -0.014628103, -0.010770844, 0.03877629, 0.032983247, -0.025630996, 0.07055043, -0.033265, 0.053045228, -0.0499041, -0.03333607, 0.013085327, 0.0050507863, 0.007873861, -0.041210532, 0.02166324, -0.05686038, -0.009761529, 0.00024557978, 0.05065772, 0.03691906, 0.054933872, -0.02747656, -0.03542215, -0.050036486, -0.012978546, 0.014205211, 0.043635327, -9.054535e-06, -0.02485735, -0.035052154, -0.01721838, 0.027130501, 0.0053119976, 0.0075529856, 0.006650914, 0.010698193, 0.021130754, 0.07058655, -0.008866641, 0.011644275, -0.00409604, -0.017436644, 0.011499548, 0.0013282137, 0.060637005, 0.008466686, -0.0002456352, 0.055798054, 0.080899596, 0.08487353, -0.042561904, -0.021349216, -0.03178142, -0.022178845, -0.10840559, 0.02415517, -0.025618566, -0.019023871, 0.04066608, -0.04444673, -0.0056914617, -0.013990086, 0.058145903, -0.00209538, -0.029697908, -0.072350904, 0.014092601, -0.055266306, -0.0078019877, -0.029654268, 0.06650307, 0.008273113, 0.0037859206, -0.01722136, -0.04118981, -0.03235103, -0.01763497, 0.035593405, -0.013183584, 0.0014677303, -0.034919363, -0.03433617, 0.028239315, -0.012052974, -0.01971953, -0.032321926, -0.0091492105, 0.0016412857, 0.023772089, 0.017520022, -0.051220156, -0.047282625, 0.041132957, 0.060453497, 0.007595865, -0.003144393, 0.0012647705, 0.0133712385, 0.000631226, -0.004660547, -0.036174912, -0.013610169, 0.03876262, 0.082417265, -0.037901726, 0.000204524, -0.014583324, 0.008754756, -0.024543867, -0.027377367, 0.037572727, 0.0135542145, 0.01953618, 0.043574344, -0.026187852, 6.6526314e-07, -0.025254223, 0.0118226595, -0.1099938, -0.010907908, -0.06397005, 0.012065068, 0.03761785, 0.013103809, 0.021499036, -0.031218298, 0.055036236, -0.024016479, 0.025648627, -0.029505385, -0.010814527, -0.024403732, 0.020743368, 0.0389701, 0.04404872, 0.0067326636, -0.0093949875, -0.0027920057, -0.008850478, -0.0061840652, 0.06445877, 0.017229235, 0.019478299, -0.009329591, 0.06454738, 0.07078321, -0.016076565, -0.05194984, 0.03515708, 0.004412682, 0.048009973, -0.06850219, -0.05065347, 0.0654133, 0.014200976, 0.021586021, 0.060619567, -0.010929382, 0.016727958, 0.004782725, 0.0037371935, -0.009781391, -0.020199079, 0.014781627, -0.0021721446, -0.012068987, 0.04506641, -0.00033611173, 0.018382799, 0.025749484, -0.020007603, -0.07457921, 0.02948319, 0.046847425, 0.021131165, 0.0038483734, -0.025304068, -0.06470868, 0.0013142364, 0.023046756, 0.013205442, -0.06013195, -0.025756594, -0.04080434, 0.032183457, -0.011772351, 0.000625519, 0.050298396, -0.034801986, 0.029604487, 0.008658851, -0.009774571, -0.050360017, 0.033920873, 0.008521341, -0.008196815, -0.03650106, 0.030612636, -0.018754313, 0.026945133, 0.035295516, -0.011757769, -0.024745632, -0.012396722, 0.03656155, -0.025300045, 0.014100672, 0.02754708, 0.057129268, -0.0038520976, 0.03712268, -0.029383244, 0.03703634, -0.011067745, 0.011724443, -0.018379379, -0.017211678, 0.0013347855, 0.035137977, -0.029244943, 0.015689569, -0.014886943, 0.015846008, 0.015120117, 0.011076443, 0.02772541, -0.029120049, -0.047341436, -0.0041601295, 0.005387871, 0.047266606, 0.0094356965, -0.033976123, 0.015481115, -0.047667988, 0.0035809984, -0.044252705, 0.026542988, -0.013767922, 0.02270028, -0.016604304, -0.012326547, 0.020226216, 0.0074771447, 0.04926251, 0.03050054, -0.015603913, -0.01566599, 0.041308366, -0.038987096, -0.05493194, -0.049539607, -0.0044214716, -0.020598132, -0.036382142, -0.022659477, 0.020733953, -0.01509708, 0.046307255, 0.0022624782, -0.08388736, 0.039077837, -0.08968364, 0.009817953, 0.053223465, 0.07137059, 0.019018479, -0.011057843, -0.07929329, 0.014991022, 0.010426895, 0.07356509, -0.020066055, -0.01873365, 0.01796372, -0.0181012, 0.026345266, 0.019034779, 0.014548778, 0.015211405, 0.026395079, 0.032289878, -0.04372325, 0.018158687, 0.037429404, 0.030776234, 0.060689457, -0.04136847, 0.015575195, 0.0044729956, 0.00032981488, 0.029938947, 0.016192323, 0.075405344, 0.031024495, 0.02973402, -0.025177853, -0.055796325, 0.036050946, -0.0070750643, 0.010989213, -0.007580648, 0.058768686, -0.030773843, 0.019441782, -0.040915046, 0.021608517, 0.0012054687, -0.06456978, -0.01998719, 0.013753512, -0.0182608, 0.021464566, 0.015395199, 0.041940022, 0.044556495, -0.053837072, 0.05213675, -0.08799828, -0.027026637, 0.0149163855, 0.04260175, -0.0012188855, 0.03732827, 0.061323687, -0.057229634, -0.044765297, -0.026618283, -0.038646977, 0.051602975, 0.08737117, 0.005206673, 0.009549877, 0.05577683, 0.013567584, 0.02850967, 0.00013319642, 0.017073642, -0.0027588347, 0.043354202, -0.03867809, 0.011121021, 0.016923469, 0.03853165, 0.037658017, -0.009556714, 0.075781286, -0.02925335, 0.052236944, -0.011885548, -0.024403088, 0.039279737, 0.0010996471, -0.052711442, 0.03903518, 0.00467504, -0.010680378, -0.040710177, -0.026379962, -0.024943065, -0.06330068, 0.064325094, 0.024792586, -0.011293228, 0.030779049, 0.024658337, -0.051354323, -0.022244522, 0.0066192006, 0.036486037, -0.032971352, -0.06081165, 0.00985904, 0.017354287, -0.03080389, -0.016720213, 0.022559535, -0.0076990295, -0.010014131, -0.016710151, 0.052001275, -0.015327836, 0.024797592, -0.04251692, 0.05346948, -0.048995186, -0.06374246, -0.0033664056, 0.02703246, -0.091587074, -0.025463384, -0.0015634181, -0.012065335, 0.015017658, -0.032646306, 0.0106638195, 0.024588607, -0.005605182, 0.026240464, 0.0034716737, 0.0022717784, 0.03544808, -0.0033693607, -0.002430764, 0.0030542014, 0.02085483, -0.016732894, -0.0288355, -0.009598855, -0.029842833, 0.025139742, -0.0029891639, -0.0014041383, 0.03252953, 0.032019876, -0.035685487, -0.045129076, 0.03946033, -0.03091864, -0.05291215, 0.023374803, -0.024027532, -0.027061401, 0.06533499, -0.025818802, 0.0071861367, -0.07224708, 0.02794656, -0.016884208, 0.06985966, -0.011857411, 0.0020828699, -0.029463897, -0.010766106, 0.051280353, -0.036470514, 0.0054764072, 0.046916436, 0.008160256, -0.04317288, 0.013311422, -0.06300378, 0.06992897, -0.009919387, 0.04612492, -0.00034260162, -0.0884189, 0.057708163, 0.01713359, 0.024210604, 0.017451882, 0.054720506, 0.008891502, 0.03170872, -0.04534271, -0.0530673, -0.031413157, -0.045928657, 0.0052521033, -0.014190583, 0.030477777, 0.002948238, -0.016556153, -0.005612548, 0.030013245, 0.032253217, -0.012892058, 0.042054735, -0.01118147, 0.008637942, -0.019335043, -0.033747483, 0.029857168, 0.036339577, 0.02068797, 0.030072024, -0.029531738, 0.021427907, 0.03451705, -0.04011998, -0.032126978, 0.021198414, 0.018910749, -0.06800551, -0.014729611, 0.0045649875, -0.0030433119, -0.0011270953, 0.020524504, -0.039389674, 0.036512103, 0.013289818, 0.009538724, -0.053905204, 0.039823495, 0.014627299, 0.017934322, 0.031477224, -0.058388405, 0.014228952, -0.054058276, -0.007392831, -0.05692011, -0.0009802958, -0.04083912, -0.056944087, 0.05217171, 0.060418688, 0.0266396, 0.05001887, -0.054234024, 0.016704744, -0.039863165, -0.0038234608, 0.07403746, -0.022273453, 0.028225694, 0.04634964, 0.028396478, 0.04537994, 0.03406651, -0.024863744, 0.006335673, -0.018953884, -0.030964505, 0.058915425, -0.0027846908, -0.0105570145, -0.06939736, -0.0033452406, -0.0693247, 0.1056192, 0.03611213, -0.026451362, 0.033291005, 0.048579242, -0.0015688224, 0.005716245, 0.0030004864, 0.026828099, -0.03973158, -0.03246901, 0.013942817, -0.034914058, -0.005794266, 0.0064491266, -0.011878219, 0.009986063, -0.026075428, 0.007622332, 0.0054674614, -0.021843372, -0.06001062, 0.01780929, 0.042598955, -0.016618676, 0.033527076, 0.0007682254, 0.015248907, -0.06475292, 0.012988197, 0.044601995, -0.030284144, 0.026112594, -0.013905819, 0.021051086, -0.066653125, -0.0051318402, 0.051396977, -0.017593704 ] }, { "values": [ -0.0022038738, -0.03720397, -0.0688342, -0.0511848, 0.040634774, 0.007194994, -0.026272502, 0.012405982, 0.024620077, 0.049525633, -0.009986398, 0.022370322, 0.014405415, 0.0009179583, -0.09259161, -0.037452154, 0.022852547, 0.012135286, -0.07056355, -0.07082731, 0.004670073, 0.031939786, -0.008876211, -0.064427316, -0.0329812, 0.08324058, 0.033234343, -0.05396121, -0.023658931, -0.030199457, -0.0210883, -0.0069854367, -0.00848504, -0.018939685, 0.055714656, -0.00092136406, -0.050618656, 0.031347506, 0.019133076, -0.043130778, -0.06337052, 0.026525557, -0.015488578, 0.029077463, -0.059189867, 0.003735154, 0.010935282, -0.0017235253, -0.027840743, 0.011336389, 0.0072292476, -0.038394276, -0.0069913543, 0.0003895338, -0.029569441, -0.024477847, -0.040333148, -0.02517243, 0.100502364, -0.0761298, -0.03150211, 0.002239311, -0.0016794759, -0.0023505092, 0.04506513, -0.02172568, -0.027893912, 0.0009535814, -0.013387338, -0.0130371945, -0.023743708, -0.038103238, -0.006128681, -0.02660617, -0.010786103, -0.008155497, -0.0174207, 0.0266826, -0.023279652, 0.051453765, -0.016816923, -0.024430877, 0.07015904, 0.029111626, 0.00022607269, -0.020282727, 0.0076250127, -0.06111025, -0.027450634, 0.038269974, 0.10567838, 0.0014292334, -0.050128166, -0.0033433784, -0.012992333, -0.015096863, -0.054989472, -0.041694935, -0.011449757, 0.08560714, -0.015009578, -0.025719587, -0.043873556, -0.07600323, 0.026589833, -0.0077843936, 0.0039957957, -0.06916278, -0.036788125, 0.060008243, -0.0023956525, -0.033383235, -0.052390248, 0.00413679, 0.049458914, 0.02572849, -0.038810913, -0.016265493, -0.004388637, 0.02454858, 0.028223213, -0.008682715, -0.027570782, 0.062289927, 0.025196314, -0.009721667, 0.005241536, -0.05578345, -0.024182629, -0.056830764, 0.11024491, -0.08014487, -0.005522545, -0.027537962, -0.011481038, -0.05026856, 0.006563581, 0.039755385, 0.028301232, 0.027411373, -0.009089083, -0.03808371, -0.020864848, 0.017044133, -0.029990425, -0.024493366, -0.018022042, 0.019080848, -0.04142646, 0.028438743, -0.06433315, -0.040938858, 0.015614183, -0.024103327, -0.055610705, 0.030137394, 0.046862394, -0.031441286, 0.024852466, -0.002441865, 0.069601744, -0.048623275, 0.01076358, -0.014471777, -0.022038372, 0.009368726, 0.036024526, -0.11632281, -0.022861188, -0.00019217323, 0.017261734, 0.035604488, -0.038729392, -0.10852596, 0.06653649, 0.0139439115, -0.021255871, 0.042438924, -0.010944717, -0.02835747, 0.06877251, 0.01600859, -0.0054613487, -0.013803852, -0.024372771, -0.01329512, -0.052591186, 0.06056028, -0.013246097, 0.018751586, -0.021550873, -0.01601941, -0.0021936742, 0.050744742, 0.00360929, 0.023279661, 0.020733913, -0.010899505, 0.0061532543, -0.027838312, 0.051694334, 9.85157e-05, 0.0013824465, 0.045993414, -0.044140574, 0.031088568, -0.08275713, -0.02418733, 0.0092828255, 0.025617635, 0.021274189, -0.041340172, 0.008852932, -0.039977398, -0.020799126, -0.010361192, 0.041019414, 0.06336647, 0.013188075, -0.044186257, -0.023770837, -0.027095316, -0.0034852843, 0.012360611, 0.04437934, -0.0031596224, -0.00015697716, -0.05775607, -0.0007021525, 0.041152243, -0.0024798838, 0.006678818, 0.018304978, 0.008902048, 0.032725744, 0.07177164, 0.00030066562, 0.00874968, 0.021986412, -0.024638211, 0.0035584737, 0.018458301, 0.03150719, -0.0028498273, 0.015917957, 0.045396253, 0.06932895, 0.098850176, -0.06268766, -0.0030038971, -0.038594354, -0.015763126, -0.059247084, 0.032172162, -0.021390926, -0.014234394, 0.054242685, -0.035606477, -0.017874336, -0.021351263, 0.046191283, 0.005817384, -0.027909722, -0.07733638, 0.01105466, -0.08017577, 0.009045663, -0.02253122, 0.060488023, 0.01403143, -0.00883078, -0.024239521, -0.048605137, -0.05837035, 0.020591674, 0.007302097, -0.012089882, 0.024333457, -0.023281801, -0.031221528, 0.009690573, -0.0043091965, -0.026007753, -0.02508896, 0.007164619, -0.0050394577, 0.026593035, -0.025744796, -0.044092637, -0.056400828, 0.03629066, 0.053445626, 0.019807186, -0.0052318256, 0.009580374, -0.0039311247, -0.010399281, -0.0048399307, 0.0011265383, -0.0035552098, 0.028667936, 0.06790689, -0.03805732, 0.011784187, -0.017281393, -0.0018509771, -0.035240263, -0.012526967, 0.03822309, 0.036809605, 0.039782096, 0.052824978, -0.029943578, -0.019609459, -0.015604931, 0.031600446, -0.09034316, 0.0038611088, -0.050205573, 0.012083494, 0.0568329, 0.016300403, 0.019974321, -0.015247172, 0.040283673, -0.039790303, 0.009475423, -0.0433061, -0.013170083, -0.017447215, 0.015615418, 0.019403044, 0.018189535, -0.032399375, -0.03851664, 0.009186715, -0.005961967, -0.018436577, 0.04379308, 0.003854034, 0.001824388, 0.027056504, 0.05242359, 0.03273841, -0.014075232, -0.048625804, -0.0027863188, 0.0042046537, 0.064882606, -0.050413102, -0.041882485, 0.049484063, 0.023663007, 0.02002091, 0.08916516, 0.0037833003, 0.025546653, 0.02368942, 0.019293044, -0.024105232, -0.02932824, 0.025969623, -0.0046822717, -0.005518758, 0.025511203, -0.021620499, 0.02748365, 0.0025507445, -0.01879028, -0.06622388, 0.028892076, 0.059191298, 0.026916128, -0.006189689, 0.0021414396, -0.071449846, 0.013271832, 0.025216578, 0.003294636, -0.05269381, -0.025616903, -0.052574895, 0.029088529, 0.0045384686, 0.020239789, 0.048387818, -0.03403759, 0.0034144365, -0.018029876, -0.013799681, -0.030529069, 0.035530087, 0.022102255, -0.037689228, -0.024449388, 0.020528646, -0.016886523, 0.0089876605, 0.02357571, -0.025174875, -0.02384823, 0.012650136, 0.024236761, -0.022560904, 0.009852973, 0.009916642, 0.07311251, -0.0133625595, 0.03570137, -0.004033075, 0.035086904, -0.016603574, 0.0284466, -0.0005424859, 0.0030389256, 0.012953892, 0.018914407, -0.043553308, 0.011422298, 0.020802204, -0.00081886316, 0.02015154, 0.011401795, 0.070033185, -0.014424243, -0.03619987, 0.013975292, -0.011101876, 0.05834932, 0.0076251095, -0.027821457, 0.036514472, -0.03545745, -0.004195151, -0.027477402, 0.020252762, 0.0004080421, 0.032657992, -0.013451305, -0.009610544, 0.011877701, 0.0023458032, 0.06872384, 0.028887367, -0.03960542, -0.0045323465, 0.044866685, -0.037193004, -0.028293794, -0.022964938, 0.012443977, -0.0036472243, -0.040753715, -0.030856753, 0.024136394, 0.016937593, 0.068729095, 0.013249828, -0.0944065, 0.01092825, -0.041797195, 0.0037808174, 0.02984675, 0.07050612, 0.005930365, -0.022575475, -0.051321764, 0.024203015, 0.017889785, 0.076700985, -0.019189173, -0.026078157, 0.008419018, -0.013070514, 0.0030310473, 0.013478592, 0.025456041, -0.012592831, 0.015691465, 0.024058852, -0.051230874, 0.03610796, 0.036018696, 0.048843626, 0.0584781, -0.0639785, 0.04035907, -0.022148706, -0.009126838, 0.011487791, -0.026196938, 0.08709052, 0.029902339, 0.0021183789, -0.035213843, -0.07983542, 0.063271105, -0.01642538, -0.0027091997, -0.03366802, 0.077439405, -0.01149415, 0.0011259115, -0.04245474, 0.022200286, -0.011453507, -0.031691924, -0.013030576, 0.017144045, -0.0050689885, 0.014814223, 0.028610159, 0.059030652, 0.03626014, -0.06583036, 0.08410955, -0.112402216, -0.0065784906, -0.018173516, 0.02670376, -0.02433309, 0.034010276, 0.055740528, -0.079596, -0.036236435, -0.010176293, -0.06857099, 0.059449524, 0.070639, 0.009802356, 0.0125151295, 0.06431885, 0.019176183, 0.0021932954, 0.0062984526, 0.018558083, -0.0064666085, 0.034839112, -0.040097203, 0.018807288, 0.004398479, -0.010827653, 0.04668498, 0.014612423, 0.044305187, -0.033883892, 0.042427644, 0.01036927, -0.024796836, 0.061261572, 0.021323655, -0.039674487, 0.047283307, -0.0073194536, -0.013668692, -0.023675235, -0.038354456, -0.025089892, -0.018283403, 0.069091015, 0.016467283, -0.013350212, 0.025577297, 0.04147473, -0.068884306, -0.020217134, 0.027674342, 0.039573073, -0.026525851, -0.06567652, 0.006892371, 0.012796426, -0.062429387, -0.012490658, 0.022975702, 0.0071968585, -0.038170442, 0.0071259863, 0.05345534, -0.017640054, 0.030446706, -0.015698869, 0.0503578, -0.044972073, -0.09059443, -0.0027138225, 0.013050267, -0.10937804, -0.030764218, 0.0029464476, -0.024685265, -0.024872186, -0.02769363, -0.0039205537, 0.011177712, -0.003856103, 0.010043321, -0.020671148, 0.008904912, 0.019934421, -0.013363215, -0.02196155, 0.000820629, 0.01427357, -0.017677734, 0.0024725634, -0.0070065125, -0.022015523, 0.04542925, -0.011423623, 0.0017614185, 0.053719435, 0.038766716, -0.042863537, -0.047578424, 0.039178647, -0.028797416, -0.054656718, 0.04098519, -0.025268313, -0.0062957993, 0.08345894, 0.0058825063, -0.0031461613, -0.06533318, 0.03263133, -0.017033376, 0.05630135, -0.020469507, -0.021914056, -0.04358318, -0.009592033, 0.052823648, -0.024771597, 0.015884027, 0.03797396, -0.0014093745, -0.04436253, 0.026330914, -0.052236136, 0.06306458, -0.0075085224, 0.014067721, 0.023208035, -0.06697098, 0.03336636, 0.018826643, 0.03105052, -0.019204175, 0.037254274, 0.008832626, 0.042332813, -0.044399485, -0.056074645, -0.05220684, -0.019968504, -0.034821212, -0.02138137, 0.0038173923, 0.018059935, -0.023658557, -8.736428e-06, 0.02861213, 0.056522332, -0.0009456516, 0.001901153, -0.045767188, 0.036224503, -0.001829553, -0.03713425, 0.0093347365, 0.05158015, 0.005061659, 0.057296596, -0.030818757, 0.021689406, 0.024533408, -0.042214993, -0.045297466, 0.029816324, 0.018065207, -0.066420354, -0.014946359, 0.016740965, 0.012914454, -0.0113900425, 0.015748566, -0.02793033, 0.004311461, 0.02659195, 0.042285964, -0.04402131, 0.015197986, 0.021250576, -0.011544083, 0.033407703, -0.05354665, 0.046139847, -0.0664392, -0.019313969, -0.041906554, 0.01545627, -0.0060164873, -0.036585905, 0.02289469, 0.06225152, 0.010412914, 0.014100695, -0.06117504, 0.021654557, -0.029850623, -0.037124854, 0.059538122, -0.006687825, 0.015130549, 0.014425662, 0.029238913, 0.051862888, 0.028154692, -0.00045677726, -0.0019861064, 0.017489646, -0.032259334, 0.036583778, 0.0049682646, 0.008770981, -0.08480543, -0.0048812483, -0.065776534, 0.080208205, 0.0032556592, 0.0021218134, 0.036190007, 0.051815968, 0.00032771804, 0.007077135, -0.034014244, 0.0014008081, -0.048415955, -0.02150674, 0.028278796, -0.025622293, 0.012601824, -0.00065054034, -0.0030682522, -0.008912034, -0.04717736, -0.010201597, 0.01579535, 0.00012799846, -0.055549502, 0.035155367, 0.045048617, -0.026561659, 0.045091864, -0.0077732606, -0.009226603, -0.030546794, -0.0034513783, 0.034367267, -0.03410186, 0.006290958, 0.0033883306, 0.04646229, -0.027950874, 0.01286974, 0.039183546, -0.013725254 ] }, { "values": [ 0.015164259, -0.045530938, -0.05360826, -0.05953915, 0.027202366, 0.027583264, -0.02701888, 0.030912459, 0.02611532, 0.02746539, 0.01338852, 0.0011436371, 0.01426027, 0.023766408, -0.05380127, -0.06330753, -0.0048186444, -0.0045513664, -0.06852713, -0.06144915, 0.041035827, 0.017107999, -0.020450355, -0.053737905, -0.03081146, 0.050603144, 0.01494348, -0.048519228, 0.003332686, -0.026556017, 0.0024765823, -0.015615417, 0.009363782, -0.008902686, 0.044353213, 0.0332042, -0.027503673, 0.042209335, 0.024358338, -0.054019645, -0.052433364, -0.0053297738, -0.044073608, 0.041567866, -0.05003859, -0.0017506789, 0.012788393, 0.023962894, -0.013073479, 0.0033684906, 0.016167399, -0.04470715, -0.025415258, -0.0034976308, -0.041154537, -0.048005648, -0.0389683, -0.023644391, 0.096545145, -0.031717442, -0.05389779, -0.0051086913, -0.031562757, -0.010897172, 0.05126315, -0.0056611435, -0.039709758, -0.00073052716, -0.02854181, 0.0009436551, -0.07030074, -0.053998966, -0.006668353, -0.014016477, -0.026872844, -0.029393777, 0.005012484, 0.017092055, -0.008623883, 0.053141925, -0.010755923, 0.006417478, 0.03666498, 0.050885253, 0.007221489, -0.052241627, 0.020084526, -0.03846857, -0.054832753, 0.04064241, 0.122689515, 0.009987925, -0.029661879, -0.017520586, 0.00424841, 0.00070233934, -0.036391266, -0.025626104, -0.017991718, 0.06069576, -0.029031051, -0.0055063646, -0.017253507, -0.07087348, 0.019880988, 0.024842456, 0.0063111573, -0.034881737, -0.04595524, 0.0631846, -0.00607593, -0.0511786, -0.030951556, 0.011769061, 0.021882124, -0.016451947, -0.044909663, 0.00050977786, -0.016894957, -0.010073102, -0.008898824, -0.009003714, -0.031387642, 0.076775625, 0.044886045, -0.010122353, -0.016043423, -0.03070655, -0.047119483, -0.0069710994, 0.116573706, -0.08774851, 0.028921615, -0.032411903, -0.021834796, -0.018466491, 0.05021809, 0.016058765, 0.017617356, 0.030656502, -0.01056472, -0.032249514, -0.041961983, 0.016055044, 0.011628979, -0.020136327, -0.028757177, -0.0011051967, -0.06261849, 0.04279344, -0.05700612, -0.054476794, 0.032103747, -0.0025131104, -0.06336567, 0.029464018, 0.035054535, -0.04192576, 0.019408578, -0.048283428, 0.046462778, -0.04877832, 0.023863414, 0.013289888, -0.022283185, 0.03428283, 0.060624197, -0.10573374, -0.03593552, 0.008191288, 0.037002712, 0.014183035, -0.054895118, -0.097502224, 0.039649572, 0.030095685, -0.03855534, 0.04081715, -0.018276952, -0.0072522955, 0.067405224, 0.06056083, -0.0018780163, -0.006070194, -0.0016098805, -0.021546023, -0.03031353, 0.050444126, 0.010216622, 0.0118546, -0.019655555, 0.010638409, -0.007056143, 0.051387917, 0.0063217296, 0.028486067, 0.03049278, -0.061317496, 0.010630991, -0.025137471, 0.036089767, 0.029079808, 0.009760325, 0.047596276, -0.028972838, 0.035780236, -0.032050136, -0.03508768, 0.03501999, 0.021512907, 0.030224727, -0.0571196, 0.010930152, -0.03879501, 7.6699114e-05, -0.018295385, 0.058858626, 0.05105238, 0.059171464, -0.049088832, -0.04184635, -0.026586108, -0.008651527, 0.012627389, 0.032989576, -0.0065975212, 0.0036170282, -0.03239576, -0.016923098, 0.00060253363, -0.010983159, 0.0141252475, 0.0028784047, 0.021390721, 0.047903016, 0.0823933, 0.034129277, 0.02211332, 0.0025504972, 0.0066300654, 0.054894198, 0.003143547, 0.0446176, -0.0074789044, 0.015628723, 0.025272332, 0.04216458, 0.09237957, -0.041079126, -0.029533919, -0.004278833, -0.034379926, -0.03972923, 0.043018036, -0.014296389, -0.024897425, 0.06117777, -0.022973819, -0.026643109, -0.012846451, 0.072222814, -0.0011441066, -0.028656084, -0.060647428, 0.01051161, -0.049678255, 0.0058365976, -0.004075551, 0.052200478, -0.0040748296, -0.025580708, -0.0090081375, -0.050059225, -0.020811355, 0.0027916313, 0.024507117, -0.01947683, 0.01689372, -0.031871073, -0.022822814, 0.02377519, -0.011176284, -0.005905725, -0.03169406, -0.021746174, 0.0020003088, -0.015480248, 0.008362742, -0.036522586, -0.06881443, 0.03460222, 0.06940765, -0.008743535, -0.0048693526, 0.035936866, -0.018888475, -0.00041883826, -0.0013991435, -0.029252728, 0.008063415, 0.052350417, 0.056741334, -0.02652411, 0.00916433, -0.021038987, 0.017027669, -0.012963858, -0.007186096, 0.035298653, 0.003481257, 0.022562794, 0.03269347, -0.05056361, -0.03644808, -0.009817866, -0.010587479, -0.11215961, -0.015675388, -0.029050615, -0.02769658, 0.01758126, 0.0057004285, 0.028745916, -0.017160352, 0.04312266, -0.02116275, 0.030444685, -0.026365323, -0.021704972, -0.0111146, 0.026889209, 0.003961681, -0.0026209322, -0.02817331, -0.011298996, 0.018186092, -0.02065871, -0.005316054, 0.046058107, 0.0027727992, 0.049785376, 0.009973078, 0.03974245, 0.059523176, 0.0036640689, -0.058714572, 0.029124629, -0.019698255, 0.03546457, -0.07804094, -0.01960248, 0.043275155, 0.025723023, 0.017646644, 0.051909827, 0.0028323354, -0.0006012756, 0.004457281, -0.007510048, 0.0038228964, -0.0060249683, 0.017646955, -0.020026209, -0.017463334, 0.03747536, -0.008078919, 0.028374394, 0.0035720333, -0.016095694, -0.049633466, 0.05145358, 0.07315325, 0.03495787, -0.005969407, 0.0084426105, -0.050042283, 0.014288067, 0.03260781, 0.048717845, -0.04095402, -0.04598354, -0.043801103, 0.029027233, 0.004058883, 0.01526482, 0.043560524, -0.023945345, 0.009238289, -0.0022252002, -0.012790729, -0.03606381, 0.05289981, 0.008663748, -0.019265382, -0.04623965, 0.05795489, -0.010816162, 0.029466972, 0.04654243, 0.0029214646, -0.027062355, 0.0042257737, 0.04820099, -0.035962638, 0.012563633, 0.037200943, 0.07395501, -0.012570741, 0.036973257, -0.027812276, 0.043339174, -0.012231949, 0.0042390106, -0.029251369, -0.03013029, 0.017173873, 0.02400646, -0.056461316, 0.0013661832, 0.021149121, -0.015098941, 0.021715837, 0.0052288747, 0.061269507, 0.0015263836, -0.039537042, 0.012102709, 0.00020849903, 0.044966627, 0.016570536, -0.0041438257, 0.037177123, -0.041715357, 0.012733938, -0.010604155, 0.011138807, -0.0039986917, 0.028432613, -0.023032028, -0.002219896, 0.0017162357, 0.021125318, 0.046908434, 0.024441976, -0.007035537, -0.020143157, 0.029675415, -0.067427814, -0.02194592, -0.045999236, -0.0044202725, -0.0048538875, -0.021300772, -0.029224833, 0.031069288, 0.04293476, 0.046172928, -0.0024489905, -0.0964526, 0.021341551, -0.07078805, 0.0048243175, 0.033577293, 0.058001593, 0.010878275, -0.039208166, -0.039775003, 0.03051245, 0.0148509275, 0.06728414, -0.0079392195, -0.01626086, -0.0038885514, -0.033816144, 0.006375558, 0.010301038, 0.025486896, 0.0065254103, 0.00814026, 0.029161038, -0.051238958, 0.014029067, 0.036822613, 0.05376288, 0.059860285, -0.06582169, 0.047861807, 0.020195562, 0.008639599, 0.03308419, 0.017503662, 0.09240161, 0.058144107, 0.0063785026, -0.043157835, -0.0646209, 0.06733714, -0.016899835, 0.016891507, -0.0031043475, 0.1034767, -0.0069879214, 0.014175074, -0.045747656, 0.016811492, 0.046970177, -0.033196103, -0.010163621, -0.0039757336, 0.006426624, 0.028128728, 0.0054091862, 0.028228253, 0.035866044, -0.050958253, 0.06301224, -0.10923205, -0.006573292, 0.050335094, 0.056021255, -0.0009571746, 0.018479783, 0.050386675, -0.057579715, -0.033077717, -0.010091019, -0.058410466, 0.033623237, 0.09751049, -0.013819773, -0.013765551, 0.03333462, 0.00833657, 0.014883019, -0.007937812, 0.024855312, 0.001481401, 0.060383208, -0.01030813, 0.051223256, 0.020960892, 0.03145698, 0.05026101, 0.0017769891, 0.08995376, -0.0069185607, 0.038124226, -0.003913245, -0.03151069, 0.06921741, 0.0029495484, -0.028930655, 0.028127111, 2.7950684e-05, -0.026614456, -0.01853896, -0.045326605, -0.06173887, -0.041924, 0.04912281, 0.026111383, -0.017078886, 0.008719903, 0.011668683, -0.04250618, -0.0053943684, 0.010375084, 0.023431841, -0.024611998, -0.060570475, -0.010695512, -0.018158555, -0.04976634, 0.013207911, 0.0035082581, 0.011675498, -0.013149998, -0.01034772, 0.027596036, -0.020425538, 0.042024247, -0.017373424, 0.04651971, -0.0583382, -0.054168243, -0.009942115, 0.032641213, -0.10509206, 0.0010182556, -0.0022967162, -0.036430024, -0.010033497, 0.0063709854, -0.0037640503, 0.033377167, -0.032971613, 0.0099927, -0.023225045, 0.017962119, 0.01643502, 0.001759207, -0.015437526, -0.036178794, 0.053976074, -0.012874007, -0.010700634, -0.0026510225, -0.00051514804, 0.030142916, -0.00904119, -0.0034014897, 0.053743824, 0.022797743, -0.037186865, -0.03171604, 0.028417764, -0.02066365, -0.026997799, 0.060938172, -0.0061293063, -0.026979312, 0.0747566, -0.03873058, 0.006470042, -0.0719051, 0.029963164, -0.019356474, 0.04575059, -0.00811282, -0.010646977, -0.04598214, 0.0043861493, 0.06976561, -0.035928212, 0.013902733, 0.039274458, 0.01850998, -0.048560046, -0.008100783, -0.07527453, 0.050244797, -0.02783593, 0.046761617, 0.027579928, -0.07015497, 0.042115152, 0.019667814, 0.039184663, -0.0013718939, 0.04027079, 0.020336905, 0.04949336, -0.01964529, -0.05395735, -0.0625379, -0.03304944, -0.005712133, -0.038480353, 0.013938025, -0.023673585, -0.031550873, -0.025667962, 0.03485159, 0.051037293, -0.022149637, 0.04596386, -0.025576644, 0.011429271, -0.014088158, -0.028602993, 0.008736203, 0.032024518, -0.024022594, 0.038869783, -0.0019250172, 0.022026094, 0.021286504, -0.037497953, -0.033842687, 0.0151875885, 0.02722116, -0.06071893, -0.00072705036, 0.022596901, 0.032262508, 0.0153602, 0.02931575, -0.020097464, 0.027428707, 0.033965096, 0.010190731, -0.061730154, 0.04102017, 0.04001287, 0.018618396, 0.05389074, -0.046562407, 0.023248909, -0.04248879, -0.008628535, -0.048988055, -0.020063126, -0.032323413, -0.060336757, 0.018783052, 0.03911893, 0.018746, 0.00364286, -0.05914139, 0.036200974, -0.031462282, -0.005699672, 0.084960006, -0.022057826, 0.008288949, 0.010162787, 0.056025803, 0.056468382, -0.0025033057, -0.015349069, -0.008011454, -0.005720966, -0.055345837, 0.05746818, 0.027974112, -0.013126233, -0.07250278, 0.02333384, -0.056052487, 0.06913319, 0.028998822, -0.00020982887, -0.015163349, 0.044570144, 0.01224999, 0.030733105, -0.011608537, -0.010151297, -0.07097734, -0.03376331, 0.030891951, -0.009823672, -0.020691488, 0.0061924, 0.0029279508, -0.019929007, -0.03055333, -0.0056761242, -0.005448902, -0.03475707, -0.048499897, 0.04733808, 0.047518294, 0.010312505, 0.04926228, 0.022820814, 0.041889325, -0.032662902, -0.000261788, 0.017155372, 0.0060967538, 0.018217392, 0.0061343773, 0.032590657, -0.047680322, 0.00088018266, 0.04843756, -0.027587 ] }, { "values": [ -0.0009880424, -0.039933287, -0.058813546, -0.092152886, 0.01419361, 0.011719746, -0.022986136, 0.03343743, 0.022636294, 0.012165303, 0.021575846, 0.03597812, 0.018628154, 0.0744133, -0.07289823, -0.07362275, 0.01780461, -0.040645428, -0.0780825, -0.031295225, 0.030644668, 0.03644739, 0.0045332806, -0.05074763, -0.013776186, 0.0472995, 0.016884789, -0.08122796, -0.0016318087, 0.0072205435, 0.017395489, 0.0021371373, -0.020364545, -0.006778475, 0.048761137, 0.029764801, -0.0026791203, 0.043696165, 0.018931756, -0.03917739, -0.013679569, -0.02312591, 0.0049161715, 0.04302632, -0.02906808, 0.015961405, 0.016022267, -0.00070892466, -0.01414661, 0.020603012, 0.030134642, -0.013190752, -0.03235264, 0.020996949, -0.018196583, -0.026288377, -0.040285394, -0.027385445, 0.10756198, -0.0035221989, -0.0034917404, 0.020470457, -0.0517712, 0.0050044525, 0.05543151, 0.010859931, -0.019885313, -0.037470154, -0.04127294, -0.0122806635, -0.04713019, -0.014300378, 0.0030471417, -0.020915918, -0.01469332, -0.0225401, 0.011313446, 0.016528778, -0.007970199, 0.04664772, -0.019210422, 0.010841022, 0.05205906, 0.042515375, 0.018487487, -0.0122397775, 0.014495804, -0.023432191, -0.046425015, -0.0061697564, 0.09853914, -0.030256685, -0.02190961, -0.033106916, 0.00028380603, -0.040447585, -0.057814922, -0.0321184, -0.02017582, 0.056587573, -0.03487185, 0.019478675, -0.027988575, -0.05028652, 0.037352376, 0.053489134, 0.024924144, -0.041987915, -0.004939932, 0.044824313, -0.017655335, -0.05687075, -0.037894256, 0.021963889, 0.02258258, -0.01938223, -0.022754356, -0.010099498, -0.04040411, 0.01672522, -0.01128344, -0.03797049, -0.044104476, 0.05480696, 0.012148729, -0.016231673, 0.007594346, -0.055053197, -0.07133518, -0.0408534, 0.10548561, -0.0846144, 0.009114152, 0.0015408923, -0.045088533, -0.020046487, 0.058672644, -0.007807717, -0.027186856, 0.04236132, -0.013707644, -0.058368243, -0.017000608, 0.007985213, 0.019329822, -0.028158247, 0.020891367, -0.00919773, -0.056892958, 0.041545536, -0.08125061, -0.042768825, 0.024425283, -0.008796585, -0.06651188, 0.042856395, 0.04550904, -0.03726771, 0.017791422, -0.06610773, 0.040941436, -0.055052068, 0.028393412, 0.018176187, -0.032833718, -0.0016042646, 0.057396803, -0.06618065, -0.068404116, -0.024869429, 0.02742015, 0.023220705, -0.0066554826, -0.07343038, -0.005018254, 0.04369242, -0.04878551, -0.0006179542, -0.07360872, -0.014600253, 0.0464633, 0.04494694, -0.033388387, 0.0259332, 0.0012652096, -0.04636592, -0.028159635, 0.042097397, -0.009695596, 0.050832924, -0.028906053, 0.023270436, 0.014716829, 0.014498122, 0.01391642, 0.035240747, 0.036276616, -0.07059813, 0.02258766, -0.003400782, -0.00254377, 0.013556163, -0.0049628858, 0.0038279053, -0.041509785, -0.0097202035, -0.047126483, -0.011518217, 0.07035752, 0.042243008, -0.0012988667, -0.028344482, -0.019782934, -0.060152255, -0.0025483738, -0.043705568, 0.067220815, 0.030234128, 0.037973613, -0.040899508, -0.03266844, -0.037023105, -0.011174023, 0.010408443, 0.06466807, -0.0020248734, -0.013766525, -0.024343656, -0.030332714, -0.026875427, -0.01887791, 0.033279963, 0.013893266, 0.0011217513, 0.060952496, 0.09739462, 0.06507874, -0.02175971, 0.0065032835, 0.030673265, 0.023519399, 0.019684149, 0.03944379, -0.0011224496, 0.004018053, 0.025114564, 0.043960325, 0.093133874, -0.062254004, -0.0065367906, -0.0013721829, -0.019968873, -0.011171356, 0.036039226, 0.016984377, -0.03555155, 0.05682693, -0.025473792, -0.010463275, 0.014183768, 0.037989482, 0.012606523, -0.030839333, -0.064861834, -0.004895958, -0.06594386, -0.003442258, -0.009821731, 0.04224904, 0.020998286, -0.04257419, 0.026379213, -0.07893498, -0.020461446, 0.0077509154, 0.035891738, -0.0059162444, 0.041062385, -0.016442664, -0.03976322, 0.028411161, -0.008410749, -0.015233442, -0.022219522, -0.030308178, -0.02933405, 0.0053131613, 0.046472836, -0.01799088, -0.035972804, 0.043006457, 0.048397783, 0.012814919, 0.007589548, 0.049090184, -0.047970146, -0.0062516546, -0.0052963207, 0.0066797757, -0.015567463, 0.0057017813, 0.030553704, -0.02495171, 0.02442711, -0.0019587032, 0.01278486, -0.031574454, -0.013828702, 0.05404286, 0.030463656, -0.012851322, 0.0065296516, -0.04654954, -0.043644533, 0.004799592, 0.027056018, -0.09614565, 0.008442092, -0.025070673, -0.039246246, -0.005339146, 0.042861458, 0.025573134, -0.026472442, 0.037412323, 0.006365044, 0.024564799, -0.042653296, -0.021485077, -0.014283125, 0.0104606915, -0.00089296885, 0.006191232, -0.01725057, 0.010528878, 0.022090113, -0.04055845, 0.008314354, 0.023910016, 0.020758398, 0.071808875, 0.021021822, 0.01159238, 0.04013147, 0.021723013, -0.036105935, 0.015886797, -0.05277622, 0.030496463, -0.060945187, -0.012471737, 0.009320282, 0.0130789, -0.008701189, 0.030160692, 0.03776615, 0.0032480382, 0.022756645, -0.010565268, 0.040417988, -0.012896318, 0.01994635, -0.01721102, -0.015583043, 0.020964941, 0.0013453608, 0.01465545, 0.004598541, -0.06431422, -0.026234921, 0.033462398, 0.07858683, 0.054704607, -0.0061844485, 0.023396196, -0.048159815, 0.0022036352, 0.027592227, 0.033047505, -0.020150363, -0.046226658, -0.015006049, -0.018256675, 0.002541405, 0.021360178, 0.02688006, -0.02660838, -0.0045495154, -0.009227921, 0.0030281816, 0.0025412373, 0.03618272, -0.034040313, 0.017285142, 0.016234985, 0.047437686, -0.01645467, 0.040217344, -0.003886387, -0.008617481, -0.04027117, 0.0049158423, 0.06757848, -0.027357746, 0.019555142, 0.010817027, 0.07796642, 0.01842444, 0.029918851, -0.046902284, 0.024847727, -0.03284382, -0.017238105, -0.015075191, -0.008210387, 0.02725438, 0.024376953, -0.05945978, -0.0049026245, 0.033972815, 0.002224802, 0.01753421, -0.020803833, 0.04640947, 0.00709268, -0.0587709, 0.00018139608, 0.013437007, 0.0208379, 0.043337233, 0.0154606635, 0.029311117, -0.04318399, 0.03326681, -0.039229635, -0.020866223, 0.006011131, 0.021959716, -0.020792618, -0.01283995, -0.014403781, 0.022121752, 0.05323339, 0.030835064, -0.0011233113, -0.0018151739, 0.031612296, -0.06673196, -0.02571438, -0.06505881, 0.02263591, 0.025567867, 0.0058026155, -0.016402956, 0.021707486, 0.026247066, 0.034137476, 0.012926933, -0.06339353, -0.0017849614, -0.04292464, -0.009161219, 0.01467307, 0.052219294, -0.023386197, -0.013781597, -0.060943883, 0.00732244, 0.04035533, 0.055591986, 0.010046982, -0.038347267, -0.008590447, -0.0049471986, 0.009722778, 0.011558474, 0.004913067, -0.020320859, 0.019457532, 0.02096599, -0.041996304, 0.028494556, -0.008887004, 0.029349301, 0.04274037, -0.08928758, 0.025368918, 0.01210353, 0.0121409055, 0.043433204, 0.022102693, 0.09214376, 0.05357459, 0.011601488, -0.019910567, -0.08463959, 0.08023852, 0.0013330219, 0.021810962, -0.022702063, 0.111890525, 0.010387293, -0.0005561415, -0.014363793, -0.014366892, 0.06061681, -0.041961357, -0.009171733, 0.024664765, -0.014695541, 0.046021644, -0.0040440094, 0.04967547, -0.010715314, -0.040199917, 0.05184044, -0.0903321, -8.2552746e-05, 0.021375068, 0.059350654, -0.0016250745, 0.0052027376, 0.0619786, -0.06128542, -0.020383386, 0.022576388, -0.06451762, 0.041687585, 0.057221834, -0.024358537, -0.022610903, 0.052983038, 0.021504438, 0.019438038, -0.0070987092, 0.029542036, 0.029151563, 0.05753025, -0.05139132, 0.024861727, 0.012088029, -0.0073932493, 0.04450054, 0.02483475, 0.062396213, 0.011141864, 0.059893217, -0.014453353, -0.056903813, 0.09220452, 0.008017328, -0.023694927, 0.036458306, 0.017795267, -0.03458931, -0.018199807, -0.03127908, -0.08703609, -0.03220585, 0.014225568, 0.03071142, -0.016068572, -0.009035237, 0.015446903, -0.0016481228, 0.021772847, 0.0029923755, 0.037278287, -0.026910301, -0.045678947, -0.041568454, -0.024399519, -0.05685615, -0.00584785, 0.019716294, 0.012862771, -0.009884802, -0.009879805, 0.033794567, 0.006940131, -0.0064083734, -0.030816762, 0.051815137, -0.039054323, -0.07976296, -0.0068708574, 0.033990186, -0.09316713, -0.009739215, 0.0163319, -0.048342742, -0.031228404, -0.00074450776, -0.007465205, 0.03396799, -0.037769973, -0.02350717, -0.019842329, 0.01655653, 0.045980893, -0.00091174745, 0.0029180401, -0.033515334, 0.035626817, -0.011642058, 0.01851417, -0.011737369, -0.006822227, 0.021992562, 0.0066639516, 0.0075123273, 0.03717657, 0.0062013892, -0.022562383, -0.028750539, 0.04473609, -0.019787991, -0.018910948, 0.04320351, -0.014318752, -0.03194855, 0.06736531, -0.037329413, -0.0045948355, -0.055148114, 0.048518382, -0.02149954, 0.05976351, -0.0012924038, -0.012707248, -0.06005473, 0.016284522, 0.08472448, -0.0030507913, -0.00015449901, 0.027731378, 0.04328247, -0.03235524, -0.028285518, -0.07665544, 0.037321184, -0.023201223, 0.029231941, 0.05262455, -0.03084193, 0.059805963, -0.012461134, 0.010065367, -0.007979239, 0.038680773, 0.02705901, 0.07638863, -0.013635311, -0.043508995, -0.046241086, -0.01180502, -0.030304601, -0.004427579, 0.020068077, -0.02224182, -0.037345383, -0.06702178, 0.0838962, 0.104781225, -0.019669069, 0.034194004, -0.01051741, 0.003527523, -0.005141519, -0.008217877, 0.02505405, 0.039090756, -0.014828682, 0.05350341, 0.017774658, 0.0264054, -0.0029741134, -0.03685294, -0.049609844, 0.020416776, 0.0063045267, -0.05088725, -0.0046661594, 0.031169802, 0.026223583, -0.00052301236, 0.024331743, -0.027417414, 0.0019773415, 0.037220992, 0.038228586, -0.06936044, -0.016455218, 0.032915566, -0.0023032215, 0.054226488, -0.02445938, 0.013860735, -0.041556515, 0.014181545, -0.062779084, -0.009733579, -0.04790478, -0.045656662, 0.021515569, 0.032817993, 0.020018702, -0.011394799, -0.062471386, 0.030719018, -0.039781, 0.0008599318, 0.086607926, -0.005482049, 0.020477507, 0.022188183, 0.034351643, 0.024948563, -0.02313082, -0.016578218, -0.029045643, -0.025746295, -0.027856855, 0.063927285, 0.03427351, 0.0017669131, -0.07401954, 0.038826358, -0.027556723, 0.06564512, 0.03553928, 0.013824279, -0.018839607, 0.03970041, 0.015874835, 0.021350207, -0.025630044, -0.017400388, -0.061602086, -0.055473093, 0.03176839, -0.0062809596, -0.040490996, 0.0025179281, -0.01412433, -0.01212147, -0.0448361, 0.009756469, -0.009096583, -0.045088578, -0.04221642, 0.009174725, 0.043034136, -0.01070594, 0.025192212, 0.022928875, 0.02771261, -0.015705498, 0.004485783, -0.014546852, 0.0023035032, 0.031504788, -0.0042046728, 0.027311115, -0.06349279, 0.021243779, 0.03027461, -0.035310626 ] }, { "values": [ -0.013700614, -0.02254761, -0.03129145, -0.056500662, -0.0103969835, 0.048592895, -0.026281077, 0.026994292, 0.018365983, 0.009894167, 0.02647968, 0.00781777, 0.043176834, 0.039406072, -0.05192434, -0.055883627, 0.011654087, -0.004521983, -0.07571215, -0.033276465, 0.042215265, 0.023170145, -0.011922728, -0.051349774, -0.013676724, 0.023661384, 0.026806464, -0.060758654, -0.024060825, -0.0263179, 0.042531308, 0.008300536, -0.016454522, -0.03682615, 0.06253996, 0.05327806, -0.0399362, 0.048493106, 0.04174708, -0.029930105, -0.034755338, -0.00683239, 0.0035770847, 0.048761822, -0.031903632, -0.008351811, 0.006646537, 0.053938847, -0.0032318307, 0.019761035, 0.0043785325, -0.025611442, -0.032014225, 0.014582422, -0.017972052, -0.06539104, -0.082195975, -0.011578572, 0.094124764, -0.0035003794, -0.015433094, 0.010484426, -0.053927127, -0.0011612121, 0.03890442, 0.015102582, -0.03701651, -0.040696513, -0.028476316, 0.020212404, -0.03403931, -0.009813686, -0.018339284, 0.0035921384, -0.005109376, -0.021314535, -0.0036324414, -0.0011394937, -0.0024509586, 0.04248947, -0.018886086, 0.012666289, 0.04942895, 0.040578492, 0.034860022, -0.030880973, 0.020956786, -0.067622915, -0.05102825, 0.010884386, 0.09276771, -0.00926547, -0.011436108, -0.04384291, -0.0060054627, -0.017825408, -0.04911914, -0.05527336, 0.0077337637, 0.05525913, -0.04160261, 0.01687001, -0.0013634487, -0.045052968, 0.033596568, 0.028611915, -0.023379479, -0.045528393, -0.03438156, 0.03408398, -0.040013205, -0.0374943, -0.03322682, 0.036342178, 0.024642074, -0.03663326, -0.020061499, -0.019628484, -0.0035211456, 0.0065533267, 0.012817182, -0.0665142, -0.03491932, 0.0765493, 0.034549646, -0.012277483, -0.03089489, -0.0017162671, -0.06525509, -0.037769236, 0.13145365, -0.06847929, 0.02286085, -0.03449478, -0.054669738, -0.0038790794, 0.08951096, 0.01584907, -0.026821211, 0.05121338, -0.025685338, -0.015259025, -0.037615728, 0.03546225, 0.016722957, -0.017119657, 0.012065666, -0.013753726, -0.033536468, 0.047021538, -0.04748369, -0.04150695, 0.045978125, -0.006993185, -0.07241225, 0.077767424, 0.039126366, -0.061620086, 0.014930667, -0.06912755, 0.037087105, -0.053734265, -0.02554954, 0.018346142, -0.056617886, -0.015495659, 0.025487227, -0.07936499, -0.059338048, -0.018102935, 0.019433882, 0.028209087, -0.019446222, -0.054102678, 0.0019646815, 0.05093998, -0.04489185, 0.0054345415, -0.07419564, -0.0054231104, 0.014153221, 0.07929819, -0.0071402434, 0.020285286, 0.015000875, -0.030664729, -0.033723496, 0.015922919, 0.0003606847, 0.033458713, -0.028943716, 0.009982245, 0.0089575, 0.030795336, 0.0021895242, 0.047705974, 0.005869823, -0.07708708, 0.011200105, -0.012265509, 0.009924894, 0.0126141, -0.001295122, 0.013785221, -0.02802426, 0.0077824607, -0.019122861, 0.013844918, 0.042021595, 0.020408187, -0.0073446566, -0.030468384, 0.019004855, -0.06581697, -0.004105619, 0.0088907005, 0.07410203, 0.03380222, 0.05556815, -0.034649026, -0.05116372, -0.05033753, -0.01799565, -0.000842729, 0.05400959, -0.011347496, -0.012178468, -0.0286634, -0.04435065, -0.021582888, -0.010888723, 0.044063017, 0.015324283, 0.03703064, 0.034901816, 0.07290223, 0.059017606, -0.00011942644, 0.011013854, 0.01793696, 0.036003057, 0.02313148, 0.037387475, -0.016534507, 0.00044823484, 0.053212926, 0.06607259, 0.070749536, -0.043447465, -0.036813118, -0.008807257, -0.04740145, -0.02668514, 0.04938408, 0.0029868775, -0.0096309725, 0.045644548, -0.02367682, -0.013563444, 0.0022457074, 0.05853235, 0.01585123, -0.037211392, -0.033278126, 0.008036717, -0.05684037, -0.010279318, -0.003705477, 0.036777847, 0.00023067919, -0.039458457, 0.010991079, -0.08304544, -0.012932389, 0.02176003, 0.018233655, -0.015584785, 0.040984254, -0.027134648, -0.025321389, 0.022501446, -0.007083391, -0.014764269, -0.027386911, -0.00882311, -0.03424208, -0.0048449957, 0.04593314, -0.052051254, -0.04002439, 0.05079253, 0.03960887, 0.0050336625, -0.02533144, 0.024676647, -0.021654928, 0.0073932773, -0.035867285, 0.00928612, 0.0026567818, 0.018924456, 0.046130948, -0.028073784, -0.008956622, -0.023453472, 0.0059847804, -0.047804408, -0.0090862205, 0.05598053, 0.02561686, 0.003243437, 0.017733876, -0.05762674, -0.030544005, -0.009796102, 0.016254907, -0.124078326, -0.006706741, -0.010160609, -0.025436483, 0.012991885, 0.011281545, 0.02100547, -0.03739856, 0.064806566, -0.009211805, 0.0022302072, -0.042756647, -0.025782535, -0.0130499285, 0.014396603, 0.011163189, 0.01786979, 0.0075423904, 0.006292846, 0.00074409123, -0.036508873, 0.012738915, 0.033857025, -0.01944987, 0.05256595, -0.006119126, 0.035892442, 0.06264366, -0.0022246037, -0.06822462, 0.045029763, -0.0544515, 0.030331401, -0.08427804, -0.04106196, 0.025342127, 0.025248898, 0.0025524516, 0.047867123, 0.02331032, 0.00758424, 0.009026191, 0.0072763856, 0.03427379, 0.0017758477, 0.040256757, 0.0024940597, -0.0062488727, 0.035289697, -0.011410051, 0.00650095, 0.008678292, -0.03099715, -0.05604622, 0.03991022, 0.077179596, 0.032219484, -0.0023108583, 0.0005114677, -0.04200251, 0.016775217, 0.019366434, 0.050151598, -0.0478414, -0.035275724, -0.0144271115, 0.016141148, -0.0041414667, -0.018857457, 0.026969628, -0.030661447, 0.0047431537, 0.0100417975, 0.018847834, 0.0031457874, 0.07419482, -0.02755046, -0.0073442385, -0.016101277, 0.043130357, -0.029484266, 0.03978571, 0.02994896, 0.022115035, -0.031452026, -0.012819975, 0.0679777, -0.024186466, 0.01661052, 0.017550386, 0.07091342, -0.0020326716, 0.04010598, -0.046419185, 0.033054706, -0.01091031, -0.027779864, -0.012133618, -0.012131489, -0.015447047, 0.024045788, -0.05922914, 0.0129767535, 0.016761443, -0.0033393211, 0.024922183, 0.007975452, 0.0139975175, -0.019793585, -0.05574615, -0.002423465, 0.0068181953, 0.018672844, 0.02626313, 0.0004918174, 0.04572884, -0.059731103, 0.02024114, -0.04375888, -0.019152839, 0.008563405, -0.00024852713, -0.037548814, 0.007812302, -0.022667876, 0.020651022, 0.03451305, 0.006138896, 0.020848349, 0.017800678, 0.01804948, -0.04443032, -0.053714573, -0.051432285, -0.0031054534, 0.011560648, -0.017148264, -0.023541873, 0.015228341, 0.025614364, 0.028150331, 0.02255431, -0.06635809, 0.009048185, -0.04971529, -0.00090601493, 0.0389086, 0.036516577, -0.008298355, -0.024212329, -0.07318246, -0.0048733633, 0.010490983, 0.045910336, -0.003982257, -0.047512375, 0.015797747, -0.02960024, 0.0142567605, 0.0061936243, 0.00023546234, -0.0013729666, -0.0012274444, 0.020351823, -0.061845418, 0.049488533, 0.009118131, 0.030165724, 0.06635633, -0.09064677, 0.03055377, 0.034175243, 0.03995373, 0.018935725, 0.035004623, 0.0790745, 0.03514577, 0.010054991, -0.041662198, -0.07424021, 0.05078104, 0.002631095, 0.011387394, -0.010485687, 0.08527169, -0.016449237, 0.0018107105, -0.04520311, 0.029965477, 0.038873844, -0.023550294, 0.007654966, 0.011550037, -0.027929522, 0.03228553, 0.00781756, 0.021764169, 0.00191379, -0.050792232, 0.026290303, -0.11739494, -0.012250412, 0.046807338, 0.043365225, -0.0013381826, -0.0050166217, 0.045674812, -0.06713187, -0.018685486, 0.004244699, -0.053989172, 0.042055126, 0.054191865, -0.0076507293, -0.024665711, 0.028537357, 0.019527823, 0.03023567, -0.0022774646, 0.033167765, 0.014214579, 0.05463064, -0.050383117, 0.028690014, 0.00016899355, 0.038743094, 0.05224134, -0.0015474204, 0.05170587, 0.0072460473, 0.041482728, -0.015968975, -0.06407844, 0.0534062, 0.0010813496, -0.014415847, 0.01962165, 0.035351384, -0.023311175, -0.016306264, -0.026519233, -0.08376471, -0.0549292, 0.032011736, 0.025271574, -0.012211852, 0.013196361, 0.010442156, -0.013226319, 0.00805754, 0.0076889573, 0.044200577, -0.0069671366, -0.06008622, -0.027581466, -0.01251976, -0.052982293, -0.012374866, 0.008044077, 0.023135373, -0.0013750604, -0.029322097, 0.006920137, -0.009526269, 0.019856947, -0.031092452, 0.060897354, -0.042737707, -0.063106164, -0.014212624, 0.017425066, -0.07223565, -0.006580087, 0.0029371476, -0.0394837, 0.011109331, 0.010726637, -0.012898687, 0.036922634, -0.019153958, -0.025913443, -0.018000482, 0.025621517, 0.00703197, 0.00047692267, 0.023956528, -0.03465035, 0.0576371, -0.016122216, 0.011431504, -0.0066106315, 0.017273327, 0.03251351, -0.03046233, 0.018591356, 0.03857978, 0.011148342, -0.020559553, -0.024716636, 0.02702306, -0.031233307, -0.02650844, 0.038211837, -0.020063933, -0.02572978, 0.056233834, -0.033169977, 0.011982401, -0.055407617, 0.015091521, -0.020157114, 0.037947834, -0.02680948, -0.03463622, -0.03510656, 0.0051038447, 0.079645604, -0.020501165, 0.014656989, 0.023483137, 0.022240296, -0.025832953, 0.014136123, -0.069106944, 0.044336252, -0.015424907, 0.035716563, 0.031686418, -0.03967193, 0.05612255, 0.017947437, 0.025067693, 0.02011246, 0.03330781, 0.022961928, 0.06305584, -0.0034378553, -0.030464388, -0.07245057, -0.008861978, -0.0010309493, 0.005953484, 0.034028165, -0.047094908, -0.028144369, -0.024739826, 0.05767864, 0.07951623, -0.01250502, 0.03229696, 0.004136269, -0.004719244, -0.0075119017, -0.0012405398, 0.0053085336, 0.016627667, -0.021970242, 0.07683251, -0.012741511, 0.022774884, 0.038360875, -0.036799315, -0.036580566, 0.013724232, 0.012331303, -0.0408227, 0.005225046, 0.0049230447, 0.009857655, 0.0044126096, 0.051091094, -0.03491106, 0.009477593, 0.028298754, 0.029958349, -0.08299471, 0.012511801, 0.02957131, 0.020153603, 0.07140563, -0.02525307, 0.012326839, -0.05345009, 0.03505089, -0.0691159, -0.028720051, -0.050661035, -0.06077296, 0.021133563, 0.048642065, 0.016728757, 0.0027222189, -0.062350377, 0.049382314, -0.054327816, 0.014589364, 0.10716386, -0.028984489, 0.02924614, 0.034491997, 0.040996023, 0.050071977, -0.0070888414, -0.00034631277, -0.024275783, -0.043206207, -0.021535845, 0.07195693, 0.0198709, -0.025854439, -0.053612657, -0.0018772717, -0.029093351, 0.047818005, 0.014321476, -0.011667728, -0.031005502, 0.075623155, 0.019403571, 0.02655151, -0.003948051, 0.004729077, -0.03870084, -0.04883058, 0.034294847, -0.008514938, -0.016045323, 0.02469126, -0.0041146507, -0.009677823, -0.024167245, 0.009920844, -0.018383766, -0.06380436, -0.05421851, 0.020236988, 0.07236151, 0.0126319975, 0.0119725885, 0.017570138, 0.056222927, -0.05842152, 0.0031425066, -0.008538888, -0.0029251997, 0.04509186, -0.013725176, 0.020173822, -0.087487034, 0.011903568, 0.05987995, -0.007753003 ] }, { "values": [ -0.020877402, -0.013122181, -0.03495877, -0.04482772, 0.0052329423, 0.038464844, -0.012421158, 0.04041122, 0.014119187, -0.010970788, 0.006234509, 0.014449852, 0.05132348, 0.037889022, -0.072164215, -0.04413122, 0.0276665, -0.001005398, -0.06888612, -0.022293165, 0.030743435, 0.060742006, 0.005666506, -0.07802445, -0.027332397, 0.028702855, 0.019710872, -0.042190444, -0.022800142, -0.024351405, 0.032505695, 0.030907532, -0.029864494, -0.021234134, 0.0781756, 0.051291056, -0.036474332, 0.05128169, 0.06459181, -0.0030765452, -0.039625935, -0.024143392, 0.028016338, 0.043724958, -0.013894216, -0.0028246169, 0.029903611, 0.04586536, -0.038096007, 0.052850377, 0.026921008, -0.00986412, -0.025974773, 0.029563613, -0.0026474993, -0.036934227, -0.07452686, -0.037185855, 0.050591603, 0.0061900313, -0.021489657, 0.026481235, -0.07051634, -0.006969327, 0.028808467, -0.0057295337, -0.043742564, -0.05309242, -0.028911984, -0.003292835, -0.014007171, 0.0053760093, -0.041083273, -0.020727409, -0.0051778266, -0.0017026596, -0.01852558, 0.028498834, -0.0008206455, 0.04375044, -0.041084923, -0.016057203, 0.06907928, 0.07662712, 0.035731137, -0.01780005, 0.011648135, -0.06637989, -0.038681425, -0.007133109, 0.10340675, -0.011386619, -0.0145383375, -0.016939152, -0.011718886, -0.018520191, -0.04815847, -0.05524515, 0.023528546, 0.07382256, -0.040794965, 0.022632532, -2.8926914e-05, -0.024332104, 0.031498954, 0.023799438, -0.015246645, -0.07243745, -0.033723485, 0.030146034, -0.03937038, -0.0067928256, -0.007332228, 0.030397583, 0.038332734, -0.0541708, -0.005197159, -0.02373128, -0.019256776, 0.025509015, 0.045973454, -0.064263545, -0.027178604, 0.06558614, 0.029591154, -0.013178519, -0.0057180994, -0.020480163, -0.04917304, -0.067987844, 0.11816681, -0.059977382, 0.025285022, -0.016665908, -0.06815333, -0.030728139, 0.049929734, 0.03818698, -0.022360949, 0.03006635, -0.025497053, -0.014113457, -0.0076463195, 0.020160232, 0.0038009868, -0.028369289, 0.0012235446, 0.00035470075, -0.057976387, 0.04420344, -0.050736543, -0.025072785, 0.058852628, -0.011813973, -0.051645424, 0.051892195, 0.027139615, -0.040773615, 0.020731283, -0.05315829, 0.044644188, -0.04901638, 2.173366e-05, 0.016970709, -0.056010734, -0.03711921, 0.03919586, -0.0812544, -0.032627042, -0.0078001088, 0.029310228, 0.047004066, -0.0028864555, -0.06707192, 0.020588245, 0.07053629, -0.079537846, 0.0086335065, -0.06959729, -0.026425207, 0.016668221, 0.058204263, -0.015637606, 0.0024037522, -0.010548086, -0.004606424, -0.04205549, 0.044103544, -0.019514369, 0.024757603, -0.020067036, 0.014129323, 0.019867755, 0.029834406, -0.014204266, 0.042708848, 0.01908732, -0.042129673, 0.017762164, -0.013948521, 0.015020735, -0.0174184, -9.36805e-05, 0.010250065, -0.028776193, -0.006163783, -0.033776507, 0.0045672385, 0.030361157, 0.026356503, -0.029975554, -0.016768726, -0.0009253464, -0.07028615, 0.008450696, 0.0028507141, 0.052040458, 0.04356912, 0.04888922, -0.055958193, -0.027177192, -0.042634066, -0.00057839137, -0.029010978, 0.054507557, -0.042846285, -0.009889935, -0.044034015, -0.04018177, -0.005494918, -0.023103006, 0.012423208, 0.01680622, 0.028382152, 0.04216757, 0.063524246, 0.034551278, -0.013991375, 0.005035154, 0.018620607, 0.04100553, 0.008788313, 0.020170083, 0.0030693798, -0.018032523, 0.046300396, 0.0760267, 0.09023394, -0.055215474, -0.030327793, -0.0070774574, -0.03659919, -0.031950805, 0.043632515, -0.017176617, 0.011211772, 0.033513617, -0.0037082632, -0.02587711, -0.021849046, 0.032332707, 0.008926121, -0.068846226, -0.040281963, 0.0032475244, -0.10194687, 0.0075222156, -0.029185984, 0.053937923, 0.010917037, -0.052311186, 0.014291749, -0.052770145, -0.013993233, 0.03888173, 0.012975893, -0.0058881138, 0.04749828, -0.020070415, -0.01630967, 0.005142914, 0.0032454047, -0.036800683, -0.01999791, -0.021281803, -0.025751233, 0.030463051, 0.03097683, -0.050796557, -0.058948584, 0.04904267, 0.030926347, 0.013279574, -0.0036425218, 0.014640905, -0.02565509, -0.0063739615, 0.006239622, 0.011413869, 0.0011569209, 0.014038742, 0.05747239, -0.04101077, 0.021889674, -0.031229904, 0.017071454, -0.055532888, -0.026532764, 0.04430165, 0.031473957, 0.012524432, 0.031784352, -0.03737365, -0.038118307, -0.011078727, 0.009752857, -0.10268187, 0.010968297, 0.004456631, -0.02579275, 0.008179929, 0.015937494, 0.0070345765, -0.036484852, 0.06389214, 0.001176882, 0.0072257165, -0.04902481, -0.018769179, -0.01110472, 0.02809633, 0.020283902, 0.0074103693, 0.00010073264, 0.0075536966, 0.011362285, -0.02256509, 0.034134608, 0.029659145, 0.009392177, 0.06179747, -0.006286135, 0.02132254, 0.033414878, 0.0046628322, -0.055970427, 0.024667164, -0.04001093, 0.07493103, -0.05670578, -0.043734275, 0.05312201, 0.0076035433, 0.0062722433, 0.051625654, 0.03188539, 0.01454577, 0.02749183, 0.006803942, 0.026043432, -0.007969329, 0.0345532, -0.0062980936, -0.0062720655, -0.0021871044, -0.017253837, -0.01000495, 0.020552374, -0.015138125, -0.063800834, 0.0038930762, 0.067814566, 0.004429486, -0.010852783, -0.019091867, -0.055902634, 0.0113262115, 0.020454142, 0.042904966, -0.05807148, -0.033247236, -0.013950927, 0.0017966683, -0.017716547, -0.0040398287, 0.033754677, -0.037161633, 0.0023864454, -0.0029973465, 0.011403185, -0.0110728815, 0.06565732, -0.026499886, 0.0049112355, -0.023007749, 0.031136788, -0.027906884, 0.049848277, 0.045993086, 0.008476285, -0.029743282, 9.3185234e-05, 0.050821956, -0.025091285, 0.0017218378, 0.009988834, 0.061631422, 0.019291986, 0.037329514, -0.029359667, 0.0002253431, -0.04563952, 0.0022251739, -0.03063499, -0.0023840957, -0.032282308, -0.003914648, -0.07633771, -0.011196928, 0.015189078, 0.00082540954, -0.0068683997, 0.015326916, 0.022403445, -0.023747128, -0.08043568, 0.02363496, -0.01721891, 0.027841477, 0.02367902, -0.0063253026, 0.044643488, -0.07004405, 0.009394576, -0.019476648, -0.035853557, -0.0024001852, -0.015131917, -0.033770062, 0.003510586, -0.018409135, 0.010459668, 0.061317947, 0.025455445, 0.019083178, 0.013823124, 0.030173883, -0.021205815, -0.033389896, -0.05830258, 0.0041694255, 0.052393258, -0.025643626, -0.03379695, 0.02656522, -0.0071016327, 0.042791393, 0.013263804, -0.051597953, -0.005335786, -0.024015851, -0.012120831, 0.04060026, 0.040054996, -0.014852408, -0.022562522, -0.059357725, -0.00046555168, -0.006252806, 0.044396665, -0.029164197, -0.05419299, 0.0017444468, 0.0030048657, 0.027793115, 0.011066868, -0.001001617, -0.0120674325, -0.007918785, 0.022252368, -0.049611405, 0.062119633, -0.0039184676, 0.018995807, 0.052421134, -0.079861194, 0.03281986, 0.007885097, 0.042030595, 0.013972288, 0.041282125, 0.08022558, 0.05107589, 0.0104753645, -0.036103845, -0.09000535, 0.053275246, 0.0080742845, 0.0026201278, -0.03890938, 0.08236286, -0.015070422, 0.004436234, -0.05611044, -0.0018331589, 0.01975869, -0.005321992, -0.009189395, 0.051257078, -0.029000003, 0.0426732, 0.006221949, 0.023127122, -0.01715111, -0.050450306, 0.058034662, -0.09486141, 0.0068143397, 0.023776712, 0.05007774, -0.0074603925, -0.020952191, 0.033990774, -0.09111591, -0.041886345, -0.0025437574, -0.04238691, 0.03242195, 0.054817222, -0.0043353224, 0.007312185, 0.034139417, 0.013097744, 0.02636473, 0.0035724326, 0.05106562, 0.02278397, 0.044321936, -0.056390017, 0.0120939575, -0.024216216, 0.0024612045, 0.06319281, 0.008266273, 0.027701752, 0.03565115, 0.0792174, -0.016826814, -0.041829605, 0.062481277, -0.020479009, -0.019142034, 0.034234922, 0.014929909, -0.045876045, -0.011550488, -0.01095343, -0.059140876, -0.021267109, 0.022856697, 0.01878189, -0.008105219, 0.020145893, 0.020953957, -0.05027771, 0.02456308, 0.018893998, 0.048063923, -0.016887888, -0.044813853, -0.028854158, -0.0028956241, -0.055322062, -0.01787464, 0.006984655, 0.040905196, -0.008523346, -0.026467059, 0.022781199, 0.0013045717, 0.01702919, -0.00022216183, 0.06467522, -0.029094208, -0.055217505, -0.0043075094, 0.05106653, -0.06707916, -0.005548858, 0.0033772285, -0.017379206, 0.005235752, 0.009744632, -0.024932329, 0.034538314, -0.002846294, -0.033724263, -0.007621077, 0.02499013, 0.032968424, -0.011575754, 0.030141126, -0.039931662, 0.031559817, -0.006522718, 0.041782282, 0.0019715072, 0.0041949567, 0.049353346, -0.019258406, 0.009176202, 0.04097196, -0.022276178, -0.030120164, -0.021551093, 0.03364606, -0.030980472, -0.04425383, 0.009127298, -0.051034283, -0.0127174705, 0.044063523, -0.016555522, -0.00383919, -0.057898138, -0.0028656463, -0.015720982, 0.050963268, -0.03654389, -0.026204588, -0.033295043, -0.006747414, 0.06788702, 0.0030436814, 0.02136507, 0.03141047, 0.010017938, -0.050201442, 0.038416516, -0.056139324, 0.040651105, -0.0010642918, 0.027676549, 0.060110826, -0.033866033, 0.033732273, 0.016002364, 0.024838138, -0.0016672255, 0.020280069, 0.009833029, 0.051357403, -0.0033338547, -0.03199584, -0.06225402, -0.009797889, -0.012989667, 0.0064869532, 0.014612073, -0.05953488, -0.022675054, -0.027453778, 0.053716667, 0.08140563, -0.0045103948, 0.009776824, -0.0246559, -0.004795343, -0.020290127, -0.020068008, -0.0055636615, 0.021088872, 0.00044894955, 0.07745185, 0.001452187, 0.029468095, 0.022431303, -0.06340278, -0.037505116, 0.02007804, 0.011146524, -0.044944614, -0.03361522, 0.01517019, 0.004531911, -0.006558009, 0.0077634403, -0.020807568, -0.014173772, 0.025500787, 0.033324476, -0.07928403, -0.015469788, 0.008443779, 0.021990037, 0.10120346, -0.015014098, 0.0147531135, -0.059999384, 0.020852026, -0.050878227, -0.007185648, -0.0593634, -0.02793773, 0.04006525, 0.07054443, 0.025301047, 0.034892574, -0.058559168, 0.04262376, -0.05213164, 0.00054808107, 0.104073256, -0.017977605, 0.030892288, 0.012748257, 0.060518976, 0.026425522, -0.0026393062, 0.015864756, -0.010413774, -0.042311877, -0.029695319, 0.09029676, 0.033596963, -0.010765623, -0.079255424, 0.016934287, -0.034575295, 0.05869288, -0.008386755, -0.007826048, -0.037157323, 0.06302784, 0.005708658, 0.042253327, 0.013324691, 0.007398906, -0.035864893, -0.0397617, 0.047309883, -0.023775851, -0.024980634, 0.03685501, -0.024444325, -0.018783007, -0.032550838, -0.002763451, -0.018201668, -0.03797974, -0.047581423, 0.009836023, 0.07407504, 0.010471919, 0.036032, 0.0105204815, 0.02505901, -0.031580616, -0.01564079, -0.002672984, 0.0008756097, 0.039367422, 0.002002263, 0.013980616, -0.055508073, 0.015679283, 0.0503094, -0.02054432 ] }, { "values": [ -0.011200116, 0.00544474, -0.03879489, -0.030036923, 0.008422477, 0.044161107, 0.0120358365, 0.055200607, 0.0111224335, -0.010255091, 0.008878237, 0.015738344, 0.043890834, 0.025287451, -0.08631952, -0.0555424, 0.015271331, -0.011447807, -0.085991845, -0.005240637, 0.04553041, 0.05887233, 0.010747114, -0.07472533, -0.0026430904, 0.024487888, 0.022398103, -0.05037178, -0.010428552, -0.007409865, 0.029753152, 0.023379588, -0.03321205, -0.050554577, 0.063660525, 0.0681436, -0.03789371, 0.060188875, 0.056633737, -0.013927052, -0.068226546, -0.043286677, 0.010159145, 0.05665323, -0.015175257, -0.007936682, 0.03400354, 0.024633162, -0.045982253, 0.029143635, 0.0050924807, -0.027095964, -0.044996172, 0.022700353, -0.012731395, -0.048909962, -0.060701232, -0.025796562, 0.05598619, -0.00063054723, -0.020987434, 0.027061539, -0.069741465, -0.00035608877, 0.016770465, -0.0069690216, -0.06359264, -0.043769266, -0.025608467, 0.0022132623, -0.019396933, 0.0015840495, -0.03576527, -0.023439834, -0.0018174452, -0.0067514856, 0.0039022719, 0.017387142, 0.009296226, 0.055751085, -0.024042113, 0.02716565, 0.06106218, 0.06649783, 0.02597317, 0.001665861, 0.047822293, -0.051485267, -0.041780584, -0.030705584, 0.080743656, -0.008761945, -0.010853664, -0.012816155, -0.003394907, 0.0037218777, -0.03620249, -0.043817893, -0.0050849193, 0.085316636, -0.05956549, 0.035562664, -0.022858618, -0.04598154, 0.027581105, 0.035707176, -0.010517818, -0.064417414, -0.04793126, 0.039100956, -0.03216794, -0.017477475, 0.008581075, 0.020450823, 0.0367147, -0.036529303, -0.018934967, -0.048176747, -0.034524597, 0.012819098, 0.042211525, -0.045988843, -0.0088650435, 0.06349747, 0.022183064, -0.011963483, -0.026789518, -0.025149057, -0.07278939, -0.071805015, 0.12095722, -0.08895291, 0.02096276, -0.04092165, -0.06247099, -0.015987827, 0.07340827, 0.00958787, -0.008965415, 0.036471922, -0.031187912, -0.0211032, -0.06128548, -0.00088089623, -0.0033328803, 0.010585466, 0.003530256, -0.026332939, -0.041047692, 0.036906898, -0.0041882917, -0.0280274, 0.04875176, -0.011224574, -0.060720462, 0.06326095, 0.029992659, -0.044487663, 0.020351665, -0.034230154, 0.06398257, -0.057388466, -0.015272668, 0.014483093, -0.08644123, -0.016809467, 0.041773736, -0.07826863, -0.013769782, 0.014572798, 0.0063327984, 0.018458089, -0.015436328, -0.07402436, 0.0050104344, 0.053935472, -0.0679273, 0.0066055087, -0.07432606, -0.030105352, 0.0057923053, 0.08200846, -0.024618203, 0.013578205, -0.008523801, 0.0058694305, -0.015835557, 0.025778655, -0.019909084, 0.019868216, -0.017103283, 0.00712212, 0.021967089, 0.022813493, -0.016621627, 0.029453162, 0.029571664, -0.06261534, -0.008457693, 0.0009491916, -3.77733e-05, 0.022427434, -0.015825696, 0.039795294, 5.674484e-05, -0.0007627853, -0.02801931, -0.000288856, 0.033249967, 0.01952698, -0.04762783, -0.0006145697, -0.001699311, -0.054245833, -0.0067240004, 0.010672629, 0.072287574, 0.031051628, 0.06022587, -0.03729363, -0.039545, -0.039544072, -0.015607053, -0.034653235, 0.06511304, -0.015075871, -0.0032192694, -0.024343327, -0.04584932, -0.013576616, -0.013244285, 0.024830623, 0.02890852, 0.023594208, 0.030692087, 0.060555186, 0.033829205, 0.0022680676, 0.015737595, -0.0015052602, 0.026835764, -0.024241896, -0.012968233, 0.00035847997, -0.010476091, 0.03326722, 0.06715747, 0.06594883, -0.036211945, -0.01180403, 0.0054444443, -0.037630994, -0.011951396, 0.043554094, -0.020474184, 0.017251907, 0.051108677, -0.008533618, 0.0024775295, -0.023994163, 0.018065192, 0.034122933, -0.04347626, -0.06065302, 0.018033488, -0.087430805, -0.0015369072, -0.031762246, 0.052440118, 0.010061921, -0.0533726, 0.018180138, -0.040539864, -0.009888565, 0.013077876, 0.01470823, -0.022421693, 0.023805814, -0.0067757755, -0.009000948, 0.020964533, -0.014010538, 0.00014881813, -0.0069352356, -0.037399493, -0.013109194, 0.013222419, 0.03835736, -0.048871383, -0.06238242, 0.02760755, 0.03399679, 0.01109534, -0.0191452, 0.020437798, -0.02703675, 0.009722324, 0.008838253, -0.018502578, 0.027501766, 0.015095603, 0.05146451, -0.05425133, 0.038055643, -0.02458992, 0.012205525, -0.038654197, -0.0018883286, 0.033392053, 0.021349577, 0.006624415, 0.03744242, -0.03842276, -0.02119475, 0.0023503064, 0.010563398, -0.10362822, -0.0046943757, -0.020814177, -0.026096983, -0.0008056361, -0.0045235474, 0.015504388, -0.028490134, 0.08094809, 0.01687557, -0.008025094, -0.007520232, 0.0033837708, -0.014411957, 0.013778577, 0.027837358, 0.014781988, 0.007604016, 0.0054085627, -0.0021335941, -0.021385914, 0.013236875, 0.048579168, 0.0070837275, 0.071615726, 0.009786533, 0.022346877, 0.04278691, 0.0027235718, -0.056131106, 0.033265043, -0.032599322, 0.038088817, -0.0858855, -0.025400668, 0.0782961, 0.007945823, 0.0034561262, 0.03755714, 0.0012990865, -0.0075662136, -0.010063447, 0.034914337, 0.026766477, -0.0034827606, 0.014742852, -0.009375627, -0.01344694, -0.0014868007, -0.018552175, -0.0066906665, 0.031923488, -0.0364024, -0.034928996, 0.024078803, 0.05703361, 0.014484458, 0.0004063098, -0.01970665, -0.02161048, 0.014324075, 0.021462517, 0.014797379, -0.07063906, -0.014669188, -0.01818853, -0.021932421, -0.015213561, -0.004153422, 0.01832826, -0.04162284, 0.023691338, 0.0010454046, 0.018627131, -0.016080637, 0.06885812, -0.017495856, -0.002105817, -0.03603145, 0.047699086, -0.014873551, 0.03580092, 0.029079476, 0.024962785, -0.0077455062, 0.012544178, 0.06532788, -0.03321531, -0.0010710978, 0.017053721, 0.070771776, 0.02480026, 0.041184362, -0.005882988, 0.027622622, -0.020883428, 0.022391578, -0.030959386, -0.007141971, -0.016184188, 0.007787919, -0.06747648, 0.009799745, 0.020492377, -0.020219075, 0.0042595034, 0.023292001, 0.0081568435, -0.0020422335, -0.06330623, 0.02050158, -0.0070161903, 0.020643577, 0.03578725, 0.007056818, 0.06449153, -0.064110614, 0.008946724, -0.020547569, -0.04611173, -0.012112978, -0.035062883, -0.03179816, 0.008792875, -0.040196422, 0.018652583, 0.0607026, 0.041976668, 0.011228011, -0.021189844, 0.021254018, -0.0037016845, -0.037938505, -0.05536608, -0.04426255, 0.038863648, -0.028082646, -0.034194555, 0.031334836, 0.00079263933, 0.021104936, -0.007871933, -0.0695563, -0.011187008, -0.030487258, 0.01119085, 0.058109168, 0.049651176, -0.02175552, -0.01023882, -0.050090883, -0.017256163, 0.007867197, 0.07014415, -0.019902647, -0.038309038, -0.0052132136, -0.009341269, 0.015899437, 2.3062386e-05, 0.031993292, 0.02281499, 0.0024925943, 0.038502824, -0.03720707, 0.048601806, -0.008196146, 0.028769238, 0.053658713, -0.057892308, 0.017277312, 0.036522847, 0.034941748, 0.036521733, 0.056023885, 0.069537476, 0.039253596, 0.025191803, -0.045513943, -0.07305652, 0.043742605, 0.024086436, 0.0032338477, -0.016325999, 0.078248374, -0.015611136, 0.0051211193, -0.078857854, -0.0005575887, 0.021121634, -0.020466346, -0.027328221, 0.037826836, -0.056440827, 0.052204926, 0.0006168068, 0.0058736214, -0.0029148231, -0.027034342, 0.05725973, -0.1255015, -0.009230183, 0.05471088, 0.045619562, 0.018656712, -0.021339284, 0.048370834, -0.06657117, -0.047950704, 0.001738188, -0.025218, 0.03142398, 0.059514895, 0.0007680295, -0.0007377839, 0.027588256, -0.0114083905, 0.04036055, 0.011137525, 0.04713799, 0.037257705, 0.05071203, -0.05902531, -0.006740958, 0.0031591735, 0.0145459, 0.05427076, 0.0017233562, 0.026733497, 0.04469655, 0.08001748, 0.006812386, -0.048799478, 0.05446636, -0.034310166, -0.023576181, 0.04180335, -0.0049040513, -0.03503378, -0.010223251, -0.014287141, -0.032949828, -0.03400816, 0.015743075, 0.04423394, -0.017939301, 0.020466192, -0.0063672047, -0.007420537, 0.011272735, 0.037358858, 0.032556627, -0.009275501, -0.040223565, -0.006457548, 0.011591955, -0.028925216, -0.012317448, 0.0044438755, 0.03735965, 0.0055819326, -0.037796196, 0.023544496, -0.0126372725, 0.012765741, 0.0033412238, 0.08683687, -0.022950904, -0.04049281, 0.0031599747, 0.032088302, -0.053204488, -0.0008114312, 0.014015329, -0.03014776, 0.032806553, 0.009388504, -0.027424349, 0.051200967, -0.0093153585, -0.015548025, -0.018673053, 0.017864542, 0.02356455, -0.031188527, 0.009363497, -0.012740352, 0.04207296, 0.013658989, 0.028144903, -0.019277882, -0.014308283, 0.039268296, -0.030815966, -0.008546416, 0.02642304, -0.014565003, -0.020885058, -0.028183289, 0.03986648, -0.036872257, -0.039430205, 0.022136766, -0.038697623, -0.002339386, 0.0028474126, -0.020134455, 0.022903886, -0.08653115, 0.012537516, -0.007952789, 0.04101189, -0.0131975785, -0.014217258, -0.043355267, 0.019711593, 0.03966653, -0.023057405, -0.0038967957, 0.028198758, 0.009465941, -0.06021888, 0.026000641, -0.04155661, 0.03598355, -0.0039504706, 0.02908991, 0.027212024, -0.04806338, 0.05470627, 0.034009993, 0.022038955, -0.0068923784, 0.047682744, 0.028697116, 0.046862684, -0.013335228, -0.020693967, -0.06629562, -0.008639552, 0.0053995443, 0.025400009, 0.030916959, -0.05017411, -0.00927182, -0.03973792, 0.061718777, 0.08424348, -0.029106086, 0.03069156, -0.020907694, -0.017197635, -0.022329321, -0.031420805, 0.0072406176, 0.03798301, -0.0012460493, 0.059350234, 0.011946693, 0.036883038, 0.01016892, -0.09107846, -0.03208729, 0.013184255, 0.003137517, -0.047649737, -0.032030307, 0.026065558, 0.020678237, -0.019893883, 0.019485056, -0.023858173, -0.019143835, 0.029379327, 0.037274364, -0.08262086, 0.016286565, 0.014241346, 0.029041419, 0.09147267, -0.05249666, 0.0017977661, -0.059184927, 0.011091118, -0.045738116, -0.012319957, -0.05390707, -0.04735772, 0.05211595, 0.045719218, 0.015839532, 0.057628598, -0.047345266, 0.055034097, -0.048806146, 0.0014234701, 0.07674489, -0.007951636, 0.019968314, 0.040784966, 0.060930252, 0.061649524, -0.0038889493, -0.005534326, -0.012481362, -0.031176656, -0.036636803, 0.08489524, 0.034008697, -0.04505299, -0.06034654, 0.018583704, -0.03176945, 0.058114354, -0.0030889981, -0.028277535, -0.031686097, 0.0486321, 0.011307577, 0.03211878, 0.0063271406, -0.008950218, -0.024641886, -0.03439644, 0.032026052, -0.013882167, -0.031532366, 0.0220047, 0.009836237, -0.0076864725, -0.016351929, 0.021991426, -0.04238349, -0.06509815, -0.04781444, 0.002200531, 0.06240168, 0.0042200703, 0.036557484, 0.029334944, 0.025482126, -0.05640159, 0.008411423, -0.00069569005, -0.014754937, 0.024142422, -0.013988333, 0.007822053, -0.060778625, -0.025536172, 0.05744306, -0.017863587 ] }, { "values": [ 0.003503076, -0.016083268, -0.064679965, -0.04457859, -0.0057046944, 0.031951535, 0.009838655, 0.0640913, -0.00088123156, -0.0028473302, 0.012871071, 0.040685527, 0.037501305, 0.015314098, -0.07737634, -0.04502088, -0.024355292, -0.020070864, -0.088587165, -0.010268161, 0.011643666, 0.05153659, 0.026077185, -0.06278796, 0.023034476, 0.029554771, 0.010373899, -0.022728711, -0.0099815205, -0.007648608, 0.04356355, 0.029440014, -0.0071130903, -0.03713525, 0.07610519, 0.059755094, -0.019682279, 0.0451423, 0.034915574, 0.0014958171, -0.06938298, -0.020805571, 0.007986187, 0.041072402, 0.004962983, 0.003096018, 0.0093861, 0.0014194592, -0.03650044, 0.033634167, 0.011151355, -0.016832257, -0.08776674, 0.013951314, 0.007306878, -0.037300702, -0.050829682, -0.03612876, 0.057890184, 0.016840845, -0.017990364, -0.0025822057, -0.03365624, 0.015002522, 0.028885229, -0.0120490715, -0.05484498, -0.033940304, -0.04555225, 0.009451618, -0.011747474, 0.016128676, -0.022379225, -0.013768533, -0.00056916603, -0.0043449025, -0.0036593545, 0.03055611, 0.0041378443, 0.050489422, -0.053330198, 0.017402528, 0.094778106, 0.039480146, 0.014694944, -0.01626066, 0.03579448, -0.053591363, -0.03331628, 0.001538616, 0.07597307, -0.015928436, 0.03331223, 0.010060416, 0.021820389, -0.016367782, -0.05335339, -0.075781025, 0.0056954143, 0.082809374, -0.068949506, 0.045911886, -0.019170681, -0.044347193, 0.05126363, 0.036869235, -0.010982738, -0.045051817, -0.04857619, 0.042716045, -0.018012235, -0.015868992, 0.022412037, 0.009673222, 0.042210102, -0.059949413, -0.014977621, -0.014830087, -0.025640376, 0.025576916, 0.04048355, -0.036904145, 0.0025913045, 0.08280343, -0.018977933, 0.012249925, 0.003592307, -0.029115248, -0.05033515, -0.0828233, 0.086806476, -0.08731074, 0.018432291, -0.015189634, -0.06294815, -0.008687018, 0.041519336, 0.031017255, 0.019239763, 0.020208556, -0.025918769, -0.028923864, -0.025089586, -0.0076229568, -0.0033537422, 0.030780122, 0.007179749, -0.003931574, -0.022903865, 0.017390706, -0.023712218, -0.04270366, 0.054829013, -0.009748476, -0.065511264, 0.034068372, 0.04761832, -0.04349466, 0.047521144, -0.04178106, 0.027395284, -0.06507703, 0.011431067, 0.02072478, -0.09686987, -0.031548467, 0.033596426, -0.091212355, -0.02706653, -0.0009496071, 0.019010447, 0.031814452, 0.024815433, -0.074963234, 0.017593717, 0.026253995, -0.076927036, 0.025074808, -0.04991263, -0.033501815, 0.018378424, 0.07112467, 0.0065401043, 0.008089379, 0.014792845, 0.0006586498, -0.009631083, 0.0534724, -0.04708754, 0.005829395, 0.008701241, 0.033765692, 0.045703493, 0.021062274, -0.014395998, 0.02704403, 0.030909393, -0.060126208, -0.0062100408, -0.008284143, 0.015755704, -0.019749485, 0.014008933, 0.039451636, 0.010782396, -0.037187245, -0.04000873, 0.003584966, 0.038910247, 0.023987707, -0.050615788, -0.025173282, -0.016285846, -0.060175225, -0.0012710462, 0.007911587, 0.0795687, 0.06711756, 0.08577458, -0.028351536, -0.018673168, -0.032398783, -0.02315564, -0.026025783, 0.037541434, -0.014991463, -0.03854129, -0.022833548, -0.05219699, -0.012344227, -0.01721054, 0.018041184, 0.026264837, 0.016743476, 0.02382451, 0.025639208, 0.008154842, -0.0048761214, 0.020634292, -0.029738666, 0.024619317, -0.002442687, -0.006190405, -0.0002419853, 0.010095865, 0.0035617086, 0.0571112, 0.07944188, -0.033524383, -0.03263958, 0.013829797, -0.020586284, -0.006779885, 0.06212728, -0.023549149, 0.030067688, 0.055392437, -0.012475356, -0.028919484, -0.033770382, -0.0024342758, 0.0030540759, -0.022514852, -0.041419845, 0.0013953875, -0.087880805, 0.017357457, -0.027645722, 0.019614434, 0.01207113, -0.040753618, 0.028308919, -0.027367473, -0.030738954, -0.0035642663, 0.003876405, -0.01583986, 0.04768067, -0.0055254623, 0.0027582403, 0.023031546, -0.0025738783, -0.020043263, 0.0059895953, -0.0026836593, -0.022908386, 0.008783317, 0.003563617, -0.049670085, -0.06995423, 0.05597596, 0.051320873, -0.0037075346, 0.01465942, 0.02759207, -0.022753278, -0.0010862964, -0.006891019, -0.0018446426, 0.02020816, 0.015800295, 0.06774003, -0.045294836, 0.03383185, -0.031622104, 0.03265797, -0.05044357, -0.0039052037, -0.009905208, 0.02450802, 0.004819385, 0.065299705, -0.04803604, -0.02967412, 0.01691654, 0.009739475, -0.07977137, 0.015677, -0.018889688, -0.048189808, -0.0003208064, 0.005387801, -0.0113879135, -0.02659893, 0.09470611, -0.0006510614, -0.0038278408, -0.0194924, -0.0035146864, -0.010199373, 0.030592287, 0.0185124, -0.014647042, -0.022559043, 0.008661659, -0.021179553, -0.0249565, 0.0012492029, 0.036712077, -0.011509055, 0.06973218, 0.0036491798, 0.04232902, 0.025551619, -0.011387177, -0.056323003, 0.050307866, -0.046623826, 0.048036765, -0.07359058, -0.039264366, 0.07531554, 0.01818095, 0.011684043, 0.037947726, -0.00034110819, 0.015362644, -0.012803752, 0.032118786, 0.011910824, -0.0017394031, 0.028590752, 0.007371627, -0.00547945, -0.004175594, -0.022156874, -0.0040689427, 0.040955827, -0.03067228, -0.022590384, 0.0016327455, 0.061572038, -0.001782412, -0.011703693, -0.008910401, -0.050963197, 0.0054235994, -0.0068027787, 0.030641295, -0.053763784, -0.028467251, -0.024316728, -0.018551666, -0.0123505695, 0.0025362219, 0.047340274, -0.04496053, 0.021561896, 0.007307596, 0.008450731, -0.00671997, 0.0753401, -0.011553103, 0.0012272546, -0.027164267, 0.04058354, -0.002585764, 0.04363294, 0.039783366, 0.022105236, 0.011735905, 0.03788151, 0.04553926, -0.009493957, 0.0029812064, 0.041264664, 0.055448007, -0.0021580842, 0.028976621, -0.0067597195, 0.037837762, -0.022900263, 0.018099139, -0.03129543, 0.014295528, -0.027210513, 0.010128952, -0.050847385, 0.0049708183, 0.05321428, -0.025130874, 0.018770657, 0.013287958, 0.039174486, -0.0070378524, -0.05873676, 0.032641437, -0.002146385, 0.030723738, 0.027935762, 0.023815969, 0.063632965, -0.061870344, 0.017428217, -0.014694633, -0.032087967, 0.005055734, -0.047651693, -0.03413989, 0.015752915, -0.026070071, 0.011206649, 0.06337046, 0.03376323, 0.0037958024, 0.005613265, 0.025585817, 0.0008733608, -0.04078651, -0.044829123, -0.05237119, 0.074958324, -0.04043704, -0.054182585, 0.035599355, 0.0027015607, 0.0054198294, 0.0075481744, -0.048865095, 0.014513199, -0.045953173, -0.009360484, 0.04840913, 0.050851483, -0.008541956, -0.020912746, -0.058430117, -0.005275965, 0.023463987, 0.05616292, -0.0070662093, -0.036131706, -0.019310897, -0.015849277, 0.0075615044, -0.006087205, 0.029164834, 0.005498125, -0.008739453, 0.02125972, -0.034132414, 0.05241677, -0.002923557, 0.0150357485, 0.052921854, -0.07560987, 0.0003827847, 0.025293166, 0.03906289, 0.018049609, 0.027222384, 0.05398133, 0.04135643, 0.011748629, -0.05408167, -0.05032376, 0.055654984, 0.04513034, 0.0029783729, -0.014205684, 0.076296866, -0.010450483, 0.024393186, -0.05999226, 0.013645375, 0.014902204, -0.010634299, -0.023115648, 0.029838262, -0.052421648, 0.03696306, -0.00015405097, -0.009834959, 0.006497753, -0.030419983, 0.06343199, -0.097080514, 0.02530451, 0.04052431, 0.049537905, -0.027056487, -0.050306667, 0.03492162, -0.06345137, -0.051025607, -0.012605215, -0.042951405, 0.0405043, 0.03574842, 0.010386124, 0.008031374, 0.040564466, -0.008471518, 0.028232975, 0.026632447, 0.053075943, 0.041065656, 0.024628416, -0.035604145, 0.008366085, -0.011413893, -0.004128421, 0.057138342, 0.034759585, 0.031456538, 0.03900823, 0.056763075, -0.022940066, -0.024121167, 0.05183096, -0.0140361665, -0.052397814, 0.02315079, -0.0017504542, -0.039667834, -0.01251234, -0.030231243, -0.039648112, -0.034261085, 0.037368104, 0.05228221, -0.030620687, 0.0066392296, 0.0008424422, -0.05183625, 0.029535057, 0.018262323, 0.04616787, -0.008906382, -0.02569613, -0.017602574, 0.008800631, -0.029337157, -0.030336427, -0.0024308164, 0.03745262, 0.0033355062, -0.019089557, 0.041934885, -0.00949189, 0.043866076, -0.00017543277, 0.07279723, -0.022404687, -8.1101185e-05, 0.0090355165, 0.027378362, -0.054385155, -0.011774083, 0.03788685, -0.043587126, 0.019460421, 0.019819658, -0.029129107, 0.059312534, -0.0160518, -0.0032023222, -0.030838048, 0.020266308, 0.01624597, -0.025375117, -0.0077768145, -0.049406175, 0.05003711, 0.012797843, 0.0311184, 0.0026881718, -0.0381191, 0.025112607, -0.038449172, -0.021801561, 0.023212854, -0.005773841, -0.029232927, -0.034028653, 0.023322493, -0.025189897, -0.059922546, 0.010154883, -0.029581575, 0.018499384, 0.01607044, -0.01416893, 0.0029232658, -0.07939651, -0.009221967, 0.0026001937, 0.03948241, -0.03412855, -0.017904356, -0.044350997, -0.0040498395, 0.023736473, -0.016226308, -0.024848687, 0.056502502, -0.0051722163, -0.048546597, 0.027251849, -0.053431623, 0.022326002, 0.025605284, 0.027236756, 0.047212776, -0.07111142, 0.050192043, 0.025800014, 0.057044778, -0.0150010465, 0.05128693, 0.0066511473, 0.0017580283, -0.02049484, -0.012513629, -0.05221398, -0.003332919, -0.0019202258, 0.014790903, 0.024053704, -0.05326167, 0.020188129, -0.029290501, 0.0626636, 0.07984064, -0.025672473, 0.0359762, -0.027583867, -0.005093586, -0.022961657, -0.064741835, 0.019710582, 0.015037552, 0.018478658, 0.06914686, -0.0015537259, 0.04469493, 0.01755114, -0.062366065, -0.021833388, 0.015360631, -0.011102748, -0.038224958, -0.04877891, 0.015664397, 0.022349676, -0.011844874, 0.03591136, -0.0011209756, -0.00017408538, 0.016955767, 0.050188366, -0.061268754, -0.0072148717, 0.02339662, 0.032072876, 0.09688625, -0.062021423, 0.018350843, -0.0626419, 0.0050264304, -0.023611728, 0.007963621, -0.055731837, -0.02817247, 0.056632042, 0.03221986, 0.011008704, 0.055427175, -0.045181934, 0.055360474, -0.03344843, 0.009170309, 0.07665653, -0.0048705135, 0.025976278, 0.03526966, 0.053407792, 0.052556943, 0.0223098, 0.01937954, -0.009221093, -0.019445466, -0.06573157, 0.07864236, 0.040839605, -0.024151178, -0.07065599, 0.033999097, -0.041483216, 0.05766594, -0.012225369, -0.025416654, -0.031213649, 0.08582783, 0.009265471, 0.035940915, 0.012181856, -0.021878209, -0.041391928, -0.048581187, 0.024694065, -0.0026899066, -0.009575299, 0.042565666, -0.0031259852, -0.008291455, -0.022157485, -0.0053145224, -0.034516763, -0.06891603, -0.046862, 0.022644209, 0.060879264, -0.0073434073, 0.045343, 0.023230506, 0.032435916, -0.036628336, -0.0014863493, 0.00034772625, 0.01785208, 0.05055978, -0.034810346, 0.010201296, -0.04650493, -0.018026043, 0.06855588, -0.026013892 ] }, { "values": [ 0.0044675963, -0.014381509, -0.04379627, -0.04047977, -0.027993899, 0.03587051, -0.0040313248, 0.07367028, -0.0024168605, -0.007661617, 0.0200184, 0.029261319, 0.033927068, 0.028650861, -0.070639476, -0.03954208, 0.024254018, -0.0617721, -0.079198614, 0.023934972, 0.0068000387, 0.07703393, -0.0056983856, -0.058309168, 0.04153197, 0.04469591, 0.004417424, -0.05599808, -0.011786183, 0.00541514, 0.050866645, 0.023504475, -0.013640223, 0.003752198, 0.046538908, 0.059210427, -0.019193241, 0.05045404, 0.057181418, -0.043561514, -0.063660465, -0.055093024, 0.023001453, 0.027704934, -0.01892687, 0.018850023, 0.017264728, 0.017114019, -0.022946477, 0.003339464, 0.01807356, -0.039355583, -0.048508108, 0.035510097, 0.020468304, -0.021568872, -0.054776143, -0.04595048, 0.056984935, 0.010356981, 0.0077578127, 0.029748699, -0.06818813, 0.00073057774, 0.011946788, -0.03242214, -0.048242755, -0.043642357, -0.03814728, -0.011017259, -0.03211032, -0.008075821, -0.04316531, -0.011944545, 0.00036836014, -0.018435093, 0.0087926425, -0.006988307, -0.008967058, 0.04708911, -0.009631628, -0.00020776576, 0.023154156, 0.053032555, 0.034390263, 0.006134518, 0.040866174, -0.0535967, -0.059028674, 0.007361775, 0.06519811, -0.0027160994, 0.00012383595, -0.0061740973, 0.054419, -0.041878667, -0.04919019, -0.041031335, 0.040125605, 0.04697048, -0.09408017, 0.053760376, -0.020531442, -0.05324337, 0.037727244, 0.067101575, -0.016854994, -0.058601107, -0.019408355, 0.03702142, -0.036545813, -0.02370935, -0.019567579, 0.036783457, 0.015996074, -0.05884673, 0.00931649, -0.028315358, -0.037396815, -0.0029597366, 0.023720318, -0.015795315, -0.011712039, 0.055693086, 0.0018501611, 0.011705955, -0.0063111195, -0.061043043, -0.03605005, -0.06479896, 0.06262459, -0.083992824, 0.0312878, 0.007090405, -0.06641687, -0.012758247, 0.04697748, 0.014801684, -0.017305383, 0.018910153, -0.009601772, -0.057198178, -0.028751647, 0.013393931, 0.022162015, -0.03155887, -0.013521021, -0.019740576, -0.024132563, 0.014747977, -0.020367531, -0.017981002, 0.027097894, -0.026636383, -0.041341227, 0.031631004, 0.041191306, -0.08505774, 0.030378718, -0.040618937, 0.019934738, -0.066860944, 0.02945555, -0.020384245, -0.033046532, -0.005479587, 0.019773958, -0.0814012, -0.08460216, -0.012312944, 0.022759514, -0.0001505277, -0.02819092, -0.077662535, -0.012440983, 0.019608893, -0.079015285, 0.007583287, -0.05805296, -0.039159883, 0.0334036, 0.094509654, 0.0108214095, 0.019351989, -0.01965352, -0.018515998, 0.010275581, 0.070707075, -0.020349711, 0.03801301, 0.0036001168, 0.037097096, 0.040176697, 0.009498565, 0.020688387, 0.030588295, 0.044110835, -0.06781293, -0.028193524, -0.0080022495, -0.0034944802, 0.046012025, 0.019308189, 0.056507997, 0.010810838, -0.02629544, -0.029441645, 0.0076459465, 0.052277952, 0.0257468, -0.024598787, 0.013854884, 0.0032516867, -0.07057997, -0.006414517, -0.027067054, 0.06081268, 0.043175824, 0.081575975, -0.06313031, -0.006286187, -0.03082444, -0.002812165, -0.01560065, 0.07451928, 0.007105465, 0.001341502, -0.021982267, -0.016669406, -0.035746522, -0.018482277, 0.008266825, -0.015483544, 0.008626006, 0.049701914, 0.059706993, 0.054224327, 0.0039777416, -0.01690225, 0.0014390212, 0.053497136, -0.008394391, -0.011741748, -0.02111111, -0.024669873, 0.03923932, 0.081530884, 0.076968394, -0.07474447, -0.029782776, 0.02957598, -0.03753814, -0.014476619, 0.02908137, -0.02262632, -0.00804153, 0.06255164, -0.0076716696, -0.012631398, -0.017673971, 0.020134779, -0.020450614, -0.026483858, -0.048571493, 0.0046406984, -0.047092956, 0.00083755614, -0.03085001, 0.03229669, 0.0071921614, -0.050703958, 0.020060815, -0.05826595, -0.0051634884, 0.004044042, 0.04268109, -0.020837406, 0.024006406, -0.012233354, -0.025998868, 0.05385643, -0.005254236, 0.016426533, -0.008827634, -0.020252217, -0.0109928725, 0.0019082683, 0.041826777, -0.037931815, -0.051333185, 0.052862346, 0.028691595, -0.0030708537, -0.005102769, 0.0721619, -0.044813488, -0.0053856676, -0.024956426, -0.026715817, 0.044097766, -0.018731311, 0.05026652, -0.05269357, 0.037527777, 0.0019607544, 0.012614311, -0.03276678, -0.026056184, 0.014501737, 0.015933283, -0.012668982, 0.059689682, -0.065986425, -0.04438703, 0.012026429, 0.020506555, -0.10439037, 0.026475862, -0.0059057986, -0.018934766, -0.0060857567, 0.012582131, -0.0048243785, -0.033918872, 0.08315458, -0.0010708987, -0.018008279, -0.023524998, 0.035033606, -0.012705326, 0.021672308, 0.042014446, -0.00070433243, -0.016288308, -0.012914868, 0.033987246, -0.041117866, 0.026162192, 0.006998228, -0.007929778, 0.042892218, -0.0035644488, 0.030392226, 0.014039235, 0.031802397, -0.04246683, 0.011793645, -0.017145336, 0.047900584, -0.08372647, -0.043469142, 0.06178833, -0.00301214, -0.019119546, 0.03250011, 0.014791909, 0.017418342, 0.019188154, -0.0070553897, 0.015425708, -0.02314017, -0.016269406, 0.0145166945, -0.0043581394, 0.011733818, 0.0025274868, 0.006771019, 0.044385053, -0.0403619, -0.012044477, 0.021256484, 0.059753582, 0.019398207, 0.016912289, 2.6452859e-05, -0.061043814, -0.015378087, -0.011827418, 0.0065945154, -0.047979623, -0.004747525, -0.00802267, -0.00062778813, -0.012654949, -0.009326545, 0.02175066, -0.040357336, 0.029111015, 0.017840525, 0.03101163, -0.026082858, 0.026572293, -0.05236939, -0.009273232, -0.010309524, 0.044065442, 0.015246839, 0.048589267, 0.005363289, 0.009246862, -0.012042516, 0.0004223383, 0.044519596, -0.057639953, 0.019320324, 0.06440908, 0.07033927, 0.022115665, 0.020599809, -0.030826729, 0.035287067, -0.026939265, 0.02500539, -0.005667347, 0.00070890965, -0.008524602, 0.0075417063, -0.052875653, 0.03218394, 0.0501688, -0.0026400285, 0.0152955735, -0.014538349, 0.04976845, -0.038959395, -0.068864614, 0.031159345, 0.020446114, 0.043742288, 0.024799513, 0.018429518, 0.053034157, -0.059003726, 0.01116555, -0.07765388, -0.043399695, 0.01392966, -0.03300879, 0.002118121, -0.010740862, -0.029284624, 0.01027265, 0.06266991, 0.05287155, 0.0127054155, 0.0022552884, 0.0033669327, -0.016422113, -0.025156695, -0.054019272, -0.050625976, 0.051255148, -0.014948623, -0.04220994, 0.017303256, -0.007358283, 0.045554906, -0.020384932, -0.037378833, -0.0059511666, -0.030768042, -0.0042344313, 0.05270754, 0.04841978, -0.03032404, 0.0123280315, -0.04077428, 0.008712843, 0.006027623, 0.08402888, -0.0044942223, -0.03430124, -0.011858967, -0.027930774, -0.005473378, -0.0048243655, 0.0059896726, 0.017533375, 0.0076164315, 0.01379345, -0.039363157, 0.052600052, -0.0044062715, 0.018949525, 0.047132544, -0.04603957, -0.02527766, 0.038961288, 0.04487722, 0.04359745, 0.041696243, 0.100237794, -0.0066811927, 0.0262407, -0.0011762761, -0.02722242, 0.050416395, 0.007350712, 0.021184728, -0.03155829, 0.08584948, -0.016115349, 0.01612514, -0.04034791, -0.030103937, 0.019193156, -0.037986457, -0.016641574, 0.031994186, -0.052676927, 0.052143283, -0.0042266594, 0.017790806, 0.026119335, -0.0060092374, 0.05076432, -0.095211655, -0.009299303, 0.052209858, 0.05163104, 0.02124751, -0.028547324, 0.02162154, -0.05087097, -0.050972536, 0.008006676, -0.067201056, 0.029246652, 0.039564338, -0.012556782, -0.0183527, 0.051443286, 0.0023937987, 0.028848454, 0.034023475, 0.020805525, 0.039884184, 0.03855037, -0.04259294, 0.00047161418, -0.02241325, 0.01935014, 0.05231164, 0.026211653, 0.022373993, 0.03324934, 0.066923805, -0.025706124, -0.03751518, 0.08360209, -0.016991248, -0.028577376, 0.042617664, 0.029026357, -0.015823316, -0.020251535, -0.02040084, -0.029629417, -0.051688854, 0.021771891, 0.06362838, -0.011870178, 0.0056685377, 0.002111169, -0.021543743, 0.027921934, 0.008144273, 0.028530994, 0.012884945, -0.028978568, -0.009397205, 0.030851059, -0.038037684, -0.004505251, 0.037163366, 0.020502051, -0.005735188, -0.0109621845, 0.029012855, 0.0037269762, 0.01784778, -0.024644503, 0.06940589, -0.04244737, -0.017589403, 0.007703159, 0.026886916, -0.07084918, -0.024951028, 0.048113886, -0.049955897, -0.010695377, -0.0063259723, -0.005277827, 0.040616766, -0.012632094, -0.011776312, 0.018278353, 0.02286701, 0.043749716, -0.027810607, 0.0024118742, -0.028735138, 0.046311557, 0.011361138, 0.02675845, -0.025845706, -0.046887238, -0.0019485672, -0.02993989, -0.01629699, 0.050509576, -0.017671157, -0.021438811, -0.01953994, 0.039994244, -0.024625296, -0.029799867, 0.0043055573, -0.04233619, -0.02630052, 0.009938563, -0.02531603, -0.007594209, -0.07413485, 0.047825597, -0.028532013, 0.06894109, -0.025132902, -0.006590843, -0.040926013, 0.027722072, 0.027442172, -0.02268163, -0.012988654, 0.038535383, 0.0009035487, -0.038611278, 0.010280984, -0.05051416, 0.035925936, 0.0019773638, 0.046517186, 0.044864915, -0.074465625, 0.05220406, -0.010675435, 0.025058772, -0.012369184, 0.06692534, 0.0070724604, 0.06308225, -0.024437085, -0.030705253, -0.038971733, -0.011781463, -0.0032497135, 0.011478487, -0.004215645, -0.050987743, 0.01573296, -0.021295004, 0.06915324, 0.08209538, -0.014137906, 0.02562927, -0.0018448333, -0.031991217, -0.012442947, -0.048223637, 0.008314743, 0.007943373, -0.0017551025, 0.05120801, 0.012106342, 0.039934754, -0.007732727, -0.019024821, -0.05358959, 0.03289385, -0.008151348, -0.049866952, -0.047238827, 0.007259705, 0.018452806, 0.0034195234, 0.032495026, -0.023937363, 0.018385263, 0.021505753, 0.012351409, -0.09596229, 0.008834403, 0.0130976625, 0.015589414, 0.054999124, -0.031879447, 0.029224375, -0.05165156, 0.038248554, -0.0404661, -0.0063926796, -0.044011943, -0.051111225, 0.060492594, 0.04566706, 0.007994507, 0.028096499, -0.040983506, 0.05919153, -0.046205938, 0.01861758, 0.07614252, 0.010899749, 0.024073891, 0.03937343, 0.06330346, 0.06101654, 0.010575829, -0.033573393, -0.024664642, -0.030522112, -0.01819237, 0.07224186, 0.037947495, -0.003873226, -0.057973366, 0.020492308, -0.014630455, 0.07923769, 0.025029955, -0.01596871, -0.03673889, 0.064584486, 0.03267732, -0.0049050767, -0.011194318, -0.010529403, -0.011848077, -0.06859372, 0.021818459, -0.011162864, -0.010166476, -0.002877673, -0.0050569996, 0.016391538, -0.009711256, 0.0026599818, -0.008458494, -0.047781345, -0.035376165, -0.0055254065, 0.047535744, 0.00059613545, 0.00448729, 0.006246577, 0.058711644, -0.033336807, 0.014788851, 0.008329825, 0.02193401, 0.0039196024, -0.012397307, 0.0056183194, -0.059572544, -0.01824514, 0.029464748, -0.042245936 ] }, { "values": [ -0.004610515, -0.0029138294, -0.026664684, -0.031765517, -0.028954862, 0.022770159, 0.013657594, 0.026648125, -0.0006264851, 0.0047825007, 0.019123776, 0.026024573, 0.051616468, 0.013854387, -0.0757654, -0.015917152, 0.012132795, -0.03799573, -0.092116244, -0.03481711, 0.014023309, 0.06564905, 0.013618423, -0.028375445, 0.00588567, 0.03793778, 0.0013684436, -0.051545586, -0.016420716, 0.002792414, 0.055016447, 0.04994561, -0.0374465, -0.015989926, 0.09735349, 0.042021144, -0.017790336, 0.045255143, 0.061217945, -0.019284196, -0.047555212, -0.004339754, 0.017410215, 0.020559119, 0.011075047, 0.014633348, 0.045241795, 0.0088474415, 8.771918e-05, 0.03174131, 0.024331605, -0.0035419655, 0.0036558115, 0.017281635, 0.028044457, -0.033624955, -0.07550494, -0.057258185, 0.05464187, -0.005050382, -0.0046681166, 0.019867858, -0.061968084, 0.005690319, 0.03895082, 0.00285409, -0.04099943, -0.043047927, -0.032569826, 0.004490607, 0.0020806612, 0.026041059, -0.02432943, -0.0373025, -0.016045023, -0.0093440665, -0.029781824, 0.027233789, -0.03973, 0.026733246, -0.036882445, 0.0021919424, 0.06554331, 0.050255656, 0.042105794, -0.010255658, 0.022616858, -0.06427711, -0.03677942, -0.028415902, 0.05903441, -0.00218337, 0.008402553, -0.003930935, 0.010591817, -0.034719285, -0.05861466, -0.059146136, 0.022536479, 0.100784235, -0.033352762, 0.03570129, -0.022302916, -0.055670924, 0.05777543, 0.033822715, -0.01204062, -0.053984333, -0.03537299, 0.05296569, -0.027226776, -0.029020038, -0.015809188, 0.042028032, 0.021544809, -0.035302162, 0.007875888, -0.0270476, -0.015489409, 0.008779371, 0.037351858, -0.0338015, -0.046347965, 0.040855136, -0.0046062493, 0.0015348516, -0.02501358, -0.03977613, -0.048229147, -0.09377999, 0.08075546, -0.09761184, 0.023981929, -0.005852375, -0.05959512, -0.03509514, 0.026776858, 0.031560622, 0.002674311, 0.021741392, -0.04698221, -0.038863976, -0.0060419533, 0.0034963065, -0.0069591445, -0.028883712, -0.0063914284, 0.024246002, -0.008954336, 0.022451542, -0.038439006, -0.008511116, 0.031971194, -0.017426558, -0.053659417, 0.041071624, 0.05846355, -0.049462944, 0.010799202, -0.049145926, 0.035146706, -0.06961372, 0.025713153, -0.0019457627, -0.06604727, -0.06730226, 0.02262799, -0.082124546, -0.036775295, -0.014898887, 0.06476035, 0.041248854, -0.008240278, -0.08866118, 0.034868315, 0.04793782, -0.050222352, 0.011805689, -0.017499281, -0.028802717, 0.033570766, 0.041185714, -0.0028196264, 0.017981542, -0.005217455, -0.03381412, -0.044851214, 0.07170861, 0.005409417, 0.03258687, -0.019524736, 0.001809678, 0.010686786, 0.019223973, 0.009617265, 0.03622429, 0.019885354, -0.056975733, 0.033873156, -0.02585706, 0.0404884, 0.008111826, 0.03562423, 0.04805071, -0.00788212, -0.044813573, -0.026976027, 0.015975945, 0.045708224, 0.045327272, -0.07386297, -0.008435378, 0.0125012845, -0.068922594, -0.020049749, 0.025266726, 0.03911247, 0.04209026, 0.026506826, -0.055687044, -0.007053645, -0.011310783, 0.0035195588, -0.0015506586, 0.06184924, -0.0029330193, -0.0257726, -0.058246747, -0.03922943, 0.0069646467, -0.02719033, 0.043447513, 0.0070822346, 0.009538261, 0.03434307, 0.038584195, 0.021596605, 0.013449098, 0.00794107, -0.002406677, 0.008189896, 0.0067174225, -0.0011468193, -0.0024609014, 0.0016281924, 0.041671116, 0.07159611, 0.0837737, -0.06780752, -0.02841334, 0.017488066, -0.035352882, -0.030799506, 0.053465255, -0.021813126, -0.009139014, 0.05878403, -0.045553204, 0.004112778, -0.035775896, 0.029302811, -0.017876787, -0.02825726, -0.040357325, -0.004686166, -0.061683726, 0.002877193, -0.018395457, 0.046318382, 0.023793282, -0.011812015, 0.030213637, -0.03708658, -0.029523904, 0.02568411, 0.009767615, -0.021821173, 0.027216025, -0.006579646, -0.014066981, 0.05754493, -0.016324837, -0.01867933, -0.020016667, -0.0034305844, -0.03089491, 0.01662401, 0.010942332, -0.06076436, -0.05203418, 0.07562315, 0.035240367, 0.012594813, 0.008533699, 0.033023953, -0.025546458, -0.01630527, -0.03465845, 0.014145864, 0.02084056, 0.0033196297, 0.052855406, -0.024944749, 0.008206744, -0.00814247, 0.019187303, -0.04239124, -0.04635844, 0.016743694, 0.036297858, -0.00883062, 0.06637713, -0.03783834, -0.043241836, 0.03506418, 0.03691667, -0.11057609, 0.011278741, -0.017900562, -0.0067961533, 0.008006733, 0.02615325, 0.0006997264, 0.0011646935, 0.06569207, -0.018737573, -0.016051289, -0.041720003, 0.012154629, -0.015857581, 0.020625714, 0.034006238, -0.015356794, -0.0076221568, -0.005939142, 0.019228611, -0.030309066, 0.0061557237, 0.032014683, -0.0057326322, 0.051180854, -0.01816967, 0.023924647, 0.0038708868, 0.0038206517, -0.060534496, 0.009863886, -0.034073308, 0.061516866, -0.0667617, -0.059499707, 0.063399635, 0.033257153, -0.015161993, 0.0452748, 0.00847496, 0.028930526, 0.027871845, 0.039309833, -0.003268643, -0.0008784998, 0.033097815, 0.012927083, -0.009039432, -0.0025636994, -0.026608858, 0.008353414, 0.009097914, -0.045144837, -0.032973748, 0.011658367, 0.070999235, 0.008610777, -0.006663098, -0.016706146, -0.071033746, -0.024725394, 0.002178737, 0.0020878408, -0.05516319, -0.025823623, -0.0012241249, 0.01881577, -0.011752171, -0.009096334, 0.018462043, -0.049500424, 0.0023658879, 0.010200946, 0.021538042, -0.0037337637, 0.06245416, -0.045159828, -0.024209863, -0.010738857, 0.011322069, -0.025601115, 0.046893515, 0.030141177, 0.0029922382, -0.013088885, 0.021137305, 0.06752816, -0.011318065, 0.020609725, 0.033568446, 0.0685256, -0.01322459, 0.008082409, -0.013537673, 0.041959673, -0.026169457, 0.004403097, -0.008861113, 0.0061930683, -0.030233214, -0.0160591, -0.029380113, 0.008616648, 0.04612048, 0.0003854046, 0.03301538, 0.017275564, 0.038428295, -0.048079833, -0.083536685, 0.029048076, -0.00598689, 0.028841928, 0.017192377, 0.0088822385, 0.06593425, -0.06624601, 0.008725401, -0.077968456, -0.04942141, 0.0046120808, -0.020560544, -0.0015772482, -0.024523282, -0.004164759, 0.01701384, 0.054584898, 0.026941895, 0.0023710832, 0.01218766, 0.04584126, -0.009007729, -0.044088367, -0.03539687, -0.00618765, 0.056137647, -0.019997517, -0.03962427, 0.015896717, -0.029321004, 0.036016494, -0.0028723357, -0.047720097, 0.010429712, -0.0069713844, -0.016232075, 0.0633373, 0.0545442, -0.009386726, 0.004896783, -0.03446375, 0.003964671, 0.030069714, 0.0520695, 0.009274021, -0.04891897, -0.0064582736, -0.002611411, 0.016011655, 0.013897261, 0.028255025, -0.0077872267, 0.010827371, 0.017437316, -0.045854308, 0.07575139, -0.00044819133, 0.025191354, 0.040559728, -0.084835224, -0.015825253, 0.0037901583, 0.035871662, 0.0032729823, 0.023008412, 0.08484504, 0.0067138197, 0.009293792, 0.0024263237, -0.04496082, 0.054969475, 0.020937432, 0.028796326, -0.038161952, 0.07734298, -0.012481773, 0.016868513, -0.028058518, -0.025723271, -0.0017184687, -0.02139966, -0.02477602, 0.047518373, -0.0280624, 0.017856697, 0.0160325, 0.02782191, -0.0025061937, -0.034187872, 0.06614756, -0.0843075, -0.021194272, 0.032681957, 0.056020636, -0.009711562, -0.030278474, 0.05597832, -0.07990481, -0.07294733, 0.00351209, -0.0589729, 0.014003069, 0.024256097, -0.017383344, -0.033363722, 0.020574931, -0.00782592, 0.032192197, 0.0298483, 0.045680642, 0.04364269, 0.0040413956, -0.0387117, 0.0045092106, 0.00010398131, -0.01060858, 0.065195255, 0.018029049, 0.024051132, 0.044456836, 0.08379934, -0.011018208, -0.05156363, 0.07014399, -0.02300582, -0.061892208, 0.044330295, 0.031240448, -0.049606718, -0.02284361, -0.029130947, -0.0486667, -0.050569605, 0.029564932, 0.029979343, -0.02400146, 0.009637079, 0.035705384, -0.038420886, 0.021376625, 0.01624494, 0.056038707, -0.004887806, -0.031895004, -0.0072306767, 0.0029325266, -0.036112495, -0.026714014, 0.019107051, 0.03904711, 0.014438918, -0.01385631, 0.020971103, -0.004414911, 0.027177963, 0.018553408, 0.082953945, -0.036000576, -0.044422705, 0.032749075, 0.025766265, -0.05715012, -0.03182681, 0.03056014, -0.031063955, 0.0057080123, -0.013851837, -0.025329879, 0.037029333, 0.029722039, -0.007573818, -0.016140118, -0.008565212, 0.019303981, -0.01717471, -0.013092603, -0.04930983, 0.02238982, 0.01718331, 0.03558882, -0.01963481, -0.016984375, 0.061065402, -0.037320897, 0.008789904, 0.04649136, 0.003232578, -0.03820648, -0.034556653, 0.042086776, -0.019491658, -0.050258696, 0.009144125, -0.060415532, 0.020710029, 0.054264516, -0.03403176, 0.00954714, -0.076365665, 0.018652773, -0.013533859, 0.06148735, -0.036850788, -0.01026398, -0.027593974, 0.008901257, 0.044094637, -0.022906817, -0.011579464, 0.03069025, -0.0066130892, -0.040903293, 0.03200549, -0.056945764, 0.02976319, 0.032667775, 0.02885323, 0.04423131, -0.05839031, 0.03650771, -0.005918985, 0.023332002, -0.024238247, 0.013985989, -0.015112428, 0.014866533, 0.0043190676, -0.042116057, -0.03470836, -0.0062237796, 0.013313605, 0.014939198, 0.018328357, -0.059545234, -0.0016803982, -0.03710579, 0.05171781, 0.09296887, 0.0026581935, -0.0049908846, -0.025802016, -0.0056632045, -0.0067565287, -0.07566389, -0.004883322, 0.01008502, 0.021555807, 0.08965968, -0.015878366, 0.029588277, 0.0058192476, -0.030496337, -0.0365335, 0.022926416, -0.0022386897, -0.031525828, -0.017325964, -0.0037829706, 0.030856347, -0.014843471, 0.016541105, -0.027927348, -0.004309605, 0.009431445, 0.0519717, -0.07675734, 0.0013931417, -0.0024119574, -0.00887914, 0.08162221, -0.03950034, 0.02572022, -0.071186334, 0.017767113, -0.04893648, -0.004596288, -0.06637407, -0.021195091, 0.039096873, 0.05598368, 0.000807459, 0.04016617, -0.06368044, 0.052854896, -0.048169307, -0.024293082, 0.074667595, -0.005965721, 0.026264172, 0.035197746, 0.06390557, 0.04295032, 0.036529858, 0.033333037, -0.012388251, -0.034097064, -0.008150657, 0.076007426, 0.03203818, 0.0017189032, -0.06823704, 0.004776735, -0.04715619, 0.068467, 0.007894981, -0.008273656, -0.031219693, 0.051406406, 0.024061544, -0.0050732708, -0.06327721, 0.0071437713, -0.010321379, -0.05374436, 0.037090123, -0.005023461, 0.010448678, 0.030736776, 0.0022077593, 0.004144236, -0.03496168, -0.0077531086, -0.012257906, -0.03746645, -0.052264147, 0.011865684, 0.0558441, -0.005975716, 0.01143904, -0.0034312773, 0.038670503, -0.002864362, 0.0022666731, 0.00041804626, -0.004798251, 0.031988055, -0.027055021, 0.018928355, -0.028887702, 0.011955331, 0.067818224, -0.04076939 ] }, { "values": [ 0.007499856, -0.016002048, -0.012499353, -0.005018165, -0.040315416, 0.049413323, -0.008262241, 0.047436446, 0.03226114, 0.01781306, 0.028663209, 0.014674843, 0.019114617, 0.032219183, -0.07222043, -0.04111027, -0.00466963, -0.043589577, -0.09930263, -0.028507473, 0.038936492, 0.051244583, 0.0029120552, -0.020804835, 0.03187894, 0.029523889, 0.021131331, -0.02522058, -0.028717734, -0.004743511, 0.047500294, 0.03912587, -0.04781343, -0.033588223, 0.05095203, 0.055324107, -0.0554517, 0.031206667, 0.043351386, -0.01671574, -0.07601756, -0.01636892, 0.033882756, 0.04232093, -0.0048743053, 0.01855735, 0.04803486, 0.016967392, -0.007914706, 0.018841876, -0.004146564, -0.032897014, -0.008722363, 0.016705884, 0.02077563, -0.05316749, -0.08836938, -0.007825812, 0.061609283, -0.010580167, 0.013747804, 0.029124705, -0.052053753, 0.016906898, 0.020937718, -0.01847728, -0.05452868, -0.01397121, -0.017823579, 0.024493344, 0.00095677364, 0.024467077, -0.032393172, -0.007963786, -0.012895671, -0.0026958094, 0.00015888007, -0.004999511, -0.050202727, 0.05517957, 0.01406983, 0.03194897, 0.044260014, 0.04631064, 0.040514108, -0.028623892, 0.043386336, -0.06728175, -0.034445707, -0.015509709, 0.035086513, 0.01320344, 0.0021156257, -0.00450935, 0.016446901, 0.0021402924, -0.06429059, -0.05464868, 0.037132002, 0.05978937, -0.03855066, 0.027347844, -0.040657334, -0.058324505, 0.052977532, 0.018870015, -0.038602214, -0.049395557, -0.061245948, 0.011396356, -0.023628416, -0.034067042, -0.01714495, 0.025970915, -0.0047197486, -0.024826704, -0.02735098, -0.03863981, -0.034652058, 0.020234436, 0.042656887, -0.015938783, -0.04751229, 0.031157464, 0.02545174, 0.02514061, -0.01024198, -0.021431044, -0.07446962, -0.062661186, 0.081856795, -0.08923929, 0.022553692, -0.005097675, -0.046262447, -0.039198466, 0.085064955, -0.0012931753, -0.002596405, 0.034536958, -0.03984566, -0.02818908, -0.033705503, 0.014717336, -0.0033419637, -0.019183582, -0.0028564783, 0.0012341982, -0.02933055, 0.054476276, -0.037977967, -0.024662882, 0.027731583, -0.014036401, -0.0553323, 0.055484273, 0.046476908, -0.06256513, 0.044032443, -0.050502613, 0.037262626, -0.04630664, -0.009283533, 0.008633312, -0.07961979, -0.02953655, 0.028998263, -0.09024455, -0.050119344, 0.020646796, 0.015955195, 0.02945601, -0.0253691, -0.07351596, -0.0062700235, 0.002423179, -0.029224547, -0.015377805, -0.04834081, -0.03301983, 0.027128274, 0.07566897, 0.0051024645, 0.024591703, 0.0027044192, -0.04486009, -0.033637248, 0.060498733, -0.005128214, 0.043350447, -0.020593917, 0.018600784, 0.025779558, 0.0014269508, 0.01066668, 0.025933197, -0.0030937712, -0.04374977, -0.012209231, -0.028318482, 0.022725321, 0.03025657, 0.018822499, 0.0683651, -0.010383859, -0.027546661, -0.03451748, -0.008930104, 0.029233744, 0.035408683, -0.077357285, -0.012100682, 0.015243702, -0.07217303, -0.0144398045, 0.014636628, 0.057225324, 0.032629475, 0.048140276, -0.035512954, -0.037753552, -0.03440121, -0.016142363, 0.015899206, 0.047097538, 0.023508254, -0.014152707, -0.03215343, -0.04344431, -0.016453138, 0.0021928288, 0.026512884, 0.012450375, 0.016312735, 0.025274739, 0.07349666, 0.0065509216, 0.027281072, 0.011929666, 0.018553754, 0.007288371, -0.0053960443, -0.003131986, 0.016655006, -0.01906555, 0.051314633, 0.058909588, 0.09776151, -0.03325243, -0.051259603, -0.014013387, -0.02744921, -0.027112871, 0.019080488, -0.008794519, -0.012874399, 0.057757482, -0.02862393, 0.0065141, -0.028699566, 0.018910479, -0.012214327, -0.023211485, -0.038850788, 0.009933954, -0.05385105, -0.012049116, -0.016343148, 0.043806568, 0.015016059, -0.021737197, 0.0029623436, -0.059192333, -0.030375391, 0.000315887, 0.016009038, -0.034940865, 0.0043024793, 0.0033227555, -0.014881558, 0.067330204, -0.022678759, 0.01131009, -0.011891748, -0.0015906229, -0.0149905775, 0.016487034, 0.019531377, -0.054095853, -0.05158872, 0.047779296, 0.03342546, 0.013779515, -0.0097764395, 0.020542547, -0.009833658, 0.01476201, -0.03607852, -0.015313675, 0.026037281, 0.005826465, 0.058131855, -0.036138013, 0.022579929, -0.00057594327, 0.00033926024, -0.04567754, -0.020768436, 0.02143302, 0.012620352, -0.017319173, 0.04827504, -0.028571337, -0.022869883, 0.010563572, 0.033115372, -0.1194213, -0.0031632266, -0.056231294, 0.012000734, 0.021393564, 0.009316688, 0.0063852565, -0.019927124, 0.093384415, 0.01247409, -0.007709476, -0.02937551, 0.0064512896, -0.032663025, 0.033453476, 0.051538415, 0.01876588, 0.0046827504, 0.00231141, 0.004194753, -0.025444373, -0.008954421, 0.06130038, -0.0027966378, 0.045944303, -0.027880264, 0.03777128, 0.030648239, -0.011506955, -0.062058073, 0.022345679, -0.013641215, 0.03313765, -0.07921486, -0.050481137, 0.07320079, 0.054093733, -0.009541992, 0.040685855, -0.016104346, 0.0018176857, -0.010317648, 0.03878873, -0.007021474, 0.0060666176, 0.01916293, 7.360205e-05, -0.00030486353, 0.0068486896, -0.0031641515, 0.0010213418, 0.029042, -0.031124145, -0.04971003, 0.030188227, 0.054970007, 0.02252776, -0.012233876, -0.018536108, -0.04045756, -0.020526486, -0.004855735, -0.0009157269, -0.0666717, 0.012103357, -0.0013905874, 0.012415498, 0.0013704492, -0.023817476, 0.04521475, -0.027363665, 0.025048418, 0.009942346, 0.016725888, -0.021182628, 0.049975935, -0.04493983, -0.015880158, -0.029255403, 0.036950156, -0.01705906, 0.03348728, 0.023149876, -0.002711941, -0.018262599, -0.0008501233, 0.06910021, -0.0297785, 0.013536855, 0.030355047, 0.070675075, -0.017247027, 0.015905192, -0.026912494, 0.029356273, -0.011094757, -0.007769024, -0.023147816, -0.009791435, -0.037282854, 0.006327222, -0.04036693, 0.016672766, 0.015336925, 0.004495925, 0.043718133, 0.019112242, 0.018258195, -0.035077214, -0.081508584, 0.010782811, 0.018695123, 0.046785012, 0.051471174, 0.011484438, 0.060517743, -0.07508097, 0.019918771, -0.064189255, -0.026318152, 0.00763266, -0.02165697, -0.01400566, -0.013033201, -0.025913728, 0.029812705, 0.0424101, 0.04242847, 0.019160643, -0.008079672, 0.036670648, 0.0062780837, -0.051656757, -0.06306443, -0.03504652, 0.019299434, -0.027358161, -0.018607251, 0.025101522, -0.030663686, 0.013656962, 0.016572693, -0.07998039, -0.011651779, -0.045313437, 0.0057066996, 0.0740163, 0.04782904, -0.018742349, 0.0031140756, -0.05693275, -0.0068135057, 0.035130456, 0.08159364, 0.0031603994, -0.03535527, -0.003955537, -0.028206134, 0.02086803, 0.009632552, 0.037932567, 0.024384683, 0.046751797, 0.026452662, -0.041294776, 0.059254527, -0.009779676, 0.03954564, 0.06742151, -0.08744504, 0.01071498, 0.031921197, 0.040105015, 0.038712133, 0.03581615, 0.094584264, 0.014965577, 0.020625297, -0.0055701276, -0.054463867, 0.012460647, 0.020414235, 0.018713994, -0.017067462, 0.055895526, -0.046699464, 0.023532495, -0.030476825, 0.0033303609, 0.008765996, -0.051615544, -0.0357823, 0.025646577, -0.03527012, 0.043260135, 0.023323143, 0.027522353, 0.012852791, -0.0030765464, 0.039310362, -0.09633997, -0.029447626, 0.04746488, 0.05012849, 0.01645306, -0.01651524, 0.058460463, -0.07004717, -0.06277654, -0.015119326, -0.028386079, 0.024638442, 0.026704052, 0.0041811285, -0.031264, 0.024273226, -0.017971685, 0.037147846, 0.031681933, 0.031039316, 0.044081133, 0.016331384, -0.060932938, 0.0018153578, 0.02387443, 0.0075996155, 0.044940356, -0.0034185578, 0.018968208, 0.019346701, 0.075946234, -0.0006911441, -0.071869805, 0.06757555, 0.0069074035, -0.058363266, 0.04635012, 0.014036091, -0.030788664, -0.015413561, -0.02600563, -0.06483548, -0.044183124, 0.027255736, 0.0542551, -0.01720658, 0.022475326, -0.0018059066, -0.008389955, -0.009022441, -0.0050273403, 0.04455346, -0.01047947, -0.04291008, -0.0041847667, 0.018267127, -0.030538129, -0.0125450995, 0.021408597, 0.02611546, 0.012153615, -0.042960204, 0.034398988, -0.0005506756, 0.024623137, -0.009320204, 0.08886448, -0.04418003, -0.033815753, 0.049712416, 0.018978195, -0.048196733, -0.03488738, 0.042718522, -0.02630482, 0.0008780074, -0.020566633, -0.0018741064, 0.026791122, 0.017342811, -0.0015416595, -0.01414767, 0.002970157, 0.035789922, -0.017754126, 0.0105187455, 0.012024172, 0.032871895, 0.007858469, 0.02099391, -0.02559446, -0.03262199, 0.056912277, -0.04767146, -0.009926034, 0.042936902, 0.008523684, -0.01205062, -0.036042113, 0.026916873, -0.012185228, -0.040004503, 0.04136335, -0.04746107, 0.026537837, 0.01734039, -0.026369747, 0.026338942, -0.0667492, 0.021286175, -0.029753037, 0.06438885, -0.018593244, -0.012462415, -0.017927457, 0.017780285, 0.040480684, -0.016917143, -0.00577853, 0.010670518, -0.023946395, -0.038283993, 0.026096877, -0.05066118, 0.044870656, 0.018721232, 0.022887895, 0.02810564, -0.06225665, 0.054841023, 0.0022421284, 0.021908885, -0.01215887, 0.04757918, 0.007004534, 0.04022466, -0.021046147, -0.043323644, -0.046696335, -0.011710391, 0.023513999, 0.03122061, 0.03273981, -0.027935721, -0.005513567, -0.03811816, 0.05225824, 0.106372386, -0.0111912275, 0.009407691, -0.012354979, -0.010029435, -0.004341637, -0.06778336, 0.023045711, 0.010938423, 0.033261035, 0.06221215, -0.014708494, 0.04812168, 0.012941315, -0.031932123, -0.022969574, 0.020017723, 0.005849868, -0.034882836, -0.033136737, -0.0071955794, 0.017826704, -0.009161008, 0.012899885, -0.039665204, -0.00244788, 0.016660346, 0.0493005, -0.09398763, 0.037887286, 0.024550786, 0.0037930228, 0.06963664, -0.055027243, -2.7808446e-05, -0.053247694, 0.045330342, -0.045086455, -0.021903729, -0.053282343, -0.05157744, 0.052374236, 0.049952447, 0.024871478, 0.046250444, -0.06789552, 0.032062136, -0.033986665, 0.010179856, 0.07718141, 0.012105975, 0.018383617, 0.05184614, 0.042406593, 0.05611431, 0.026730968, 0.0006945613, -0.012420905, -0.050092615, -0.024496898, 0.07459638, 0.024887295, -0.037516713, -0.047619116, 0.011732693, -0.03806277, 0.07317456, 0.009972465, -0.01185545, 0.01597689, 0.044701234, 0.044223458, -0.004887169, -0.010947043, 0.0046774065, -0.011690399, -0.039648637, 0.012945204, -0.0119876275, -0.011206459, 0.008975106, 0.0062415735, 0.014415215, -0.010809097, 0.02555662, -0.023109058, -0.053603973, -0.056769457, 0.0058876057, 0.0428516, -0.002094091, 0.023053724, -0.009708295, 0.04159795, -0.050398316, 0.027585058, 0.008202453, -0.0060555693, 0.023641577, -0.03661519, 0.02218825, -0.07766779, -0.017340614, 0.058749925, -0.061564464 ] }, { "values": [ -0.018646251, -0.017804364, -0.037670285, -0.04433142, -0.025456615, 0.037358146, -0.00015801536, 0.050421733, 0.022103254, 0.013997571, 0.017525556, 0.02649514, 0.029058853, 0.028812177, -0.06170312, -0.05084106, -0.008657845, -0.035701726, -0.07740591, -0.03680603, 0.02038491, 0.048818205, 0.0004069913, -0.038267784, 0.005007592, 0.050603908, 0.006418399, -0.03199401, -0.015596007, 0.0036313918, 0.0417064, 0.03191745, -0.046442397, -0.0056142583, 0.08778367, 0.02359418, -0.025165759, 0.040502425, 0.027180972, -0.017733542, -0.061969556, -0.011615973, 0.033509042, 0.026972927, -0.0036411937, 0.024397526, 0.05622513, 0.016295869, -0.026904756, 0.04159015, -0.002543127, -0.008132106, -0.0015391655, 0.004858855, 0.013097288, -0.032156136, -0.066054985, -0.04744931, 0.057934687, -0.0136694675, 0.0005838924, -0.002766051, -0.033883397, 0.004944275, 0.03961538, -0.032818537, -0.024698991, -0.026137149, -0.034361713, -0.0013603714, -0.00885823, 0.028626455, -0.028575268, -0.014296612, -0.010147331, 0.0038528387, -0.0009128195, 0.0263755, -0.051106777, 0.02976138, -0.017254042, 0.0324615, 0.06615406, 0.058518577, 0.038906835, -0.04070092, 0.013398519, -0.04061029, -0.010591227, 0.00047750294, 0.0318927, -0.011462629, 0.0051348764, 0.003712021, 0.02386642, -0.0025503968, -0.061912697, -0.027241996, 0.041542243, 0.069887064, -0.016366262, 0.047897212, -0.040682446, -0.036394138, 0.0445267, 0.0031459106, -0.026503036, -0.06348012, -0.06576774, 0.012667582, 0.00070854824, -0.037738487, -0.036637116, 0.007847201, 0.021258026, -0.02752499, -0.027988255, -0.02018715, -0.040339835, 0.01576571, 0.057790652, -0.009772631, -0.040832523, 0.022425044, 0.02257196, 0.032255024, 0.014091641, -0.018945202, -0.057539675, -0.056554243, 0.07443877, -0.07760146, 0.014381308, 0.02730342, -0.040673334, -0.03294327, 0.042494956, 0.010303877, 0.009165939, 0.028543916, -0.01806226, -0.022967758, 0.006980751, -0.01015096, -0.0026587555, -0.020477079, -0.0007247651, 0.0075553274, -0.051316213, 0.03930693, -0.06827809, -0.01491445, 0.039473027, -0.021640567, -0.040595237, 0.0016441739, 0.04192605, -0.06379696, 0.032653414, -0.05646742, 0.019624103, -0.06067517, 0.024808494, 0.031844467, -0.07502336, -0.029322386, 0.04769865, -0.09715786, -0.018101344, 0.010806037, 0.04501207, 0.040448427, -0.03210278, -0.107881784, 0.02266394, 0.007363104, -0.041056145, 0.016588626, -0.026369348, -0.024012623, 0.05199253, 0.03837838, 0.025309246, 0.015805807, 0.011904698, -0.021060752, -0.048868813, 0.07915705, 0.013058926, 0.02555926, -0.010980592, 0.025940215, 0.029349146, 0.0046370514, 0.010777911, 0.021930845, 0.002223346, -0.054000802, 0.012811812, -0.046258245, 0.047557835, -0.005024905, 0.0682683, 0.060770664, -0.02796953, -0.044674538, -0.047429018, -0.025148524, 0.036862362, 0.056040503, -0.07710711, -0.032749686, 0.0018928197, -0.07872467, 0.012611556, 0.008819225, 0.051613834, 0.058864962, 0.023111943, -0.050051406, -0.018122211, 0.0005338327, -0.0030141498, 0.02147735, 0.042851478, 0.011368969, -0.011713525, -0.027579831, -0.06292596, -0.009235655, -0.024958346, -0.008087965, 0.0025890216, 0.014861865, 0.008901062, 0.07597891, 0.005904231, 0.03796377, 0.033071283, 0.020633548, 0.023730887, 0.018940011, 0.0075555677, 0.011769875, -0.016394584, 0.028625842, 0.06876822, 0.1199427, -0.045242317, -0.048575647, -0.040557224, -0.029216923, -0.0040791123, 0.022647448, -0.016178107, -0.018974276, 0.058923747, -0.039206218, 0.00086195994, -0.04185961, 0.01496928, -0.035991922, -0.020970806, -0.040363956, -0.0053482596, -0.07928566, 0.01072304, -0.02055928, 0.022339206, 0.02465438, -0.009590266, -0.000728748, -0.05426106, -0.037807312, 0.005553094, -0.010955732, -0.041866634, 0.027916651, -0.013865925, -0.019759824, 0.057393543, 0.00048560553, -0.0061023715, 0.014980696, -0.0049439236, -0.014823634, 0.0070167226, -0.008125707, -0.04221435, -0.06795625, 0.056534685, 0.05719009, 0.019539697, 0.018404413, 0.029502388, -0.020951549, -0.0042562177, -0.028236017, 0.011562116, 0.013272135, 0.015556398, 0.051660948, -0.032541435, 0.027667971, -0.007186778, 0.023678267, -0.042282872, -0.036017608, 0.0103541, 0.02457979, -0.0060087116, 0.057396967, -0.03570397, -0.02688294, 0.008146567, 0.03086474, -0.108147986, 0.009797304, -0.05026633, -0.014487544, 0.02870557, 0.03893251, -0.0092218835, -0.025822425, 0.07309745, 0.0069235256, -0.0002190323, -0.030279698, -0.0017871938, -0.04227751, 0.042548385, 0.023343792, 0.006012652, -0.04119803, 0.0059951353, 0.010422432, -0.043156046, -0.0051944233, 0.05614164, 0.0062960284, 0.04459968, -0.016788585, 0.033366375, 0.0111187, -0.014352192, -0.054282606, 0.002590205, -0.00040310778, 0.06377265, -0.067863196, -0.051272362, 0.06299958, 0.059332225, -0.0049425876, 0.03470661, -0.0046885004, 0.013175045, 0.019438814, 0.026021356, -0.022572806, 0.0070794313, 0.022755336, -0.00667988, -0.011036765, -0.016279494, -0.020021059, -0.002008152, 0.011237129, -0.022602674, -0.049975526, 0.010177056, 0.068682015, 0.014736843, -0.01716208, 0.00072647433, -0.07189588, -0.016014555, -0.013144117, 0.008020246, -0.041272037, -0.02394348, -0.021511832, 0.030660681, 0.0078113405, -0.010967272, 0.048504855, -0.04088126, -0.00016043085, 0.004555122, -0.008064639, -0.026114082, 0.05196571, -0.03390202, -0.023296691, -0.03496087, 0.028331244, -0.015958996, 0.036746237, 0.02807216, -0.0075817257, -0.0119739985, 0.013925846, 0.048043545, -0.012913082, 0.016448945, 0.025419626, 0.06614017, -0.025651168, 0.01772209, -0.0038591926, 0.034517802, -0.028046152, 0.018286848, -0.033140544, 0.0013552097, -0.035033554, -0.013697005, -0.037087806, 0.0018894289, 0.02612368, -0.0030182363, 0.05108322, 0.015814785, 0.059842467, -0.011540253, -0.06831646, 0.030915625, 0.0043644, 0.053058617, 0.0486302, 0.021390548, 0.06435479, -0.0751487, 0.031061297, -0.034303077, -0.038196772, 0.011646011, -0.0067188903, -0.0013205122, -0.01038367, -0.019833578, 0.01846169, 0.050317038, 0.044362675, -0.002338086, 0.00889895, 0.035434958, -0.0049241963, -0.030408831, -0.061273586, -0.012408287, 0.030775236, -0.020791195, -0.034276936, 0.042459093, -0.024643606, 0.02776609, 0.013049895, -0.083062835, -0.0029602032, -0.033371076, -0.018034365, 0.079675704, 0.069618, -0.020771446, 0.0023992734, -0.041909944, -0.0011857393, 0.034121975, 0.071539976, 0.016253214, -0.036865793, -0.023391595, -0.015028506, 0.012857254, 0.018804897, 0.057129208, 0.010945062, 0.028454889, 0.025577994, -0.05161982, 0.06617673, -0.024565095, 0.046639033, 0.052126214, -0.076983884, 0.0041577267, 0.008197239, 0.011686267, 0.02580285, 0.02337464, 0.09674151, 0.032938525, 0.011237142, -0.012429234, -0.055734213, 0.032562986, 0.017770518, 0.018527746, -0.046737026, 0.073501386, -0.032119095, 0.037727408, -0.019799294, 0.0051454045, -0.0006071206, -0.020551922, -0.03323311, 0.03454146, -0.041744348, 0.017570384, 0.034102764, 0.04998188, 0.013713803, -0.026528452, 0.06426053, -0.08074332, -0.011526669, 0.021330863, 0.067262806, -0.030136194, -0.02259814, 0.04462462, -0.08121733, -0.06144222, -0.0030934338, -0.07916531, 0.02105921, 0.019969538, -0.008201227, -0.01742923, 0.024796184, -0.018069759, 0.043299142, 0.02439591, 0.045770943, 0.038109004, 0.005278401, -0.037364244, 0.0210663, 0.023523785, 0.003506571, 0.066363886, 0.017803866, 0.019558905, 0.029535573, 0.062502004, 0.0029716871, -0.057145674, 0.09964852, 0.012023743, -0.065027826, 0.03575796, 0.0036904828, -0.020273907, -0.010873467, -0.025311215, -0.06757841, -0.03688282, 0.030095639, 0.04948495, -0.014612099, -0.001279947, 0.028862966, -0.023063706, -0.014403991, -0.0021794855, 0.02857939, -0.030988395, -0.037801992, -0.014169151, 0.0031362297, -0.03114237, -0.017716361, 0.021442723, 0.04410828, 0.00029256826, -0.007563869, 0.045635376, -0.00772337, 0.029314931, 0.009413475, 0.080613956, -0.04898851, -0.03148861, 0.037177216, 0.040370677, -0.060840167, -0.023515802, 0.05701751, -0.029755298, -0.03693661, -0.017471679, -0.0021769737, 0.023392892, 0.007610999, 0.0041994443, -0.029454505, 0.007861537, 0.0118326135, -0.019209003, -0.012991399, -0.015684152, 0.008849909, 0.018002648, 0.044562615, -0.010281853, -0.029889073, 0.08049082, -0.023419004, -0.0010154769, 0.040105734, 0.010085203, -0.039417036, -0.01849516, 0.036678325, -0.010556323, -0.050369214, 0.04158882, -0.045247395, 0.0033111912, 0.041523866, -0.0065196375, 0.021214785, -0.041551206, 0.0045457976, -0.023791151, 0.06568115, -0.0268775, 0.006381996, -0.034111865, -0.00035322082, 0.06648027, -0.03453309, -0.0046335966, 0.008969902, -0.035682812, -0.04151118, 0.021299612, -0.06935434, 0.051593274, 0.023430118, 0.025892606, 0.06645481, -0.057484772, 0.03496514, -0.014329221, 0.027651375, -0.023949113, 0.029184522, -0.020685287, 0.008652809, -0.0092878165, -0.03340474, -0.03756502, -0.0016356872, -0.0009490687, 0.023499196, 0.025708562, -0.0057781884, -0.0038565411, -0.030705417, 0.06325316, 0.10663585, -0.0041946988, -0.008111217, -0.03314177, 3.2321816e-05, -0.00022612084, -0.05903788, 0.01177514, 0.0046585235, 0.011685256, 0.04782941, -0.01578279, 0.0420615, 0.00020591765, -0.0397927, -0.040936515, 0.030713942, 0.013230055, -0.04159029, -0.037536446, 0.0044120816, 0.035134707, -0.004397736, 0.0117077185, -0.013173884, -0.00028697966, 0.050157916, 0.05716803, -0.07032844, 0.029376088, 0.035555463, 0.007956966, 0.0859262, -0.035278156, 0.03682852, -0.056175966, 0.038506687, -0.036919117, -0.015653692, -0.036474474, -0.03037784, 0.028914126, 0.05323436, 0.017290926, 0.008887516, -0.06499157, 0.04124757, -0.043062415, -0.0053282473, 0.06492804, 0.012635085, 0.014950857, 0.025938476, 0.025672907, 0.038713057, 0.03213093, 0.0017262573, -0.007529222, -0.033292815, -0.032940503, 0.07270166, 0.025506245, -0.014303893, -0.062331304, 0.020282317, -0.04576657, 0.06709513, -0.0048575527, 0.018195134, 0.0069115665, 0.062439993, 0.024357596, -0.0055888197, -0.033396628, 0.012560368, -0.022563642, -0.026547948, 0.028890917, 0.0009336201, -0.011998339, -0.008521609, 0.012350058, 0.0014250786, -0.029223725, 0.0042877025, -0.005159639, -0.03762967, -0.05138443, 0.029368274, 0.037844226, -0.015109664, 0.045562044, -0.01914515, 0.026329502, -0.021307126, -0.0027334315, 0.01213667, 0.014514118, 0.029763632, -0.015706155, 0.03622897, -0.06392514, -0.011980216, 0.076506175, -0.07362721 ] }, { "values": [ -0.00975475, -0.024571704, -0.022850076, -0.05864183, -0.035355587, 0.032355808, -0.008168962, 0.05141703, 0.030199965, 0.026807114, 0.020059185, 0.020125316, 0.017228918, 0.020060109, -0.053376395, -0.04771245, -0.0055784797, -0.04881067, -0.09364254, -0.02922036, 0.040629145, 0.047360666, -0.010151395, -0.018491771, 0.0072494764, 0.042271487, -0.010236412, -0.04523763, -0.013080092, 0.026551107, 0.067685135, 0.050006982, -0.03503155, 0.0077953264, 0.04768277, 0.047992945, -0.024213452, 0.041102692, 0.03333341, -0.05114395, -0.07937098, -0.037345283, 0.02510803, 0.0053877505, -0.00019776814, 0.011357559, 0.05636319, 0.0005310296, -0.026744556, 0.014665721, -0.0012209532, -0.019537827, 0.006256521, -0.0062860874, -0.020436728, -0.037283346, -0.04607055, -0.012396987, 0.061252926, 0.011204411, -0.020581929, 0.010294544, -0.0551093, -0.007820468, 0.032596022, -0.019981775, -0.039536733, -0.005220159, -0.039650377, 0.0022445533, -0.0542319, 0.016076699, -0.03643307, 0.010538008, -0.017762791, -0.010653672, 0.0090928655, -0.0024726447, -0.027683722, 0.026567336, -0.0060685985, 0.038018133, 0.050289832, 0.07118556, 0.02438109, -0.028264424, 0.016959844, -0.020527966, -0.018700115, 0.012842687, 0.038885683, -0.022187617, 0.010774115, -0.021371234, 0.026585966, -0.009078222, -0.043966632, -0.03640823, 0.058730695, 0.058666646, -0.027890192, 0.042645592, -0.030264061, -0.024154574, 0.034233864, 0.02858075, -0.030649064, -0.059069853, -0.07795704, 0.03643653, -0.006765635, -0.042484462, -0.007656253, 0.005350578, 0.008852097, -0.03569681, -0.016912889, -0.007253403, -0.036164608, 0.024688506, 0.0063124485, -0.006972235, -0.052741636, 0.046402894, 0.010049237, 0.031071635, -0.0058181, 0.005108417, -0.06760278, -0.041444913, 0.08928819, -0.06618366, 0.029384218, 0.002370005, -0.033211213, -0.014658586, 0.06917605, -0.0011298085, -0.021034317, 0.05267479, -0.007841069, -0.048891578, -0.02487087, 0.003500252, 0.0153193185, -0.011646543, -0.011070713, -0.0041477196, -0.08337776, 0.06809737, -0.06432572, -0.013011309, 0.04795046, -0.013875592, -0.038158268, 0.0061617875, 0.029749578, -0.036917955, 0.05453923, -0.05309597, 0.023003241, -0.054019675, 0.0346879, 0.037291244, -0.046679616, -0.014576699, 0.031679988, -0.07094328, -0.046654887, 0.038896475, 0.038545005, 0.03793488, -0.050551627, -0.0845184, -0.0131394, 0.013228184, -0.058788124, 0.009056803, -0.04740624, -0.035529636, 0.054271508, 0.07138494, 0.028123004, 0.032861527, 0.024222694, -0.029956875, -0.03326328, 0.061769366, 0.019068146, 0.031708688, -0.013619224, 0.053273864, 0.004967994, 0.018581612, 0.0038203832, 0.0167584, 0.028401842, -0.05357429, 0.014448315, -0.037885346, 0.02106356, 0.0069626165, 0.053853698, 0.07111778, -0.038579855, -0.028617151, -0.03683321, -0.010303297, 0.06637104, 0.016705042, -0.03907292, -0.035231095, 0.0069263717, -0.054154523, -0.002666922, 0.015140566, 0.067039914, 0.042437147, 0.044886783, -0.044473097, -0.03753205, -0.0040269755, -0.0060074893, 0.012275442, 0.070747726, 0.004826083, -0.006157526, -0.027712587, -0.044463806, -0.041613717, -0.006703076, -0.004140662, -0.011456615, 0.037123114, 0.027497256, 0.06568737, 0.04200104, 0.024665948, 0.013706694, 0.0539053, 0.033928327, 0.0041052615, -0.022964763, -0.006234149, -0.026800264, 0.0355417, 0.051781833, 0.083498515, -0.053491216, -0.06481813, -0.020652102, -0.046568755, -0.0039513693, 0.030210843, -0.021092137, -0.0027718055, 0.06715669, -0.029112997, 0.00605612, -0.02788719, 0.010400027, -0.02011593, -0.042762753, -0.019195301, 0.0042185667, -0.07673765, 0.007263341, -0.020923343, 0.02149931, 0.012786749, -0.01870696, -0.004967227, -0.052562963, -0.026443765, 0.021489184, 0.01389259, -0.06317701, 0.0070531825, -0.022257792, -0.018098528, 0.05297872, -0.007799167, 0.028443627, 0.008884294, -0.012321864, 0.005818326, -0.017075617, 0.031228988, -0.037835207, -0.058848076, 0.018087057, 0.06559727, 0.012982012, -0.0016996461, 0.053653166, -0.031260222, 0.006634788, -0.024886379, -0.017017005, 0.021832805, 0.009421653, 0.06370022, -0.0202456, 0.04147009, 0.006161847, 0.0058999564, -0.03995858, -0.0031015198, 0.012047933, -0.0049889334, -0.015504642, 0.019644707, -0.04200654, -0.06238092, 0.011358202, 0.017276583, -0.09668402, -0.0109830415, -0.034993995, -0.0076829446, 0.009262791, 0.008727172, 0.020019008, -0.027065892, 0.07583111, 0.007777269, 0.0065363226, -0.019488074, -0.014813873, -0.04174302, 0.036354143, 0.031167928, 0.001280947, -0.0331075, 0.020559538, 0.04265063, -0.048600517, -0.0027407196, 0.046425708, -0.012464129, 0.06120974, -0.027604759, 0.030843617, 0.041092563, 0.016404865, -0.07488044, 0.0018391337, -0.02283732, 0.06091524, -0.078772396, -0.0440202, 0.043942206, 0.05099786, -0.013459204, 0.0154099865, -0.01251433, 0.015206531, 0.027407171, 0.026568608, -0.01859127, 0.014533313, 0.009884054, 0.005208862, -0.01607276, -0.011652057, -0.003044223, -0.00069652393, 0.0074543054, -0.041459292, -0.05096174, 0.051437505, 0.055284746, 0.023249373, -0.004651732, 0.034204353, -0.024591696, -0.0063366, -0.009467755, 0.007813734, -0.04620263, -0.012252731, -0.020751098, 0.006860029, 0.03433602, -0.011111463, 0.034276504, -0.021542445, 0.02021284, 0.0025329841, 0.008738213, -0.029179953, 0.05573733, -0.048209723, -0.02570827, -0.030520765, 0.061815634, -0.012077845, 0.028549645, 0.026510159, -0.0027414917, -0.030966654, -0.003150366, 0.037846245, -0.03550157, 0.027108341, 0.022585003, 0.067791186, -0.021590386, 0.02433011, -0.050871134, 0.043916322, -0.019853527, 0.009319931, -0.022538269, -0.01012112, -0.029766724, -0.009216793, -0.06080301, 0.008911474, 0.042513464, -0.0288537, 0.044921063, 0.004712259, 0.042106073, 0.004359676, -0.051314447, 0.017135233, -0.010957175, 0.042738877, 0.06339165, -0.0170387, 0.045648016, -0.057532683, 0.024726117, -0.023052344, -0.05453482, 0.024075242, -0.0039853724, -0.031158768, 0.0012874722, -0.004659115, 0.01681029, 0.03202474, 0.046308063, 0.0118262535, 0.012104928, 0.029808214, -0.017643323, -0.027129073, -0.04287103, 0.002059703, 0.04776732, 0.008498294, -0.020183232, 0.022303592, 0.00473928, 0.029514411, -0.0019783592, -0.087022506, 0.00085483934, -0.019698715, -0.04236116, 0.050447583, 0.05971948, -0.033970278, -0.0070376312, -0.029356657, -0.0063457172, 0.04330565, 0.09577891, 0.013805114, -0.027934017, -0.011153312, -0.03676305, 0.0039677494, 0.006590991, 0.050679933, 0.032501243, 0.029319892, 0.017391132, -0.022060938, 0.06988351, -0.005962986, 0.040145285, 0.055210635, -0.08273606, 0.023164053, 0.03247584, 0.03086515, 0.04079176, 0.031591967, 0.10753916, 0.017909123, 0.0046291826, -0.013653007, -0.055313382, 0.04086648, -0.0068337005, 0.041999288, -0.020546999, 0.08251005, -0.026138626, 0.02755089, -0.028838817, 0.0048763757, 0.026620813, -0.01685704, -0.03151688, 0.03509301, -0.048552338, 0.049275275, 0.028925959, 0.036814705, 0.010048373, -0.01428881, 0.04282897, -0.1061983, 0.0039437367, 0.036443617, 0.043913756, -0.00060441677, -0.016042475, 0.042048417, -0.06477381, -0.06794596, 0.0007086788, -0.072613046, 0.03296368, 0.042468585, -0.023935996, -0.040359944, 0.016374988, -0.020508448, 0.033008657, 0.021752512, 0.035484686, 0.052392952, 0.022575248, -0.038148638, 0.023002813, 0.03992824, 0.004471292, 0.05019197, 0.023983154, 0.032296885, 0.03058225, 0.07177547, 0.013029076, -0.035075773, 0.10794918, 0.009082882, -0.05309796, 0.060668092, 0.016033303, -0.025047453, -0.013452233, -0.05452115, -0.07798047, -0.03541303, 0.014727259, 0.02379912, -0.012421724, -0.009658393, 0.0035002504, -0.008366521, -0.002723128, 0.0026178926, 0.026887188, -0.011862444, -0.02506703, -0.014068615, -0.0016881303, -0.054516166, 0.007788018, 0.014391871, 0.048609078, -0.024094328, -0.011113256, 0.03708401, -0.019823601, 0.013816011, 0.0086729, 0.086862184, -0.045025088, -0.043588866, 0.04447845, 0.016194355, -0.05339667, -0.0063333893, 0.03392396, -0.04269526, -0.016756281, -0.007189502, 0.00066206267, 0.030615767, -0.011085174, -0.015034948, -0.03775334, 0.030082628, -0.004086235, -0.03206362, 0.010654756, -0.00924755, 0.027806846, -0.008186033, 0.023731792, -0.027084254, -0.023230562, 0.054981876, -0.04007907, -0.0039993017, 0.050167464, -0.0019263359, -0.025253892, -0.01640791, 0.040066596, -0.0194263, -0.04202682, 0.034468293, -0.022062883, -0.0051607443, 0.038981214, -0.023389367, 0.010599228, -0.03762452, 0.034336537, -0.022861075, 0.040474482, -0.015104935, 0.014553701, -0.0817156, 0.021085063, 0.061299644, -0.05086052, 0.010699658, 0.028535323, -0.010829953, -0.040049475, 0.0074368827, -0.06617951, 0.041733626, -0.008791511, 0.03621599, 0.06075198, -0.042457443, 0.052890543, -0.0020935738, 0.03894018, -0.020991897, 0.0446607, 0.0071598496, 0.0428966, 0.009496707, -0.019147234, -0.064583525, -0.0074677914, 0.0020205737, 0.011108967, 0.0014407021, -0.032889925, -0.018884182, -0.02151085, 0.053100593, 0.09274078, -0.012802281, 0.011786271, -0.029294776, 0.010782811, -0.0130273625, -0.036318183, 0.026258828, 0.010571124, -0.0016061825, 0.047889385, 0.014615278, 0.027593806, -0.00062180567, -0.058767747, -0.040690485, 0.022522787, 0.02498173, -0.042934954, -0.030188102, 0.007959671, 0.032280635, 0.0034212219, 0.021200962, -0.023970205, -0.009380387, 0.044509903, 0.044831097, -0.08016983, 0.04497528, 0.043639444, 0.009520468, 0.0784277, -0.035489816, 0.012979437, -0.03908177, 0.04900271, -0.0391476, -0.04487627, -0.02792773, -0.047175508, 0.02070087, 0.026658328, 0.039461564, 0.0036035343, -0.06476551, 0.063880116, -0.018747728, 0.017150842, 0.060443304, -0.0037897036, 0.0052569867, 0.024270002, 0.027129043, 0.05058814, 0.009927378, -0.04071307, -0.0021928584, -0.038442116, -0.031673186, 0.07916519, 0.031781122, -0.04512182, -0.048522756, 0.02821608, -0.03829834, 0.07118255, -0.008479037, 0.025103878, -0.00067545386, 0.04152037, 0.047822822, 0.03232654, -0.023590136, 0.0010847969, -0.02215139, -0.025047988, 0.030292748, 0.0007878991, -0.025880074, -0.01835356, 0.013496474, -0.00833977, -0.036842696, 0.014427515, -0.013397418, -0.05738963, -0.03804615, 0.051780872, 0.029030425, -0.0037392701, 0.041991793, 0.0025305331, 0.039903145, -0.032989558, -0.0033275266, 0.010140773, 0.0034419673, 0.0182821, 0.004623522, 0.032992505, -0.06703654, -0.0018880464, 0.047255732, -0.04813238 ] } ] } 9680 1645298 POST https://generativelanguage.googleapis.com/v1beta/models/text-embedding-004:batchEmbedContents?%24alt=json%3Benum-encoding%3Dint HTTP/1.1 Host: generativelanguage.googleapis.com User-Agent: Go-http-client/1.1 Content-Length: 9350 Content-Type: application/json x-goog-request-params: model=models%2Ftext-embedding-004 {"model":"models/text-embedding-004","requests":[{"model":"models/text-embedding-004","content":{"parts":[{"text":"word100"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word101"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word102"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word103"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word104"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word105"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word106"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word107"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word108"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word109"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word110"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word111"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word112"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word113"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word114"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word115"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word116"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word117"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word118"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word119"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word120"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word121"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word122"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word123"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word124"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word125"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word126"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word127"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word128"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word129"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word130"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word131"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word132"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word133"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word134"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word135"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word136"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word137"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word138"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word139"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word140"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word141"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word142"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word143"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word144"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word145"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word146"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word147"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word148"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word149"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word150"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word151"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word152"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word153"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word154"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word155"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word156"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word157"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word158"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word159"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word160"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word161"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word162"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word163"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word164"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word165"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word166"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word167"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word168"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word169"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word170"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word171"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word172"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word173"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word174"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word175"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word176"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word177"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word178"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word179"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word180"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word181"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word182"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word183"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word184"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word185"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word186"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word187"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word188"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word189"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word190"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word191"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word192"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word193"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word194"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word195"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word196"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word197"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word198"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word199"}],"role":"user"}}]}HTTP/2.0 200 OK Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 Cache-Control: private Content-Type: application/json; charset=UTF-8 Date: Tue, 09 Jul 2024 20:22:28 GMT Server: scaffolding on HTTPServer2 Server-Timing: gfet4t7; dur=1259 Vary: Origin Vary: X-Origin Vary: Referer X-Content-Type-Options: nosniff X-Frame-Options: SAMEORIGIN X-Xss-Protection: 0 { "embeddings": [ { "values": [ 0.006027242, -0.055144273, -0.045921143, -0.07353366, -0.024495676, 0.011490795, -0.011463643, 0.029249508, 0.012006014, 0.03380483, 0.023528624, 0.057080217, 0.007091099, 0.00754006, -0.048177123, -0.038929213, 0.0054587116, -0.06620697, -0.07301384, -0.0064984807, 0.020793872, 0.03323235, 0.010195173, -0.011969386, -0.010462414, 0.033807144, -0.008156137, -0.054727238, 0.02177492, 0.0016520418, 0.06763911, 0.033201046, -0.042830676, -0.0032420582, 0.07182397, 0.011852942, -0.020151077, 0.015632916, 0.0050789565, -0.023050407, -0.06529333, -0.009214327, 0.03462082, -0.017072635, -0.013645745, 0.00637609, 0.03562995, -0.012670402, -0.02604286, 0.01996781, -0.0105736675, -0.020670373, 0.014744585, -0.010785034, -0.004762235, -0.019974943, -0.03305568, -0.016497605, 0.03730977, 0.014640934, 0.021020615, 0.026775438, -0.020872938, 0.007997004, -0.0028531095, -0.0072452417, -0.050191775, -0.028894365, -0.03356044, 0.029843105, -0.07588351, 0.04109063, -0.02385426, 0.04469431, -0.029844154, -0.015621369, 0.00946905, -0.0071870037, -0.03773265, 0.018971434, 0.005053752, 0.015112787, 0.09758355, 0.0840404, 0.053338826, 0.012371808, 0.029569628, -0.012159726, -0.048141446, -0.028857352, 0.029369058, -0.061080474, 0.00044715, -0.022108091, 0.018144973, -0.047284283, -0.045324676, -0.05369769, 0.016957186, 0.059123546, -0.032609344, 0.013627291, -0.0701261, -0.018677708, 0.04971819, 0.059951138, -0.00804594, -0.030238379, -0.019862603, 0.016158342, -0.023455366, -0.047094397, -0.016773008, 0.00639911, 0.0027277034, -0.06227086, 0.021943666, -0.009515871, -0.040368043, 0.017607586, 0.011303922, 0.0010932285, -0.050660353, 0.03622937, -0.0045184563, 0.03549296, 0.012801249, -0.036877338, -0.054658778, -0.075940594, 0.06409251, -0.09855689, 0.006698609, 0.018533729, -0.037084512, -0.02560596, 0.043015722, 0.017842865, -0.056683946, 0.017693171, 0.010787718, -0.047470693, -0.017891347, -0.0059081325, 0.016829787, -0.018711831, 0.017740678, 0.020581065, -0.02422716, 0.026377538, -0.08849787, 0.006325665, 0.04099909, -0.005114779, -0.054361805, -0.0020467583, 0.05243742, -0.034879476, 0.05131652, -0.045847263, -0.010206737, -0.050814196, 0.015112729, 0.026523309, -0.07635714, -0.0031687089, 0.05716699, -0.043108918, -0.03983545, 0.0010822663, 0.026762761, 0.011484331, -0.025909178, -0.08671127, -0.011989405, 0.018335728, -0.061877053, -0.01954752, -0.0715249, -0.05487467, 0.021620512, 0.040387765, 0.009999176, -0.019270103, -0.0039400994, -0.03089002, -0.014662901, 0.07722606, 0.023080803, 0.03744042, -0.045407128, 0.013761543, -0.0141568165, 0.023443611, 0.03851553, 0.0075441333, 0.043286975, -0.016399568, -0.024935374, -0.050732706, 0.0360672, -0.003327157, 0.00069449254, 0.04370053, -0.0369348, -0.041074686, -0.054338053, -0.028430741, 0.079961136, 0.02307238, -0.04065485, 0.00077464676, -0.0018120054, -0.074420705, -0.027572572, 0.00028272488, 0.07523412, 0.021766854, 0.030801104, -0.04399211, -0.039728, 0.017561782, 0.006842902, -0.013468961, 0.09683783, 0.01251617, -0.025899721, -0.0019897434, -0.037860636, -0.05681789, -0.037004467, 0.011331454, -0.010433384, -0.013045519, 0.046683848, 0.053247757, 0.0465852, 0.0077805803, 2.5011643e-06, 0.04713068, 0.020683886, 0.0013424035, -0.0057495525, -0.01638412, -0.018128943, 0.030369358, 0.07496854, 0.0613726, -0.06312806, -0.027747627, -0.0039041562, -0.027770557, -0.02329582, 0.006581063, -0.053912066, -0.0032112612, 0.041110374, -0.047375314, 0.009964623, 0.007136713, 0.00923818, -0.03257663, -0.036678948, -0.020081239, -0.030985177, -0.08074493, -0.00038470302, -0.032222223, 0.04289309, -0.0014600068, 0.0040018754, 0.01095801, -0.051910687, -0.027064176, 0.06299558, 0.03205015, -0.062789224, 0.01195722, -0.056055862, -0.039647218, 0.07204698, -0.020014534, -0.0013743883, -0.031858545, -0.029942945, 0.0013610969, -0.010280188, 0.063681416, -0.036172945, -0.049535222, 0.026632879, 0.049124572, 0.012024924, 0.024860732, 0.036776163, -0.0066619758, 0.019378861, -0.02647386, 0.001202011, -0.015445534, -0.010670199, 0.0482028, -0.020050006, 0.052287523, 0.0060614594, 0.0024213048, -0.011743779, -0.012976089, 0.00380042, -0.0029552756, -0.020070108, 0.017939007, -0.07644964, -0.047318812, 0.018157085, -0.006917488, -0.0977054, -0.009135758, -0.032275062, -0.00019613942, -0.00039037562, 0.054322734, -0.028786479, -0.011610068, 0.05918077, 0.0061044176, 0.021521555, -0.0102785025, 0.009132996, -0.025585603, 0.037745193, 0.044112623, -0.0049999794, -0.028536651, 0.025971156, 0.03272546, -0.056635886, -0.0007680767, 0.03092982, -0.015332081, 0.054485634, 0.00068197283, 0.04114748, 0.041614857, 0.018413888, -0.035128716, 0.017614992, -0.008096757, 0.042093333, -0.05599757, -0.024121217, 0.048162326, 0.040505603, -0.00256839, 0.020638674, 0.033186037, 0.025354955, 0.058323722, 0.022899492, 0.006192492, -0.007542446, -0.0026567322, 0.011207114, -0.007954548, -0.01015837, -0.015168704, -0.016942656, 0.009297925, -0.06513986, -0.046753064, 0.033541035, 0.05579462, 0.032457642, 0.02518501, 0.019915758, -0.045108918, -0.010328581, 0.012424479, -0.013972386, -0.036118463, -0.0063309716, -0.021896672, -0.011065023, -0.0016997169, -0.007268825, 0.014558364, -0.015952235, 0.0046176757, 0.012138501, 0.034573693, -0.0049303207, 0.06368335, -0.04993696, -0.015686564, -0.00219491, 0.047834173, 0.009875274, 0.021105144, -0.010750549, -0.029019402, -0.038303927, -2.7414155e-05, 0.045113288, -0.019091247, 0.05861646, -0.004140799, 0.08383469, -0.020897895, -0.0014220778, -0.04868681, 0.02999692, -0.030124877, 0.012803702, 0.015936714, -0.011947945, 0.042757038, 0.020058392, -0.03755257, -0.008317827, 0.04847215, 0.012268834, 0.04686597, -0.03203236, 0.058316592, -0.0019300086, -0.06985086, 0.0070507643, 0.025802603, 0.04002685, 0.015492474, -0.024518877, 0.0034913574, -0.026552498, 0.027636698, -0.055812355, -0.046759736, 0.022577895, -0.0026831988, -0.032951917, -0.021890422, 0.00993477, 0.0065247472, 0.008909636, 0.052976582, -0.0056037544, 0.006482782, 0.031178838, -0.030025816, -0.017799636, -0.05565477, -0.013080884, 0.04674029, 0.03302692, -0.047621563, -0.010147864, -0.022612829, -0.0023124348, 0.03312369, -0.060621735, -0.013758655, -0.043809503, -0.040441573, 0.034514353, 0.05664594, -0.017224673, -0.0011037871, -0.045944557, -0.0098588895, 0.035442736, 0.080261566, 0.03801198, 0.007407714, 0.0074301423, -0.012787051, 3.9423583e-05, 0.033853382, 0.02989021, 0.035360854, 0.0017233188, 0.002953107, 0.0063754274, 0.055677786, -0.0095426375, 0.015899653, 0.035277735, -0.101139106, -0.030333847, 0.012572172, 0.02781716, 0.053607434, 0.0368284, 0.100347675, 0.032638676, 0.018897403, -0.017892295, -0.041928016, 0.034386232, 0.01298323, 0.02406754, -0.023612272, 0.08271996, -0.029499367, 0.021597214, -0.023907388, -0.027014619, 0.020420164, -0.028781971, -0.014700738, 0.021880897, -0.034113593, 0.034748357, 0.02160911, 0.04731527, -0.01955678, -0.05254443, 0.070840105, -0.086073145, 0.013495621, -0.017293489, 0.042509265, -0.009260415, 0.011860563, 0.08819752, -0.05473912, -0.06658613, 0.0045275255, -0.058309395, 0.052997116, 0.039916374, -0.03263662, -0.037019245, -0.00861134, 0.012035396, 0.025607163, 0.04014597, 0.048443772, 0.026707036, 0.02703122, -0.025592383, -0.0006533713, 0.041113384, 0.011465825, 0.055683315, 0.037568547, 0.026355388, 0.028051034, 0.044971034, -0.022526903, -0.032357793, 0.10460742, -0.0035721725, -0.029179323, 0.037179686, -0.026787072, -0.008920625, -0.034817323, -0.057316195, -0.043079495, -0.03886271, 0.0031372195, 0.032809608, -0.018263122, -0.0077338996, 0.039578367, 0.01517435, 0.0022994624, -0.02462775, 0.04348274, -0.0027835018, -0.021691801, -0.035505965, 0.020497782, -0.028461128, -0.03882754, 0.047154326, 0.034147512, -0.02633495, -0.0033901385, 0.047946047, 0.026097368, 0.0062307897, -0.007286242, 0.08172075, -0.03259458, -0.053670138, 0.04488521, 0.042959023, -0.05437487, 0.0035400488, 0.05548477, -0.031031942, -0.033478376, -0.010872602, -0.009672635, 0.030633077, -0.027300028, -0.027744459, -0.010172888, 0.037433967, 0.027245242, -0.027126182, -0.0062239897, -0.025368148, -0.002211209, -0.029256627, 0.02315919, -0.038706295, -0.030040774, 0.026368804, -0.001482503, 0.0023748209, 0.06178518, -0.0104512805, -0.024166664, -0.048528917, 0.04110123, -0.039991852, -0.05637583, 0.01813103, -0.01239793, -0.00885411, 0.05543423, -0.019931102, 0.009796159, -0.055299688, 0.056996714, -0.05187872, 0.037168287, -0.0032169654, -0.0044278386, -0.06228764, 0.043926664, 0.041492462, -0.02468908, 0.0038734507, 0.019379647, -0.008011179, -0.03081938, -0.0063002855, -0.061431218, 0.035835575, -0.019959405, 0.03540318, 0.065568574, -0.031926695, 0.049176704, -0.018188624, 0.032305736, -0.03773397, 0.04641186, -0.003126617, 0.02669478, 0.0009211597, 0.0010252761, -0.028953228, -0.022647992, -0.026438557, 0.004230318, 0.018075071, 0.00065663847, -0.013407475, -0.056061924, 0.07297921, 0.032304015, -0.045077078, 0.02260937, -0.013578343, 0.027794482, -0.001793904, -0.017617898, 0.05898906, 0.008058626, 0.020127509, 0.037398856, -0.013613593, 0.026749654, 0.012318339, -0.02829982, -0.0438998, 0.045556013, 0.010868588, -0.069857016, -0.00871928, -0.031827047, 0.012743124, -0.0041850014, 0.025603276, -0.065681264, -0.0030860833, 0.014231803, 0.00327274, -0.04712333, 0.014630325, 0.028634999, -0.015778793, 0.055166848, -0.035771955, 0.028454147, -0.06556001, 0.06506985, -0.061310105, -0.0037633774, -0.051196307, -0.015697805, 0.016771317, 0.030180426, 0.010424486, -0.02584559, -0.08746683, 0.033077188, -0.07597828, 0.03222313, 0.08002003, 0.03924717, 0.008251854, 0.02451603, 0.026177412, 0.034961335, 0.025549226, -0.04037873, 0.0017506696, -0.03827276, -0.034450084, 0.059671294, 0.029853206, -0.015544142, -0.050009135, 0.03297053, -0.038716435, 0.09871238, 0.02369985, -0.0054063997, 0.02563375, 0.058332436, 0.038075853, 0.0095283175, -0.04844857, -0.018914668, -0.009391499, -0.018351752, 0.018397836, -0.0142742125, -0.0032303608, 0.026433785, 0.01971396, -0.036881536, -0.048747286, -0.015844015, -0.034241535, -0.034935508, -0.0036613662, -0.0013777554, 0.03698426, -0.007097544, 0.0172236, 0.0030783522, 0.029525196, -0.042084545, 0.055426296, 0.0007928767, 0.014284442, 0.021653872, -0.013552186, 0.020419797, -0.07381534, 0.012088076, 0.046829946, -0.045286372 ] }, { "values": [ -0.017751053, -0.06961022, -0.029185114, -0.07113254, -0.01441847, 0.02551522, -0.004448443, 0.012798633, 0.00396872, 0.027349655, 0.053545795, 0.043207023, 0.01236951, -0.027604679, -0.01940221, -0.020914035, 0.028638218, -0.023936875, -0.0857404, 0.0015552453, 0.029985404, 0.020331765, -0.043098334, -0.03468593, -0.015657166, 0.026953375, 0.06583313, -0.048193656, -0.00062574615, 0.0060429354, 0.06914574, 0.02196376, -0.036603656, -0.02031386, 0.02493135, 0.048975684, -0.049849015, -0.03530787, 0.016089786, -0.016935747, -0.053858053, -0.03370653, 0.016606705, -0.01142142, -0.03646618, 0.013640672, 0.013170153, 0.026878096, -0.037534516, 0.018029928, 0.0019812947, -0.00015966818, -0.008205741, 0.0054951874, 0.0075295568, -0.087652326, -0.085314274, 0.0008048758, 0.01795091, 0.006609349, -0.0011017927, 0.0432348, -0.025135187, -0.019595932, -0.034270175, -0.007743956, -0.052700378, -0.0077228737, -0.023921097, 0.06005858, -0.057754565, 0.063440785, 0.033399876, 0.02927441, -0.038443875, -0.044749282, 0.022660434, -0.007965699, -0.030540302, 0.032489214, 0.0029000617, 0.010572809, 0.067621, 0.08117239, 0.05113243, 0.023783833, -0.0050367084, -0.05038581, -0.044198427, 0.038554117, -0.0069550187, -0.035976544, -0.0058352742, -0.03346099, 0.030195124, -0.024789391, -0.075810924, -0.047197822, 0.025986942, 0.08965332, -0.032023557, 0.0073699686, -0.016051168, -0.038398594, 0.008705556, 0.033306316, -0.043934904, -0.033419736, -0.04482867, 0.00303081, -0.054493748, -0.035033047, -0.024725873, 0.0044212276, -0.0357689, -0.019138606, -0.020589009, 0.019674266, 0.013937668, -0.0075587095, 0.026748989, -0.0057048653, -0.043497153, 0.027807517, 0.023235204, 0.0030243471, 0.033395097, -0.006866571, -0.044846155, -0.05672902, 0.09951698, -0.06942774, -0.012453479, -0.00053115975, -0.027593002, -0.023716584, 0.084846355, -0.008489432, -0.07726161, 0.022333665, -0.010293807, -0.015781986, 0.013744709, 0.028556652, 0.003117279, 0.0051538395, -0.012959059, 0.029029757, 0.021584434, 0.047310807, -0.071056604, -0.019322006, 0.056143098, -0.011943615, -0.050483428, 0.04383621, 0.03965483, -0.01775492, 0.005153023, -0.0679781, 0.013905169, -0.02516395, -0.026172346, 0.03335899, -0.043019865, -0.0067759017, 0.024851903, -0.05710935, -0.045925654, 0.0038323908, -0.020864597, 0.0017360371, -0.033035036, -0.0903157, 0.003474683, -0.010911449, -0.017210139, -0.009228905, -0.041451626, -0.035515856, 0.0052469145, 0.04015526, 0.053887468, 0.0074665435, 0.012889502, -0.021970032, -0.07222628, 0.05744063, 0.013194865, 0.05326808, -0.040588867, 0.01477111, -0.0015669245, 0.055885058, 0.052588098, 0.06823805, 0.040009774, -0.060225222, -0.012950857, -0.008565424, 0.037009068, 0.0020522138, -0.009274876, 0.063415356, -0.04707429, -0.017652716, -0.03725099, -0.0041182516, 0.04017464, -0.0004743249, -0.02704983, -0.01316382, 0.0026048818, -0.06780488, 0.0063406485, 0.024029907, 0.091854565, 0.00061907043, 0.021975867, -0.020667696, -0.0717568, -0.027167246, 0.021621449, -0.012037782, 0.06593141, 0.013805504, -0.027405865, -0.0027208286, -0.049337074, -0.06356645, -0.014387976, 0.004437469, -0.032868076, 0.022662926, 0.000911516, 0.052595746, 0.048640348, 0.008147378, 0.0065041315, 0.056600504, 0.003710879, 0.007400966, 0.023922088, -0.00830145, -0.007980925, 0.03995003, 0.070438914, 0.0669628, -0.05334994, -0.025695983, -0.0022066361, -0.005372837, -0.07834788, -0.017328769, -0.026258476, 0.025219474, 0.019111646, -0.05203123, -0.0046424605, 0.009731414, 0.01811859, -0.01687789, -0.012147022, -0.017614195, -0.026724825, -0.06292672, -0.012276437, -0.00856536, 0.023572737, -0.0013858422, 0.016842365, -0.011183483, -0.082035065, -0.019285321, 0.06813961, 0.026270276, -0.043968298, 0.011150072, -0.068940334, -0.014264159, 0.027096607, -0.034847986, -0.03927915, -0.022518529, 0.010268624, -0.016357163, -0.012123982, 0.06390163, -0.03780223, -0.03009236, 0.03237307, 0.025072552, 0.037739076, 0.009214575, 0.012636989, 0.0126348175, 0.024217987, -0.030290307, -0.0078027486, -0.008609692, 0.017607067, 0.064279534, -0.04168562, 0.07338639, -0.011361579, -0.0042708986, -0.033966497, 0.0063729947, 0.014769329, -0.013267974, 0.0016509382, 0.0015802981, -0.053711537, -0.029209353, 0.015817437, 0.0035263696, -0.11380373, 0.0032207984, -0.030248934, 0.008115229, 0.019630486, 0.02976213, -0.012161224, -0.003254752, 0.04463383, -0.020424506, 0.0029970363, -0.045824222, -0.016337223, -0.0074952375, 0.017617304, 0.016926168, 0.021846088, 0.023276169, -0.026096493, 0.018377226, -0.027470078, 0.01348684, 0.036859557, -0.038665652, 0.03580017, -0.017570946, 0.04863277, 0.06597163, 0.017958932, -0.036112465, 0.007851785, -0.006880023, 0.034407668, -0.035675835, -0.0026047227, 0.0323914, 0.062263474, -0.004580693, 0.03850972, 0.045389354, 0.05128968, 0.013379498, 0.025175544, 0.009189739, -0.018113848, -0.01515457, -0.015595412, 0.008205476, 0.011452176, 0.023879467, -0.02284011, 0.045853145, -0.0332307, -0.05808467, 0.046946734, 0.03424388, 0.053865485, -0.0061603207, -0.0006932149, -0.051032603, -0.019361017, 0.027050722, -0.026932124, -0.010013404, -0.016170517, -0.053172532, -0.00068301446, -0.015478183, -0.046655066, 0.016982678, -0.03676569, 0.03726766, 0.040430013, 0.02648147, -0.013760982, 0.050291654, -0.019867744, -0.024842922, -0.009792577, 0.06977273, -0.035690878, -0.0040312926, -0.033437405, -0.023469616, -0.035074968, -0.029551715, 0.0376064, -0.002845593, 0.060037058, -0.013929822, 0.09199392, -0.017280204, 0.01068071, -0.07749064, 0.039663706, 0.002325919, -0.0044909273, 0.06887691, -0.025771454, 0.02368104, 0.010463113, -0.019676859, 0.020235913, 0.0023415615, -0.02082207, 0.027276779, -0.013081902, 0.033625297, -0.012040883, -0.039701108, -0.014440448, 0.019638596, 0.032765657, -0.033910185, -0.03102895, 0.0023800568, -0.0009013351, 0.020544952, -0.048106622, -0.0057943524, 0.034656607, 0.016788056, -0.02530998, -0.004582675, -0.025235446, 0.031520292, 0.0016027865, 0.035357103, -0.002767033, 0.029884776, 0.02149133, 0.011048064, -0.05398102, -0.029408252, -0.012687632, 0.012348056, 0.01686332, -0.058396425, -0.037174027, -2.6795253e-05, 0.009768564, 0.015384834, -0.047141515, -0.0022163407, -0.040721916, -0.03439788, 0.037171878, 0.034005996, -0.003111523, -0.009305316, -0.05638411, -0.030734044, 0.0027024054, 0.07508978, 0.04515567, -0.020364631, 0.0039726454, -0.0049955496, 0.001192319, 0.04575246, -0.019085528, 0.013784364, 0.046821408, -0.0102448, -0.015921827, 0.0059039453, -0.0148408795, 0.01696769, 0.066617094, -0.095235586, -0.023014165, 0.024729913, 0.032571968, 0.03303665, 0.031085791, 0.09780522, -0.0074727214, 0.016561318, -0.02039222, -0.06730473, 0.031914312, -0.025355881, 0.00823274, 0.032207463, 0.05680948, -0.027671274, -0.009781745, -0.07776099, 0.01370269, -0.019369002, -0.03687752, 0.011357075, -0.046774615, -0.014775265, 0.040424194, 0.045375913, 0.028495135, -0.0245962, -0.039889373, 0.05347925, -0.07856203, -0.0033443882, -0.013254103, 0.003428213, -0.034633365, 0.0053715664, 0.060152248, -0.06707725, -0.037118144, -0.019724611, -0.013873539, 0.07037566, 0.03679638, 0.0014980771, -0.057693493, 0.0018352882, -0.0039541395, 0.033126343, 0.0070712124, 0.025095673, -0.010010836, 0.0074840067, -0.06746383, -0.014259742, 0.0040807477, 0.011251992, 0.04795469, 0.03308914, 0.025329424, 0.020622265, 0.054840997, 0.011997957, -0.016065331, 0.08227817, 0.02896385, -0.00052112236, 0.017289618, -0.0021167481, 0.0065794806, -0.03453647, -0.056809228, -0.082972586, -0.040563256, -8.289317e-05, 0.042323478, -0.020290673, -0.007347074, 0.0061240327, 0.014753104, 0.0018012027, -0.052130457, 0.040855743, -0.008287906, -0.04125739, -0.0065616667, -0.0140172085, -0.029354647, -0.05945911, 0.052357655, 0.024964262, -0.059057172, -0.00614968, 0.04019421, 0.015484258, 0.014709399, -0.022882268, 0.08127244, -0.07159082, -0.052690808, 0.018041966, 0.024269363, -0.0668789, -0.023863025, 0.039844908, 0.0006490403, -0.033282176, -0.02348345, -0.029636122, 0.005721754, -0.029026221, 0.0024551717, -0.023522273, 0.05055001, 0.03006408, -0.03357635, 0.02284648, -0.027318088, -0.008568151, -0.026284227, -0.0065973373, -0.05859191, -0.01450235, 0.040099356, -0.04960994, 0.031658165, 0.02805858, 0.027500212, 0.00014221414, -0.013133073, 0.026628118, -0.07095944, -0.055205524, 0.022277161, 0.00040777374, 0.0020872783, 0.033276845, -0.021245861, -0.005503357, -0.052424163, 0.03860383, -0.04353561, 0.042321544, 0.026134223, -0.059303198, -0.02640775, 0.027250845, 0.038655426, -0.008827059, 0.045643907, -0.008566909, -0.02871681, 0.008058367, 0.02383587, -0.040519737, 0.030877315, -0.0351406, 0.026086465, 0.059839364, -0.03525036, 0.028782576, -0.0035117322, 0.03555892, -0.016349038, 0.06117821, -0.009869016, 0.036885794, -0.025784459, -0.012724449, -0.035196654, -0.010117315, -0.036724143, 0.007191049, 0.023114158, 0.005169344, -0.0017436694, -0.03797724, 0.05336099, 0.011326011, -0.068219624, 0.037575867, -0.037867047, 0.010738689, -0.02555509, -0.007512425, 0.06498343, -0.0033858637, -0.011518765, 0.053197805, -0.010230843, 0.0036148287, 0.041320875, -0.02411284, -0.05395634, 0.06188458, -0.0074475296, -0.054551713, 0.014317827, -0.07123286, -0.020440375, 0.014034088, 0.05685051, -0.04066694, 0.0085990215, 0.012120814, 0.0013802344, -0.041050367, 0.02864137, 0.0356818, 0.010820499, 0.055621244, -0.050317723, 0.04268269, -0.06625372, 0.058228076, -0.037136517, -0.016887955, -0.05105714, -0.02766371, -0.0019287763, 0.022349484, 0.024759155, 0.015589154, -0.08489481, 0.023327352, -0.0499958, 0.015222955, 0.07856651, 0.014400569, 0.030161947, 0.03712418, 0.010378291, 0.054265503, 0.0028111183, -0.048181903, -0.0054756217, -0.04839259, -0.048066985, 0.033021532, 0.017237794, -0.015513264, -0.04390983, 0.0011691318, -0.042826, 0.06693873, 0.023785021, -0.04260225, 0.0039378214, 0.06317139, 0.029860856, -0.016164673, -0.03306764, 0.012177941, -0.007840849, -0.027773285, 0.0084559815, -0.03800733, 0.016762542, 0.009394878, 0.03259924, -0.042351477, -0.051563542, -0.046440143, -0.051672533, -0.050073303, -0.031209549, 0.04326095, 0.049090575, -0.010248086, 0.01932589, -0.020225644, 0.037234128, -0.051821172, 0.036962785, -0.005758321, 0.0075258226, 0.010719371, 0.006866916, 0.03972035, -0.06922183, -0.012249515, 0.06788144, -0.04600282 ] }, { "values": [ -0.011828539, -0.044286907, -0.03014797, -0.045649283, -0.014124785, 0.011632698, 0.029452085, 0.046557195, 0.019048002, 0.04101733, 0.028568465, 0.024235332, 0.031865112, -0.010052069, -0.026714748, -0.035163168, 0.024641378, -0.012191758, -0.07651398, -0.01890116, 0.0086655, 0.03366292, -0.025385914, -0.059275206, -0.03612311, 0.025698349, 0.02872688, -0.063914925, -0.0115023395, -0.008239645, 0.059272945, 0.034832325, -0.05662943, -0.01588165, 0.045187656, 0.019454075, -0.062353805, -0.004862256, 0.023327056, -0.024502996, -0.06380711, -0.033148535, 0.045964304, 0.009415346, -0.034847192, 0.01569079, 0.034756545, 0.02450754, -0.06472465, 0.036804996, -0.005276939, -0.0035113385, 0.02065609, 0.020753259, 0.007475684, -0.052497756, -0.061866328, -0.031663027, 0.0064633866, -0.0029752764, -0.0019046349, 0.045737136, -0.037932076, -0.013211844, -0.03250507, -0.02934852, -0.06173016, -0.030885678, -0.048713468, 0.04838258, -0.06459296, 0.03909985, -0.039457522, -0.016676104, -0.036128063, -0.032699965, 0.008593247, 0.010794883, -0.029208988, 0.0095194625, -0.011222518, -0.0075863916, 0.10151743, 0.10950388, 0.06737273, 0.019753406, 0.031003127, -0.038864527, -0.025509477, 0.016848717, 0.021220451, -0.03967445, -0.013565279, 0.0022153433, 0.038011495, -0.0069350926, -0.057278324, -0.07511413, 0.024835844, 0.09097304, -0.0267996, 0.009039096, -0.03389189, 0.0034344909, 0.01883066, 0.03312189, -0.03983006, -0.04760037, -0.031514008, -0.0072290534, -0.009348421, -0.011727463, -0.015416599, 0.014024507, -0.007662487, -0.05450332, -0.0019646669, -0.0058309124, -0.01694689, 0.030410245, 0.06069602, -0.02546251, -0.050036542, 0.025731217, 0.042424895, 0.010936637, 0.040346257, -0.0007623555, -0.0401757, -0.05837908, 0.0708134, -0.090498134, 0.002627896, 0.03341392, -0.025444308, -0.0560576, 0.03515376, 0.036670227, -0.06603493, 0.0034172037, 0.013133142, -0.0040285042, 0.009662961, 0.023830414, 0.00419292, -0.004115785, -0.0090524005, 0.05064258, -0.031015432, 0.036695544, -0.0767282, 0.006401501, 0.065843135, -0.006416175, -0.06774005, 0.008313288, 0.03943399, -0.015142128, 0.024320273, -0.048420005, 0.04731488, -0.023562243, -0.0037308184, 0.022852786, -0.07002804, -0.01026866, 0.046257287, -0.05597559, -0.01996198, -0.042390622, -0.0015508496, 0.015140545, -0.023186693, -0.09306078, 0.02133271, -0.020073375, -0.043156847, 0.001773484, -0.034071647, -0.035677508, 0.00088489073, 0.039930988, 0.031805374, 0.013720176, -0.009974446, -0.041322555, -0.039048094, 0.07637364, 0.01282982, 0.040708132, -0.03165166, 0.0014300427, 0.024368044, 0.047621876, 0.016413635, 0.03946881, 0.032703865, -0.0046192673, 0.0060203364, -0.051057614, 0.055357266, -0.012529961, 0.008667534, 0.05318118, -0.023945704, -0.037395, -0.057201754, -0.031109644, 0.027531356, 0.017718554, -0.033613123, -0.0077124024, 0.004786935, -0.048633717, -0.007880471, 0.011736964, 0.07787768, 0.024494128, 0.017868876, -0.03757264, -0.026790712, 0.00020890491, 0.010035734, -0.023576172, 0.06030008, -0.019726345, -0.0053805346, -0.024351012, -0.05693829, -0.05075629, -0.041986313, -0.022993166, -0.008696228, 0.0043642605, -0.021172015, 0.05934323, 0.01576912, -0.0006832501, 0.0027791318, 0.036807135, 0.023789618, 0.012683421, 0.028541625, 0.009473108, -0.03170012, 0.06616697, 0.06990566, 0.07950089, -0.014656993, -0.023752294, 0.0001568475, -0.01209975, -0.09206582, -0.019676648, -0.060634915, 0.020011863, 0.0056561218, -0.038736932, 0.0061943047, -0.0069559, 0.02683793, -0.009558519, -0.026813269, 0.000452317, -0.013205823, -0.11735952, -0.0049439245, -0.024007257, 0.047963656, 0.00010349953, -0.0045745517, -0.031887706, -0.05441627, -0.035035618, 0.0822581, 0.00037559032, -0.037840296, 0.019505404, -0.074931435, -0.025475843, 0.04181607, 0.0006486441, -0.02361536, -0.022743149, -0.02496379, -0.019748615, 0.016533902, 0.046980407, -0.035433188, -0.050304465, 0.044485107, 0.02678234, 0.027990155, 0.01542802, 0.006580846, 0.00375075, 0.019246755, -0.013930411, 0.014738572, -0.028831039, 0.009664927, 0.05554282, -0.037783172, 0.06669112, -0.019429483, 0.03027551, -0.052033346, -0.00840165, -0.013328972, -0.02158277, 0.020215293, 0.036974743, -0.04775857, -0.005513374, -0.005273948, 0.012465133, -0.11864322, 0.0034978653, -0.035733495, -0.008056629, 0.018862443, 0.04188059, -0.045907527, -0.020812018, 0.0316031, 0.016308911, -0.0017839482, -0.011060106, -0.015727717, -0.02989858, 0.034012184, 0.018947426, 0.01051234, -0.011750122, -0.0020851702, 0.028660519, -0.021298662, 0.025497975, 0.0105806105, -0.01870028, 0.029151496, -0.015552789, 0.03594656, 0.064229004, -0.0058003943, -0.044768155, -0.009780977, 0.003973144, 0.0547253, -0.029152436, -0.0109224385, 0.06230178, 0.04896415, -9.52759e-05, 0.02205724, 0.026014103, 0.02794328, 0.05239653, 0.040508844, -0.0052112765, -0.02120943, 0.011532243, -0.0040499014, -0.0037160583, -0.0075651896, -0.014430201, -0.028776538, 0.03338511, -0.017176019, -0.07055182, 0.015980842, 0.034926288, 0.03907859, 0.011950443, -0.010133536, -0.06715554, -0.012387034, 0.0062562795, -0.027644215, -0.029706694, -0.045603983, -0.05893158, 0.024576703, -0.02311795, -0.040955175, 0.032092784, -0.041149274, -0.0033170562, 0.050185822, 0.03267178, -0.0419665, 0.092953146, -0.02968285, -0.016470876, -0.045402788, 0.071876265, -0.0011198666, 0.021751935, -0.008667187, -0.008165732, -0.033314437, -0.036337677, 0.03821269, 7.7955476e-05, 0.030150132, -0.010781359, 0.056289952, -0.017080784, 0.014383253, -0.040059526, 0.0010474558, -0.028455311, 0.022158688, 0.027129838, 0.009099869, 0.011024967, 0.02547741, -0.045799285, -0.02864944, -0.008593048, 0.001963512, 0.01036235, -0.04373256, 0.044944815, 0.017981457, -0.07639234, 0.006902362, 0.00027741585, 0.0638668, -0.0038917696, -0.022683442, 0.019080574, -0.047308106, 0.03310849, -0.038320187, -0.023716709, 0.0010602983, -0.0032503495, -0.032516785, -0.006067851, -0.008208388, 0.02332679, 0.008299421, 0.055442184, 0.016911078, 0.026187506, 0.023835842, 0.00068883784, -0.039727267, -0.06525532, -0.0061785486, 0.022357516, 0.006460876, -0.064108856, -0.008185209, -0.03439065, 0.009517271, 0.042927727, -0.046969708, -0.035590567, -0.034410454, -0.034370054, 0.033965558, 0.045335814, 0.00042530303, 0.014921417, -0.040262714, -0.022122556, -0.0066580633, 0.05172997, 0.027488688, -0.0325088, 0.0059884614, -0.0022765282, 0.019618563, 0.037503734, 0.0061981245, 0.018309597, 0.028207844, 0.0075636716, -0.007019299, 0.042059757, -0.010085274, 0.022218363, 0.05853798, -0.089957334, -0.019699287, -0.0037547182, 0.030175673, 0.0279604, 0.054605052, 0.10235139, 0.013152085, 0.016215213, -0.016025627, -0.06452747, 0.017577516, -0.0006128822, -0.009370579, -0.016634673, 0.068252265, -0.044275846, -0.02661922, -0.058598384, -0.00023669115, -0.01643771, -0.012379008, -0.025916293, 0.024189694, -0.021700742, 0.027295468, 0.029611332, 0.0459861, -0.029470861, -0.039674755, 0.0768646, -0.07741022, 0.0005681567, -0.022928335, 0.028869921, -0.021628654, -0.004103438, 0.05017441, -0.07545445, -0.060894042, -0.027611842, -0.042134054, 0.044123724, 0.037039388, -0.014378773, -0.03337287, -0.018633025, 0.009576712, 0.03907538, 0.03056386, 0.057804853, 0.010453653, -0.0016068645, -0.04427902, 0.0055679325, -0.0068345936, 0.011639936, 0.05851997, 0.023842286, 0.02452224, 0.044129, 0.031923443, -0.004548104, -0.003859863, 0.102308825, 0.007851206, -0.00469336, 0.013199371, -0.033440925, -0.02522882, -0.024834998, -0.033665687, -0.05199999, -0.03109525, 0.012183148, 0.045618616, 0.011818756, -0.004838326, 0.02252338, -0.0051249517, 0.0063579953, -0.045759566, 0.044827823, -0.014157899, -0.022454647, -0.02324711, -0.0020726544, -0.0029404312, -0.057164542, 0.05027769, 0.042305835, -0.046140347, -0.0127612185, 0.06655922, 0.024591623, 0.025722016, 0.029278647, 0.08147062, -0.030486029, -0.034098104, 0.0051390706, 0.025245702, -0.058960922, -0.0034372383, 0.037954524, -0.011706553, -0.020180112, -0.0044151917, -0.022651492, 0.031612076, -0.003461388, -0.018596519, -0.02596479, 0.050193205, 0.059441548, -0.033794727, 0.0125818495, -0.018033022, -0.020559506, -0.0069282893, 0.025662307, -0.034517545, -0.022005688, 0.02879781, -0.025393981, -0.009107582, 0.018210243, 0.0076781134, -0.010251877, -0.025964756, 0.014965175, -0.04426341, -0.06313907, 0.013989072, -0.03184535, -0.02123136, 0.037230384, -0.021341052, -0.013222529, -0.049596157, 0.03016749, -0.03137305, 0.037408724, -0.039666425, -0.06472993, -0.005414957, 0.030628288, 0.057830468, 0.0016529487, 0.0144397635, -0.0013071306, -0.03711951, -0.020731868, 0.053105034, -0.03344731, 0.0401375, -0.015592646, 0.052625652, 0.083384626, -0.030112112, 0.01796942, 0.0075264308, 0.02189678, -0.026478408, 0.038077276, -0.029259624, 0.02559637, -0.010278856, -0.00991945, -0.020123493, -0.04217869, -0.05874176, 0.009633567, 0.024859736, -0.0034834566, -0.016110245, -0.022538051, 0.04535901, 0.020413145, -0.038963925, 0.016298268, -0.04787001, 0.010912838, -0.028871333, -0.0077467035, 0.043242104, -0.0057473504, 0.030071598, 0.057497635, -0.015908182, 0.021684358, 0.025687661, 6.266725e-05, -0.038090445, 0.06317887, 0.013613986, -0.04712404, -0.004756144, -0.028422676, -0.020468589, 0.012375033, 0.021362819, -0.035247404, -0.010616938, 0.025091622, -0.0071910126, -0.049410917, 0.012970798, 0.009009068, 0.027453173, 0.10503616, -0.035961322, 0.030321928, -0.07986477, 0.048411746, -0.052419387, -0.0022515478, -0.06683855, -0.005234666, 0.04257859, 0.04820623, 0.031577006, 0.0020489986, -0.06791603, -0.014220289, -0.06814694, 0.016695343, 0.077048145, 0.004850547, 0.037497643, 0.0375157, 0.037606124, 0.04272669, 0.01338889, -0.03366283, -0.017042289, -0.026635125, -0.012999772, 0.052688703, 0.031195637, -0.0051696403, -0.06648862, 0.027217621, -0.031043824, 0.08093514, 0.007600376, -0.031060437, 0.011380363, 0.04386605, 0.018723488, 0.009613421, -0.033309035, -0.007917014, -0.011434989, -0.020169478, 0.037966955, -0.0135355545, -0.031194644, 0.02120878, 0.043790974, -0.029661005, -0.04712078, -0.024875214, -0.04104143, -0.021410339, -0.040692244, 0.042507872, 0.044728823, -0.00074286753, 0.022540158, -0.023629265, 0.003763764, -0.047596, 0.051411368, 0.0024974865, 0.0014389167, -0.0034039028, 0.008048, 0.02281413, -0.099857606, 0.001604903, 0.06709653, -0.048355196 ] }, { "values": [ -0.0001792637, -0.019037928, -0.03662382, -0.034021586, -0.0032793533, 0.015971733, 0.033972416, 0.05503427, 0.022011314, 0.03795613, 0.025497947, 0.017517157, 0.024325155, -0.010292222, -0.04320536, -0.04962218, 0.013184308, -0.010751424, -0.07877158, -0.03307466, 2.1832519e-05, 0.04768951, -0.0070565017, -0.050193544, -0.03145425, 0.008013756, 0.03186357, -0.06252328, -0.018264262, -0.011157029, 0.044223957, 0.042614836, -0.046923038, -0.032364003, 0.040907066, 0.03947582, -0.068409465, 0.006255167, 0.014426208, -0.035352364, -0.06882385, -0.0429434, 0.03806457, 0.032101218, -0.038971912, -0.0063563627, 0.030867081, 0.019770302, -0.0575315, 0.01627023, -0.031316053, -0.011202917, 0.02394109, 0.002380785, -0.01012227, -0.064850956, -0.051169552, -0.0123939365, 0.02464364, -0.012236946, -0.007331056, 0.05569433, -0.04589706, -0.015865136, -0.040828355, -0.025649572, -0.08029667, -0.016575895, -0.03890682, 0.04265002, -0.06871042, 0.038795132, -0.010802715, -0.010940896, -0.018949391, -0.0348123, 0.021126086, 0.010184639, -0.018422823, 0.034799885, 0.0036217829, 0.0070684194, 0.072794706, 0.084157795, 0.060247738, 0.03663475, 0.067305595, -0.046785228, -0.056840666, -0.00046579895, 0.032378066, -0.04066008, -0.0113481665, -0.0064962776, 0.023817688, 0.011093036, -0.046411082, -0.087172374, -0.0069340975, 0.08761755, -0.041519202, 0.010132486, -0.047350306, -0.025039759, 0.004035838, 0.049181018, -0.041708272, -0.029142011, -0.030625712, -0.007809447, -0.0025474923, -0.007301622, 0.00374606, 0.01098792, 0.004815006, -0.03812467, 0.009766917, -0.00792578, -0.028464878, 0.01866524, 0.050174516, -0.020569373, -0.0402159, 0.038698006, 0.03729305, 0.0024630767, 0.007886469, 0.007800759, -0.042607006, -0.045446813, 0.083020315, -0.110866934, 0.0052306, -0.0072789975, -0.020481048, -0.026811862, 0.05370102, 0.01875091, -0.052225225, 0.019869983, 0.019734679, 0.012552413, -0.034562502, 0.019195886, 0.0076292153, 0.018056843, -0.016134933, 0.031913854, -0.013291534, 0.03211597, -0.05110643, -0.0027652404, 0.06424307, -0.027901132, -0.08837959, 0.01732633, 0.04883144, -0.008011167, 0.028645623, -0.04237198, 0.05610974, -0.03277355, -0.015173633, 0.0065891594, -0.09374368, 0.016750678, 0.05839706, -0.047585502, -0.016624076, -0.029401556, 0.0031167108, 0.0005553306, -0.01730156, -0.093769796, 0.012349035, -0.030555516, -0.028330175, -0.0057884166, -0.051507916, -0.05506623, -0.0003675986, 0.037784956, 0.015027309, 0.005674966, -0.040134557, -0.014734511, -0.019069301, 0.054701716, 0.017460793, 0.047771797, -0.04302064, -0.0029047022, 0.019405428, 0.06471018, -0.0016159737, 0.026985342, 0.02829964, -0.028663717, -0.030939862, -0.034233708, 0.049597193, 0.01148339, -0.018031117, 0.07242532, -0.010753713, -0.025083762, -0.049950726, -0.0262326, 0.012576183, 0.005501106, -0.03948523, -0.0028707304, -0.0042880843, -0.025456002, -0.0019739072, 0.011853481, 0.09626624, 0.008151589, 0.027203565, -0.03273509, -0.040345043, -0.006937281, 0.0015522118, -0.020365532, 0.058668222, -0.010013238, -0.011593039, -0.027324285, -0.05403477, -0.03999186, -0.03942007, 0.014752727, -0.013988685, 0.0035988356, -0.021261232, 0.06035128, 0.02580055, 0.008838265, -0.0005927184, 0.012787217, 0.015435167, 0.0011797678, 0.013806948, 0.009978518, -0.007880879, 0.06381518, 0.070455305, 0.04125573, 0.0011400287, -0.00818446, 0.014966039, -0.019756194, -0.08261293, -0.007641616, -0.07084522, 0.028424434, 0.010340039, -0.03660689, 0.016528921, -0.0017253446, 0.022408703, 0.004086919, -0.024244003, -0.014825728, -0.0050710733, -0.098305605, -0.0064749643, -0.037208166, 0.029682443, -0.0127089815, 0.0018487019, -0.022847015, -0.045799516, -0.042558193, 0.06897038, 0.013580167, -0.037531026, 0.009067697, -0.06762135, -0.02492062, 0.058268152, -0.005316151, -0.014510988, -0.019276742, -0.036132455, -0.020587051, 0.014170335, 0.058187515, -0.031495642, -0.0408734, 0.026572969, 0.025799673, 0.020241143, 0.0143074235, 0.0066145607, -0.00061674643, 0.025965938, -0.007073795, -0.025529156, -0.012401092, 0.02952476, 0.054854777, -0.04932204, 0.056168884, -0.016785394, 0.016729217, -0.03401731, -0.004177317, -0.013254825, -0.024344657, 0.013798549, 0.049823217, -0.08141094, -0.0039387755, -0.015159939, 0.0075318823, -0.12791821, -0.008434995, -0.05920048, -0.008280043, 0.016504304, 0.011394082, -0.035029016, -0.019671498, 0.04825404, 0.004184655, -0.0045275507, 0.02269936, -0.014196196, -0.016290559, 0.0037482092, 0.01854984, 0.01325609, 0.006198668, -0.0037581574, 0.019502757, -0.04482617, 0.011766152, 0.022934783, -0.021288939, 0.050720185, -0.010628545, 0.037010767, 0.0670728, -0.0069489838, -0.03652356, 0.01578751, 0.0050055594, 0.028096223, -0.054313045, -0.002671223, 0.08589812, 0.051988233, -0.015668992, 0.030636037, -0.009884739, 0.008895131, 0.017986916, 0.051033538, 0.00052605016, -0.009266903, 0.0019721885, -0.004844165, -0.0068830713, 0.018534128, -0.014286682, -0.028504008, 0.030282743, -0.037371263, -0.05085786, 0.03748976, 0.029593369, 0.038006682, 0.024699576, -0.0105766505, -0.035242543, 0.00784519, 0.029552057, -0.039742917, -0.050397903, -0.020808928, -0.060715143, 0.003048264, -0.013126263, -0.029249012, 0.017689196, -0.026952198, 0.008879795, 0.0365121, 0.03719036, -0.034323487, 0.09229387, -0.018724093, -0.025810799, -0.043444842, 0.07091307, 0.013470845, 0.024195986, -0.0033062424, 0.0074486434, -0.01691375, -0.026830165, 0.057671085, 0.0098463455, 0.027100729, -0.011094506, 0.06813761, -0.026659703, 0.0031419354, -0.016526584, 0.012001607, -0.0068694456, 0.02879694, 0.017298512, 0.021056753, 0.025731854, 0.03406204, -0.047354493, -0.014961912, -0.00082122604, -0.013062597, 0.028969083, -0.03135727, 0.053541653, 0.024694007, -0.060546257, -0.002269176, 0.0037514877, 0.058576256, 0.012524375, -0.012918314, 0.028816033, -0.029594488, 0.020072846, -0.04225571, -0.03679152, -0.013996625, -0.0029620295, -0.04859758, -0.0030199527, -0.010235236, 0.027215283, 0.020934455, 0.044330467, 0.015563676, -0.0009217855, 0.028514307, -0.0038383396, -0.042405203, -0.06680256, -0.042358942, 0.011472626, 0.012628565, -0.06624492, 0.008222184, -0.019294703, -0.014036252, 0.031673178, -0.04984532, -0.027770774, -0.04368148, -0.0060120486, 0.04463644, 0.05237659, 0.001414939, 0.008963497, -0.04082862, -0.035427958, 0.005792187, 0.06026302, 0.027120624, -0.022727605, 0.006068337, -0.005880868, 0.016754461, 0.03623617, 0.024462732, 0.04455929, 0.027592879, 0.018185554, -0.010994895, 0.036751967, -0.020609068, 0.031324644, 0.06559244, -0.06582657, -0.024086045, 0.021076204, 0.03629535, 0.039341785, 0.059723094, 0.093716525, 0.017799333, 0.03089732, -0.03830932, -0.05475631, 0.030520322, 0.0023476672, 0.0035924166, 0.0069668465, 0.059183385, -0.04181906, -0.03194909, -0.08673143, 0.0041114865, -0.0026660825, -0.030086095, -0.035115283, 0.015962299, -0.039927375, 0.03366885, 0.022087596, 0.035708822, -0.01087755, -0.04240265, 0.07137453, -0.11470928, -0.0105356965, -0.0069062826, 0.044387866, 0.012720184, -0.0019439134, 0.053332545, -0.05773422, -0.06285175, -0.024995271, -0.02158604, 0.04672244, 0.05242719, -0.0057327, -0.026234318, -0.017359799, -0.005472262, 0.056981497, 0.011629747, 0.050566703, 0.008396869, 0.005631067, -0.051504515, -0.00068359054, 0.019419875, 0.02919168, 0.058514126, 0.0121192215, 0.04345188, 0.027292157, 0.029696109, 0.0059677456, -0.010620719, 0.07348494, -0.008396912, -0.0064298874, 0.019318577, -0.043296088, -0.017975807, -0.0172807, -0.03547505, -0.031469755, -0.034804285, 0.011688084, 0.055447336, 0.0005669404, -0.003922092, 0.014818062, 0.025148148, -0.015597892, -0.031174019, 0.038659845, -0.004558992, -0.023028057, -0.007898181, 0.015044209, 0.02011004, -0.03895757, 0.036607202, 0.028222317, -0.034411896, -0.029307473, 0.05592826, -0.0014948006, 0.02092822, 0.028097905, 0.080032356, -0.013381206, -0.03919941, 0.012689787, 0.026065022, -0.05323299, 0.019193506, 0.045384333, -0.023404822, 0.012806556, 0.0022745456, -0.03523246, 0.040263552, -0.009547667, -0.005062498, -0.033204157, 0.036809955, 0.045489784, -0.042134684, 0.00021996044, -0.012160606, -0.0040859194, -0.0153895635, 0.019335208, -0.051670276, -0.033692863, 0.012840366, -0.027783576, -0.008394461, 0.0033809287, -0.0034199725, -0.01276075, -0.02671392, 0.01662157, -0.066636354, -0.050983023, 0.017302409, -0.037055213, -0.00700937, 0.013108109, -0.041109268, 0.019836446, -0.07934332, 0.05003637, -0.03015855, 0.043211456, -0.024904184, -0.056727678, -0.02133871, 0.04401372, 0.033425253, -0.017295044, 0.00560723, 0.010188793, -0.038079448, -0.030618945, 0.042008538, -0.032248735, 0.02630261, -0.029338498, 0.05962752, 0.048573364, -0.024536094, 0.021737173, 0.026812097, 0.021737304, -0.014984993, 0.052997857, -0.009945956, 0.03429004, -0.019041488, -0.013571527, -0.02326494, -0.043515764, -0.042091604, 0.016835881, 0.022869838, -0.0025080082, -0.01226747, -0.045292705, 0.030728426, 0.018278671, -0.047930013, 0.0151268095, -0.039157, 0.018640948, -0.015311306, -0.012078114, 0.056173783, -0.0042045475, 0.029481877, 0.05876788, -0.0028766263, 0.032357432, 0.017339954, -0.030049961, -0.04328148, 0.059895203, 0.003095518, -0.054062482, -0.0013001609, -0.019441502, -0.0011187806, -0.0029635415, 0.026765369, -0.055695903, -0.026443247, 0.04261156, -0.018764611, -0.06973641, 0.04839217, 0.024076227, 0.022285216, 0.09505206, -0.07496358, 0.022683987, -0.06763466, 0.03731233, -0.06553702, 0.0025627, -0.057540663, -0.021217488, 0.045333296, 0.037453882, 0.011618654, 0.016296132, -0.062117174, 0.0102618085, -0.069245055, 0.016470894, 0.06276569, 0.0082273, 0.019947924, 0.053890143, 0.042184953, 0.059718486, 0.017929018, -0.045268487, -0.014118663, -0.02438739, -0.021875164, 0.053183366, 0.03846321, -0.022771548, -0.05076558, 0.01780531, -0.0400208, 0.07866446, 0.0072359606, -0.04774944, 0.015245656, 0.027599582, 0.017863436, 0.01305047, -0.020001434, -0.024359545, -0.0025629136, -0.012129932, 0.041445084, -0.01111025, -0.03556478, 0.02263702, 0.06276433, -0.024575084, -0.040173307, -0.020256888, -0.0446228, -0.044982456, -0.038263343, 0.03026027, 0.05116633, -0.0005295767, 0.014958878, 0.0012637557, 0.0056569823, -0.067396626, 0.059309084, -0.0054417048, -0.013138193, -0.0033473843, 0.010220715, 0.015950136, -0.10712537, -0.014277256, 0.06535713, -0.034828242 ] }, { "values": [ 0.008085099, -0.030927926, -0.05717415, -0.04815561, -0.012156304, 0.020725606, 0.033700004, 0.068829305, 0.023090463, 0.030775229, 0.016834239, 0.038722772, 0.02861701, -0.012494153, -0.06071376, -0.046556275, -0.006252516, -0.01624523, -0.09220634, -0.024710843, -0.015035742, 0.03773146, 0.0013161164, -0.050315425, -0.026176514, 0.028106714, 0.02761127, -0.04886543, -0.011451936, -0.010860193, 0.046648547, 0.033039533, -0.04267466, -0.025067996, 0.06694015, 0.029904088, -0.056471203, -0.0046738344, 0.013300006, -0.0060999906, -0.06440746, -0.031946935, 0.038158752, 0.012101253, -0.026568003, -0.000112504626, 0.012602045, 0.013699041, -0.052724805, 0.028611792, -0.021319434, -0.012976417, -0.00066005957, -0.001295475, 0.0043344754, -0.05455847, -0.04729545, -0.033446927, 0.021012437, -0.00735747, 0.0059354757, 0.03899474, -0.020409806, 0.0059154932, -0.029832488, -0.033806425, -0.08402981, -0.014423587, -0.03758217, 0.025984548, -0.04907107, 0.031918313, 0.0052958573, -0.014471758, -0.025733693, -0.018302634, 0.012988124, 0.010574395, -0.02145427, 0.030099204, -0.016338209, -0.009866832, 0.10523086, 0.06407929, 0.05543529, 0.017258216, 0.04103921, -0.05463451, -0.035092942, 0.023077399, 0.041428335, -0.038815945, 0.011609384, -0.007554222, 0.041896038, -0.0065914304, -0.062009547, -0.10606597, -0.010120375, 0.08759131, -0.045871433, 0.005786299, -0.04338472, -0.024133924, 0.034860607, 0.050679542, -0.043829538, -0.023112465, -0.027425377, -0.0056563704, 0.021007003, -0.0065896166, 0.0054602353, 0.0058954256, 0.010161702, -0.039163265, 0.0051277215, 0.0054350863, -0.015374849, 0.035710286, 0.03600985, -0.017328002, -0.023605866, 0.04344852, 0.0030640487, 0.02010105, 0.034091514, 0.0072247465, -0.023853049, -0.077774115, 0.06180497, -0.10134595, -0.0005257739, 0.015866453, -0.03697408, -0.025836756, 0.026181592, 0.027444426, -0.028723536, 0.016275235, -0.0021045534, 0.009435689, 0.002677217, 0.020038946, -0.008809559, 0.013797084, -0.010629539, 0.03654669, -0.007674438, 0.010755116, -0.05556126, -0.005933156, 0.058459915, -0.025573967, -0.07850655, 0.004736922, 0.06913064, -0.010354587, 0.038224053, -0.051245667, 0.035042387, -0.04220057, -0.007464032, 0.010620568, -0.10595284, -0.009911462, 0.048955966, -0.06285584, -0.026371554, -0.035618037, -0.00032077634, 0.014602721, -0.000843624, -0.09353186, 0.018316343, -0.031062486, -0.04621505, 0.0013346276, -0.039297163, -0.05061729, 0.025488317, 0.023473682, 0.03761005, -0.0027145906, -0.015833685, -0.0064396216, -0.032810602, 0.066183925, 0.0034216146, 0.035739347, -0.015270762, 0.018751336, 0.03531837, 0.05868594, 0.009084587, 0.024634965, 0.025426522, -0.029677935, -0.006621197, -0.051451147, 0.047878113, -0.027227819, 0.009862057, 0.0699331, -0.004459705, -0.0576014, -0.058727454, -0.015348362, 0.013220625, 0.013647137, -0.049449958, -0.021880537, -0.016241629, -0.031932298, -0.011155692, 0.0069012116, 0.09321205, 0.046246175, 0.036603563, -0.029446509, -0.016850553, 0.0031453166, -0.0053052227, -0.02217541, 0.055039324, -0.021864407, -0.01988411, -0.028971858, -0.033952452, -0.041015685, -0.039047185, 0.006092104, 0.001391395, -0.012979081, -0.0037723312, 0.0294734, -0.010317009, 0.0062980764, 0.019106561, -0.0060282955, 0.01587585, 0.009510006, 0.021467373, 0.02536787, 0.009650201, 0.0408921, 0.07505493, 0.06166584, -0.009141944, -0.015047396, 0.023389434, 0.006093347, -0.06916448, 0.011368979, -0.062059224, 0.044505075, 0.02122361, -0.030229544, -0.008218154, -0.012340902, -0.0025031832, -0.023560632, -0.010915297, -0.007072289, -0.0076020793, -0.1085732, 0.010444601, -0.03401942, 0.02685012, 0.0022855112, 0.01536793, -0.012341609, -0.02938227, -0.05745967, 0.055556025, -0.012783762, -0.041917555, 0.031089714, -0.06053436, -0.011189803, 0.05089093, -0.0074016466, -0.03036442, -0.00833139, -0.016736055, -0.02437294, 0.022504004, 0.023009617, -0.035121553, -0.056785103, 0.054809973, 0.03928332, 0.0073072086, 0.04056514, 0.003220834, -0.0049765054, 0.008966359, 0.0056838416, 0.01709606, -0.023055457, 0.0266437, 0.058857884, -0.034256626, 0.05922781, -0.034317967, 0.042377584, -0.04309643, -0.0032187446, -0.032219358, -0.013713048, 0.008528794, 0.06676874, -0.076342344, -0.008699932, 6.587413e-05, 0.014060996, -0.10005956, 0.0061834697, -0.053156387, -0.024135018, 0.012880583, 0.027867587, -0.04969461, -0.0113123935, 0.06414634, 0.0042999773, -0.008891161, -0.0040309527, -0.008230178, -0.009626362, 0.01430143, 0.0032444145, 0.0032569405, -0.022134952, -0.01537811, 0.008327553, -0.044790752, 0.011409119, 0.012500216, -0.043954976, 0.04180444, -0.022298839, 0.05845856, 0.058915555, -0.030776998, -0.036926482, 0.02042546, 0.0077915704, 0.04483626, -0.042346403, -0.008238979, 0.074351266, 0.071123585, -0.017955313, 0.03454216, -0.0046107583, 0.008407834, 0.03706221, 0.04329527, -0.003699952, -0.021338977, 0.0075639556, 0.0060399706, -0.009992633, 0.014261859, -0.018379752, -0.033094056, 0.040629264, -0.028066428, -0.037480265, -0.0028656402, 0.053380158, 0.043995816, -0.002038842, -0.0008418035, -0.06506338, -0.011005293, 0.01587693, -0.026728185, -0.051180217, -0.037499398, -0.061437216, 0.01327547, -0.0317145, -0.019192498, 0.03528282, -0.029697234, 4.855538e-05, 0.03617374, 0.022195287, -0.012716405, 0.10439148, -0.02431096, -0.034756232, -0.036263254, 0.061504077, 0.026947558, 0.03570655, 0.0013534164, -0.004987122, -0.008820424, 0.004264216, 0.037699442, 0.018936362, 0.010970887, -0.00293745, 0.055871118, -0.043572787, 0.0075527783, -0.0064370683, -0.0016971693, -0.016774228, 0.035819117, 0.011182936, 0.027278282, 0.011435519, 0.043158032, -0.039561097, -0.03025343, 0.019552266, -0.00613866, 0.018911453, -0.04202852, 0.056724507, 0.02415525, -0.05584341, 0.010966573, 0.0073046423, 0.06261528, 0.003940947, 0.001955572, 0.023184909, -0.020603197, 0.04052542, -0.04788186, -0.029402662, 0.0070392727, -0.0038178435, -0.03510451, -0.005628367, -0.00935611, 0.020224275, 0.015190507, 0.04249369, 0.0116655985, 0.008177565, 0.03459048, 0.007855404, -0.034133542, -0.043955397, -0.032426644, 0.037538573, -0.0068583856, -0.08419883, 0.023342656, -0.015521043, -0.025770264, 0.051557634, -0.035794795, -0.021295173, -0.04283781, -0.012665491, 0.027922047, 0.055652462, 0.00071508635, 0.0035117762, -0.051598523, -0.020903831, 0.00031625215, 0.054770313, 0.026695563, -0.017627573, 0.006640614, -0.0058787214, 0.0055618463, 0.03813895, 0.027228521, 0.02940177, 0.012018568, -0.009412563, -0.008798307, 0.035228774, -0.03615881, 0.031355895, 0.055462442, -0.067057565, -0.028117614, 0.021035282, 0.03134252, 0.02651007, 0.03151569, 0.09273486, 0.013302589, 0.022793788, -0.031242566, -0.042486206, 0.051140875, 0.018580891, 0.0037865273, -0.013463212, 0.06849582, -0.031992946, -0.013814364, -0.07641458, 0.018856844, -0.010680825, -0.02355375, -0.03178426, 0.022192337, -0.043744393, 0.012992933, 0.020185594, 0.0127285365, -0.0024949373, -0.046237517, 0.083869286, -0.101460904, 0.014435165, -0.02857938, 0.028753428, -0.030235702, -0.025616981, 0.054520782, -0.07305071, -0.05975232, -0.031025255, -0.040005397, 0.0530028, 0.034575507, 0.008174698, -0.014388303, -0.003798202, 0.0002100529, 0.04018502, 0.029725248, 0.05490865, 0.0064847493, -0.016046992, -0.037605666, 0.017447239, -0.0077115893, 0.021011855, 0.058332127, 0.03125276, 0.03706129, 0.038960095, 0.02364293, -0.015847115, 0.0028258248, 0.07570784, 0.0186684, -0.016332932, 6.0420803e-05, -0.053849775, -0.016806388, -0.015534076, -0.054687142, -0.039021898, -0.01822274, 0.042772636, 0.065666154, -0.012365483, -0.024349144, 0.020161187, -0.01964641, 0.008004151, -0.034948766, 0.05921516, -0.0062856786, -0.024435425, -0.026651874, 0.02001928, 0.016222827, -0.05816362, 0.03239223, 0.03547018, -0.025425931, -0.01859224, 0.060810648, 0.01355673, 0.029666934, 0.025561024, 0.047621008, -0.014491098, -0.014317257, 0.006148257, 0.023626307, -0.05431481, 0.0013966166, 0.049740378, -0.03669213, -0.027530503, 0.007521756, -0.026484337, 0.037609994, -0.012136457, -0.0050405785, -0.020514455, 0.035615742, 0.043377273, -0.0354243, -0.015793156, -0.029054502, -0.011825732, -0.008180242, 0.02932681, -0.028644979, -0.03185577, 0.029018817, -0.025095701, -0.01064934, 0.0053060725, 0.0011413422, -0.010242692, -0.028589932, -0.00022712184, -0.053427935, -0.078445144, 0.013234855, -0.017928418, 0.007641673, 0.041859664, -0.027324364, 0.008962257, -0.07194267, 0.031412642, -0.020406263, 0.03134074, -0.037949864, -0.06817626, -0.01388283, 0.012421365, 0.051348116, -0.009132534, -0.0083327135, 0.006427835, -0.042702954, -0.015414974, 0.031312153, -0.04098204, 0.021447893, -0.002121425, 0.050790705, 0.07524083, -0.0486611, 0.018612707, 0.034721646, 0.037761495, -0.025732463, 0.0508222, -0.034647733, 0.024776818, -0.028980639, -0.012110747, -0.003733194, -0.046013903, -0.057841096, 0.012477946, 0.020469084, -0.0063069067, 0.0014147965, -0.025784934, 0.04266527, 0.022115493, -0.050536375, 0.023073753, -0.052547283, 0.02920687, -0.021445025, -0.035318077, 0.05822738, 0.0024765262, 0.035942424, 0.05961129, 0.0009592258, 0.036894348, 0.026195668, -0.018736381, -0.033265166, 0.058985475, -0.009851097, -0.041049052, -0.019957278, -0.03879367, -0.009783009, 0.010741584, 0.039430525, -0.028181203, -0.010890593, 0.046947002, 0.015155203, -0.043081094, 0.020755628, 0.020457821, 0.012504069, 0.11409328, -0.079061784, 0.032693654, -0.074732505, 0.028703546, -0.042457327, 0.0162429, -0.04402662, -0.0069909636, 0.0659964, 0.025606647, -0.00532769, 0.013681461, -0.06906095, 0.0061694556, -0.06732754, 0.016532173, 0.067250185, 0.011908009, 0.024749137, 0.053045224, 0.047283158, 0.040091697, 0.04519514, -0.024272911, -0.013406391, -0.028188955, -0.036159657, 0.044425376, 0.04535193, -0.00989256, -0.07180462, 0.021710925, -0.037307143, 0.08405703, 0.010804511, -0.048285026, 0.019251985, 0.062333446, 0.012114688, 0.012671032, -0.010017156, -0.028657928, -0.0064830254, -0.02567815, 0.05825741, -0.010600902, -0.009586821, 0.046748754, 0.03836558, -0.041773647, -0.02040632, -0.05620064, -0.04731843, -0.039308164, -0.025775123, 0.03599595, 0.030541308, -0.01150917, 0.02530883, 0.0048810365, 0.018314663, -0.048485518, 0.047513016, -0.0062711043, 0.016006706, 0.0060288273, -0.000601171, 0.01565406, -0.08641909, 0.00014939217, 0.07522913, -0.038795076 ] }, { "values": [ 0.0047221784, -0.03403846, -0.031396765, -0.03723995, -0.018077224, 0.029840035, 0.01153085, 0.057754274, 0.007733615, 0.012787947, 0.035454437, 0.025384754, 0.007477063, -0.0030914831, -0.03636652, -0.03449234, 0.0139641585, -0.0232105, -0.08640053, 0.001437624, -0.008110735, 0.046410106, -0.024539439, -0.05561687, -0.020176882, 0.030070977, 0.028387923, -0.057500754, -0.004759138, -0.020446634, 0.03767012, 0.010675994, -0.047646306, -0.0044022715, 0.021235088, 0.03869135, -0.053001918, -0.005116226, 0.024314757, -0.03279301, -0.048337426, -0.036552, 0.021838685, 0.019424181, -0.057714257, 0.013533569, -0.015104374, 0.031209385, -0.046981137, 0.009280773, -0.020956412, -0.029819086, 0.010810033, 0.007811275, 0.009962461, -0.050513882, -0.057771504, -0.03869545, 0.03179325, -0.005327259, 0.0068950164, 0.05407105, -0.047146875, -0.017102364, -0.02339399, -0.02204171, -0.08765431, -0.025599925, -0.047983434, 0.031678, -0.05718938, 0.012388543, -0.0010092338, -0.014901271, -0.028416546, -0.0383443, 0.025158592, -0.017256066, -0.020109752, 0.01971207, 0.008716431, -0.030117765, 0.04980966, 0.07887014, 0.061805952, 0.022974467, 0.03989788, -0.052157022, -0.07078433, 0.020012725, 0.034867167, -0.0263967, -0.015548207, -0.029635867, 0.06817843, -0.020317955, -0.050334685, -0.08826272, -0.009456046, 0.06670459, -0.049878936, 0.005322369, -0.025285834, -0.032530468, 0.027729861, 0.070276156, -0.03533282, -0.027565528, -0.008241809, -0.0018663364, 0.0072027426, -0.015940774, -0.032395877, 0.030879444, -0.0012906101, -0.036431894, 0.026399644, -0.01203874, -0.0035724472, 0.010622949, 0.04101849, -0.0213074, -0.027620215, 0.0368792, 0.02382633, 0.022159921, 0.02657643, -0.01747117, -0.020037502, -0.04380906, 0.046982266, -0.11257025, 0.013359311, 0.011502372, -0.048591796, -0.034111567, 0.038001616, 0.023175972, -0.052608445, 0.0063518737, 0.008450447, 0.0029261908, -0.012788031, 0.045354698, 0.0054601035, -0.014773982, -0.030084778, 0.040387824, 0.0018201557, -0.0030481694, -0.063555844, 0.0051744734, 0.048676264, -0.023268145, -0.060360722, 0.008238685, 0.054938216, -0.043475926, 0.025453623, -0.042148463, 0.023141036, -0.0532997, -0.0016981424, -0.004659152, -0.06700531, 0.020216707, 0.03335058, -0.061157547, -0.037514288, -0.056264125, 0.00036138017, -0.031943366, -0.03706495, -0.08380805, -0.0041200747, -0.03918084, -0.04026651, -0.0032076803, -0.041281875, -0.0396399, 0.021934012, 0.0452942, 0.040802553, -0.0012991269, -0.056906205, -0.018124416, 0.00082440476, 0.064942956, 0.009341425, 0.05778978, -0.03349975, 0.014293302, 0.03022489, 0.04252479, 0.01744922, 0.03490083, 0.052147, -0.025485309, -0.040685356, -0.047137238, 0.03885392, 0.025105735, -0.01400301, 0.07144003, -0.012896205, -0.02845017, -0.0507535, -0.02968289, 0.040632416, 0.012879696, -0.035724364, 0.018246727, 0.005965885, -0.028190646, 0.0033115477, -0.013995219, 0.09274627, 0.021153852, 0.036090903, -0.052180015, -0.013076262, 0.009370863, 0.004593856, -0.0039639007, 0.0629994, 0.013583077, 0.0011467158, -0.010765675, -0.031017262, -0.045919135, -0.0461109, 0.020891942, -0.028157236, -0.011908221, -0.004339943, 0.04628999, 0.028209008, -4.6371526e-05, -0.017166305, 0.014213215, 0.01951528, 0.014441779, 0.03305058, -0.0047754017, -0.019903744, 0.08204046, 0.085636534, 0.043213993, -0.04255003, -0.034734786, 0.02326921, -0.013945504, -0.08961715, -0.018295443, -0.056314554, 0.028764617, 0.017982308, -0.020947238, 0.0118152015, -0.001305556, 0.04274553, -0.02486638, -0.018335555, -0.02273226, -0.0020923086, -0.0818774, -0.007914024, -0.0102390945, 0.023383882, -0.017668577, 0.008209377, -0.023974942, -0.062417716, -0.03594429, 0.047699858, 0.011495623, -0.030060023, 0.008533707, -0.06457031, -0.025413109, 0.07013441, -0.020048503, -0.02581253, -0.02110649, -0.021962332, -0.015907919, 0.009264346, 0.052382864, -0.029909104, -0.045407206, 0.03628683, 0.02306069, 0.012552204, 0.01403212, 0.019873546, -0.014613864, 0.00513583, 0.005501028, -0.014031297, -0.02265963, 0.010745174, 0.056152087, -0.04202987, 0.060141157, -0.009375211, 0.023858193, -0.027119618, -0.023070741, -0.001429735, -0.019992676, 0.013236847, 0.06368224, -0.08229203, -0.009808738, -0.0013582979, 0.019638218, -0.13737041, 0.013929505, -0.040868964, -0.012104, 0.012018138, 0.0140183875, -0.037314795, -0.022787098, 0.03914753, -0.00035268953, -0.009841489, -0.0065496275, 0.0052478216, -0.01040264, -5.222312e-06, 0.010142869, 0.013456301, 0.0066571184, -0.026433181, 0.034334164, -0.055210587, 0.02943465, -0.0063529275, -0.019984998, 0.024492553, -0.013155567, 0.05388632, 0.05509697, -0.0049032513, -0.027861385, -0.0017074351, -0.00088293833, 0.036611743, -0.059551165, -0.01603213, 0.069855966, 0.034502115, -0.019214263, 0.03364442, 0.012944535, 0.009085239, 0.03906063, 0.0048692133, 0.009058428, -0.037222233, -0.014278035, 0.017664721, 0.0008322774, 0.015907729, -0.0051873173, -0.021319022, 0.0464399, -0.040074594, -0.029234469, 0.013969851, 0.04840785, 0.06154619, 0.03281122, -0.003022693, -0.07266984, -0.01694908, 0.009028574, -0.024561156, -0.039758302, -0.04005798, -0.065466695, 0.023780582, -0.0316749, -0.02650272, 0.016304966, -0.036876142, 0.008031866, 0.047651548, 0.0415283, -0.03611648, 0.06684639, -0.02969577, -0.03002239, -0.022775654, 0.06992876, 0.03384822, 0.028102614, -0.027719893, -0.0012814859, -0.008532898, -0.023376895, 0.039031114, -0.013259748, 0.029533878, 0.0046183127, 0.054609925, -0.012996645, -0.0004103613, -0.026906982, 0.00969031, -0.018839467, 0.025142353, 0.044875037, 0.013341212, 0.033148587, 0.053466137, -0.040159255, -0.021632982, 0.008526871, 0.018103596, 0.0033491107, -0.04426281, 0.07856722, -0.018905478, -0.05312301, -0.008994304, 0.02846318, 0.06677395, -0.007578504, 0.004892874, 0.013639327, -0.02542853, 0.03391397, -0.083929986, -0.026448438, 0.011442628, 0.0068056514, -0.00318208, 0.001730611, -0.017393125, 0.03154699, 0.03286891, 0.05653326, 0.016003357, 0.012172063, 0.027245458, -0.026106114, -0.039566, -0.059764426, -0.04245651, 0.005658588, 0.0046907635, -0.062479395, -0.008488995, -0.014299001, 0.008118897, 0.023549424, -0.027628528, -0.018143153, -0.04068066, -0.007966037, 0.03167223, 0.048618235, -0.0090594655, 0.015204149, -0.06077282, -0.009860329, -0.011376694, 0.0529533, 0.029722856, -0.0131810345, 0.007565257, 0.0018458539, -0.00025529196, 0.026309196, -0.001384525, 0.040946066, 0.026708575, -0.010623161, -0.011312295, 0.033157315, -0.024646906, 0.029087186, 0.056560624, -0.05503664, -0.039627165, 0.034814287, 0.028241973, 0.03386231, 0.04578377, 0.09377499, 0.011553391, 0.03007045, -0.009658799, -0.0348313, 0.040599577, -0.0064402693, 0.0066173966, -0.014423577, 0.08129195, -0.030395214, -0.015526685, -0.063125886, -0.008511341, -0.014125531, -0.047220543, -0.023049898, 0.010062796, -0.034170497, 0.03428666, 0.02918516, 0.046552893, 0.00044210049, -0.027301388, 0.07853364, -0.10166898, -0.0031037678, -0.014300776, 0.037123833, 0.0029967069, -0.0029580824, 0.05134363, -0.059430584, -0.049189314, -0.027125679, -0.05382396, 0.041304663, 0.038834404, -0.021079006, -0.043354526, 0.009602065, 0.0100101875, 0.0434934, 0.028988658, 0.014533569, 0.0006338259, -0.012691557, -0.045144115, 0.016815169, -0.017726475, 0.052872885, 0.047936205, 0.008779366, 0.040335022, 0.031560022, 0.01634755, -0.031905796, -0.005316394, 0.08760624, 0.010254928, 0.009291786, 0.00615788, -0.02703206, 0.010765908, -0.026901327, -0.042511057, -0.020329393, -0.044668067, 0.027166389, 0.06792388, -0.00045673197, -0.014319208, 0.026411869, -0.0035264825, -0.0032708177, -0.05657163, 0.041741155, 0.021621985, -0.039060608, -0.010728108, 0.0278058, 0.014585289, -0.05119989, 0.0606664, 0.023254566, -0.026782129, -0.009551227, 0.048168316, 0.012400352, 0.025560685, -0.0017301908, 0.043424554, -0.025261763, -0.024404433, -0.0026805156, 0.0325172, -0.0622026, 0.009997763, 0.06904561, -0.0314841, -0.032899406, -3.3599637e-05, -0.027263783, 0.0209425, -0.020068413, -0.0027182428, -0.0007448606, 0.04569839, 0.063920885, -0.034406777, -0.01730203, -0.023273833, -0.0077336174, -0.025753086, 0.008757482, -0.04150385, -0.035271563, -0.0011836278, 0.0046617277, -0.014308334, 0.0119788125, -0.009826914, 0.005866214, -0.020324478, 0.025313653, -0.060362, -0.03774934, 0.009169875, -0.023652839, -0.018910138, 0.022726974, -0.026838997, 0.0067961286, -0.07114212, 0.04751324, -0.028760199, 0.054911427, -0.014342593, -0.067902505, 0.0004387325, 0.043494493, 0.037971057, -0.0053797695, -0.006393797, 0.009769432, -0.021101162, -0.0073850877, 0.023187837, -0.053257275, 0.02552884, -0.022251092, 0.05831986, 0.06709151, -0.055772893, 0.016474633, 0.0022719179, 0.017095571, -0.0076566464, 0.067563474, -0.023792136, 0.062488947, -0.03349144, -0.023801606, -0.0042402484, -0.043877747, -0.06219975, 0.0054032025, 0.016662661, 0.013064215, -0.008538999, -0.019781115, 0.032493453, 0.013308786, -0.048248585, 0.035529245, -0.0291401, 0.0059985695, -0.025324654, -0.014138452, 0.046939436, -0.005374379, 0.03913933, 0.060811106, -0.0025780324, 0.015506268, 0.013393935, 0.007853478, -0.04900857, 0.07149924, -0.007001914, -0.06045941, 0.003163339, -0.04772669, -0.025755787, 0.009108452, 0.037299927, -0.049470615, -0.0005503908, 0.042065173, -0.02426689, -0.06280404, 0.030990915, 0.0026116364, 0.010488436, 0.086215384, -0.06512071, 0.0423737, -0.06828333, 0.0409903, -0.05523811, 0.016114354, -0.053479407, -0.036570452, 0.074535556, 0.053152397, 0.004534672, 0.00030282422, -0.06621681, 0.0112381475, -0.08232448, 0.022119494, 0.07821151, 0.018765043, 0.021405822, 0.05633684, 0.0392573, 0.024121849, 0.03703104, -0.056443635, -0.03264548, -0.03500728, -0.013843378, 0.06268166, 0.03749348, 0.002987508, -0.054397486, 0.005433475, -0.020705998, 0.072987564, 0.030960342, -0.049826805, -0.0009516028, 0.05918609, 0.024846861, -0.0076906565, -0.027284889, -0.02577348, -0.0025360521, -0.040854134, 0.05670519, -0.029157208, -0.007158053, 0.02023681, 0.041082032, -0.0064360155, -0.032074675, -0.057712816, -0.034763977, -0.022073513, -0.034520075, 0.0012853392, 0.053558152, -0.011138274, 0.0016354639, -0.008755392, 0.032336097, -0.057606317, 0.055715296, -0.00081162405, -0.0018872083, -0.009288739, 0.014754452, 0.019974796, -0.09745842, 0.0023919165, 0.053361204, -0.029041743 ] }, { "values": [ -0.010967354, -0.037455805, -0.029791001, -0.022037651, -0.016108222, 0.0061162137, 0.034705225, 0.009881227, 0.013319368, 0.006627275, 0.028431682, 0.032347534, 0.028546156, -0.019461675, -0.0647108, -0.023601854, 0.015426536, -0.015195061, -0.10954742, -0.022580374, -0.016988019, 0.025905846, -0.019545903, -0.043533035, -0.014383132, 0.021507919, 0.04643911, -0.07514081, -0.016625268, -0.0031405862, 0.037484966, 0.03152015, -0.047208257, -0.018137626, 0.059742525, 0.027803183, -0.048966948, -0.019335011, 0.03710082, -0.019243274, -0.05830552, -0.0057847956, 0.02262939, 0.013540286, -0.0337419, 0.006286961, 0.0051685856, 0.022227475, -0.020901293, 0.034873415, 0.0020209728, 0.0014347342, 0.038515575, 0.011789684, 0.029481623, -0.059280597, -0.086029, -0.058796294, 0.032865968, -0.005465783, 0.01789117, 0.050156184, -0.04482556, -0.034856796, -0.022288758, -0.02131196, -0.054815087, -0.022377187, -0.036632963, 0.025220739, -0.015319111, 0.03516174, 0.009231508, -0.019435253, -0.012473367, -0.029207801, -0.03267545, -0.0037482386, -0.043158706, 0.021366524, -0.014825211, -0.008734774, 0.061805762, 0.07940693, 0.046076912, 0.024203317, 0.023383267, -0.07148926, -0.045887895, 0.015140701, 0.028260516, -0.0050709, -0.016473956, -0.029567689, 0.026451865, -0.043705564, -0.07185574, -0.09737194, -0.0068053207, 0.10733219, -0.017468372, -0.010928873, -0.019542314, -0.043057233, 0.026865104, 0.056796107, -0.04164471, -0.029466484, -0.023701075, 0.013504337, 0.005679496, -0.021272888, -0.0073144105, 0.046475228, 0.0035646118, -0.015981637, 0.010029946, 0.00018487904, 0.008456222, -0.005877043, 0.020713875, -0.025162544, -0.04912549, 0.020334521, 0.018489879, -0.0014344825, -0.008217699, -0.018943029, -0.022982698, -0.08238729, 0.06068437, -0.10809254, 0.0040866006, -0.00083291455, -0.024750955, -0.032656882, 0.017191216, 0.031077782, -0.018913414, 0.046859678, -0.02591922, 0.012841038, 0.0017745759, 0.038278848, -0.004751482, -0.00025891085, -0.059616316, 0.056158956, -0.020442547, 0.008648225, -0.06272854, 0.0027706092, 0.04641323, -0.023961214, -0.06801697, 0.04065322, 0.06330239, 0.0006684409, 0.011081085, -0.05926559, 0.036989044, -0.022274818, -0.0029553531, 0.008259577, -0.06238741, -0.031666316, 0.022639187, -0.048158623, -0.030571248, -0.057941698, 0.011481781, 0.016747184, -0.024442306, -0.09968804, 0.034558542, -0.007968525, -0.03089953, 0.005380755, 0.0031815872, -0.03592896, 0.032695595, -0.01168592, 0.029014917, -0.00678938, -0.036542904, -0.024452994, -0.047675394, 0.0896102, 0.022965813, 0.044194974, -0.017997503, 0.016925208, 0.009498322, 0.05561532, 0.018593328, 0.034496382, 0.0153561365, -0.029779488, 0.017216237, -0.021351494, 0.07672362, -0.01448325, -0.010339059, 0.06183479, -0.019513192, -0.045025025, -0.043093678, -0.009474838, 0.02401938, 0.011921116, -0.07849698, -0.025281103, 0.015380835, -0.03515062, -0.010950429, 0.03705471, 0.0761129, 0.021752177, 0.012536785, -0.03744086, -0.021042064, 0.006924209, 0.0067367526, -0.005819795, 0.054913532, -0.00565637, -0.023314178, -0.061678655, -0.025214743, -0.019211229, -0.04866843, 0.021415431, 0.0043321657, -0.012030062, -0.016685382, 0.030934157, 0.006581693, 0.011370567, 0.015805323, 0.003705363, -0.0017096086, 0.014918549, 0.04265439, 0.029002562, 0.003883821, 0.08769329, 0.093024075, 0.0467489, -0.02710547, -0.02075301, 0.026009986, -0.01329492, -0.07470403, 0.0021695415, -0.04801924, 0.0058506588, 0.015026531, -0.060898136, 0.0042302497, -0.015955882, 0.0238571, -0.02202117, -0.008164831, -0.007900267, -0.028074093, -0.067930736, -0.008350232, -0.009803395, 0.047294043, 0.007709167, 0.030192938, -0.005693628, -0.044174, -0.038327806, 0.03195805, -0.0012046874, -0.013573661, 0.024405887, -0.048489593, -0.01632462, 0.06193611, -0.030393137, -0.03062741, -0.03431375, -0.00036738985, -0.018037302, 0.030914897, 0.035934716, -0.03812663, -0.026630782, 0.065907024, 0.02958411, 0.018825436, 0.03413527, 0.018388225, -0.02526592, -0.022133753, 0.019226678, 0.00626539, -0.021333551, 0.021162916, 0.056764588, -0.010937264, 0.021839045, -0.016944425, 0.03171592, -0.04502986, -0.04216559, 0.0066955662, 0.005062376, 0.0015738312, 0.06682074, -0.06280671, -0.029707832, 0.020025209, 0.03461851, -0.13407318, 0.013750111, -0.044996236, -0.00077818887, -0.004071872, 0.026252195, -0.021243135, 0.00041638175, 0.057983965, -0.011942391, -0.007063093, -0.019477816, -0.010104774, 0.0015006625, 0.012885147, 0.0073946323, 0.02130823, 0.013917177, -0.026896749, 0.033817355, -0.023274042, 0.014593038, 0.019820407, -0.014277315, 0.031384137, -0.030057564, 0.050023288, 0.03957325, -0.016824817, -0.04995839, 0.01326986, -0.027572615, 0.0537382, -0.03382819, -0.03513765, 0.0779026, 0.08004891, -0.03420765, 0.027745163, 0.014733354, 0.020944068, 0.057011638, 0.030509444, -0.010099218, -0.032230366, 0.026616639, 0.010150688, -0.013969344, 0.0009565871, -0.02150761, -0.025925318, 0.025825737, -0.03775028, -0.04469313, 0.017166018, 0.041727122, 0.044298787, 0.0033495785, -0.009004462, -0.084614635, -0.030287288, 0.026471013, -0.028703311, -0.05308363, -0.06214161, -0.063629955, 0.027713535, -0.044024814, -0.025110489, -0.005213038, -0.033094916, -0.0057545365, 0.041730303, 0.02575966, -0.021116968, 0.09318422, -0.0348824, -0.017552927, -0.017210696, 0.051480196, 0.001418234, 0.04179623, 0.011401522, -0.035358053, -0.01160336, -0.016590964, 0.04376158, 0.027489731, 0.019773943, 0.00390622, 0.057643674, -0.033538032, -0.0024188587, -0.026346799, 0.004033482, 0.011731064, 0.01583091, 0.03392112, 0.00955595, -0.009295835, 0.025371647, -0.035046406, -0.026677296, 0.001570154, 0.021562979, 0.02827927, -0.023821225, 0.054255128, -0.026911052, -0.08419804, 0.007853439, 0.018392606, 0.032285564, -0.018851748, -0.02257695, 0.00765801, -0.03433656, 0.02789157, -0.08775998, -0.032580722, 0.014685206, 0.028113352, 0.002205601, -0.021432675, -0.0028490091, 0.015765533, 0.025724998, 0.03076728, 0.02529939, 0.020188482, 0.057887755, 0.0010153647, -0.05226042, -0.061388806, 0.0046949363, 0.023518395, -0.0025497999, -0.056141537, 0.0012994115, -0.038542457, 0.002573312, 0.010970359, -0.033041626, -0.002789631, -0.025512371, 0.0014721919, 0.042934064, 0.055014152, 0.008241521, -0.005120204, -0.061840337, -0.0013016276, -0.0074298447, 0.038408726, 0.020771716, -0.030019281, 0.028603425, 0.016460132, -0.0032724913, 0.036552664, 0.010079434, 0.009963729, 0.033288013, -0.02199633, -0.027752485, 0.049959764, -0.024225129, 0.036736403, 0.049271878, -0.07074566, -0.0062649604, 0.0061781732, 0.031939723, -0.00532104, 0.019384312, 0.09900295, 0.022604983, 0.021209558, -0.00835918, -0.033854198, 0.07606009, -0.006614045, 0.04188905, -0.01589977, 0.062263906, -0.01840842, -0.01294101, -0.046503067, -0.002932454, -0.026616277, -0.0359762, -0.017024387, 0.021545256, -0.01622802, 0.012151656, 0.0477548, 0.010453908, -0.006717395, -0.025680209, 0.0870436, -0.07793329, 0.007563201, -0.031680644, 0.04660201, -0.026392207, -0.02177161, 0.060601965, -0.07391521, -0.05846884, -0.02454012, -0.05047575, 0.03946968, 0.020962615, -0.012208366, -0.034495175, -6.1144114e-05, 0.006478246, 0.038635638, -0.00035294384, 0.046085227, 0.0053179367, -0.054544132, -0.037427437, 0.00961582, 0.0030595134, 0.02090166, 0.059082072, -0.016752446, 0.03450757, 0.037832078, 0.031212049, -0.014056644, -0.026163567, 0.071457565, 0.0043916656, -0.0027324257, 0.011810868, -0.014288192, -0.030736376, -0.030809028, -0.0551429, -0.05852228, -0.032783203, 0.031344302, 0.035865314, -0.013011254, -0.023731805, 0.048178133, -0.026135003, 0.011202967, -0.024889778, 0.06704754, -0.0072883056, -0.030895941, 0.0019226721, 0.01154913, 0.0046213013, -0.04988229, 0.03630423, 0.03793466, -0.02483489, -0.0050927224, 0.056660417, 0.025751736, 0.03319958, 0.0076649757, 0.06806061, -0.02406902, -0.049187575, 0.03162738, 0.024398085, -0.066834345, -0.009182018, 0.060170114, -0.008989869, -0.028901828, -0.009000893, -0.027465178, 0.02284451, 0.012085679, 0.0100171035, -0.028505545, 0.015474646, 0.05258512, -0.040875383, -0.025291113, -0.033553846, -0.0127617, -0.008940082, 0.00988302, -0.04152318, -0.022010798, 0.051273223, -0.020098425, 0.009782426, 0.0060672597, -0.0027851714, -0.017495329, -0.03143792, 0.021464715, -0.058946185, -0.057630066, 0.016591804, -0.049810495, 0.025619972, 0.055044986, -0.025471684, -0.005752184, -0.067479506, 0.014380548, 0.0007639762, 0.047418293, -0.01784137, -0.058604993, 0.014181244, 0.012896687, 0.05029187, -0.025946034, -0.013273042, 0.018235704, -0.026787095, -0.0072323144, 0.033186693, -0.049363438, 0.01805816, 0.0021995266, 0.036001287, 0.06724317, -0.06160015, 0.009034077, 0.0044322354, 0.019596446, -0.0130209755, 0.032166164, -0.04401338, 0.0136426585, -0.025896888, -0.038229514, 0.002982053, -0.028739085, -0.05254203, -0.0060856785, 0.01576861, -0.017531317, -0.004658079, -0.029506415, 0.026957793, 0.00915916, -0.015275934, 0.0081280405, -0.025816875, 0.02530604, -0.004408439, -0.028989373, 0.037150316, -0.004662977, 0.053286463, 0.059096534, -0.023912814, 0.017110294, 0.023135282, -0.018905807, -0.03514876, 0.056879707, -0.003054098, -0.028774127, -0.01828679, -0.03993469, -0.024277912, 0.012442842, 0.054930314, -0.03149042, -0.011673689, 0.033933986, 0.0023832459, -0.06071624, 0.00213266, 0.008851169, -0.0042983107, 0.09618286, -0.06941771, 0.043106705, -0.0855093, 0.01653597, -0.049654998, 0.027214518, -0.06969765, -0.0068831807, 0.059287358, 0.05999159, 0.003947742, 0.031259887, -0.07102117, 0.019217461, -0.072243094, -0.0076344935, 0.07469711, -0.0019731617, 0.042489547, 0.046046678, 0.04510793, -0.0013271671, 0.05126135, -0.00966885, -0.0025766478, -0.058968686, -0.01213351, 0.055798803, 0.030771762, -0.010243869, -0.07817285, -0.012015096, -0.04140623, 0.077851325, 0.033032138, -0.059166558, -0.00011279274, 0.042074632, 0.008648131, -0.010322666, -0.049398217, -0.013807156, -0.013662455, -0.0374303, 0.06266076, -0.025325231, 0.006632596, 0.043497905, 0.025683576, -0.041241806, -0.029097348, -0.049477648, -0.029475424, -0.011492282, -0.03753483, 0.036826283, 0.031387493, -0.012482177, 0.006994042, -0.010673599, 0.021015616, -0.023213366, 0.037113763, -0.0030804328, 0.0048931367, 0.007464572, -0.0038673927, 0.030147834, -0.049896147, 0.02555893, 0.08994698, -0.040555418 ] }, { "values": [ 0.0036101397, -0.0562047, -0.023335263, -0.002657102, -0.013253855, 0.021370735, 0.008864674, 0.015629169, 0.02803909, 0.032726303, 0.041980904, 0.016474778, -0.008827507, -0.008549366, -0.03973721, -0.050674003, 0.00091972674, -0.013344506, -0.10287894, -0.03479347, -0.0010315415, 0.026800001, 0.01254502, -0.01959612, -0.01736656, 0.0064104227, 0.0418382, -0.053527743, -0.008697082, -0.021948695, 0.044522658, 0.028615225, -0.029304665, -0.026100459, 0.03217977, 0.04781549, -0.080164306, -0.01121991, 0.010783959, -0.041589297, -0.068751454, -0.01441343, 0.012277662, 0.014415942, -0.036385566, 0.017130759, 0.0045622992, 0.018296925, -0.007850142, -0.001345176, -0.024509028, -0.035977803, 0.04023224, 0.0001792454, 0.019685052, -0.07526841, -0.07297023, -0.006493758, 0.051268473, -0.019367559, 0.019729193, 0.07206637, -0.038468655, -0.023062525, -0.039157726, -0.0181871, -0.06847808, -0.0036989558, -0.03527272, 0.050735332, -0.042560525, 0.030069657, 0.00034457035, 0.0061805975, -0.03203881, -0.041298833, 0.0058858353, -0.016244212, -0.05165258, 0.026245989, 0.021435838, -0.0023682432, 0.05162127, 0.06128333, 0.044777907, 0.023103733, 0.06298836, -0.059090678, -0.052065566, 0.014335756, 0.030408284, -0.0039496967, -0.015720159, -0.015147739, 0.029681616, -0.0046343454, -0.046605363, -0.113916904, -0.015086812, 0.06911719, -0.014928436, -0.030701349, -0.030768054, -0.045720026, 0.037256517, 0.032667924, -0.054266915, -0.024524504, -0.048768353, -0.0098058395, 0.006173379, -0.019957274, -0.010541216, 0.033111777, -0.011017156, -0.028362894, -0.0060197557, -0.002055453, -0.015177903, 0.014854641, 0.025668615, -0.01650574, -0.06168652, 0.037159473, 0.038058292, 0.0038974832, -0.013664697, -0.015063502, -0.026638728, -0.03878946, 0.06579195, -0.11834169, 0.010614071, 0.0023907926, -0.013631562, -0.044019815, 0.049140584, 0.009311455, -0.021814981, 0.022049611, -2.8455715e-05, 0.002735798, -0.013741687, 0.050106063, 0.004170598, -0.014196622, -0.045876045, 0.049437936, -0.014297218, 0.024539134, -0.073595844, 0.0015232753, 0.03663155, -0.00071848906, -0.076785535, 0.05452569, 0.05155641, -0.0066186213, 0.035799168, -0.037462067, 0.045170523, -0.029469082, -0.011868883, 0.0068918006, -0.07775759, 0.012254384, 0.013992371, -0.05393279, -0.03949081, -0.040246293, 0.021556612, -0.002534297, -0.02331918, -0.07945, 0.022077119, -0.039216597, 0.022490133, 0.0024730891, -0.014640457, -0.03907768, 0.035026465, 0.007906668, 0.016361605, -0.010644278, -0.028176196, -0.02830347, -0.013605998, 0.08229233, 0.031276695, 0.044587173, -0.016401142, 0.009029113, -0.006804475, 0.057375845, 0.027813936, 0.016379517, 0.013183398, -0.0031189036, -0.02069209, -0.03781979, 0.061146077, 0.009875754, -0.034664262, 0.087078966, -0.027471311, -0.009352567, -0.05143756, -0.02727596, 0.02251833, 0.0076663624, -0.05144403, -0.032186862, 0.039542392, -0.030187424, -0.0045649507, 0.01991603, 0.09124552, 0.016621437, 0.02999195, -0.016079536, -0.049611934, -0.0068763397, 0.0014469455, -0.0013849757, 0.043307774, -0.0051033357, -0.006279882, -0.039361093, -0.02610365, -0.025764009, -0.010097564, 0.026114104, -0.017253354, -0.0063412073, -0.023276245, 0.050221298, 0.009965523, 0.00815461, 0.012626231, 0.013743026, -0.005854249, 0.0073141367, 0.035485398, 0.030180259, 0.00042128237, 0.0865139, 0.07150833, 0.058473274, -0.028747244, -0.030628769, -0.00255184, 0.001933725, -0.079065286, -0.01608106, -0.06479375, 0.010542869, 0.020175658, -0.045578845, 0.029633602, -0.0076698163, 0.04332069, -0.01080167, 0.000997837, -0.014875705, -0.009173855, -0.06473765, -0.016125765, -0.02137644, 0.044504393, -0.010076551, 0.025692036, -0.014444032, -0.05011795, -0.056741714, 0.027951522, 0.024553722, -0.038182046, -0.014374457, -0.043766055, -0.036458824, 0.0848464, -0.018291263, -0.015591024, -0.023368565, -0.0040488965, -0.010473552, 0.013090054, 0.041488044, -0.045450423, -0.014831773, 0.039370365, 0.041513517, 0.012091089, 0.012544977, 0.011342014, -0.00269302, 0.000386255, -0.0038531502, -0.03713702, -0.021995295, 0.03690533, 0.06929461, -0.012603409, 0.025980482, -0.00735554, 0.0036755444, -0.037176017, -0.021707771, -0.006322903, -0.004795364, -0.0009403249, 0.047392897, -0.072367445, -0.0003367955, -0.00900303, 0.016377533, -0.13165244, 0.007865952, -0.06550809, 0.010168943, 0.02495031, 0.003964202, -0.0023244256, -0.037389483, 0.05973204, -0.0017342324, 0.0107415235, -0.0069074132, -0.02077039, -0.015164228, 0.00821973, 0.019745052, 0.027622316, 0.005054607, -0.013677512, 0.00131378, -0.024768371, 0.0060614627, 0.031550124, -0.016906878, 0.03127017, -0.024152448, 0.039565407, 0.05800682, -0.024052588, -0.044298217, 0.02093223, -0.008411942, 0.024467045, -0.049836073, -0.04514392, 0.075215526, 0.0755357, -0.012984525, 0.019531457, -0.0016583274, 0.014206561, 0.020633264, 0.024542488, 0.0018378719, -0.02244337, 0.0051952247, 0.01788889, -0.009048684, 0.036978647, -0.016067667, -0.0060207066, 0.03675679, -0.028017111, -0.05155772, 0.014238263, 0.034396082, 0.053745933, 0.023046589, 0.004887755, -0.05394341, -0.021422647, 0.028708186, -0.020831753, -0.055223655, -0.03536162, -0.062014647, 0.031094244, -0.01221723, -0.029846333, 0.026412303, -0.020167768, 0.0141960895, 0.042815186, 0.032165624, -0.041956987, 0.07872592, -0.03217803, -0.017104793, -0.035428762, 0.06245617, 0.0087992195, 0.025753086, 0.0018538025, -0.009773619, -0.018700534, -0.02703271, 0.05888418, 0.026775105, 0.021931736, 0.018992815, 0.05418522, -0.051639594, 0.0004651928, -0.03629479, 0.006575359, 0.024758687, 0.0028090023, 0.020919982, 0.01103419, 0.011518924, 0.054072388, -0.04107916, -0.02394446, -0.0057644383, 0.021540266, 0.040435642, -0.018213706, 0.042254645, -0.010776907, -0.06463676, -0.008427268, 0.027738871, 0.06570011, -0.0025644067, -0.009952067, 0.019697169, -0.048610743, 0.038858056, -0.07287745, -0.012785182, 0.0035518026, 0.018871635, -0.009403793, -0.0066431854, 0.0070336177, 0.038669538, 0.017340941, 0.03630908, 0.023649521, 0.008363395, 0.049305934, 0.00727069, -0.05126848, -0.070078224, -0.0300588, -0.015602767, -0.012974091, -0.04670209, -0.011637552, -0.02885048, -0.00092100876, 0.015753038, -0.066864304, -0.0096681295, -0.07588846, 0.0016278832, 0.052876107, 0.050742913, 0.019760458, 0.0029754555, -0.063831836, -0.0065868753, 0.0014733173, 0.05627505, 0.012782997, -0.003260986, 0.026568035, 0.0055730836, 0.0071342546, 0.049193565, -0.0045372397, 0.03690298, 0.054279774, -0.00031851957, -0.020438917, 0.03520809, -0.019193726, 0.035455253, 0.065551415, -0.058432054, -0.0068916627, 0.020401016, 0.023485323, 0.030323751, 0.044797145, 0.09365609, 0.016609361, 0.03375808, -0.026754439, -0.047421202, 0.028292423, -0.007388532, 0.025340745, -0.006303265, 0.050320417, -0.047394633, -0.016018132, -0.060114738, 0.03582302, -0.015331482, -0.050655, -0.031799536, -0.0075768, -0.013772241, 0.01869308, 0.035835158, 0.03709152, -0.009484536, -0.035603635, 0.07772167, -0.109818414, -0.011837704, -0.01971419, 0.052696276, 0.0114274565, -0.004495767, 0.066243194, -0.04880988, -0.058898285, -0.04192804, -0.026839277, 0.036544364, 0.024389854, -0.013755616, -0.03674467, -0.0055068205, -0.013121055, 0.06164793, 0.01219963, 0.018932516, -0.002108103, -0.02019961, -0.03740354, 0.026175568, 0.023800733, 0.041130148, 0.050496235, -0.015564809, 0.06692937, 0.0076049445, 0.027984925, -0.009069352, -0.022198766, 0.070352264, 0.022695465, -0.011271996, 0.01965946, -0.01091371, -0.013818232, -0.03748463, -0.049625326, -0.044314466, -0.038481668, 0.020876769, 0.050394144, -0.0073693804, -0.010492334, 0.029776404, 0.002642867, -0.02274392, -0.028785324, 0.05755227, -0.016700441, -0.04733845, -1.41697e-05, 0.019410046, 0.003964178, -0.049056336, 0.035575274, 0.004408171, -0.018674823, -0.02155046, 0.053183332, 0.0041938047, 0.027986307, 0.0031075166, 0.05689065, -0.03296763, -0.026814781, 0.041639935, -0.0059330985, -0.056951705, -0.0013172823, 0.041650604, -0.015580055, -0.00608051, -0.0063133403, -0.004388517, 0.03575008, -0.011253605, 0.013276507, -0.030867709, 0.0117954975, 0.030062303, -0.012324527, -0.018048655, 0.008646128, 0.008186343, -0.015573291, -0.006661866, -0.045078553, -0.03445424, 0.050174695, -0.025224984, -0.0134766605, 0.008944105, 0.008501736, -0.011527858, -0.027987668, 0.021255983, -0.060516737, -0.04312553, 0.036121167, -0.03448869, 0.019069286, 0.03510935, -0.032639835, 0.018391345, -0.06697156, 0.044479165, -0.04057896, 0.058525104, -0.0094540445, -0.05029917, 0.008983806, 0.035332277, 0.045028538, -0.03127736, -0.00617808, 0.015873322, -0.030490361, -0.0025429125, 0.033484355, -0.075049646, 0.032272816, -0.0014232122, 0.041159302, 0.03603716, -0.053634856, 0.04100622, -0.0064734467, 0.020579347, -0.0075757927, 0.057043716, -0.017511193, 0.030094733, -0.0408699, -0.041832227, -0.009365938, -0.05175884, -0.03228369, 0.0014531021, 0.044968955, 0.03437226, -0.013412266, -0.030811056, 0.028062114, 0.0067772265, -0.036296576, 0.015155894, -0.021527257, 0.01395385, -0.0037844132, -0.043863032, 0.0778793, -0.0040905173, 0.05971565, 0.06488605, -0.010791219, 0.0073574567, 0.01950264, -0.0010723936, -0.028631128, 0.0558848, 0.0015116701, -0.034365926, 0.004508212, -0.038775556, -0.012271718, 0.029079134, 0.031896226, -0.05476784, -0.011528737, 0.03037413, -0.014614575, -0.07630136, 0.05135794, 0.0019893318, 0.0029330924, 0.07952517, -0.07959792, 0.028236503, -0.07022952, 0.026785566, -0.054873377, -0.004136694, -0.05809012, -0.02151153, 0.05785981, 0.047009494, 0.0106166005, 0.022111958, -0.072746515, -0.007288882, -0.07610152, 0.027336737, 0.06687274, -0.0027804174, 0.04023014, 0.06994825, 0.029507235, 0.020031257, 0.0521219, -0.03275141, -0.018581644, -0.05589013, -0.0121815195, 0.059954043, 0.029986314, -0.035321705, -0.0421241, 0.0058805672, -0.03569606, 0.08301943, 0.030292263, -0.057856977, 0.034134418, 0.026886024, 0.0240958, 0.0016424708, -0.035544768, -0.008017666, -0.019631764, -0.009837362, 0.041223068, -0.023434632, 0.0003116614, 0.032733545, 0.05426757, -0.0050308234, -0.021433076, -0.018517198, -0.029364975, -0.035906155, -0.06335244, 0.026139393, 0.028195068, 0.005032396, 0.008355665, -0.007826076, 0.027340693, -0.055331413, 0.061086494, 0.005962804, -0.01017043, 0.0031040874, -0.0010937012, 0.03018499, -0.11273485, -0.013315003, 0.054227818, -0.04919748 ] }, { "values": [ -0.0042636804, -0.045041066, -0.048472483, -0.032726493, 0.0050688307, 0.014803127, 0.010020867, 0.0117451055, 0.007059955, 0.019611618, 0.03573435, 0.032694194, 0.002736441, 0.00015747506, -0.057211023, -0.05054732, -0.007517715, -0.027715601, -0.08570185, -0.063483626, -0.007330912, 0.02700782, 0.01619175, -0.046138216, -0.037786763, 0.04074968, 0.041189197, -0.07613991, 0.0073755835, -0.013403835, 0.059532806, 0.022018641, -0.015498467, -0.019729879, 0.0805654, 0.01829019, -0.046436016, 0.023583965, 0.0021984905, -0.02678032, -0.04738787, -0.006765335, 0.01404161, 0.015499544, -0.04296768, 0.026736882, 0.0002817197, -0.005516638, -0.043313887, 0.0200341, -0.023405246, -0.01662163, 0.023754014, -0.008432101, -8.422257e-06, -0.050982982, -0.042833365, -0.036850356, 0.054171305, -0.03390902, 0.012796364, 0.024785746, -0.028583614, -0.010168515, -0.00014136809, -0.011562074, -0.066063315, -0.026161008, -0.043947197, 0.038322676, -0.047539335, 0.02748684, -0.004598734, -0.018235497, -0.041210935, -0.005135094, -0.0069744545, 0.034351334, -0.048412442, -0.004112012, -0.0267242, -0.011672197, 0.08744176, 0.054438476, 0.05371647, 0.009918497, 0.02951813, -0.03645272, -0.053545315, 0.025170034, 0.052138, -0.03892194, 0.0034536086, -0.00052898703, 0.031485267, 0.0071498407, -0.04345365, -0.09442377, -0.020138528, 0.08249147, -0.008478091, -0.006848308, -0.030779261, -0.031468805, 0.036830828, 0.009658871, -0.030106708, -0.04285882, -0.03861, 0.0010583685, 0.014809984, -0.022766825, -0.042558514, 0.02169326, 0.034050703, -0.026879545, -0.011398183, 0.004477162, -0.008719139, 0.031144291, 0.049551878, -0.020840667, -0.041382767, 0.040437315, 0.02903983, 0.0043144985, 0.0038807434, -0.022869762, -0.02416986, -0.050605036, 0.08611684, -0.10843882, -0.0134414295, 0.020785918, -0.014586397, -0.03579695, 0.0010061967, 0.026631666, -0.0249637, 0.023138106, 0.012145764, -0.002203959, 0.0140521685, 0.021923123, 0.0034227236, -0.019956553, -0.023542365, 0.064754725, -0.01857543, 0.022403013, -0.09962592, 0.004291031, 0.057028953, -0.024460038, -0.080471285, 0.02366651, 0.053308886, -0.011151289, 0.040410083, -0.025367936, 0.05149999, -0.046778575, -0.013480972, 0.022177484, -0.07904401, -0.007062252, 0.040043052, -0.06490061, -0.005511323, -0.027086994, 0.03962092, 0.018472731, -0.0035850347, -0.09391043, 0.057188157, -0.019154625, 0.0072990106, 0.023280643, 0.00495106, -0.029766686, 0.03942166, -0.019308936, 0.011470735, -0.018514587, -0.03237751, -0.020110209, -0.03148788, 0.07022234, 0.027026815, 0.033349466, -0.022252942, -0.013457326, -0.013733189, 0.057534862, 0.022630665, 0.02369967, 0.013597674, -0.022252211, -0.0018042393, -0.041587703, 0.06404549, -0.009542467, 0.009662147, 0.06826493, -0.025371583, -0.0193416, -0.07600834, -0.025106508, 0.02743017, 0.03763312, -0.053959187, -0.039190456, 0.021944914, -0.033898775, -0.004872808, -0.004701489, 0.084221944, 0.056424584, -0.01594939, -0.044118233, -0.015767526, 0.0089573255, -0.003592864, 0.005394713, 0.0493048, -0.010393496, -0.0096522095, -0.050576866, -0.025943572, -0.012833108, -0.029707134, 0.021871423, 0.0125970235, 0.008044638, -0.025976064, 0.06281123, 0.014978704, 0.012551385, 0.021104554, 0.009226599, 0.0005662668, 0.033381835, 0.02732314, 0.009987701, 0.003308418, 0.06292692, 0.07219556, 0.09177975, -0.043423794, -0.026491363, -0.015989942, 5.7947935e-05, -0.04503057, 0.012438391, -0.06612831, 0.0062373755, 0.030433975, -0.03873383, 0.0123902345, -0.029065514, 0.03675492, -0.027358133, -0.015565456, -0.031712085, -0.0020643317, -0.08708781, 0.004723121, -0.028223947, 0.04886218, 0.0014766487, 0.02530201, -0.026498506, -0.05356597, -0.06476916, 0.049857523, -0.0040687737, -0.036472946, 0.018446628, -0.058199033, -0.02691551, 0.06490064, -0.01283346, -0.029663827, 0.0007460815, 0.00013793832, -0.027172321, 0.020740723, -0.0010842689, -0.040864777, -0.043593593, 0.04428872, 0.0493184, 0.027379844, 0.011636074, 0.01128002, -0.012544454, 0.00046351127, -0.0046125837, -0.004398324, -0.023292823, 0.0343647, 0.056468103, -0.024563497, 0.037648313, -0.03147863, 0.014300484, -0.022564728, -0.024448466, -0.01235348, 0.0046145874, 0.027117584, 0.063579865, -0.07348868, -0.013322854, -0.006874539, 0.019818919, -0.1206665, 0.0052956357, -0.057017986, -0.016397573, 0.030127654, 0.03685624, -0.022601753, -0.02572195, 0.055527974, -0.01838824, 0.008752397, -0.017364625, -0.029542329, -0.017542373, 0.017079633, -0.008513687, 0.016584637, -0.032952644, -0.016564475, -0.0064018546, -0.02798901, -0.0065312474, 0.028354596, -0.015484235, 0.032045268, 0.002505178, 0.029147428, 0.018842055, -0.024698878, -0.041299634, -0.01759679, -0.0126671055, 0.03878815, -0.061902408, -0.038961742, 0.044908404, 0.06359458, 0.0025823065, 0.040059846, 0.010961046, 0.016499924, 0.03594969, 0.03675508, -0.018438403, -0.02146408, 0.03141278, 0.017637786, -0.009964568, 0.016125115, -0.03702062, -0.010321693, 0.009568544, -0.028073322, -0.054078493, 0.012068724, 0.0444021, 0.04741006, 0.010989576, -0.0008597184, -0.06439816, -0.018345999, 0.023266815, -0.0044458294, -0.0382034, -0.04540045, -0.073413566, 0.029973172, -0.0066150925, -0.017443838, 0.027342437, -0.031590454, -0.006191444, 0.018877478, 0.011189382, -0.034846384, 0.083785, -0.012732028, -0.03880021, -0.029582184, 0.03573592, 0.009025032, 0.023517273, 0.003110623, -0.006163117, -0.019896103, 0.004510656, 0.048935942, 0.016710013, 0.039460633, 0.006535034, 0.054944668, -0.04463089, 0.0008103741, -0.009164657, 0.008755972, 0.001389499, 0.015850024, 0.01941433, 0.009943488, 0.01544292, 0.036641486, -0.028409569, -0.026090259, 0.00038520095, 0.023959283, 0.036459453, -0.013262807, 0.06713429, 0.014941126, -0.053704094, 0.007533079, 0.014259155, 0.0645026, 0.011966884, 0.006945268, 0.022858052, -0.04725128, 0.04870512, -0.042598434, -0.021971963, 0.015387232, 0.014774993, -0.0062958025, -0.0024833763, 0.00030901853, 0.03270384, 0.03679054, 0.0274093, 0.00036709712, 0.021042569, 0.03937599, -0.04275517, -0.028249348, -0.056162767, -0.0050139837, -0.00045474776, -0.009163565, -0.05576891, 0.014081015, -0.014488673, 0.009096208, 0.02740188, -0.079266235, -0.0013437653, -0.0421729, -0.007787932, 0.04161877, 0.05893471, 0.025949929, -0.016904414, -0.04530126, -0.008175825, 0.0070989197, 0.04866585, 0.003947002, -0.011575813, 0.0011309653, 0.01488298, 0.0155573655, 0.057532687, 0.028696416, 0.018435914, 0.030271612, 0.0033570814, -0.010058264, 0.047594205, -0.026355358, 0.049658302, 0.03715587, -0.07906265, -0.011129244, -0.00081267435, -0.007704703, 0.014143878, 0.017954407, 0.095076464, 0.032983687, 0.014804495, -0.025541851, -0.059195105, 0.046351243, -0.00900996, 0.004492151, -0.03785394, 0.085547514, -0.01390752, -0.012641475, -0.0392672, 0.03264729, -0.0037210707, -0.018596696, -0.03031366, -0.0030207115, -0.019012159, -0.0034113976, 0.02323061, 0.06223262, -0.0036780227, -0.054196544, 0.091293134, -0.105308004, -0.002136073, -0.033509526, 0.05202645, -0.0348778, -0.013068717, 0.06933627, -0.08229999, -0.05648919, -0.027395861, -0.044233833, 0.036426526, 0.009664897, -0.021178782, -0.023374287, 0.013996604, 0.017823288, 0.050681654, 0.005697672, 0.02569624, -0.005262231, -0.017460657, -0.03799093, 0.041735392, 0.019480234, 0.035231885, 0.070502974, -0.010691532, 0.051405273, 0.023465235, 0.012127879, -0.0035806457, -0.020815086, 0.08507014, 0.014851671, -0.016473787, 0.011808433, -0.045230944, -0.015846198, -0.02237805, -0.053642314, -0.04274108, -0.039465882, 0.028477423, 0.049047664, 0.005247312, -0.0021917988, 0.053419754, -0.02393442, -0.02990546, -0.011286405, 0.050064534, -0.023292365, -0.044856094, -0.010779231, -0.0066315145, -0.01398492, -0.054171212, 0.04606442, 0.02380117, -0.034573484, -0.009051952, 0.047909547, 0.00045624503, 0.02874129, 0.025472108, 0.044806972, -0.022757638, -0.04526785, 0.025381828, 0.007598584, -0.079328336, 0.010667371, 0.038336128, -0.026679933, -0.024310805, -0.005963601, -0.016661253, 0.037065603, 0.002303665, 0.0060573327, -0.035808943, 0.01684141, 0.011344747, -0.0019139352, -0.045806427, -0.01055937, -0.013061466, 0.002521046, 0.025305469, -0.033051938, -0.010424067, 0.050001994, -0.002434274, -0.0044654366, 0.020873103, 0.026132405, -0.04240002, -0.02086969, 0.023850588, -0.062654465, -0.053505637, 0.050671868, -0.032047007, 0.024932556, 0.04776734, -0.028534006, 0.028062008, -0.062843435, 0.033124115, -0.032275576, 0.04802155, -0.008715653, -0.038096305, -0.02399581, 0.00824551, 0.0637459, -0.03324515, 0.004217912, 0.016479636, -0.02401663, -0.019402154, 0.023808658, -0.076339275, 0.038372636, -0.0017455369, 0.043978337, 0.06479959, -0.044712197, 0.03641525, 0.01255069, 0.013485986, -0.0365772, 0.03590843, -0.027585756, 0.015609541, -0.02367125, -0.035563834, -0.009467594, -0.049300116, -0.0542317, -0.008087028, 0.025603684, 0.032016158, -0.027234191, -0.03368016, 0.043091543, 0.034890234, -0.029353855, 0.0009938041, -0.049093872, 0.038220372, -0.0005770016, -0.048978712, 0.05100447, 0.014104126, 0.037807036, 0.07046066, -0.023618, 0.020045359, 0.0112194745, -0.02105078, -0.03761883, 0.063338466, -0.011337882, -0.036806073, 0.01414707, -0.018517949, -0.0035771094, 0.015775358, 0.036399562, -0.051233593, -0.027054064, 0.043967452, 0.008779955, -0.054633655, 0.022123829, 0.0014076645, 0.010984587, 0.11136618, -0.06627037, 0.044111848, -0.071308374, 0.0052159876, -0.0567864, 0.0082540205, -0.046979945, 0.006472108, 0.02634313, 0.049793523, -0.00013835909, 0.0031417497, -0.06158259, 0.004451929, -0.09072431, -0.005398124, 0.061342627, 0.0006422762, 0.023908278, 0.048964456, 0.024171118, 0.020146811, 0.050951105, -0.007553945, -0.025230497, -0.028709171, -0.016237972, 0.0513273, 0.025326304, -0.0074001644, -0.058535304, 0.020512912, -0.048370782, 0.063952215, 0.0065375236, -0.028106403, 0.031621456, 0.04361047, 0.022252591, 0.01757549, -0.06562219, -0.0058506834, -0.016696682, -0.0030146628, 0.057924453, -0.00982043, 0.019314863, 0.047211587, 0.06065464, -0.019986114, -0.040947795, -0.020710954, -0.013841211, -0.027747763, -0.047604017, 0.038689766, 0.051232535, -0.00026729537, 0.027361969, -0.0070082285, 0.0132272765, -0.052287653, 0.037650567, 0.013786684, -0.012326099, 0.00062594615, 0.00077156664, 0.035967693, -0.101491846, 0.022904146, 0.06068045, -0.032869384 ] }, { "values": [ 0.0037713014, -0.042576753, -0.039584305, -0.025366893, 0.0012697238, 0.042389553, 0.014873862, 0.034486316, 0.008690327, 0.01287504, 0.041220795, 0.01918396, -0.00015582418, 0.006796996, -0.016640075, -0.07322375, -0.022098474, -0.00524891, -0.10279002, -0.04503754, 0.0056013693, 0.03279876, 0.004334853, -0.040404905, -0.030032543, 0.0057543423, 0.021523735, -0.062330857, 0.0123399785, -0.016250035, 0.050692473, 0.025360117, 0.009725708, -0.020360366, 0.04436807, 0.049786966, -0.043354582, 0.010551294, 0.015354777, -0.05290949, -0.045394763, -0.03899102, 0.0048309104, 0.027257983, -0.035835654, 0.027296137, 0.011860938, 0.027651671, -0.023626903, -0.0042056385, -0.002821404, -0.019397855, 0.01637599, -0.02532144, -0.02332513, -0.07593364, -0.056478888, -0.02058904, 0.050482947, 0.0026718497, 0.0015354631, 0.033798806, -0.04489395, -0.017807696, -0.004053796, -0.011033001, -0.064512216, -0.014739631, -0.049311478, 0.04832598, -0.07372607, 0.027524693, 0.012259206, 0.00610297, -0.04865427, -0.015846753, 0.0069820937, 0.018669603, -0.04622837, 0.018775623, -0.00609035, 0.0056604766, 0.057366844, 0.060080487, 0.048372045, -0.008868509, 0.045392588, -0.018486897, -0.05358056, 0.028587798, 0.05867511, -0.030494738, 0.0050740396, -0.0207309, 0.045100164, 0.021717202, -0.03428666, -0.09259274, -0.010787905, 0.05353183, -0.040798146, -0.0018355044, -0.010550895, -0.0145356795, 0.034739383, 0.0449584, -0.04095263, -0.016255997, -0.04800282, -0.00394759, 0.019701712, -0.0207857, -0.009754269, 0.024616558, 0.016382886, -0.05201686, 0.006237179, 0.028104313, -0.020315066, 0.006476454, 0.00038823514, -0.015884114, -0.05613892, 0.05379061, 0.027199548, 0.0036550863, -0.024739187, -0.005665602, -0.024433812, -0.021569656, 0.09154592, -0.109366745, 0.026235154, 0.0049243392, -0.02169603, -0.016104313, 0.04771866, 0.015774148, -0.02765178, 0.0121822795, 0.006517016, 0.02109607, -0.0052961297, 0.026548732, 0.021235717, -0.012405622, -0.042725496, 0.04713273, -0.029030506, 0.012467945, -0.074425936, 0.009334803, 0.06319842, -0.01320259, -0.099055566, 0.029745292, 0.043135058, 0.0030062539, 0.03971809, -0.05369733, 0.03310089, -0.042325217, -0.00988147, 0.039355926, -0.08989318, 0.02340382, 0.056752656, -0.055369716, -0.015977968, -0.04414437, 0.027219713, 0.0014994423, -0.02847662, -0.07040263, 0.026332222, -0.023441754, -0.0025833128, 0.042136118, -0.01846683, -0.0343862, 0.02820405, 0.028216524, 0.0050586206, -0.021338642, -0.009238528, 0.0020686819, 0.008310303, 0.07389451, 0.04603272, 0.045965113, -0.022613265, 0.02893795, -0.014314369, 0.07123943, 0.0128032835, 0.018334148, 0.010098982, -0.035469893, -0.023084084, -0.027453182, 0.03944502, 0.0056400527, -0.0064914203, 0.07672985, -0.017995294, -0.0100189885, -0.039669883, -0.02936256, 0.032726917, 0.022447104, -0.04145625, -0.05139554, 0.0246886, -0.017910298, 0.00041807926, 0.0023226475, 0.101524904, 0.040973302, 0.04033918, -0.028663041, -0.03708065, 0.013972222, -0.0017751894, 0.017094508, 0.04786023, -0.038162258, -0.007035277, -0.028915994, -0.031112714, -0.047143333, -0.012180698, 0.018942948, -0.012606934, 0.015311385, -0.011460427, 0.061275356, 0.031871423, 0.022900244, -0.008461576, 0.015149568, 0.025820008, 0.016750012, 0.02569522, 0.00565065, 0.0125532625, 0.06310232, 0.05380196, 0.06524253, -0.012666361, -0.0620998, 0.004495148, -0.0027923086, -0.04774402, -0.0067814, -0.061852764, 0.01099401, 0.017277779, -0.03234401, 0.016011912, -0.03176599, 0.04549021, -0.017885452, 0.0007418096, -0.0134610385, -0.01741339, -0.060727656, -0.001556741, -0.021000786, 0.027874248, -0.021809045, -0.0062657064, -0.029062465, -0.054825537, -0.058997396, 0.041708644, 0.013121072, -0.038743038, -0.0028840809, -0.067406535, -0.03615995, 0.07436404, 0.00074362993, -0.019763304, -0.0021401898, -0.011869483, -0.0070030326, -0.00943217, 0.03712039, -0.034842692, -0.042650133, 0.034087572, 0.062552415, 0.017276326, 0.0134674385, 0.03393059, -0.011792513, 0.0059714173, 0.0059822826, -0.050867278, -0.020622117, 0.059022665, 0.06005394, -0.023607783, 0.030639794, -0.012351549, 0.02913096, -0.016675502, -0.0063267536, -0.023536244, -0.026018936, 0.008381167, 0.044629708, -0.09301433, -0.018570876, -0.01866816, 0.0007915696, -0.124128245, -0.0070977253, -0.042061727, -0.033007443, 0.009648845, 0.015997918, -0.023463352, -0.020699143, 0.052700363, -0.008238423, 0.018284474, 0.014695851, -0.028902637, -0.018199708, 0.017244328, -0.002052109, -0.00073610776, -0.022282029, -0.010658422, 0.0025618682, -0.03794058, -0.0020682027, 0.027119389, -0.02045301, 0.05626171, -0.006400268, 0.02306496, 0.07330162, -0.012087217, -0.04013602, 0.0051773256, -0.021869732, 0.022916865, -0.082563, -0.041184522, 0.05974943, 0.054398984, -0.032399803, 0.020122873, 0.0050928183, 0.0076091057, 0.025979705, 0.010156329, 0.013346671, -0.009569079, 0.02474204, 0.027593886, -0.0061806478, 0.02839189, -0.018159654, -0.0029458036, 0.025128195, -0.034106333, -0.039839238, 0.01727297, 0.04840525, 0.049154155, 0.0061679217, 0.023759743, -0.033958714, 0.009732117, 0.026113871, 0.0061998544, -0.041971926, -0.05586528, -0.06853659, 0.025452308, -0.014346761, -0.009102355, 0.028508624, -0.0108367065, -0.0031888902, 0.027411811, 0.014041537, -0.040128198, 0.08548677, -0.0079798205, -0.039251737, -0.039600134, 0.06284939, 0.0052488726, 0.041428108, 0.017800597, 0.026729373, -0.025423102, -0.0026281225, 0.049405523, 0.02112867, 0.025145119, 0.02341484, 0.05111827, -0.04037612, 0.012156416, -0.030279523, 0.015224639, -0.0018606882, 0.0069876746, -0.006577631, -0.006524054, 0.018116888, 0.041241124, -0.041292466, -0.03235998, 0.021716261, -0.010983921, 0.028184574, -0.030907158, 0.062371645, 0.017819613, -0.039950803, -0.009261614, 0.005850587, 0.061732467, -5.212993e-05, 0.0046278653, 0.023044854, -0.03166619, 0.050350223, -0.02902244, -0.03677275, -0.0071449326, 0.0030258454, -0.01907374, 0.022577044, -0.008795109, 0.024964986, 0.023670666, 0.021624327, 0.020260269, 0.012369671, 0.023577176, -0.024746329, -0.03506767, -0.0696217, -0.043083627, 0.007884221, -0.010445457, -0.04387458, 0.0008021727, -0.0038719517, -0.005994956, 0.016507497, -0.068593964, -0.0067496547, -0.058283515, 0.0014216433, 0.037987247, 0.061482858, 0.028783178, -0.028439295, -0.05388504, -0.0008738364, 0.017317804, 0.046662137, 0.010300633, -0.014214257, 0.0035641824, 0.0051702913, 0.0018632597, 0.047156777, 0.01823255, 0.03111473, 0.013513059, -0.00044566346, -0.024172928, 0.031709976, -0.0187835, 0.03891508, 0.047198873, -0.055605903, -0.013097205, 0.038559597, -0.0075319596, 0.013127235, 0.046772677, 0.08963756, 0.030348722, 0.013420152, -0.042590763, -0.060477834, 0.043299403, -0.0054562516, 0.032674346, 0.017083073, 0.08485889, -0.041161835, -0.014722711, -0.07069884, 0.042932626, 0.016866507, -0.007670239, -0.0208641, -0.00645647, -0.02857473, 0.017219033, 0.020653948, 0.015405149, 0.004140646, -0.053821664, 0.07594387, -0.10380987, 0.0008626356, 0.008373427, 0.06658072, 0.010924697, -0.018277476, 0.054672517, -0.058090393, -0.057028785, -0.019487415, -0.037803583, 0.025095727, 0.03549973, -0.01593743, -0.03200131, -0.017493287, -0.020800838, 0.05436004, -0.0048771654, 0.023113575, -0.0027452481, -0.0044338196, -0.04862523, 0.068882, 0.030901015, 0.06067278, 0.05936546, -0.01148374, 0.07356687, 0.03711795, 0.011384468, -0.02836455, -0.0061640297, 0.09010413, -0.0024960341, -0.009722983, 0.0045104455, -0.027071023, -0.008227579, -0.02220913, -0.071681336, -0.046047464, -0.04346546, 0.022064783, 0.057173394, 0.0038224454, -0.013293216, 0.020988304, -0.001947013, -0.019833932, -0.019448185, 0.048030984, -0.016353339, -0.0329109, -0.015007837, 0.0071581234, -0.000338884, -0.03676292, 0.022722619, 0.0339854, -0.032435007, -0.011409472, 0.030570963, -0.014454885, 0.044308838, 0.026684802, 0.05420394, -0.03342801, -0.018310422, 0.015764566, 0.020534819, -0.058185425, 0.04026104, 0.036447976, -0.028470727, 0.0063789203, 0.014147875, -0.008065077, 0.03425946, -0.016743574, 0.0005296724, -0.045644473, 0.035467587, 0.013409568, -0.005931646, -0.03023277, -0.01199405, 0.02662173, -0.01875962, 0.019956665, -0.028558366, -0.01684204, 0.044491746, -0.007882672, -0.020492958, 0.013972638, 0.0117560085, -0.02604638, -0.0051173433, 0.024521139, -0.06517282, -0.044198778, 0.044983476, -0.031762164, 0.0017335709, 0.035781115, -0.049964827, 0.02530537, -0.06705643, 0.038634986, -0.03172811, 0.02995934, -0.006790859, -0.02726873, -0.028258251, 0.028937878, 0.06841496, -0.039217208, -0.0045879567, 0.028258327, -0.007190076, -0.0051319916, -0.008874772, -0.088975035, 0.019806912, -0.022748668, 0.057182495, 0.05953531, -0.038210757, 0.048205234, 0.010720949, 0.026694704, -0.013542576, 0.047068894, -0.014288741, 0.023752244, -0.010147871, -0.0392548, -0.022089774, -0.0575877, -0.03627592, -0.013946754, 0.033351827, 0.0038350273, -0.04012748, -0.03417516, 0.02986861, 0.014051862, -0.046779316, 0.017867561, -0.027714293, 0.024468955, -0.018502407, -0.037487864, 0.07852324, -0.012974799, 0.0052295593, 0.05738783, 0.0047639553, 0.0039841393, 0.0068073277, -0.008002299, -0.025732823, 0.057867683, -0.0056408956, -0.046781536, 0.016989445, -0.018910816, -0.0012750035, 0.039742086, 0.054317635, -0.03664332, -0.0026571616, 0.059126746, -0.016205827, -0.072243385, 0.054369617, 0.01714276, 0.01673165, 0.11521585, -0.07245391, 0.004360394, -0.06887214, 0.031373058, -0.046337515, -0.015857814, -0.033345003, -0.017830575, 0.028757937, 0.018098807, 0.009211633, 0.0016540511, -0.0498226, 0.03178568, -0.0736342, 0.031867944, 0.07231879, 0.003758307, 0.023753399, 0.044981707, 0.030110687, 0.0062697986, 0.023335215, -0.008918594, -0.02162143, -0.04927561, -0.039021466, 0.07172094, 0.042847663, -0.022510719, -0.0389585, 0.038059663, -0.03584302, 0.05613599, 0.022843309, -0.04286565, 0.00075375807, 0.04149739, 0.03003314, 0.030657135, -0.034130275, -0.01381591, -0.021662379, -0.003489811, 0.051003627, 0.010981127, -0.01239693, 0.02719403, 0.06543368, -0.025869276, -0.035222232, -0.015311163, -0.021542957, -0.056160316, -0.05406436, 0.053990193, 0.044469476, 0.016504293, 0.030287195, 0.0163025, 0.0649901, -0.06652444, 0.04890419, -0.0075766495, 0.006646698, 0.017788153, 0.01996032, 0.021986444, -0.114832975, -0.017556086, 0.073232494, -0.018380735 ] }, { "values": [ 0.021651415, -0.06057888, -0.048366766, -0.046933454, 0.0076363664, 0.02081294, 0.036599755, 0.0566212, 0.007933555, 0.049622666, 0.029845666, 0.035423826, 0.008437632, 0.019327767, -0.042529203, -0.05591367, -0.001324929, -0.0006269621, -0.07025353, -0.010817214, -0.020316018, 0.0206793, -0.0009934859, -0.036518034, 0.00073535455, 0.021864843, 0.024115995, -0.08385664, 0.022275297, -0.012994268, 0.051822856, 0.033416998, 0.005041255, -0.007210886, 0.054455165, 0.026999686, -0.024645727, 0.011458108, 0.004967613, -0.030584408, -0.04647289, -0.029893424, 0.02052175, 0.010310137, -0.047944136, 0.028786385, -0.018302064, 0.038114604, -0.04154197, -0.004208329, 0.014464841, 0.004994076, 0.012838347, -0.008509003, -0.0052710166, -0.05380601, -0.05805686, -0.033160955, 0.07109957, 0.00841923, 0.005000961, 0.03536748, -0.038968354, -0.005959127, -0.020525662, -0.033628125, -0.029663635, -0.022611376, -0.046095315, 0.030437624, -0.08728471, 0.039026383, 0.02650242, 0.025215527, -0.04671065, -0.04453651, 0.00035974252, 0.025307434, -0.031110847, 0.002773836, 0.010627224, 0.021227458, 0.084775135, 0.06685439, 0.06635228, 0.009715928, 0.04990378, -0.032527093, -0.04647494, 0.0153792985, 0.063128546, -0.0284923, 0.0070841797, -0.0058345795, 0.051957667, -0.037145834, -0.035285827, -0.0660336, 0.012008658, 0.06360553, -0.049158156, -0.014983609, -0.025399677, -0.026482252, 0.040276807, 0.052120194, -0.032921717, -0.01924563, -0.024516447, 0.03244403, -0.01659682, -0.024947774, -0.039967902, 0.027802154, 0.013312291, -0.046035618, -0.0059869406, 0.04439323, -0.040867534, 0.01139249, 0.003083878, -0.010248782, -0.05511335, 0.050501425, 0.0019482399, -0.001286372, -0.00024834133, -0.020977974, -0.01940617, -0.044105485, 0.09289815, -0.1091234, 0.00882383, 0.0113732265, -0.029436342, -0.0029084284, 0.027658332, 0.0074539734, -0.059344932, 0.004826504, 0.00973525, -0.01685477, 0.012303193, 0.027971594, 0.021323059, -0.008271287, -0.00885895, 0.03241087, -0.018620055, 0.021457653, -0.07750167, 0.01877516, 0.03409628, -0.0036034316, -0.09535188, 0.037592, 0.039356835, -0.025116293, 0.03490999, -0.062178887, 0.031779427, -0.022922507, -0.014298824, 0.026294844, -0.09018938, 0.019663522, 0.04512041, -0.049717147, -0.034728445, -0.054278485, 0.0052420525, 0.0091444515, -0.02272189, -0.05610246, 0.0066507715, -0.0149270985, -0.0057297526, 0.036980137, -0.034279965, -0.021068094, 0.02475483, 0.031101855, 0.0069859684, -0.024287274, -0.012891564, -0.024524396, -0.004409677, 0.065387465, 0.029910622, 0.051323425, -0.020665027, 0.010923004, -0.004672807, 0.06324162, 0.046722636, 0.0495704, 0.014750049, -0.022818461, -0.006539663, -0.027267192, 0.036774635, 0.020650204, -0.026727697, 0.055683147, -0.009750029, -0.012277252, -0.04779153, -0.038496003, 0.0330382, -0.0049953344, -0.031753693, -0.038675305, -0.012419423, -0.050391413, -0.01272571, 0.0036188252, 0.08889934, 0.038644988, 0.026170349, -0.042844865, -0.026160551, -0.015597829, -0.0025573, -0.0072322134, 0.060688384, -0.027107207, -0.011380965, -0.029287294, -0.022807192, -0.059051424, -0.038628753, 0.00048561295, -0.024357917, 0.01375731, 0.0059759426, 0.049515843, 0.050989132, 0.019034786, -0.034396097, 0.021521974, 0.023649806, 0.04172181, 0.036730148, -0.002165694, 0.0032514848, 0.04684663, 0.07500502, 0.05669293, -0.02236093, -0.027170407, 0.017219469, -0.019554611, -0.07194892, -0.0013016034, -0.043643896, -0.0025048796, 0.018901547, -0.03331919, -0.00088675885, -0.023915181, 0.035566557, 0.0016491154, -0.0054247254, -0.018670846, -0.022829514, -0.075807944, -0.0066233496, -0.02469824, 0.040558726, 0.00027314996, -0.009779472, -0.015023357, -0.07282316, -0.045196965, 0.026263883, 0.02733718, -0.040770035, 0.011243642, -0.085026614, -0.04614512, 0.064632595, 0.019541888, -0.04139214, -0.020269983, -0.019924833, -0.030544262, -0.022666762, 0.048499078, -0.03481441, -0.031026278, 0.045898292, 0.046505824, 0.013767878, 0.018789658, 0.055681035, -0.003981237, -0.0071167303, -0.009503805, -0.015874524, -0.022619259, 0.030831594, 0.055759516, -0.010828556, 0.04711871, -0.014747212, 0.020701937, -0.019851357, -0.004878741, -0.02132779, -0.011778739, -0.010414101, 0.0373757, -0.07346082, -0.030756513, -0.006544043, 0.009184198, -0.09816944, 0.002763165, -0.038794648, -0.034471445, -0.0065587005, 0.028874284, -0.035704613, -0.02318757, 0.03821503, -0.0016545135, 0.011740201, -0.004824671, -0.02090144, -0.021020718, 0.00017463381, 0.004357455, 0.0026741168, -0.016588787, -0.02125671, 0.008735548, -0.038803764, 0.0025096068, 0.00944032, -0.021283984, 0.014268998, -0.014801542, 0.021638835, 0.07450336, 1.5332544e-05, -0.03026883, 0.012719742, -0.021336978, -0.009901927, -0.055570856, -0.04584379, 0.044930585, 0.052156486, -0.029963769, 0.026733471, 0.040429864, 0.021569084, 0.046178415, 0.013068457, 0.022939334, -0.01867156, 0.0074915607, 0.02741198, -0.008652839, 0.041021973, -0.033139136, 0.008154696, 0.030784579, -0.038235158, -0.047408894, 0.022683451, 0.04065626, 0.05788383, 0.005674727, 0.04081223, -0.03829341, -0.00983425, 0.038792554, -0.013297347, -0.03906376, -0.06124557, -0.06021392, 0.02079184, -0.03633231, -0.027058579, 0.016805073, -0.026257526, -0.022497263, 0.048495434, 0.0428345, -0.02038694, 0.07531479, -0.033390503, -0.033683434, -0.01756239, 0.062390458, -0.0052647744, 0.02869071, -0.016702607, 0.002740152, -0.029857745, -0.013653168, 0.046411026, 0.0016279754, 0.031760454, 0.022109995, 0.061836075, -0.0065110433, 0.0075351275, -0.04638199, 0.024080524, 0.014760723, 0.0167362, 0.020684047, -0.0022201422, 0.04578166, 0.058853243, -0.028057557, -0.015294172, 0.036835324, -0.006892855, 0.026318077, -0.04819162, 0.03703722, 0.028113345, -0.03512805, 0.0022421377, 0.012684814, 0.048890013, -0.02204055, 0.0033410492, 0.0075719426, -0.029274475, 0.06320568, -0.062831216, -0.023841435, 0.011826793, 0.00083463074, -0.022952579, -0.00094641687, 0.0019630992, 0.03534667, 0.013226891, 0.02627632, 0.023090916, 0.04364495, 0.031174038, -0.016059326, -0.03796805, -0.06679026, -0.0069599417, 0.023988798, 0.005904218, -0.06654487, -0.0077989143, -0.013944706, -0.0024031827, 0.0337723, -0.04195095, -0.013348342, -0.052094765, -0.0070760543, 0.02195478, 0.060981438, 0.037339382, -0.02199891, -0.05134973, 0.0040040393, 0.028950034, 0.043307982, 0.026715621, -0.018494172, -0.002783219, 0.014979198, 0.0068582855, 0.033385325, 0.0029840707, 0.015211382, 0.016820561, 4.335108e-05, -0.01916621, 0.0301596, -0.009147568, 0.0390051, 0.03844228, -0.07133581, -0.043230038, 0.011661574, 0.0068276892, 0.022116913, 0.026431004, 0.09366243, 0.017048744, 0.01943025, -0.042606708, -0.052272625, 0.051355865, -0.0006650241, 0.015819537, 0.006878752, 0.10196154, -0.036225766, -0.02411732, -0.060947347, 0.036221318, 0.015269712, -0.022776846, 0.0053085005, 0.00179659, -0.018687153, 0.022562701, 0.006175233, 0.016410653, -0.010514732, -0.065469384, 0.066482626, -0.07954051, 0.017693415, 0.0010167033, 0.042112827, -0.01862628, -0.014529601, 0.055430647, -0.037708562, -0.06196708, -0.007958173, -0.056423802, 0.042409588, 0.027660834, -0.017288398, -0.046336867, -0.006544971, 0.025653481, 0.043001078, 0.006962185, 0.02861255, -0.020507148, 0.0106979245, -0.0563364, 0.056550175, 0.010124426, 0.029105218, 0.05844433, 0.006227332, 0.061091542, 0.02567572, 0.0002916652, -0.035386752, 0.004341075, 0.09187838, -0.010987676, -0.0069007184, 0.008504274, -0.006852972, -0.015704216, -0.043725148, -0.07322483, -0.051541477, -0.030794276, 0.031282656, 0.0708453, 0.0024912732, -0.02586151, 0.008277127, 0.01995434, 0.0053285095, -0.02661674, 0.088356875, -0.016075004, -0.020938715, -0.036107473, 0.007845462, -0.0053952187, -0.036462046, 0.045283876, 0.01327929, -0.062335186, 0.00045290525, 0.035121195, 0.016827252, 0.047878757, -0.00022640344, 0.07083532, -0.039768547, -0.027312905, 0.020688416, -0.0005119608, -0.06667258, 0.011666983, 0.04799126, -0.0402, -0.036471818, -0.0008562824, -0.017861508, 0.05160735, -0.025117353, -0.025283055, -0.023481898, 0.02064374, 0.035686135, -0.02319801, -0.014633628, -0.038108088, 0.002986805, -0.0075050886, 0.01893309, -0.028320655, -0.0029118883, 0.012799862, 0.007249942, -0.013744818, 0.0318764, 0.015979875, -0.018601287, -0.027638976, 0.02377799, -0.04654901, -0.054321587, 0.027483853, -0.022773089, -0.007454089, 0.059149567, -0.029767461, -0.007871349, -0.064737275, 0.056057505, -0.027604792, 0.04450797, -0.010325463, -0.036084056, -0.027982907, 0.035036057, 0.07140889, -0.04037575, -0.0043631694, 0.028469095, 0.016036728, 0.010737229, 0.008728078, -0.06548756, 0.033170823, -0.017432654, 0.06109924, 0.071204044, -0.025195597, 0.05071733, 0.0009638519, 0.03257873, -0.0059728036, 0.04348703, -0.035215154, 0.00654148, -0.02236152, -0.037867937, -0.025581686, -0.06656824, -0.04532689, 0.009304586, 0.025159134, 0.009259184, -0.016215604, -0.047519267, 0.030667262, 0.004195736, -0.037720215, 0.039532825, -0.015370822, 0.03523722, -0.023427226, -0.0285202, 0.06805184, -0.019532073, 0.01983287, 0.053907707, -0.0035564739, 0.020050647, 0.031772252, 0.03929267, -0.034889262, 0.06392307, -0.020367356, -0.048813306, 0.008237469, -0.034618422, -0.010926855, 0.049975283, 0.045486894, -0.031650897, 0.01388613, 0.044178538, -0.035256255, -0.055472717, -0.0013211741, 0.04085683, 0.012679849, 0.07855605, -0.052251928, 0.032698713, -0.07261826, 0.0518554, -0.031483665, -0.0065249973, -0.046448845, -0.02880173, 0.011791655, 0.03634724, 0.008125928, -0.016412647, -0.051914394, 0.02694006, -0.07236398, 0.028333148, 0.0902974, 0.010632232, 0.036886647, 0.035612926, 0.028269522, 0.02953022, 0.026902162, -0.021395305, -0.019183062, -0.033692963, -0.028610172, 0.04042201, 0.038020242, -0.0028476596, -0.05543713, 0.04695973, -0.023553975, 0.07956336, 0.02608715, -0.05832125, 0.008751395, 0.044412393, 0.02781642, -0.006062028, -0.066987514, -0.026105227, -0.021779448, -0.03501287, 0.020699413, 0.010541438, -0.0012477878, 0.016860172, 0.026324859, -0.024110017, -0.03620965, -0.0099793, -0.020145174, -0.03390529, -0.056876894, 0.0603956, 0.034594465, 0.007585948, 0.011071189, 0.011880848, 0.060961403, -0.056397296, 0.054714363, -0.008620016, 0.02695215, 0.015939772, 0.014417441, 0.006466862, -0.12005507, -0.01112188, 0.061608087, -0.04225039 ] }, { "values": [ -0.0026803848, -0.050569233, -0.038075645, -0.032292422, 0.014978536, 0.00711652, 0.012332416, 0.019530749, 0.012765605, 0.03827907, 0.029949399, 0.02308638, 0.023129217, -0.013775423, -0.044426013, -0.043720383, 0.023654457, -0.007338522, -0.088099845, -0.041751865, -0.0045944816, 0.01285034, -0.012289451, -0.012446435, -0.0073886, 0.030473717, 0.040703986, -0.08700503, 0.003984898, -0.022454817, 0.04793368, 0.034819275, -0.017730864, -0.02018498, 0.04743736, 0.03705891, -0.051205803, 0.002728481, 0.009586199, -0.055154026, -0.04534345, -0.0037700685, 0.022381576, 0.007584071, -0.046829954, 0.02020736, -0.011722624, 0.045254715, -0.02501908, -0.0040501943, -0.003350485, -0.007500052, 0.032591444, -0.025214229, -0.0014671874, -0.069064744, -0.068511285, -0.004611672, 0.07287224, -0.008073389, -0.013003812, 0.018874524, -0.037005093, -0.008886071, -0.0147151165, -0.029435433, -0.040666368, -0.015809108, -0.04441675, 0.06116374, -0.07185762, 0.02407012, -0.006974591, 0.035010707, -0.026462248, -0.036861133, -0.005819934, 0.0073712394, -0.020200642, 0.0042617912, 0.002336046, 0.028409513, 0.06931796, 0.046031017, 0.06556269, 0.014212841, 0.057964776, -0.056977257, -0.06467837, 0.023662401, 0.068828195, -0.03353534, -0.017863652, -0.008637794, 0.02221754, -0.0187613, -0.022095816, -0.08060014, 0.004363049, 0.072366886, -0.03399499, -0.030513654, -0.01467277, -0.02037393, 0.024044985, 0.03384021, -0.022498984, -0.032170117, -0.034030277, 0.0075962525, -0.037259534, -0.02846679, -0.022126961, 0.031552922, 0.012120616, -0.06517263, -0.017893614, 0.037618812, 0.00053005863, 0.0025914523, 0.01800835, -0.022959428, -0.03845278, 0.05809371, 0.017360142, -0.0028404065, -0.021863611, -0.0042477767, -0.0462757, -0.02127598, 0.13162637, -0.08704528, 0.007761103, -0.007540932, -0.021471739, -0.015504021, 0.053881224, 0.032170318, -0.061822042, 0.020274483, 0.0035844976, -0.0075494503, -0.0327727, 0.04891376, 0.004264375, -0.0003780647, -0.009434093, 0.027035363, -0.0038522016, 0.047584157, -0.08272228, 0.006878432, 0.024712857, -0.020788575, -0.069486655, 0.05846621, 0.034743614, -0.031430017, 0.03912524, -0.05617054, 0.037573628, -0.043201417, -0.03749341, 0.014662792, -0.081113905, 0.000869527, 0.035438187, -0.061731357, -0.052678015, -0.028713413, -0.00082020246, 0.020868264, -0.02078769, -0.07520659, 0.0028121162, -0.01824109, -0.0020085815, 0.038269993, -0.026904713, -0.014935269, 0.0032487519, 0.05017419, 0.02137091, -0.0011538451, 0.0042215325, -0.021962147, -0.015715465, 0.04179863, 0.027627507, 0.02930889, -0.03645563, -0.009266428, -0.019021524, 0.079965636, 0.020680625, 0.06223485, 0.016849777, -0.018469527, -0.0066215536, -0.020359576, 0.045941874, 0.017800441, -0.02641539, 0.048185505, -0.03949855, 0.011088017, -0.044166207, -0.009901155, 0.030779364, -0.013276743, -0.0071332525, -0.02704956, 0.032071248, -0.06789631, -0.016111873, 0.017389981, 0.1045385, 0.032657366, 0.017308878, -0.03495889, -0.043471295, -0.022835981, -0.008500436, -0.014449307, 0.037453964, -0.01925871, -0.014995593, -0.04971116, -0.02713754, -0.030654423, -0.029643428, 0.0213429, -0.013897742, 0.020295538, -0.013120839, 0.048617132, 0.051122475, 0.029512433, -0.028514603, 0.008970782, 0.020744242, 0.04319613, 0.014227832, -0.030956008, -0.010831429, 0.06830645, 0.071931, 0.056197483, -0.026133057, -0.029783146, -0.011886563, -0.035691217, -0.06234888, 0.0010321721, -0.061725978, 0.004791873, 0.03715298, -0.03975355, -0.015132183, -0.002085656, 0.04214149, 0.019964075, -0.020616338, -0.01936135, -0.0055667637, -0.071354814, -0.0059572207, -0.022863254, 0.040828772, -0.0033386196, 0.010794609, -0.020529164, -0.0859522, -0.028279096, 0.046686023, 0.013305782, -0.040835213, 0.020410094, -0.057747196, -0.03523666, 0.055078484, -0.0064630527, -0.03343675, -0.0333866, -0.010821402, -0.027142858, -0.016327247, 0.03382193, -0.053726472, -0.032069027, 0.035622086, 0.060683668, 0.007110914, -0.032882757, 0.027539946, 0.011348485, -0.0017132774, -0.04635925, -0.0068487152, -0.00037000523, 0.03625492, 0.0732197, -0.008735112, 0.018419309, -0.03131514, 0.013582865, -0.02419995, -0.009745505, 0.008898537, -0.012448109, 0.010832741, 0.025891779, -0.06838313, -0.041250672, -0.0016015705, 0.0030955323, -0.10856517, -0.015087193, -0.026413096, -0.017927248, 0.0069630174, 0.021839252, -0.023207212, -0.031749632, 0.052670877, -0.002269212, -0.005443108, -0.013857248, -0.022354554, -0.008614931, -0.009890764, 0.017373493, 0.020249464, 0.014200133, -0.0037471843, -0.014654358, -0.026676582, -0.011718675, 0.033582505, -0.027013373, 0.01548935, -0.00568569, 0.026653212, 0.0739003, 0.0021178718, -0.06777075, 0.018155087, -0.034021545, 0.01566153, -0.06474433, -0.05747918, 0.036658503, 0.04200584, -0.013330348, 0.03907949, 0.025601393, 0.021024786, 0.030272972, 0.018562885, 0.0027365808, 0.0010957965, 0.021018675, 0.015211, 0.0058496073, 0.039378535, -0.034797993, -0.009562349, 0.012973414, -0.012962204, -0.07909091, 0.05009442, 0.030856313, 0.028494677, 0.033108413, 0.013366744, -0.03965105, 0.0040637767, 0.039290972, 0.018100059, -0.043656304, -0.037617296, -0.065496005, 0.010404615, -0.0090602115, -0.031494197, 0.011987249, -0.032090366, -0.008372645, 0.049870234, 0.037091896, -0.009572005, 0.07738661, -0.010162988, -0.057709873, -0.024730941, 0.052159358, -0.013324089, 0.018045671, 0.006747265, 0.0070571955, -0.015851554, -0.03376036, 0.08138804, -0.01650901, 0.039066724, 0.020287337, 0.07112909, -0.031484287, 0.017038662, -0.035240367, 0.05384885, 0.039152637, 0.021158703, 0.017090712, -0.019140152, 0.017564429, 0.046011318, -0.02548199, 0.011382072, 0.019598465, -0.008002464, 0.045514233, -0.015362871, 0.008398809, 0.013045083, -0.03744664, -0.0037357786, -0.0005630236, 0.045511644, -0.016134376, -0.018222991, 0.017416071, -0.04949627, 0.05094924, -0.062422864, -0.01633391, 0.020654988, 0.0075704153, -0.039335396, -0.01090502, 0.01701754, 0.021724269, 0.0052008713, 0.026522072, 0.021677459, 0.028033873, 0.026241094, -0.02647236, -0.040272105, -0.049242232, -0.01604283, 0.011447199, -0.0032144277, -0.052461453, -0.025958575, 0.006038483, 0.02156208, 0.03508536, -0.060720563, 0.023995541, -0.065414585, -0.020030212, 0.060917787, 0.048908282, 0.029516926, -0.035742626, -0.0681652, 0.00677808, 0.009010507, 0.06151913, 0.032828815, -0.01838176, 0.037350595, -0.009534447, 0.01641474, 0.055364463, -0.011482307, 0.018886399, 0.017358573, 0.008771259, -0.02751073, 0.04191023, 0.022710852, 0.047912687, 0.0507838, -0.08764053, -0.005391948, 0.01981795, 0.02589587, -0.003192113, 0.046982232, 0.09316041, 0.011215359, 0.02213085, -0.050549358, -0.04660105, 0.043677155, -0.027844934, 0.016688883, 0.0055799154, 0.07854985, -0.037110075, -0.016655898, -0.07293896, 0.042235285, 0.019021064, -0.024334846, -0.0149631435, -0.016048336, -0.030414114, 0.011412093, 0.013184123, 0.030171469, 0.002837992, -0.075559154, 0.046300706, -0.11037495, -0.00085887563, 0.0105354795, 0.03333501, -0.013876716, -0.0014054658, 0.05086887, -0.05315544, -0.04920744, -0.017023694, -0.029011935, 0.057603355, 0.041295808, -0.022854915, -0.05030784, -0.0031104465, 0.029655969, 0.037695065, 0.00929883, 0.023686994, 0.0039783106, 0.016749008, -0.052110206, 0.018212032, 0.0108600035, 0.037433714, 0.051572867, -0.0104955295, 0.045193158, 0.015505265, 0.0016697093, -0.030637126, -0.010028837, 0.06783562, -0.0012902769, 0.0061406526, 0.0048001097, -0.0031289174, -0.0026366285, -0.039589673, -0.06129119, -0.06590664, -0.045794908, 0.040901314, 0.053407982, 0.0015630093, -0.007113039, 0.01454984, 0.006987665, 0.009804877, -0.0042819516, 0.06826304, 0.005342984, -0.033786453, -0.005785077, -0.00074184843, -0.032627698, -0.030202484, 0.04193832, 0.0036696626, -0.04886183, -0.025627198, 0.02995996, -0.005685914, 0.045508146, 0.0005291251, 0.08757111, -0.046909153, -0.049662292, 0.04029665, 0.00050819793, -0.060259894, 0.00068764715, 0.03197184, -0.026817251, 0.010127729, 0.0006477781, -0.016883565, 0.05995718, -0.023710385, -0.014406675, -0.04114976, 0.02955375, 0.008180274, -0.017367512, -0.0027670632, -0.045284025, 0.008732009, -0.019457238, 0.0083095245, -0.03609764, 0.012876928, 0.022925233, -0.022192437, -0.008710742, 0.045846462, 0.026178416, -0.022926882, -0.039162904, 0.022387495, -0.042756703, -0.039830692, 0.024334662, -0.04094968, 0.0024307333, 0.056085825, -0.036048073, 0.007170585, -0.06463311, 0.043654732, -0.039933573, 0.032853533, -0.025979275, -0.025650265, -0.03055814, 0.030753683, 0.051738758, -0.043428924, 0.0003099927, 0.04115679, 0.0071386024, -0.015863793, 0.024281362, -0.04772743, 0.03852195, -0.016875826, 0.045256585, 0.03859698, -0.03219582, 0.05018624, 0.027731376, 0.031893387, 0.0007926419, 0.044976175, -0.00718171, 0.020924285, -0.019896453, -0.02602207, -0.0550768, -0.05578364, -0.019242795, 0.007375971, 0.024606012, -0.015149455, -0.009526504, -0.02462334, 0.03220358, -0.005809833, -0.02838085, 0.036618803, -0.008427441, 0.032926798, -0.008989359, -0.009424107, 0.06219601, -0.0067313137, 0.003646311, 0.081909806, -0.033447012, 0.0028831516, 0.037068795, -0.012765384, -0.031458113, 0.03929259, 0.008675992, -0.043727815, 0.019989181, -0.027033526, -0.0016901286, 0.033073045, 0.05752549, -0.060878366, 0.0070157694, 0.009291007, -0.014153476, -0.08355657, 0.03301503, 0.019960448, 0.0041238777, 0.07645898, -0.04907588, 0.031502947, -0.06626675, 0.031068243, -0.063257225, -0.0035359608, -0.046263188, -0.016137177, -0.0135744875, 0.039609745, 0.019524034, -0.007412647, -0.056950837, 0.036823425, -0.07295958, 0.029561928, 0.08272403, -0.005728827, 0.045051824, 0.021661518, 0.021942383, 0.038523592, 0.03071989, -0.014142143, -0.021248445, -0.028957305, -0.023715595, 0.062495947, 0.0085776085, -0.038688283, -0.048593663, 0.013221123, -0.05052469, 0.057953477, 0.007475166, -0.030306444, 0.0025835403, 0.05628232, 0.016184706, -0.000803162, -0.0607976, 0.0031860492, -0.029540801, -0.021158336, 0.01764171, -0.0018446628, 0.010259926, 0.020458855, 0.03243064, -0.020980742, -0.037437517, -0.006995269, -0.016254384, -0.040276382, -0.07255118, 0.05833681, 0.052921362, 0.021647269, 0.005176448, 0.0023501338, 0.03143043, -0.080612846, 0.039278693, 0.015514957, -0.019057373, 0.016111936, -0.011566957, 0.020486135, -0.10982452, 0.0030940583, 0.055713013, -0.024287825 ] }, { "values": [ -0.0078291595, -0.034703374, -0.03935263, -0.038803395, 0.036302768, 0.017478105, 0.019010857, 0.027520359, 0.012560893, 0.04646898, 0.009989411, 0.024512019, 0.040982973, -0.003908557, -0.026006525, -0.042268116, 0.03527003, 0.0041705216, -0.044171315, -0.013108874, 0.022642896, 0.027419586, 0.016984342, -0.054718226, -0.023967583, 0.02069024, 0.05082619, -0.06658918, -0.0068926187, -0.050517, 0.041947857, 0.06732511, -0.025735207, -0.02445013, 0.068786256, 0.027037205, -0.05968334, 0.002251894, 0.02047696, -0.056562606, -0.06645559, -0.018861866, 0.03641868, 0.02080965, -0.078144714, 0.0104617085, -0.01819005, 0.038767587, -0.07258019, 0.018518077, 0.031350512, 0.009088442, 0.02269088, 0.007573373, 0.004010781, -0.049516726, -0.09262968, -0.043781, 0.057706434, -0.0017307608, -0.006085087, 0.010322566, -0.05039317, -0.022572558, -0.04104824, -0.036344286, -0.041934688, -0.020680146, -0.052936375, 0.044595495, -0.044486117, 0.042693026, -0.023923798, 0.01499912, -0.025486173, -0.036569577, -0.017050795, 0.0011257394, -0.014557549, 0.0043876492, 0.004878545, 0.015967105, 0.07066453, 0.056932554, 0.06959648, 0.02248037, 0.05228376, -0.064628266, -0.026974685, 0.04520599, 0.060105596, -0.010180108, -0.01154509, 0.017558025, 0.03429494, -0.02655404, -0.051529687, -0.05936433, 0.032060925, 0.06234525, -0.038494725, -0.022943143, 0.019279173, -0.0013296971, 0.028467048, 0.0028005375, -0.02498187, -0.04165076, -0.048933964, 0.004783044, -0.047508925, -0.0060332776, -0.01883451, 0.01413576, 0.015743967, -0.0550373, -0.015848484, 0.03929916, -0.0065625557, 0.00825298, 0.048994917, -0.029357225, -0.046550322, 0.036708664, 0.050230034, 0.00858559, -0.013836418, -0.016883768, -0.03340161, -0.044243935, 0.09861323, -0.096041344, 0.016279832, 0.006866674, -0.03006381, -0.052289568, 0.032339852, 0.016092995, -0.058543053, 0.0053559584, 0.02185146, 0.00096484413, 0.0073113465, 0.025829026, 0.011869937, -0.0065687597, -0.013178585, 0.029275894, -0.03357005, 0.047383003, -0.082575396, 0.0068901563, 0.014891526, 0.0027092597, -0.07751688, 0.0438426, 0.033774845, -0.029752728, 0.041266102, -0.045683, 0.021876765, -0.02713417, -0.017472586, 0.016106833, -0.052728333, -0.00076817744, 0.01660388, -0.049735926, -0.067839414, -0.045153353, -0.012693317, 0.030809984, -0.010399873, -0.06536432, -0.0062706512, -0.01261613, -0.00517986, 0.03736732, -0.029532086, -0.019296173, 0.007391236, 0.041282326, 0.007084833, -0.010887026, -0.004102654, -0.0103237, -0.025481055, 0.05922166, 0.004676626, 0.038923904, -0.04249586, -0.013740202, 0.015976781, 0.06866736, 0.0010098412, 0.06969114, 0.0043843533, -0.020736657, -0.010652416, -0.022309395, 0.062497564, -0.006027069, -0.03206957, 0.03263151, -0.033865348, 0.002669516, -0.05057921, -0.03718671, -0.0096093165, -0.017725075, 0.0040023797, -0.041230705, 0.0088011045, -0.05295368, 0.0036821323, 0.0013771242, 0.078732476, 0.05273893, 0.011816106, -0.055114746, -0.02717667, -0.025461754, 0.01213599, -0.026858909, 0.028643543, -0.04140166, -0.006993464, -0.047984455, -0.040150035, -0.022815242, -0.058305938, -0.0041965176, -0.017969465, 0.0183941, -0.020431032, 0.015696693, 0.03138264, 0.02497923, -0.0276712, -0.0058627874, 0.045394782, 0.04999161, 0.052736513, -0.025000036, -0.017652925, 0.05387739, 0.057149436, 0.10204489, -0.00795569, -0.023471352, -0.0036323748, -0.02721848, -0.05575026, 0.015256392, -0.068235256, -0.002697778, 0.017326668, -0.020577976, -0.027246442, -0.01579622, 0.04475227, 0.012846603, -0.023920929, -0.011986134, -0.028849814, -0.11109525, -0.0083203055, -0.038394153, 0.042781968, -0.0072010504, -0.019971661, -0.020665089, -0.094531074, -0.031395175, 0.014843445, 0.04808568, -0.030278772, 0.020492462, -0.07250042, -0.028051337, 0.036675256, 0.018155353, -0.046917614, -0.047395874, -0.0008974175, -0.06468385, 0.00052439835, 0.017588817, -0.036206067, -0.04348669, 0.042485423, 0.044428017, 0.018520344, -0.015630143, 0.046330646, -0.002950157, -0.004509189, -0.032871693, 0.0072706104, -0.0077767624, 0.013100692, 0.08238054, -0.020575441, 0.0073962654, -0.018317027, -0.016805716, -0.03479561, -0.011140122, -0.0018138273, 0.012034234, 0.033754796, 0.032181658, -0.04855507, -0.018596105, -0.014771486, -0.009502891, -0.09593495, 0.006525898, -0.017575225, -0.014850195, 0.031997822, 0.00988076, -0.037747502, -0.043327622, 0.054186765, 0.010810617, -0.021177553, -0.0061996984, -0.015507306, -0.0071852654, 0.009318365, 0.015080908, 0.016718684, -0.01678111, -0.00014601424, -0.022435412, -0.010946284, 0.009031383, 0.053185288, -0.010626364, 0.010468936, -0.009272105, 0.0043221153, 0.08372915, -0.005252792, -0.05067284, -0.0018790987, -0.016220547, 0.03144055, -0.039239988, -0.060143054, 0.059368018, 0.049551193, -0.010492345, 0.047987033, 0.02783148, 0.043378986, 0.052870587, 0.0130261965, -0.011938863, -0.02210857, 0.020862242, 0.0073566893, -0.0077540735, 0.022825541, -0.021478614, -0.006686383, 0.017430801, 0.006321948, -0.09292357, 0.03444014, 0.010053072, 0.01945623, 0.00664572, 0.024344772, -0.023333851, 0.013516586, 0.006003508, -0.002582267, -0.022043819, -0.047047038, -0.055098668, 0.03504749, -0.0134360045, -0.06264666, 0.029097121, -0.047381286, -0.026083522, 0.060351107, 0.038348485, -0.008501428, 0.06946015, -0.010689616, -0.027348924, -0.049810786, 0.051101983, -0.013087859, 0.01747712, 0.0318371, -0.011811068, -0.040502775, -0.033530116, 0.0854331, -0.031817615, 0.019667264, 0.019255688, 0.045594558, 0.014478299, 0.01896075, -0.03696084, 0.027909394, 0.022933988, 0.018851802, 0.0197755, -0.006903013, 0.011139842, 0.054430682, -0.035661403, -0.0026831247, 0.012411028, -0.013533774, 0.022159677, -0.020976935, 0.03693875, -0.008519734, -0.065836184, -0.00016095862, -0.012101071, 0.04613625, -0.04379428, -0.023751838, 0.046803974, -0.070092924, 0.035887722, -0.040368322, -0.004980062, 0.0007440383, -0.01768363, -0.031174885, 0.006062703, 0.014377175, 0.008661556, 0.040910028, 0.027523905, 0.02457747, 0.069703735, 0.029987944, -0.009565214, -0.038108524, -0.07086405, -0.008445785, 0.022940787, -0.0008384489, -0.06569383, -0.00030044638, -0.0016053362, 0.030037869, 0.023121074, -0.041223843, 0.00904282, -0.058255065, -0.006098903, 0.05147214, 0.05766464, 0.02714171, -0.029346755, -0.036414444, 0.0015252888, -0.015314193, 0.04845006, 0.010835854, -0.034399398, 0.0075353645, 0.0065686046, 0.03138756, 0.04261603, 0.005428336, -0.009067552, 0.029090399, 0.0044060834, -0.033043437, 0.037900783, 0.013515342, 0.052642405, 0.026405392, -0.07051662, -0.010005247, 0.02145875, 0.025726981, -0.020056453, 0.041142896, 0.06826664, 0.010539213, 0.023062464, -0.055628836, -0.057991624, 0.02354298, -0.014474155, -0.011802615, 0.026800308, 0.07658825, -0.024306305, -0.017540421, -0.06380962, 0.047921494, 0.007237409, -0.0077685853, -0.021700261, 0.015662314, -0.00581513, 0.0044680904, 0.0014297719, 0.029413098, -0.008027273, -0.055928767, 0.04435041, -0.05750216, -0.002578125, 0.007307744, 0.045426413, -0.0061140703, -0.02497333, 0.012814504, -0.061743286, -0.059437152, -0.01121032, -0.03488549, 0.056462105, 0.04398278, -0.026173213, -0.018567873, 0.019660791, 0.028502202, 0.018854465, 0.013258952, 0.0364718, 0.0011393453, 0.02162538, -0.051729996, 0.03781279, -0.01610454, -0.00622021, 0.064088054, -0.0043570995, 0.043213077, 0.0331875, 0.016774137, -0.018254582, -0.008182544, 0.0773277, -0.017946752, 0.0084484285, 0.015740583, -0.0014485172, -0.03429255, -0.045383632, -0.049740452, -0.05236614, -0.037513267, 0.031267114, 0.05756441, 0.01674275, -0.012017734, 0.009075641, -0.0078695575, 0.0222419, -0.015689883, 0.0875426, -0.0063094734, -0.028984044, -0.014406065, -0.017277725, -0.020252632, -0.039043583, 0.03912485, 0.020014105, -0.0831626, -0.021572286, 0.033232376, 0.00919472, 0.059092127, 0.010741519, 0.08259151, -0.06754155, -0.018023696, 0.027018894, 0.016143719, -0.06348705, 0.005917112, 0.029155627, 0.0012761984, -0.00037828076, -0.014010245, -0.012676839, 0.06515232, -0.025776431, -0.019317526, -0.024991715, 0.033559587, 0.03755419, -0.0075064492, 0.017152725, -0.050648917, -0.010990437, -0.015572566, -0.009478676, -0.037619796, -0.0016113344, 0.024002375, -0.043040562, -0.024998337, 0.03929278, 0.022988, -0.036479343, -0.02304312, 0.014515488, -0.053176995, -0.059273053, 0.03307588, -0.033176087, -0.009912235, 0.045451, -0.02171664, -0.006676455, -0.06716543, 0.008892272, -0.0275068, 0.038584564, -0.04634477, -0.0377712, -0.026949745, 0.0411689, 0.060843885, -0.032554932, -0.008230884, 0.033033125, -0.0120701855, -0.035497703, 0.052800793, -0.0392166, 0.032326523, -0.008177822, 0.03323899, 0.0787528, -0.038304854, 0.048759975, 0.0053271223, 0.05821975, 0.0028162494, 0.0043502753, -0.01390584, 0.013337716, -0.017766515, -0.028406829, -0.04903048, -0.06334732, -0.037364118, -0.0039624413, 0.032515846, -0.022282194, 0.007150534, -0.03188912, 0.036680102, 0.018431362, 0.009878254, 0.020424323, -0.021752756, 0.038186423, -0.014790603, -0.037331294, 0.02254998, -0.012223969, -0.0011679808, 0.052122913, -0.03077097, 0.016489882, 0.033764277, -0.01298802, -0.042356104, 0.037765622, 0.010778945, -0.038538307, 0.0020869193, -0.010089349, -0.016701464, 0.03724666, 0.016314177, -0.04395547, 0.0067596994, 0.032583803, -0.016248392, -0.09282128, -0.000948687, 0.0409572, 0.022736762, 0.06668311, -0.06021866, 0.025858985, -0.036701344, 0.031141477, -0.030385904, -0.019241085, -0.048401255, -0.004796667, 0.001230161, 0.05844909, 0.030524068, 0.0035734181, -0.05931931, 0.035375282, -0.055632286, 0.0282459, 0.108176805, -0.016408347, 0.042543124, -0.007920024, 0.03175791, 0.03886899, 0.018183677, 0.0035493318, -0.019729292, -0.022790443, -0.02326481, 0.06527511, 0.024478838, -0.017608842, -0.05921254, 0.024953546, -0.03896705, 0.054559488, 0.009231177, -0.038193073, 0.0029794853, 0.028844958, 0.006642774, -0.0025429172, -0.05326065, 0.008922352, -0.0289236, -0.024874192, -0.0053255023, -0.02089012, -0.017325016, 0.013746186, 0.02413363, -0.01279247, -0.03038963, 0.019432692, -0.0020488778, -0.012708036, -0.090495706, 0.03793085, 0.036903422, 0.011622035, 0.02622056, -0.029543065, 0.024527328, -0.040149737, 0.011538478, 0.011474326, -0.011233104, 0.009885454, 0.0050368155, 0.023267906, -0.13538525, 0.00026582376, 0.06188993, -0.042321566 ] }, { "values": [ -0.004340211, -0.029660158, -0.056701373, -0.0072253835, 0.028249752, 0.04322332, 0.021075556, 0.045268554, 0.020223454, 0.03161659, 0.021732256, 0.026206665, 0.025983183, -0.017712398, -0.032183956, -0.07222169, 0.0038343437, -0.005020674, -0.078030586, -0.053534754, 0.013741908, 0.023964213, 0.033714112, -0.032864355, -0.027648017, 0.011128699, 0.06488097, -0.055374485, 0.009135915, -0.036427725, 0.042049743, 0.06268784, -0.0026801203, -0.03140071, 0.049690165, 0.051827725, -0.0678098, 0.0063897166, 0.0044589047, -0.033057123, -0.056422245, -0.020036187, 0.031121843, 0.030401437, -0.06294553, 0.011132054, -0.018379867, 0.045494653, -0.061169337, -0.008458806, -0.0037997924, -0.008960435, 0.022146188, -0.0078162905, 0.007079355, -0.066956654, -0.057268955, -0.009107701, 0.06482616, -0.0052703456, -0.0051426124, 0.023371885, -0.041892797, -0.01609278, -0.038306028, -0.03759075, -0.06928948, -0.017917505, -0.03246913, 0.068979405, -0.060724363, 0.038310625, -0.004773009, 0.0145471115, -0.015439254, -0.011503417, 0.006765529, 0.0054070726, -0.032260805, 0.02575951, 0.0121285515, 0.021077082, 0.06462914, 0.045523677, 0.048292913, 0.022839464, 0.08292223, -0.06319764, -0.052935153, 0.023616731, 0.06731223, -0.0074648284, -0.028599909, 0.0048306757, 0.018205712, 0.02406339, -0.033895005, -0.09050927, 0.013343915, 0.06806722, -0.06491216, -0.025539178, -0.01902189, 0.0025450669, 0.010198288, 0.023095854, -0.034655824, -0.01606544, -0.032344498, -0.0036139234, -0.030606162, 0.0009184106, 0.0056530596, 0.016214589, 0.02884326, -0.054014005, -0.0056395056, 0.025848188, -0.019300444, 0.0039343787, 0.0138260275, -0.024412682, -0.011800886, 0.0591135, 0.01287966, -0.00081618526, -0.019926341, 0.0034438798, -0.043116853, -0.040768184, 0.11291339, -0.08831221, 0.024765434, -0.04376914, -0.02093658, -0.02730937, 0.04244069, 0.025062826, -0.03803796, 0.020365627, 0.013408051, 0.024815878, -0.035711624, 0.02928663, 0.007058679, -0.0031944788, -0.022067055, 0.013481546, 0.0074999505, 0.032723885, -0.07584491, 0.012669943, 0.033508733, -0.030494867, -0.095425166, 0.044238437, 0.032763857, -0.008545822, 0.039916903, -0.047508013, 0.055255633, -0.037027977, -0.04308577, 0.007213254, -0.10526406, 0.0009058306, 0.025412535, -0.064622134, -0.027585674, -0.022922762, -0.007919709, 0.007637749, -0.010847594, -0.060976323, 0.011296616, -0.031009441, -0.0035460815, 0.035507858, -0.026963068, -0.028327968, 0.0075896075, 0.049266614, 0.012113985, -0.028546626, -0.019204168, 0.021398136, 0.005838711, 0.054257702, 0.0038512163, 0.024577333, -0.029873218, -0.025314312, 0.0021464408, 0.10859959, 0.008571562, 0.0603772, 0.009733484, -0.016691677, -0.02639271, -0.0034261486, 0.053358864, -0.0022417377, -0.0343235, 0.058144152, -0.02006032, 0.006461764, -0.045284737, -0.021333411, -0.012146726, -0.015124248, -0.023827218, -0.024049511, 0.018946951, -0.06627576, -0.0011640047, 0.009436146, 0.088484325, 0.051071305, 0.013385024, -0.03218789, -0.027345808, -0.016178248, 0.003544076, -0.025912756, 0.027795138, -0.036900483, -0.012643563, -0.04339518, -0.030362807, -0.022428751, -0.038652647, 0.03780002, -0.022729114, 0.0056747375, -0.02670721, 0.032629024, 0.02433439, 0.03750844, -0.006990409, -0.016349161, 0.027058333, 0.030363334, 0.01775632, -0.011066798, -0.010238128, 0.066214405, 0.04889627, 0.058684424, 0.01675603, -0.032041635, -0.0071678516, -0.03605943, -0.05589501, -0.0031782906, -0.083676115, 0.02875149, 0.020645816, -0.018290529, -0.011395672, -0.021951964, 0.027265336, 0.027999545, -0.019829594, -0.026958395, -0.020280886, -0.08266124, -0.0073606763, -0.041733574, 0.028302142, -0.019060615, 0.0060045174, -0.012856096, -0.050267093, -0.053274658, 0.03824147, 0.0138070015, -0.041774955, 0.018822167, -0.05898, -0.024307022, 0.04994918, 0.011096578, -0.035425574, -0.034012362, -0.023126109, -0.04294268, -0.0025849305, 0.021509746, -0.03473029, -0.037441287, 0.016209174, 0.051236156, 0.016281094, -0.035244312, 0.032136142, 0.02088488, 0.0034568536, -0.0060203588, -0.04712155, -0.0012191504, 0.061602384, 0.06731658, -0.038635932, 0.028659385, -0.02884056, 0.02073264, -0.008762867, -0.0060772495, -0.0013280758, -0.005872287, 0.016091743, 0.04474364, -0.075729996, -0.0336701, -0.01571072, -0.018561767, -0.10154955, -0.039443027, -0.028042804, -0.021184266, 0.010965539, 0.013700661, -0.012348266, -0.048473645, 0.07800066, -0.009956879, -0.01714589, 0.015802747, -0.020921223, 0.022120912, -0.028534753, 0.029344726, 0.033279836, 0.0029858053, -0.003517653, -0.029570896, -0.02656977, -0.012123031, 0.048350003, -0.0058335243, 0.025933951, 0.0034455427, 0.025204679, 0.0819643, -0.020261716, -0.046318695, 0.02219897, -0.013444437, 0.025238033, -0.059858996, -0.069167815, 0.059704833, 0.031664114, -0.021172903, 0.046501625, 0.0025811424, 0.020873932, 0.005211211, 0.030175442, 0.0055676345, 0.0023066916, 0.014664478, 0.012196794, 0.008810526, 0.024029473, -0.031007953, -0.014492154, 0.02250515, -0.0010540027, -0.0736732, 0.04093203, 0.019228324, 0.013467453, 0.042952493, 0.005708946, -0.018417077, 0.016834982, 0.03946479, -0.006202563, -0.04896772, -0.030505717, -0.06661691, 0.007183483, -0.022807261, -0.022354426, 0.01049624, -0.034550983, -0.008532781, 0.049318843, 0.040430237, -0.014781451, 0.081949376, -0.0020078348, -0.043636817, -0.040713042, 0.03067619, -0.0041801985, 0.030211689, 0.021248588, 0.014010326, -0.031940944, -0.027256927, 0.06937987, -0.012071237, 0.03984672, 0.019201793, 0.073534615, -0.0141938105, 0.011427842, -0.011826248, 0.03220071, 0.034222823, 0.02865122, -0.003910961, -0.02734161, 0.013682879, 0.054173075, -0.03400117, -0.008655271, 0.008265048, -0.010227236, 0.031946424, -0.0006917997, 0.016351143, -0.0015291703, -0.049509726, 0.0149305565, -0.0033583646, 0.041930564, -0.0059420993, 0.017078845, 0.032079376, -0.055265907, 0.04768818, -0.040788986, -0.00883446, -0.0016677636, -0.010932982, -0.037814453, 0.0077922186, 0.0049902922, 0.022922192, 0.025930943, 0.015926236, 0.023707569, 0.020847674, 0.024237003, -0.004615123, -0.019896647, -0.061426446, -0.04513834, 0.008720516, -0.01287566, -0.04994652, -0.005231988, -0.0061161346, 0.0018064643, 0.02707467, -0.05792178, 0.02250974, -0.05979007, 0.005469288, 0.06361531, 0.055322178, 0.04172426, -0.058431968, -0.050040927, -0.003509869, 0.0052392688, 0.04808938, 0.0062466045, -0.005521041, 0.020160923, -0.011892212, -0.0024464703, 0.055471312, 0.00675159, 0.027787372, 0.007365908, 0.0065964917, -0.028032377, 0.02432148, 0.021762978, 0.055054415, 0.037486207, -0.045774926, -0.00826773, 0.040353823, 0.022681408, -0.00666493, 0.05831412, 0.08698959, 0.010373653, 0.030611305, -0.05893427, -0.044209678, 0.025105605, -0.009686264, 0.00088768685, 0.017078163, 0.078406185, -0.048360158, -0.01089506, -0.09570722, 0.041775614, 0.0061771893, -0.037108947, -0.020453181, 0.0060837315, -0.03200351, 0.00989627, -0.00097464025, 0.0042421953, 0.018237183, -0.06553093, 0.064632826, -0.10034121, -0.010555254, 0.02230818, 0.04092095, 0.014316755, -0.009749913, 0.045655306, -0.04989297, -0.068315625, -0.023626225, -0.008075133, 0.059553046, 0.03599908, -0.006979237, -0.0074727093, 0.011798459, 0.00974238, 0.042418655, -0.008126976, 0.028687144, 0.016028455, 0.004536696, -0.057758518, 0.035260964, 0.012917506, 0.030861512, 0.061129697, -0.008955625, 0.052779812, 0.016308978, -0.016884653, -0.01721014, 0.0034579108, 0.036114816, -0.033186376, -0.021443972, 0.0010667164, -0.037872825, -0.018482959, -0.035188656, -0.057025466, -0.047601443, -0.032611214, 0.025035355, 0.06079421, 0.002422634, 0.015402635, 0.005408643, 0.008253254, -0.0020587877, -0.010409177, 0.07297179, -0.010959475, -0.01347193, -0.0042885966, 0.013750407, 0.005812918, -0.04208271, 0.029288385, 0.0041144807, -0.056514326, -0.02848457, 0.04208216, -0.0038984218, 0.042241495, 0.016297048, 0.09033175, -0.03599783, -0.02306287, 0.052210245, 0.011424454, -0.0472722, 0.017605158, 0.0283241, -0.008649067, 0.036582433, 0.0013611601, -0.0268207, 0.066789396, 0.002426314, -0.0048579276, -0.015759151, 0.019317541, 0.015896762, -0.015652614, -0.0012977245, -0.04299438, -0.010239279, -0.006275507, 0.0015237427, -0.023742279, -0.0014650108, 0.023496443, -0.031248525, -0.027086604, 0.019683847, 0.018909244, -0.018549873, -0.014191594, 0.011888793, -0.05966388, -0.04296335, 0.022230847, -0.042935375, 0.016278915, 0.025602566, -0.052934628, 0.025554074, -0.09030432, 0.01355693, -0.024051772, 0.042570736, -0.029755007, -0.025418317, -0.027002815, 0.02109828, 0.029965568, -0.04580156, -0.002328985, 0.048021764, 0.00023739605, -0.020594817, 0.03411667, -0.045697086, 0.021429082, -0.021082392, 0.04630481, 0.036089778, -0.033512585, 0.05423477, 0.03413258, 0.02736296, -0.015530637, 0.04588575, -0.013525418, 0.012354146, -0.021502536, -0.027733732, -0.041520085, -0.0679684, -0.024694512, 0.0056884424, 0.024039213, -0.013436067, -0.0019385915, -0.03351093, 0.012568185, -0.015952783, -0.026865374, 0.021622887, -0.033883054, 0.03002848, -0.008373439, -0.024835536, 0.049137767, 0.00811145, 0.030197544, 0.05235004, -0.0021058586, 0.029608045, 0.027806858, -0.039361235, -0.033685036, 0.04021976, -0.016324278, -0.048078302, 0.019300332, -0.017476618, -0.007986034, 0.004914109, 0.04950119, -0.06538647, -0.0089401845, 0.025822366, -0.017704513, -0.09468987, 0.037248902, 0.027525188, 0.024695523, 0.09185728, -0.09265299, -0.0054982076, -0.049411923, 0.021661071, -0.06060485, 0.0046028486, -0.044293948, -0.0096975695, 0.012521561, 0.036029633, 0.008154611, 0.028195946, -0.039511304, 0.055427447, -0.0703104, 0.03361925, 0.07582272, 0.0057797576, 0.047282383, 0.023232924, 0.037403684, 0.032611176, 0.043636408, 0.009603111, 0.0015952532, -0.026873969, -0.035374463, 0.069604196, 0.028264008, -0.04721289, -0.054276273, 0.014068257, -0.029848559, 0.055181045, 0.0082192905, -0.056683186, -0.006960117, 0.03560269, 0.005857665, 2.725101e-07, -0.036890227, 0.0021373946, -0.035255883, -0.018973911, 0.008751569, -0.005134956, -0.004907558, 0.030867066, 0.048571892, -0.0113720605, -0.034452494, 0.0019456907, -0.042304296, -0.02426943, -0.067699224, 0.037130766, 0.040710814, 0.010890717, 0.016155604, 0.016547207, 0.034217935, -0.08344535, 0.0422911, 0.014050045, -0.015937436, 0.025681678, 0.004262444, 0.01135194, -0.1250152, -0.019110106, 0.060729485, -0.02313372 ] }, { "values": [ 0.015165309, -0.044211518, -0.056559935, -0.02603688, 0.013881548, 0.028222248, 0.017707637, 0.03550211, 0.015089806, 0.02935056, 0.013779468, 0.03902687, 0.022914479, -0.017604006, -0.05715984, -0.05094976, -0.0074779564, 8.649015e-05, -0.07609516, -0.060638998, -2.9895544e-05, 0.02022027, 0.026597481, -0.03923252, -0.01822687, 0.0406934, 0.052172843, -0.052332625, -0.0010257153, -0.040798604, 0.03555954, 0.04520536, -0.005305207, -0.031003725, 0.07333775, 0.049572404, -0.037348233, 0.0057410966, -0.005163864, -0.014053854, -0.057543892, 0.0039771674, 0.017623125, 0.016859459, -0.04686879, 0.02035286, -0.024356447, 0.03144022, -0.07105883, 0.010836377, -0.0117775, 0.006594456, -0.022471443, -0.02071515, 0.016971605, -0.049073398, -0.0523255, -0.022488136, 0.06363533, -0.008685796, 0.0054696864, 0.013030895, -0.0044953553, 0.0003444324, -0.0332847, -0.02877338, -0.05630005, -0.018604934, -0.049206156, 0.07118686, -0.051475, 0.023154976, -0.0030928105, 0.02547977, -0.011318891, -0.0069241608, -0.0021602716, 0.032406874, -0.01521885, 0.018196728, -0.012595163, 4.305546e-05, 0.101542525, 0.0100645125, 0.049743783, 0.004054831, 0.06270927, -0.061084416, -0.04196022, 0.045619905, 0.079794206, -0.015121368, 0.005074227, 0.016739547, 0.03480864, 0.006992581, -0.040280327, -0.110284284, 0.0005418242, 0.07717399, -0.06270434, -0.026113903, -0.008883357, -0.025815422, 0.033302765, 0.022566285, -0.012572565, -0.016461408, -0.033283215, 0.013864689, -0.017267365, -0.0070707696, 0.0010351313, 0.005766084, 0.03613594, -0.049385972, -0.008551104, 0.032123882, -0.008626865, 0.005569608, 0.021063153, -0.022836553, 0.0049379817, 0.080149285, 0.0006270688, -0.0014800968, -0.0048938897, -0.009251571, -0.029281419, -0.057426866, 0.09416653, -0.08704639, 0.011552179, -0.032866042, -0.033760678, -0.030140882, 0.034400534, 0.04575368, -0.027274877, -0.0009946028, -0.002158859, 0.0068105627, -0.009437143, 0.03268212, 0.00917113, -0.0027531332, -0.0022285092, 0.02487956, -0.0018928412, 0.018318178, -0.089316696, -0.0025059313, 0.044440646, -0.032153714, -0.08925577, 0.04088203, 0.06735372, -0.02970364, 0.053093538, -0.04720898, 0.032318044, -0.04780302, -0.02420391, 0.00871286, -0.09830337, 0.0018140248, 0.010686503, -0.080378376, -0.035524607, -0.023234662, -0.0018236082, 0.011734681, 0.0069581093, -0.065082125, 0.0135567635, -0.03541291, -0.015055622, 0.040191952, -0.031213984, -0.03123159, 0.019312749, 0.046343446, 0.030196644, -0.013680433, -0.014767158, 0.0073297825, -0.0029470043, 0.053672712, -0.0045723384, 0.020066533, -0.023830904, -0.00020721153, -0.0041304133, 0.09168982, 0.0053812964, 0.045871276, 0.026831906, -0.017444601, -0.026038393, -0.020983938, 0.050165646, -0.03321598, -0.02143464, 0.047754277, -0.015819492, -0.010807913, -0.05755808, -0.023583464, -0.007982042, -0.005743229, -0.026784936, -0.030948747, 0.010011981, -0.062870465, -0.01212738, 0.0001240929, 0.105860054, 0.08253275, 0.023211941, -0.048056114, -0.011044481, -0.008822616, -0.0139694335, -0.021024853, 0.030665249, -0.03651259, -0.040259838, -0.055783637, -0.03538497, -0.024115276, -0.049689658, 0.039962023, -0.016075391, -4.132719e-05, -0.023997348, 0.0058998917, -0.0063400688, 0.02595408, 0.0034058788, -0.042988565, 0.02457729, 0.046400756, 0.029907456, -0.016298328, 0.013651367, 0.03401208, 0.057743546, 0.07899558, -0.0033967725, -0.02814227, -0.009828334, -0.012196902, -0.05317403, 0.020012228, -0.07549535, 0.019950306, 0.034504727, -0.035810977, -0.026858108, -0.02249745, 0.012862696, 0.0048456397, -0.02112444, -0.029052101, -0.023315826, -0.08175119, 0.009122129, -0.03839922, 0.022499088, -0.0018177988, 0.015637266, -0.0028918965, -0.057331335, -0.07004029, 0.030061081, 0.0042176945, -0.03599931, 0.03553627, -0.05775033, -0.015341541, 0.04330736, 0.0063431435, -0.054681145, -0.026175322, -0.012532073, -0.059049394, -0.0023291395, -0.0008917528, -0.04362472, -0.0661404, 0.04547027, 0.048848767, 0.011377881, -0.0049217017, 0.0117278285, 0.009738811, 0.012054303, -0.012727423, 0.0053656762, 0.00013472434, 0.048006084, 0.076147735, -0.042118028, 0.015498102, -0.05322023, 0.032133143, -0.016670436, -0.0063959444, -0.033555012, -0.0042917705, 0.02107789, 0.056609783, -0.060117584, -0.041958112, -0.005328057, -0.0038761285, -0.09400938, -0.01626878, -0.032982536, -0.035999794, 0.01136272, 0.029880593, -0.031056598, -0.03120663, 0.07508959, -0.015675647, -0.0065488103, -0.00983387, -0.021628518, 0.012620581, -0.013813684, 0.008067262, 0.012715537, -0.016640654, -0.008679519, -0.041894715, -0.031166269, -0.01764298, 0.032107197, -0.02998842, 0.021235066, 0.012198502, 0.042967424, 0.047871288, -0.027413364, -0.04979124, 0.027208477, -0.026970617, 0.03579059, -0.076093905, -0.057877168, 0.061107967, 0.046566702, -0.0076009943, 0.05275732, 0.0099185305, 0.028792035, 0.009575689, 0.025913877, 0.005744516, -0.018351039, 0.012565688, 0.020976845, 0.015980763, 0.02511461, -0.044714436, 0.0032477072, 0.021995073, -0.007454479, -0.06960593, 0.024965683, 0.03489461, 0.01563251, 0.020683797, 0.008376121, -0.045871373, 0.002278576, 0.019014442, 0.006143064, -0.047725316, -0.040281173, -0.05673776, 0.0109529225, -0.031054048, -0.025274184, 0.036424346, -0.040341906, -0.011036741, 0.03800726, 0.020556144, 0.010863983, 0.079914846, -0.0036194168, -0.038662262, -0.031956587, 0.03761904, 0.010092885, 0.02231368, 0.027063636, 0.002308176, -0.004714016, 0.0012146339, 0.052666314, -0.016370624, 0.021692807, 0.018850299, 0.06283979, -0.03723799, 0.013385454, -0.005715813, 0.032680582, 0.030421661, 0.034277, 0.0018402337, -0.019718984, 0.003264755, 0.0448399, -0.020242477, -0.012245935, 0.021117155, -0.010585089, 0.020632543, -0.010553457, 0.024205098, 0.0041605383, -0.044298027, 0.023510693, -0.0052161664, 0.054967895, -0.004288285, 0.02756915, 0.018425034, -0.04197385, 0.0559036, -0.034177955, 0.0019573227, 0.00930775, -0.009351301, -0.0269187, 0.0149166575, 0.008188275, 0.028212728, 0.03445606, 0.01837991, 0.010671484, 0.03444245, 0.036916036, -0.027024772, -0.021177517, -0.045311715, -0.025801662, 0.024027588, -0.025152061, -0.079007335, 0.0095841745, 0.0010423334, 0.002233787, 0.04184557, -0.057632595, 0.025917886, -0.06634528, -0.016750539, 0.042549275, 0.048003912, 0.04028283, -0.059062954, -0.056160606, 0.013385951, -0.0049883183, 0.042001303, 0.010015495, -0.002392492, 0.02063926, -0.009169468, 0.0102512315, 0.05071614, 0.013189191, 0.008758399, 0.0077921003, -0.006747028, -0.010677349, 0.021138031, 0.009974185, 0.0443827, 0.034782182, -0.05738916, -0.021521622, 0.028684812, 0.028133208, -0.0062368084, 0.016238967, 0.0656354, 0.00992635, 0.017602177, -0.0642788, -0.042269632, 0.04598483, -0.001672323, 0.00028405245, -0.0100821275, 0.08081883, -0.030257545, -0.015637212, -0.074128225, 0.050868776, 0.009607771, -0.026032563, -0.012054144, 0.013296969, -0.031661958, -0.014119336, -0.0038974339, 0.009110757, 0.019678898, -0.085970975, 0.063639246, -0.095305406, -0.002275491, -0.0063220686, 0.034423094, -0.035715807, -0.0283357, 0.04283648, -0.06961748, -0.062040716, -0.025238965, -0.021266703, 0.054359827, 0.025865981, -0.008065817, -0.0014650025, 0.0250801, 0.023904754, 0.020474369, 0.0061790766, 0.028760273, 0.011095456, -0.00087701814, -0.046538394, 0.038712375, -0.001724533, 0.019431096, 0.065817274, 0.0065523637, 0.056506123, 0.009823612, -0.0151540525, -0.045169488, 0.007232082, 0.046521164, -0.007444512, -0.02715794, -0.0121244965, -0.034336638, -0.013723864, -0.032461736, -0.06604794, -0.039214022, -0.032976724, 0.068479136, 0.048479803, -0.0072838785, -0.010037013, 0.018658662, -0.023843672, 0.017244855, -0.012940353, 0.089621365, -0.0007293187, -0.019138912, -0.014816966, 0.0080897175, 0.0005601946, -0.059164926, 0.037868723, 0.0074046776, -0.045638427, -0.022511497, 0.03827305, -0.009184288, 0.054595888, 0.01767076, 0.06852778, -0.03777362, -0.0078179175, 0.0258001, 0.0013069252, -0.050696507, -0.0018429966, 0.04017631, -0.019915834, 0.014512757, 0.009299452, -0.025741864, 0.06647509, -0.0036894758, -0.0023213692, -0.020606304, 0.012271914, 0.011509057, -0.008298122, -0.011916189, -0.051052082, -0.015735146, -0.01574017, 0.0037719312, -0.011903699, -0.015347993, 0.009792095, -0.0325025, -0.033032805, 0.027091032, 0.029585654, -0.02485325, -0.025971916, 0.01048516, -0.05118305, -0.06227101, 0.031967144, -0.020044114, 0.030189859, 0.052102473, -0.0390017, 0.0072089913, -0.08352896, 0.0036687348, -0.013557477, 0.037056364, -0.047957122, -0.041309774, -0.033420824, -0.00027145963, 0.040921193, -0.03568593, -0.02095236, 0.04892026, -0.011493301, -0.023505224, 0.031401873, -0.05331405, 0.026705757, 0.008113703, 0.042086527, 0.053398624, -0.054556496, 0.051848453, 0.048402395, 0.053266395, -0.018548017, 0.052016042, -0.024001952, -0.0042278823, -0.025770297, -0.033216953, -0.0455956, -0.061946176, -0.03144126, 0.0014589223, 0.023789594, -0.014036135, 0.008553991, -0.013267813, 0.03504387, 0.0012315161, -0.032448437, 0.028662758, -0.029692434, 0.038067322, -0.015005035, -0.040498972, 0.049581785, 0.005307553, 0.03605016, 0.07431655, -0.014331268, 0.022061713, 0.031328972, -0.029985432, -0.035058443, 0.034503344, -0.017267259, -0.052940287, 0.016389105, -0.01696146, -0.009035428, 0.004774953, 0.0565062, -0.05030631, 0.004531723, 0.014367375, 0.005080843, -0.05494885, 0.0029239024, 0.022711022, 0.037375186, 0.098497234, -0.08743324, 0.022134267, -0.06030859, 0.013076942, -0.05097222, 0.018641891, -0.035502665, -0.00062006223, 0.024106476, 0.030585311, 0.0020932534, 0.01092227, -0.04883198, 0.044543374, -0.075919405, 0.03637669, 0.083209, 0.0018909121, 0.041596163, 0.026179971, 0.031044807, 0.030767782, 0.051244162, 0.02215981, -0.0139892, -0.016343508, -0.04913381, 0.06730853, 0.037064366, -0.017070549, -0.0680448, 0.020323219, -0.04398039, 0.05679165, 0.0025874774, -0.046240527, 0.0076281154, 0.05979425, -0.0054833083, 0.0127082635, -0.03431573, -0.0026288752, -0.04072799, -0.015865915, 0.02064867, -0.0022116662, 0.014735087, 0.04874948, 0.030556027, -0.023519598, -0.025571607, -0.031334158, -0.040008686, -0.035123203, -0.06078159, 0.044122122, 0.0379104, -0.008198972, 0.03636049, 0.014542253, 0.039406847, -0.062024783, 0.029798526, 0.008173193, -0.0031454293, 0.029983593, -0.010262319, 0.0014867568, -0.09503001, 0.011007381, 0.061218403, -0.007154743 ] }, { "values": [ 0.014640378, -0.057013273, -0.046087, -0.0042496123, 0.0072760144, 0.034131557, -0.0016151179, 0.03947836, -0.0045362893, 0.009555222, 0.023206525, 0.02947266, 0.02445559, -0.005468103, -0.029697897, -0.057022884, 0.0031435033, -0.027046397, -0.06861089, -0.032386478, -0.008808732, 0.036628023, 0.011803536, -0.03788425, -0.014349579, 0.02978701, 0.037452124, -0.07668133, 0.016652727, -0.028008178, 0.051024288, 0.026362346, 0.0057013263, -0.0083028395, 0.0256456, 0.051488362, -0.03202104, 0.015927551, 0.013393142, -0.046268046, -0.03720449, -0.016059976, 0.011696946, 0.021208558, -0.057373524, 0.027651658, -0.04332582, 0.028093483, -0.051188838, 0.0015693321, -0.01202581, -0.001121805, 0.0055977087, 0.0052286084, 0.008838353, -0.041122522, -0.060977384, -0.016624562, 0.06931393, -0.008203096, -0.0013656964, 0.03480424, -0.025635926, -0.0024649217, -0.036267526, -0.021389714, -0.07134235, -0.04121838, -0.06611065, 0.064948976, -0.07134712, 0.010237804, -0.028888064, 0.018499408, -0.009049523, -0.031067535, 0.005990845, 0.0015998438, -0.035051834, 0.004108106, 0.0024797767, -0.013517094, 0.05441051, 0.022995798, 0.046173137, 0.0252403, 0.0640813, -0.04581292, -0.07770754, 0.014286489, 0.07304951, -0.008294005, -0.028734855, -0.00083216483, 0.044645134, -0.0051279976, -0.012703108, -0.09650415, -0.0028108836, 0.0594936, -0.07434959, -0.016203092, 0.00093601603, -0.029166205, 0.03431492, 0.041950297, -0.002746217, -0.032835614, -0.013954556, 0.019772684, -0.026230114, -0.020094227, -0.028409237, 0.03742385, 0.017761182, -0.054628395, 0.025429023, 0.01580907, -0.019988611, -0.00011542099, 0.017108195, -0.023858136, 0.0046918904, 0.07648967, 0.013722624, 0.0032013517, -0.007847889, -0.020512093, -0.025722994, -0.042841844, 0.08308284, -0.10790042, 0.02859051, -0.02180076, -0.029027356, -0.028564619, 0.040285256, 0.03616203, -0.049569745, -0.0184397, 0.008570577, -0.019682048, -0.026117016, 0.058122586, 0.017108116, -0.037476674, -0.025507972, 0.012922142, 0.019497441, 0.011334961, -0.07874779, 0.0054306015, 0.023951687, -0.032701895, -0.07910751, 0.043803416, 0.055202346, -0.051419217, 0.034264233, -0.045601435, 0.02839353, -0.055746954, -0.013837604, -0.013094158, -0.07066487, 0.018812435, 0.019895714, -0.06654962, -0.058637936, -0.0383719, 0.0036089898, -0.04084415, -0.021370657, -0.062563315, -0.01110539, -0.03323437, -0.013554903, 0.029034236, -0.031022497, -0.02809174, 0.015971428, 0.055297345, 0.02852115, -0.0075486978, -0.052976906, -0.0034116989, 0.020583205, 0.053100612, 0.009550965, 0.034373574, -0.034054127, -0.01727474, -0.010959891, 0.07573075, 0.03100149, 0.04724281, 0.0417757, -0.028777648, -0.05292449, -0.023395713, 0.03726616, 0.021625865, -0.034436516, 0.046447825, -0.01878335, 0.008400423, -0.047304153, -0.0065560974, 0.028164305, -0.02193902, -0.024120273, 0.03343436, 0.008529183, -0.06723624, -0.012412074, -0.032907907, 0.09497753, 0.050257318, 0.019167492, -0.07127811, 0.0011027914, -0.0022416087, 0.014849492, -0.008981121, 0.043960184, -0.011042477, -0.0089277355, -0.03558791, -0.014116642, -0.02814024, -0.048746087, 0.04534329, -0.032643393, -0.009528319, -0.009722435, 0.029870301, 0.036258385, 0.021863323, -0.026067985, -0.020223813, 0.030656898, 0.036443964, 0.02452708, -0.034608297, -0.010473487, 0.057151504, 0.065717354, 0.051353347, -0.026969377, -0.029933138, 0.010674918, -0.027961403, -0.06960085, -0.0068930895, -0.08925584, 0.009784144, 0.039746612, -0.025541497, -0.0028905247, -0.008748998, 0.03451657, -0.005577608, -0.0058693765, -0.03786725, -0.006020597, -0.04102079, -0.0031323237, -0.026160773, 0.03000862, -0.022080384, 0.0151980445, -0.0029030514, -0.07073039, -0.044067577, 0.032440025, 0.028380957, -0.018893458, 0.015466015, -0.07218044, -0.02503093, 0.055610016, -0.005271466, -0.030557998, -0.037081625, -0.025971314, -0.05217072, -0.016246378, 0.041560568, -0.03858473, -0.04340671, 0.020895561, 0.038231984, 0.013179182, -0.01863587, 0.04383285, -0.0073437938, 0.005040078, -0.01308347, -0.021825735, 0.004330529, 0.02642613, 0.07772282, -0.02787983, 0.015157071, -0.020733828, 0.030165182, -0.013438075, -0.020628722, -0.010148493, -0.00872824, 0.0040954184, 0.06768477, -0.08523391, -0.04214821, -0.0059383577, -0.0016457218, -0.119288206, -0.00945667, -0.015993834, -0.014246345, -0.01358021, 0.010897813, -0.025150742, -0.04773407, 0.044851765, -0.015925445, -0.010000221, -0.00012932476, -0.001961932, 0.012820368, -0.03645962, 0.030548325, 0.023385916, 0.00022108914, -0.011472567, -0.017193759, -0.04564777, -0.007854979, 0.018522229, -0.022257343, 0.019966824, 0.017010605, 0.024376698, 0.045165364, 0.013372509, -0.042492796, 0.0036913203, -0.032764025, 0.010388444, -0.08027402, -0.06583452, 0.054006908, 0.020111725, -0.013280164, 0.04956278, 0.030383557, 0.020656347, 0.027401086, -0.0018215843, 0.028605502, -0.013692803, 0.00024263917, 0.02499184, 0.01825579, 0.035912737, -0.026183303, 0.017665733, 0.028413307, -0.02428777, -0.05075073, 0.028413292, 0.04149018, 0.027102733, 0.058027305, 0.005840309, -0.052905682, -0.013580459, 0.02486409, -0.00017838416, -0.04367166, -0.030164566, -0.052241046, 0.007317338, -0.021733128, -0.019633288, 0.0018631157, -0.04559261, 0.00830037, 0.046189222, 0.03933601, -0.010316865, 0.04863349, -0.018190164, -0.042919055, -0.010418298, 0.036662303, 0.021564811, 0.027693817, -0.0027751445, 0.022289924, -0.010808063, -0.027882328, 0.07306074, -0.028441869, 0.043062765, 0.032101035, 0.06108304, -0.00739574, 0.017318364, -0.013462698, 0.041120894, 0.023191491, 0.023814904, 0.02030017, -0.021116665, 0.031006189, 0.048877757, -0.026823461, 0.0045519285, 0.015113988, 0.02760727, 0.020705638, -0.0080289785, 0.04440072, -0.015437194, -0.048641622, 0.00145865, 0.022005625, 0.050003447, -0.0032284607, 0.022111656, 0.020748803, -0.043733135, 0.04919188, -0.084422514, -0.011954202, 0.0046554315, 0.0015574899, -0.013631753, 0.017581502, 0.0013496672, 0.024810016, 0.027191462, 0.028319666, 0.0060185315, 0.02687943, 0.021758098, -0.047059644, -0.022696339, -0.052872613, -0.031329866, -0.009020902, -0.01951933, -0.06797871, -0.02076121, -0.006474661, 0.035171937, 0.01629776, -0.044676404, 0.018629456, -0.056974474, -0.0093508605, 0.045872256, 0.055791363, 0.025250366, -0.039119784, -0.043822743, 0.0045660636, -0.0066493438, 0.06507522, 0.010087771, 0.0006359271, 0.032727186, -0.0028058768, 0.0039906357, 0.0562829, -0.02122667, 0.028464898, 0.020285415, 0.0027610264, -0.005208732, 0.028601719, 0.012376615, 0.037028503, 0.03721335, -0.05770464, -0.0461511, 0.037072204, 0.030123595, 0.010777656, 0.04312029, 0.08739384, 0.004844685, 0.033329327, -0.03993233, -0.028263286, 0.04681442, -0.029649213, 0.010221427, -0.008999317, 0.09205173, -0.025776302, -0.02427828, -0.08185544, 0.012938452, 0.01935813, -0.037347738, -0.009835201, 0.0038534293, -0.013941274, 0.01446692, -0.0022469342, 0.04185224, 0.009726927, -0.063866764, 0.06472882, -0.10382317, -0.013207632, 0.013623618, 0.052046295, 0.016590688, -0.0015266191, 0.047660418, -0.057814613, -0.06816717, -0.0061607766, -0.03131105, 0.048429843, 0.04150601, -0.023553615, -0.03989762, 0.02495145, 0.02859528, 0.042077277, 0.02697555, -0.0010271459, 0.006989501, 0.022006908, -0.039715145, 0.039642353, -0.0036422298, 0.051357962, 0.06781203, -0.0045021377, 0.05704622, 0.012264837, -0.009493641, -0.05269657, -0.0061453674, 0.055887144, -0.0281784, -0.011983425, 0.011258787, -0.0040179575, -0.0024555898, -0.046856765, -0.03574044, -0.014187318, -0.056056835, 0.03498612, 0.05901218, 0.0068817376, -0.0063271383, 0.0134196915, 0.012496295, 0.0030429133, -0.02811699, 0.07004113, 0.015771907, -0.03241014, 0.00013648227, 0.016636673, 0.00031568698, -0.042523585, 0.064502545, -0.0048151836, -0.0435967, -0.015370717, 0.02787685, -0.00875522, 0.0362043, 0.0018009784, 0.06784531, -0.038501304, -0.011290631, 0.02700723, -0.0035093224, -0.056604642, -0.0073390855, 0.052159023, -0.02832061, 0.01643112, -0.0038531998, -0.01504454, 0.06953639, -0.021198155, -0.0094093755, -0.0060138647, 0.020662518, 0.009128767, -0.011629485, -0.0149214165, -0.0487977, -0.0084031075, -0.01026, 0.0062814793, -0.021032758, -0.010543183, -0.0042532063, -0.015683586, -0.044169657, 0.026032036, 0.010406365, -0.011924368, -0.019870082, 0.028224172, -0.055721134, -0.02489174, 0.018435765, -0.031097783, 0.010552207, 0.038879346, -0.049978815, 0.003026403, -0.09073323, 0.036112726, -0.036398716, 0.05483179, -0.026805919, -0.033608556, -0.028169228, 0.040416386, 0.01727276, -0.035591878, -0.011198617, 0.049676627, 0.013478968, -0.022360329, 0.006413349, -0.06653818, 0.035416268, -0.008641055, 0.06313573, 0.030575447, -0.063244395, 0.05581636, 0.017668797, 0.021952363, -0.01106333, 0.060349092, -0.018486189, 0.042482454, -0.034629654, -0.03708016, -0.043311413, -0.052934263, -0.03381016, 0.0043982374, 0.015467171, -0.0052060257, -0.013311006, -0.010395676, 0.034806527, 0.0009530943, -0.019319719, 0.034980603, -0.02297519, 0.027550487, 0.0059679626, -0.03386407, 0.053821716, 9.413815e-05, 0.023261884, 0.07573239, -0.0022193731, 0.02040205, 0.025692029, 0.0018800906, -0.049710564, 0.04676126, -0.025603864, -0.06739004, 0.039010797, -0.02401803, -0.0032493225, -0.0017319367, 0.044036303, -0.06274617, 0.0075744814, 0.0190887, -0.023653157, -0.09311406, 0.02133158, 0.0066244267, 0.021659901, 0.07010202, -0.087462194, 0.031479236, -0.04977725, 0.025658354, -0.06550577, 0.018075852, -0.049916137, -0.03684655, 0.024271654, 0.039405942, 0.009378531, 0.006355686, -0.035437886, 0.050018962, -0.0790279, 0.03830254, 0.066318594, 0.020596111, 0.045261875, 0.042639688, 0.042444497, 0.026295926, 0.036384564, -0.011679357, -0.018727055, -0.036537685, -0.028614756, 0.082593866, 0.034346443, -0.011410425, -0.039103027, 0.019195516, -0.02476538, 0.049267042, 0.00467409, -0.04956266, -0.010211117, 0.058111932, 0.01767914, -0.010763945, -0.05682245, -0.014276909, -0.020373419, -0.018931808, 0.013042238, -0.002077664, 0.010205252, 0.011613266, 0.04034919, 0.011238829, -0.033086903, -0.033696085, -0.030366829, -0.03174272, -0.0535514, 0.0026695149, 0.053831726, 0.0006265394, 0.023662226, -0.008825085, 0.051921934, -0.05806526, 0.046076808, 0.010609709, -0.020013092, 0.0054370523, 0.00034090693, -0.008087862, -0.12428213, -0.0009737984, 0.04016391, -0.018165145 ] }, { "values": [ 0.00640924, -0.052112892, -0.028254401, 0.009945137, 0.007614772, 0.010695865, 0.022127906, 0.004202808, -0.00041048418, 0.0157942, 0.018184783, 0.029097967, 0.018692767, -0.012364018, -0.040082604, -0.03330899, 0.0060742167, -0.0112174675, -0.08536281, -0.07956518, -0.0064645703, 0.030548587, 0.014634409, -0.025702981, -0.013021928, 0.046704344, 0.02908567, -0.08362177, 0.006250193, -0.029208828, 0.049057744, 0.051998556, -0.007183349, -0.016645411, 0.069491446, 0.03904984, -0.03255619, 0.015120964, 0.0121760145, -0.039887898, -0.043525364, 0.005308332, 0.011957308, -0.0024979669, -0.019561497, 0.029973088, -0.013963065, 0.032766882, -0.038833234, 0.019430932, 0.0027286587, -0.00470118, 0.010828821, -0.0068143755, 0.029833157, -0.04708796, -0.08547106, -0.043574955, 0.053966474, -0.020533316, 0.008564269, 0.018495081, -0.024980895, -0.0042360807, -0.013912845, -0.016316196, -0.041218154, -0.040123004, -0.06404591, 0.076544136, -0.04406387, 0.03019216, -0.030371113, 0.0056537753, -0.02728312, -0.019790769, -0.027948895, 0.027131043, -0.048265953, -0.023181567, -0.03534829, -0.0023698814, 0.08100013, 0.015586817, 0.05876224, 0.02628264, 0.051433217, -0.062438473, -0.055418782, 0.020132383, 0.08254999, -0.0063999244, -0.002574641, 0.005955979, 0.028820256, -0.0109636085, -0.03488159, -0.09656595, 0.004764802, 0.09261839, -0.04844916, -0.035753187, 0.016838988, -0.031063315, 0.04120376, 0.027590938, -0.004468665, -0.036206048, -0.026547067, 0.04356784, -0.028319849, -0.021477588, -0.0073977835, 0.029319009, 0.012120997, -0.05030252, 0.014013064, 0.022383118, -0.011660396, 7.400153e-05, 0.025576571, -0.024658205, -0.024730586, 0.072751224, 0.0065333163, 0.0017214444, -0.03066704, -0.015014357, -0.024748268, -0.07233523, 0.09039128, -0.10348318, 0.026889186, -0.027148861, -0.033960745, -0.034955032, 0.025412897, 0.054188564, -0.01863364, -0.015184139, -9.486647e-05, -0.020626713, 0.0033946894, 0.042772643, 0.013627137, -0.046694763, -0.019807838, 0.02983855, 0.013166995, 0.031467557, -0.08726688, 0.011731702, 0.037219476, -0.02051265, -0.07881276, 0.05426918, 0.06405195, -0.039702024, 0.041302826, -0.035267208, 0.047975216, -0.036053017, -0.019011782, -0.00059940753, -0.08593786, -0.032658003, 0.0006578835, -0.06661524, -0.04695101, -0.040973667, 0.017049277, -0.006997798, -0.008396472, -0.06925629, 0.022866378, -0.014404043, -0.0025120622, 0.043725625, 0.0013927163, -0.019531015, 0.02116438, 0.02950421, 0.018463282, 0.0026481012, -0.024289519, -0.023960542, -0.008824544, 0.05804461, 0.008088468, 0.027877301, -0.018929519, -0.017026938, -0.024722526, 0.07647514, 0.021092642, 0.037986986, 0.0383716, -0.008204833, -5.9198363e-05, -0.027908804, 0.06529078, -0.018283354, -0.021351835, 0.040738206, -0.02652356, -0.017888254, -0.04314814, 0.0016972072, 0.030799434, 0.0032760408, -0.040138323, -0.009122107, 0.023456492, -0.055916835, -0.029892277, 0.0075290576, 0.07881501, 0.06596103, -0.001077027, -0.049299963, 0.0012879275, 0.0033066089, 0.0007816481, -0.0016941935, 0.027343472, -0.05183449, -0.034040783, -0.07038976, -0.022821935, -0.005235316, -0.0522455, 0.044961747, -0.01001886, 0.0051354673, -0.012935977, 0.006734367, 0.019576397, 0.024494344, -0.002068599, -0.024244983, 0.015529861, 0.0388231, 0.019481406, -0.02520774, 0.0062058168, 0.062655, 0.0700221, 0.080003366, -0.0301131, -0.027998887, 0.0009921325, -0.01947955, -0.060586695, 0.009225514, -0.07331611, -0.0024757592, 0.038076006, -0.049877796, -0.012044281, -0.048432127, 0.02383301, 0.0033821068, -0.026356239, -0.030883854, -0.0205083, -0.039892677, -0.014591238, -0.034173995, 0.05559634, 0.0083146095, 0.018801268, 0.0032989045, -0.056983113, -0.05901102, 0.045563444, 0.009625244, -0.017290132, 0.020245764, -0.05081462, -0.02074546, 0.05640386, -0.015097902, -0.047038298, -0.039692584, -0.0026575057, -0.052322056, -0.0017286564, 0.026277699, -0.046093933, -0.04846445, 0.05442093, 0.037094582, 0.012501464, -0.016456883, 0.010824829, -0.0026884668, 0.0049647177, -0.025753573, 0.0028284132, 0.013151377, 0.03607709, 0.07565526, -0.015176788, -0.0023912217, -0.024920598, 0.03780418, -0.028478013, -0.034942325, -0.008649171, 0.014308693, 0.009492497, 0.06952155, -0.045034714, -0.0515591, 0.018094843, 0.010717349, -0.11928643, -0.0028103038, -0.008595196, -0.021337021, 0.004268138, 0.023131587, -0.025466511, -0.026067981, 0.059500765, -0.027358508, -0.008945658, -0.012203275, -0.011497071, 0.012311487, -0.019210458, 0.026884183, 0.026677873, -0.0053710993, -0.013088562, -0.026272994, -0.015298414, -0.021966206, 0.034256764, -0.029467046, 0.023960179, 0.0045921616, 0.033598337, 0.01954216, -0.010166081, -0.06415227, -0.008689178, -0.042128794, 0.032851655, -0.08125718, -0.07208828, 0.05517322, 0.037601482, -0.0117553845, 0.04720724, 0.03269109, 0.03148362, 0.029756455, 0.025876414, 0.002717989, -0.012216839, 0.03268337, 0.03352313, 0.016097512, 0.017414939, -0.04204727, 0.027471382, 0.013186451, -0.013895525, -0.062066197, 0.029144531, 0.04610264, 0.016902013, 0.028002027, -0.016079836, -0.060219895, -0.011052389, 0.015020771, 0.01135328, -0.057600323, -0.04309447, -0.035253923, 0.021998653, -0.026179327, -0.025462598, 0.02165275, -0.04167729, -0.014135365, 0.030842828, 0.03276, -0.0016589965, 0.07122529, -0.019446826, -0.038081486, -0.016666835, 0.021618359, 0.001484876, 0.03415357, 0.021357661, -0.0032334654, -0.012264735, -0.014322086, 0.06670082, -0.01642195, 0.046329375, 0.03581232, 0.067563824, -0.023357159, 0.029687053, -0.006060139, 0.04224521, 0.034534764, 0.02927219, 0.009238733, -0.022896351, -1.546928e-05, 0.029070564, -0.013248833, 0.0066848467, 0.015258442, 0.011737008, 0.0319291, 0.014281565, 0.02719672, -0.007934162, -0.075684465, 0.017805442, 0.004261197, 0.035698872, -0.015957886, 0.01082224, 0.028455626, -0.05345998, 0.056942556, -0.06621801, -0.02053674, 0.0051892824, 0.0012702357, -0.022396546, -0.0042644986, 0.015864372, 0.02282346, 0.040417228, 0.01343634, 0.009988237, 0.038809005, 0.037653998, -0.028667556, -0.023815129, -0.0494159, 0.00087597367, 0.023374312, -0.026331896, -0.0634533, -0.019731963, -0.025888424, 0.029652622, 0.023171889, -0.056951307, 0.01669737, -0.044236224, -0.030271022, 0.054134116, 0.04510189, 0.03448478, -0.058162533, -0.042559948, 0.012707121, 0.005388786, 0.059103634, 0.008898003, -0.010165228, 0.02995937, 0.000187745, 0.021113394, 0.057635576, -0.0015330138, -0.004250729, 0.031032922, -0.005155793, -0.022298088, 0.061522357, 0.029935284, 0.037854884, 0.03343411, -0.06763836, -0.0295361, 0.019010853, 0.03266563, -0.01587451, 0.01025698, 0.08204083, -0.018254036, 0.023639083, -0.031681165, -0.02880711, 0.0479003, -0.012875604, 0.021727722, -0.019178139, 0.07276867, -0.03348793, -0.018283661, -0.045252014, 0.010725177, 0.0066818744, -0.01209288, -0.012210852, 0.028617129, -0.00595981, -0.0043644365, -0.004616169, 0.037538286, 0.0019385513, -0.076686725, 0.07104888, -0.088381454, -0.004270328, -0.0061097415, 0.060005575, -0.012386779, -0.022723112, 0.047641683, -0.084500246, -0.07727096, -0.01461249, -0.014467618, 0.03521945, 0.017992536, -0.02004492, -0.028673135, 0.021567008, 0.02256556, 0.02904682, 0.013385503, 0.017545965, 0.020475402, 0.0035891964, -0.035912592, 0.044169117, 0.0067002918, 0.027314978, 0.06766445, -0.0023862137, 0.04905569, 0.016096681, 0.0031450146, -0.053718254, -0.013953355, 0.05550815, -0.035647325, -0.030732907, 0.0153806545, -0.0058048815, -0.022655642, -0.04459576, -0.0406426, -0.03430916, -0.05514422, 0.04254217, 0.031281605, 0.0039083245, 0.0011811021, 0.028353145, -0.012341808, 0.01750601, -0.009541883, 0.08666513, -0.004098729, -0.022026224, -0.0023543972, -0.0038212808, -0.012109537, -0.046928152, 0.045971032, 0.020196306, -0.03514602, -0.021706143, 0.021826264, -0.007883949, 0.045988448, 0.029505648, 0.09248125, -0.041958757, -0.019460347, 0.03996389, -0.029065596, -0.055867285, -0.020363638, 0.043492366, -0.013420101, 0.049250502, 0.00096256944, -0.017239189, 0.06598754, 0.0150081925, 0.0013181969, -0.040385842, -0.010859153, 0.013383075, -0.005804905, -0.024539739, -0.05024977, 0.004718194, 0.0007968209, 0.013127058, -0.014997681, -0.008407137, 0.036519427, -0.025397727, -0.028536763, 0.032104313, 0.02645629, -0.019575784, -0.04708602, 0.02108531, -0.047272425, -0.03777951, 0.03744761, -0.05720934, 0.030074708, 0.045113202, -0.054382462, -0.0010056957, -0.083861984, 0.01256594, -0.021887625, 0.03887522, -0.034315784, -0.020608407, -0.021367664, 0.007434155, 0.037520237, -0.036773276, -0.012574189, 0.059679903, 0.0032157719, -0.01083851, 0.032415885, -0.04869617, 0.02017423, 0.020601358, 0.03254634, 0.03491776, -0.05902482, 0.05694467, 0.04799707, 0.031138655, -0.015743362, 0.032178756, -0.033742998, -0.012779944, -0.015451082, -0.03875781, -0.05247668, -0.051843558, -0.01192703, -0.010706005, 0.020705467, -0.012598994, -0.020750135, -0.018166933, 0.027925856, 0.0151942605, 0.0024791015, 0.006649691, -0.027165782, 0.036944333, -0.0051687905, -0.061295062, 0.034612842, -0.00032425552, 0.031928506, 0.085471995, -0.03288337, 0.023953503, 0.021954028, -0.012572895, -0.03294092, 0.030712198, -0.0035289202, -0.049759086, 0.031573467, -0.0030304804, 0.0028735236, 0.0031312304, 0.030062102, -0.06629362, 0.0054451693, 0.00049550063, 0.0006103159, -0.07921595, -0.00634114, -0.0025711574, 0.014618274, 0.07995241, -0.0696507, 0.03613011, -0.078992315, 0.009890211, -0.043885298, 0.012164496, -0.06544267, 4.966127e-05, 0.013470066, 0.04057643, 0.008564892, 0.022507783, -0.048856564, 0.04383752, -0.06665257, 0.010503748, 0.07476167, 0.0021754315, 0.050622594, 0.04024322, 0.050238717, 0.020131076, 0.059362132, 0.038657594, -0.022857286, -0.035188593, -0.024472887, 0.06981992, 0.029858354, -0.008622643, -0.06258789, 0.0137532, -0.03628323, 0.055975154, -0.009298407, -0.045718066, -0.011539908, 0.04522625, 0.006000406, 0.011438954, -0.068988495, 0.0004511401, -0.009500104, -0.013945474, 0.013966206, -0.003623492, 0.0112756025, 0.03950272, 0.04357005, 0.0022852845, -0.030540893, -0.035159994, -0.023931563, -0.021429647, -0.07296938, 0.037795573, 0.044288833, 0.009409572, 0.018924149, -0.0103519345, 0.033746723, -0.038128197, 0.035218254, 0.0034790167, -0.020791389, 0.024985664, -0.0060114786, 0.006533519, -0.08569807, 0.022962905, 0.047802284, -0.019033488 ] }, { "values": [ 0.009400652, -0.061687868, -0.023622489, 0.010183495, 0.0055483435, 0.022061793, 0.0031648278, 0.010042603, 0.018260712, 0.024053968, 0.016311528, 0.02642689, 0.009526532, -0.0007210465, -0.02516784, -0.036466077, 0.018370507, -0.012865699, -0.08736421, -0.06854853, 0.0297774, 0.02956391, 0.010338883, 0.00039431974, -0.009669846, 0.024128212, 0.046043403, -0.06049397, 0.004003194, -0.036525194, 0.04418504, 0.039901696, -0.007079992, -0.016383063, 0.03633902, 0.048382938, -0.0732919, 0.0010105304, 0.028391553, -0.054007083, -0.05221189, 0.012480412, 0.016822588, 0.003558778, -0.032274075, 0.03574645, -0.005416138, 0.038931344, -0.039726056, 0.0011426598, -0.0069885263, -0.028339917, 0.02877622, 0.0045972746, 0.011598244, -0.059435762, -0.08980046, 0.0011709082, 0.050292093, -0.010909496, 0.010250715, 0.035981692, -0.029653478, -0.009762435, -0.015174687, -0.030935055, -0.04060434, -0.018827464, -0.028405907, 0.08530865, -0.046461098, 0.020537484, -0.032039925, 0.028084274, -0.021891426, -0.019045867, -0.012830377, -0.0065295086, -0.045760967, 0.013539122, 0.006968195, 0.0030671326, 0.05970758, 0.02691314, 0.046951286, 0.0043447427, 0.063205436, -0.07120055, -0.061899997, 0.02073273, 0.07302159, 0.0028081383, -0.026516218, -0.0013697377, 0.008809952, 0.0023843923, -0.03511776, -0.09090331, 0.02720617, 0.05318281, -0.04945848, -0.050742026, 0.018769575, -0.02783359, 0.024247553, 0.02240004, -0.0121098785, -0.030405074, -0.04374196, 0.0016280279, -0.027007215, -0.02339399, -0.011263015, 0.038206436, -0.012187344, -0.053714722, -0.0029998212, 0.028731417, -0.01759456, 0.0021364372, 0.005630675, -0.014504716, -0.018794995, 0.081954055, 0.019966668, 0.0031137455, -0.030555276, 0.0036014034, -0.034791905, -0.043489676, 0.107216746, -0.085830584, 0.040445346, -0.024402972, -0.02415663, -0.029456992, 0.05516087, 0.03957542, -0.021460423, -0.017094726, -0.0050256625, -0.012712234, -0.03187713, 0.057543453, 0.00700169, -0.042570613, -0.030209182, 0.032937195, 0.02796389, 0.049492452, -0.07305413, -0.0069371853, 0.024976103, -0.015778068, -0.07623452, 0.08675921, 0.035789758, -0.038989805, 0.043255102, -0.050913803, 0.04689416, -0.025008408, -0.032687087, -0.0044996454, -0.07120955, -0.022772862, -0.0029857836, -0.07209003, -0.05714071, -0.04491341, -0.0040597366, -0.010898968, -0.036136825, -0.057763208, -0.0024307522, -0.020589499, 0.011706103, 0.022343602, -0.028951526, -0.01193135, 0.024622442, 0.060647037, 0.007335988, -0.024015186, -0.019230602, -0.033262786, 0.0005860539, 0.06215428, 0.0067325425, 0.03260269, -0.026376134, -0.007978256, -0.018284973, 0.080737665, 0.025948744, 0.051355682, 0.015256121, -0.0021495835, -0.030486092, -0.017941892, 0.04791332, -0.0066412017, -0.030947538, 0.055860013, -0.036419686, 0.0043541193, -0.036217358, -0.0074600955, 0.01984392, -0.015383747, -0.03197467, -0.004923914, 0.030490246, -0.084949866, -0.017135752, 0.0067882016, 0.08067415, 0.054034725, 0.01714234, -0.046511956, -0.027508365, -0.016386518, 0.0054934556, 0.009780321, 0.03829104, -0.033715658, -0.009872294, -0.055832684, -0.023753608, -0.00776179, -0.015067593, 0.05160073, -0.01198137, 0.012037536, -0.008098946, 0.017541902, 0.03321996, 0.03577051, -0.012259485, 0.0020537009, 0.018595107, 0.043785036, 0.0075974367, -0.018192643, -0.015765944, 0.08280732, 0.07131959, 0.08242351, -0.015024301, -0.05354589, -0.020202953, -0.025131391, -0.073810555, -0.0002751888, -0.07721765, 0.0056343586, 0.04075296, -0.030914318, 0.009574109, -0.027803386, 0.04299169, -0.001510065, -0.019806616, -0.026109701, -0.008223939, -0.03304304, -0.01095106, -0.04008628, 0.048533835, -0.00847369, 0.0116633065, -0.004758866, -0.072053865, -0.0459895, 0.034286402, 0.03366311, -0.033619683, -0.008844245, -0.039477132, -0.0242121, 0.062218003, 0.0002737229, -0.032293793, -0.03165204, -0.0011607878, -0.039460436, -0.014745368, 0.032877192, -0.036943167, -0.043511175, 0.044706333, 0.038225032, 0.009450364, -0.032985132, 0.00784858, 0.018592054, 0.006144471, -0.037877247, -0.0331365, 0.020485926, 0.03111992, 0.08231906, -0.015153376, -0.0042804787, -0.011355394, 0.018169312, -0.024071766, -0.027107025, 0.0052881995, -0.0024562944, 0.009569991, 0.05392019, -0.05317181, -0.037433125, 0.0066650184, -0.002690924, -0.117016196, -0.012255859, -0.026199, 0.012181721, 0.01266857, 0.010804151, -0.004836859, -0.021613212, 0.06431372, -0.023471551, -0.008138208, -0.017099554, -0.0040877424, 0.011257973, -0.012740239, 0.03781512, 0.036439802, 0.002332256, 0.00037302196, -0.018913275, -0.017781198, -0.028686598, 0.04992781, -0.020177983, 0.025284834, -0.00095048576, 0.03524787, 0.050038014, -0.0049558803, -0.06300176, 0.005202939, -0.04022183, 0.02584538, -0.0890222, -0.07588168, 0.05556593, 0.041511457, -0.02184057, 0.0452956, 0.019802582, 0.016822087, 0.0047875037, 0.008027834, 0.007569707, 0.010322931, 0.025785781, 0.023752725, 0.018495101, 0.028784698, -0.027589869, 0.022381272, 0.022448128, 0.0049050907, -0.067172684, 0.037558127, 0.023781855, 0.012184, 0.039647, -0.01675573, -0.034498688, -0.0117433, 0.017294265, 0.009549418, -0.067121826, -0.02745265, -0.041065544, 0.021411378, -0.026746968, -0.0366815, 0.017519115, -0.026440179, -0.00019306768, 0.039242387, 0.03215307, -0.012509344, 0.07323901, -0.007890423, -0.018868998, -0.03556352, 0.02529854, -0.008776709, 0.016435308, 0.015761826, 0.007377323, -0.019873666, -0.027333733, 0.06641761, -0.028100414, 0.035258573, 0.029798862, 0.0682517, -0.03557557, 0.020387337, -0.026572144, 0.03680152, 0.035141945, 0.011051665, -0.0031552908, -0.04654403, -0.0068491255, 0.048545543, -0.01582205, 0.006447954, -0.00695138, 0.022764683, 0.04748406, 0.016076729, 0.0035932856, -0.018716602, -0.058279052, -0.005879641, 0.0043353518, 0.0529249, -0.0010508734, 0.0058200574, 0.02200882, -0.044225715, 0.068134725, -0.049664557, -0.013534128, 0.007298835, 0.014752056, -0.021269247, 0.008252528, 0.023649387, 0.023090003, 0.0033837494, 0.016475162, 0.013829425, 0.031008305, 0.025671925, -0.017230665, -0.02538327, -0.04753988, -0.015414646, -0.0042659063, -0.017866157, -0.039789267, -0.03262999, -0.029142566, 0.024144186, 0.023446633, -0.062469956, 0.02961113, -0.06607994, -0.021632519, 0.06306135, 0.05349836, 0.026842317, -0.051436268, -0.057460845, 0.02574632, 0.00805124, 0.080786616, -0.004944233, -0.007868507, 0.04964696, -0.013047853, 0.009433976, 0.07103155, -0.0015415793, 0.029805345, 0.035469573, -0.009273779, -0.014766265, 0.04573911, 0.037105817, 0.044145156, 0.047718804, -0.06527282, -0.007819138, 0.03612323, 0.03490604, -0.007041453, 0.042816628, 0.0894091, -0.0067565036, 0.021992004, -0.03571725, -0.038530435, 0.022983408, -0.021830102, 0.023026891, -0.004743552, 0.06567683, -0.055691022, -0.003961461, -0.06679406, 0.03160354, 0.0055738688, -0.03808645, -0.021627288, 0.0008526132, -0.0068369503, 0.018006401, 0.005862312, 0.0390547, 0.012224352, -0.06743168, 0.05337215, -0.0987626, -0.027484262, 0.020390803, 0.049903203, 0.01771508, -0.004444675, 0.047110952, -0.06890198, -0.08465616, -0.03638034, -0.002154468, 0.057271406, 0.032831986, -0.0096164355, -0.02212489, 0.016450197, 0.018652929, 0.03567292, 0.016621068, -0.0041295956, 0.020830313, 0.013114239, -0.04104944, 0.01638964, 0.017450055, 0.04306277, 0.05468233, -0.015128698, 0.046890546, 0.010434672, -0.009452814, -0.03669568, -0.020362692, 0.043849763, -0.020479137, -0.040595416, 0.022323035, -0.0071854037, -0.008556829, -0.046074864, -0.045351855, -0.04401868, -0.06898603, 0.03734447, 0.033782728, 0.001087627, 0.013590269, -0.0030027153, -0.002345917, -0.0059706233, -0.017293157, 0.0718428, -0.0055226544, -0.036212936, 0.0012050003, 0.00926804, -0.030338988, -0.036166206, 0.045452807, 0.0017802254, -0.031443574, -0.037582416, 0.019930054, -0.009456329, 0.03629605, 0.008517981, 0.09529562, -0.047372304, -0.03348189, 0.04664665, -0.017648393, -0.05079403, -0.027938168, 0.037313838, 0.00028635285, 0.04376774, -0.01998912, -0.0036566146, 0.06986218, 0.0030026194, 0.007194796, -0.025750218, -0.0005279282, 0.01249661, 0.006705071, 0.0017662991, -0.024120415, 0.007511549, -0.004355638, -0.0043714647, -0.0069547035, -0.01125601, 0.035488535, -0.031818375, -0.0191344, 0.036373377, 0.018516356, -0.007917051, -0.04557139, 0.014481736, -0.037034143, -0.03301638, 0.046852328, -0.03602851, 0.018592628, 0.036171738, -0.051376678, -0.0024081208, -0.08145349, 0.029481309, -0.046608295, 0.04929535, -0.026457448, -0.016614428, -0.01649274, 0.018519202, 0.022287697, -0.04603003, -0.0013437055, 0.0481285, 0.009682627, -0.01119402, 0.023045698, -0.057141814, 0.042273603, 0.0023167455, 0.016950717, 0.021423012, -0.06589307, 0.06806277, 0.022873992, 0.02637982, -0.015146544, 0.052671663, -0.004429974, 0.01921229, -0.027253198, -0.0381637, -0.05276541, -0.056322217, -0.0038525444, -0.006693698, 0.036122493, -0.0038740442, -0.026914224, -0.026135242, 0.01826981, 0.004356681, -0.004634813, 0.008502043, -0.018170225, 0.021255884, -0.0035209423, -0.0439668, 0.055754945, 0.00045401204, 0.027332693, 0.08355517, -0.021865398, 0.0112204915, 0.035311718, -0.0102770645, -0.03959439, 0.030694945, -0.0013354515, -0.05671881, 0.024426704, -0.029891778, 0.0040418096, -0.0046285084, 0.033319168, -0.07571627, 0.010096167, -0.004810447, -0.014147396, -0.09989182, 0.03444502, 0.0005610738, 0.014217606, 0.06954666, -0.063527085, 0.002616081, -0.053672813, 0.034961544, -0.045668818, -0.018796392, -0.05905608, -0.018393721, 0.011673122, 0.04964873, 0.028064452, 0.035520706, -0.055608906, 0.03427838, -0.067549616, 0.03594452, 0.08276314, 0.011625761, 0.05339627, 0.041262984, 0.03163746, 0.011490441, 0.04566534, 0.025110314, -0.025352193, -0.033556085, -0.026391089, 0.08187326, 0.017509326, -0.043460503, -0.048811056, 0.014759271, -0.035157103, 0.05348677, 0.009155315, -0.046126153, 0.0054222234, 0.033005126, 0.014015619, 0.004820588, -0.03774755, 0.010078714, -0.0072424, -0.0007320165, 0.0026616103, 0.008303408, 0.0052208765, 0.020727731, 0.03997882, 0.020305578, -0.023788845, -0.0056931125, -0.019662946, -0.03718239, -0.08013053, 0.036531076, 0.033042636, -0.0041755214, 0.03044264, -0.013520226, 0.044833954, -0.055783626, 0.04087389, 0.011809398, -0.026310371, 0.022618512, -0.0127334725, 0.0102721285, -0.11099911, 0.02125338, 0.04285578, -0.032689035 ] }, { "values": [ 0.0052696653, -0.051649548, -0.036420297, -0.016841162, 0.008569851, 0.018988846, -0.0014037702, 0.011169388, 0.0133106345, 0.04467326, 0.020085521, 0.020141812, -0.0048315255, 0.00838887, -0.024906453, -0.05006004, 0.0036274649, -0.017739201, -0.07723356, -0.08230277, 0.004355083, 0.028389249, 0.014308745, -0.012239171, -0.030758535, 0.040777538, 0.056245368, -0.047251824, 0.008279174, -0.028436858, 0.046510458, 0.043545917, -0.012409506, -0.028349444, 0.06751867, 0.035311062, -0.056665875, 0.014075176, 0.021906242, -0.045751207, -0.051219966, 0.027347518, 0.023497855, -0.0028477944, -0.035631824, 0.024341442, 0.0056511927, 0.013848563, -0.07421505, 0.031996798, -0.028012725, -0.008870408, 0.015374855, 0.0056989784, -0.002479611, -0.044461783, -0.06006765, -0.01607429, 0.07170359, -0.038597893, 0.015113212, 0.008539908, -0.0031352923, -0.010289942, -0.0039246986, -0.024587741, -0.050930038, -0.019478783, -0.030827865, 0.064090885, -0.052510843, 0.028639155, -0.026582072, -0.0070790383, -0.024660276, 0.00014859023, -0.011536675, 0.018388232, -0.034966893, -0.011908217, -0.0018535546, -0.011981803, 0.09338847, 0.01406665, 0.047271248, 0.0034790915, 0.038249675, -0.056430165, -0.04068089, 0.03425501, 0.06334661, -0.013856912, -0.010294322, 0.017542738, 0.0132083865, 0.02145121, -0.04853055, -0.08706574, 0.026685646, 0.06482639, -0.041016456, -0.020505764, 0.0084246425, -0.030795777, 0.029212158, -0.012188872, 0.007512451, -0.045735277, -0.0651661, 0.009076296, -0.012275223, -0.027237622, -0.035782363, 0.020951258, 0.0071010813, -0.042244583, -0.010561357, 0.03833659, -0.0062952754, 0.010699175, 0.030590838, -0.028641269, -0.0032512555, 0.07029088, 0.016892951, 0.014618647, -0.005461629, 0.004066304, -0.04447763, -0.05209331, 0.09635534, -0.08534679, 0.028215751, -0.012464626, -0.027598185, -0.042355046, 0.010562435, 0.029020794, -0.01767088, 0.0070005627, 0.014112379, -0.00048913085, -0.004389115, 0.030867737, 0.0062971907, -0.047237407, -0.011357454, 0.037944056, 0.028472535, 0.044139776, -0.11379887, -0.019375, 0.04837057, -0.027689364, -0.0728787, 0.04089949, 0.057607017, -0.02669762, 0.05721976, -0.0443895, 0.034125756, -0.03618126, -0.026198462, -0.0061340476, -0.09015767, -0.020900343, 0.009593686, -0.09551116, -0.035443015, -0.03737527, 0.011572892, 0.0073835216, -0.004888644, -0.084871486, 0.027261129, -0.030097893, 0.005271543, 0.049563196, 0.006242492, -0.025857246, 0.036674686, 0.03631648, 0.03246896, -0.016827445, -0.024498416, -0.028731765, -0.01442675, 0.07278285, 0.009425264, 0.03312022, -0.032213982, -0.022363776, -0.0007373308, 0.06352178, 0.016067995, 0.056272473, 0.023008889, -0.011130543, -0.0144653795, -0.040451385, 0.06093405, -0.023103816, -0.0069027403, 0.046580676, -0.039016157, -0.014334298, -0.065994725, -0.012878704, 0.020270968, 0.011636062, -0.029072868, -0.014898681, 0.024115117, -0.08965564, -0.011088409, -0.013675326, 0.07166004, 0.08314282, -0.0045573534, -0.06175385, -0.018271334, 0.008109582, -3.6585174e-05, 0.009821459, 0.029450184, -0.018168036, -0.0008919835, -0.051140036, -0.026158262, 0.005240885, -0.034162737, 0.031609535, -0.00443444, 0.015986033, -0.01248001, 0.031747337, 0.016410153, 0.051961854, 0.007703816, -0.01124069, 0.026392482, 0.04549848, 0.007193956, -0.018060409, -0.0016281863, 0.0506519, 0.057840884, 0.10620801, -0.028766017, -0.035288382, -0.02819022, -0.013319176, -0.057863194, 0.002891177, -0.062414855, -0.007462144, 0.042908404, -0.037224278, -0.0079590995, -0.036143985, 0.01677877, -0.0071367826, -0.02224555, -0.027008666, -0.02077935, -0.058111902, -0.008116808, -0.043963466, 0.04324457, 0.00024884712, 0.02357179, -0.017666778, -0.06815477, -0.066632695, 0.04962582, 0.016044399, -0.03746264, 0.014799493, -0.03531402, -0.016806377, 0.059656408, 0.0057334425, -0.02961534, -0.023682702, 0.009231564, -0.04825349, -0.01870249, -0.0074177166, -0.041438434, -0.06407066, 0.051935583, 0.04591733, 0.02893872, -0.009277814, 0.02423664, -0.004086075, 0.01115586, -0.03731927, 0.0011457506, 0.0148582235, 0.023404472, 0.09022049, -0.038455956, 0.012598269, -0.04657876, 0.02050656, -0.014985241, -0.0131610315, -0.007315475, 0.008702473, 0.019351728, 0.0589572, -0.053514384, -0.035997003, 0.0038306352, 0.0042868587, -0.10668345, -0.007477757, -0.028769463, 0.0026794572, 0.03132363, 0.027013352, -0.021179816, -0.014047935, 0.07277639, -0.02157552, -0.022392856, -0.008424606, -0.009429254, -0.003265732, 0.00020376433, 0.031602014, 0.022457901, -0.02347382, -0.0068713217, -0.022195464, -0.024610613, -0.032031626, 0.051992256, -0.019193722, 0.02354535, 0.023172691, 0.021541525, 0.03393233, -0.02702494, -0.06421741, -0.019414831, -0.009797744, 0.047718883, -0.06186569, -0.06466675, 0.03226988, 0.034561697, -0.005199136, 0.080045484, 0.02479618, 0.017522, 0.021010423, 0.029583853, -0.0086141685, -0.0031631014, 0.036393162, 0.01762389, 0.011933042, 0.005618006, -0.031560678, 0.02793806, 0.0006402064, 0.0038181192, -0.087746896, 0.03195599, 0.024113726, 0.013738118, 0.021831496, -0.0150742745, -0.052096646, -0.008694157, 0.022701485, -0.0003736481, -0.04732002, -0.045913327, -0.049862836, 0.019436412, -0.01540183, -0.041268133, 0.035255194, -0.02597703, -0.0035315587, 0.024772167, 0.0023629775, -0.003713383, 0.06743207, 0.00041864178, -0.037960853, -0.01761474, 0.017679531, -0.004085086, 0.0049350196, 0.010980076, 0.0010982883, -0.006587474, -0.01907896, 0.054191552, -0.03250746, 0.03382962, 0.022632042, 0.06677104, -0.049850013, 0.023108125, -0.010416489, 0.0380089, 0.0320666, 0.027886285, 0.00084245746, -0.024155645, 0.00089456094, 0.044210266, -0.01571082, -0.009849293, 0.0025386019, 0.015466021, 0.040645372, 0.016471619, 0.041748516, 0.0077631217, -0.05166722, 0.010782555, -0.0019700646, 0.06508109, 0.014048343, 0.021431983, 0.039059125, -0.052813664, 0.05663443, -0.016906353, -0.0054105325, 0.02896338, 0.014201214, -0.018752905, 0.012694435, 0.023442268, 0.024239974, 0.026602596, 0.00875379, -0.00757927, 0.05017088, 0.025968814, -0.046305593, -0.019751059, -0.04282165, 0.0017800996, -0.0025254544, -0.020442095, -0.049411505, -0.0009303233, -0.0061419914, 0.031152923, 0.03587256, -0.07086592, 0.013437915, -0.05144854, -0.033143196, 0.05399077, 0.046896193, 0.04172258, -0.06552058, -0.042350415, 0.027947228, 0.0213255, 0.0842103, -0.00039806808, -0.019086862, 0.021166714, -0.009149708, 0.0049417117, 0.06825959, 0.018984688, 0.0077525997, 0.02360667, -0.0014151831, -0.009669751, 0.048315667, 0.023411842, 0.047752503, 0.045059334, -0.08182201, -0.020725178, 0.024943743, 0.025658567, -0.01606411, 0.015925558, 0.08261584, 0.0022959292, 0.0034328466, -0.03788917, -0.04530712, 0.032634977, -0.032327443, 0.002218863, -0.03129943, 0.07950151, -0.023105945, -0.0038931125, -0.050195925, 0.036815647, 0.0011339925, -0.016693654, -0.025991486, 0.004440759, 0.007232109, -0.01615372, 0.006566139, 0.05257966, 0.0013947898, -0.06745303, 0.07434315, -0.100855656, -0.008445155, 0.0019817934, 0.04630955, -0.016494779, -0.010565377, 0.045863498, -0.078246795, -0.07750037, -0.021962639, -0.010612054, 0.061472066, 0.029503193, -0.00075634953, -0.015742017, 0.037929773, 0.031398892, 0.016122436, 0.017132793, 0.008823785, 0.020226462, 0.006799503, -0.028765641, 0.035972342, 0.020099023, 0.0048712417, 0.072468765, -0.0066011744, 0.045613736, 0.028113976, -0.01281596, -0.015865853, -0.008751286, 0.061021417, -0.00040615298, -0.046816487, 0.017632416, -0.015101992, -0.009874252, -0.03602011, -0.060555074, -0.053330846, -0.0509195, 0.044248637, 0.02915141, 0.0028453083, 0.0072206454, -0.003185849, -0.026007673, -0.0050916285, -0.032106336, 0.072983176, -0.011018936, -0.030541424, 0.00031794625, -0.009147526, -0.040602114, -0.051206764, 0.029605057, 0.021627437, -0.049978074, -0.012660509, 0.0215145, -0.007447477, 0.037321113, 0.036438175, 0.076792434, -0.0461589, -0.017056862, 0.029677402, -0.0040320256, -0.05100335, -0.018948402, 0.030215733, -0.0020449888, 0.019368295, -0.016670575, -0.0063165003, 0.056928743, 0.010224052, 0.008029374, -0.049557105, -0.00580328, -0.0012077369, -0.006644438, -0.014210707, -0.02413921, -0.013814571, 0.003036442, 0.0052650627, -0.008698808, -0.010345417, 0.04400727, -0.036044866, -0.023866503, 0.03056099, 0.038463026, -0.032908224, -0.041991882, 0.021068797, -0.03981445, -0.033118404, 0.059799977, -0.024740264, 0.031204171, 0.058579415, -0.039826185, 0.018348405, -0.08102982, 0.0057742093, -0.03970468, 0.05724975, -0.02608041, -0.011057468, -0.04240867, 0.008819741, 0.04211792, -0.051767554, 0.021040013, 0.03763345, -0.00022456211, -0.03484022, 0.007261709, -0.05476777, 0.04077089, 0.0049627163, 0.017443638, 0.050670695, -0.05572506, 0.059684068, 0.020524656, 0.027892992, -0.026560863, 0.042262953, -0.002379301, 0.0034703317, -0.02010183, -0.037868366, -0.048030436, -0.056717705, -0.038183115, -0.009808421, 0.012697573, -0.0060468125, -0.031127438, -0.021236017, 0.028275266, 0.0465415, 0.008828031, -0.0062694824, -0.0496909, 0.040065683, 0.006278284, -0.06075717, 0.030828059, 0.015805982, 0.021337952, 0.08038724, -0.034134537, 0.020534351, 0.019371917, -0.036257852, -0.05627827, 0.030625314, 0.0037302366, -0.049387284, 0.042194217, -0.005655969, 0.024984488, -0.019243907, 0.021488363, -0.07046043, -0.00023176408, 0.015739677, 0.0148901725, -0.073110364, 0.028542269, 0.011062959, 0.018296698, 0.08620425, -0.068343505, 0.01060609, -0.052335173, 0.014183467, -0.05477537, -0.018847262, -0.04669892, -0.0018528185, 0.00974519, 0.03360791, -0.0035695797, 0.012119507, -0.056518797, 0.03385911, -0.057378795, 0.02728403, 0.0614786, 0.013046548, 0.037295222, 0.008985923, 0.03363063, 0.031885397, 0.036177367, 0.034518342, -0.009477747, -0.002856161, -0.023537494, 0.07703504, 0.012011048, -0.017320668, -0.0632209, 0.013946728, -0.032508958, 0.037606787, -0.012075933, -0.020180944, 0.0070394306, 0.03504209, 0.014956369, 0.021440184, -0.05871844, 0.008260036, -0.014000315, 0.004639703, 0.018835252, 0.010817648, 0.01595495, 0.030302593, 0.04846249, 0.022741713, -0.036301356, -0.009425433, -0.010904469, -0.019012509, -0.070495985, 0.047420178, 0.040877357, -0.010916096, 0.04877277, -0.020146918, 0.018123439, -0.03953457, 0.019812403, 0.008139523, -0.007157171, 0.017261004, -0.010363616, 0.020619635, -0.113320574, 0.024635715, 0.040664822, -0.040995706 ] }, { "values": [ -0.006615709, -0.04946765, -0.04771463, -0.017383123, -0.004014921, 0.036341302, -0.0086554345, 0.02900608, 0.003519744, 0.029185353, 0.015716968, 0.011611839, 0.01443358, 0.020563709, -0.0038088583, -0.078860305, -0.029183688, -0.019640101, -0.07974442, -0.08616579, 0.012412043, 0.040918563, -0.0036078424, -0.020875173, -0.031819593, 0.015024452, 0.025130024, -0.060081754, 0.01851972, -0.007885391, 0.07104024, 0.033416152, 0.017163457, -0.023996962, 0.030142827, 0.045596886, -0.055313952, 0.024429252, 0.03134698, -0.05312991, -0.041760776, -0.008037867, 0.02837912, 0.020600691, -0.029481715, 0.02654222, 0.0011906388, 0.017093044, -0.053792913, 0.024746707, -0.025255224, 0.00024036878, 0.0055484055, -0.019539833, -0.027782766, -0.05828169, -0.05229713, -0.009128065, 0.063254416, -0.009237184, 0.0077204006, 0.013574927, -0.013121251, 0.0044873846, -0.0032326798, -0.0018766299, -0.060293622, -0.018587638, -0.028799687, 0.066499725, -0.07684731, 0.03932944, -0.03177409, -0.0006601683, -0.029840158, -0.0030954892, 0.004362653, 0.0108631, -0.037181295, -0.0023767946, -0.008527906, 0.0056950124, 0.080545165, 0.015476166, 0.045082852, 0.015521041, 0.050523832, -0.028902752, -0.06893381, 0.010526813, 0.06441116, -0.01852198, -0.01275635, -0.015258402, 0.023493556, 0.029817494, -0.018619215, -0.09802386, 0.011734522, 0.046083223, -0.06934285, -0.0025365758, 0.010503933, -0.013704275, 0.038830653, 0.0047826604, -0.0026253415, -0.03214026, -0.033967856, -0.006007969, -0.017868578, -0.033957668, -0.018901382, 0.01802667, -0.0011744099, -0.05985581, -0.0032202944, 0.036937855, -0.011502961, 0.023795802, 0.013639782, -0.016867496, -0.0023654546, 0.08877699, 0.010045817, 0.018896105, -0.0085674785, 0.010174911, -0.036707647, -0.03548648, 0.10605579, -0.090726055, 0.04651495, -0.016699966, -0.03284705, -0.0073341415, 0.041411873, 0.026285201, -0.041888773, -0.004018505, 0.015918896, -0.0013183904, -0.002937743, 0.03256668, 0.020883445, -0.04092164, -0.012126586, 0.021250226, 0.025806895, 0.051086135, -0.112242036, -0.01751311, 0.055920158, -0.038136315, -0.103409864, 0.025462067, 0.050360184, -0.017300908, 0.049584385, -0.07162901, 0.04020912, -0.044107355, -0.024921553, 0.0033623532, -0.0949732, 0.006169154, 0.023451189, -0.0674203, -0.030743353, -0.039300967, 0.018444791, -0.006379472, -0.0138051715, -0.06391165, 0.0041338983, -0.01629944, 0.007901903, 0.022595916, -0.008559096, -0.019820772, 0.016185006, 0.056747332, 0.012371615, -0.0034570033, -0.010679115, -0.00978258, 0.014170896, 0.057730284, 0.015492098, 0.037249397, -0.028941646, -0.008240061, -0.00041893148, 0.056111056, 0.0015576001, 0.053620763, 0.02741931, -0.052232996, -0.03433119, -0.030692058, 0.027913786, -0.0039245095, 0.00227603, 0.040389385, -0.039773453, -0.0011341965, -0.046113845, 0.013002735, 0.0378694, 0.019373272, -0.024892332, -0.008319837, 0.015272536, -0.073841415, -0.019505758, -0.018807253, 0.09040855, 0.069339395, 0.01550932, -0.049854297, -0.024851657, 0.012679987, -0.002900822, 0.016221838, 0.020818142, -0.023358446, 0.0016077812, -0.036881197, -0.0343109, -0.030306565, -0.02886143, 0.039014902, -0.02078228, 0.022261852, -0.0011855356, 0.051133525, 0.04448404, 0.03933977, 0.004448493, 0.012225073, 0.021937925, 0.039128613, -0.00074584404, -0.024545744, -0.0064064837, 0.03953434, 0.04189714, 0.10128852, -0.007989998, -0.045788575, -0.019787261, -0.023564633, -0.029711382, -0.0053314795, -0.066603385, -0.007171358, 0.03180544, -0.033931766, 0.011712431, -0.01900961, 0.020658046, 0.002899496, -0.011735587, -0.012569343, -0.010489813, -0.028226273, -0.0010198153, -0.03258772, 0.019918203, -0.026229285, 0.009371747, -0.014385423, -0.07324836, -0.047748685, 0.049922522, 0.009458983, -0.026880838, 0.023606345, -0.0517645, -0.02889043, 0.0685706, 0.0040374165, -0.008251212, -0.022284359, -0.0032759416, -0.040233456, -0.020773364, 0.018608445, -0.02968773, -0.04268779, 0.02463855, 0.054930985, 0.026564643, -0.007859406, 0.046372853, -0.008901066, 0.013880623, -0.03535661, -0.027991569, 0.02925387, 0.02350927, 0.06298625, -0.04692142, 0.03385503, -0.024787763, 0.027787575, -0.019116316, -0.00027680042, -0.022780895, 0.0014151137, 0.0019504877, 0.054775015, -0.072652474, -0.04668365, -0.004225915, 0.0016249976, -0.123519965, -0.023534661, -0.016457126, -0.01643502, 0.018072551, 0.022291295, -0.011212166, -0.015486577, 0.059289027, -0.007714052, -0.017845724, 0.008850002, -0.0023721757, 0.012904159, -0.002283701, 0.02276563, 0.017819937, -0.025642646, 0.012743456, -0.02332506, -0.032024466, -0.020711377, 0.050643433, -0.033837028, 0.03791154, 0.027395222, -0.0012754053, 0.042022124, 0.00034248582, -0.070600465, 0.0061514033, -0.020736068, 0.022148788, -0.0881562, -0.05454314, 0.031334415, 0.025592212, -0.02088588, 0.05884233, 0.021040155, 0.014321096, 0.017741492, 0.011782195, 0.011731901, 0.00855523, 0.03417308, 0.008245917, 0.015767539, 0.016168611, -0.017478205, 0.0069133393, 0.0014327094, -0.001918224, -0.067145534, 0.04280625, 0.031151926, 0.010811294, 0.026210714, -0.0112010315, -0.02750601, 0.0037788458, 0.022095174, 0.02076097, -0.046142586, -0.03216607, -0.050823182, -0.0014288988, -0.00400356, -0.047062688, 0.025608335, -0.012907033, 0.001990132, 0.024008278, 0.0049590874, -0.006646626, 0.07407618, -0.01865378, -0.052005928, -0.025129363, 0.03838618, 0.0036753383, 0.02235802, 0.0018059782, 0.029902851, -0.024280615, -0.017183559, 0.069800876, -0.03199299, 0.04234007, 0.023585178, 0.07538377, -0.04654342, 0.017640566, -0.0066607245, 0.032638073, 0.011958711, 0.017108347, 0.008174903, -0.031432137, 0.019407602, 0.03274084, -0.03509585, -0.0051160413, 0.016821014, 0.008271203, 0.04632706, 0.00077675143, 0.032612573, 0.0138703035, -0.04029349, -0.0023806621, 0.00075404585, 0.064847216, 0.016145382, 0.029823741, 0.0406392, -0.044837646, 0.05483193, -0.017610969, -0.026872002, 0.02994937, 0.013058304, -0.029889623, 0.024250314, -0.000886388, 0.03741166, 0.024173053, 0.0027097568, 0.006023649, 0.025564706, 0.018493783, -0.04888093, -0.0058858683, -0.050688498, -0.032158557, -0.004404645, -0.008064141, -0.041985914, -0.0032480683, 0.009066061, 0.018365214, 0.031197317, -0.061237104, 0.012624856, -0.05821097, -0.026817484, 0.042243343, 0.04253982, 0.009535914, -0.06790254, -0.033409733, 0.014510381, 0.03612192, 0.08738723, 0.0060592447, -0.023924941, 0.017251508, -0.020127553, 0.003143417, 0.06276879, 0.019152304, 0.014536949, 0.02341421, 0.008268213, -0.0058395886, 0.041578926, 0.02372906, 0.043052267, 0.03893765, -0.08011447, -0.019121932, 0.050900567, 0.03244919, -0.0072635063, 0.055714104, 0.08718335, 0.009659571, 0.0021974319, -0.045499645, -0.038226392, 0.035944253, -0.0092318, 0.004741912, 0.008975734, 0.08644108, -0.02406881, -0.038444687, -0.082000144, 0.022849625, 0.035082996, -0.028425923, -0.01715591, -0.009228401, -0.018181724, -0.0004629448, -0.0019616855, 0.024981285, -0.009322422, -0.062142484, 0.05764924, -0.111661255, -0.00083281874, 0.0261876, 0.06933337, 0.0073270486, -0.008473886, 0.04844005, -0.06722674, -0.080795854, -0.006787755, -0.01619405, 0.050772104, 0.041460317, 0.0041137957, -0.038816523, 0.025911551, 0.02369039, 0.029581029, 0.023870286, 0.01801695, 0.007479276, 0.01774226, -0.029561542, 0.04089102, 0.026476389, 0.02955855, 0.06854265, -0.00010087568, 0.052571125, 0.03218349, -0.0105059, -0.031305853, -0.016536672, 0.06754446, -0.0049891016, -0.028695187, 0.020748494, -0.030805828, 0.0039367974, -0.035079006, -0.05007333, -0.06113771, -0.048038468, 0.022564437, 0.05094231, -0.009281946, 0.00669956, 0.0024279272, 0.0035439092, 0.0005473628, -0.024858858, 0.057919372, -0.003884775, -0.024233928, -0.0040191505, -0.015870612, -0.031252377, -0.051603932, 0.023291638, 0.014289832, -0.03860267, -0.01967799, 0.015549705, -0.014588317, 0.04449863, 0.03855641, 0.07591782, -0.035171065, 0.0053290026, 0.03427783, -0.0043882523, -0.041593827, 0.0035753176, 0.025444545, -0.010447425, 0.021279776, 0.007210652, -0.0048596067, 0.07110324, -0.009043564, 0.004314593, -0.05424426, 0.027610788, -0.017088335, 0.005227348, -0.011534214, -0.026688797, 0.017313978, -0.008613996, 0.036745027, -0.019580249, -0.0005866446, 0.030335978, -0.044278342, -0.03494829, 0.031810455, 0.025721401, -0.020108407, -0.029951127, 0.012090277, -0.052163113, -0.015510371, 0.049367744, -0.022539364, 0.02780572, 0.039331134, -0.054667316, 0.040678505, -0.09575037, 0.027397962, -0.038217925, 0.03854295, -0.027379833, -0.019345626, -0.044953167, 0.026827956, 0.03221434, -0.04146771, 0.018050727, 0.047916017, -0.0027895642, -0.024915567, -0.013464241, -0.052962616, 0.017834596, -0.011928853, 0.036266662, 0.03577918, -0.043835204, 0.07449235, 0.0106426915, 0.031604525, -0.014709358, 0.04031536, -0.0015925259, 0.03344835, -0.004693222, -0.023466505, -0.06494794, -0.03934659, -0.032035, 0.008983326, 0.011975834, -0.011251861, -0.042179924, -0.03090095, 0.030091038, 0.042115673, -0.006406267, 0.01638244, -0.033554763, 0.027588826, -0.007497111, -0.05333642, 0.045746703, 0.009257672, 0.0050673313, 0.08184785, -0.020138748, 0.02134881, 0.012487624, -0.019799905, -0.048244093, 0.038018983, -0.0032434475, -0.05061359, 0.059293892, -0.010941528, 0.024666239, -0.0074276, 0.034041654, -0.060047504, 0.0016960535, 0.030713296, 0.00075028086, -0.08553083, 0.039305568, 0.025564803, 0.022513663, 0.09477147, -0.07112251, -0.004795267, -0.04691913, 0.022339264, -0.052408047, -0.012745277, -0.038426723, -0.025030555, -0.006682041, 0.017471496, -0.0023202219, -0.0005136955, -0.042101823, 0.044367943, -0.054765187, 0.05009437, 0.07340045, 0.018518824, 0.034272328, 0.029274344, 0.033016663, 0.04190971, 0.026546193, 0.016929487, -0.012844422, -0.029850816, -0.03426095, 0.07859281, 0.035009693, -0.03793449, -0.04824045, 0.041946158, -0.02297343, 0.029891353, -0.01917384, -0.009689775, -0.0063518286, 0.043038137, 0.02758836, 0.014839998, -0.045988925, -0.014788967, -0.030074606, -0.0051542674, 0.0073952093, 0.022551151, -0.004967097, 0.009144027, 0.055654217, 0.0060742176, -0.03832378, -0.009570268, -0.02936891, -0.06440076, -0.050492305, 0.042009182, 0.06048012, 0.0084054945, 0.040378388, -0.0076050325, 0.04837622, -0.054487925, 0.033754207, 0.0029159426, -0.00045015334, 0.015539519, 0.005286983, 0.0059454334, -0.14211738, -0.009789573, 0.045211263, -0.029263645 ] }, { "values": [ 0.0020311726, -0.05872092, -0.07748562, -0.026160862, 0.024697356, -0.0009931093, -0.004266634, 0.03311188, 0.011330409, 0.03231193, 0.01517161, 0.02813782, 0.009485161, 0.027643137, -0.038113087, -0.046180725, 0.0026008417, -0.034278814, -0.04440836, -0.03725127, 0.0022990506, 0.029424237, 0.027258432, -0.024761412, -0.019472111, 0.044303477, 0.035480987, -0.06663835, 0.018733837, -0.021295778, 0.07940363, 0.0399915, -0.015275805, -0.0011296215, 0.06043496, 0.0175005, -0.0046288176, 0.017420564, 0.010690879, -0.033283666, -0.020794861, 0.001545886, 0.038929924, 0.003368677, -0.044038612, 0.020976523, -0.011107033, -0.0026312403, -0.057009943, 0.04478576, -0.013254171, 0.012601162, 0.012834367, 0.014298209, -0.0016158945, -0.019602854, -0.048918515, -0.017657261, 0.07818389, 0.0005520908, 0.026728543, 0.0116645815, 0.0041583055, 0.00603508, -0.0050604315, -0.013802742, -0.054456316, -0.05587983, -0.051773746, 0.03512886, -0.06812487, 0.05571628, -0.031719975, 0.0018506278, -0.01792546, -0.020230316, -0.008342239, 0.03956528, -0.0207352, -0.0005035298, -0.010203346, -0.0003852602, 0.1135312, 0.057460085, 0.081369594, 0.04272413, 0.026028577, -0.03126578, -0.06399019, -0.014709711, 0.08166936, -0.044889268, -0.01976904, -0.0025223813, 0.0162126, -0.027073218, -0.038434967, -0.08964877, -0.0106762815, 0.07687944, -0.04996054, -0.024251748, -0.027922051, -0.009792234, 0.053179123, 0.03201344, 0.020168569, -0.046694107, 0.000982548, 0.024405608, -0.057803635, -0.038473878, -0.033624742, 0.018142277, 0.021149006, -0.053816475, 0.0064744586, 0.034529462, -0.020053172, 0.02268327, 0.038236756, -0.041755635, -0.008625123, 0.07370891, 0.014334802, 0.0055746147, 0.034983248, -0.02190938, -0.044320457, -0.055356618, 0.087577, -0.07315776, 0.0012960591, 0.019351773, -0.040493764, -0.028957454, -0.017417332, 0.017413717, -0.06984784, 0.003837388, 0.013893291, -0.04437642, 0.0074641425, 0.024281723, 0.012181099, -0.035375908, 0.032651193, 0.012204088, 0.0054606604, 0.058631107, -0.120760255, -0.01312823, 0.040267717, -0.03645601, -0.07048618, 0.037021507, 0.0585315, -0.030477673, 0.05126318, -0.064141065, 0.024852296, -0.0093622105, 0.00046279252, 0.009699625, -0.06948024, -0.011272478, 0.04170625, -0.04688324, -0.036789432, -0.02929664, 0.004638738, -0.0023052078, 0.01580107, -0.06685409, -0.0040498157, 0.018512025, -0.04348777, 0.0053715105, -0.05444931, -0.006829952, 0.010450148, 0.052844398, -0.010200106, 0.0044558593, -0.013193753, -0.036773656, -0.009822979, 0.060399402, -0.0049751075, 0.031768337, -0.03659831, -0.035454735, 0.005933117, 0.036272928, 0.025097845, 0.07697797, 0.04191136, -0.021550877, -0.022585513, -0.02343277, 0.018949158, 0.008892902, -0.023418136, -0.0018141319, -0.048605625, -0.018415298, -0.07576659, -0.020658962, 0.052322637, 0.0024660993, -0.013299747, 0.033240154, -0.026146818, -0.07848533, -0.016414389, -0.03146295, 0.06913964, 0.048566975, -0.0058464175, -0.06393691, -0.010792812, -0.0109636765, 0.018010674, -0.016992029, 0.030100513, -0.018022582, -0.02341239, -0.023051543, -0.025470749, -0.03386278, -0.05406034, 0.023146877, -0.0067705056, -0.0025927855, 0.025820449, 0.029362716, 0.0533041, 0.020899862, -0.0069549712, 0.025263553, 0.01426386, 0.040759254, 0.0072850683, -0.019794064, -0.016333297, 0.03211774, 0.061908454, 0.08320409, -0.04178408, -0.009186897, -0.004745786, -0.017760633, -0.049238402, -0.003917827, -0.05761369, 0.006977981, 0.025684735, -0.043764047, 0.0056124274, 0.022237161, 0.014465965, 0.012595879, -0.01649876, -0.02739587, -0.028570035, -0.08699887, -0.015801534, -0.02818115, 0.045889884, -0.011427028, 0.00669518, 0.0035356293, -0.096464045, -0.028557511, 0.05035943, 0.025970273, -0.025295433, 0.030959984, -0.06717437, -0.045875322, 0.053515904, 0.019257573, -0.040392525, -0.03440234, -0.023627097, -0.058919914, -0.009397446, 0.02901061, -0.03127863, -0.04432833, 0.033299204, 0.031071322, 0.03314152, 0.008277474, 0.05082295, -0.021789106, 0.0013128299, -0.011650328, 0.030491112, -0.00781616, 0.0035860732, 0.068712786, -0.010547196, 0.056858934, -0.022502664, 0.02512357, -0.014277887, -0.029662536, -0.014490546, 0.003270592, -0.004167534, 0.03174048, -0.04497866, -0.039560977, -0.0044228006, 0.008730571, -0.078870885, -0.013563184, -0.01518132, -0.022652017, -0.0029897029, 0.04001459, -0.0129542705, -0.029457029, 0.049345806, -0.0045051714, -0.021058887, -0.031550772, 0.00248963, 0.005142343, -0.005606735, 0.02952296, 0.0073067592, -0.032232754, 0.023266958, -0.012467751, -0.022274204, -0.0033358093, 0.033435594, -0.022590974, 0.03481867, 0.026036961, -0.017156338, 0.011406711, 0.005512588, -0.049049947, 0.009933105, -0.03890937, 0.019417241, -0.035589084, -0.038943272, 0.031055987, -0.009400188, 0.0043976284, 0.05989893, 0.047985874, 0.029750243, 0.063863106, 0.015277158, 0.010300606, -0.0059483126, 0.013459912, -0.0011017298, 0.0054049296, -0.010089422, -0.010720229, 0.00075542415, 0.014510835, -0.023343878, -0.064862795, 0.037350673, 0.035405323, 0.022212502, 0.012210152, 0.003100843, -0.046235453, -0.009506745, 0.03150847, 0.004686627, -0.018760486, -0.039984815, -0.041646626, -0.0040967953, -0.013771553, -0.025483515, 0.027943615, -0.034905918, -0.023925472, 0.024184933, 0.021551529, -0.005533494, 0.06755538, -0.013871493, -0.019435402, -0.0034686076, 0.010742661, -0.0019557246, 0.01631092, -0.020269517, 0.015266423, -0.03433093, -0.026428213, 0.075550295, -0.035444643, 0.026477456, -0.0053555467, 0.07422495, 0.015941486, 0.016237432, -0.013751106, 0.030164143, -0.008959482, 0.017064223, 0.023844361, -0.00054170215, 0.03920953, 0.036776077, -0.06985571, -0.024259953, 0.037036378, 0.00837293, 0.0252459, -0.024773927, 0.040236503, 0.025864411, -0.066774614, 0.012245327, 0.014159483, 0.049327668, 0.0117073, 0.012373944, 0.030211087, -0.02730298, 0.050334334, -0.029944621, -0.035047572, 0.04388103, -0.0002965356, -0.017535187, 0.0006749591, 0.00894442, 0.026805736, 0.024732307, 0.029468723, 0.0033798052, 0.043545697, 0.018431522, -0.041847914, -0.017463995, -0.068114504, -0.0023266699, 0.026448144, 0.0061938334, -0.057196382, -0.01672163, -0.0061136996, 0.01947527, 0.048358925, -0.036378235, -0.00550122, -0.03691117, -0.03433245, 0.034997996, 0.053441983, 0.008718978, -0.04992221, -0.036112588, -0.00175672, 0.038867086, 0.056295786, 0.012343574, -0.018070176, 0.0137486225, 0.0059104776, 0.01430272, 0.05392224, 0.001488471, -0.0043778145, 0.021891432, 0.0069695073, 0.012481373, 0.046991125, -0.0051253894, 0.014208826, 0.03047488, -0.098498166, -0.04870969, -0.0020239456, 0.038942426, 0.020790001, 0.027408224, 0.09313614, 0.024847943, 0.027831823, -0.046650957, -0.050949898, 0.05335668, 0.009219313, -0.026323244, -0.0179127, 0.10122692, -0.0059861504, -0.03061179, -0.041218214, -0.010015165, 0.04521129, -0.047336955, -0.014689704, 0.007824526, -0.018461552, -0.0010884511, -0.016995689, 0.06383605, -0.058764327, -0.056542564, 0.06991053, -0.06958368, 0.032579154, -0.024075404, 0.064262904, -0.010624829, -0.0043136077, 0.05691661, -0.08403061, -0.0739669, -0.0015471211, -0.01507903, 0.05730037, 0.051918898, -0.030775605, -0.0401997, 0.04170763, 0.068929315, 0.0035461918, 0.030617278, 0.030746315, 0.014532186, 0.016372068, -0.042223923, 0.018634709, 0.0029531985, -0.02235028, 0.0774111, 0.004905799, 0.04204466, 0.021882435, 0.017940396, -0.030449213, -0.0076020802, 0.10091369, -0.026881494, -0.018469369, 0.02110258, -0.012619356, -0.019196155, -0.04770108, -0.027255783, -0.04972711, -0.020925937, 0.015078443, 0.044825815, 0.0054842616, -0.0027595868, 0.0070707803, -0.004377463, 0.027697317, -0.035586063, 0.07843204, -0.0061045503, -0.031371694, -0.033049546, -0.01224268, -0.03431014, -0.05558328, 0.036158416, 0.005608883, -0.04500707, -0.0040513147, 0.022013674, 0.01757501, 0.020252477, 0.0084349075, 0.060305852, -0.004743186, -0.0225918, 0.033632163, -0.0023091512, -0.07014818, 0.0010938522, 0.0010406493, -0.024321135, -0.015697867, -0.009248301, -0.02191964, 0.061404586, -0.019712687, -0.028267313, -0.039162144, 0.01583829, 0.018505126, -0.012909393, 0.0032172734, -0.04880153, 0.008741126, 0.019398818, 0.05503623, -0.030979507, -0.012986792, -0.0025963886, -0.024269827, -0.041925482, 0.049429625, 0.0059054354, -0.024557326, -0.049288914, 0.01063847, -0.037211817, -0.053397797, 0.01684809, -0.024126263, 0.019136205, 0.057383228, -0.02205774, 0.014640036, -0.066261716, 0.025971757, -0.044778805, 0.03550857, -0.025667759, -0.027012229, -0.053064417, 0.03149331, 0.04992987, -0.025234358, 0.01638032, 0.035367887, 0.011096381, -0.020783372, 0.023352548, -0.040818226, 0.029849306, -0.0071183117, 0.035455145, 0.052702975, -0.036347702, 0.052649524, 0.0015845915, 0.014444041, -0.02533506, 0.024179017, -0.019073535, 0.031714115, -0.014394078, -0.035185255, -0.044545975, -0.020264238, -0.052089043, 0.043242026, 0.018731428, -0.0071009593, -0.030040005, -0.06513289, 0.062042456, 0.044495348, -0.002180954, 0.026724359, -0.039250735, 0.03925451, -0.009937241, -0.039648008, 0.040829875, 0.01527972, 0.027992627, 0.0734405, -0.010476314, 0.01527716, 0.018418696, 0.007847638, -0.0519565, 0.057674073, -0.009199531, -0.04885102, 0.021678623, -0.016178655, -0.0052834675, 0.0062539866, 0.018683188, -0.06304633, -0.0064558396, 0.008804042, -0.0071500293, -0.06560739, -0.035057195, 0.024165004, 0.011758883, 0.06793637, -0.053148303, 0.031808622, -0.055575963, 0.050913516, -0.058154363, 0.013531597, -0.07058971, -0.0095355185, -0.0075756954, 0.03267001, 0.01856902, 0.0015831249, -0.0559263, 0.021049079, -0.06582504, 0.015079805, 0.10224697, 0.044426404, 0.031655587, 0.008934543, 0.042193603, 0.03844879, 0.027563868, 0.013538171, -0.013932829, -0.0031380071, -0.03209768, 0.07378487, 0.030216997, 0.009258218, -0.07126703, 0.04198712, -0.03304171, 0.055379923, -0.0110710375, -0.022263106, -0.0052611995, 0.04326378, 0.008187218, -0.004193093, -0.05773657, -0.020035923, -0.04445018, -0.009252306, -0.0039185956, 0.005806101, -0.009335373, 0.023757033, 0.021671696, 0.0043864525, -0.05091337, -0.018962357, -0.03759207, -0.03273242, -0.027312018, 0.022431321, 0.044711262, -0.00182045, 0.03654506, -0.010831633, 0.014911344, -0.041545045, 0.024783859, 0.002398588, -0.0029417868, -0.012988677, 0.013317667, -0.0014151793, -0.12249228, 0.020995578, 0.010722168, -0.0589574 ] }, { "values": [ -0.024245134, -0.05437006, -0.059409305, -0.01955914, 0.018386818, 0.02940135, -0.003521792, 0.01702622, 0.013274672, 0.015926676, 0.020869412, 0.012035247, 0.015645754, 0.0030709077, -0.01511254, -0.02410278, 0.017428372, 0.0024855097, -0.073131554, -0.041126043, 0.03931191, 0.018177861, -2.5420907e-06, -0.010510127, -0.02820204, 0.042810757, 0.052089434, -0.062114384, 0.009478918, -0.04269572, 0.07027068, 0.041661702, -0.03515521, -0.018739095, 0.04431526, 0.04644276, -0.054304272, 0.0076586655, 0.011472221, -0.041646913, -0.019412514, 0.020165747, 0.041144446, 0.016320435, -0.047892034, 0.014248017, -0.012873059, 0.04025537, -0.039656386, 0.033031598, -0.02484198, -0.0010494182, 0.019638952, 0.0012560441, 0.0007114398, -0.059158474, -0.088713475, 0.0043306714, 0.07650218, -0.00042742337, 0.018493768, 0.009525298, -0.011041284, -0.0130684795, -0.00911502, -0.011213843, -0.060847923, -0.041945558, -0.0371555, 0.063305356, -0.04245764, 0.04862185, -0.037855573, 0.022677494, -0.013834823, -0.028782597, -1.6738204e-05, 0.0004281802, -0.018205453, 0.011841867, -0.0013627717, 0.0016815246, 0.08400063, 0.052234095, 0.07452041, 0.015479446, 0.03560302, -0.06421494, -0.07764686, 0.007656013, 0.071293704, -0.025070176, -0.015483566, -0.026855756, 0.011130829, -0.0025470776, -0.04019883, -0.08042376, 0.016387966, 0.068042845, -0.038629077, -0.029490255, 0.0003247674, -0.0111563755, 0.020657534, 0.026823835, -0.008366824, -0.037652455, -0.0062438427, -0.009288568, -0.07603565, -0.018644666, -0.031806856, 0.023477685, 0.018173326, -0.046961322, -0.008684441, 0.029204609, 0.00838382, 0.017765572, 0.04023113, -0.04773369, -0.0017595809, 0.08741455, 0.028787, -0.0035168799, 0.006962887, 0.020580545, -0.055813197, -0.033226773, 0.121305496, -0.052477617, 0.011428262, -0.011300347, -0.044281945, -0.028665718, 0.032276988, 0.026139557, -0.07726538, 0.01154185, -0.007282933, -0.0076264557, -0.014922653, 0.064678654, 0.005012803, -0.024919437, 0.025275776, 0.017300617, 0.014185853, 0.06458868, -0.10360054, -0.027989795, 0.031943187, -0.026908683, -0.058866646, 0.07200691, 0.044046782, -0.035426036, 0.053080127, -0.067662336, 0.041031186, -0.008320747, -0.03232781, 0.00024597178, -0.06553915, -0.031946223, 0.0077865752, -0.059686754, -0.028936122, -0.04281149, -0.010079556, 0.0011804941, -0.006330789, -0.0571996, -0.011994891, 0.016487423, -0.0018108287, 0.004498293, -0.06401378, 0.0019516471, -0.001621132, 0.087776035, 0.01344983, 0.016724251, 0.0036553582, -0.019432781, -0.0077099367, 0.036494218, 0.0023644273, 0.030017931, -0.041322693, -0.02350042, 0.002601587, 0.058071904, 0.002328328, 0.08458005, 0.024403626, -0.0231688, -0.036643747, -0.016293092, 0.028618839, -0.0007845789, -0.01577613, 0.01585612, -0.0740582, -0.0074357484, -0.0496802, 0.006199071, 0.04312686, 0.011943297, -0.0008792594, 0.029160116, 0.013038181, -0.07882815, -0.013026075, 0.009435409, 0.08744023, 0.0363871, 0.009154949, -0.051317442, -0.036183625, -0.011075905, 0.008649215, -0.0024472352, 0.02943584, -0.0109575335, -0.009248346, -0.029862652, -0.0362534, -0.029719748, -0.037066456, 0.043816566, -0.006141074, 0.01708351, -4.5769677e-05, 0.035703912, 0.055224523, 0.023950184, -0.0077822967, 0.008665882, 0.019543799, 0.06112169, 0.0043710223, -0.032784376, -0.02674821, 0.058600206, 0.06143042, 0.06900506, -0.026414795, -0.048349548, -0.038410943, -0.039882727, -0.03552319, 0.0033076734, -0.058940336, 0.020094372, 0.024231184, -0.03139615, -0.0003746842, 0.02496179, 0.03346864, 0.020584807, -0.023849817, -0.007862161, -0.020489752, -0.062265117, -0.00284362, -0.023689236, 0.032238234, -0.017985974, 0.0063908105, -0.0061668763, -0.10770461, -0.023445101, 0.058879234, -0.0023769925, -0.019697607, 0.023180433, -0.06824016, -0.030082844, 0.055991545, 0.0013567406, -0.037754428, -0.0331429, -0.01697878, -0.05413432, -0.007946086, 0.01972486, -0.03324581, -0.037139982, 0.029082682, 0.03066283, 0.027416477, -0.04023053, 0.029899785, -0.0027788093, 0.00770635, -0.043374952, 0.026130639, 0.003615852, 0.023919601, 0.0714576, -0.021168282, 0.027948493, -0.026941523, 0.021454236, -0.018383635, -0.028131317, 0.008739324, 0.013664681, 0.009266532, 0.03789623, -0.047259808, -0.04210964, 0.00565408, -0.0029470986, -0.11304099, -0.022778027, -0.008502371, -0.012392891, 0.012399749, 0.021186288, -0.0031248706, -0.029432464, 0.05108702, -0.004688575, -0.03328924, -0.026345385, 0.0038384176, 0.023452884, -0.0126392925, 0.028833892, 0.014557611, 0.007669609, 0.015062144, -0.024483198, -0.01533864, 0.0035746875, 0.039865714, -0.029744867, 0.020703832, 0.02107824, 0.015546804, 0.037560232, -0.0008172357, -0.06943401, 0.010362216, -0.03859746, 0.03771818, -0.05357041, -0.04308921, 0.023925936, 0.003027999, -0.010357098, 0.06346146, 0.039091602, 0.02302092, 0.041706946, 0.021247411, 0.012700653, 0.0050806757, 0.023648772, -0.003422156, 0.0136914365, 0.017931754, -0.0036586176, -0.013371007, 0.017006075, 0.01250193, -0.071257524, 0.055794988, 0.026322057, 0.006715176, 0.02085329, -0.009527154, -0.038116388, 0.008134989, 0.021705193, 0.025967842, -0.03774058, -0.026906405, -0.049324147, -0.0014718451, -0.011688627, -0.051690273, 0.03191596, -0.041890323, -0.011987343, 0.025133329, 0.014051309, 0.003475348, 0.08460191, 0.00040795212, -0.023988923, -0.014153521, 0.027324717, -0.026138425, 0.008670618, -0.00532019, 0.03322958, -0.034321196, -0.029143706, 0.08765036, -0.043561693, 0.013880936, -0.0013139052, 0.08833079, -0.0008743272, 0.01870804, -0.021466201, 0.036432505, 0.020297263, 0.019483175, 0.033991292, -0.03706659, 0.01128395, 0.034970976, -0.044592764, -0.0027094441, 0.007672618, -0.00015081027, 0.032845147, 0.0022689307, 0.019764178, 0.006999802, -0.060879186, -0.01715799, -0.0120743085, 0.042347226, -0.0014443885, 0.008267124, 0.023878181, -0.03841759, 0.04010325, -0.024587601, -0.01382478, 0.03621771, 0.01155223, -0.039861172, 0.012386698, -0.0057836724, 0.03500831, 0.0024162421, 0.011400458, 0.011851182, 0.0454159, 0.017551104, -0.015023181, -0.027249575, -0.0492193, -0.01536122, 0.009590072, 0.0013808068, -0.052270554, -0.044352975, -0.0045414106, 0.031013228, 0.05336359, -0.041898157, 0.036277648, -0.05145392, -0.02342793, 0.05970205, 0.04041877, 0.001275285, -0.05854258, -0.054423776, 0.008245428, 0.0061761606, 0.064469755, 0.016330384, -0.014439928, 0.041612364, -0.014399955, 0.0137187755, 0.059166126, -0.008545737, 0.0011921665, 0.014289978, -0.0087211365, -0.00904027, 0.04259963, 0.028591448, 0.0262432, 0.045994334, -0.1051181, -0.017353393, 0.025325993, 0.05085955, -0.008820855, 0.059800204, 0.09287013, 0.009494057, 0.016542412, -0.051906094, -0.052019946, 0.028106289, -0.023537576, -0.032626722, -0.003652871, 0.077779815, -0.028211357, -0.021615032, -0.062948674, 0.021211723, 0.020853933, -0.03850972, -0.0068133706, -0.010948183, -0.032346275, -0.013023755, 0.0087421015, 0.05687664, -0.043009978, -0.06557486, 0.03177142, -0.09257382, 0.006504908, 0.0049628587, 0.04344427, -0.00083134597, -0.00586424, 0.041748293, -0.07556648, -0.049349412, -0.008894121, -0.008858046, 0.07036417, 0.040099055, -0.019447846, -0.043592595, 0.020748785, 0.0613259, 0.024124216, 0.019868951, 0.019521657, 0.020683037, 0.0056964536, -0.047023024, 0.0071154064, -0.0061578224, 0.012728371, 0.051890362, -0.011182504, 0.03444332, -0.001370105, 0.0005787141, -0.028038165, -0.020197248, 0.070211455, -0.015014123, 9.6649375e-05, 0.009416952, 0.0020528075, 0.0051092235, -0.03727447, -0.032918304, -0.073680736, -0.034194816, 0.024210371, 0.039512187, -0.0020045943, 0.018132579, -0.00083848607, -0.0017682224, 0.002695054, -0.024172002, 0.084539734, 0.0027229274, -0.042004753, -0.009595463, -0.009747768, -0.05106839, -0.05776912, 0.040180195, 0.00397404, -0.049352244, -0.017141065, 0.01963653, -0.0082270745, 0.03118416, 0.00032844563, 0.073669076, -0.026275715, -0.020575698, 0.02255328, -0.001405049, -0.051617924, 0.0004100273, 0.0010686044, -0.0048854128, 0.016879037, -0.0025394766, -0.024455383, 0.060920686, -0.011297189, -0.010624061, -0.052858323, 0.034443952, 0.0061453544, -0.017704997, 0.024050716, -0.04030396, 0.017894225, -0.006358834, 0.029086243, -0.01920264, 0.0070588156, 0.0047235335, -0.04700768, -0.039855253, 0.05677237, 0.01750336, 0.006757301, -0.04695794, -0.0012415037, -0.041421574, -0.033668395, 0.011869157, -0.020920517, 0.009185909, 0.053180583, -0.025862917, 0.019795407, -0.06932515, 0.0008994586, -0.04255984, 0.036798086, -0.026527928, -0.04294174, -0.020064468, 0.028999297, 0.042449087, -0.03013485, 0.010670973, 0.04076634, -0.00079362676, -0.01827466, 0.02464439, -0.037287407, 0.025631193, -0.011291394, 0.018288692, 0.03180463, -0.045146495, 0.05486607, 0.02109342, 0.023921562, -0.003823024, 0.030397339, -0.0037187843, 0.041951697, -0.0069860406, -0.03636011, -0.053000197, -0.027308116, -0.020783512, 0.027902175, 0.021550901, -0.015510705, -0.031870037, -0.033911478, 0.04766488, 0.01075706, -0.004037213, 0.02660941, -0.019496627, 0.026133267, -0.010535338, -0.010564357, 0.037147634, 0.0033097477, 0.016851386, 0.08908002, -0.03289443, -0.006941118, 0.040789932, -0.011984111, -0.056350347, 0.04847468, 0.0009061226, -0.03232238, 0.03561673, -0.03559186, -0.02088315, 0.0036422973, 0.06356983, -0.079587646, 0.0020055422, -0.017106092, -0.0014838701, -0.084117554, -0.0063410313, 0.020116048, 0.023927586, 0.07116059, -0.050848424, 0.026243791, -0.046717744, 0.039976545, -0.05623231, -0.008553764, -0.07302104, -0.017427284, -0.018723639, 0.04353326, 0.023269251, -0.0016927862, -0.07121292, 0.038696337, -0.07273289, 0.025469957, 0.10973847, 0.019251011, 0.043906726, 0.0025882083, 0.038280655, 0.040778384, 0.026353175, 0.017963149, -0.014942522, -0.026526336, -0.032643463, 0.08159621, 0.009048851, -0.020226087, -0.044300165, 0.016233921, -0.0425414, 0.031552628, -0.022818604, -0.02327497, -0.017402586, 0.061360594, 0.012690269, -0.007988324, -0.04709844, 0.013206707, -0.03861187, -0.017695809, 0.008660315, -0.00521381, -0.0014925436, 0.023709139, 0.0234048, -0.0033516583, -0.026528459, -0.014970012, -0.036797162, -0.037931986, -0.051559623, 0.033148244, 0.06911082, 0.007780228, 0.022136027, -0.0024354998, 0.028321074, -0.07825743, 0.008365764, 0.0070391586, -0.020667044, 0.003135512, -0.0038775317, 0.0031142186, -0.12288521, 0.02224525, 0.0408153, -0.023076164 ] }, { "values": [ -0.019600682, -0.039716393, -0.055135734, 0.009779621, 0.023735536, 0.02923574, 0.015625987, 0.022449853, 0.016930731, 0.006441502, 0.0052696406, 0.013671376, 0.022233408, -0.0067295474, -0.021067211, -0.043611683, 0.015511855, -0.0028716328, -0.057981186, -0.061861824, 0.02635501, 0.031601127, 0.017396754, -0.045137957, -0.03763834, 0.037755553, 0.04632329, -0.0484427, -0.0027305349, -0.048187755, 0.06934719, 0.05322911, -0.037520375, -0.02395054, 0.058453124, 0.035835125, -0.0443958, 0.0079852585, 0.044938684, -0.033048905, -0.046278205, 0.008411173, 0.047363356, 0.023139864, -0.034024462, 0.013201849, 0.0005267208, 0.020864941, -0.0611513, 0.05978901, -0.013657975, 0.0035141255, 0.021663846, 0.009211917, 0.018242542, -0.043129735, -0.08253821, -0.025965596, 0.045372, -0.0039398577, 0.018045003, 0.007829423, -0.014097091, -0.0071548657, -0.028582452, -0.031876467, -0.06546253, -0.04555493, -0.055990435, 0.06210111, -0.024804398, 0.05401004, -0.052859593, -0.010883701, -0.0077420906, 0.0021813135, -0.012111258, 0.02620463, -0.030204134, 0.009834909, -0.015370228, -0.019750481, 0.09051263, 0.07344512, 0.08249829, 0.027055737, 0.02013248, -0.07046194, -0.06917304, 0.0122917285, 0.08636898, -0.023369055, -0.023811663, -0.004714708, 0.012222745, 0.0027715103, -0.042904466, -0.086576685, 0.033988174, 0.08584507, -0.034071494, -0.021365585, 0.0039829263, 0.009020155, 0.018257488, 0.016886864, -0.014460584, -0.04820212, -0.018413102, -0.0048441803, -0.064278476, 0.0037696478, -0.0062042256, 0.015004213, 0.013969291, -0.06177102, 0.011976748, 0.030937772, 0.003969862, 0.025471253, 0.07474978, -0.051760558, -0.0041065183, 0.08056985, 0.035993613, 0.005703691, 0.031521674, 0.00475486, -0.037297957, -0.053375136, 0.10005004, -0.06510567, 0.00083794445, 1.7572116e-05, -0.036861595, -0.052647457, 0.00881416, 0.04406803, -0.060903195, -0.008314289, 0.0021499323, -0.005487725, 0.010256526, 0.04802918, 0.00419287, -0.034968954, 0.008415325, 0.009459193, -0.018137125, 0.06763887, -0.10474559, -0.01596134, 0.039014023, -0.03723572, -0.051824674, 0.039231915, 0.042742547, -0.023029344, 0.057530854, -0.05245978, 0.035353728, -0.006000766, -0.010863047, -0.009763062, -0.049157843, -0.03537818, 0.025059184, -0.057599794, -0.03648312, -0.01986754, 0.00704251, 0.011680736, 0.010332278, -0.06680862, 0.0054060495, 0.016506804, -0.03725283, 0.0043036905, -0.058006294, -0.01612049, 0.009067335, 0.06774691, 0.0064495406, 0.0032090768, -0.02192053, -0.012908102, -0.019468237, 0.0644281, -0.026975539, 0.022176737, -0.032215726, -0.010303372, 0.0074283658, 0.061297446, -0.007975077, 0.062865816, 0.034618117, -0.0051799375, -0.017785212, -0.012935204, 0.052928798, -0.021559214, -0.015434226, 0.009154883, -0.061553396, -0.01782333, -0.05173921, -0.017191617, 0.020088974, 0.021084512, -0.015868805, 0.013759617, -0.0067252256, -0.07466616, -0.0004171936, 0.012280258, 0.06210433, 0.06128748, 0.0034790304, -0.061363757, -0.020790556, -0.011920816, 0.014576934, -0.019372255, 0.01880314, -0.034849375, -0.009290288, -0.038463626, -0.036999047, -0.010508468, -0.058030657, 0.015475761, -0.0013257986, 0.024358608, -0.0034226794, 0.017727014, 0.013858917, 0.01031109, 0.0009068248, 0.0064762398, 0.024459103, 0.045395415, 0.010299679, -0.016932268, -0.024958624, 0.057895236, 0.06600901, 0.10221645, -0.01729632, -0.041472547, -0.0329798, -0.022644296, -0.054443784, 0.003690915, -0.07328267, 0.009609549, 0.028353725, -0.029965272, -0.0011937295, 0.001450023, 0.020428611, 0.003742328, -0.048909172, -0.0045182128, -0.027542436, -0.0881859, -0.006372808, -0.039016034, 0.04906997, -0.014828422, -0.0077847424, -0.009740619, -0.0754559, -0.029623872, 0.06735677, 0.0072027924, -0.0064395983, 0.036168348, -0.06895956, -0.020401107, 0.03250399, 0.017104628, -0.034409687, -0.033566255, -0.014231026, -0.0562731, 0.015323551, 0.015192219, -0.042641006, -0.06027433, 0.03955742, 0.022828225, 0.02909817, -0.02581875, 0.020483423, -0.00024064536, 0.015213522, -0.004109708, 0.027666328, 0.0027776621, 0.028544486, 0.08487711, -0.022434654, 0.042232204, -0.03208032, 0.032216564, -0.026396962, -0.02887361, -0.0043539335, 0.015404838, 0.022769162, 0.04559602, -0.03417836, -0.03218677, -0.0055757253, -0.007658883, -0.099934466, -0.00497792, -0.0042286017, -0.018206468, 0.020142412, 0.03792483, -0.01864929, -0.035496954, 0.066054314, 0.002712112, -0.032699425, -0.025505692, 0.0047369613, 0.027145794, 0.009820952, 0.045433883, 0.0100125875, -0.019308059, 0.009261014, -0.013349191, -0.000515593, 0.008034538, 0.030904757, -0.010879011, 0.022340218, 0.014698887, 0.013547044, 0.024694737, -0.011223046, -0.058465946, 0.0052938964, -0.03626195, 0.07304546, -0.040184706, -0.060104024, 0.051176805, -0.000494865, -0.0049486086, 0.056083202, 0.024743116, 0.028133962, 0.040476825, 0.02178923, 0.00053165754, 0.0020024474, 0.028571423, 0.0024153374, 0.0147077525, -0.0115151005, -0.009623447, -0.002283972, 0.021692107, 0.019759981, -0.084533736, 0.03243371, 0.029761331, -0.004338858, 0.01731929, -0.028753059, -0.05881244, 0.0054157954, 0.018880356, 0.017581783, -0.04439516, -0.03509506, -0.042901848, 0.010730395, -0.023207895, -0.046868693, 0.03487605, -0.03993418, -0.021306345, 0.014483198, 0.008739651, -0.018297954, 0.080496736, 0.0037576556, -0.004167396, -0.033831824, 0.015618228, -0.009647787, 0.024431448, 0.015675735, 0.016417067, -0.04876283, -0.02174154, 0.062224556, -0.03757814, 0.008216646, 0.01574463, 0.0713933, 0.009912906, 0.019975051, -0.02079666, 0.018809581, -0.0067156474, 0.022304717, 0.02263472, -0.030261772, -0.017163433, 0.018248698, -0.06601958, -0.02752143, 0.00034683835, -0.002048169, 0.012281983, -0.003233403, 0.02828036, -0.005623721, -0.07383052, 0.0038651554, -0.008580495, 0.045658354, -0.016235523, 0.007270663, 0.037425812, -0.066976674, 0.041990403, -0.006207432, -0.014563415, 0.007222593, -0.01042214, -0.03480665, 0.011109957, -0.0066408208, 0.0073242215, 0.030784447, 0.021594822, 0.019390471, 0.04989175, 0.020443235, -0.021642098, -0.0067364755, -0.07344819, -0.021129033, 0.030071324, -0.01619035, -0.07244505, -0.019466365, -0.028367177, 0.030610703, 0.03914964, -0.04641935, 0.008842525, -0.03765541, -0.036467686, 0.0664022, 0.04106517, 0.020233981, -0.049267426, -0.033511356, -0.015158376, -0.004303333, 0.05334965, 0.0012950517, -0.025735367, 0.033959612, -0.008867601, 0.01748302, 0.061687443, 0.0018061765, 0.0035256587, 0.006751832, -0.006981442, -0.008285293, 0.05554165, 0.017437568, 0.010181859, 0.03647173, -0.08966433, -0.00877728, 0.0037827904, 0.04184712, -0.016576115, 0.041261707, 0.07891508, 0.0205071, 0.024330243, -0.051689245, -0.05560249, 0.023275692, -0.023343641, -0.033297874, -0.020756017, 0.07065777, -0.03713458, -0.01803031, -0.04946723, -0.00020514822, 0.013544232, -0.025081484, -0.017734777, 0.036905326, -0.02689208, -0.017607018, -0.004375478, 0.04681813, -0.043192063, -0.05751315, 0.058168467, -0.06386902, 0.011260235, -0.0028941466, 0.047275115, -0.0036031276, -0.026095284, 0.03831603, -0.105745904, -0.076643385, -0.023752632, -0.01365771, 0.060086578, 0.041466583, -0.01335717, -0.010994787, 0.020130547, 0.052595865, 0.016072204, 0.013461047, 0.03479756, 0.02969206, -0.0046124323, -0.04837341, 0.0024178505, -0.0077508725, -0.002698357, 0.06002092, -0.016674984, 0.017082289, 0.018434532, 0.011673132, -0.041251954, -0.005307945, 0.07703928, -0.04390387, -0.010339759, 0.0007171597, -0.023111276, -0.011893623, -0.031917993, -0.0077984463, -0.041593403, -0.020870917, 0.026900869, 0.030219568, 0.012821619, 0.02080468, 0.005085629, -0.03894708, 0.022607524, -0.03337028, 0.08456, -0.008670641, -0.030323636, -0.026984861, -0.011108105, -0.035570808, -0.06044039, 0.036418814, 0.01124067, -0.050347395, -0.02610436, 0.037976608, 0.0046243407, 0.02322004, 0.024634553, 0.07128384, -0.015443668, -0.01264229, 0.032542992, 0.010552344, -0.07117556, 0.0011985706, -0.0014355009, 0.0023297567, 0.04005627, -0.0038166477, -0.02835423, 0.06033584, 0.010901776, -0.01721496, -0.048749585, 0.03444604, 0.027676182, -0.013991187, 0.011843398, -0.037200633, -0.002423166, 0.0019528014, 0.04380017, -0.019333012, -0.011586019, 0.01698073, -0.026906263, -0.04817222, 0.04787416, 0.00037657836, -0.013934936, -0.050023034, -0.011110649, -0.045190778, -0.049810298, 0.0114900945, -0.054025047, 0.012305894, 0.029966623, -0.014693387, 0.017454086, -0.07527046, -0.011868618, -0.029106984, 0.042291194, -0.038110696, -0.033803616, -0.026467843, 0.013653871, 0.053529713, -0.037972488, 0.01001013, 0.04300396, -0.011901597, -0.021173567, 0.056208253, -0.04545103, 0.029894544, 0.00013220705, 0.027222784, 0.05004051, -0.038187057, 0.039779533, 0.025410058, 0.024849724, -0.01553952, 0.009311221, -0.02204887, 0.02950806, -0.0071726493, -0.035945926, -0.042196974, -0.03991597, -0.038058557, 0.015691308, 0.01787298, -0.031215563, -0.021492114, -0.02903697, 0.046641175, 0.021792544, 0.012196366, 0.01041721, -0.042359993, 0.024525926, -0.023577653, -0.033798654, 0.022395715, 0.011004427, 0.028895652, 0.08439588, -0.021630388, 0.014408178, 0.034297686, -0.027483555, -0.038429555, 0.03794092, 0.0064774523, -0.038784068, 0.004417144, -0.0079340665, -0.0226855, -0.007214895, 0.035815515, -0.06914646, -0.015447564, -0.0089931125, -0.0077082072, -0.06986534, -0.032592464, 0.008872531, 0.034144722, 0.102209195, -0.042279113, 0.029346436, -0.058181036, 0.028900785, -0.038112815, 0.012384493, -0.082646064, -0.00013157104, 0.004659555, 0.04561973, 0.015783168, 0.020341655, -0.06259792, 0.030747812, -0.07419935, 0.016216706, 0.1010272, 0.028500434, 0.03773838, 0.0010698861, 0.05866166, 0.022865603, 0.026946971, 0.032872718, -0.009615279, -0.027789341, -0.025287447, 0.07342766, 0.024063898, -0.00066952937, -0.06266221, 0.02132954, -0.04105886, 0.041304756, -0.036592297, -0.014041459, -0.01663517, 0.059055015, 0.011056061, 0.0060013644, -0.025550274, 0.006637521, -0.033242814, -0.004371065, 0.025731845, -0.01889137, -0.015742533, 0.02953224, 0.017932465, -0.0073494585, -0.055326004, -0.02079295, -0.0371134, -0.02817007, -0.049437854, 0.034134142, 0.05814518, -0.0005644389, 0.033843413, -0.017073434, 0.014804369, -0.047683198, 0.0045649465, 0.00896481, -0.016769823, 0.011473347, 0.010898899, -0.0034484726, -0.10223955, 0.024387488, 0.04411623, -0.041397013 ] }, { "values": [ -0.0131295975, -0.046057127, -0.059414078, 0.005638477, 0.017219076, 0.030154077, 0.02949607, 0.033311572, -0.0011334819, -0.000807202, -0.0023231122, 0.032902498, 0.013478216, -0.015172549, -0.033900492, -0.036432512, 0.018045718, 0.0023994253, -0.084601186, -0.047789402, 0.0339365, 0.049568776, 0.03893041, -0.020465197, -0.020394534, 0.050802447, 0.055295877, -0.056047358, 0.0022217627, -0.035009496, 0.059239607, 0.052139346, -0.029397594, -0.03223052, 0.036810152, 0.051659454, -0.05528943, 0.012383093, 0.016850393, -0.048572578, -0.051421862, -0.02695487, 0.032522954, 0.013793498, -0.029209519, 0.023564663, 0.0058159768, -0.00095036346, -0.06099863, 0.043367743, -0.03770789, -0.015617334, 0.0105382195, -0.02932581, 0.009234723, -0.048036158, -0.06480878, -0.008927924, 0.057185303, 0.00018730211, -0.0050238064, 0.01686921, -0.0024916392, -0.0005520359, -0.03083631, -0.040773753, -0.078239664, -0.031040356, -0.049202263, 0.059241965, -0.04594023, 0.04894984, -0.05477743, -0.0008518838, 0.002665695, -0.024386976, 0.0061493004, 0.01074484, -0.020320585, 0.051594164, 8.348385e-05, -0.00587501, 0.07659624, 0.04844399, 0.05101117, 0.049871985, 0.03392506, -0.059640173, -0.05684805, -0.014197634, 0.05229019, -0.010115324, -0.019292437, -0.01241958, 0.010476477, 0.026611984, -0.056616455, -0.06166625, 0.024417927, 0.07279766, -0.058380768, -0.020317037, -0.024091633, -0.008276027, 0.01265619, 0.029785285, -0.018053507, -0.045225788, -0.03356566, 0.017089987, -0.06310136, -0.009026802, 0.032745138, 0.009961806, 0.018237196, -0.04024357, -0.00077725586, 0.017745635, -0.020326225, 0.021284604, 0.047749504, -0.033742554, 0.0029068214, 0.065465346, 0.020000337, 0.01939579, 0.010884586, 0.00073926215, -0.06953906, -0.038800035, 0.11608875, -0.075981, 0.017694514, -0.03193134, -0.03175149, -0.047822133, 0.009037811, 0.019073501, -0.052324403, 0.0047310423, 0.011453541, -0.009799898, -0.04575802, 0.030778622, -0.0015790678, -0.03582452, -0.009455514, -0.017436232, -0.0031106398, 0.06034528, -0.06407418, -0.019798387, 0.023489613, -0.03990895, -0.053368125, 0.034163106, 0.03449671, -0.0018852635, 0.064548835, -0.04001405, 0.057672434, -0.016629107, -0.01833863, -0.013666513, -0.067985274, -0.033181578, 0.027477594, -0.04638162, -0.03609665, 0.011957179, -0.0036013653, -0.0034059307, -0.0071668453, -0.08077877, 0.013107532, 0.0027702285, -0.0484834, 0.007022709, -0.05038309, -0.035036694, 0.01964451, 0.07817406, -0.0028438412, 0.038118653, -0.0090360055, -0.004613309, -0.025737764, 0.055952802, -0.016138628, 0.010487818, -0.009816798, -0.024783652, 0.013564487, 0.075483255, -0.014332525, 0.06404404, 0.038125813, -0.029480841, -0.04978904, -0.016657481, 0.032144073, 0.005504043, -0.0106683, 0.042231146, -0.05619538, -0.031028317, -0.046834227, -0.015707664, 0.03171974, 0.0023237513, -0.017456321, 0.022842998, 0.0075594573, -0.064418145, -0.01727289, 0.022024726, 0.085141, 0.039575104, 0.015060759, -0.030527664, -0.034805212, -0.022062674, 0.02257741, -0.025588697, 0.028970193, -0.023569407, -0.016295405, -0.02237956, -0.033257145, -0.015106974, -0.03657853, 0.03694394, -0.013873391, 0.003654042, -0.008698843, 0.016755745, 0.029264234, 0.011848038, -0.003299152, -0.0022311846, 0.0023710649, 0.030231265, -0.034162257, -0.01981929, -0.030173548, 0.038718436, 0.040816814, 0.07750465, -0.012242434, -0.009639134, -0.021999203, -0.033056922, -0.0072234925, 0.016748538, -0.06515844, 0.046584968, 0.037143357, -0.02074183, 0.007332447, 0.023005685, -0.009028909, 0.021362662, -0.033716302, -0.014963464, -0.016307896, -0.06435433, 0.0008642342, -0.029951595, 0.038984876, -0.031738266, -0.00273887, 0.011815492, -0.06189179, -0.05127601, 0.0706949, 0.006537847, -0.01926698, 0.0031634772, -0.053046428, -0.013851241, 0.030390147, -0.008724473, 0.014663375, -0.03142083, -0.033407103, -0.023729602, -0.014222177, 0.013397022, -0.043757167, -0.06603359, 0.0076630046, 0.027950132, 0.037735943, -0.037681222, 0.034084793, -0.0012281286, 0.021684466, -0.0037195524, 0.0007621989, 0.03567293, 0.024178639, 0.08401363, -0.03960511, 0.051716253, -0.03188416, 0.025644945, -0.032598354, -0.01728436, -0.005578883, 0.0056804386, 0.0009879941, 0.03481723, -0.052326076, -0.04683399, 0.015792072, -0.006485864, -0.09918849, -0.02307639, -0.010028617, -0.0006948412, 0.013256991, 0.011655359, 0.013463003, -0.029350134, 0.10363066, -0.0029484415, -0.029074544, -0.015596711, 0.020921027, 0.030030398, -0.012805797, 0.022689525, 0.009797217, -0.0012508733, 0.010829055, -0.011793672, -0.0051906463, -0.021298008, 0.0540434, -0.011433719, 0.04468776, 0.01317274, -0.0079418775, 0.02452511, 0.0057397024, -0.06966717, 0.0020817085, -0.015844757, 0.053295754, -0.076474085, -0.06446171, 0.06269403, -0.0026831909, -0.014006101, 0.040483613, 0.009859093, 0.004334739, 0.023068938, 0.044316355, 0.005617679, -0.0042844587, 0.017301245, 5.4500533e-06, 0.0037889525, 0.0010168464, -0.018634275, -0.0047387164, 0.01750651, -0.00021542807, -0.05660856, 0.062852904, 0.004625413, 0.01708947, 0.036193136, -0.0055140276, -0.027211275, 0.012741895, 0.018420298, -0.00063440244, -0.058599763, -0.026186164, -0.06726683, -0.02730254, -0.016774192, -0.021201242, 0.02034227, -0.04387523, 0.007751919, 0.042881913, 0.0057005826, -0.016299944, 0.059668154, 0.017884614, -0.023887437, -0.026959114, 0.038430825, 0.003498418, 0.023350738, -0.008420845, 0.023501832, -0.038033232, -0.005407763, 0.059105206, -0.058797296, 0.022560876, -0.0024159565, 0.08679771, 0.010443913, 0.026897049, -0.0073933913, 0.05251238, 0.0060339808, 0.033303708, 0.020381086, -0.04489901, 0.0060934513, 0.022497885, -0.050879, -0.0016407477, 0.018245067, -0.032325007, 0.03591444, 0.011500428, 0.011519625, -0.001020676, -0.055865955, 0.00081750826, -0.021418806, 0.04935467, 0.005216446, 0.0054247775, 0.041284584, -0.02847835, 0.03154494, 0.0044311723, -0.035958275, 0.0222736, -0.013745107, -0.041295156, 0.007701386, 0.0012307212, 0.016808866, 0.034745313, 0.039828483, 0.0034681086, 0.017517969, 8.342095e-05, -0.008166536, -0.00015495313, -0.042771615, -0.030035585, 0.028542018, -0.001523305, -0.077323645, -0.03598577, -0.010710497, 0.01660237, 0.009063318, -0.048086617, 0.02232521, -0.012160648, -0.042856175, 0.058974948, 0.034401834, -0.006370113, -0.03709347, -0.026676226, -0.019866738, 0.008998543, 0.07724157, 0.01147321, 0.010721073, 0.045086358, -0.01896036, -0.0044422834, 0.06877569, 0.024345528, 0.039445657, 0.019255312, 0.0103020165, -0.004792939, 0.04322781, 0.030693911, 0.032787744, 0.036680497, -0.06845494, -0.021507539, 0.014142691, 0.03657117, -0.01512116, 0.05252778, 0.08997952, 0.0038025414, 0.040578026, -0.040569615, -0.053992923, 0.04033495, -0.026281303, -0.023865094, -0.015438983, 0.062477358, -0.03955978, -0.04162432, -0.07964691, -0.009126707, -0.005846135, -0.050325014, -0.024909565, -0.0017105303, -0.070045725, 0.009608511, 0.0069331373, 0.053689063, -0.028984958, -0.057784595, 0.07522291, -0.09132231, 0.007959259, 0.017388979, 0.03738352, 0.00921949, -0.013582374, 0.05016554, -0.09335801, -0.080502875, -0.010180181, -0.0047590584, 0.068576664, 0.038444802, -0.017701276, -0.019307818, 0.010244143, 0.028414497, 0.038805403, 0.025451502, 0.022310713, 0.04243531, 0.005291449, -0.049394477, -0.026494563, 0.0112953745, -0.014997968, 0.046718113, -0.009527383, 0.019244678, 0.025705947, 0.04052557, -0.030346816, -0.002238516, 0.05124306, -0.05203039, -0.0022961409, 0.02161459, -0.041937295, -0.008856965, -0.026624808, -0.032719143, -0.028168583, -0.015755324, 0.024787245, 0.03516919, -0.008850826, 0.021017263, -0.023829766, -0.01168817, 0.019326625, -0.003030983, 0.070671126, 0.00015483527, -0.022009894, -0.0035055426, -0.011750632, -0.02740552, -0.046554353, 0.03604061, 0.007362438, -0.05948371, -0.0130755985, 0.04951726, -0.002082112, 0.0048252195, 0.040176958, 0.088600785, -0.010110647, -0.010296106, 0.04200166, -0.016858773, -0.061658807, 0.021299208, 0.0062690633, -0.0051369206, 0.037677787, -0.009964191, -0.032696452, 0.07432018, 0.011946004, 0.002251666, -0.06417117, 0.0071530705, -0.0012465497, -0.02434731, -0.000949345, -0.026185883, -0.0061467276, 0.016179165, 0.029342119, -0.0470021, -0.018516425, 0.005014007, -0.079284474, -0.043585286, 0.044852275, 0.014407746, -0.013330133, -0.058623467, -0.0013036724, -0.046881102, -0.049834315, 0.0007160489, -0.031883664, 0.031237157, 0.015501685, -0.02500916, 0.016990824, -0.117327705, 0.010574482, -0.034715675, 0.028100627, -0.017536426, -0.030042429, -0.059912488, 0.022865644, 0.025250781, -0.05130665, 0.003591256, 0.042582985, -0.016135862, -0.02966518, 0.065075405, -0.034463692, 0.01647465, -0.020091616, 0.025223974, 0.01061189, -0.025832234, 0.06700555, 0.03251255, 0.028947534, -0.0335124, 0.037495133, 0.005046753, 0.045906086, -0.024198538, -0.034057327, -0.033502106, -0.03744155, -0.023877071, 0.03870782, 0.01556507, -0.02426489, -0.0029730008, -0.042000066, 0.052615676, 0.0091670565, 0.0030897893, 0.015600813, -0.043048672, 0.023649842, -0.018349446, -0.033597045, 0.058579676, 0.04391198, 0.032998692, 0.07235784, 0.004078515, 0.025598668, 0.004669182, -0.05662799, -0.050932117, 0.02405371, 0.003349678, -0.05194675, 0.009960645, 0.0028638372, 0.0011760927, -0.027033048, 0.06275957, -0.0740241, -0.028500808, -0.0063580587, 0.000698539, -0.0847379, 0.007900192, 0.011145922, 0.011507969, 0.10313134, -0.068952024, 0.023239693, -0.07453765, 0.009800997, -0.04293867, 0.0065860944, -0.06363952, -0.011432977, -0.0012554424, 0.02729558, 0.01057504, 0.042910405, -0.05687781, 0.03281436, -0.05992026, -7.91167e-05, 0.055625923, 0.04345044, 0.04144366, 0.013683956, 0.03984732, 0.0508785, 0.018462393, 0.0074909204, 0.0023179234, -0.013759835, -0.029511739, 0.088605605, 0.015175703, -0.026335854, -0.05381016, 0.01831086, -0.042141024, 0.029649142, -0.05307732, -0.027797338, 0.004338497, 0.036251243, 0.017192481, 0.001148119, -0.03189875, -0.0012166376, -0.03335098, 0.006601827, 0.02320265, 0.0069256746, -0.024014916, 0.017857503, 0.046715185, -0.0037598016, -0.05030953, -0.022277415, -0.051041882, -0.034502175, -0.046324566, 0.034005716, 0.046971355, -0.0056671486, 0.057001173, 0.01560282, 0.011626878, -0.04822872, 0.015868632, 0.012159561, -0.026910264, -0.00093743566, 0.002605943, -0.0010580311, -0.08270642, 0.001429984, 0.042064067, -0.0327067 ] }, { "values": [ 0.0016715679, -0.04071814, -0.07629877, 0.006496614, 0.022132142, 0.031037696, 0.020861508, 0.030871404, 0.010062864, -0.004320632, -0.002511381, 0.036537383, 0.017158236, -0.010394758, -0.027645282, -0.054451086, -0.016265748, -0.0027573549, -0.06810488, -0.047499526, 0.01609701, 0.02820449, 0.0324833, -0.019541489, -0.025561504, 0.04156002, 0.044871595, -0.041050714, 0.028259464, -0.030736018, 0.054794654, 0.060024083, -0.009838325, -0.00249568, 0.06762914, 0.03103073, -0.047738533, 0.0017837144, 0.03166469, -0.038765896, -0.05991926, 0.010366476, 0.022219554, 0.024712468, -0.01665016, 0.032495044, -0.008581559, 0.009707648, -0.066656314, 0.056415826, -0.049415026, -0.018776083, 0.0017670667, -0.019225772, 0.020661205, -0.03279932, -0.046275724, -0.025103388, 0.060925633, -0.01316492, 0.024961667, 0.0074332654, 0.029886285, -0.009027309, -0.030589735, -0.027945528, -0.06468854, -0.044506174, -0.056021456, 0.06245281, -0.02707394, 0.049787637, -0.04122659, 0.0032913939, 0.0032418317, -0.0006396527, -0.0060853986, 0.036015667, -0.039375328, 0.016302947, -0.023018258, -0.01689673, 0.09832285, 0.038501304, 0.06329568, 0.034692843, 0.02824232, -0.04998229, -0.05200833, 0.0053554885, 0.08652921, -0.018704655, 0.011371314, -0.0003713721, 0.027821543, 0.021103233, -0.06257718, -0.095657036, 0.0111852335, 0.0813325, -0.047720756, -0.0024848762, 0.0092605855, -0.015066326, 0.03064651, 0.012750126, -0.004098606, -0.03565958, -0.02811243, 0.009302621, -0.043185282, -0.017089749, -0.005446691, 0.0096959835, 0.037450217, -0.05333318, 0.0106570115, 0.028290031, -0.033506665, 0.032740593, 0.06590866, -0.032132275, 0.0073630014, 0.08267753, 0.013839986, 0.010901037, 0.014564257, -0.0002816309, -0.042827748, -0.07093176, 0.09255803, -0.065378025, 0.023995021, -0.017552229, -0.032500282, -0.039235283, -0.0026984739, 0.04398752, -0.02849181, -0.022729484, 0.013615031, -0.023012875, -0.0027971508, 0.032400496, 0.009005177, -0.030643634, 0.02190074, 0.0011624374, 0.01136118, 0.029255107, -0.08472866, -0.008779857, 0.034945253, -0.035607386, -0.05279843, 0.020132005, 0.04320806, -0.04248974, 0.069637954, -0.03866859, 0.011026105, -0.01905793, 0.004821861, -0.01504138, -0.0908478, -0.032231353, 0.013861601, -0.07819635, -0.0051501435, -0.023409728, 0.011944948, -0.01046386, 0.030439831, -0.076922104, 0.001143127, -0.0103412885, -0.043983825, 0.018839087, -0.06942506, -0.025165696, 0.019366404, 0.05523095, 0.009449956, 0.010029929, -0.03290358, -0.006717539, 0.006677048, 0.055561174, -0.018776858, 0.006755721, -0.026209543, -0.012067752, 0.010768086, 0.059975397, -0.026461495, 0.05898827, 0.042343546, -0.0031358101, -0.04294048, -0.03325638, 0.042334434, -0.040848706, -0.006385121, 0.02244327, -0.039034925, -0.049283825, -0.044450343, -0.019534716, 0.027782463, 0.019777745, -0.030162971, 0.013333011, -0.013664926, -0.06511995, -0.0038329666, 0.0053107035, 0.07300838, 0.078893274, 0.024246562, -0.05179551, -0.01917842, 0.021850247, 0.018331993, -0.022468653, -0.00019108353, -0.03623131, -0.020429822, -0.025087165, -0.034365527, -0.010820534, -0.04924209, 0.03393678, -0.0017160279, -0.007970014, 0.002212836, -0.009164197, 0.007160402, 0.013476434, 0.010387883, -0.027022261, 0.020869752, 0.045824204, -0.018766036, -0.01951499, -0.011775741, 0.029409237, 0.04413983, 0.09819059, -0.015352856, -0.035430126, -0.025370913, -0.018700624, -0.018596433, 0.013245806, -0.07739415, 0.031225665, 0.025611252, -0.01338958, 0.004184441, -0.006798427, -0.00706406, 0.0067575905, -0.026457554, -0.014781024, -0.02971933, -0.08381975, 0.011170167, -0.033695426, 0.031176405, -0.01627295, 0.0026762667, -0.0030982085, -0.045583285, -0.0690786, 0.048545774, 0.0043531004, -0.023423728, 0.021169167, -0.042982787, -0.014165879, 0.046138633, 0.007412645, -0.019519055, -0.023126213, -0.00435067, -0.046727847, -0.016503686, -0.00016940007, -0.040433295, -0.06946279, 0.019988572, 0.05073282, 0.01881779, -0.0002680043, 0.019071685, -0.0070922417, 0.005584423, -0.0058917897, 0.018599613, 0.028729608, 0.023922669, 0.07671805, -0.029717546, 0.048104774, -0.031373426, 0.048661504, -0.033186853, -0.038863886, -0.024988972, 0.021336066, 0.0092661455, 0.06445728, -0.051017202, -0.03726882, 0.01693883, 0.0001823593, -0.08224368, -0.013897482, -0.011301859, -0.017071042, 0.025480324, 0.031757426, -0.010314481, -0.034328792, 0.09552867, -0.0012162687, -0.0376315, -0.0127738025, 0.014807455, 0.027999513, -0.0058595017, 0.024418358, -0.00040195926, -0.022265451, 0.016590802, -0.017279431, -0.012569718, -0.010368167, 0.038306355, -0.023938498, 0.031227132, 0.025543012, 0.030793412, 0.022724088, -0.027961487, -0.06124831, 0.012816234, -0.026381493, 0.04543615, -0.0689054, -0.053452093, 0.063408315, -0.0007311162, -0.0011712514, 0.04755391, 0.011483539, 0.0130421305, 0.023338728, 0.031033436, 0.003203858, -0.004048939, 0.020025901, 0.018761292, 0.004325424, -0.02950362, -0.022361971, 0.0034607383, 0.029106515, 0.016116139, -0.04485634, 0.022848543, 0.025163744, 0.0042501227, 0.008769772, -0.015908109, -0.052229874, 0.0043589245, 0.0038271877, 0.013581439, -0.059746087, -0.025402669, -0.03855052, -0.008637477, -0.02257832, -0.01895911, 0.02547747, -0.035299618, -0.022002472, 0.031165283, 0.00480904, -0.011373126, 0.07929681, 0.01329959, -0.011431359, -0.024277175, 0.02024236, 0.011442149, 0.020194458, 0.00923802, 0.026097095, -0.025898797, 0.007716863, 0.052023474, -0.043042623, 0.01909609, 0.020188114, 0.07019154, -0.0092371125, 0.010434055, 0.0035045438, 0.045202855, -0.0008755345, 0.04552248, -0.00056737615, -0.0474396, -0.018265847, 0.026668072, -0.04549426, -0.013864535, 0.035838008, -0.020320196, 0.02937678, 0.013505157, 0.0503434, -0.0039777905, -0.05240541, 0.016561817, 0.0021917138, 0.05481596, 0.012699181, 0.03118174, 0.04944466, -0.03892429, 0.05261692, 0.014375538, -0.044335566, 0.039354924, -0.0024965534, -0.037046287, 0.010873528, -0.00264576, 0.009603322, 0.040904112, 0.023418931, 0.0021506962, 0.06280912, 0.029380862, -0.019450251, 0.0025728708, -0.06392064, -0.047245584, 0.054048706, -0.025286445, -0.07617976, -0.021166349, -0.01701017, 0.00762893, 0.023243953, -0.041614287, 0.015163144, -0.035341416, -0.04606817, 0.06612686, 0.049925484, 0.0215636, -0.054524045, -0.035923973, 0.012266558, 0.014342184, 0.057859305, 0.0027705545, 0.0021612984, 0.012646939, -0.0026194232, 0.005738358, 0.057850305, 0.029853536, 0.019628095, 0.003382171, -0.013729793, 0.019833023, 0.053273294, 0.00657621, 0.0107400725, 0.04409365, -0.059644576, -0.03573277, 0.007313674, 0.031567045, 0.00030225332, 0.022337837, 0.066808425, 0.017856026, 0.010799829, -0.050782852, -0.044730384, 0.042643126, -0.0061399736, -0.036313407, -0.031290624, 0.074161395, -0.032092847, 0.00086092204, -0.051119138, 0.00025550064, 0.008810476, -0.04091628, -0.019112522, 0.023705356, -0.045301825, -0.023381585, -0.012647051, 0.061598603, -0.023431683, -0.055854227, 0.07752134, -0.08711855, 0.017098261, -0.0030343872, 0.048210446, -0.015119378, -0.030371998, 0.059742194, -0.0981036, -0.08835787, -0.015381739, -0.014074886, 0.04471617, 0.032091238, -0.01932266, -0.011800247, 0.030694736, 0.023434874, 0.016516527, 0.027029851, 0.03223836, 0.05195198, -0.028180502, -0.026265102, 0.009452574, 0.013221312, -0.013929897, 0.06566451, 0.0067008655, 0.023200888, 0.0102601, 0.004956537, -0.048584737, 0.017428221, 0.0768514, -0.034424927, -0.038806155, -0.0019550945, -0.038252864, -0.003916078, -0.04286271, -0.026287604, -0.0023290718, -0.022695713, 0.028624043, 0.044426005, -0.020222934, 0.012332185, 0.0043664402, -0.033259828, 0.023787325, -0.02729466, 0.08583521, -0.0036870602, -0.016840788, -0.01968044, -9.389314e-05, -0.019517966, -0.06432577, 0.025170585, 0.012255322, -0.031050531, -0.015941434, 0.04561097, 0.00837795, 0.031282518, 0.04946868, 0.0677409, -0.008570155, 0.021401621, 0.0422769, 0.0009142323, -0.06654019, 0.033478413, 0.014090183, -0.01422013, 0.047861226, 0.0018610854, -0.028008267, 0.06906286, 0.0024919307, -0.011125742, -0.051809154, 0.013119828, 0.0010513463, -0.028171731, -0.016382085, -0.050147355, 0.01365398, 0.021081543, 0.04518103, -0.01975321, -0.037795804, 0.016841104, -0.040528316, -0.06987724, 0.0275968, 0.0015164636, -0.017400695, -0.044124857, -0.0016846624, -0.040070504, -0.06153282, 0.01957649, -0.0240563, 0.043985862, 0.020725554, -0.01451944, 0.017748166, -0.09388566, -0.0048173084, -0.023462046, 0.046896346, -0.028590549, -0.0350793, -0.046830617, 0.013827729, 0.02960828, -0.05232851, -0.010389731, 0.054178126, -0.005064233, -0.00616623, 0.048782226, -0.051513102, 0.014573811, 0.00046795743, 0.025254363, 0.034394346, -0.05900652, 0.0506278, 0.036184147, 0.038032252, -0.036562648, 0.034167036, -0.025058877, 0.0013761959, -0.024764642, -0.023055507, -0.04302333, -0.044442225, -0.027424697, 0.009835047, 0.020292379, -0.02183471, -0.01933147, -0.027124133, 0.049826186, 0.031180326, -0.0110714575, 0.009240635, -0.055460684, 0.037695114, -0.020767685, -0.051499754, 0.044821464, 0.026450817, 0.043957993, 0.09211148, -0.0026318058, 0.018374955, 0.014981407, -0.050975163, -0.030808803, 0.02917245, -0.0067040673, -0.02434911, 0.0050422214, 0.007973629, -0.0024515663, -0.025129069, 0.05010226, -0.06799264, -0.020571334, -0.002265834, 0.015581879, -0.06190242, -0.010440974, -0.0060505294, 0.009558288, 0.10852916, -0.087253205, 0.04006637, -0.06446899, 0.0068188687, -0.038246967, 0.0051519256, -0.060530264, 0.00015158395, 0.028699493, 0.030140726, 0.0039481833, 0.028510377, -0.047646545, 0.02738374, -0.06996436, 0.02718284, 0.059205182, 0.043060474, 0.030347735, 0.017581552, 0.054524053, 0.02720378, 0.05803407, 0.04698758, -0.004262047, -0.021395504, -0.035062507, 0.078724, 0.027948737, -0.006208442, -0.061285228, 0.030664222, -0.038115345, 0.044642694, -0.050062794, -0.023590324, -0.0076338155, 0.056212693, 0.011142579, 0.009407735, -0.021405771, -0.010671543, -0.028440721, 0.0041584386, 0.012632767, 0.0004974752, -0.018845245, 0.04690529, 0.03433106, -0.0052574445, -0.04099755, -0.040889703, -0.051305912, -0.026555855, -0.04034031, 0.04581737, 0.039749432, -0.017550668, 0.040661473, 0.0052472195, 0.011926755, -0.046054557, -0.0153836, 0.016486384, -0.012339661, 0.016503716, -0.010625222, -0.00026205074, -0.08494537, -0.0025347455, 0.02224798, -0.042888455 ] }, { "values": [ 7.747286e-05, -0.062273674, -0.059596382, 0.000111865185, 0.002218287, 0.02176622, -0.012867104, 0.05679282, 0.0018313027, -0.023569152, 0.0064436104, 0.036551442, 0.023796923, -0.021117285, -0.03790235, -0.027946413, 0.0029678976, -0.02710895, -0.06591406, -0.008528201, 0.03147397, 0.032681696, -0.0023204547, -0.025163952, -0.010912237, 0.056145616, 0.036523543, -0.051737532, 0.032127973, -0.030160336, 0.056350723, 0.023140611, -0.012309853, 0.0219295, 0.016147664, 0.037890397, -0.03527544, 0.014889022, 0.049724013, -0.0547476, -0.05279217, -0.00073111284, 0.004853088, 0.020279294, -0.038972132, 0.031801842, -0.02022009, 0.005137297, -0.051947784, 0.037976015, -0.025003018, -0.029694652, 0.02314589, -0.006552652, 0.018594677, -0.016020063, -0.045143947, -0.038037796, 0.05573981, 0.0009817726, 0.036439523, 0.02162108, 0.011815109, -0.015279281, -0.031570163, -0.036768217, -0.08051639, -0.06620546, -0.048175547, 0.04228638, -0.033254143, 0.025541484, -0.049343906, 0.013487434, 0.013111484, -0.024564032, 0.0030577164, -0.0023730912, -0.03775471, 0.024046699, -0.0026547883, -0.039440468, 0.044260062, 0.06056892, 0.062500566, 0.01691342, 0.02496752, -0.043556035, -0.06620057, -0.012770611, 0.048529394, -0.019886257, -0.022093637, -0.027300248, 0.036173314, -0.023485921, -0.035183668, -0.073778264, 0.02660143, 0.061545596, -0.057392236, -0.008467838, 0.0055133575, -0.03649423, 0.046157993, 0.028418532, -0.013671006, -0.05310148, -0.0025808378, 0.0035815837, -0.053517845, -0.03024131, -0.03318674, 0.0239268, 0.0209825, -0.052491505, 0.03912261, 0.015053854, -0.038324982, 0.0027335563, 0.051006813, -0.014198858, 0.02445409, 0.08048713, 0.016540699, 0.033148438, 0.0026012512, -0.018983813, -0.028239999, -0.058614757, 0.07168567, -0.06934404, 0.027966656, 0.003605889, -0.049063493, -0.037139453, 0.016988708, 0.04659009, -0.053820048, -0.021332495, 0.011951515, -0.025630398, -0.017515775, 0.061760657, 0.01610749, -0.040271178, 0.0015592392, -0.0059703253, -0.00021451966, 0.019003201, -0.083043054, -0.0074350457, 0.018960545, -0.049799558, -0.040267404, 0.0027908492, 0.04174361, -0.078068696, 0.062489096, -0.032630794, 0.014656709, -0.033010628, 0.0075945365, -0.017007483, -0.058040332, -0.011178781, 0.018154481, -0.06538864, -0.029048622, -0.030357849, -0.009400744, -0.045146137, -0.021256668, -0.08259152, -0.011136383, -0.01531131, -0.058880474, 0.025996221, -0.061567903, -0.034742706, 0.024670001, 0.07510517, 0.01684501, -0.012319766, -0.058930896, -0.014931167, 0.030269759, 0.08077007, -0.023383047, 0.015584067, -0.024070933, 0.013567918, 0.014971352, 0.055475235, 0.005130205, 0.056809995, 0.047797374, -0.010333456, -0.07027916, -0.03815418, 0.024004769, 0.009746861, -0.009388915, 0.04186687, -0.026222173, -0.045233034, -0.036862615, -0.030012654, 0.052896246, -0.0021174955, -0.01511697, 0.05318074, 0.004186359, -0.07532771, 0.0021137525, -0.0034922727, 0.07222968, 0.05644933, 0.019859293, -0.0728738, -0.012648185, 0.015730655, 0.03375879, -0.013532385, 0.05041464, -0.007355059, -0.0082725845, 0.00449577, -0.012283688, -0.041058283, -0.039256398, 0.0100235455, -0.018400947, -0.016900197, 0.03473672, 0.017924601, 0.0516227, 0.01841829, -0.020840133, 0.013480142, 0.023381436, 0.040482506, 0.0015039495, -0.02551627, -0.037345774, 0.057165507, 0.06111492, 0.07166071, -0.043943282, -0.06500515, -0.028771918, -0.040721595, -0.03942421, -0.0139377145, -0.082747266, 0.018176025, 0.037178148, -0.008927636, 0.01961299, 0.017614493, 0.012876737, 0.0023809506, -0.028574966, -0.035963383, -0.017343607, -0.064910926, -0.003434257, -0.040852655, 0.044804517, -0.04800535, -0.0042337966, 0.0017165347, -0.07250761, -0.030501919, 0.056433704, 0.027678715, -0.023009036, 0.0049000112, -0.063022174, -0.019924434, 0.07224705, -0.0047098603, 0.0064486437, -0.032825135, -0.016175903, -0.018783309, -0.0061654644, 0.019874996, -0.02584213, -0.074161276, 0.023143733, 0.037998155, 0.03455955, -0.0077920295, 0.039790288, -0.0021311517, 0.0032693034, -0.0036351467, -0.02226837, 0.02841723, -0.009421263, 0.0703606, -0.021651482, 0.04777419, -0.007546999, 0.045613233, -0.03294487, -0.040918235, -0.009027341, 0.0042914525, 0.007327711, 0.071679175, -0.06217026, -0.04946063, 0.0049877847, -0.008001165, -0.09245715, -0.008333435, -0.0025218404, -0.0028927785, 0.01377219, 0.019807052, -0.014749917, -0.038559686, 0.062964775, -0.00045946325, -0.026202997, -0.0236954, 0.033972934, 0.01632704, 0.0005213985, 0.04694363, 0.014649117, -0.018097697, 0.005138857, 0.015819324, -0.025955126, 0.011395051, 0.02500057, -0.0007662877, 0.012464405, 0.021683665, 0.03126207, 0.023588993, 0.01969398, -0.053501997, 0.011934116, -0.0017951365, 0.046264574, -0.07079281, -0.06054555, 0.07004673, -0.013985151, -0.004970987, 0.0435589, 0.029844405, 0.01852954, 0.05394378, -0.013686658, 0.015165117, -0.021652991, 0.0044916593, 0.022900637, 0.03099848, -0.020687642, -0.011948616, 0.013165763, 0.033976514, 0.0014813107, -0.034627244, 0.04417348, 0.045579687, 0.009605824, 0.045494515, -0.013089909, -0.077049956, -0.007994253, -0.007050331, 0.017998077, -0.046593938, -0.011500003, -0.044428054, 0.0048539303, -0.024342893, -0.017788157, 0.019171111, -0.031489097, -0.02119369, 0.022939967, 0.020219821, -0.025565073, 0.04917758, -0.002514866, -0.013308486, -0.015206062, 0.030026091, 0.04150402, 0.021949502, -0.013398631, 0.010929125, -0.037491083, -0.00039779657, 0.039118446, -0.062217563, 0.020813601, 0.020898761, 0.08022683, 0.013877293, 0.005836955, -0.019846162, 0.04435615, -0.009833383, 0.03650774, 0.02904811, -0.039168667, 0.0020525493, 0.022429682, -0.05802346, -0.011642492, 0.024545165, 0.025964689, 0.016340207, -0.013510181, 0.059058167, -0.027366366, -0.05271534, 0.024736576, 0.017211776, 0.043857653, 0.0037635448, 0.020392057, 0.02268739, -0.04582523, 0.044884298, -0.015578664, -0.03363647, 0.037494615, 0.0038707128, -0.004650017, 0.006308908, -0.007903877, 0.0053271856, 0.029969385, 0.053685933, 0.0030817958, 0.038956583, 0.009278041, -0.021510307, -0.0011661997, -0.058535043, -0.047101278, 0.024142908, -0.00019491691, -0.066838086, -0.040000558, -0.026575148, 0.0414156, 0.0030625071, -0.017610075, 0.010399115, -0.044385318, -0.019414721, 0.07435732, 0.033368513, -0.0070250058, -0.03317971, -0.029225422, 0.015727585, -0.011799144, 0.08696309, 0.013874098, 0.009273618, 0.010031208, -0.021060497, -0.0033024568, 0.050682288, 0.015733944, 0.041269135, 0.017953278, -0.01106145, 0.02407769, 0.051161002, 0.0075821322, 0.023255333, 0.04299564, -0.048783153, -0.025740564, 0.03326083, 0.03045944, 0.028089669, 0.045263268, 0.09512547, 0.0060433303, 0.019252224, -0.04220743, -0.021472853, 0.034284595, -0.025104145, -0.021433113, -0.045548115, 0.08584767, -0.025700256, 8.665832e-05, -0.05023717, -0.031170169, 0.0072223404, -0.056911662, -0.021275513, 0.023464257, -0.03951264, 0.002679514, -0.0005422091, 0.06688269, -0.007427833, -0.027121417, 0.08272711, -0.09313196, -0.005102421, 0.0069505027, 0.047801465, 0.004414075, -0.0021639543, 0.054370657, -0.07569102, -0.09969488, 0.004417545, -0.045259275, 0.052973907, 0.04631744, -0.03236342, -0.028981883, 0.029979145, 0.02176123, 0.022470409, 0.03650627, 6.988969e-05, 0.051120095, -0.0062991013, -0.036431346, -0.014974773, 0.004707299, 0.02990996, 0.06515865, 0.0043783085, 0.03205684, 0.017125292, 0.013194592, -0.054301556, -0.012965613, 0.088795334, -0.037548658, -0.017382098, 0.021055544, -0.014059843, 0.03342743, -0.053337775, -0.024752472, 0.0014272471, -0.027871115, 0.020863501, 0.051456477, -0.013595261, -0.0016810774, 0.01905364, -0.0013821225, 0.021574186, -0.041146003, 0.058187332, 0.013665499, -0.027943548, -0.00962095, 0.017429005, -0.018745704, -0.057422623, 0.0665962, 0.010544874, -0.036482427, -0.00850826, 0.044523057, 0.011823383, 0.03409909, 0.028548513, 0.06778331, -0.030768642, -0.004572706, 0.042589713, 0.029558085, -0.06826659, 0.006561408, 0.034682613, -0.017968683, 0.0011410209, -0.007175565, -0.019919476, 0.05910964, -0.020142043, -0.024695382, -0.028676977, 0.016449895, 0.006869564, -0.02379495, 0.0019361221, -0.024877947, 0.015153007, 0.006936475, 0.034246072, -0.024384795, -0.0420432, 0.003913527, -0.017434802, -0.054289997, 0.031796172, -0.014428287, -0.0056373505, -0.033506706, 0.018125674, -0.031350113, -0.038006518, 0.001071955, -0.022668928, -0.0006078608, 0.030002851, 0.008118149, 0.0016719635, -0.08991529, 0.02452529, -0.052765682, 0.03887402, -0.015296189, -0.017188484, -0.029955914, 0.034386676, 0.01609322, -0.049100183, 0.008775541, 0.048452824, 0.001312615, -0.016966151, 0.02370864, -0.05231149, 0.028349051, -0.004057593, 0.030693144, 0.021756373, -0.07287995, 0.040375527, 0.0010598555, 0.02785912, -0.03347127, 0.04004829, -0.02467245, 0.029074984, -0.03391121, -0.023837687, -0.039188467, -0.03586397, -0.038503725, 0.0013990541, 0.01123188, -0.008920938, -0.012812605, -0.018962068, 0.06743534, 0.011317641, -0.017117864, 0.01723524, -0.027974999, 0.02339649, -0.021895776, -0.024847066, 0.04012284, 0.032926034, 0.03497236, 0.077315964, -0.010869066, 0.025615241, 0.002722523, -0.012168051, -0.06421176, 0.05004831, -0.0036922721, -0.0561581, -0.0064076562, -0.02421495, -0.009427642, -0.008486918, 0.041022576, -0.071080506, -0.004276341, -0.0031158586, -0.018178323, -0.08264638, 0.0036300477, 0.007356835, 0.00769465, 0.07698299, -0.060122468, 0.048922922, -0.056231268, 0.030213732, -0.05310991, 0.0075738276, -0.05047604, -0.014119611, 0.033381015, 0.055271402, 0.015654363, 0.024830043, -0.032143064, 0.040373422, -0.08514709, 0.026170371, 0.0806693, 0.058314204, 0.025620809, 0.01596594, 0.0532956, 0.010154057, 0.047322713, 0.008062115, -0.010882149, -0.038793623, -0.02838036, 0.09217201, 0.03321247, -0.013345282, -0.054778513, 0.021412453, -0.018153114, 0.06386811, -0.023621151, -0.024548505, -0.023513352, 0.06501446, 0.02128337, -0.012318513, -0.025828877, -0.015615419, -0.0106513435, -0.020311631, 0.0038985163, -0.01209162, -0.028415343, 0.020770114, 0.031913478, 0.0059950054, -0.02384868, -0.024232402, -0.03367394, -0.0057270546, -0.03116195, 0.008854707, 0.034691393, -0.02282875, 0.03366616, -0.018999588, 0.04218734, -0.065561384, 0.0069119534, 0.023851113, -0.00051131676, -0.007068913, 0.01754349, 0.0107337395, -0.09878476, 0.017852213, 0.021173986, -0.049120463 ] }, { "values": [ -0.010454479, -0.039948057, -0.03490793, 0.018265916, 0.02609194, 0.023901194, 0.038809687, 0.0038572564, 0.0041907863, -0.0058040074, 0.019510156, 0.048617393, 0.00030811157, -0.017381085, -0.023779398, -0.031666145, 0.013473312, 0.004120159, -0.07451771, -0.050577912, 0.04217915, 0.012875269, 0.010874319, -0.027675992, -0.026806854, 0.014429088, 0.030907577, -0.06126877, 0.026068818, -0.04362651, 0.061717547, 0.0641622, -0.016377028, -0.017306058, 0.061519675, 0.021496058, -0.03652703, -0.010846716, 0.06165115, -0.053026985, -0.037838392, 0.00014727617, -0.0024453765, 0.013765434, -0.028272731, 0.044414606, 0.0017098788, 0.025969278, -0.025451036, 0.054168228, 0.0029381197, -0.020849131, 0.045520127, -0.010176742, 0.036812656, -0.037216324, -0.07616429, -0.059826273, 0.04225411, -0.0004175166, 0.032895282, 0.003786565, -0.010746685, -0.032476597, -0.0045697936, -0.021961108, -0.037141297, -0.06756544, -0.05149823, 0.049328357, 0.004069842, 0.05765333, -0.02524695, 0.0031407576, 0.00074394216, -0.0063445857, -0.034417074, 0.026525965, -0.070683956, -0.007975912, -0.04686057, -0.010216606, 0.05530109, 0.04270489, 0.06394136, 0.00901987, 0.01436599, -0.059971835, -0.043871257, 0.008670396, 0.078670725, 0.0007256437, 0.0052938433, -0.008811917, 0.016851382, -0.024145983, -0.04341541, -0.071638115, 0.02567856, 0.09726037, -0.017339952, -0.013168524, 0.03358743, -0.024556085, 0.058430288, 0.01269571, -0.012526786, -0.04418843, -0.020466292, 0.012938141, -0.063384354, -0.022139464, -0.013906064, 0.018828385, 0.024063736, -0.048810083, 0.02293036, 0.027251272, -0.028374955, -0.011780146, 0.051264327, -0.034672916, -0.02456598, 0.07333347, 0.008977352, 0.02197616, -0.015366225, 0.0049020266, -0.02432667, -0.07774025, 0.090178296, -0.0793618, 0.01704725, -0.012821358, -0.036165968, -0.034427013, 0.001521992, 0.039443944, -0.022235567, -0.011975764, -0.01078886, -0.017818574, 0.0029617334, 0.052559633, 0.004856143, -0.04442016, -0.0036016267, 0.017571392, -0.021815432, 0.034346115, -0.0943276, 0.012416585, 0.0161472, -0.015982138, -0.032320507, 0.028685128, 0.060481776, -0.04808137, 0.07006702, -0.042142, 0.034711394, -0.015394249, 0.010041957, -0.007326238, -0.06166161, -0.07021596, 0.007479517, -0.05693636, -0.0002878183, -0.046857707, 0.018769978, 0.0007270821, 0.0025752594, -0.08909646, 0.01273497, 0.014269062, -0.020626802, 0.027333086, -0.05057547, 0.010990691, 0.03358544, 0.04526853, 0.005175607, 0.003946212, -0.04748594, -0.01337531, -1.76214e-05, 0.065606244, 0.008596438, 0.026249029, -0.030315623, 0.010707059, -0.012313257, 0.0593844, 0.004525301, 0.059055403, 0.03897119, -0.009509319, 0.01633343, -0.029163482, 0.06950132, -0.018234903, -0.002212765, 0.022578077, -0.02339089, -0.042759694, -0.008326146, -0.015582231, 0.03936045, 0.020642545, -0.07047957, -0.0073261946, 0.007947793, -0.062465128, -0.014008906, 0.028754313, 0.07250004, 0.05833687, -0.003603427, -0.046488754, -0.0136389565, 0.013200334, 0.027147893, 0.003917809, 0.025082171, -0.04731636, -0.023832593, -0.055994134, -0.02883217, 0.008413413, -0.058209658, 0.01927118, -0.0003325462, -0.0017841337, 0.00133314, -0.0008311721, 0.017761204, 0.014052753, -0.00422518, 0.0005866762, -0.0010230823, 0.050819512, 0.013669902, -0.0029927196, -0.0132362405, 0.06741626, 0.0609654, 0.08941255, -0.032175586, -0.06764062, -0.028977156, -0.04356042, -0.046582393, 0.026061201, -0.06256475, -0.0016865128, 0.02613148, -0.037863493, 0.007703207, -0.03130692, 0.011348419, 0.0014106418, -0.04003802, -0.0229784, -0.03509785, -0.06008529, -0.0049117906, -0.015154188, 0.04664889, -0.0028674237, 0.005368004, 0.0031160438, -0.05139282, -0.050786864, 0.023463124, 0.011905587, -0.027264742, 0.009170077, -0.043474358, -0.02612254, 0.069902085, 0.010172178, -0.03930788, -0.023072518, 0.012210403, -0.03667923, 0.0046493383, 0.005385682, -0.035333358, -0.06539082, 0.050483845, 0.04239037, 0.033275567, -0.017681725, 0.026761206, -0.003395086, -0.0054120766, -0.0050491677, -0.003629369, 0.00045911415, 0.03234887, 0.057842057, -0.008570231, 0.024682479, -0.010773017, 0.05527738, -0.03860961, -0.063760504, -0.005525426, 0.032790925, 0.0034532675, 0.056893997, -0.03936885, -0.035791703, 0.017936438, 0.015556195, -0.094917044, -0.0069278157, -0.0061789067, -0.01563931, 0.0144181745, 0.03704488, -0.009821289, -0.021685826, 0.059139267, -0.014857304, -0.036370438, -0.022601038, 0.026732018, 0.036505535, 0.013721893, 0.039295707, -0.0019676827, -0.0016092251, 0.011767854, -0.00037852977, -0.009252142, -0.0032418463, 0.035058554, 0.00085838063, 0.02257032, 0.012374615, 0.03620628, 0.024729386, -0.01662219, -0.06485693, 0.006264867, -0.030426858, 0.057402357, -0.065004915, -0.08482372, 0.0439634, 0.026261508, -0.014543053, 0.027499525, 0.03573239, 0.037766777, 0.044317182, 0.01112934, -0.012413399, -0.00547983, 0.054296855, 0.02604528, 0.016243584, -0.024905821, -0.018943781, 0.01114975, 0.016351102, 0.004671726, -0.044123325, 0.025499757, 0.030422395, -0.007981112, 0.007857938, -0.014836594, -0.08152884, -0.0037421687, 0.014227322, 0.014785047, -0.067652926, -0.033888914, -0.021042472, 0.019158673, -0.025056994, -0.035018586, 0.010655301, -0.046114568, -0.04637646, 0.034801632, 0.042972393, -0.019621152, 0.06845151, -0.00048583845, -0.0025784983, 0.004130277, 0.0076379953, -0.022249399, 0.018028839, 0.0062072477, 0.01626231, -0.043618347, 0.0135819465, 0.049253106, -0.046853557, 0.0071315155, 0.023306498, 0.08266524, -0.0115870265, 0.0079658795, -0.015120016, 0.03763854, 0.0026751517, 0.030490112, 0.0050067846, -0.051535297, -0.041531306, 0.01119453, -0.035701822, -0.010995358, 0.011666556, 0.0022862214, 0.03127301, 0.011910168, 0.0340049, -0.030640958, -0.08568965, 0.034176193, -6.434015e-05, 0.022201568, -0.020247515, 0.018494802, 0.032888252, -0.055983644, 0.033238158, -0.010386322, -0.052537676, 0.018960688, 0.008285058, -0.021646207, -0.0054236436, -0.00064236746, 0.010324268, 0.042864446, 0.01765292, 0.0078103403, 0.06223662, 0.039789747, -0.0115886545, -0.016046127, -0.06795579, -0.020411944, 0.051781885, -0.02006992, -0.06109544, -0.041059054, -0.04830767, 0.028272055, 0.015187689, -0.026149813, 0.03237088, -0.025299536, -0.026005242, 0.08896712, 0.04213511, 0.019802134, -0.050444823, -0.035366245, 0.023971714, 0.0015232717, 0.04674179, 0.006913701, -0.011048161, 0.01724406, 0.0005843794, 0.020153753, 0.060256764, 0.027808733, 0.00014733836, 0.014498151, -0.024676751, 0.0019657412, 0.06673413, 0.016140314, 0.010089761, 0.027592959, -0.06098948, -0.021339724, 0.021715224, 0.030247556, -0.011052106, 0.022659158, 0.07255013, 0.0075796335, -0.002957014, -0.04346895, -0.037666403, 0.04719398, -0.015681831, -0.004038008, -0.04474683, 0.06702309, -0.023241555, 0.009002806, -0.013686659, -0.016583627, 0.0030315467, -0.03553132, 0.0027801609, 0.024654387, -0.04283711, -0.019874278, -0.0011097953, 0.055535093, -0.0116857, -0.039067745, 0.08047136, -0.06337379, -0.0005892, -0.0069614314, 0.051976565, -0.019066237, -0.035248153, 0.05434626, -0.094436094, -0.098991804, 0.003972009, -0.030610295, 0.0355926, 0.012081447, -0.02974419, -0.03180864, 0.025542036, -0.004180784, 0.022752568, -0.006016184, 0.02062764, 0.05293822, -0.036756046, -0.029550597, 0.01844477, 0.02149764, 0.023855899, 0.050831407, -0.0065423097, 0.03338497, 0.007562447, -0.0034404048, -0.05050028, -0.012421463, 0.07025035, -0.055053513, -0.045668438, 0.015550583, 0.0017059594, -0.0067424094, -0.044999767, -0.038020637, -0.026555339, -0.05177517, 0.017490422, 0.03533662, -0.01228963, 0.023314457, 0.039676927, -0.00046234738, 0.016968492, -0.03882518, 0.091705985, -0.0060338173, -0.017115861, -0.0101880105, 0.0005653327, -0.018102711, -0.057006907, 0.047401335, 0.0215843, -0.038236313, -0.007897141, 0.042237222, -0.0062352386, 0.047096323, 0.042002898, 0.08026961, -0.0379118, -0.0002438295, 0.049977046, 0.025565965, -0.060057763, 0.016588692, 0.027283385, -0.01285399, 0.03926057, -0.009607979, -0.02081398, 0.053694494, 0.0075020855, -0.019512873, -0.06358542, 0.0073498515, 0.0033938927, -0.02302988, -0.021751339, -0.055717677, 0.032968044, 0.01308728, 0.028331568, -0.003269005, -0.016903406, 0.03727657, -0.023199163, -0.051690206, 0.024292776, -0.0055535976, 0.001351551, -0.047813565, 0.024984369, -0.016977463, -0.029106462, 0.015276421, -0.059385814, 0.022977786, 0.041631244, -0.008261852, 0.00967537, -0.07819055, -0.007007727, -0.008607826, 0.05217197, -0.01765863, 0.0072604734, -0.01243734, 0.0014621186, 0.053325273, -0.052687686, -0.0042864657, 0.059449848, 0.025264634, 0.016525576, 0.04092218, -0.058272798, 0.011008374, 0.014190801, 0.010874796, 0.040099032, -0.065259494, 0.04920345, 0.02013082, 0.034455087, -0.029256813, 0.020469144, -0.04171201, -0.025110718, 0.0013912544, -0.039983664, -0.044722293, -0.03382757, -0.005314827, 0.00052772637, 0.01545534, -0.032044675, -0.02984794, -0.029000662, 0.042077556, 0.024002234, 0.008693598, -0.006313963, -0.018166225, 0.040125854, -0.031937048, -0.06205836, 0.02638796, 0.021798141, 0.041821208, 0.07448627, -0.03904161, 0.0118148485, 0.023979768, -0.03224337, -0.036327813, 0.033427205, 0.018211452, -0.022639668, -0.00032402857, -0.0069102333, -0.0076379497, -0.018956646, 0.05431881, -0.068313025, -0.0044206847, -0.0065353164, -0.0033767333, -0.07649093, -0.014728307, -0.0080075655, -0.0027889637, 0.09071914, -0.047473386, 0.04713143, -0.06449984, 0.005016735, -0.024672793, -0.0019465433, -0.07691896, 0.018571144, 0.011128207, 0.057812117, 0.0117257, 0.022664241, -0.051235404, 0.048621897, -0.075175874, 0.009238493, 0.066795595, 0.018492525, 0.03007996, 0.014306868, 0.047106937, -0.012378125, 0.057077937, 0.062453493, -0.0132160075, -0.045378085, -0.016618991, 0.08751653, 0.021108754, -0.013680087, -0.059698477, -0.0008048558, -0.05046539, 0.04844551, -0.011109971, -0.028763358, -0.041895475, 0.059459064, 0.01535535, -0.0041106325, -0.053700842, 0.012239411, -0.010363073, -0.028343398, 0.0018711212, -0.008830338, -0.02758716, 0.042630944, 0.04113737, -0.0021400535, -0.027804991, -0.049254358, -0.0045408844, -0.021378405, -0.06977046, 0.034488197, 0.03142372, -0.027744586, 0.042562965, -0.014726446, 0.034199588, -0.041580133, -0.010714497, 0.014067606, -0.00905055, 0.0322152, 0.0073192366, 0.004642503, -0.07751894, 0.02021196, 0.06229171, -0.042815633 ] }, { "values": [ -0.026746184, -0.045422208, -0.045286827, 0.013652627, 0.018528072, 0.029518299, 0.0095329415, 0.0016759608, 0.0058434005, -0.0093973, 0.027014868, 0.022686632, -0.0033884798, -0.020467523, -0.0140050715, -0.049412888, -0.0051743714, -0.010894882, -0.09346132, -0.060126886, 0.046007283, 0.017105404, 0.01900314, 0.009742556, -0.015702816, 0.016099986, 0.030302659, -0.061045285, 0.028885823, -0.022799836, 0.06574258, 0.0746895, 0.0011757854, -0.013632882, 0.034908213, 0.03954867, -0.053788766, 0.002366582, 0.03985883, -0.034608535, -0.055871733, 0.004537706, 0.014394584, 0.03204226, -0.027513282, 0.037818372, 0.0076135295, 0.012969623, -0.013331316, 0.04386822, -0.02858933, -0.037503745, 0.048542924, -0.03071976, 0.04004639, -0.056935612, -0.055017903, -0.032446038, 0.048322942, 0.002782571, 0.03509426, 0.014477316, -0.016488226, -0.01880674, -0.02321939, -0.037037678, -0.0666822, -0.04967252, -0.04461962, 0.068852365, -0.011972343, 0.045002963, -0.028888207, 0.0055541233, 0.003363791, -0.013291209, -0.0038931689, 0.006200482, -0.072400354, 0.012731976, 0.0016764156, 0.00932499, 0.04802953, 0.04441987, 0.045954276, 0.012563731, 0.042263247, -0.044012554, -0.056162927, -0.006697935, 0.05745189, -0.009487922, -0.007950822, -0.0030515327, 0.014059635, 0.0061649177, -0.043676358, -0.07893821, 0.02533584, 0.07144463, -0.034895528, -0.019435177, 0.0060750637, -0.01373926, 0.039861135, 0.0111063775, -0.026389925, -0.03305329, -0.021346644, -0.013047564, -0.056716397, -0.030600958, -0.012066562, -0.0011822911, 0.014970678, -0.051316865, 0.006101502, 0.030580577, -0.026697004, 0.015984036, 0.05085842, -0.029256623, -0.011734685, 0.06319629, 0.026746064, 0.036079895, -0.006025294, 0.010012938, -0.040373363, -0.05444672, 0.09794727, -0.07583254, 0.021445036, -0.011984482, -0.022538817, -0.036887772, 0.034660485, 0.01901195, -0.028800396, -0.0099901715, -0.0021628686, -0.020217454, -0.016117679, 0.057096552, 0.0023721375, -0.049419276, 0.004803307, -0.00060460955, -0.0013365548, 0.053960975, -0.103857294, 0.0008113795, 0.021601819, -0.02023823, -0.037482608, 0.037816726, 0.06483379, -0.043641444, 0.07389206, -0.046828926, 0.029937666, -0.022721365, -0.02586342, 0.002573698, -0.07973756, -0.044770326, 0.01563007, -0.06153011, -0.032260627, -0.02564725, 0.011727313, -0.013971624, -0.016823135, -0.07435526, -0.015656464, -0.0040170634, -0.0069863535, 0.027993638, -0.067967266, 0.0023459003, 0.024714362, 0.06497837, -0.008310221, 0.0013574398, -0.026243262, -0.02135156, 0.021774704, 0.062725045, 0.0026566363, 0.03188351, -0.028513292, 0.0036381308, -0.0055625974, 0.051310524, -0.0071028, 0.056732655, 0.03287806, 0.001159797, -0.018112307, -0.017256906, 0.04505199, -0.0039458754, -0.006532681, 0.049627412, -0.04944293, -0.020104883, -0.02239111, -0.017236635, 0.049366456, 0.011913553, -0.05811151, 0.0077460604, 0.009714737, -0.06768752, -0.011742188, 0.031733096, 0.07999008, 0.06444389, 0.0014030602, -0.02603848, -0.048347853, -0.0027547774, 0.010760996, 0.013976942, 0.031644184, -0.023807932, -0.023208845, -0.026302246, -0.041535527, -0.007599055, -0.027741216, 0.035743795, -0.009327433, -0.0026887923, 0.010060631, 0.025567092, 0.024702368, 0.027336342, -0.00013041697, 0.032139678, -0.0071131433, 0.03696035, -0.00472757, -0.0033381216, -0.029908068, 0.06665758, 0.05622423, 0.09184838, -0.017879046, -0.07014054, -0.058684062, -0.036978446, -0.032829657, 0.004478093, -0.060223475, 0.011088417, 0.042308595, -0.022352174, 0.026248097, -0.0030874182, 0.009355878, 0.009941121, -0.024635507, -0.024386011, -0.01065463, -0.06892227, 0.003840851, -0.012289136, 0.05129085, -0.025425794, 9.4255585e-05, 0.0027206684, -0.063955426, -0.05492677, 0.028056692, 0.012963645, -0.03692629, 0.0035128011, -0.035152476, -0.039222404, 0.0735117, -0.0063147563, -0.001545526, -0.025053758, 0.00479385, -0.0358647, 0.015383615, -0.0017722449, -0.037655503, -0.061765064, 0.016524045, 0.04857786, 0.03940393, -0.034536112, 0.031454466, 0.008377702, 0.019223478, -0.013235446, -0.017834129, 0.016597213, 0.043675914, 0.051385198, -0.026967281, 0.03945916, 0.0012771386, 0.045615684, -0.03826168, -0.053467073, -0.021307303, 0.016830372, -0.0039524026, 0.05262407, -0.030585388, -0.033678133, 0.013184, 1.6240207e-05, -0.09916669, -0.022222918, -0.034412906, -0.008307756, 0.018173434, 0.021245677, 0.005878027, -0.03256558, 0.077713735, 0.002663538, -0.022479024, -0.022330409, 0.01445337, 0.040200967, 0.00523546, 0.050635528, 0.01157946, -5.1466814e-05, 0.02776199, -0.01017356, -0.002962782, -0.024289062, 0.059307944, -0.0016703232, 0.021992993, 0.019040678, 0.023001503, 0.029802378, -0.024603516, -0.060981505, 0.006822906, -0.015296597, 0.035274472, -0.080831885, -0.08929548, 0.0577033, 0.014603507, -0.024887696, 0.028460033, 0.0064622993, 0.01604434, 0.01949559, 0.028599864, -0.00090690557, -0.0031764698, 0.057708323, 0.021849263, 0.01619938, -0.002978341, -0.009990571, 9.5355506e-05, 0.00654686, 0.014418987, -0.037963297, 0.03702589, 0.010878939, 0.0026414709, 0.039502278, -0.013302887, -0.040909886, -0.0018883813, 0.008655715, 0.022673227, -0.06354296, -0.020702774, -0.03326755, 0.007405246, -0.008863884, -0.028995128, 0.028010068, -0.023412185, -0.031543884, 0.036820453, 0.02192891, -0.037063573, 0.06919893, -0.012872425, -0.01653198, -0.0212157, 0.02014302, -0.0209498, 0.015173448, -0.0037716557, 0.014001575, -0.053001862, 0.009368174, 0.06622063, -0.039645396, 0.02545989, 0.015675243, 0.08490472, -0.0151466895, 0.003974232, -0.016275719, 0.031333353, 0.014126766, 0.029040888, 0.01847683, -0.053036973, -0.01782041, 0.031343292, -0.037881214, -0.012490952, 0.012205242, 0.0070026214, 0.050257917, 0.00976471, 0.016305465, -0.024242006, -0.06662773, 0.014172422, 0.0061042607, 0.04028974, 0.020965295, 0.027003389, 0.03720382, -0.062429965, 0.047390215, -0.0134833595, -0.044864487, 0.03505762, 0.0028691893, -0.03044136, -1.1496258e-05, 0.00852196, 0.029159449, 0.02761519, 0.034121554, 0.008901828, 0.03693883, 0.022740107, -0.01585766, 0.0023206887, -0.069869936, -0.044725038, 0.01729391, -0.017415728, -0.035692573, -0.03286956, -0.04527164, 0.009772976, 0.01778677, -0.04786152, 0.022486134, -0.05196485, -0.018057447, 0.09357111, 0.022712242, -0.005230453, -0.04910704, -0.033751983, 0.014604267, 0.034610063, 0.0730145, 0.013934995, 0.028785847, 0.021446163, -0.008601563, 0.027059758, 0.07558753, 0.025267048, 0.04342357, 0.018421607, -0.008916886, 0.0009777489, 0.06337274, 0.013179179, 0.025286414, 0.03239764, -0.07177089, -0.0035281384, 0.018339163, 0.04183014, 0.009933188, 0.046889674, 0.080698885, 0.00028492333, 0.024219614, -0.046376444, -0.04225393, 0.019405307, -0.0057052094, -0.018932486, -0.026607778, 0.05738579, -0.01919795, -0.0011636502, -0.047273688, 0.008443396, 0.015101357, -0.058166537, -0.02928735, 0.0050100777, -0.055426277, -0.021072786, -0.0061946088, 0.053338576, -0.016008116, -0.036750868, 0.05173469, -0.08517986, -0.0049738623, 0.012241916, 0.058357995, 0.013968094, -0.026881807, 0.06899153, -0.07925379, -0.104155496, -0.006531964, -0.0024763928, 0.04007198, 0.014572888, -0.019009585, -0.028260827, 0.02475035, 0.009597846, 0.035156414, 0.003853653, -0.006218803, 0.045142155, -0.017865274, -0.040365126, 0.019777214, 0.042904284, 0.03588128, 0.05248386, -0.0127467, 0.022869624, 0.0072917044, 0.006323232, -0.030037278, -0.0215351, 0.065388486, -0.01722219, -0.051389225, 0.033718716, -0.03033204, 0.009525749, -0.043062944, -0.02103203, -0.03824764, -0.051811345, 0.014152729, 0.0627622, -0.012275856, 0.014039919, 0.00035627646, 0.022992859, -0.021430932, -0.035536006, 0.06746037, -0.0071239667, -0.027228355, -0.00723738, 0.0076597543, -0.02021295, -0.0678688, 0.03418288, -0.009263782, -0.029498518, -0.032937907, 0.05823305, -0.015234172, 0.034732576, 0.019488158, 0.09037694, -0.029588727, 0.007533101, 0.06472781, 0.0089149745, -0.048321273, 0.015429518, 0.017115867, 0.0002423373, 0.042096272, -0.0072880043, -0.0056683365, 0.084409915, 0.016049456, -0.006296166, -0.06280126, 0.0133083435, -0.014756177, -0.019398814, -0.010635075, -0.008972566, 0.029529024, 0.021126412, 0.030669093, -0.01690198, -0.02628538, 0.030154979, -0.038610462, -0.057550684, 0.038186077, -0.0061005326, 0.018575687, -0.042002704, 0.01424416, -0.024505207, -0.029615944, 0.024396775, -0.034565046, 0.043405548, 0.012281401, -0.00984037, 0.040241864, -0.08660753, 0.0074498733, -0.024255605, 0.044496074, -0.003251892, 0.009699891, -0.027853793, 0.014212193, 0.056879923, -0.06104562, -0.0028414992, 0.057263862, 0.013711562, 0.009516565, 0.0356004, -0.07096541, 0.01732613, 0.010292264, 0.005458661, 0.026864411, -0.070043415, 0.07819677, 0.011582848, 0.036576588, -0.034231056, 0.030711066, -0.01678571, 0.007065932, -0.005034715, -0.024882203, -0.03377976, -0.04258616, 0.002469448, 0.02052293, 0.032840706, -0.012280431, -0.029390039, -0.058871243, 0.045453753, 0.02089209, 0.007859637, -0.003521836, -0.021249838, 0.02617666, -0.019984532, -0.057247285, 0.045803316, 0.021428475, 0.05034617, 0.067399226, -0.016013425, 0.019829525, 0.016638499, -0.034126494, -0.025419163, 0.038758464, 0.011291415, -0.029741496, 0.012011541, -0.024207465, -0.0036625022, -0.006970606, 0.054850634, -0.087701805, 0.002846298, 0.0071008606, -0.0052720327, -0.10437729, 0.011446553, -0.0029684643, 0.008157239, 0.084068075, -0.063466385, 0.028084215, -0.0498327, 0.016765377, -0.025386332, -0.00861293, -0.063356124, -0.0055649364, 0.008799105, 0.032717127, 0.011158941, 0.02171832, -0.040076327, 0.037731815, -0.077225305, 0.022512758, 0.052584697, 0.044717755, 0.025853544, 0.026136793, 0.030341433, 0.0059021735, 0.053000666, 0.03286024, -0.006059236, -0.03920435, -0.0449105, 0.08840796, 0.011298435, -0.03315547, -0.052404396, 0.014977835, -0.043557927, 0.03854072, -0.021881763, -0.021048708, -0.014167899, 0.03335399, 0.030825349, -0.014196978, -0.036475196, 0.007880625, -0.02685041, -0.013428254, -0.010841437, -0.00925618, -0.023817055, 0.024680821, 0.050516225, 0.0035759339, -0.024123576, -0.020884972, -0.027079659, -0.034608155, -0.06133082, 0.018112175, 0.031081233, -0.012655661, 0.04328327, -0.020396335, 0.03962289, -0.06719965, 0.016193729, 0.037157398, -0.012907775, 0.0064045326, -0.007742703, 0.0029540604, -0.11437482, -0.0058510806, 0.04106443, -0.056728896 ] }, { "values": [ -0.021493686, -0.040552627, -0.062929764, -0.034494847, 0.043049928, -0.0060202037, 0.011434235, 0.029726073, 0.016979592, 0.0038318946, 0.027010113, 0.046295233, 0.0023363435, -0.004657924, -0.0015634008, -0.026353478, -0.0001315836, -0.021827959, -0.05429766, -0.04678028, 0.023786994, -0.014030967, 0.029996583, -0.017506931, -0.020093918, 0.04316921, 0.028458009, -0.066124626, 0.040039044, -0.03809887, 0.04605263, 0.065904014, -0.014281079, -0.010817076, 0.10854953, 0.015318135, -0.031544335, 0.01858417, 0.011011038, -0.03357453, -0.07036808, 0.014848457, -0.012222263, 0.023624191, -0.030909058, 0.036485378, 0.0039445125, 0.010436015, -0.0484272, 0.04415417, -0.0239041, -0.025804542, 0.018939111, 0.0016076838, 0.02405697, -0.035291206, -0.050757613, -0.06470353, 0.081984356, -0.0017886602, 0.0149166, -0.03173384, -0.0047600633, -0.023547936, -0.016436733, -0.060322274, -0.025231665, -0.023357898, -0.049946968, 0.01851381, -0.02825543, 0.061141238, -0.03523499, 0.006422585, -0.005777795, -0.029986952, 0.0037330037, 0.028869301, -0.05213596, 0.029524416, -0.022091793, 0.0044097737, 0.07036232, 0.04889445, 0.03561318, 0.009283752, 0.01766739, -0.011769751, -0.032936186, 0.028960427, 0.07667493, -0.020070668, 0.037812423, 0.0075699077, 0.04107508, -0.021312553, -0.046667065, -0.054184828, 0.00939575, 0.06294654, -0.011820302, -0.00229154, -0.03392775, 0.00029652403, 0.051115092, -0.0036438399, -0.037899848, -0.046451386, -0.034334384, -0.0032902667, -0.042649724, -0.029923871, -0.041999448, -0.023003962, 0.040981654, -0.018665804, -0.00045282757, 0.03452063, -0.021992536, 0.011823333, 0.06210938, 0.012844443, -0.023224505, 0.06576189, 0.028203253, 0.014321327, 0.016692935, -0.0044596246, -0.028748482, -0.04209821, 0.09470346, -0.071758464, 0.018866321, 0.017280314, -0.012243376, -0.040038757, 0.026499871, 0.040451325, -0.02784404, 0.011818602, 0.027196264, -0.004248368, -0.0060323644, -0.0013458192, -0.0049812784, -0.04145152, 0.03249565, -0.0055497526, -0.03252255, 0.030256351, -0.08803812, -0.012139591, 0.02784699, 0.00071190734, -0.032745317, -0.002043814, 0.069521494, -0.04880544, 0.085494146, -0.05071673, 0.015412659, -0.014425939, -0.006442805, 0.031460162, -0.08227833, -0.021890933, 0.013827789, -0.06710927, 0.0025086496, 0.0025152038, 0.034567855, -0.03786577, -0.0049584946, -0.09852031, 0.006189537, 0.009398238, -0.008445508, 0.04870639, -0.045381922, -0.00028276577, 0.041544404, 0.014452947, -0.025070881, -0.0062729856, -0.011021783, 0.008114071, -0.013919877, 0.08085124, 0.007916087, -0.0032679546, -0.025540777, -0.028695099, 0.040002245, 0.053808272, 0.0070767533, 0.06325202, 0.030314177, -0.007931852, -0.014260866, -0.016453894, 0.044897582, -0.0063010845, 0.015832389, 0.038356636, -0.03769107, -0.031011138, -0.056396008, -0.036645606, 0.047252808, 0.02738962, -0.039515574, -0.0002491659, -0.0021864956, -0.076278046, -0.0020250787, 0.020746201, 0.056587912, 0.0718735, -0.017620193, -0.03615737, -0.043262567, 0.023375882, 0.008333945, 0.003683342, 0.006749665, -0.032158792, -0.035087768, -0.017184785, -0.016590679, -0.0016770726, -0.034985136, -0.00023203519, -0.00073268113, -0.0059964983, 0.0022413766, 0.023899557, 0.039660465, 0.033393905, 0.0091846045, 0.010763741, 0.0059277774, 0.049345076, -0.00602897, -0.004479856, -0.012317439, 0.0172439, 0.05864029, 0.109198615, -0.028922895, -0.052975234, -0.05912818, -0.031398352, -0.017967308, 0.010059105, -0.06052131, 0.011340394, 0.030108862, -0.031063348, 0.0128097655, -0.01075606, 0.01910146, 5.7103043e-06, -0.012493312, -0.041254465, -0.034535486, -0.08222434, 0.011313421, -0.016959338, 0.04427472, -0.009035956, -0.007271917, -0.016098985, -0.06673907, -0.056574736, 0.029062288, 0.025235558, -0.0680545, -0.0065509137, -0.04204007, -0.05557711, 0.05959187, -0.0036778627, -0.03384034, -0.0005311782, 0.012257212, -0.039278667, -0.02387034, -0.013325163, -0.04997133, -0.06699246, 0.040303327, 0.030320391, 0.052494124, -0.020573689, 0.05483314, -0.005977177, 0.0139370095, -0.019567307, 0.0043638856, 0.01301592, 0.032279924, 0.05740229, -0.008179369, 0.030486405, 0.0004462654, 0.04760104, -0.010893771, -0.04789013, -0.02169317, 0.03289832, 0.014658961, 0.04006189, -0.02814116, -0.012481485, 0.0067993593, -0.00024302011, -0.080207646, -0.008041123, -0.050590098, -0.03165905, 0.027946841, 0.039734922, -0.020561581, -0.056796055, 0.055922333, -0.00622025, -0.031668574, -0.010317406, 0.017620534, -0.006966507, 0.0127465455, 0.03763865, -0.023725575, -0.039964076, 0.025334898, -0.015790325, -0.023091208, -0.016755918, 0.090294175, -0.0026298407, 0.029326322, 0.015256395, 0.058725294, 0.058464337, -0.025493234, -0.03682044, -0.015306162, 0.008367669, 0.043521047, -0.040536236, -0.05012939, 0.054586492, 0.021073755, 0.0012949726, 0.057197254, 0.0018350026, 0.05133618, 0.030418975, 0.049701802, -0.014570185, -0.029163957, 0.033881415, 0.0007679285, -0.022837184, -0.008440251, -0.023438217, 0.002136597, 0.007570121, 0.0043685455, -0.034402985, 0.013349624, 0.017667532, 0.0063038026, 0.0011092057, -0.0005936213, -0.054256327, -0.0033176034, 0.01185679, 0.019613877, -0.011081022, -0.040403847, -0.05029567, 0.009240529, -0.0018267558, -0.04121264, 0.055876568, -0.032246366, -0.029777141, 0.032808676, -0.0101282215, -0.046153627, 0.065045916, -0.009809378, -0.031962138, -0.048098087, 0.046482556, -0.0073460406, 0.01628644, 0.018206399, 0.009631035, -0.061271377, 0.0187133, 0.08018958, -0.03972849, 0.025138944, 0.00035883315, 0.06540028, 0.0034224156, 0.0123555865, -0.0013765469, 0.05081231, 0.013967305, 0.04962691, 0.020336166, -0.030121746, -0.00164432, 0.017450524, -0.030048767, -0.028258398, 0.027946912, -0.00756835, 0.023246875, 0.019607488, 0.07336646, -0.0028047066, -0.060511675, 0.0065666893, -0.0042739934, 0.041110575, 0.01709739, 0.015099071, 0.05899808, -0.050409816, 0.027312156, 0.003257877, -0.04925958, 0.052025363, 0.01963225, -0.01580347, -0.0042350413, 0.013521188, 0.014204347, 0.0531912, 0.036310583, -0.013193076, 0.06271651, 0.016173398, 0.020162717, -0.017330736, -0.063095845, 0.0022687947, 0.046878226, -0.0164919, -0.051973548, 0.01656438, -0.0164093, 0.019681588, 0.029815478, -0.05096448, 0.03653948, -0.039123096, -0.01383919, 0.07810022, 0.052460253, -0.015363184, -0.01765941, -0.035662252, 0.018035244, 0.044740707, 0.05113328, 0.043320097, 0.007477722, 0.00085738604, 0.018703265, 0.046128206, 0.06686414, 0.06677763, 0.017292678, 0.024615336, 0.017166555, -0.0058214273, 0.05921979, 0.0064122155, 0.046647374, 0.012786167, -0.06440717, -0.031433392, -0.0024973864, 0.028144633, 0.01705624, 0.030255565, 0.06530219, -0.00047181977, 0.026429638, -0.045691267, -0.048318435, 0.054069236, 0.0009190087, -0.050871175, -0.030634386, 0.05689275, 0.00381023, 0.008832249, -0.020236203, 0.0257191, 0.00907956, -0.021933066, -0.027997073, 0.0017729297, -0.031445857, -0.033886794, 0.006779364, 0.06364438, -0.010222323, -0.03369331, 0.06506645, -0.083182074, 0.020892018, -0.026744701, 0.04309897, -0.029938202, -0.04589298, 0.044237066, -0.06533511, -0.10373542, 0.013428783, -0.03588592, 0.037923366, 0.0056473734, -0.017275747, -0.01531349, 0.04603071, 0.021559827, 0.01827262, 0.004661045, 0.012046632, 0.010602554, 0.0034616387, -0.026346158, 0.023455245, 0.038618576, 0.02604458, 0.07431079, 0.024903918, 0.008134561, -0.0024452202, 0.017161777, -0.019312318, -0.0049107648, 0.08407017, -0.02592799, -0.04550928, 0.049059853, -0.0038126747, 0.004588372, -0.028250717, -0.036256216, -0.03806676, -0.05604159, 0.010035593, 0.06127408, -0.008961457, -0.0008179872, -0.0006975157, 0.009414973, -0.02578722, -0.009832879, 0.061764415, -0.023421278, -0.028685445, -0.015666584, 0.019851793, -0.0037858044, -0.05139153, 0.031810112, 0.011992525, -0.04602241, 0.012289257, 0.07398477, -0.016300173, 0.044119474, 0.0066812728, 0.058361113, -0.037969172, -0.0028747292, 0.0450706, 0.04871459, -0.047588218, 0.017127654, 0.016794149, 0.0040915706, -0.01569577, 0.008363581, -0.014009529, 0.09619755, -0.0048592016, 0.0042537255, -0.03671762, 0.014441131, -0.017518718, -0.00939225, 0.003963209, -0.027640272, 0.0018686823, 0.037261277, 0.027988397, -0.0041396655, -0.038181875, 0.051166385, -0.020206843, -0.048325203, 0.021426197, -0.0006106934, -0.021239396, -0.034873985, 0.023051495, -0.026412126, -0.042953745, 0.024852352, -0.00062243466, 0.038306646, 0.029472128, -0.0046046283, 0.04914503, -0.045908574, -0.009149396, -0.03438955, 0.029442517, -0.031003095, 0.022425825, -0.05287372, 0.017897556, 0.078906246, -0.0698864, -0.011044936, 0.039988246, 0.0033324717, -0.0024623114, 0.051728312, -0.07966709, 0.018886723, 0.034967475, 0.015913196, 0.058106877, -0.069863, 0.05368918, 0.0045646406, 0.062315866, -0.03206441, 0.021383174, -0.026348433, -0.016643792, -0.0045858184, -0.022664849, -0.03063283, -0.039721567, -0.006652594, 0.008233172, 0.035935175, 0.011871054, -0.018313985, -0.06376833, 0.068132274, 0.02637829, -0.0077498006, 0.006621722, -0.028807651, 0.05395979, -0.024296293, -0.07891142, 0.026579682, 0.031804975, 0.0017043286, 0.044272967, -0.027055878, 0.02881068, 0.016387809, -0.026492786, -0.03579949, 0.039763253, 0.01775237, -0.032007076, 0.0004874979, -0.020231217, 0.012482757, 0.013036417, 0.06333879, -0.0712631, 0.0024132924, 0.028007593, 0.028008439, -0.073427536, -0.0077396086, 0.017438376, 0.0056259087, 0.07092722, -0.06273787, 0.036344282, -0.05544494, 0.0057373443, -0.015066273, -0.017400006, -0.03204786, -0.018602401, 0.0025007832, 0.018791832, 0.019571759, 0.017277054, -0.059604976, 0.029529968, -0.05718134, 0.009433618, 0.049965143, 0.038147327, 0.008850787, 0.0038303828, 0.035885092, 0.029683448, 0.045440324, 0.023284199, 0.004488745, -0.021684978, -0.06067277, 0.066965975, 0.00087548565, -0.008073642, -0.06998497, 0.03632084, -0.049418464, 0.04291078, -0.029067272, -0.009286757, 0.0024639252, 0.03611497, 0.0009285928, -0.01567997, -0.051531076, -0.0012868806, -0.03466256, -0.019426296, -0.005628068, -0.023112193, -0.022657763, 0.0311177, 0.05651576, -0.007074928, 0.0011286658, -0.03659425, -0.015217247, 0.017151399, -0.052301053, 0.04314836, 0.039608806, -0.022386398, 0.029745564, -0.01528506, 0.029164169, -0.051702425, -0.010514717, 0.020581024, 0.021408541, 0.005216014, -0.021279993, 0.029873436, -0.120434016, 0.0105135515, 0.038301226, -0.055924326 ] }, { "values": [ -0.043056242, -0.035299253, -0.06592356, -0.012063643, 0.032246795, 0.028767297, 0.017867493, 0.030118994, 0.0007943332, -0.018291712, 0.01865969, 0.030220937, -0.006354147, 0.0042230426, -0.0034302196, -0.0537506, -0.026817586, -0.008174858, -0.09074393, -0.06088804, 0.03594163, 0.01111027, -0.00476059, -0.02714921, -0.019913618, 0.02197787, 0.0022174912, -0.064380944, 0.036545668, -0.0061412333, 0.057697475, 0.06042107, 0.01416187, -0.0015720035, 0.049382687, 0.038798347, -0.024979392, 0.014550994, 0.03949535, -0.040493753, -0.04392507, -0.013121132, 0.011523048, 0.04468578, -0.02899783, 0.045053005, 0.019555302, 0.010052746, -0.026762826, 0.02138985, -0.020034943, -0.0021245119, 0.026274182, -0.03463782, 0.0017161103, -0.047681425, -0.040264755, -0.032386214, 0.058479495, 0.023503173, 0.026899526, -0.01409437, -0.021769382, -0.022029852, -0.022698788, -0.042429477, -0.050377652, -0.043176167, -0.05180097, 0.057559162, -0.042499643, 0.07288734, -0.017534198, 0.018910816, -0.0032338204, -0.009670314, 0.0044631776, 0.019097887, -0.04510133, 0.007234139, -0.012618075, 0.022764685, 0.058718074, 0.05339099, 0.05145118, -0.018481972, 0.039033093, -0.000545697, -0.07096596, 0.019826448, 0.050393898, -0.03133381, 0.009766262, -0.011211566, 0.04357566, 0.007037216, -0.032273013, -0.045479745, 0.02631442, 0.050733756, -0.034935866, 0.007646469, -0.011076493, 0.014519172, 0.033526555, 0.017028859, -0.028085453, -0.019865422, -0.028938528, -0.015579826, -0.050741035, -0.019875925, -0.0037069053, -0.0010500402, 0.030969638, -0.050861582, 0.015576059, 0.03519296, -0.010403121, -0.007990027, 0.037729334, -0.0013909113, -0.0021927305, 0.0727987, 0.017260296, 0.024680614, -0.0062196944, 0.025562927, -0.038938966, -0.03551801, 0.10275781, -0.08401399, 0.028470531, 0.008097485, -0.019000111, -0.010145595, 0.050982893, 0.02404873, -0.03474409, 0.010473525, 0.0139571745, -0.0060166065, -0.011714655, 0.021437122, 0.012099349, -0.019396307, 0.0024178107, -0.014145859, -0.027898962, 0.04185228, -0.09155019, 0.013027296, 0.031523444, -0.0100908745, -0.05267707, -0.010751562, 0.048021913, -0.033823375, 0.08980353, -0.06855595, 0.03311934, -0.030509662, -0.019520227, 0.039433796, -0.0745682, -0.017333943, 0.04480386, -0.057981666, -0.005863479, 0.0016335989, 0.015568552, -0.017651916, -0.035214633, -0.076907925, -0.0040720105, -0.007804295, -0.002243105, 0.043808777, -0.052955516, 0.021259014, 0.02779786, 0.059035543, -0.0074654184, 0.0024339228, -0.015409649, 0.021423489, 0.012312018, 0.065650895, 0.01877099, 0.012188801, -0.036314726, 0.025738161, 0.0025627231, 0.07188505, -0.020736901, 0.061272405, 0.033057503, -0.03618703, -0.0237125, 0.0007496891, 0.04010383, -0.0037298712, 0.013799418, 0.0581545, -0.046920475, -0.025790071, -0.013296181, -0.023477849, 0.05027675, 0.012909907, -0.053806204, -0.021123234, -0.013423873, -0.06618177, -0.0039421814, 0.010524596, 0.08173816, 0.067991875, 7.806304e-05, -0.039567932, -0.03971616, 0.012591635, 0.003472075, 0.041470047, 0.042016212, -0.029734273, -0.018008664, -0.024849715, -0.043157548, -0.03751509, -0.03427531, 0.0073520043, -0.012815008, 0.023840249, -0.017062731, 0.04820986, 0.03687652, 0.04542837, -0.014187659, 0.016024385, 0.021985417, 0.03828846, 0.013625725, -0.00038353217, -0.025535505, 0.03243633, 0.042930335, 0.092776015, 0.007452905, -0.08142728, -0.048223138, -0.055251423, -0.010608951, 0.008811328, -0.05367903, 0.01556373, 0.01967354, -0.016566636, -0.006098126, -0.023378791, 0.0033247613, 0.011518572, -0.039951373, -0.019838374, -0.029405242, -0.05792616, 0.008558646, -0.010966391, 0.031030942, -0.019131634, -0.019862065, -0.019870885, -0.06979784, -0.041320752, 0.02233025, -0.0010298515, -0.044408794, 0.024732504, -0.05474275, -0.033874616, 0.07263085, 0.007786081, -0.015904855, -0.013125509, -0.0012866602, -0.011045648, -0.0014885034, 0.0015276838, -0.033199076, -0.06612485, 0.011389596, 0.06003418, 0.045145497, -0.02609492, 0.04700342, -0.008624104, 0.017459907, 0.007084225, -0.039976757, 0.012004069, 0.052589707, 0.07323783, -0.027595848, 0.036306616, -0.010368151, 0.06747343, -0.031584065, -0.033003245, -0.02568444, 0.020240795, -0.0047054105, 0.05509665, -0.057793595, -0.043617457, -0.0035146917, -0.015384143, -0.0965126, -0.021236718, -0.030796608, -0.040748063, 0.009509824, 0.02085676, -0.013109813, -0.03015739, 0.074632384, 0.008503445, -0.019393636, -0.0013410139, -0.011599951, 0.029628385, 0.010707733, 0.031396452, 0.00039380297, -0.0071901996, 0.032404315, -0.0013684395, -0.015222332, -0.021625051, 0.049866535, -0.0018866786, 0.038776103, 0.010739334, 0.02165545, 0.055490255, -0.013893695, -0.054268055, 0.008731547, -0.017824655, 0.043759808, -0.07881436, -0.074772075, 0.05291774, 0.018881522, -0.039090626, 0.035109986, 0.007196933, 0.012425317, 0.025199793, 0.014158885, -0.0037650983, 0.003786907, 0.044975568, 0.012526888, 0.0067684874, -0.0043882714, -0.01566767, -0.010320147, 0.0056547457, 0.02227253, -0.043232568, 0.04866279, 0.033871185, 0.00837351, 0.009561222, -0.0007419759, -0.023537807, 0.015372031, 0.012643283, 0.03731134, -0.048127476, -0.030485932, -0.05192812, -0.002424203, -0.01857106, -0.03626201, 0.0313702, -0.021390356, -0.024677884, 0.013591643, 0.005982423, -0.034644082, 0.06410526, 0.011059399, -0.042404328, -0.04377347, 0.03469081, -0.011016545, 0.018045936, 0.006037259, 0.036262162, -0.040287536, 0.018475572, 0.057911586, -0.041528, 0.019971285, 0.011925348, 0.08633397, -0.0029756846, 0.013983552, -0.012571963, 0.043680273, 0.018301882, 0.042861454, 0.0021544246, -0.05770586, -0.0187197, 0.024852917, -0.049521077, -0.02267317, 0.012833784, -0.025630249, 0.034689065, -0.0016642434, 0.037286405, 0.013467313, -0.032891113, 0.011761258, -0.008709592, 0.03536515, 0.019790186, 0.02446763, 0.030241033, -0.060962632, 0.05308287, 0.0014133751, -0.05945128, 0.032737948, 0.013840052, -0.032979544, 0.015142833, 0.00519152, 0.022760117, 0.034807388, 0.03777854, 0.0048042256, 0.025936522, 0.012883271, -0.018975707, -0.011049541, -0.07702114, -0.050344277, 0.019891959, -0.004013498, -0.03612839, -0.027606465, -0.020126848, 0.016041843, 0.018354, -0.048360284, 0.03459528, -0.044567928, -0.006805138, 0.07236493, 0.04305276, -0.020938892, -0.055576503, -0.029608909, 0.013454472, 0.032737125, 0.074275546, 0.044032592, 0.0013469973, -0.0012685901, -0.013223976, 0.02285745, 0.054962922, 0.044541776, 0.025325885, 0.010931872, -0.0058346186, -0.015365392, 0.04318281, 0.012680826, 0.03521795, 0.03282469, -0.06473954, -0.005336374, 0.022911306, 0.020458069, 0.014504497, 0.062632434, 0.07274768, 0.03937314, 0.0077919876, -0.059843067, -0.042003375, 0.03317066, -0.006118279, -0.009380833, 0.011492179, 0.07163023, -0.007654796, 0.024105266, -0.058252186, 0.014253143, 0.04137252, -0.025393756, -0.016088089, 0.009861341, -0.046933517, -0.026930237, 0.004541274, 0.028826864, -0.0062203566, -0.03743901, 0.062094428, -0.09699582, 0.001353162, 0.0140078375, 0.042880736, 0.011735429, -0.045048323, 0.038123894, -0.060852524, -0.08421011, 0.008904199, -0.033798587, 0.03446578, 0.030739404, -0.021632103, -0.034822617, 0.009247999, 0.008349596, 0.028425533, -0.01672632, 0.0152884545, 0.033162355, -0.018687239, -0.0356903, 0.04692479, 0.029647676, 0.04122493, 0.054813255, 0.002518209, 0.018625537, 0.024499925, -0.009231085, -0.028587226, -0.010960584, 0.08406424, -0.031224938, -0.037560433, 0.018008024, -0.04013004, 0.008243616, -0.030663116, -0.047941294, -0.04736865, -0.05876368, 0.008569566, 0.061145492, -0.012599024, 0.0027237223, 0.0027600017, 0.020435583, -0.023160104, -0.022719126, 0.049790535, -0.015067663, -0.0062299795, -0.01866816, 0.004946485, -0.01665326, -0.046805672, 0.032180555, 0.013530322, -0.044077516, -0.012285913, 0.06233978, -0.016551513, 0.050903082, 0.033311337, 0.098860286, -0.038199797, 0.010007832, 0.049608078, 0.03320063, -0.049633674, 0.032428127, 0.031709574, 0.0021756182, 0.031384904, 0.012796328, -0.015895111, 0.07441552, 0.0071937162, -0.00078415015, -0.077222355, 0.031536397, -0.015196103, -0.02273836, -0.0074965637, -0.01574891, 0.03295905, 0.0075535495, 0.042566303, -0.010671571, -0.010815574, 0.04515051, -0.01879619, -0.045380853, 0.02163677, -0.0045413733, -0.010716192, -0.018757632, 0.0017344833, -0.023210818, -0.03337796, 0.027945792, -0.02938218, 0.022947114, 0.0126576405, -0.023948407, 0.054557137, -0.08968686, -0.0034712784, -0.009593688, 0.02501871, -0.007027451, 0.015553578, -0.04258286, 0.014606469, 0.06310509, -0.0642181, -0.021577638, 0.062068224, 0.0009462924, -2.6131347e-05, 0.0071073608, -0.072065495, -0.014526005, 0.00508077, 0.039833643, 0.056630325, -0.056788333, 0.059382066, 0.015167193, 0.048473645, -0.01773017, 0.023364432, -0.03552765, -0.0054195616, 0.008933083, -0.024787968, -0.051062662, -0.039464995, -0.014306009, 0.0053540347, 0.028022947, -0.02530165, -0.05074448, -0.06429274, 0.04666672, 0.017228074, -0.017561259, 0.013556977, -0.011902453, 0.028424665, -0.023310551, -0.042219356, 0.044725195, 0.009970507, 0.012041437, 0.058499664, -0.004208294, 0.014466623, 0.013993194, -0.038569, -0.025657529, 0.047389224, 0.00089379505, -0.033317097, 0.01567388, -0.0074366336, 0.0006836532, 0.0115955835, 0.07199236, -0.046012953, 0.006744315, 0.043780714, 0.010678114, -0.100637265, 0.009882491, 0.03151124, 0.0391545, 0.108577594, -0.05544486, 0.014038896, -0.059328046, 0.0058980393, -0.025900409, -0.011236848, -0.038929854, -0.010734056, -0.007200575, 0.01667582, 0.012406313, 0.01860213, -0.032320075, 0.06241674, -0.066770166, 0.026663708, 0.06902724, 0.019837927, 0.016750645, -0.00025590192, 0.029081477, 0.002395527, 0.039941616, 0.030179193, 0.005269791, -0.04746095, -0.059090696, 0.07472188, 0.036370583, -0.03622352, -0.038574256, 0.035470538, -0.029448787, 0.024849305, -0.037085027, -0.01471619, -0.032684915, 0.051562667, 0.013608091, 0.014754633, -0.028420357, -0.0024835602, -0.034845565, -0.011160241, 0.0066557564, 0.0024914131, -0.032455027, 0.0046880543, 0.04887935, -0.014404286, -0.020342724, -0.028988872, -0.029811282, -0.03731416, -0.0387414, 0.06683361, 0.057871748, -0.000524725, 0.0651032, -0.0027776344, 0.051199116, -0.071341865, 0.017093627, 0.0060802535, -0.0050108545, 0.01742839, 0.006878477, 0.018052854, -0.112551495, -0.0041424814, 0.07766103, -0.04411704 ] }, { "values": [ -0.017497165, -0.043159764, -0.07364853, -0.037510615, 0.038947817, -0.0037031274, 0.027641624, 0.043345325, -0.002372478, 0.019389937, 0.021616204, 0.044711493, -0.00039180706, 0.007602188, -0.026296452, -0.04870522, -0.002821333, -0.019709796, -0.06188949, -0.036702156, 0.020804986, 0.017199727, 0.013132626, -0.026762147, 0.0021292574, 0.024484104, 0.019712605, -0.06419599, 0.0305464, -0.016238105, 0.053871535, 0.05484085, 0.0031401734, -0.0017402051, 0.051021896, 0.013053237, -0.007155769, 0.01033271, 0.019118128, -0.035858586, -0.039025877, -0.0132654, 0.0032634872, 0.0484705, -0.042507004, 0.028558591, 0.017148212, -0.0020008767, -0.037936285, 0.03223976, -0.01573831, 0.013671929, 0.021518264, -0.017977072, 0.010325183, -0.019538714, -0.02988343, -0.024858233, 0.07974734, 0.020761946, 0.031098777, 0.009283095, -0.014292603, -0.008694824, -0.03016237, -0.046571348, -0.051474825, -0.057232425, -0.047894266, 0.03646026, -0.053163268, 0.06588577, -0.018869413, -0.001187353, 0.014314103, -0.047704015, 0.015808227, 0.033669744, -0.032645635, 0.013346058, 0.0010837383, 0.046643212, 0.07711805, 0.043070614, 0.059509747, 0.026979038, 0.046215095, 0.0018657176, -0.07421096, -0.006296678, 0.062282093, -0.050732616, -0.016047163, 0.003617517, 0.02943588, -0.033606175, -0.025858138, -0.0639635, -0.010112247, 0.074070275, -0.03991802, -0.004400342, -0.04727347, -0.0046670125, 0.047551673, 0.036333922, -0.011827662, -0.027109962, 0.019108357, 0.012011868, -0.06821757, -0.03820933, -0.0030429116, 0.002291317, 0.020719122, -0.032071434, 0.029471315, 0.014511953, -0.041900035, -0.001326451, 0.04486717, -0.0003857485, -0.0061069443, 0.05552368, 0.0062715337, 0.014932438, 0.023386095, -0.00031703434, -0.047542397, -0.034173768, 0.0874327, -0.09876129, -0.0012903161, 0.012946521, -0.015062833, -0.008588798, 0.014590494, -0.013076601, -0.0631513, 0.002972966, 0.018854043, -0.032043178, -0.033062056, 0.0039756205, 0.02388979, -0.0136012575, 0.02332862, -0.041747272, -0.019227687, 0.038541306, -0.09193336, 0.014137452, 0.022419138, -0.016217176, -0.04007097, -0.011219495, 0.07204642, -0.029363181, 0.066717885, -0.05336342, 0.04134836, -0.020330874, -0.008874954, 0.026247777, -0.088904016, -0.0017181858, 0.06778725, -0.042639334, -0.019003814, -0.011260653, 0.0009137045, -0.028925866, -0.026547506, -0.08401999, -0.024381803, -0.001566997, -0.009861089, 0.010323857, -0.07445881, 0.024267163, 0.029096616, 0.04715474, -0.041004255, 0.0108769685, -0.020686569, -0.011074716, -0.0053432425, 0.053829804, 0.007896473, 0.04396837, -0.04554689, -0.009687252, 0.015475259, 0.059095517, 0.009053617, 0.0579017, 0.04953482, -0.037981715, -0.020486131, 0.00144516, 0.022815522, 0.038623095, -0.0153177455, 0.04345024, -0.039748948, -0.03434075, -0.029205529, -0.028322719, 0.06312742, -0.01010697, -0.055483155, 0.010992069, -0.034922417, -0.06490366, -0.033284046, 0.011736694, 0.0719784, 0.047720626, -0.006766387, -0.036414284, -0.05417785, -0.011662974, 0.015026703, 0.025089704, 0.06711564, -0.016477905, -0.03352993, 0.00036680285, -0.045495573, -0.032028873, -0.05697754, 0.012003113, -0.008611484, -0.013369153, 0.008460513, 0.053953137, 0.049334854, 0.015995653, -0.023324614, 0.021764928, -0.009371213, 0.03970981, 0.01041122, -0.010010672, -0.018986369, 0.013817006, 0.051714923, 0.06041523, 0.0040254206, -0.014090436, -0.036291804, -0.055700913, -0.04419752, -0.0035123394, -0.04591867, 0.004256398, 0.007219712, -0.03794968, -0.0016440129, 0.006404957, -0.0037044971, 0.030880166, -0.024644125, -0.04841238, -0.025158592, -0.0941714, -0.012527491, -0.0022951623, 0.049909685, -0.016139673, -0.017369365, -0.004777969, -0.080202766, -0.041443538, 0.027641933, 0.012776873, -0.038405005, 0.017100617, -0.052755307, -0.05228922, 0.06794095, 0.01562713, -0.019107375, -0.035988584, -0.021538556, -0.039718375, 0.016307117, 0.025289165, -0.02853435, -0.057859976, 0.017176906, 0.038267035, 0.05532273, 0.0033384878, 0.060511146, -0.015717521, 0.037483256, 0.012171698, -0.03112782, -0.0101633305, 0.027626662, 0.044543523, -0.017404968, 0.06539351, -0.014085641, 0.044738486, -0.011322689, -0.026466353, -0.027782932, 0.0106440475, -0.029886797, 0.0477608, -0.043595277, -0.031788636, 0.0051353946, -0.003792178, -0.07593849, -0.027333377, -0.034186196, -0.044349186, -0.023845525, 0.023810955, -0.0146984095, -0.013915183, 0.05186392, 0.011260033, -0.025687432, 0.004397798, -0.006367049, 0.022061693, -0.0057145283, 0.030079097, 0.0006122194, -0.0033877478, 0.0219436, 0.0005377265, -0.02175808, -0.025219306, 0.029718872, -0.012933627, 0.03259633, 0.02012965, 0.0035856615, 0.0507795, 0.0024933827, -0.045749035, 0.011009964, -0.01831902, -0.009002117, -0.069777444, -0.040734477, 0.050964177, 0.0012650058, -0.025556002, 0.038912687, 0.020475978, 0.011732381, 0.027299624, 0.033994198, 0.019540472, 0.0017146947, 0.038603168, -0.00089782424, 0.0034893425, 0.0118871555, -0.008219963, -0.010899537, 0.010389816, -0.009316608, -0.024571763, 0.056713767, 0.020216273, 0.019753693, 0.014208251, 0.021067273, -0.032461282, 0.011443718, 0.019643577, 0.001979819, -0.04921752, -0.014525616, -0.03868022, -0.022406198, -0.018737584, -0.041505996, 0.022309823, -0.0279735, -0.02288387, 0.0099386135, 0.0356342, -0.034672637, 0.06619011, -0.025450291, -0.024482092, -0.014854761, 0.036325175, -0.021174276, 0.01334187, -0.019237796, 0.015762314, -0.02723546, -0.004454681, 0.077186406, -0.023862572, 0.028827827, -0.012572923, 0.08664954, 0.018692454, 0.0042653847, -0.0015676159, 0.033296514, 0.005636233, 0.036415897, 0.021223906, -0.020418571, 0.031317435, 0.050187804, -0.05824059, -0.024867682, 0.025768392, -0.00029882093, 0.042143043, -0.027675802, 0.038899913, 0.03802032, -0.047095854, 0.013459824, 0.0029921585, 0.0280386, 0.033043295, 0.02805049, 0.03144361, -0.042689342, 0.031305388, -0.022928152, -0.05628567, 0.015313677, -0.004090847, -0.0477869, -0.0062203105, 0.0046041114, 0.038932882, 0.037995335, 0.04646531, -0.013980453, 0.028233605, 0.025242822, -0.010607524, -0.01719513, -0.08428521, -0.03466741, 0.014597625, 0.02146609, -0.044052087, -0.011345458, -0.022023829, 0.008163912, 0.04688495, -0.045697905, 0.014404543, -0.038960606, 0.011455611, 0.056974754, 0.05335924, -0.046662237, -0.034035914, -0.027054274, -0.015548015, 0.050099526, 0.058144957, 0.044524007, -0.0011926134, 0.006397266, 0.0037109025, 0.03271289, 0.04757814, 0.03093132, 0.024648262, 0.025018992, 0.029149147, 0.0060780314, 0.038076755, -0.007928517, 0.021175617, 0.017536469, -0.08751188, -0.04023177, -0.021171188, 0.035869375, 0.040827505, 0.06594345, 0.0748121, 0.030611858, 0.03427539, -0.063530356, -0.035520595, 0.04891489, 0.017328292, -0.025605587, 0.0025662768, 0.08087841, 0.0043030297, -0.004528229, -0.0510827, -0.013050998, 0.054949615, -0.06691034, -0.014619024, 0.009579335, -0.043310195, -0.005201108, -0.022189224, 0.038541086, -0.02712275, -0.03640747, 0.06108963, -0.09544537, 0.02235984, -0.01128342, 0.037390705, 0.021756722, -0.023662483, 0.06873018, -0.047504645, -0.07919125, 0.016609093, -0.037957568, 0.04221914, 0.043052502, -0.01962581, -0.03310729, 0.026068348, 0.049828656, 0.029830772, -0.004355828, 0.024068696, 0.015867928, 0.010432822, -0.04661798, 0.03863392, 0.043513935, 0.017737996, 0.050189488, 0.014470858, 0.028823696, 0.007346206, 0.0047973027, -0.014209865, -0.01435687, 0.068165384, -0.036623146, -0.03547216, 0.020884372, -0.036224574, -0.0020839567, -0.054611467, -0.03504154, -0.030546898, -0.04113565, -0.004896481, 0.084119745, -0.00401915, -0.006769266, -0.013734438, 0.054375805, -0.030478554, -0.049534973, 0.06385041, -0.023957763, -0.018090183, -0.020051314, 0.009743999, -0.0074336594, -0.053815626, 0.02861664, -0.007047585, -0.040570367, -0.005025052, 0.06310633, 0.002501666, 0.040222667, -0.0001970238, 0.10332168, -0.019078156, -0.029586025, 0.04141528, 0.016978167, -0.040575117, 0.029078517, 0.030514, -0.009809287, 0.0059901015, 0.004612676, -0.030836185, 0.07616742, -0.001193848, -0.02981748, -0.059981715, 0.009304317, 0.0023272529, -0.053221695, -0.014618407, -0.03207465, 0.01426361, 0.018966911, 0.048635107, -0.035365503, -0.02651253, 0.018776368, -0.00406238, -0.0442187, 0.015405843, -0.012152788, -0.0076257633, -0.046078317, 0.028954385, -0.03941851, -0.03964305, 0.011117164, -0.03181953, 0.030702805, 0.02457801, -0.010464276, 0.052165233, -0.08126892, 0.03263046, -0.009057773, 0.045359306, -0.004968455, 0.007663381, -0.04823548, 0.04292187, 0.056916237, -0.05526095, -0.02188146, 0.05411467, 0.022990255, -0.0032795419, 0.015746208, -0.062643915, -0.0026488379, -0.0030109277, 0.05240206, 0.057084065, -0.042026486, 0.0695988, -0.0057327775, 0.022419268, -0.034105606, 0.033782955, -0.029519806, 0.0054477705, 0.0010392547, -0.012194636, -0.041496888, -0.04181441, -0.030179856, 0.043792006, 0.029672407, -0.016242994, -0.025320293, -0.09805925, 0.04967801, 0.015566994, -0.024132399, 0.026318045, -0.008687751, 0.039706305, -0.017822016, -0.019871706, 0.04292064, 0.0072101634, 0.047156557, 0.043294743, -0.011692661, 0.030742774, 0.009061241, -0.007192126, -0.045334402, 0.06564709, -0.011067415, -0.050283857, 0.013580508, -0.02418423, -0.004936877, 0.026493896, 0.056159426, -0.058723632, 0.008851458, 0.046352662, -0.0154253375, -0.073737286, -0.026596252, 0.03836826, 0.026390059, 0.06882328, -0.061250456, 0.0205657, -0.061243393, 0.020719161, -0.035650153, 0.016113287, -0.042549115, -0.031022368, 0.012532056, 0.016403742, 0.024354685, 0.019395145, -0.02910749, 0.0485474, -0.05254873, 0.016213065, 0.06712168, 0.04410342, 0.022543158, 0.0105423415, 0.042594265, 0.029735813, 0.036778938, -0.01408025, 0.007177631, -0.033145685, -0.05471232, 0.061304357, 0.029050339, -0.014215562, -0.04362259, 0.043741297, -0.033442307, 0.05422377, -0.016701343, -0.037449777, -0.023588412, 0.03814104, 0.010078222, -0.013438406, -0.038972158, -0.015087241, -0.02588793, -0.030541075, 0.007271566, -0.001721299, -0.041373998, -0.00047657534, 0.041916568, -0.021048326, -0.030900719, -0.018607652, -0.03510609, -0.030292882, -0.032044884, 0.037339672, 0.046503823, -0.016185587, 0.03454324, -0.006579631, 0.011653885, -0.06167306, 0.03680436, -0.00045635557, 0.0056996383, 0.002603297, 0.020004267, 0.012471342, -0.12709206, -0.007260803, 0.05315368, -0.062122624 ] }, { "values": [ -0.034065034, -0.0283756, -0.051649373, -0.040888194, 0.020935029, 0.011349634, 0.020224106, 0.025169998, 0.0044679535, 0.032475285, 0.016218917, 0.030011125, 0.012863718, -0.026815068, -0.026072457, -0.055959877, 0.01467712, -0.0072186245, -0.07102003, -0.06242531, 0.028377822, 0.0022106064, 0.0012639267, -0.016920514, -0.012083268, 0.02572459, 0.029208416, -0.049347386, 0.01713005, -0.021194184, 0.048970684, 0.04526603, -0.01571973, -0.029282419, 0.042893644, 0.029956136, -0.04853579, 0.008524014, 0.014780855, -0.035136454, -0.04179301, 0.006505551, 0.014235592, 0.043373413, -0.03624719, 0.023508646, 0.01116485, 0.021891173, -0.023510018, 0.037517358, -0.026970955, -0.00406551, 0.03975682, -0.043387573, 0.025947625, -0.056762774, -0.057555504, -0.012954988, 0.08249789, -0.0008270081, 0.01751991, 0.006461014, -0.035838977, -0.0060510435, -0.03876746, -0.047181316, -0.058013704, -0.035839092, -0.034107734, 0.05736428, -0.042689007, 0.06040203, -0.011582015, 0.011543564, 0.006054963, -0.027659304, 0.026841082, 0.0068914206, -0.02903882, 0.029099222, 0.016410423, 0.05177585, 0.06908779, 0.03991001, 0.03578485, 0.014225707, 0.050474998, -0.028202754, -0.060945604, 0.0019083573, 0.062442433, -0.03943119, -0.016103584, -0.0013320402, 0.026415842, -0.017502159, -0.019738395, -0.07450178, 0.0015742953, 0.09054751, -0.03901518, -0.011622215, -0.028707175, -0.002449834, 0.03031737, 0.02018234, -0.039751545, -0.0071656513, -0.00796989, -0.0086943, -0.07673833, -0.042498585, -0.010586024, -0.011262924, 0.017890291, -0.035497755, 0.0139737865, 0.021343162, -0.021432195, -0.008052215, 0.044913698, -0.017280726, -0.016646381, 0.060948357, 0.021593617, 0.0034290468, 0.00797652, 0.01096271, -0.04888679, -0.023141872, 0.1003044, -0.10098838, -0.0041621136, -0.011602596, -0.018396778, -0.018963242, 0.052107405, 0.009563355, -0.058943655, -0.0014855549, 0.017058292, 0.0023226738, -0.04196315, 0.026584076, -0.0016653975, -0.0005914981, 0.02177705, -0.026538376, -0.014872686, 0.04478321, -0.085119136, -0.006588601, 0.018571645, -0.013670864, -0.04366984, 0.016240109, 0.058175858, -0.028910313, 0.057096094, -0.083372004, 0.04227413, -0.023831028, -0.041394025, 0.019877566, -0.100193135, -0.019921685, 0.053848837, -0.06881709, -0.018416936, -0.008309141, 0.003521816, -0.012652321, -0.028729048, -0.07993127, -0.01950936, -0.0069238273, 0.009353361, 0.027048238, -0.06894511, 0.02036884, 0.009068334, 0.056810334, -0.019793892, 0.028653463, -0.002145396, -0.0072184, -0.018588373, 0.032250658, 0.014815812, 0.03135115, -0.030009242, -0.010019762, 0.027463226, 0.06514505, 0.018986937, 0.05580732, 0.03738012, -0.0352958, -0.022483287, -0.00620424, 0.037943758, 0.023282612, -0.012008389, 0.04681955, -0.037872884, -0.015816694, -0.031978883, -0.007287495, 0.046052974, 0.0030413459, -0.039684962, -0.0056801396, -0.014374223, -0.07238312, -0.039394476, 0.034308575, 0.079572804, 0.040379535, 0.0042696022, -0.017774006, -0.07157543, -0.010909523, -0.0077692396, 0.027088832, 0.04386885, -0.013065576, -0.029759333, -0.022125162, -0.048043467, -0.030247288, -0.050531816, 0.030080559, -0.009370948, 0.0009938141, -0.013859017, 0.062154055, 0.03304281, 0.024428291, -0.0036411274, 0.009186703, -0.016449483, 0.041084398, 0.0026628564, -0.008832357, -0.021745449, 0.03283953, 0.06838569, 0.07030658, 0.019254487, -0.025540294, -0.061996758, -0.064495705, -0.043257397, -0.0063312934, -0.058752965, -0.004184351, 0.023611326, -0.049484402, 0.004228083, 0.015663438, 0.0042574373, 0.029368857, -0.02893408, -0.04798658, -0.01301117, -0.07379189, 0.0038838629, 0.0028321366, 0.05736636, -0.012623807, -0.019543068, -0.0038881036, -0.077720724, -0.028785096, 0.047858413, 0.0034980956, -0.036785793, 0.025488745, -0.044205498, -0.045468293, 0.07280235, -0.0027758167, -0.0030317116, -0.030320762, -0.006061883, -0.029080713, 0.014551545, 0.031445056, -0.043612894, -0.061396025, 0.017343368, 0.038411573, 0.046047732, -0.027511396, 0.035344973, 0.0046932953, 0.044280484, -0.008960291, -0.01874261, -0.01008296, 0.057395063, 0.041738383, -0.032905538, 0.033667687, -0.03235001, 0.041263852, -0.01933325, -0.0026359386, -0.022113377, 0.022784896, -0.012139944, 0.029769216, -0.041194625, -0.043530162, -0.009777793, -0.0035475336, -0.107848264, -0.031139659, -0.027878268, -0.037484, 0.0012783344, 0.01760797, -0.021273598, -0.025314646, 0.051409703, 0.011942373, -0.030891258, 0.008849848, -0.0021379667, 0.019781874, 0.0010251276, 0.036845837, 0.0027074765, 0.011554083, 0.019879617, -0.025529424, -0.0026829885, -0.023273103, 0.050589554, -0.027030768, 0.02297215, 0.023953637, 0.026119823, 0.076487914, -0.016842866, -0.06198395, 0.019808184, -0.016435077, 0.017784832, -0.06096971, -0.048902288, 0.05702746, 0.0076673394, -0.030751143, 0.039151944, -0.0073951026, 0.020588204, 0.0076997452, 0.052322194, 0.010330429, 0.0060058343, 0.05080952, -0.0043757847, 0.0023893956, 0.03596184, -0.021544939, -0.001135166, 0.0014600419, 0.006744918, -0.04455335, 0.06596804, 0.015905365, 0.012044878, 0.04199343, 0.009767166, -0.03812394, 0.017703328, 0.024144953, 0.007015462, -0.042999513, -0.005722038, -0.052802585, -0.005978531, -0.005251008, -0.057162974, 0.03252815, -0.020605752, -0.023891598, 0.028483795, 0.016205875, -0.016729139, 0.07696405, -0.028662076, -0.028058585, -0.029774835, 0.05998637, -0.028042093, 0.0111376615, -0.009255231, 0.0071953037, -0.030466707, -0.0074149217, 0.07530147, -0.028279683, 0.029142627, -0.014802703, 0.09373756, -0.0073306025, 0.00692261, -0.011899279, 0.04280582, 0.02517088, 0.031604946, 0.02845775, -0.042527124, 0.011510038, 0.041033998, -0.037201844, -0.01977544, 0.010093981, -0.013516255, 0.046331014, -0.005902564, 0.021226857, 0.019215949, -0.030693369, -0.009395284, -0.01587571, 0.03500649, 0.019953953, 0.013228841, 0.04529453, -0.05260715, 0.044923406, -0.022393024, -0.0348959, 0.018331476, 0.003872101, -0.05595538, -0.012105606, 0.0011185524, 0.035580613, 0.0124441385, 0.038853545, -0.005505792, 0.022340598, 0.02535182, 0.0054057967, -0.015069765, -0.06879134, -0.040197305, 0.0022096112, 0.0008256765, -0.044304997, -0.019176275, -0.019730188, 0.014374494, 0.05161778, -0.05157764, 0.034631185, -0.048201364, 0.0041524665, 0.08197568, 0.037033014, -0.030525496, -0.03539494, -0.038664315, -0.0023702618, 0.035190117, 0.06435168, 0.044361487, 0.0029036666, 0.035954032, -0.0158524, 0.030603388, 0.06194933, 0.02025972, 0.030829974, 0.016257206, 0.03579483, -0.025463954, 0.046084136, 0.019805731, 0.028582636, 0.032529667, -0.08755782, -0.008344867, 9.1659305e-05, 0.04654544, 0.008211482, 0.06715629, 0.07182419, -0.0020377287, 0.03899159, -0.05825549, -0.022747358, 0.03846646, -0.013212599, -0.021506676, 0.008084242, 0.054499254, -0.01614138, -0.009711916, -0.07033816, 0.026470201, 0.034532554, -0.05320515, -0.024050558, 0.003890782, -0.04870602, -0.030022638, -0.0049462602, 0.019803492, -0.013764579, -0.04186069, 0.061573405, -0.112674646, 0.0013907726, 0.009671415, 0.032903355, 0.010015085, -0.032614227, 0.05054678, -0.03913109, -0.07657728, 0.0104613565, -0.04102912, 0.04359765, 0.026992112, -0.0030833255, -0.029615266, 0.018838838, 0.026230933, 0.043179702, -0.009957917, 0.01990793, 0.009671914, 0.0148582505, -0.051320396, 0.033248533, 0.03532301, 0.038960956, 0.0435366, 0.014096457, 0.027616153, 0.0051719015, -0.01575913, -0.024582565, -0.034629524, 0.048014324, -0.023196101, -0.027771696, 0.026120825, -0.04022454, 0.012280329, -0.040735163, -0.030934015, -0.060301792, -0.059955757, 0.017345874, 0.07067232, -0.0074105007, 0.0037840619, -0.018251061, 0.04118689, -0.04010726, -0.038175672, 0.054803498, -0.023538094, -0.03139877, -0.004757143, 0.006909464, -0.011479072, -0.061707232, 0.023725105, -0.005142405, -0.028263938, -0.00851274, 0.05945187, -0.015866522, 0.03836678, 0.012544599, 0.10656383, -0.025371745, -0.024928866, 0.05294563, 0.0045894044, -0.033861805, 0.024041256, 0.028711144, 0.011633232, 0.028725758, 0.007228498, -0.031104513, 0.08477072, -0.006753545, -0.005100234, -0.054980803, 0.010643618, -0.007488086, -0.04574499, 0.000904195, -0.02765454, 0.015050654, 0.0027822212, 0.019642327, -0.031173997, -0.014367838, 0.022564184, -0.018241033, -0.037516043, 0.02156162, 0.0073184487, 0.010698521, -0.04301977, 0.011079078, -0.038424704, -0.030340208, 0.010854874, -0.027948864, 0.021353869, 0.021283396, -0.025540488, 0.061895028, -0.08748985, 0.013131479, -0.011336064, 0.025359493, -0.024906563, 0.0022345772, -0.018835321, 0.02395208, 0.06637677, -0.053820103, -0.02626233, 0.04438559, 0.022379877, 0.004117932, 0.028532939, -0.040681083, -0.00019350229, -0.0143215405, 0.04916877, 0.03373349, -0.037108827, 0.06611881, 0.014638916, 0.02398413, -0.0024076055, 0.03320797, -0.023723807, 0.0020351822, -0.004139834, -0.0051424336, -0.04086814, -0.045623753, 0.009466158, 0.02204393, 0.036135323, -0.004107653, -0.0043437704, -0.055066567, 0.04202685, 0.010282013, -0.03222389, 0.03191037, -0.009811457, 0.029936256, -0.02007365, -0.013147412, 0.036344532, 0.016156513, 0.017756442, 0.054516613, -0.03239626, 0.028563593, 0.02901071, -0.02068844, -0.03394124, 0.037173644, 0.020517964, -0.03681404, 0.020976404, -0.024670217, 0.005096331, 0.016293706, 0.08020204, -0.078240104, 0.018734073, 0.019892586, -0.0008921268, -0.0768638, 0.00444801, 0.033251062, 0.018058904, 0.07336223, -0.061662048, 0.010575292, -0.06002526, 0.016238367, -0.039561648, 0.00017313361, -0.04152885, -0.023989908, 0.005525698, 0.022576636, 0.0031652192, 0.013954686, -0.052964687, 0.046072993, -0.06132073, 0.025144802, 0.05599585, 0.022907224, 0.025758078, 0.026475027, 0.04526384, 0.046696622, 0.04253732, 0.00076468574, 0.0017434187, -0.044238076, -0.047222372, 0.05772149, 0.011484943, -0.028773975, -0.0438922, 0.016777782, -0.048499174, 0.044410992, -0.018292977, -0.038425248, -0.020384623, 0.05355628, 0.012620209, -0.014219124, -0.0411642, 0.0019499275, -0.039924175, -0.033956647, 0.01745559, -0.0034115813, -0.025952999, -0.0035616113, 0.054671258, -0.018383808, -0.006340136, -0.020935431, -0.047225144, -0.027825467, -0.0477141, 0.051057972, 0.058004845, 0.0013333154, 0.01744756, 0.005503442, 0.024464374, -0.090518385, 0.048781056, 0.0116735045, -0.0100151375, 0.017103016, -0.011176138, 0.013436956, -0.12488096, -0.01676327, 0.07249705, -0.04318104 ] }, { "values": [ -0.036931902, -0.024317482, -0.0650898, -0.018318018, 0.026339944, 0.011041413, 0.028925532, 0.033062536, 0.011323296, 0.02161776, 0.0067660897, 0.033846606, 0.031326853, -0.036996435, -0.040104657, -0.080068916, 0.017365018, -0.0004965827, -0.049760632, -0.075947165, 0.025043165, -0.0030682478, 0.018252084, -0.050727576, -0.03486172, 0.03986909, 0.027009035, -0.056103263, 0.007841798, -0.024739143, 0.04745339, 0.046073657, -0.0195736, -0.02726429, 0.051613618, 0.014407051, -0.044327423, 0.002645497, 0.03767079, -0.02161494, -0.039901137, -0.015182143, 0.005412795, 0.042992, -0.039824527, 0.022567526, 0.019749124, 0.0030204654, -0.061263457, 0.046768688, -0.009771442, -0.009025732, 0.04718796, -0.02576482, 0.03456446, -0.049205787, -0.049445283, -0.05580676, 0.040638797, -0.008484887, 0.019151635, 0.010454541, -0.04248579, -0.016919378, -0.04277574, -0.055293497, -0.071066245, -0.05165826, -0.041421276, 0.044294935, -0.022720465, 0.055016525, -0.024656864, -0.014347381, -0.01263625, -0.014845839, 0.01742185, 0.014642588, -0.03641161, 0.029258944, -0.0036691958, 0.014486771, 0.08817642, 0.07019835, 0.04098067, 0.023268051, 0.03043352, -0.01981727, -0.041637532, -0.0032821211, 0.081982106, -0.05783454, -0.022433028, 0.02105376, 0.01532899, -0.009797036, -0.0073751668, -0.06903941, -0.00051262486, 0.10743554, -0.024235541, -0.008917167, -0.03136553, 0.012087067, 0.02914181, 0.024722574, -0.035941668, -0.024666911, -0.014504219, -0.002077777, -0.060439743, -0.026218953, 0.0047816755, -0.01925688, 0.012462185, -0.02634529, 0.036212184, 0.01238953, -0.027039913, 0.0036796036, 0.07171625, -0.006554215, -0.013068642, 0.06402562, 0.03863303, 0.008595271, 0.037387457, -0.0067986995, -0.037466537, -0.05359744, 0.08401868, -0.0956248, -0.010391611, 0.014835352, -0.012895262, -0.046463218, 0.023077602, 0.012711699, -0.046064463, -0.011820979, 0.023465255, 0.016388426, -0.016851356, 0.016186394, -0.006745491, -0.026885455, 0.017409272, -0.030540874, -0.04468238, 0.04055924, -0.08007694, 0.014091848, 0.031295046, -0.017698279, -0.033345073, -0.019528696, 0.05575513, -0.007567611, 0.056073155, -0.07140566, 0.051361743, -0.012587568, -0.022916595, 0.015317534, -0.088692784, -0.016351288, 0.07156642, -0.06990304, -0.016378125, 0.009002212, 0.018994613, -0.011872421, -0.026937462, -0.09941863, 0.0010574982, 0.005645293, -0.016948353, 0.031133898, -0.06025692, 0.005014776, 0.013101154, 0.036730617, -0.029682232, 0.016697094, -0.019074932, 0.006489048, -0.050159376, 0.052902382, -0.00024852194, 0.020285498, -0.023679404, -0.018400852, 0.044396326, 0.0672787, 0.021398677, 0.042422466, 0.046635617, -0.012375401, 0.003008766, -0.01226287, 0.0515051, 0.0050088363, -0.012721399, 0.015644563, -0.024154903, -0.028931528, -0.031675395, -0.021433143, 0.024039527, 0.004303618, -0.029790588, 0.013502318, -0.019379187, -0.04990542, -0.02716903, 0.026923878, 0.05617231, 0.055255547, -0.021682652, -0.03223263, -0.046332415, -0.008914963, -0.0042933156, 0.005992234, 0.036546245, -0.04503242, -0.023729369, -0.035473626, -0.03579268, -0.01926024, -0.052818853, -0.0015036087, -0.002491645, 0.0059985025, -0.013338358, 0.054063864, 0.014545029, 0.011456937, 0.0015809836, 0.009230054, -0.00095313473, 0.017940149, 0.009712418, 0.0032095343, -0.020321358, 0.028241446, 0.06938864, 0.09852935, 0.009325171, -0.016375931, -0.05370813, -0.042759635, -0.04155447, -0.018325763, -0.074413665, -0.013167777, 0.01703955, -0.032388292, 0.0050797393, -0.004116474, -0.011767225, 0.014757396, -0.04525065, -0.056013566, -0.019702638, -0.11619076, -0.00044903727, 0.0013586432, 0.092270255, -0.008113842, -0.029919142, -0.0026219047, -0.052484263, -0.032461803, 0.077099696, 0.014085268, -0.027061002, 0.031254124, -0.05091706, -0.04258816, 0.06643404, -0.0029442338, -0.00976952, -0.03795143, -0.010871372, -0.021176124, 0.023293432, 0.031377256, -0.037339155, -0.07553363, 0.02526197, 0.028934827, 0.06505863, -0.015925039, 0.029128809, -0.008816721, 0.04134331, 0.03012582, -0.012227437, -0.014372371, 0.05757644, 0.047028553, -0.03766995, 0.046126083, -0.045868594, 0.050221954, -0.028956562, -0.014366788, -0.031049011, 0.013064794, 0.019550897, 0.04570931, -0.024276366, -0.03909548, -0.016551975, -0.008975993, -0.093488134, -0.0041091773, -0.020891855, -0.033712115, 0.010168688, 0.019369405, -0.034416664, -0.035662413, 0.039765555, 0.0110874, -0.026425608, 0.0051707947, -0.0035392798, 0.017796898, 0.02385787, 0.04072914, 0.019053929, -0.015547565, -0.005875728, -0.014275708, 0.004140042, -0.006830342, 0.038179763, -0.016126605, 0.025210084, 0.025615387, 0.02435848, 0.06758542, -0.027175127, -0.04502982, 0.0043529277, -0.009978252, 0.051456366, -0.048806373, -0.05291213, 0.06654743, -0.0017045961, -0.01913411, 0.034603443, -0.0020895225, 0.025643308, 0.02882061, 0.066761844, -0.0017743205, -0.0053196596, 0.06299454, -0.00418326, 0.011436788, 0.0011831797, -0.028529605, 0.0051365145, 0.00988979, 0.004982096, -0.0647157, 0.040203124, 0.031177957, 0.017815452, 0.037474316, -0.010682744, -0.056119807, 0.023859693, 0.009070976, 0.0027490526, -0.0413547, -0.022546075, -0.051113088, -0.0029790963, -0.012138476, -0.042721927, 0.029863624, -0.020223478, -0.042606294, 0.016489666, 0.010656883, -0.025923366, 0.074118525, -0.022103919, -0.014533258, -0.03822608, 0.047354124, -0.012975486, 0.02179561, 0.00085146644, -0.0017791219, -0.04234656, 0.00025630204, 0.062616356, -0.028232632, 0.022497127, -0.03087124, 0.073121905, 0.018556442, 0.0073839263, 0.00057851075, 0.013411861, -0.008493756, 0.031786114, 0.019400636, -0.03347123, -0.004538939, 0.015015516, -0.06534666, -0.037122943, 0.00047815326, -0.020613924, 0.01190681, -0.008380673, 0.03964932, 0.021731092, -0.060554363, 0.009888216, -0.022615973, 0.046621498, 0.0044168085, 0.010901119, 0.059348878, -0.06290626, 0.037993666, -0.0053864564, -0.033633053, -0.007213358, -0.014417637, -0.0443065, -0.017245676, -0.006312559, 0.013675161, 0.03748262, 0.054505747, -0.013955566, 0.015899474, 0.029540304, 0.009048219, 0.0041165412, -0.07557283, -0.028329711, 0.012655633, -0.015124919, -0.059460573, -0.0016958399, -0.020298554, 0.019006236, 0.04729691, -0.046518717, -0.0029710403, -0.028896136, 0.0056365654, 0.07809785, 0.035154488, -0.022534503, -0.023487635, -0.02046378, 0.00089820934, 0.03163232, 0.054510176, 0.030202625, -0.0024985312, 0.031906106, -0.01009828, 0.038879294, 0.061338264, 0.026377305, 0.016633615, 0.0024776268, 0.031175775, -0.022801165, 0.052646242, 0.003569, 0.014666136, 0.02861272, -0.07873011, -0.011442826, -0.013163381, 0.02264763, 0.009334781, 0.06062619, 0.06706478, -0.007639398, 0.027887268, -0.047035076, -0.027929826, 0.041629225, -0.0074965395, -0.0264505, -0.01704154, 0.053116597, -0.01992212, -0.021034986, -0.060231928, 0.011453479, 0.025472188, -0.036428783, -0.03509994, 0.054666065, -0.042434428, -0.030302601, -0.024533123, 0.027216038, -0.023511885, -0.038978077, 0.08807816, -0.08999038, -0.003686213, -0.016819721, 0.0407658, 0.0035778887, -0.045677762, 0.053071566, -0.067466445, -0.09110508, -0.0010448927, -0.035231195, 0.030576374, 0.035006646, -0.009086049, -0.010659502, 0.023515908, 0.022200944, 0.03760429, -0.0111210765, 0.027302412, 0.006093265, 0.013265891, -0.053559918, 0.036484566, 0.02331846, 0.021420542, 0.06128242, 0.027358156, 0.01594837, 0.017401274, -0.0037353204, -0.022365198, -0.01959746, 0.071748644, -0.0448674, -0.032173425, 0.019416435, -0.053767253, 0.0037161005, -0.02952244, -0.013841667, -0.034176, -0.03365442, 0.008866627, 0.059588064, 0.0038647014, -0.012309176, -0.0069985664, 0.018978734, -0.021380613, -0.04407655, 0.06096994, -0.030934788, -0.028236644, -0.015073599, 0.010597489, -0.0036843158, -0.06571957, 0.021382941, 0.008530319, -0.026226573, -0.0036812646, 0.06875846, -0.0055824234, 0.035755537, 0.04378974, 0.09251338, -0.02115225, -0.02834784, 0.049136695, 0.02374125, -0.036799002, 0.032066412, 0.021046761, 0.016118469, 0.027925948, 0.00070061645, -0.040574696, 0.077937074, 0.024624243, -0.009443373, -0.04604202, 0.01925878, 0.017948808, -0.043776903, -0.008542105, -0.021574145, -0.008891301, 0.021456413, 0.04038127, -0.04425138, -0.03067511, 0.020595111, -0.010112076, -0.04707424, 0.011624134, 0.006593268, 0.001824551, -0.03990853, -0.0022778106, -0.049619276, -0.03820311, 0.008595632, -0.0458515, 0.017307967, 0.017276889, -0.016299458, 0.049766142, -0.088459395, 0.00021094903, -0.005974621, 0.016648805, -0.031708855, 0.0024437213, -0.011524955, 0.022348583, 0.07512476, -0.051706895, -0.011398382, 0.042573497, 0.011557606, -0.004156471, 0.0627239, -0.038036074, 0.0020086227, -0.0034794495, 0.049598992, 0.058975272, -0.033116486, 0.04340178, 0.0186483, 0.016149849, -0.010304631, 0.0105397785, -0.04329272, 4.797895e-05, -0.006639424, -0.003911481, -0.0347531, -0.053121682, -0.014512491, 0.0071722004, 0.022665713, -0.008333731, 0.0022754285, -0.05142649, 0.04190393, 0.022082698, -0.029473897, 0.01483111, -0.028078178, 0.026495276, -0.03090502, -0.038083147, 0.02155775, 0.032703966, 0.016208513, 0.049762566, -0.014768828, 0.035676323, 0.008531142, -0.025703136, -0.03330489, 0.038393613, 0.02020146, -0.04224444, -0.0066844975, 4.872014e-05, 0.003033748, 0.017072547, 0.048946325, -0.07383468, 0.0013525408, 0.020299733, 0.0039513037, -0.05825886, -0.016785907, 0.020292813, 0.017093673, 0.09150597, -0.04904074, 0.030219352, -0.06401117, 0.0044421908, -0.028423553, 0.015423246, -0.047020987, -0.0017953763, 0.021490466, 0.027014395, 0.0036150464, 0.021241255, -0.05876138, 0.03228634, -0.06108614, -0.004819006, 0.051025353, 0.026680576, 0.025873963, 0.019047812, 0.054515123, 0.041521735, 0.029173382, 0.017825693, 0.018017082, -0.0413829, -0.05024928, 0.05187322, 0.027732396, -0.011368568, -0.06340663, 0.0185908, -0.046808112, 0.059970044, -0.019890575, -0.021860303, -0.02005252, 0.041117843, 0.015978929, -0.00076190656, -0.02801588, -0.012062813, -0.031391792, -0.025055073, 0.026596991, -0.017673716, -0.049930394, 0.005105865, 0.05132386, -0.02058502, -0.022933856, -0.02951041, -0.05003757, 0.004778248, -0.04381538, 0.0497599, 0.043159142, 0.0011319872, 0.028677499, -0.020326825, -0.0008392833, -0.06681863, 0.052539382, 0.01450243, -0.0011645955, 0.021212934, 0.010489489, 0.016506867, -0.11525017, -0.010425682, 0.064741954, -0.048484433 ] }, { "values": [ -0.011863418, -0.018479899, -0.0740504, -0.0006342473, 0.025304966, 0.012350105, 0.032588903, 0.054714456, 0.014076958, -0.0021364428, 0.0042112055, 0.04342234, 0.022042783, -0.038067803, -0.046990745, -0.07407869, 0.01535813, -0.00928973, -0.07248224, -0.057984885, 0.028213784, 0.012788463, 0.0035949433, -0.034138758, -0.014671522, 0.026615715, 0.03352889, -0.057186592, 0.023313355, -0.032663506, 0.028403835, 0.057585146, -0.0106801065, -0.020272583, 0.026509037, 0.013971035, -0.062140945, -0.0021522613, 0.012319801, -0.034373727, -0.06667743, -0.036148448, -0.0023439964, 0.059071016, -0.040150475, 0.020918883, 0.022720357, 0.013004076, -0.041138787, 0.02353087, -0.006907989, -0.0047040577, 0.030321589, -0.0348436, 0.018440174, -0.045557346, -0.046780854, -0.031358194, 0.032915898, -0.0044491724, 0.01684994, 0.022522625, -0.04165113, -0.010002019, -0.047507532, -0.048249044, -0.06948855, -0.024688303, -0.037580993, 0.036200795, -0.04552668, 0.05436308, -0.026072174, 0.014518948, 0.00889813, -0.02056874, 0.022008669, 0.013746918, -0.0377663, 0.059127934, 0.017155645, 0.037261065, 0.055904362, 0.052129563, 0.047373805, 0.036731053, 0.06148889, -0.025493387, -0.04809109, -0.013577643, 0.0669326, -0.03017508, -0.029557008, 0.013646271, 0.024151398, 0.00552414, -0.017158996, -0.068646, -0.01720968, 0.09765504, -0.05667703, -0.012462966, -0.02764677, -0.008601945, 0.019076757, 0.024964998, -0.026696289, -0.010662261, -0.014152521, 0.0037289811, -0.060373362, -0.009156947, 0.024113853, -0.011460942, 0.003897215, -0.041763972, 0.029710978, 0.0011860379, -0.03295536, -0.016984055, 0.03545483, 0.014525089, -0.015246223, 0.06280182, 0.028395122, 0.0100124255, 0.010505694, 0.0027750724, -0.04370202, -0.037873805, 0.09682526, -0.10885973, 0.010449928, -0.010503235, -0.012401857, -0.0386842, 0.048324227, 0.028403917, -0.033898868, -0.014080497, 0.029158479, 0.0021446468, -0.04903658, 0.012948967, 0.00039759165, -0.0018942752, -0.0023504647, -0.045767833, -0.024090191, 0.03107963, -0.04795488, 0.006805184, 0.026208756, -0.014990545, -0.04871515, -0.0007772356, 0.057819244, -0.010086542, 0.042980943, -0.056684367, 0.06463078, -0.021808594, -0.014732625, 0.018762654, -0.08419822, 0.002167558, 0.06283636, -0.06116061, -0.012911125, 0.01626611, 0.0018023364, -0.03016897, -0.05830511, -0.09800879, 0.002020998, -0.0011951567, -0.020759372, 0.009523153, -0.060096353, -0.00867015, 0.021185096, 0.054087542, -0.036976386, 0.019344436, -0.03679728, 0.02034818, -0.015171097, 0.0444309, 0.0032652135, 0.014823637, -0.033676255, -0.01612222, 0.022629831, 0.103508316, 0.008757926, 0.036826756, 0.0418265, -0.025474336, -0.032072004, -0.0050691236, 0.030080825, 0.024782492, -0.028090036, 0.056744378, -0.018497411, -0.020753928, -0.026994683, -0.017306006, 0.02462209, -0.013879088, -0.040639583, 0.012211058, -0.010124109, -0.053077046, -0.031176036, 0.025775183, 0.07389999, 0.043041054, 0.0025029192, -0.031086896, -0.05415513, -0.018296827, -0.00011524262, 0.00085474644, 0.049381062, -0.039759353, -0.028726937, -0.023076845, -0.019268138, -0.022889134, -0.047251258, 0.012472364, -0.012518046, -0.022948869, -0.005409561, 0.03700997, 0.0148259755, 0.019869732, 0.0004192052, -0.0030910391, 0.011473166, 0.01190306, -0.0031991377, -0.0015232275, -0.01110463, 0.030869463, 0.057991277, 0.04017237, 0.023329359, -0.033887707, -0.038499128, -0.04315102, -0.037404478, -0.012652404, -0.07684578, 0.0186187, 0.021252664, -0.026589042, 0.00625334, -0.003900364, -0.005556952, 0.032537136, -0.036111176, -0.05301558, 0.0034661554, -0.09214987, -0.0061865067, -0.026845625, 0.0684259, -0.023364143, -0.029079758, -0.0073579424, -0.040744614, -0.036697112, 0.044936568, 0.009807743, -0.027380764, 0.008871006, -0.059775, -0.03851872, 0.061535485, -0.002068128, -0.00013623678, -0.030571638, -0.03108847, -0.019090889, 0.010206215, 0.042141274, -0.03286605, -0.070238784, 0.001899423, 0.040827144, 0.049575295, -0.024897877, 0.024220942, 0.005480271, 0.038659275, 0.035327338, -0.058807187, -0.0021450038, 0.055090763, 0.05814427, -0.038328968, 0.058986284, -0.023069862, 0.06332191, -0.015878785, -0.014962929, -0.021915598, -0.009354304, -3.078852e-05, 0.051617626, -0.044559095, -0.042425994, -0.010503975, -0.014423303, -0.092353486, -0.021116868, -0.030212143, -0.02401224, -0.0051694303, 0.013321797, -0.023444021, -0.035348687, 0.05261875, 0.016529145, -0.008621404, 0.02595263, 0.0008645274, 0.022465957, -0.013349922, 0.05042451, 0.020547608, -0.0018360511, 0.0091165295, -0.011764234, 0.00016983577, -0.0186027, 0.043215334, -0.010723457, 0.054449964, 0.009531696, 0.031721067, 0.0732625, -0.021960678, -0.040894676, 0.018428586, 0.002833526, 0.025742818, -0.083567046, -0.033966817, 0.09126623, 0.004043281, -0.03674853, 0.030218987, -0.0055684205, 0.005497702, 0.015585233, 0.043360956, 0.003233375, 0.006332307, 0.035501514, -0.0011140724, 0.011509037, 0.03089629, -0.026404792, -0.013115192, 0.018121626, -0.0016607278, -0.033750515, 0.045825593, 0.03304864, 0.023009008, 0.046659075, -0.021642797, -0.030038688, 0.019735683, 0.02588917, -0.0067648105, -0.0595059, -0.0002926305, -0.056231078, -0.010247139, -0.014324699, -0.011152451, 0.024710331, -0.03644997, -0.017287826, 0.026854003, 0.03567495, -0.031167388, 0.07273762, -0.0033540502, -0.019730046, -0.03957769, 0.05072812, 0.0063245837, 0.038622614, 0.009797004, 0.0019255447, -0.029953014, -0.0019355832, 0.06470441, -0.032260746, 0.018657899, -0.019890206, 0.08074761, 0.013173541, 0.01329443, 0.012065292, 0.032933123, 0.009433294, 0.040341813, 0.008374068, -0.042297512, 0.011925644, 0.02814708, -0.04861474, -0.030263044, 0.012794746, -0.011909953, 0.030097665, 0.002827504, 0.026269479, 0.009579911, -0.043707445, 0.014879597, -0.014665678, 0.04317448, 0.0037577157, 0.010776777, 0.043472327, -0.049445786, 0.04743675, -0.02885021, -0.048016254, -0.023397794, -0.0020158486, -0.047488984, -0.012664292, -0.0057365224, 0.02030645, 0.04033925, 0.060800016, -0.0037754006, -0.006904313, 0.02477651, 0.012196103, -0.006682072, -0.06960781, -0.047512665, 0.017834118, -0.007666801, -0.041895695, -0.007315854, -0.028125452, 0.018252457, 0.03173556, -0.05859297, 0.030023407, -0.031120349, 0.012032911, 0.0739815, 0.052050952, -0.03373844, -0.025625905, -0.020628996, -0.00019171415, 0.024806725, 0.06890251, 0.023464626, 0.018266601, 0.030520625, -0.013575211, 0.019877573, 0.062477946, 0.026420828, 0.0441036, 0.008890941, 0.031417165, -0.013550562, 0.0316898, 0.006048951, 0.02230546, 0.025989588, -0.05877106, -0.01471501, -0.001744762, 0.022941103, 0.03373082, 0.07428058, 0.08130919, -0.0021892008, 0.047231816, -0.05271387, -0.019046346, 0.04192329, 0.015936313, -0.009860307, -0.004680545, 0.059353195, -0.038167942, -0.018595753, -0.08409585, 0.01596917, 0.03333633, -0.06172148, -0.037729822, 0.036200207, -0.059095647, -0.01520409, -0.010062051, 0.006204759, 7.372693e-05, -0.045001574, 0.07184333, -0.093675844, -0.012636795, -0.003307829, 0.035559285, 0.020032026, -0.03062296, 0.06615114, -0.0679069, -0.092374966, 0.0025915473, -0.022575324, 0.03530482, 0.055780537, 0.0063240686, -0.013121581, 0.020589432, 0.007516916, 0.05217123, 0.0021228422, 0.033999927, 0.026539592, 0.015302662, -0.051905677, 0.015761185, 0.036209952, 0.047157563, 0.05193514, 0.012748223, 0.02193595, 0.008813937, -0.0015641085, -0.0264205, -0.0104682855, 0.06328545, -0.050882407, -0.017398603, 0.016668389, -0.049510237, 0.0035048807, -0.027737772, -0.018374892, -0.017002275, -0.045920357, 0.015798856, 0.07098372, -0.002234002, -0.0056033824, -0.0062121153, 0.044383846, -0.020343717, -0.021164555, 0.04987998, -0.01492983, -0.01738513, -0.0038228524, 0.029422745, 0.0201388, -0.039501645, 0.019200236, 0.00027489493, -0.02439682, -0.009785378, 0.06060893, -0.020856343, 0.03521617, 0.03713592, 0.10932801, -0.01332275, -0.029635437, 0.048243117, 0.023881704, -0.043803073, 0.025835518, 0.03459535, 0.001562573, 0.034722075, 0.0058657173, -0.037227985, 0.08036894, 0.016748834, -0.013237305, -0.04609935, 0.008399217, 0.015098771, -0.056434456, 5.6098517e-05, -0.011546512, 0.0010327232, 0.013497092, 0.025415197, -0.037213385, -0.033354796, 0.024686335, -0.02710994, -0.042410214, 0.008193858, -0.0104911765, 0.01372876, -0.04806417, 0.0071302676, -0.042814538, -0.043194253, -1.8405706e-05, -0.044331733, 0.0060042343, -0.0037361605, -0.037916712, 0.048779286, -0.1000665, 0.017739726, -0.006797333, 0.016759604, -0.018368753, -0.009499649, -0.037797254, 0.024129968, 0.03583523, -0.054283284, -0.009129923, 0.058020722, 0.004656286, 0.0020392144, 0.0433308, -0.0332075, -0.0006812518, -0.007210741, 0.046236273, 0.032873135, -0.037434787, 0.046471886, 0.039717067, 0.02248759, -0.025090301, 0.039979722, -0.036342088, 0.00532144, -0.013785428, -0.0024284243, -0.045365162, -0.0505269, -0.0125956945, 0.021909881, 0.02060995, -0.009228642, 0.0039751125, -0.061366837, 0.032429483, -0.026923163, -0.035681423, 0.01647254, -0.030091975, 0.033765376, -0.03514296, -0.028647581, 0.04998689, 0.021306686, 0.027813967, 0.043719787, -0.00628744, 0.03735204, -0.0045443303, -0.039345894, -0.03541097, 0.03745771, 0.0077146688, -0.06488377, -0.0112788165, -0.010891347, -0.002283228, 0.01232756, 0.05167574, -0.06541241, 0.0066780653, 0.02853827, -0.0094398875, -0.082038485, 0.0042081205, 0.01061465, 0.030000417, 0.07706889, -0.07933306, 0.011525353, -0.058427673, 0.010215551, -0.041728057, 0.03132824, -0.028049761, -0.020904612, 0.026794355, 0.021194665, 0.014740119, 0.051577717, -0.045115262, 0.04710442, -0.060740367, 0.008225501, 0.054909237, 0.04568508, 0.02481818, 0.023800218, 0.05332307, 0.028941238, 0.0445712, -0.0037068606, 0.008522438, -0.045521148, -0.0514554, 0.06867323, 0.027848484, -0.031134084, -0.0550826, 0.034264363, -0.041930523, 0.05761216, -0.010624937, -0.0478193, -0.006836968, 0.037359998, 0.0038338553, -0.0020265465, -0.010776369, -0.01292827, -0.028662296, -0.028922131, 0.021612054, -0.017370591, -0.05081297, -0.010968353, 0.045614626, -0.022921149, -0.026087184, -0.02481085, -0.049356125, -0.017927315, -0.02915408, 0.033386867, 0.03681021, 0.0016953051, 0.035478216, 0.014155385, 0.014152218, -0.077803925, 0.0658455, 0.016885068, -0.020991072, 0.016519254, 0.018348813, 0.00913127, -0.10323555, -0.015279269, 0.06401387, -0.04441231 ] }, { "values": [ -0.012597016, -0.021054182, -0.0837471, -0.024738373, 0.01663447, 0.015637247, 0.03933197, 0.05040594, 0.0066047213, -0.01644374, 0.019903336, 0.07547333, 0.021410817, -0.03759084, -0.047097802, -0.07461776, -0.01195421, -0.004788378, -0.07942328, -0.059537116, 0.018522028, -0.011416367, 0.030910986, -0.029389307, -0.0007871748, 0.03201399, 0.032581467, -0.04522153, 0.034300476, -0.023496658, 0.027339146, 0.04597996, -0.0010335523, -0.0025490376, 0.066051535, 0.016602237, -0.037010394, -0.010772598, 0.014791646, -0.013722399, -0.06019987, -0.027691478, -0.027018344, 0.042975765, -0.038110595, 0.032420587, 0.004546163, 0.017171148, -0.026986143, 0.024105627, -0.008974382, -0.010409264, -0.01402502, -0.05380308, 0.026041191, -0.042769443, -0.028195327, -0.049918033, 0.047671057, -0.002585798, 0.019903954, -0.0025875412, -0.0114692915, -0.009682766, -0.03797277, -0.031886004, -0.046803225, -0.030280745, -0.048398945, 0.043624908, -0.019095182, 0.053303722, -0.012385992, 0.029386662, 0.007698413, -0.00930624, 0.036715154, 0.02378539, -0.05140934, 0.03968783, -0.01283501, 0.040837944, 0.077651374, 0.014779661, 0.035861667, 0.009942773, 0.05358363, 0.009395286, -0.03908876, -0.00037138117, 0.07682439, -0.03901157, 0.012744172, 0.027358308, 0.03549344, -0.0031670763, -0.035680026, -0.09606449, -0.031063344, 0.111876, -0.05436127, -0.006422284, -0.032161884, -0.015887909, 0.04216354, 0.03739542, -0.023817256, 0.008282317, -0.023081446, 0.0069573377, -0.03775432, -0.025959272, 0.022646366, -0.025745235, 0.021446005, -0.039653048, 0.014622622, 0.006254093, -0.031723414, -0.014254929, 0.036804024, 0.021699002, -0.0054236064, 0.06684359, -0.0043087155, 0.01044376, 0.0156608, 0.002172009, -0.03740471, -0.057483178, 0.07877047, -0.10833102, 0.014201579, -0.016369311, -0.019198615, -0.037465625, 0.03887926, 0.030356366, -0.009676375, -0.0179749, 0.01760019, 0.0029215077, -0.03154073, 0.0111611895, -0.0044387802, -0.003936681, 0.009963303, -0.04690412, -0.022530504, 0.0037633744, -0.06634574, 0.007027063, 0.028433535, 0.0026461314, -0.037897807, -0.009270857, 0.08139518, -0.026475687, 0.06879935, -0.052280985, 0.028463332, -0.02126193, 0.009181248, 0.021918578, -0.10885653, -0.008024177, 0.044395633, -0.07126953, 0.005103729, 0.017787274, 0.00761261, -0.028922444, -0.030045968, -0.10953531, 0.0032921953, -0.012853827, -0.026515488, 0.03175333, -0.06644979, 0.0026211692, 0.034980807, 0.029205604, -0.020520149, 0.007506576, -0.021144174, 0.018105635, -0.017885799, 0.036538698, 0.0072525693, 0.008412402, -0.0110705, -0.010905511, 0.03802434, 0.091836624, 0.006960522, 0.026139269, 0.04326594, -0.009051804, -0.013754347, -0.002716489, 0.042336296, -0.01917343, -0.017745601, 0.04786037, -0.018669572, -0.04738899, -0.026832018, -0.023834428, 0.031991914, -0.0020037228, -0.057346173, -0.00507322, -0.011054392, -0.044909537, -0.023776656, 0.032428328, 0.08537743, 0.08014985, 0.020392578, -0.00805719, -0.039494228, 0.007337901, -0.0048632626, 0.009129089, 0.030483745, -0.055326287, -0.054335255, -0.019318108, -0.028624073, -0.020924665, -0.050666075, 0.02442791, -0.00010562453, -0.03257764, -0.0005153539, 0.005339123, -0.01195364, 0.018895444, 0.013886942, -0.030863665, -0.0038816836, 0.03687506, 0.012778345, -0.004814651, 0.010880173, -0.0011289865, 0.051924244, 0.05897726, 0.011331928, -0.034359686, -0.034445878, -0.029510818, -0.0062624426, -0.0117894, -0.074542694, 0.022087203, 0.021099336, -0.028879015, -0.011869287, -0.013020167, -0.013264115, 0.025098642, -0.023909088, -0.063679114, -0.012205954, -0.088395774, 0.018224467, 0.0016684938, 0.058993198, -0.01115555, -0.015573974, 0.0055198846, -0.025709009, -0.051673267, 0.029175438, 0.0027705098, -0.03277713, 0.02593753, -0.03574722, -0.031284157, 0.068059675, -0.0014516158, -0.012642626, -0.017783739, -0.01047156, -0.031561024, 0.0066734888, 0.0091870995, -0.042287383, -0.083045535, 0.016715417, 0.05169577, 0.033460405, -0.006003944, 0.022460526, -0.0033069386, 0.040393766, 0.033604316, -0.027465086, -0.006228092, 0.059355646, 0.054288037, -0.03627957, 0.041235805, -0.02923976, 0.08181622, -0.026955342, -0.024270337, -0.049131814, 0.001488569, 0.00056640885, 0.06287387, -0.03241309, -0.04007663, 0.0033435044, -0.0059998604, -0.06813976, -0.014270739, -0.035436757, -0.053120915, -0.005240048, 0.024963256, -0.023352146, -0.029759273, 0.065366134, 0.009251731, -0.010083136, 0.010441976, -0.0041938447, 0.027717065, -0.009938661, 0.031844143, -0.012850727, -0.012217348, 0.012496965, -0.032990467, -0.013826353, -0.023580099, 0.04737073, -0.02621644, 0.043618724, 0.028265959, 0.049761772, 0.05027872, -0.048339173, -0.033001542, 0.025842715, -0.016209137, 0.022134854, -0.080754645, -0.031892065, 0.08569066, 0.01647789, -0.02666397, 0.030510312, -0.018921094, 0.015064077, 0.010277363, 0.046873223, 0.016644742, -0.01627758, 0.032445543, 0.00832329, 0.009531405, 0.01342884, -0.031816036, -0.018889131, 0.013212512, 0.004305791, -0.015774978, 0.02115365, 0.04785722, 0.018625684, 0.006350939, -0.016578134, -0.05331178, 0.016225664, 0.007655517, 0.0009855164, -0.059812292, -0.015245754, -0.048718322, -0.018431738, -0.018443761, -0.00037569716, 0.030547064, -0.043507725, -0.018803032, 0.032883406, 0.02300931, -0.008267782, 0.07774883, 0.0013403494, -0.01545949, -0.033135872, 0.05157641, 0.0068246857, 0.041135058, 0.016749056, -0.00785324, -0.023136636, 0.031844933, 0.054581936, -0.032062225, 0.006882997, -0.0129153235, 0.07172597, -0.0070348517, 0.0037260149, 0.020223653, 0.02996117, 0.006672877, 0.035938796, -0.0056080907, -0.029519543, -0.0065556723, 0.031576384, -0.02909545, -0.037911016, 0.030533228, -0.018260965, 0.033571906, 0.020284528, 0.03698747, 0.015141221, -0.050536733, 0.037366472, -0.0042501967, 0.033382993, 0.0064110016, 0.033138376, 0.04628108, -0.040019646, 0.061822157, -0.02081757, -0.055913493, -0.00044919015, -0.0002930228, -0.05054173, -0.022307916, -0.00086231343, 0.01618413, 0.04564105, 0.0523104, -0.010998486, 0.010653723, 0.036110155, 0.01597251, -0.0065901456, -0.06931263, -0.044013776, 0.043288454, -0.019583048, -0.051758796, -0.01522848, -0.005398511, -0.00043128536, 0.04397978, -0.042825993, 0.04432481, -0.041635256, -0.014959285, 0.070776686, 0.050053425, -0.022692783, -0.032226942, -0.029178202, 0.024777358, 0.027897386, 0.03956533, 0.023829535, 0.03871113, 0.014704785, -0.0029191913, 0.026552761, 0.049628675, 0.039984703, 0.018329304, -0.018518498, 0.020921297, -0.017995166, 0.03496383, -0.0032078733, 0.021760164, 0.018449599, -0.048162624, -0.033264965, -0.004086681, 0.030101025, 0.024597704, 0.046987478, 0.0635195, 0.00231895, 0.043669865, -0.053129382, -0.018307582, 0.040875416, 0.030151876, -0.020919256, -0.0151895145, 0.058708876, -0.01983302, 0.0052754586, -0.053469818, 0.015168929, 0.03755454, -0.053121738, -0.02992066, 0.03933538, -0.062773794, -0.03243644, -0.022764882, 0.0085798185, 0.010645121, -0.0458045, 0.07304327, -0.08680938, 0.0018677891, -0.02291261, 0.03405883, -0.024100002, -0.05361475, 0.06833955, -0.06568795, -0.0838202, 0.020428564, -0.01841072, 0.016741576, 0.036870696, -0.002288009, -0.008939696, 0.020088563, -0.003976183, 0.038106363, -0.006366229, 0.034945615, 0.029980851, 0.00092003425, -0.03878937, 0.04757802, 0.044279575, 0.038071882, 0.054789428, 0.0329607, 0.032909226, 0.008527277, -0.0026970308, -0.03886931, 0.0028112805, 0.051799655, -0.04325784, -0.034320246, 0.0031447038, -0.046211056, -0.0069641997, -0.027442135, -0.030005973, -0.01196923, -0.030007275, 0.033059537, 0.072691925, -0.015412337, -0.021305615, 0.00372377, 0.025557056, -0.023980081, -0.021703318, 0.07181417, -0.005602773, -0.009286153, -0.01317784, 0.03470446, 0.030606413, -0.048352856, 0.022124613, -0.000164927, -0.0076540667, 0.0011755712, 0.07001489, -0.014313304, 0.058632713, 0.038949072, 0.07940272, -0.030360384, 0.0061054328, 0.033033956, 0.0086458465, -0.018738594, 0.035189103, 0.032229554, -0.0039094924, 0.023706794, 0.016808547, -0.037753426, 0.091294825, 0.0044984547, -0.0068939463, -0.038100094, 0.0005970868, -0.0134955775, -0.059285976, -0.023840183, -0.026500735, 0.019265136, 0.025829658, 0.032199442, -0.016961984, -0.041105792, 0.026583873, -0.017790526, -0.056441598, -0.00038823983, -0.00069413247, -0.00013092684, -0.04255312, 0.009041932, -0.040928945, -0.05669305, 0.012566346, -0.023628874, 0.029997328, 0.0059550144, -0.036438894, 0.040143654, -0.08041838, -0.0038611419, 0.007055942, 0.009479943, -0.032674953, -0.013229735, -0.033447023, 0.004686168, 0.04200852, -0.051636428, -0.04071036, 0.051325362, 0.012505714, 0.01335308, 0.036410667, -0.056436125, -0.014829843, 0.018836604, 0.046732496, 0.041701887, -0.0692284, 0.049051277, 0.04972329, 0.036351547, -0.027844071, 0.047542114, -0.044461, -0.030533232, -0.009395604, 0.0018085805, -0.044605892, -0.037825637, -0.0034516186, 0.011774347, 0.026926737, -0.0059897425, 0.005914343, -0.050782714, 0.035196535, -0.006789627, -0.041545738, 0.015835298, -0.026241006, 0.035942644, -0.037517097, -0.036793843, 0.053359658, 0.023696875, 0.042508006, 0.05132777, -0.007183029, 0.032036833, -0.0020547446, -0.040660035, -0.029571448, 0.020506673, -0.0005480197, -0.059600133, -0.022416895, -0.0043745106, -0.003621762, 0.012158114, 0.07845466, -0.04184727, 0.02618962, 0.03591235, 0.030589102, -0.056292046, -0.0069612837, -0.004966282, 0.020931607, 0.08924808, -0.10082891, 0.023666894, -0.07079125, 0.002298428, -0.021572951, 0.029768284, -0.029023075, -0.005605468, 0.041254576, 0.000723077, 0.013928338, 0.04443353, -0.03464615, 0.04790913, -0.060078386, 0.013067368, 0.040893983, 0.036802355, 0.021668361, 0.034207482, 0.05059702, 0.018073624, 0.059485573, 0.022998078, 0.011953943, -0.04348239, -0.06824916, 0.07578728, 0.042462304, -0.025774155, -0.05995208, 0.03635686, -0.039484233, 0.052626543, -0.028407132, -0.04535603, -0.0061719613, 0.04840793, -0.0049339156, 0.008801629, -0.022715691, -0.00986401, -0.016993422, -0.034190938, 0.018125985, -0.02079615, -0.03330317, 0.015248305, 0.031727757, -0.030838814, -0.01211279, -0.05943065, -0.057384983, -0.022373784, -0.032819465, 0.03398847, 0.015736697, -0.01739384, 0.051636383, 0.013574506, 0.016931292, -0.06407467, 0.049665418, 0.0073178406, -0.008950789, 0.03537073, -0.0067825913, 0.017019361, -0.090162165, -0.017359177, 0.066450395, -0.038342383 ] }, { "values": [ -0.006921819, -0.022261092, -0.053069506, -0.041056603, 0.0083095, 0.0268799, 0.0068895593, 0.036036115, -0.00404032, -0.011964031, 0.034787126, 0.0565229, 0.034129784, -0.0035079713, -0.018165532, -0.03178877, 0.016527586, -0.021252433, -0.055591542, -0.0063572014, 0.021379083, 0.005184703, 0.008374794, -0.03837774, -0.03227841, 0.03562402, 0.014751729, -0.055204496, 0.030017424, -0.043520648, 0.013120962, 0.029389417, -0.026773466, -0.004538222, 0.07304689, 0.019886553, -0.03768973, -0.0069063418, -0.0011853662, -0.04154432, -0.049425475, -0.02240039, -0.025522431, 0.05191438, -0.05919794, 0.025486946, -0.012794305, 0.021574553, -0.03860778, 0.021511119, -0.008371783, 0.0022566894, -0.0021622402, -0.009019877, 0.028074915, -0.04474162, -0.06161746, -0.052321944, 0.075142905, 0.00973182, 0.03280339, 0.013860685, -0.045416374, -0.024232667, -0.039267264, -0.055564743, -0.047171548, -0.038612153, -0.07028843, 0.013633169, -0.037766982, 0.042681865, -0.058281623, 0.024659691, 0.0028193642, -0.0486081, 0.04218698, -0.0075207055, -0.025904778, 0.056836057, 0.0035838003, -0.0014012287, 0.036614582, 0.050331455, 0.02805427, 0.03521086, 0.022793872, 0.0094791, -0.07455555, 0.010903889, 0.052092258, -0.030374195, 0.007191754, 0.018616974, 0.064573474, -0.0382515, -0.04047112, -0.0794271, -0.025659345, 0.06957958, -0.0686115, -0.012082293, -0.025839355, -0.025003033, 0.054803293, 0.051059745, -0.007906935, -0.0060402746, 0.012390577, 0.009319632, -0.051087953, -0.008679647, -0.020620318, -0.005585581, 0.012451128, -0.0302195, 0.04273143, -0.017937891, -0.032452825, -0.009326196, 0.0349586, 0.0105067035, -0.031593587, 0.06460682, 0.03834219, 0.016681746, 0.0027336678, -0.0076155714, -0.038302973, -0.040109847, 0.056384686, -0.13200104, 0.02369865, 0.016004447, -0.034416795, -0.032571446, 0.07432326, 0.04023419, -0.05590346, -0.0130060315, 0.02101685, -0.012177219, -0.042157836, 0.03427836, 0.0039140373, -0.008888632, 0.009430631, -0.030859813, -0.024501296, -0.00020575142, -0.0552577, -0.002747526, 0.008944899, 0.008068228, -0.040585387, 0.031359773, 0.09770965, -0.049573086, 0.0400961, -0.06276672, 0.010318774, -0.04387591, -0.017014248, 0.022936733, -0.06937017, 0.0399239, 0.05392572, -0.0578076, -0.0268982, -0.0075063664, 0.0037746339, -0.09395768, -0.047232695, -0.09208005, -0.041700233, 0.00029440218, -0.032730397, 0.0014976013, -0.045787208, -0.009621032, 0.04192158, 0.031936336, -0.006633908, 0.009326277, -0.037309725, 0.0058624656, -0.010492246, 0.04138144, 0.012085708, 0.024648832, -0.037421197, -0.012045829, 0.033186525, 0.053662807, 0.007326898, 0.04668145, 0.05559364, -0.033001043, -0.028959002, -0.016194679, 0.02108551, 0.020906664, -0.01683745, 0.036858782, -0.013156629, -0.0418492, -0.033620384, -0.0066289194, 0.037811793, -0.012877277, -0.018183248, 0.051958103, 0.015126407, -0.05025955, -0.038563993, 0.0240127, 0.08040893, 0.051620964, 0.012893273, -0.054276336, -0.028915185, 0.011821584, 0.021519661, 0.01147235, 0.051759552, -0.005352729, -0.0146785965, 0.016753368, -0.012967642, -0.016573947, -0.051418807, 0.03677475, 0.016747644, -0.042386793, 0.012577419, 0.014320285, 0.047457747, 0.01313697, -0.01636466, -0.012496076, 0.010668894, 0.033690535, 0.005862925, -0.027568158, -0.007057625, 0.030546552, 0.08575496, 0.05303827, -0.023255745, -0.028203083, -0.024718516, -0.05312658, -0.025814917, -0.020545779, -0.0704813, 0.007697645, 0.021771256, -0.05225445, 0.016793145, 0.012032396, 0.0050998647, 0.008957722, -0.027207129, -0.06843671, -0.0061637517, -0.07838647, -0.013556671, -0.0055288672, 0.040358614, -0.035546266, -0.027261168, -0.0018566495, -0.08649147, -0.040021498, 0.024958732, 0.023534313, -0.03933815, 0.02226616, -0.056897756, -0.055597346, 0.07352016, -0.01855225, -0.024288366, -0.040752854, -0.024297744, -0.042068493, -0.0020211253, 0.038705166, -0.03668957, -0.060057376, 0.028670715, 0.0151993055, 0.033544324, -0.026220996, 0.056077436, -0.0046825893, 0.03176198, 0.023568066, -0.015540591, 0.001309655, 0.018234748, 0.045184877, -0.02982571, 0.021173147, -0.0023251367, 0.053214952, -0.028260378, -0.037699126, -0.023129443, 0.008208986, 0.002473247, 0.065711334, -0.04179859, -0.024515305, -0.0064761178, -0.0017767791, -0.10608082, 0.012311344, -0.044128656, -0.03493045, -0.0050141276, 0.014464131, -0.027276225, -0.05051697, 0.021403903, -0.0057942783, -0.017215388, 0.01690565, 0.0035365743, 5.3599768e-05, -0.019622236, 0.025056794, 0.0045942822, 0.008208163, 0.0070457053, -0.0073997388, -0.033608537, -0.008684801, 0.051179785, -0.022692494, 0.037746757, 0.013985625, 0.07092309, 0.057149526, 0.0026367907, -0.030956786, 0.0044846106, -0.004574606, 0.033995043, -0.06675832, -0.03402111, 0.08099133, 0.0018381183, -0.012395905, 0.059478514, -0.0018103886, 0.029991122, 0.020380182, 0.026703406, 0.012150498, -0.04780544, 0.009558507, 0.012179676, -0.0070620943, 0.02997938, -0.009135621, -0.002006826, 0.011441123, -0.0068866545, 0.0033660773, 0.024945563, 0.026476922, 0.034823284, 0.033654332, -0.012937773, -0.058552973, -0.009666029, 0.010284113, 0.002111087, -0.03340111, -0.016525012, -0.07306047, -0.029596683, -0.01622441, -0.011422577, 0.009473093, -0.036564555, -0.00450854, 0.0522174, 0.0023269446, -0.022284195, 0.04661853, -0.024420278, -0.01344105, -0.02093041, 0.06426126, 0.012814989, 0.031313706, 0.01426683, -0.012340791, -0.03199983, 0.00689873, 0.0911576, -0.03135072, 0.0146025885, -0.008297995, 0.061305877, 0.021310842, 0.016621726, 0.0023091112, 0.03363224, 0.015571116, 0.04037267, 0.033711016, -0.024917519, 0.019757988, 0.04487892, -0.025547868, -0.031946994, 0.024131102, -0.003352771, 0.026545621, -0.006662167, 0.07111694, -0.018080467, -0.06541647, 0.0089242365, -0.0015625347, 0.019744778, 0.013704152, 0.008800794, 0.03305543, -0.03328878, 0.0048590624, -0.05160418, -0.046344712, 0.0011999917, 0.005873824, -0.036081728, -0.010189824, -0.017969646, 0.019515384, 0.045602243, 0.05294144, -0.0006703469, 0.021921746, 0.020408228, 0.022810586, -0.04045417, -0.06542527, -0.02591225, 0.027981387, -0.012792907, -0.044023838, 0.0035864688, -0.007097369, 0.014817524, 0.034574248, -0.030524103, 0.034457378, -0.053058088, 0.016527012, 0.04769055, 0.05328596, -0.029856289, 0.010213304, -0.044298857, 0.02786762, 0.0017107325, 0.06425258, 0.04406627, 0.004470483, 0.022514094, 0.013068705, 0.036775704, 0.035289038, 0.0074236216, 0.023868317, 0.0018313136, 0.04520298, -0.027005274, 0.037979726, -0.024699347, 0.037834086, 0.024827402, -0.07387214, -0.04649374, 0.020967703, 0.034775667, 0.053600553, 0.056713764, 0.06457591, -0.0025323597, 0.043457925, -0.020162024, -0.026488181, 0.056096878, 0.021949392, -0.034935955, -0.019593868, 0.07728253, -0.007882288, -0.010194877, -0.05156916, 0.005492035, 0.024148993, -0.04934138, -0.04624209, 0.008695866, -0.03423392, -0.005280104, 0.009251904, 0.047453325, 0.007277832, -0.038980592, 0.05936817, -0.09325623, 0.0034986855, -0.031354543, 0.052763987, -0.0018938546, -0.020174658, 0.04932963, -0.05056222, -0.08039226, 0.021033557, -0.02567771, 0.027711464, 0.025030266, -0.016641127, -0.028999886, 0.02108378, 0.026363289, 0.02899223, 0.031138403, 0.0044718916, 0.010704887, 0.037233386, -0.035141733, 0.04506065, 0.020930378, 0.048694436, 0.052693404, 0.013967354, 0.020381534, -4.8770817e-05, 0.015229783, -0.038832597, -0.0036730228, 0.0713959, -0.036106776, -0.010781033, 0.045915164, 0.00520837, 0.007604387, -0.041776773, -0.031268943, 0.0037380075, -0.053624857, 0.010095818, 0.086298965, -0.0045596203, -0.027437301, -0.0020760414, 0.04649215, -0.01820777, -0.028932799, 0.05529938, 0.016726049, -0.037528336, -0.0079247095, 0.048629247, 0.007698827, -0.03311247, 0.047390066, -0.01512217, -0.014223305, 0.0069454946, 0.06738474, -0.012926247, 0.045442574, -0.010321197, 0.06415029, -0.050524507, -0.018704847, 0.025260366, 0.045269392, -0.009599184, 0.02295501, 0.037942067, 0.002271622, -0.010820108, 0.0021505728, -0.034029603, 0.08785114, -0.03477007, -0.015323153, -0.023996612, 0.027533552, 0.009516186, -0.04125255, 0.028242145, -0.05155726, 0.022163985, 0.019388318, -0.007297535, -0.04710695, -0.037539344, 0.008149938, -0.019501643, -0.035904773, 0.018086033, -0.03063372, 0.0021760329, -0.030841246, 0.034303147, -0.04704078, -0.020066755, 0.0016007783, -0.019384952, -0.0027686597, 0.019875474, -0.043456875, 0.03433206, -0.085266225, 0.012123495, -0.030665599, 0.038631584, -0.033449575, -0.005425485, -0.007386369, 0.036646277, 0.026420448, -0.06435493, -0.044104833, 0.037477616, 0.022606615, -0.012741939, 0.017699294, -0.04662323, 0.0014800209, 4.800312e-05, 0.037560653, 0.030493837, -0.07033704, 0.03568614, 0.020205766, 0.041694056, -0.009864005, 0.034423638, -0.007890087, 0.008321569, -0.01949854, -0.012798713, -0.039595235, -0.03298364, -0.017269759, 0.005741115, 0.018626837, 0.0011276974, 0.003040715, -0.06422139, 0.03671288, 0.0065652556, -0.042292163, 0.017680738, 0.004145499, 0.02460928, -0.025280612, -0.040803034, 0.045741916, 0.0066189202, -0.003112368, 0.03422543, -0.02836541, 0.03142717, 0.017682118, -0.00088394206, -0.06529021, 0.05591422, -0.0016421664, -0.060112324, 0.020482108, -0.020626793, -0.0016135697, 0.012639471, 0.05512349, -0.07070183, 0.04474752, 0.040607404, -0.0026192723, -0.07002869, -0.006261317, 0.012359429, 0.012242655, 0.053127084, -0.07933591, 0.035418835, -0.05346035, 0.029432142, -0.029619724, -0.0012687134, -0.031322494, -0.038661227, 0.040542204, 0.0125218835, 0.039122287, 0.016088469, -0.03534275, 0.041993774, -0.06207637, 0.01915321, 0.08233817, 0.030921217, 0.023958841, 0.023087857, 0.05872126, 0.016157078, 0.03837136, -0.0044411314, 0.0021304276, -0.038285997, -0.077030614, 0.080246516, 0.03259596, -0.003539654, -0.06611538, 0.013766685, -0.04097871, 0.059202652, -0.012243466, -0.043833934, -0.018177321, 0.03271891, -0.0056148246, -0.013224035, -0.037522413, -0.009901358, -0.024093647, -0.047902588, -0.01438069, -0.038719676, -0.04320087, 0.0029792378, 0.02119165, -0.0029897408, 0.005187547, -0.0847255, -0.03173361, -0.022332849, -0.038688365, 0.012349303, 0.0503983, -0.0077303457, 0.019635966, -0.014081543, 0.033901043, -0.073974654, 0.026671784, 0.01960638, -0.018917793, 0.008834164, -0.013162016, 0.021662263, -0.107008085, 0.019438751, 0.052872457, -0.03045107 ] }, { "values": [ -0.01807069, -0.024426049, -0.0618352, -0.024798896, 0.022099204, 0.015108993, 0.033526517, -0.0068297316, -0.008675972, -0.014299607, 0.043062914, 0.064568914, 0.018412385, -0.028637225, -0.04061266, -0.0481998, 0.025258824, -0.0009653724, -0.07298193, -0.060288623, 0.040218074, -0.007115698, 0.011158716, -0.035769094, -0.0076391622, 0.04639555, 0.02651503, -0.051233113, 0.03146993, -0.03339664, 0.014190871, 0.04653087, -0.019977532, -0.003755555, 0.07024678, 0.0049989955, -0.044408623, -0.012963338, 0.030395752, -0.03699896, -0.023124697, -0.005327274, -0.03383063, 0.031260956, -0.036478914, 0.04413259, 0.0033797284, 0.034374353, -0.014655148, 0.03255166, 0.0033992406, 7.421427e-05, 0.023488369, -0.03448798, 0.038609, -0.044444144, -0.07140353, -0.06237631, 0.06095398, -0.005833, 0.04160764, 0.016460594, -0.04260901, -0.020325346, -0.0025977378, -0.0154522415, -0.033929415, -0.053890936, -0.054831304, 0.06157827, 0.0075781215, 0.045128778, -0.027824286, 0.0076783746, -0.0047184667, -0.0024076006, 0.008433431, 0.024919474, -0.06799361, 0.03357356, -0.03469168, 0.014688294, 0.07089021, 0.0243401, 0.044732857, 0.012048001, 0.017780507, -0.0011643206, -0.051191907, -0.0054555302, 0.06407118, -0.028554326, -0.008849662, 0.013698734, 0.020026345, -0.010962024, -0.038105823, -0.08966016, -0.035276175, 0.11774114, -0.035557926, -0.017395686, -0.015744938, -0.02332415, 0.057669587, 0.042705085, 0.003002526, -0.02201934, 0.0011695612, 0.036868945, -0.038877763, -0.042237215, 0.01273618, -0.0010956229, 0.024830753, -0.006558224, 0.047120433, -0.025295058, -0.026618168, -0.030071357, 0.03750869, 0.010856359, -0.027441943, 0.06228747, 0.023657165, 0.0065817395, -0.011324183, -0.0065063834, -0.03990229, -0.07659964, 0.06999366, -0.12159774, 0.003454469, -0.010688217, -0.014858758, -0.035538193, 0.04236273, 0.025868103, -0.007014877, -0.014265125, -0.0025425456, 0.006438657, -0.03363692, 0.031081637, -0.006957104, -0.020891288, 0.009243718, -0.013715589, -0.017077217, 0.021505512, -0.07912547, 0.017038064, 0.02132443, 0.0030225543, -0.03224513, 0.023402026, 0.08514694, -0.019570213, 0.04105778, -0.0591753, 0.045340296, -0.03174161, -0.031778403, 0.018100258, -0.07579277, -0.033845138, 0.040843297, -0.06909287, 0.01120264, -0.0018314621, 0.02845105, -0.04198838, -0.040523775, -0.097697556, 0.011901202, 0.0065607512, -0.005959391, 0.010910339, -0.031072726, 0.031333502, 0.042616084, 0.012389864, -0.008962621, 0.013639708, -0.0356027, -0.010152185, -0.043416772, 0.035381347, 0.030300666, 0.023916572, -0.018979806, -0.014805589, -0.0021609713, 0.07439999, 0.023246303, 0.028769188, 0.04447142, 0.00024656113, 0.015345149, -0.014567134, 0.061155245, -0.021019917, -0.017879816, 0.023309413, -0.013639872, -0.04291091, -0.016589113, 0.0057358867, 0.030128554, 0.02433704, -0.06344743, 0.007160788, 0.02381226, -0.042528924, -0.053501423, 0.0347217, 0.066612795, 0.062318947, -0.017271945, -0.022724807, -0.020994093, 0.008161413, 0.01995086, 0.012412442, 0.053459454, -0.02424653, -0.054901183, -0.03984152, -0.030801598, 0.0094957035, -0.054412797, 0.043487847, 0.030051963, -0.021732792, -0.013949275, 0.02672794, 0.007494678, 0.020060178, 0.011222284, -0.0275625, -0.033411596, 0.027572494, 0.015376837, 0.0017716831, 0.010819292, 0.056204125, 0.071296446, 0.0706789, -0.018061923, -0.01817457, -0.037696563, -0.039908454, -0.040645417, -0.0026586032, -0.06677839, -0.015052117, 0.023055924, -0.05156129, 0.00639304, -0.015309223, -0.0027622469, 0.007765136, -0.040301718, -0.062250074, -0.015141681, -0.082253285, -0.00090312754, 0.004048917, 0.07670003, 0.007138987, 0.009049874, 0.014055982, -0.052219786, -0.06365067, 0.045698702, 0.010643406, -0.012650125, 0.023002665, -0.03728303, -0.04134637, 0.06902706, -0.022693306, -0.021882037, -0.027001623, -0.0060082027, -0.03430312, 0.028286392, 0.027222088, -0.027737483, -0.07891493, 0.033145167, 0.025890512, 0.04076587, -0.022865906, 0.016291022, -0.006172756, 0.033991925, 0.034303784, -0.021032412, -0.018054102, 0.04804468, 0.050298013, -0.024903268, -0.0012529006, -0.03617988, 0.07520562, -0.024650907, -0.056524385, -0.017222382, 0.026996914, 0.00845459, 0.07056181, -0.024256114, -0.036624815, 0.015510589, 0.013835032, -0.11033041, -0.009200686, -0.035444964, -0.04128086, -0.003937491, 0.028935334, -0.027588166, -0.02649118, 0.03352266, -0.01701824, -0.002959286, 0.00058488216, 0.009761645, 0.042359065, -0.011731978, 0.021494452, 0.017175242, 0.013720613, -0.007940234, -0.0234637, 0.0011520933, -0.0050481386, 0.037004035, -0.021808313, 0.025432877, 0.032398082, 0.046530865, 0.019752428, -0.023281904, -0.04824879, 0.015375084, -0.029952725, 0.050071005, -0.07846349, -0.05424056, 0.066224776, 0.015110456, -0.011569702, 0.041354604, 0.0044335723, 0.021891126, 0.01260402, 0.05524696, 0.0113701485, -0.019782236, 0.054308653, 0.017951274, 0.0181655, 0.0025340118, -0.04354326, 0.013958157, -0.0018237001, -0.0046661105, -0.02427612, 0.032978613, 0.04215059, 0.021356074, 0.015165916, -0.030242523, -0.075271405, -0.0012158806, 0.019720666, -0.0050216867, -0.06696359, -0.01481929, -0.055728517, -0.019635284, -0.008020176, -0.0005692339, 0.012047773, -0.048997518, -0.022125844, 0.03044576, 0.025180819, -0.010747095, 0.057881508, 0.0019765808, -0.014208166, -0.016234238, 0.030564547, -0.018444462, 0.02402934, 0.013120462, -0.0249148, -0.0292923, 0.03530664, 0.06716358, -0.022764511, 0.01642007, -0.021539303, 0.07954623, -0.0060223346, 0.0101738125, 0.01608639, 0.021933172, 0.006673241, 0.0055656536, -0.0023004657, -0.040214527, -0.02220871, 0.019133354, -0.03221486, -0.026547696, 0.0034286864, -0.004333298, 0.027141823, 0.016145011, 0.04559058, -0.006604195, -0.08863073, 0.022926781, -0.013092452, 0.0133152865, 0.013648105, 0.017107109, 0.039105825, -0.041780937, 0.044239264, -0.04581869, -0.049623597, -0.019381894, -0.00056579994, -0.048140045, -0.024582002, -0.009335298, 0.008801201, 0.03311518, 0.040997196, -0.010562867, 0.012810406, 0.03558217, 0.01060154, -0.036917016, -0.05444894, -0.003073021, 0.028577847, -0.017474419, -0.055263374, -0.027938798, -0.02490657, 0.02186989, 0.037350196, -0.050388385, 0.039449226, -0.0181529, 0.014515542, 0.060656223, 0.0586217, -0.016102355, -0.034307793, -0.04706355, 0.027691916, -0.0017733631, 0.031574503, 0.011821711, 0.0253941, 0.04448315, 0.011766383, 0.0383879, 0.061373446, 0.02007485, -0.014711918, 0.0035568033, 0.0122615155, -0.021451991, 0.03394715, -0.0064621666, 0.030713081, 0.029626481, -0.06910703, -0.022759952, 0.0070586274, 0.025185417, 0.018384617, 0.038657438, 0.07067551, 0.0027576438, 0.030330256, -0.021726288, -0.02342279, 0.05197301, 0.0018304875, -0.00083834026, -0.033794113, 0.04715594, -0.025580391, -0.0065411925, -0.043234393, 0.004838195, 0.013626666, -0.061873518, -0.02091181, 0.031955212, -0.03899206, -0.021729631, 0.00088416744, 0.045005415, 0.0043826126, -0.060553834, 0.089205556, -0.090537935, -0.011183689, -0.053827412, 0.052640837, -0.030331131, -0.026508698, 0.066141315, -0.078227185, -0.065005966, 0.024274113, -0.024186376, 0.0036773484, 0.007830376, -0.015214649, -0.01530542, 0.02438898, 0.0013301681, 0.031263538, -0.00032806076, 0.0069915066, 0.029698154, 0.0020611687, -0.054451052, 0.056319736, 0.038317986, 0.04797077, 0.057216644, 0.0043830792, 0.02500487, -0.012495162, -0.0048917113, -0.040052276, -0.030732952, 0.048999056, -0.048588548, -0.0403181, 0.00874581, -0.02027886, -0.0046746866, -0.029812116, -0.03163184, -0.013131716, -0.045237113, 0.025441673, 0.03886114, 0.007674216, -0.012577692, 0.026910035, 0.04476148, -0.02648546, -0.021761537, 0.058931712, -0.01583892, -0.022812743, -0.002481189, 0.025308931, 0.017822696, -0.04938218, 0.03249023, 0.00817124, -0.011138192, -0.0067210253, 0.05879465, -0.019716473, 0.060197596, 0.023382869, 0.08692755, -0.05856675, -0.041629653, 0.03244275, -0.0071959924, -0.0280338, 0.0143800955, 0.026950259, -0.0013765576, 0.03358937, -0.008495553, -0.044211738, 0.062843725, 0.0096875755, -0.010857258, -0.039031602, 0.0017042441, -0.003863936, -0.04413873, -0.026010426, -0.037437446, 0.03514596, 0.0045458744, 0.0126849795, -0.015389163, -0.024683876, 0.037078995, -0.015479881, -0.026719952, -0.00078905816, 0.009163189, 0.011487799, -0.04408692, 0.037440773, -0.033183537, -0.030172043, 0.01893699, -0.051413827, 0.017759053, 0.034037095, -0.04545649, 0.027636135, -0.090861626, -0.0040299697, 0.00803734, 0.030794313, -0.008768189, 0.0038728432, -0.00051971816, 0.0018568347, 0.042907357, -0.05579132, -0.031908266, 0.056639425, 0.030435918, 0.0050949007, 0.04161274, -0.051396396, -0.006938885, 0.0064835777, 0.026064621, 0.042570226, -0.061272312, 0.05715803, 0.02795122, 0.018715093, -0.018517792, 0.034321252, -0.045990232, -0.036401384, -0.0053379843, -0.026590673, -0.04763342, -0.043686017, 0.01329348, 0.00017464484, 0.021325184, -0.007344679, -0.024090081, -0.054362174, 0.01872201, 0.009862755, -0.04870679, -0.0065349233, -0.006201114, 0.021521643, -0.03774063, -0.035381995, 0.034665667, 0.026645744, 0.05310877, 0.059636157, -0.036893737, 0.024107948, 0.021883272, -0.005779392, -0.04348, 0.03314479, 0.006456182, -0.042400908, 0.005325415, -0.00880246, -0.007198971, -0.0067631803, 0.07025387, -0.067661904, 0.018121177, 0.020365367, 0.014728364, -0.04735564, -0.008904485, -0.0111937225, -0.0036032787, 0.08292821, -0.0709361, 0.036933318, -0.059594635, 0.00626427, -0.031155754, 0.024643308, -0.05560029, -0.008376547, 0.028284185, 0.02982078, 0.0062885345, 0.040460773, -0.066391364, 0.055579767, -0.05553597, 0.00036727247, 0.053956095, 0.019525941, 0.034231324, 0.044544302, 0.047047794, -0.012873404, 0.041891273, 0.035891067, 0.004102582, -0.06069389, -0.047752704, 0.074597836, 0.028272822, -0.016513776, -0.06953792, -0.010584993, -0.03096413, 0.06531898, -0.006558964, -0.058122452, -0.028350824, 0.044647846, -0.0073949494, -0.00075514073, -0.04283314, -0.00056379073, -0.016191566, -0.029150091, 0.019196713, -0.032011196, -0.043441318, 0.023533285, 0.034531273, -0.025300922, -0.006043299, -0.08754598, -0.03487369, -0.0033180364, -0.044779386, 0.03419473, 0.048630763, -0.0143643, 0.04296821, -0.0059105745, 0.01073391, -0.06395975, 0.050391153, 0.013862497, -0.0361577, 0.03847104, -0.009153559, 0.023640772, -0.0747082, 0.028562536, 0.07359587, -0.026281748 ] }, { "values": [ -0.0154736545, -0.019135626, -0.050561924, -0.032587234, 0.009403844, 0.022369217, 0.011885364, 0.007948703, 0.007703336, -0.0044918433, 0.03111152, 0.05185227, 0.010133665, -0.017142944, -0.034785382, -0.04632444, 0.021095162, -0.011761914, -0.08182432, -0.061646692, 0.054300413, 0.014949841, -0.0030619418, -0.014410383, -0.015941376, 0.03761774, 0.03189769, -0.036894806, 0.032600526, -0.030433992, 0.0037267301, 0.047596153, -0.025283152, -0.009801479, 0.034459736, 0.014451399, -0.06885327, -0.019887364, 0.014121808, -0.034696948, -0.047003992, 0.0073899976, -0.0054204147, 0.03890021, -0.030000636, 0.03934628, 0.016016807, 0.020799702, -0.02173373, 0.02757122, -0.0071856556, -0.016102986, 0.029961117, -0.028927205, 0.01832523, -0.047001157, -0.06685833, -0.023655215, 0.058397204, -0.011318961, 0.038468003, 0.025901979, -0.031864766, -0.002088285, -0.008673725, -0.027346112, -0.047832314, -0.027019499, -0.029252065, 0.064748816, -0.018919582, 0.037496645, -0.033373017, 0.020265091, 0.0033315297, 0.0006969858, 0.022602668, 0.0023257087, -0.070813395, 0.05141539, 0.009033318, 0.03264381, 0.051604997, 0.02005414, 0.01285815, 0.0030958294, 0.05056972, -0.025554916, -0.05592561, -0.010849133, 0.056733184, -0.020061826, -0.018934954, 0.004261479, 0.0146584045, -0.00084190205, -0.04499633, -0.09457363, -0.029110618, 0.09145302, -0.04256558, -0.02853844, -0.03223859, -0.02826236, 0.036038164, 0.022549927, -0.0031824098, -0.002628313, -0.014612186, 0.0009405209, -0.043539412, -0.05071102, 0.003267064, 0.0029095884, 0.004702925, -0.023184193, 0.022929048, -0.024231713, -0.031987406, -0.010188227, 0.026574574, 0.00737278, -0.027666308, 0.061513893, 0.034582186, 0.023709461, 0.0012830091, 0.010087347, -0.053444088, -0.054350913, 0.08576058, -0.13407716, 0.020175349, -0.007909121, -0.011884141, -0.022582332, 0.07009131, 0.020647638, -0.008855993, -0.021180635, 0.003447294, 0.008543873, -0.05705218, 0.02849517, -0.011065638, -0.01769159, 0.0005536912, -0.012654956, -0.0009866398, 0.03481247, -0.074017696, -0.01684641, 0.022480283, 0.014529246, -0.04344479, 0.049698744, 0.06717243, -0.027434938, 0.047000904, -0.06541389, 0.052394353, -0.027318176, -0.045344453, 0.016447142, -0.08304174, -0.017235214, 0.02811581, -0.078497276, 0.002065286, 0.008324825, 0.0072350246, -0.048560046, -0.06588917, -0.070944734, -0.013106839, -0.005336893, 0.007189068, 0.0049753455, -0.037876226, 0.01666766, 0.049345516, 0.05984028, -0.023263434, -0.002200132, -0.028204175, -0.023944387, -0.03754612, 0.039935067, 0.02071216, 0.035084162, -0.021271268, -0.013101211, 0.0067478376, 0.07349704, 0.015919087, 0.026217626, 0.035708845, 0.016012406, -0.02242555, -0.02328317, 0.047855433, -0.0043136855, -0.027980672, 0.057102513, -0.022988543, -0.017003253, -0.022280961, 0.00080957613, 0.04259228, 0.008002854, -0.040156398, 0.019636948, 0.024042102, -0.06992189, -0.05347667, 0.029931523, 0.08079269, 0.049211487, 0.012597324, -0.01474942, -0.046493612, -0.0066652545, 0.016054928, 0.03624351, 0.039926536, -0.010889548, -0.028753087, -0.02704178, -0.034974527, -0.0079042055, -0.018902166, 0.042630885, 0.026556695, -0.038487434, -0.016132468, 0.05084218, 0.009609403, 0.025408192, 0.015817914, -0.008456606, -0.029463923, 0.011113345, 0.006957846, 0.0074501513, -0.0002075727, 0.06431199, 0.06473938, 0.060347993, 0.027191777, -0.04152027, -0.049501393, -0.034364555, -0.039216302, -0.016159995, -0.06624346, -0.016835203, 0.04027141, -0.036720004, 0.02966869, -0.008649834, 0.007994071, 0.013687378, -0.022898676, -0.06422949, 0.013418448, -0.06210187, -0.008091235, -0.009255939, 0.070998974, -0.0063600205, -0.0096291555, 0.0024842415, -0.059736032, -0.060178142, 0.039743554, 0.021137519, -0.02518988, 0.0019454331, -0.030139942, -0.05161635, 0.0780293, -0.020274954, 0.0043402123, -0.014141864, -0.009747274, -0.03119059, 0.017579203, 0.034481, -0.029759774, -0.07828599, 0.017135613, 0.03772272, 0.0258261, -0.037104532, 0.012916635, 0.009352739, 0.047459595, 0.01141317, -0.039084982, -0.012067325, 0.046892658, 0.04723087, -0.046786644, 0.010599549, -0.023992293, 0.062720776, -0.011422644, -0.020623907, -0.014456532, 0.014240336, -0.0055818097, 0.060180597, -0.033049554, -0.030507136, -0.004779927, -0.0011624644, -0.115858205, -0.024067396, -0.055251688, -0.0139044095, 0.0055467063, 0.017410781, -0.024225673, -0.019711126, 0.04373112, -0.0019671128, -0.0006979602, 0.010309054, 0.013197453, 0.027280398, -0.0029075418, 0.033327322, 0.026485229, 0.01641883, 0.009304471, -0.023949176, 0.0141261015, -0.014558533, 0.07372026, -0.008838813, 0.022775007, 0.026054079, 0.05628683, 0.03423128, -0.026473343, -0.05388308, 0.022008788, -0.018884778, 0.02752107, -0.09386353, -0.047487218, 0.08517154, 0.008066852, -0.023654146, 0.041722316, 0.0015009585, 0.00089458155, -0.009907242, 0.047415446, 0.012729797, -0.015672507, 0.048754465, 0.00064798014, 0.022458147, 0.02226755, -0.030396465, 0.014053418, 0.0062054642, 0.0053505762, -0.02440951, 0.037220784, 0.03194583, 0.023130558, 0.032987796, -0.035430744, -0.05551242, 0.0027740856, 0.01966751, -0.0055080354, -0.06911804, 0.010877896, -0.063432544, -0.012487721, -0.00798702, -0.012092863, 0.02967816, -0.03430948, -0.004833321, 0.03506063, 0.020003287, -0.03135233, 0.069655545, -0.0003556854, 0.0032307112, -0.027821152, 0.05607412, -0.01629153, 0.01501981, 0.009456398, -0.025962634, -0.02825876, 0.029209917, 0.06705801, -0.033098, 0.019454883, -0.012037811, 0.09084098, -0.019149337, 0.010389872, 0.0018179578, 0.020535208, 0.018468251, 0.012904622, 0.003789471, -0.05114303, -0.019372782, 0.041235484, -0.031350553, -0.024121625, -0.0059383935, 0.009132689, 0.042407855, 0.02434857, 0.02812707, -0.0025580248, -0.074517876, -0.0071515087, -0.0005723623, 0.038466766, 0.022480533, 0.017164826, 0.020142656, -0.039764836, 0.048324373, -0.026956053, -0.038910825, -0.017707014, 0.012299116, -0.050740387, -0.0161596, -0.0083949305, 0.02175736, 0.0070720143, 0.050005816, -0.0036467214, 0.006759605, 0.03659666, 0.011762077, -0.0379515, -0.052421883, -0.025544642, 0.011053992, -0.015980046, -0.022195963, -0.025724491, -0.030088296, 0.018346794, 0.033905614, -0.06082697, 0.042175453, -0.03992976, 0.00895421, 0.06754385, 0.06054914, -0.028078847, -0.025711061, -0.055265598, 0.03900677, 0.030310089, 0.06730836, 0.005904911, 0.0237058, 0.053354874, -0.010775543, 0.021363866, 0.0547045, 0.01765908, 0.015051612, 0.0090485, 0.026780672, -0.023844495, 0.041247036, 0.0012027381, 0.03989169, 0.04287505, -0.07302922, 0.0017295561, 0.026164776, 0.038888704, 0.032650232, 0.051101606, 0.07503766, -0.006186535, 0.037849355, -0.02969999, -0.017578568, 0.029820042, 0.007152291, -0.008857385, -0.01776675, 0.04896869, -0.045391712, -0.009128112, -0.054920323, 0.023710258, 0.019787056, -0.07101451, -0.033152744, 0.017988035, -0.04508758, -0.004274586, 0.0076255035, 0.033723716, 0.010770198, -0.043298863, 0.06756002, -0.10473444, -0.0126637155, -0.022747435, 0.05583998, -0.0034690008, -0.011950401, 0.066200204, -0.06596058, -0.07942765, 0.011211891, -0.0041363584, 0.020322017, 0.020086458, 0.002181525, -0.017150003, 0.02139093, -0.0059198444, 0.035569698, 0.015248263, -0.0063224044, 0.026637992, 0.011712738, -0.045104686, 0.040331844, 0.048028115, 0.0592571, 0.049170874, 0.0040183244, 0.023752162, -0.0068346667, -0.013509248, -0.038191408, -0.033318434, 0.03908805, -0.014894952, -0.042556707, 0.031002602, -0.028949734, 0.020067407, -0.029440407, -0.03275215, -0.026470672, -0.07076516, 0.024822235, 0.048836328, -0.00074898324, 0.0027044793, -0.0040695495, 0.041291106, -0.048825298, -0.025737667, 0.045706358, -0.024529705, -0.03457857, 0.0100567015, 0.036162056, 0.007500368, -0.05084691, 0.017669925, -0.0005319104, -0.001226883, -0.0093941195, 0.05519266, -0.017402502, 0.042924765, 0.013961439, 0.09616731, -0.044663716, -0.04525413, 0.0399502, -0.00081339566, -0.027657941, 0.0055835717, 0.022564111, -0.0010750102, 0.032383576, -0.012841729, -0.026633268, 0.068189465, 0.009824752, 0.007999231, -0.039823018, 0.004198771, -0.00054724957, -0.039006148, -0.00602004, 0.004059775, 0.037660368, 0.001852021, -0.0004454575, -0.008899407, -0.03014915, 0.039116904, -0.02641905, -0.028784342, 0.014625117, 0.011603934, 0.03312135, -0.05512882, 0.02110616, -0.031020598, -0.015383173, 0.04027604, -0.034339353, 0.020288346, 0.02106075, -0.043789946, 0.04267546, -0.09956873, 0.009147097, -0.014752628, 0.033101834, -0.01440924, 0.012293359, -0.011421414, 0.012785047, 0.04594001, -0.062097844, -0.030555964, 0.049791757, 0.028704239, -0.0022914975, 0.026202332, -0.044634048, 0.006629799, -0.0069285617, 0.015236275, 0.03317194, -0.057460535, 0.071351685, 0.022270298, 0.020423993, -0.009547657, 0.041121956, -0.028192338, -0.009678341, -0.01732084, -0.018851234, -0.044713594, -0.03933486, 0.022271477, -0.003396943, 0.03875894, 0.016914958, -0.030630015, -0.05394472, 0.020006055, 0.008523839, -0.05286461, 0.0039968966, -0.002017188, 0.0085380515, -0.032757923, -0.03441286, 0.050066136, 0.03599242, 0.051749837, 0.055419844, -0.038264368, 0.030865857, 0.025161143, -0.0077556977, -0.034937464, 0.029403215, 0.015954582, -0.049690124, 0.021459216, -0.027762154, 0.0066146385, -0.015687661, 0.069593094, -0.08050272, 0.01895164, 0.007104601, 0.0067428034, -0.07091718, 0.012157161, -0.011767392, 0.005441048, 0.07713636, -0.08150682, 0.0068969373, -0.05102708, 0.023462076, -0.041602854, 0.009210513, -0.052462388, -0.03787616, 0.037627187, 0.02469096, 0.013038979, 0.047907315, -0.06367817, 0.04786401, -0.06475512, 0.025045738, 0.061119314, 0.027591608, 0.025497073, 0.053811744, 0.029486878, 0.006141455, 0.0377865, 0.018899882, 0.0032415953, -0.049961712, -0.053073578, 0.085416675, 0.01664495, -0.040551703, -0.056658115, 0.0023969368, -0.03405435, 0.066259734, 0.0014123168, -0.04583322, -0.015468508, 0.033678114, 0.0037449263, 0.0005341247, -0.017137429, 0.0010657009, -0.030667681, -0.023799667, 0.017471215, -0.027527913, -0.04563236, -0.0078327125, 0.037263405, -0.009228614, 0.0031080127, -0.050369706, -0.041883305, -0.02524582, -0.045831796, 0.016699744, 0.04566491, 0.006567333, 0.040401857, 0.014968615, 0.016435884, -0.07583564, 0.061911505, 0.027229303, -0.03920341, 0.03157505, -0.023205021, 0.011088895, -0.09137962, 0.0033173114, 0.058911223, -0.031298816 ] }, { "values": [ -0.028186074, -0.02149047, -0.07724943, -0.04905197, 0.027762594, 0.025880259, 0.015150921, 0.01424556, 0.019349333, 0.0125338575, 0.019562395, 0.06065704, 0.012146652, -0.007149983, -0.038504586, -0.07807626, -0.00022892503, -0.0038754905, -0.0645948, -0.07676184, 0.04032638, -0.00012699529, 0.0062345807, -0.031910308, -0.029436033, 0.062176738, 0.043813527, -0.036843847, 0.027568622, -0.027445773, -0.00033285856, 0.036017135, -0.01033742, -0.0020755194, 0.07130635, -0.009099619, -0.064550795, -0.014532357, 0.0198308, -0.025678193, -0.057442315, -0.00078085955, -0.013232572, 0.026694851, -0.020989206, 0.035376757, 0.022855958, 0.019490764, -0.05830247, 0.042239916, -0.010422795, -0.0100243045, 0.010030439, -0.03653755, -0.00468795, -0.032096006, -0.034947496, -0.05343928, 0.061107427, -0.021310864, 0.03231454, -0.0002875326, -0.010826517, -0.004300918, 0.0066727386, -0.029913047, -0.04773817, -0.01981894, -0.0231598, 0.039702497, -0.011612533, 0.035947293, -0.027717924, 0.011352324, -0.00840691, 0.012049743, 0.01749268, 0.012008285, -0.06711858, 0.025187818, -0.029069755, 0.01388199, 0.08563956, 0.017534072, 0.0086510535, -0.0058682337, 0.022216419, 0.010802027, -0.027812291, 0.017190823, 0.062156267, -0.03781819, -0.002305573, 0.015801447, 0.027942982, 0.014958472, -0.04747966, -0.07657839, -0.020274092, 0.0917567, -0.031620447, -0.012843089, -0.04986233, -0.020396812, 0.04502699, 0.00623818, -0.0016768152, -0.022227332, -0.03199958, 0.0039584725, -0.011613525, -0.031214055, -0.0050202785, -0.015317414, 0.021487357, -0.010207874, 0.020927826, -0.013561706, -0.041204184, 0.008982923, 0.048220325, 0.031800553, -0.005114193, 0.057406235, 0.033571623, 0.012565566, 0.020133471, 0.0060712267, -0.03854766, -0.06454654, 0.0769319, -0.12022222, 0.019192832, -0.008918853, -0.014195586, -0.028017946, 0.034187313, 0.01644642, 0.017284295, -0.014214002, 0.005313935, 0.023845658, -0.02308474, 0.0014157397, -0.014271823, -0.024324054, 0.012460961, -0.014907218, -0.016583791, 0.013365305, -0.107168354, -0.0057776333, 0.03708212, -0.00050662627, -0.061633106, 0.0012493768, 0.06760293, -0.0091298, 0.06659697, -0.057802998, 0.044993006, -0.03132444, -0.033109445, 0.023810953, -0.091520995, -0.015832929, 0.05206909, -0.07971969, 0.037878957, 0.0044560023, 0.026434127, -0.026634675, -0.04661973, -0.09193166, 0.026261266, -0.012022448, 0.008851454, 0.017486004, -0.015482103, 0.0068614637, 0.059144434, 0.0141891595, -0.018516399, -0.011892057, -0.011544177, 0.0075409347, -0.0421946, 0.051825006, 0.010335113, 0.031957295, -0.018133955, -0.012900204, 0.015162649, 0.07254898, 0.0017234605, 0.022836003, 0.04057195, 0.0017316951, 0.00669643, -0.03914383, 0.05533888, -0.028567309, 0.01130144, 0.041905858, -0.019767668, -0.042273827, -0.04244242, 0.0037823925, 0.03542878, 0.01945747, -0.044536043, -0.018137192, 0.0155874835, -0.06259113, -0.03204811, 0.004113867, 0.06721847, 0.08844648, -0.017200448, -0.019908063, -0.022397637, 0.012886355, 0.003889087, 0.03490342, 0.031895913, -0.029084777, -0.017931037, -0.018584033, -0.03831655, -0.006419845, -0.02423494, 0.021473367, 0.038714267, -0.020936504, -0.024320869, 0.04895232, -0.01771812, 0.021981165, 0.032586705, -0.020776616, -0.0076995585, 0.025552284, 0.010129602, 0.032289073, 0.019892242, 0.03191878, 0.056577608, 0.11003525, -0.0015650713, -0.032333072, -0.060984306, -0.011145993, -0.029416189, -0.021481654, -0.052641146, -0.028112061, 0.035220753, -0.045788426, 0.0073032943, -0.029261181, -0.012377868, 0.0046926076, -0.033871036, -0.06005914, -0.001827534, -0.073548794, -0.006098004, -0.014074319, 0.060737398, -0.0051953434, 0.008982353, -0.016397746, -0.05466358, -0.08177862, 0.03965263, 0.010004456, -0.037926596, 0.02986095, -0.04245462, -0.05910163, 0.061123494, -0.014141133, 0.007878687, -0.002721673, 0.0053862445, -0.02656673, 0.019121852, -0.0061463704, -0.025876725, -0.103022516, 0.027978037, 0.05072261, 0.045226518, -0.016164558, 0.01946408, -0.004432605, 0.055334713, 0.031835567, -0.02654994, -0.015483831, 0.04482189, 0.046528097, -0.049703427, 0.007768019, -0.034774967, 0.07517311, -0.002729379, -0.02513493, -0.021622168, 0.01538691, 0.016166417, 0.07091172, -0.022105524, -0.018786209, -0.0069143763, -0.0004067045, -0.10123484, -0.005118788, -0.068712905, -0.02940195, 0.037414268, 0.03724895, -0.03402668, -0.02950804, 0.044914667, -0.0045124786, -0.012423109, 0.009711001, 0.01413439, 0.009024814, 0.013513938, 0.014920349, 0.013377743, -0.010973165, -0.014740296, -0.050096553, -0.0063735745, -0.0060897046, 0.06653084, -0.010370317, 0.024973458, 0.046775304, 0.040995553, 0.012753643, -0.03676883, -0.041647363, 0.0042574317, 0.015541082, 0.053385712, -0.07706783, -0.052010216, 0.06704496, 0.033535875, -0.011943059, 0.061495434, 0.0026870957, 0.0050121453, -0.0017529393, 0.05616603, -0.0048226966, -0.030126521, 0.03976636, -0.0057050195, 0.025007686, -0.004410861, -0.032502916, 0.028082032, -0.0025850057, -0.0009553403, -0.031624414, 0.035528496, 0.043366883, 0.027123947, 0.011184214, -0.031753406, -0.071676016, 0.013492496, 0.009127187, -0.008482637, -0.041974206, -0.011011251, -0.06445003, -0.017278837, -0.0040707067, -0.0068944944, 0.054257464, -0.049601164, -0.01588148, 0.019911975, 0.0030052445, -0.0314585, 0.05992487, 0.008344146, -0.014545624, -0.0274239, 0.046747617, -0.014577312, 0.011809924, 0.010928056, -0.02623354, -0.033412427, 0.0449921, 0.046607014, -0.020727595, 0.018628228, -0.021901904, 0.072913766, -0.032269083, 0.011312512, 0.025051469, 0.018999077, 0.00618905, 0.03165213, -0.021312373, -0.025523458, -0.025222562, 0.034722585, -0.03575658, -0.04126227, -0.0026557557, -0.011855353, 0.029760396, 0.027640518, 0.043904148, 0.021339871, -0.07241178, 0.018579274, -0.014781123, 0.06664906, 0.027061416, 0.037971787, 0.032609146, -0.027687293, 0.049541418, 0.00619935, -0.049442805, 0.009599662, 0.007819677, -0.029775651, -0.01965149, -0.029580249, 0.0214901, 0.034821786, 0.03938889, -0.02192554, -0.0005444275, 0.034045655, 0.006819314, -0.020207984, -0.046957467, -0.004626123, 0.013179717, -0.011932636, -0.04397936, 0.0010437571, 0.0029430194, 0.007543382, 0.05193708, -0.076923534, 0.023775397, -0.028428897, 0.0060849404, 0.059101112, 0.058379497, -0.014832668, -0.026681982, -0.047840916, 0.04849878, 0.030575292, 0.060056344, 0.0017907268, 0.014614504, 0.020159671, -0.00032357447, 0.02017677, 0.04754901, 0.048484206, -0.0104262, 0.0046506124, 0.027402429, -0.020681875, 0.021661988, -0.01892949, 0.054608386, 0.031302862, -0.05926148, -0.0023223346, 0.021289734, 0.001700045, 0.031315744, 0.030590674, 0.08768347, 0.004944477, 0.036960237, -0.03206926, -0.042876992, 0.029880613, 0.018678835, -0.02680242, -0.040870618, 0.062410053, -0.027768929, -0.0032767507, -0.037879452, 0.045248203, 0.015722968, -0.049439367, -0.030708145, 0.028968703, -0.04012646, -0.032934617, 0.010787407, 0.041249774, 0.019591484, -0.047892813, 0.095249414, -0.106950685, -0.009436921, -0.045648642, 0.05818932, -0.05890891, -0.009337873, 0.06632381, -0.07175032, -0.06930112, 0.008919846, -0.028183602, 0.0025715947, 0.017951898, -0.004691448, -0.00073844014, 0.053347934, -0.00063025067, 0.011050702, -0.0038041116, 0.01580099, 0.022320293, 0.009907612, -0.031355128, 0.051544033, 0.044508513, 0.03659729, 0.06147248, 0.017040022, 0.021808483, -0.0014015231, -0.01810866, -0.018042637, -0.008614582, 0.052858643, 0.0014839106, -0.046655, 0.0072329086, -0.037033547, 0.023706965, -0.015102694, -0.055002704, -0.017396336, -0.04348995, 0.031247089, 0.04392228, 0.0068591493, -0.0015249343, 0.02185217, 0.016059894, -0.04229005, -0.02564571, 0.044170618, -0.038200613, -0.02681316, -0.0034378595, 0.02195523, 0.020213615, -0.04394914, 0.012748835, 0.015748674, -0.018086907, 0.005202975, 0.0625599, -0.011997936, 0.054105222, 0.03093791, 0.07405329, -0.04753907, -0.037137236, 0.030597208, 0.013454914, -0.03371331, 0.01891524, 0.014274069, -0.0068104216, -0.0065061394, -0.009786029, -0.028996179, 0.04815002, 0.027785197, 0.012191273, -0.043859772, 0.014218519, -0.010957322, -0.03234632, -0.038858123, -0.003266947, 0.014986328, 0.008447184, 0.011971593, -0.014291419, -0.031491496, 0.049885437, -0.011606917, -0.018777875, 0.006993875, 0.026566133, -0.0031311316, -0.05309761, 0.018278107, -0.04427579, -0.03201437, 0.06114683, -0.019193305, 0.02099379, 0.042067464, -0.023722896, 0.0471599, -0.08422578, -0.0098651135, -0.011861861, 0.024546662, -0.013907024, 0.0002990826, -0.036944922, -0.0003796874, 0.050026596, -0.061283782, -0.019099751, 0.046388626, 0.0032499803, -0.011909324, 0.027049934, -0.05325461, 0.014411482, -0.016194703, 0.01488379, 0.05705512, -0.04902555, 0.05311158, 0.011409127, 0.019157078, -0.034963723, 0.029307993, -0.043293905, -0.036780015, -0.018367417, -0.015400299, -0.051839273, -0.04242611, -0.003173593, -0.01961373, 0.023469312, 0.04083618, -0.025245504, -0.055663284, 0.02269964, 0.04386979, -0.048354916, 0.0012465932, -0.02700002, 0.009424477, -0.027073452, -0.055436056, 0.042106535, 0.04648334, 0.050802596, 0.047579825, -0.036338415, 0.03713204, 0.013196831, -0.02233591, -0.054068338, 0.05149572, 0.016375732, -0.030795394, -0.0015723181, -0.0081637055, 0.021597201, -0.012028545, 0.05429261, -0.057556987, -0.005220834, 0.03563486, 0.045193054, -0.033738043, 0.005261065, 0.004763286, 0.0046674446, 0.09503945, -0.07279518, 0.0258616, -0.06007938, 0.009135898, -0.033912107, 0.0156605, -0.025692219, -0.007027912, 0.037809055, 0.021901403, 0.006630635, 0.03383657, -0.06316182, 0.037901606, -0.06091991, 0.009758206, 0.052672766, 0.009976756, 0.013740835, 0.029848076, 0.017930847, 0.013585662, 0.0465988, 0.030457772, 0.008327172, -0.031142518, -0.05070591, 0.07618707, 0.021158926, -0.031139575, -0.086128384, 0.012810547, -0.035916384, 0.06714696, -0.0026560102, -0.025914537, 0.005995385, 0.018956417, 0.0037721118, 0.019145068, -0.024963247, -0.009993264, -0.033588268, -0.014054884, 0.0259196, -0.011797386, -0.047280442, 0.0069918213, 0.03952983, -0.023189465, -0.0078087198, -0.05042595, -0.029402146, 0.0017419106, -0.038553227, 0.029756859, 0.04437792, -0.0043244725, 0.06903277, 0.008520303, -0.0005850677, -0.05803878, 0.04674682, 0.0273077, -0.0130964285, 0.030395873, -0.0045443242, 0.009335653, -0.08566838, 0.00040894767, 0.06984269, -0.028365042 ] }, { "values": [ -0.023871826, -0.024294797, -0.07132966, -0.054965965, 0.016227484, 0.039570373, 0.013261238, 0.029425642, 0.017416844, -0.0022106464, 0.022829238, 0.044872407, 0.027255464, -0.0075806184, -0.01637141, -0.07619943, -0.014293294, -0.00539723, -0.0762438, -0.07564903, 0.04340547, 0.01885502, -0.016924711, -0.017311031, -0.03496935, 0.037675608, 0.017819427, -0.03822841, 0.025141206, -0.015723959, 0.008127277, 0.029065616, -0.00502916, -0.0074283965, 0.034933712, 0.01895939, -0.054695524, -0.016687213, 0.0134972045, -0.038380086, -0.051937554, -0.025766628, -0.008626795, 0.042671133, -0.018122293, 0.029882956, 0.035408694, 0.024593407, -0.040143713, 0.026148742, 0.0020948525, -0.003647703, -0.0056587937, -0.047965903, -0.041533016, -0.05409965, -0.032425508, -0.03732181, 0.061574724, -0.0013691104, 0.010130061, 0.0031852373, -0.022814477, -0.003163808, -0.002637126, -0.016864618, -0.047903128, -0.015458916, -0.018576283, 0.034009323, -0.045694035, 0.040575836, -0.027119966, 0.010057101, -0.012834759, -0.0110958675, 0.02881185, 0.008259866, -0.043676227, 0.04699341, -0.0053895935, 0.04040666, 0.07158007, 0.023149485, 0.005780264, -0.0041127056, 0.044180393, 0.019580552, -0.036986273, 0.023505582, 0.06557757, -0.036773294, -0.003103493, -0.002280228, 0.041442446, 0.017743878, -0.04098739, -0.07866327, -0.023156192, 0.06733947, -0.059385806, -0.007618909, -0.038497802, -0.02164604, 0.04439675, 0.00710735, -0.015513637, 0.005983366, -0.02668289, 0.012366299, -0.02325402, -0.036733687, -0.00092984724, -0.01379816, -0.0072692856, -0.034104753, 0.02364399, 0.0100401705, -0.03247958, 0.0021347967, 0.0069461013, 0.02988432, -0.013606017, 0.06821088, 0.02359253, 0.017468033, 0.007821309, 0.02556074, -0.038383476, -0.019291893, 0.10233997, -0.11715699, 0.043858103, -0.004572539, -0.018948387, -0.017004555, 0.07505383, 0.008863422, -0.0021037455, -0.010333813, 0.015229867, 0.020360753, -0.04022418, 0.0018309331, -0.0030185916, 0.0027097566, -0.0037029078, -0.034771092, -0.009323273, 0.028832395, -0.09307056, -0.018703453, 0.045214277, 0.0024934346, -0.07728126, 0.010849173, 0.06231332, 0.00036324086, 0.05809597, -0.07780705, 0.06425218, -0.029834762, -0.036417905, 0.039603923, -0.09320429, 0.008596086, 0.066201955, -0.06051885, 0.021914408, -0.0033259967, 0.01813904, -0.043960128, -0.059457466, -0.0785359, 0.0057111336, -0.019440332, 0.002295268, 0.022425385, -0.020661717, 0.0025697595, 0.048902787, 0.045763616, -0.028164634, -0.0056377654, 0.001111179, -0.0008868991, -0.025959847, 0.050086897, 0.015479279, 0.035365447, -0.01652656, 0.017907593, 0.010324557, 0.08954188, -0.011909234, 0.022340048, 0.041880045, -0.025398768, -0.0050134882, -0.03110226, 0.038175605, -0.016304076, -0.0056413696, 0.055105224, -0.02103806, -0.029109573, -0.029221624, 0.011156747, 0.050714053, 0.010793551, -0.039820362, -0.026420143, 0.00616721, -0.0442115, -0.039247133, 0.0069960747, 0.090095565, 0.070580766, 0.01614881, -0.026378278, -0.040667836, 0.01443612, 0.0013164374, 0.0373802, 0.028880233, -0.03297277, -0.007831186, -0.006853781, -0.048769604, -0.041165326, -0.024142114, 0.028188832, 0.018079594, -0.0032809535, -0.019577773, 0.06350941, -0.0042631654, 0.038236428, 0.022452738, -0.0071125636, 0.01639738, 0.008483406, 0.012528623, 0.014385174, 0.012827492, 0.023668965, 0.03575465, 0.070549965, 0.023529554, -0.04542597, -0.045183968, -0.028794777, -0.023474501, -0.02484248, -0.04955797, -0.014604943, 0.03437511, -0.047355756, 0.0028845507, -0.01791318, -0.011255546, 0.015880039, -0.020970618, -0.052009784, 0.005806915, -0.050023746, -0.0024518226, -0.013265286, 0.04268833, -0.02857941, -0.015251042, -0.012339267, -0.063896954, -0.06674156, 0.033520922, 0.004121437, -0.030067032, 0.021842262, -0.05084721, -0.060550753, 0.06939764, -0.014517601, 0.022099542, -0.01319172, -0.004294958, -0.019358404, 0.0025821093, 0.022612354, -0.02858271, -0.08895156, 0.01657122, 0.043544654, 0.028798694, -0.0070903534, 0.038696397, -0.00020344662, 0.04673297, 0.020539206, -0.050655022, 0.0035760414, 0.044766486, 0.03594608, -0.050179645, 0.032875795, -0.02219232, 0.083825804, -0.005374551, 0.0046695685, -0.03056465, -0.003487193, -0.0072379815, 0.046074033, -0.041999035, -0.05126781, -0.013826941, -0.021595923, -0.100120045, -0.02430656, -0.05148633, -0.043505825, 0.016087119, 0.02491187, -0.027662052, -0.0067529166, 0.04074069, 0.0074905944, 0.0033438548, 0.038428083, -0.0021841542, 0.016895615, 0.0026943537, 0.005630216, 0.0042114267, -0.0107821375, -0.0020668088, -0.021667365, -0.011713734, -0.01852557, 0.066013955, -0.01877781, 0.06332469, 0.0150972335, 0.030714234, 0.0474014, -0.0158312, -0.055418234, 0.025664158, 0.012345696, 0.028889572, -0.095191725, -0.019517988, 0.06804216, 0.029498253, -0.04139886, 0.05193209, 0.022299642, 0.0012460987, -0.007692496, 0.03206015, 0.012774068, -0.018101301, 0.039296243, -0.007586054, 0.010453248, 0.030292796, -0.0066923616, 0.020016715, 0.011001567, 0.0047549424, -0.007810258, 0.047359746, 0.0517852, 0.032480575, 0.0047615934, -0.011176316, -0.021935606, 0.0308323, 0.017219398, 0.0023124057, -0.044968564, -0.008638772, -0.061927103, -0.012071329, -0.009208595, 0.009012725, 0.0362273, -0.02845069, -0.011276585, 0.020773465, 0.013558768, -0.028814245, 0.08604985, 0.006619577, -0.020850005, -0.028014366, 0.07036887, -0.015159693, 0.027109832, 0.021163462, 0.004432916, -0.022891885, 0.03324655, 0.061496936, -0.024863094, 0.015226306, -0.02866744, 0.086522095, -0.022057893, 0.028694047, 0.009575562, 0.03255497, 0.012208934, 0.035682928, -0.018538076, -0.035273455, -0.004871574, 0.0410016, -0.043764163, -0.03612791, 0.012734891, -0.01993223, 0.043289047, 0.015321912, 0.038814038, 0.027146364, -0.05237523, 0.016061593, -0.02325196, 0.059830066, 0.027008941, 0.037170824, 0.026249962, -0.029863324, 0.045607463, 0.0020322157, -0.04273522, -0.0023358348, 0.0059424606, -0.055470042, 0.0037414762, -0.02694509, 0.03588447, 0.033786166, 0.040994298, -0.012433992, -0.013357939, 0.025135135, 0.010531246, -0.015947355, -0.051609058, -0.01791094, 0.0050547505, -0.0018396806, -0.03307774, -0.01070192, 0.010711069, -0.00037660348, 0.043085404, -0.0672209, 0.024127074, -0.033175368, 0.009539124, 0.047139697, 0.053067185, -0.033740845, -0.039581455, -0.036631823, 0.03580774, 0.032948196, 0.06893545, 0.0054117036, 0.021845546, 0.013188032, -0.013924383, 0.0050943363, 0.03529738, 0.041053224, 0.008858337, 0.0037820484, 0.033367477, -0.028261635, 0.024093209, -0.0005468939, 0.04957725, 0.040325828, -0.07042414, 0.016089179, 0.0429838, 0.013257732, 0.028868945, 0.055760015, 0.09018398, 0.009777455, 0.035071827, -0.051135674, -0.028951632, 0.047518738, 0.026504556, -0.018559346, 0.0014342318, 0.079402745, -0.02798256, -0.020578828, -0.06558041, 0.038167752, 0.045679167, -0.047214516, -0.035439823, 0.029105902, -0.03588448, -0.008094592, -0.0027723718, 0.0043747514, 0.010477982, -0.04771937, 0.07088351, -0.10654336, -0.0028865666, -0.0011507957, 0.059565254, -0.017304394, -0.017743144, 0.0566702, -0.06821028, -0.071858175, 0.0035217572, -0.013364377, -0.0029898786, 0.0451064, 0.017420664, -0.023831138, 0.030658953, -0.021637056, 0.03090199, -0.0021954803, 0.02279019, 0.018291166, 0.0038164018, -0.038415875, 0.054279372, 0.039318915, 0.05365963, 0.054929346, 0.02156699, 0.050404362, 0.016524171, -0.021553483, -0.023362324, -0.009867332, 0.056520738, -0.008085771, -0.026938796, 0.0170511, -0.05140721, 0.010200476, -0.007434378, -0.05595555, -0.041058276, -0.03913945, 0.033804916, 0.05780869, 0.0012113678, -0.005410088, -0.0010363039, 0.036122378, -0.0385516, -0.028565042, 0.035709936, -0.028952386, -0.02090775, -0.012759568, 0.028837955, 0.018084677, -0.030806858, -0.011072271, 0.0072959005, -0.023305845, 0.012776423, 0.051748298, -0.021114528, 0.06263247, 0.039753433, 0.08349831, -0.048112918, -0.01796347, 0.027066942, 0.0068215216, -0.028947802, 0.034305792, 0.017999137, -0.013377136, 0.005407149, 0.016847726, -0.033365484, 0.052790977, 0.00784809, 0.00096256804, -0.05602839, 0.028376233, -0.009882138, -0.05131716, -0.020103345, -0.012465379, 0.04093209, 0.0041807066, 0.011973818, -0.02263911, -0.026428927, 0.052152418, -0.014991803, -0.033132717, -0.00131482, 0.0090740975, 0.0054111164, -0.04086164, 0.008941509, -0.04496514, -0.02642295, 0.055038825, -0.015832948, 0.019318128, 0.026648976, -0.055377405, 0.0580987, -0.10125871, -0.0009725318, 0.00048403058, 0.01007351, -0.012748399, -0.003674793, -0.04530324, 0.005797061, 0.049746897, -0.057799365, -0.015937846, 0.041555837, 0.0097490465, -0.0076397266, -0.007810815, -0.055106703, 0.0050143725, -0.032259725, 0.02395802, 0.044827502, -0.049957957, 0.048755925, 0.02213656, 0.030739933, -0.028609745, 0.039738335, -0.041245766, -0.003833877, -0.0039888686, -0.007416562, -0.0698853, -0.030438792, 0.0018305178, -0.011705262, 0.03007525, 0.0016861353, -0.027427228, -0.069146164, 0.004358371, 0.028561087, -0.04736962, 0.020550054, -0.015069839, 0.011281273, -0.032065786, -0.04093245, 0.0588557, 0.02592745, 0.005153927, 0.03991182, -0.011890695, 0.04773974, 0.0122369975, -0.02774934, -0.043491013, 0.05411188, 0.016879093, -0.054448325, 0.01904406, -0.0104594175, 0.020146217, 0.007292025, 0.060609158, -0.05629442, 0.010543445, 0.045591913, 0.017076015, -0.05978603, 0.027198559, 0.026672972, 0.025870461, 0.09949303, -0.07778129, 0.00043070706, -0.059693564, 0.0286877, -0.036992084, 0.0023290103, -0.016652035, -0.027297886, 0.029010449, -0.0107983695, 0.011722027, 0.03540449, -0.055545468, 0.056051522, -0.042612683, 0.026081195, 0.06555264, 0.01916605, 0.02012648, 0.03675823, 0.027947363, 0.002124096, 0.03909078, 0.01285883, 0.0048772707, -0.040204186, -0.071693406, 0.080001175, 0.03075373, -0.03581896, -0.065125845, 0.034128275, -0.02984923, 0.05792253, -0.004754077, -0.022767268, -0.015083441, 0.013484201, 0.007306438, 0.027335146, -0.015609817, -0.02583208, -0.042939633, -0.029628428, 0.01608006, -0.006661545, -0.050044823, -0.0056153066, 0.03822996, -0.026788995, -0.0009424016, -0.033640794, -0.051585324, -0.032389577, -0.02832957, 0.03956872, 0.045136433, 0.011893296, 0.0550949, 0.043980185, 0.03538764, -0.065071985, 0.0623142, 0.0104828505, -0.0051337695, 0.027414577, 0.013786749, 0.012136845, -0.09364053, -0.012283922, 0.063311875, -0.029890455 ] }, { "values": [ -0.0110934395, -0.04140688, -0.08335329, -0.07886178, 0.011156486, 0.009992303, 0.021612504, 0.047114015, 0.017755682, 0.032926712, 0.017302152, 0.06447699, 0.0060218377, 0.009295554, -0.047990922, -0.06212731, -0.022985024, -0.00907585, -0.047961492, -0.041605067, 0.021705188, 0.015368639, 0.01972036, -0.03752544, 0.00013903738, 0.04085279, 0.029929733, -0.0383288, 0.01799662, -0.022801608, 0.026489777, 0.032239903, -0.00039454357, -0.00040950032, 0.07538656, 0.00095502415, -0.023334948, -0.008343706, -0.000896151, 0.006391145, -0.052762203, 5.490939e-05, 0.009636422, 0.028295392, -0.049221598, 0.034767427, 0.0062108412, 0.007222284, -0.049263395, 0.0425427, 0.0014486547, 0.019008182, -0.03550217, -0.019992955, 0.01251302, -0.018052114, -0.011011845, -0.015516623, 0.08608545, 0.01090754, 0.035634633, 0.004464189, 0.024587711, 0.01248643, -0.0081706485, -0.04353922, -0.019821724, -0.037264653, -0.029544454, 0.028890474, -0.052495226, 0.05340213, -0.025194963, 0.038396243, 0.008747212, -0.030091222, 0.02632093, 0.028372942, -0.021052798, 0.051009703, -0.018287167, 0.038249157, 0.09587829, 0.019923488, 0.025784357, 0.020452326, 0.051924583, 0.013406935, -0.030803692, 0.026051557, 0.07636623, -0.039679028, 0.0048454385, 0.012239675, 0.041794192, -0.040896803, -0.04708393, -0.09133786, -0.030776989, 0.06587747, -0.0600033, -0.029531185, -0.06488317, -0.0027825567, 0.061811224, 0.049654778, -0.009119959, -0.009313649, 0.012157027, -0.001470988, -0.020023314, -0.041593738, -0.00546323, -0.02390193, 0.014321949, -0.05681286, 0.011377037, 0.005617112, -0.04609212, -0.003447448, 0.00945984, 0.015072038, 0.013970628, 0.052974273, -0.01785447, 0.01729758, 0.0522802, 0.008023044, -0.039654795, -0.063516475, 0.077773154, -0.1058314, 0.008691565, -0.00503455, -0.032239225, -0.008160954, 0.018139133, 0.0040248698, -0.02816875, 0.005385954, 0.0040728734, 0.007140732, -0.022464769, -0.0012590487, 0.009507478, -0.009275866, 0.036795326, -0.019741954, -0.02813741, 0.015882483, -0.102382995, -0.0017611404, 0.02734649, -0.0062238183, -0.055171747, 0.021293929, 0.09058024, -0.015580723, 0.09238395, -0.0802527, 0.01433619, -0.010632045, -0.0143215, 0.03048788, -0.10852492, 0.017200597, 0.06211157, -0.059792534, -0.011175312, -0.01968514, -0.005459383, -0.013634326, -0.020978354, -0.071351506, -0.026500795, -0.010655044, -0.015087103, -0.011793605, -0.061365686, 0.01051325, 0.052534267, 0.040251847, -0.012739162, -0.011023373, 0.017227875, -0.0061009936, -0.017321276, 0.043413244, -0.010537227, 0.052986734, -0.026684402, -0.00060971227, 0.04137315, 0.06262963, 0.023747416, 0.05229203, 0.057671998, -0.011836526, 0.0030730665, -0.0337876, 0.011988063, -0.015002153, -0.01146964, 0.020362087, -0.0139360735, -0.054279424, -0.045103196, -0.0042595104, 0.046677914, 0.011475152, -0.033187468, -0.0025958742, -0.02877807, -0.077850476, -0.0287985, -0.003753724, 0.08850355, 0.08686968, 0.020886898, -0.020383973, -0.021177595, -0.008196888, 0.0056141363, 0.010231597, 0.057442274, -0.049239255, -0.039902754, 0.0068878583, -0.051137377, -0.038903706, -0.044155087, 0.030209448, 0.003967202, -0.029330887, 0.0153016085, 0.028761707, -0.011173798, 0.0155321695, 0.007300902, -0.015224084, -0.017370936, 0.053704947, 0.037610665, 0.0003681949, 0.031561483, -0.0052202926, 0.048321776, 0.08091092, 0.0022529121, -0.019866243, -0.025243834, -0.027628291, -0.04376254, -0.010091636, -0.028920231, -0.031568255, 0.039483733, -0.056530826, -0.009357176, -0.0047282674, -0.013448887, 0.013260076, -0.017266797, -0.047114205, -0.033574503, -0.07464344, -0.0023922108, -0.014156353, 0.036051113, 0.0023161964, 0.010139229, 0.016335912, -0.075287804, -0.06872684, 0.0054943208, 0.0338258, -0.03670331, 0.037723914, -0.042148244, -0.06011468, 0.06763917, 0.011223914, -0.029922172, -0.017958745, -0.025622705, -0.055315536, 0.009646171, 0.017616436, -0.02690616, -0.08101677, 0.0558735, 0.040205397, 0.026026346, 0.024212714, 0.04679681, -0.004577129, 0.04558974, 0.0062867613, 0.007829214, -0.01944281, 0.027486414, 0.042113665, -0.022919247, 0.026666164, -0.025345117, 0.063428484, 0.003886965, -0.0028635713, -0.03369643, -0.0072014793, -0.011183635, 0.054077633, -0.03311317, -0.0231972, -0.006827143, -0.0121793905, -0.065209724, -0.022592047, -0.05174654, -0.05142906, 0.00097391166, 0.047366325, -0.033936433, 0.011417546, 0.05330832, 0.010235407, -0.00080158137, -0.013028991, 0.013423943, 0.006970893, 0.0086751785, 0.009890234, -0.0055130357, -0.021152563, 0.013481817, -0.045997016, -0.032813482, -0.004579234, 0.044187237, -0.018609494, 0.03208395, 0.039087735, 0.03037979, 0.034517173, -0.01613998, -0.020498171, 0.033843197, 0.0030746511, 0.01025272, -0.051639933, -0.028749416, 0.06250654, 0.009265401, -0.017985363, 0.05732221, 0.017989308, 0.021663696, 0.03289527, 0.01782021, 0.036064543, -0.028679527, 0.020374056, -0.0021844557, 0.0052294014, 0.034012966, 0.0035675855, -0.00081670284, 0.014279454, -0.01394936, -0.023277111, 0.033084325, 0.031990834, 0.02115338, -0.010282374, 0.015352278, -0.043093435, 0.008542565, 0.0031529842, 0.0004085716, -0.029073229, -0.031475734, -0.036807653, -0.03630405, -0.026168691, -0.022604069, 0.049407557, -0.043924537, -0.025512962, 0.010157299, 0.030086132, -0.013505554, 0.06359411, -0.023363592, 0.0057389443, -0.008561535, 0.053186733, -0.018600173, 0.017491728, 7.9749385e-05, -0.026190296, -0.03329145, 0.037771516, 0.040922955, -0.027868377, -0.0068953186, -0.041600946, 0.07933502, -0.01620117, 0.019068107, 0.005270097, 0.0036402598, -0.017514024, 0.029540459, -0.0038272957, -0.012552305, 0.015542307, 0.062186763, -0.042145602, -0.056091532, 0.024733968, -0.02165337, 0.04260562, -0.012919335, 0.04333986, 0.034571454, -0.053576685, 0.018513506, -0.017762605, 0.050831087, 0.032245763, 0.047770094, -0.0012997094, -0.008531156, 0.035743017, -0.0113936225, -0.021289703, 0.027484104, -0.003520627, -0.039578587, -0.008318001, -0.015521684, 0.04587576, 0.02902602, 0.03857433, -0.020468542, 0.006701548, 0.031221034, 0.0052962783, -0.03109823, -0.070128374, -0.019087179, 0.03227258, 0.002126686, -0.055426866, 0.00472237, -0.003258535, -0.020816796, 0.081886746, -0.043115858, 0.025585132, -0.07713396, -0.013514292, 0.02385627, 0.053663515, -0.028004138, -0.03244643, -0.06658105, 0.028956689, 0.05125047, 0.046558883, 0.022469833, 0.008435705, 0.0060648583, 0.0063222516, 0.0137009015, 0.047023207, 0.017326977, -0.0015671492, -0.0011717972, 0.025846291, 0.0056305677, 0.0067645553, -0.023440195, 0.027654413, 0.026948439, -0.08220667, -0.03284176, 0.019982735, 0.025824787, 0.044449322, 0.024133082, 0.06634742, 0.009280543, 0.028922174, -0.05978306, -0.029183922, 0.05237881, 0.035409592, -0.039235495, -0.013419657, 0.08889539, -0.0144550195, -0.008688559, -0.025881348, 0.038743526, 0.04243209, -0.06406338, -0.011027985, 0.013626577, -0.045100912, -0.009296007, -0.015334922, 0.010581833, -0.006554259, -0.061375596, 0.06472261, -0.08684737, 0.018508177, -0.03654631, 0.05711309, -0.058808964, -0.0028060887, 0.074827164, -0.04591282, -0.04933822, 0.01097774, -0.030213997, 0.027057102, 0.031982157, -0.015805682, -0.012213, 0.05769979, 0.03649822, -0.008156813, 0.017476967, 0.046553805, 0.010335548, 0.00950513, -0.037828673, 0.044900008, 0.02586564, 0.002835038, 0.06137737, 0.029719263, 0.0619796, -0.011748895, -0.013106622, -0.043537196, 0.008813178, 0.06976882, 0.00078668626, -0.034000024, 0.0033390964, -0.018999819, 0.0059848125, -0.02959449, -0.057488505, -0.061760344, -0.0063635134, 0.044737525, 0.063109994, -0.0013568792, -0.021138098, 0.006686187, 0.025849735, -0.015991779, -0.06028497, 0.08306216, -0.012223689, -0.020645475, -0.027843738, 0.016277643, -0.0020917964, -0.0653204, 0.024173794, 0.0033961218, -0.036435384, 0.0047887694, 0.049038105, -0.0041690096, 0.04523062, -0.006539645, 0.059013296, -0.013210864, -0.0006668764, 0.009210443, 0.0137927085, -0.032585997, 0.012849644, 0.010359469, -0.022761723, -0.034683116, 0.0054132966, -0.010275966, 0.049928628, -0.01577496, -0.030405544, -0.025513196, 0.03490848, 0.00893661, -0.026124163, -0.0022994804, -0.02987264, 0.014389712, 0.008097012, 0.02914365, -0.0066538192, -0.04134263, -0.0024914127, 0.010542933, -0.038692817, 0.022787806, -0.008914041, -0.0005772794, -0.060456425, 0.013362898, -0.040111557, -0.054628853, 0.036314752, 0.014031056, 0.010137996, 0.06313609, -0.03253332, 0.01607716, -0.07865814, 0.0027798035, -0.025927288, 0.031616576, -0.03917105, -0.017559303, -0.057219706, 0.014086836, 0.042328134, -0.022966444, -0.040521502, 0.04397929, -0.004455615, -0.012585294, -0.014038769, -0.06003585, 0.014839677, -0.005883601, 0.04034909, 0.073940024, -0.04883444, 0.03964666, -0.008114869, 0.028940612, -0.030640533, 0.047440898, -0.027556036, -0.010666892, -0.023088785, -0.019603541, -0.04403275, -0.0200413, -0.016681397, 0.016124427, 0.031944487, 0.021401811, 0.0019945528, -0.07982164, 0.042345796, 0.03313508, -0.053541057, 0.032242812, 0.0039466084, 0.010679905, -0.022083992, -0.029922185, 0.04358915, 0.011199335, 0.054197613, 0.028831985, -0.014056974, 0.04895794, 0.022979707, 0.005783675, -0.06583284, 0.05426699, 0.00563023, -0.038395714, -0.0042986036, -0.037756003, -0.0036659213, 0.017767848, 0.061865956, -0.03855631, 0.04304585, 0.05228917, 0.020254256, -0.028698614, -0.029351387, 0.029069442, 0.030105451, 0.06451489, -0.053527914, 0.024610363, -0.057261202, 0.022617785, -0.014655042, 0.009498764, -0.038169127, -0.02011486, 0.046392173, -0.0047453446, 0.021644622, 0.017432066, -0.06393765, 0.028487932, -0.047204465, 0.0368513, 0.08390581, 0.023796814, 0.025515487, 0.029910762, 0.022428626, 0.028883386, 0.039501008, 0.009375561, 0.0075331875, -0.012650922, -0.06735608, 0.06571803, 0.043467958, -0.004612335, -0.080506526, 0.035749096, -0.034628194, 0.073723316, 0.011699533, -0.030254092, 0.0060599246, 0.038354855, -0.0049460446, 0.0010041598, -0.033643637, -0.021039898, -0.057234187, -0.04579255, -0.010975193, -0.005850665, -0.03660671, 0.0315112, 0.020862617, -0.03258587, -0.012605734, -0.05361912, -0.02729785, -0.036304552, -0.026972879, 0.011708266, 0.023713974, -0.036907524, 0.053006835, 0.019547205, 0.030220225, -0.04238991, 0.047773987, 0.0057047647, 0.03582829, 0.025905795, 0.005452647, -0.011264331, -0.10317532, -0.0029116399, 0.060709767, -0.041203216 ] }, { "values": [ -0.026626155, -0.03941629, -0.065201856, -0.07452886, 0.004833383, 0.03414487, 0.0069192243, 0.031068474, 0.012895277, 0.028048474, 0.023114529, 0.044038467, 0.024847822, -0.01580939, -0.03376315, -0.047975887, -0.0034390662, 0.015500264, -0.057758074, -0.055413857, 0.03731998, 0.008283521, 0.0044631427, -0.042243112, -0.016579755, 0.026118621, 0.042658877, -0.02644705, 0.0064827036, -0.036135256, 0.019735206, 0.026040893, -0.013451438, -0.030373547, 0.050663687, 0.02806711, -0.053086314, -0.015783519, -0.014909813, -0.0043055452, -0.050213188, 0.01728064, 0.011672423, 0.03662669, -0.048513822, 0.02010021, 0.015088828, 0.035132013, -0.020931182, 0.035788942, 0.0004231445, 0.00532341, -0.021428216, -0.03807905, 0.010702168, -0.048194632, -0.06116113, 0.0012123786, 0.08199061, 0.008630389, 0.026610903, 0.008100054, 0.0059192735, -0.0016860296, -0.016881963, -0.029265203, -0.04232051, -0.033705752, -0.02257657, 0.058583546, -0.04310843, 0.037252337, -0.019768799, 0.047154415, 0.011681587, -0.024699232, 0.033132695, -0.0039500855, -0.023540065, 0.05866677, -0.01445272, 0.03415156, 0.068511, 0.010860098, 0.021100823, -0.010270957, 0.059982494, -0.03480899, -0.021319324, 0.034614727, 0.07140197, -0.026147282, -0.008647854, -0.0073702503, 0.043267746, -0.019917248, -0.050009556, -0.10004289, -0.0127387885, 0.07277882, -0.062081255, -0.022131484, -0.033952948, -0.010355687, 0.044837486, 0.036484815, -0.023076026, 0.016193157, -0.0022279734, -0.008523973, -0.04820711, -0.032501828, -0.0077637727, -0.014980906, 0.012840308, -0.063678384, -0.0052764565, 0.0056268265, -0.013871403, -0.019270761, 0.005988425, -0.006697953, 0.0023446155, 0.059841443, -0.005089237, 0.0056396113, 0.015710292, 0.023898438, -0.05273354, -0.04788165, 0.09694896, -0.10563265, 0.008111655, -0.020107523, -0.028402451, -0.016864719, 0.061568663, 0.03551171, -0.03408954, -0.00023460835, -0.0102821505, 0.025718493, -0.03265796, 0.034329843, -0.009735565, -0.002945018, 0.0293303, -0.0011203248, -0.019119786, 0.022556476, -0.09539792, -0.016711053, 0.024766104, 0.004572634, -0.059899285, 0.048452504, 0.07576047, -0.028075892, 0.07824843, -0.09121372, 0.024549287, -0.016985027, -0.04219195, 0.008379583, -0.10122369, -0.0040681534, 0.035376027, -0.07806636, -0.016990436, -0.034918986, -0.0030526647, -0.007823828, -0.03009197, -0.062713996, -0.02291681, -0.007294511, -0.0053269174, 0.00022063506, -0.06431435, 0.016239064, 0.033186097, 0.056053843, 0.011202911, 0.012180507, 0.02968852, -0.01100175, -0.024109514, 0.024573613, -0.005836103, 0.04057702, -0.0122112185, 0.011120693, 0.039124835, 0.07907616, 0.015512993, 0.050584488, 0.04083885, -0.028995128, -0.0046888003, -0.046369385, 0.024585744, -0.011050092, -0.019014586, 0.033350658, -0.02851966, -0.028179614, -0.033264745, -0.00050367316, 0.034112047, 0.010488363, -0.017627712, -0.013051507, 0.0023369337, -0.075963326, -0.03183122, 0.021993807, 0.10546487, 0.069028266, 0.025789298, -0.014621294, -0.04291699, -0.019477256, -0.0061077564, 0.019674357, 0.048262373, -0.04009229, -0.042647168, -0.009260012, -0.04693882, -0.039037105, -0.027821146, 0.04329372, -0.0013232634, -0.011558085, -0.003493222, 0.037997864, -0.011924521, 0.02974505, 0.0072303694, -0.01940804, -0.038055304, 0.064223096, 0.036197774, -0.008634672, 0.005084021, 0.026128825, 0.06585968, 0.062364254, 0.021346955, -0.05029396, -0.035762228, -0.042191748, -0.053448115, 0.0033320046, -0.03059126, -0.02441444, 0.029845744, -0.064663164, -0.006623124, 0.011583365, 0.018912435, 0.006815444, -0.025750494, -0.035031132, -0.020958794, -0.055714976, 0.0081214765, 0.002907728, 0.04213256, -0.0040038563, 0.011893962, 0.009395002, -0.0875658, -0.054983325, 0.022184983, 0.017038425, -0.032342814, 0.03331183, -0.03526373, -0.049108822, 0.049517352, 0.0020076588, -0.029274276, -0.017807825, -0.012084272, -0.04748324, 0.010022735, 0.036276747, -0.032515448, -0.07462168, 0.059237126, 0.046449564, 0.010086727, -0.008163392, 0.018491251, 0.018750567, 0.047106322, -0.018755972, 0.009914957, -0.0146291, 0.04263604, 0.046261504, -0.036237538, -0.0032204213, -0.046877615, 0.0707391, -0.00701161, 0.0058744224, -0.024848549, -0.00094333995, 0.009134688, 0.039524883, -0.044388566, -0.025323581, -0.013051807, -0.0145165175, -0.104908034, -0.023318622, -0.043891363, -0.040275168, 0.013927868, 0.033373304, -0.042457186, -0.006932887, 0.050613746, -0.00022737104, -0.0086915605, -0.017061014, 0.003718235, 0.0143559035, 0.0008764133, 0.017198026, -0.0022473712, 0.0077698985, 0.007498548, -0.03612329, -0.023796573, -0.005102734, 0.0486638, -0.038786024, 0.02774514, 0.029285599, 0.042461272, 0.075735636, -0.034160018, -0.030477397, 0.042644296, -0.014261373, 0.029441783, -0.06390832, -0.039288707, 0.06705569, 0.021166889, -0.02943152, 0.048102874, 0.011341673, 0.020220589, 0.013991035, 0.021477781, 0.025663456, -0.016849892, 0.029225746, -0.0021264404, 0.0068122502, 0.059526023, -0.0046621514, 0.010705676, 0.008138042, 0.012841243, -0.04416726, 0.034642298, 0.036555506, 0.003271802, -0.0022351127, 0.010400404, -0.04986681, 0.026232993, -0.0018698719, 0.013509075, -0.04804446, -0.017124299, -0.040705916, -0.010599835, -0.017144775, -0.043778088, 0.058443334, -0.033181477, -0.029788317, 0.02194764, 0.015592509, -0.008533617, 0.07360533, -0.01442382, -0.009686731, -0.01631669, 0.06142373, -0.022645133, 0.008650653, 0.010257411, -0.0063092425, -0.030509599, 0.024613615, 0.038046245, -0.029145695, -0.00812269, -0.042971794, 0.0785223, -0.019194301, 0.023042647, -0.013689854, 0.029352346, 0.0021965867, 0.02878649, 0.012989754, -0.028501164, -0.008921484, 0.06639926, -0.021215023, -0.039137576, 0.011333311, -0.019474018, 0.040577643, -0.0018259989, 0.01783854, 0.014231932, -0.0337344, -0.006887467, -0.03561031, 0.044878148, 0.012600577, 0.017885894, 0.004822834, -0.020424394, 0.05023876, -0.009271719, -0.008304119, 0.027413042, 0.0090115955, -0.056937996, 0.0023427864, -0.01600453, 0.036076345, 0.007498812, 0.029866572, -0.011135946, 0.008495291, 0.038301054, 0.011213042, -0.04138639, -0.056525327, -0.027786303, 0.022961786, -0.009370979, -0.044224396, -0.018625222, -0.0062533203, -0.002170626, 0.08357494, -0.05056982, 0.058472183, -0.08354727, -0.014370618, 0.041764524, 0.037147135, -0.01269226, -0.027734412, -0.082471125, 0.027645238, 0.014792664, 0.045126718, 0.026868723, -0.0043436177, 0.03740825, -0.009872802, 0.008206516, 0.05453747, 0.0033853445, -0.0011060155, -0.0042035184, 0.024615148, -0.020316072, 0.01886633, 0.010716491, 0.036406245, 0.047176443, -0.08094532, -0.003973464, 0.034909315, 0.038990848, 0.0061206142, 0.04573834, 0.057558626, -0.009361611, 0.025466386, -0.06273044, -0.020346584, 0.038745817, 0.011084813, -0.029307138, 0.0053892685, 0.061081186, -0.028237563, -0.015440449, -0.057136536, 0.06359081, 0.032440513, -0.05640105, 0.00070292264, -0.0014548285, -0.045827568, -0.01751465, 0.011052334, 0.006448427, 0.0045429613, -0.056985497, 0.055238944, -0.10108102, 0.006602111, -0.008348343, 0.037828527, -0.047225006, -0.012733209, 0.051637076, -0.04894068, -0.04167141, 0.00014948763, -0.022193588, 0.039237306, 0.024867829, 0.00812973, -0.01141404, 0.03872129, 0.020808319, 0.008422031, 0.0091879945, 0.036247566, 0.0017965693, 0.0040596975, -0.04474403, 0.050419617, 0.009710658, 0.036537446, 0.05191754, 0.022885721, 0.055877816, -0.023204215, -0.023028366, -0.044181064, -0.015800279, 0.03966567, 0.007907663, -0.026987989, -0.0053468435, -0.011600132, 0.030263625, -0.034024563, -0.055926684, -0.07300426, -0.03855862, 0.062736265, 0.054089386, -0.008404487, -0.0071305404, 0.004991533, 0.009947815, -0.01953999, -0.05402245, 0.070998766, -0.011922008, -0.03371286, -0.017252136, 0.013337532, -0.0017451675, -0.08051159, 0.021390295, 0.00060243404, -0.03161445, -0.004197948, 0.038066417, -0.03165296, 0.054610696, 0.00031930406, 0.070049435, -0.020751176, 0.001859477, 0.0032859119, 0.010073183, -0.033521987, 0.006984929, 0.015823485, -0.00877664, -0.0028620264, 0.019479489, -0.011885268, 0.056397874, -0.010590476, -0.019429337, -0.023839746, 0.039156098, -0.0014701396, -0.023426957, 0.021203954, -0.041782327, 0.022378346, -0.017978236, -0.0066025807, -0.0062439577, -0.021916315, 0.009635687, -0.008557168, -0.02809881, 0.027803406, 0.01756558, 0.008039532, -0.05195423, 0.0048074494, -0.04464707, -0.04892073, 0.029485006, 0.015279509, 0.005283938, 0.06407657, -0.05014743, 0.025147563, -0.06836028, -0.016272584, -0.019393591, 0.017150514, -0.04795112, -0.027140317, -0.018493561, -0.0044093467, 0.061772745, -0.025442857, -0.045102514, 0.032521263, -0.012002325, -0.00839154, -0.0073114177, -0.047993317, 0.018560352, -0.013247588, 0.041388277, 0.049089264, -0.061154943, 0.0364889, 0.023216415, 0.037050415, -0.0010341499, 0.049944147, -0.035848513, 0.00043466277, -0.023898704, -0.009897082, -0.051301528, -0.026467402, 0.014475615, 0.0059147775, 0.04201287, 0.009036126, 0.009474127, -0.03405628, 0.03573463, 0.007247617, -0.047380164, 0.039449032, 0.017784175, 0.0032205188, -0.028681101, 0.0010317165, 0.032416347, 0.0028988891, 0.02207101, 0.043600537, -0.042375106, 0.03568141, 0.056857236, 0.008492342, -0.053571537, 0.030900767, 0.027739199, -0.02723182, 0.023320245, -0.04899306, -0.021575404, 0.018310975, 0.089378946, -0.053310435, 0.05768944, 0.022842178, 0.024756627, -0.04512444, -0.009328277, 0.02739121, 0.031018764, 0.066813394, -0.054215495, 0.012937627, -0.0629682, 0.021266708, -0.02973094, -0.003227669, -0.04224817, -0.023112481, 0.03561877, -5.036666e-05, 0.006225, 0.008963277, -0.08854647, 0.035962883, -0.05898529, 0.04423054, 0.098918796, 0.005638861, 0.03665095, 0.0346868, 0.017732082, 0.03211047, 0.035365276, 0.026615364, 0.0042807194, -0.029858224, -0.06188136, 0.062906295, 0.018802512, -0.015674258, -0.06584776, -0.0013320058, -0.04476889, 0.05857506, 0.01656422, -0.023017647, -0.005718455, 0.06884202, -0.009778343, -0.0005094791, -0.014893186, -0.010650494, -0.059056778, -0.056504544, 0.010422631, -0.0050105257, -0.021262627, 0.024731824, 0.023819651, -0.038748275, 0.009646894, -0.05417701, -0.038214512, -0.04091493, -0.045055997, 0.021338465, 0.04669879, -0.01842355, 0.024627887, 0.032712966, 0.061275676, -0.06534205, 0.045295645, 0.0061485386, 0.0089665335, 0.040512268, -0.013146995, -0.0015824395, -0.09642269, 0.0039070607, 0.087074675, -0.025647366 ] }, { "values": [ -0.022622392, -0.02814797, -0.056264903, -0.061321218, 0.0020564406, 0.034839135, 0.011103856, 0.04880826, 0.011694419, 0.02519944, 0.009631563, 0.046759594, 0.031573273, -0.01983241, -0.038114097, -0.059931632, -0.007397737, 0.024022965, -0.049804833, -0.07158724, 0.026942356, 0.025103454, 0.019524854, -0.060035434, -0.03029876, 0.02180088, 0.05434221, -0.016894484, 0.0028683995, -0.031237625, 0.020647025, 0.04421917, -0.006723582, -0.019609215, 0.053830363, 0.011832122, -0.041683294, -0.01364683, 0.014909214, 0.0025591226, -0.049381, 0.0063715507, 0.019846918, 0.03159516, -0.04925125, 0.028925441, 0.031222083, 0.019289391, -0.06377651, 0.03861726, 0.0050812103, 0.021972453, -0.015214014, -0.025436554, 0.009799449, -0.038295574, -0.045664437, -0.02645649, 0.05714363, -0.009885797, 0.019109823, 0.0038873886, 0.017179223, -0.020896653, -0.020904033, -0.03738719, -0.055803467, -0.025939275, -0.02523442, 0.048882674, -0.032019608, 0.03700404, -0.021970188, 0.021490932, 0.0032008016, -0.00066478853, 0.01731818, -0.003835763, -0.014231663, 0.051584817, -0.02154673, -0.003627554, 0.087605685, 0.04185551, 0.015158713, -0.010973071, 0.044015948, -0.026811358, -0.0074404385, 0.047204837, 0.093108006, -0.034876496, -0.013129913, 0.007780892, 0.026315598, -0.007811675, -0.046473585, -0.09440651, 0.007164582, 0.07004427, -0.046412263, -0.020694599, -0.026512528, 0.013858556, 0.042314544, 0.049842265, -0.016840203, -0.0006431618, -0.015192665, -0.006698644, -0.037826713, -0.026827065, 0.011229829, -0.022189949, 0.007731329, -0.07494228, 0.021972755, 0.015811333, -0.021563867, -0.019211601, 0.024902675, -0.0022674946, 0.003946624, 0.062006515, 0.003326117, 0.0060701976, 0.040151693, 0.024841057, -0.03962268, -0.05786393, 0.0777659, -0.104442105, 0.0021715907, -0.0077184807, -0.026021833, -0.045354173, 0.026937947, 0.04756105, -0.020360382, -0.0003108463, -0.0026078867, 0.03422278, -0.008931759, 0.021689886, -0.005912849, -0.014854642, 0.025024975, 0.0043194788, -0.041184027, 0.017233381, -0.102761485, 0.0024771472, 0.033827897, -0.011182063, -0.042136624, 0.019979995, 0.07277494, -0.0007302239, 0.09459337, -0.089918144, 0.025843302, 0.0016078628, -0.027295345, 0.007120524, -0.09295147, -0.014045293, 0.049997546, -0.08556546, -0.0043364074, -0.015774896, -0.010140659, -0.010940676, -0.029214064, -0.06698995, -0.004690193, -0.0034891844, -0.024964508, 0.010001984, -0.053698905, 0.00515064, 0.025211297, 0.040397003, 0.00429361, -0.009865875, 0.011846908, 0.005962046, -0.042967062, 0.04595483, -0.02795151, 0.038866065, -0.012752631, 0.0072088884, 0.05326149, 0.0816045, 0.0095455, 0.04885965, 0.05563324, -0.013087854, 0.011820761, -0.0407768, 0.03520071, -0.032337647, -0.012345417, 0.01599321, -0.023444919, -0.041481648, -0.030584604, -0.0123467175, 0.024705086, 0.0005738478, -0.017946148, -0.008162062, -0.00912589, -0.071016386, -0.01982528, 0.010519186, 0.098919, 0.07957425, 0.017904866, -0.03936458, -0.016901253, -0.015698487, 0.0006534349, 0.018268239, 0.036314752, -0.08006492, -0.032352775, -0.027502012, -0.042526405, -0.038708575, -0.036216762, 0.022385605, 0.005099706, -0.0034329633, -0.021560961, 0.025956456, -0.041235406, 0.02306675, -0.0021925864, -0.02580666, -0.020625139, 0.05589098, 0.046656307, -0.0035112482, 0.01123607, 0.015132346, 0.06316819, 0.08098053, 0.024388297, -0.066318385, -0.01315807, -0.03395336, -0.058610745, -0.01973536, -0.03369317, -0.031333886, 0.03514859, -0.054600023, -0.013642219, -0.016534293, -0.006977289, 0.0012862982, -0.040489804, -0.037633684, -0.038142912, -0.102911115, -0.0038959982, -0.0019423289, 0.050510127, 0.0009027963, -0.00024581264, 0.021003641, -0.060228437, -0.057238735, 0.03533673, 0.016483823, -0.032758754, 0.03570423, -0.04499578, -0.035583362, 0.043564126, -0.0037749342, -0.02611913, -0.029458007, -0.012673479, -0.042691976, 0.012853254, 0.02945355, -0.038608827, -0.08483535, 0.05586041, 0.03882788, 0.036064144, -0.0038230086, 0.023008786, 0.00041457146, 0.05297601, 0.019946953, 0.007475142, -0.017083256, 0.047386922, 0.06077913, -0.0423794, 0.0123449275, -0.06714056, 0.071272045, -0.007210926, -0.0016603622, -0.027238157, -0.009672742, 0.031940237, 0.04605981, -0.037300467, -0.014195478, -0.012553875, -0.01862066, -0.087351404, -0.013891555, -0.040697284, -0.04310607, -0.000739046, 0.03364852, -0.051301405, -0.0009989818, 0.06523203, 0.005337482, -0.00028936742, -0.019822584, 0.009348281, 0.017762622, 0.022032237, 0.024553446, -0.0033918472, -0.0049818614, -0.012292631, -0.036209382, -0.01960026, 0.009645627, 0.03847857, -0.03137969, 0.02481936, 0.032578632, 0.02892815, 0.07323145, -0.03557658, -0.030176595, 0.02871556, -0.013431856, 0.060671292, -0.061306983, -0.056776438, 0.06921123, 0.010007706, -0.018753655, 0.05859974, 0.0070166704, 0.029903622, 0.023645597, 0.035215348, 0.012721826, -0.017503537, 0.03727218, 0.0028384756, 0.017170478, 0.026889974, -0.0065468075, 0.024017079, 0.0067920936, 0.02693775, -0.064000204, 0.017588137, 0.037389465, 0.0018835958, -0.008386982, 0.003055388, -0.045988616, 0.026098961, -0.004537788, -0.00041948384, -0.04271042, -0.03726165, -0.036433563, -0.01609113, -0.018231744, -0.034858573, 0.072557785, -0.034018915, -0.03537868, 0.013529418, -0.00037887393, -0.016125895, 0.07227904, 0.00018462555, 0.014189794, -0.021469695, 0.042719755, -0.017464982, 0.022500597, 0.030438913, -0.01018759, -0.030811325, 0.03604962, 0.02017968, -0.030446373, -0.020678658, -0.05306483, 0.075528584, -0.015839493, 0.017455216, -0.0011340176, -0.0010085676, -0.023580309, 0.031718217, -0.010598504, -0.032310087, -0.036345817, 0.034778297, -0.04778027, -0.05800723, -0.003991723, -0.038949832, -0.00086117466, -0.0004069962, 0.0406055, 0.02981573, -0.03812894, 0.010764557, -0.047719136, 0.06762169, 0.00020076023, 0.027582897, 0.0052968366, -0.035231013, 0.04894025, 0.03305673, -0.0013310307, 0.016145999, 0.0013271592, -0.047529113, 0.013727881, -0.0031554166, 0.025609944, 0.025755258, 0.043739732, -0.016710134, 0.0002613613, 0.03302655, 0.009995661, -0.023979539, -0.06190913, -0.011360952, 0.03275136, -0.014414042, -0.05336642, 0.0033733046, -0.015138761, -0.0023852214, 0.077980995, -0.04868646, 0.020016745, -0.06481177, -0.01929145, 0.035467077, 0.046255037, -0.0029346352, -0.03438126, -0.066156104, 0.04351694, 0.018886063, 0.043438766, 0.013509696, -0.004278697, 0.03524203, -0.016836368, 0.015180946, 0.052087903, 0.0030474125, -0.009081286, -0.027286094, 0.019741684, -0.013174984, 0.014655872, 0.0005920542, 0.022552801, 0.03947794, -0.073301844, -0.004551221, 0.02723414, 0.020155493, -0.0020209718, 0.01905095, 0.05571211, -0.008863264, 0.009239667, -0.048551846, -0.03403143, 0.030440854, 0.004785799, -0.03478975, -0.0076313615, 0.06361686, -0.02633054, -0.02466243, -0.0398865, 0.032594986, 0.019456713, -0.042172797, -0.010521536, 0.048035484, -0.031984404, -0.019762293, -0.006786991, 0.001775234, -0.008845601, -0.060165238, 0.07217998, -0.08015489, 0.018926386, -0.018967032, 0.034198217, -0.05300483, -0.015341606, 0.04907717, -0.06830527, -0.046588488, -0.028529607, -0.0050823186, 0.027047154, 0.034142435, 0.011125289, 0.0022842865, 0.04620683, 0.021671964, -0.006461569, 0.006365746, 0.04835439, 0.009456056, -0.0025451449, -0.048209563, 0.06152219, 0.011427184, 0.014069026, 0.067668445, 0.024352903, 0.035134263, -0.010470635, -0.02061932, -0.047063973, 0.009332836, 0.056796562, -0.014871362, -0.032299843, -0.02029202, -0.043936003, 0.014435711, -0.018752918, -0.04571738, -0.055678245, -0.014049458, 0.06605172, 0.045334496, -0.0073622847, -0.019685458, 0.014021829, -0.019361466, -0.014319002, -0.07347541, 0.07145933, -0.026283726, -0.018532665, -0.02459261, 0.013062615, 0.002089881, -0.08662595, 0.028403487, 0.027897444, -0.039708853, -0.00012252026, 0.04670408, -0.03039156, 0.040449165, 0.027636386, 0.06578321, -0.020409461, 0.0065046605, -0.0020216014, 0.030333193, -0.019960765, 0.006644358, 0.01901644, -0.005779204, -0.0032017701, 0.020201445, -0.02847286, 0.041137207, 0.008873867, -0.02244747, -0.019411065, 0.043972082, 0.01850548, -0.023615181, 0.010447786, -0.039194327, -0.0022713786, -0.0058484524, 0.009825863, -0.004669618, -0.034915835, 0.014581249, -0.0008253135, -0.041173138, 0.027293473, 0.0027412202, 0.006475451, -0.05174386, 0.0034741866, -0.054976847, -0.063755825, 0.022726785, -0.007738028, 0.013371503, 0.05639291, -0.033732653, 0.008879363, -0.066112384, -0.04060605, -0.0071173226, 0.014753463, -0.051232368, -0.027368004, -0.018417245, -0.0053811087, 0.06566182, -0.0154595785, -0.044454843, 0.048885133, -0.012069828, -0.020075515, 0.01826822, -0.03723344, 0.015313906, -0.0031344069, 0.042507716, 0.081188716, -0.055469256, 0.007983527, 0.033115584, 0.033929046, -0.012540973, 0.027918816, -0.046713486, -0.00052485685, -0.025000563, -0.012548297, -0.04751586, -0.029714236, -0.011601437, -0.019977521, 0.02323266, -0.012774139, 0.0066304123, -0.020928308, 0.03190417, 0.0149602005, -0.049980067, 0.033875033, -0.0047107195, 0.0022177284, -0.03777177, -0.01198825, 0.021860277, 0.014613576, 0.031830058, 0.044739496, -0.019362174, 0.03256328, 0.043632094, 0.00070965354, -0.05017685, 0.016582204, 0.020282703, -0.02259991, -0.006109246, -0.030664796, -0.022645133, 0.009620805, 0.05661643, -0.03912358, 0.02816671, 0.02350473, 0.03205269, -0.035110217, -0.027243655, 0.029583493, 0.039056297, 0.08996415, -0.04357229, 0.019233376, -0.060191657, 0.0012550557, -0.009887906, 0.006511532, -0.05157579, -0.006847209, 0.0516969, 0.000375488, 0.0007834709, 0.035171974, -0.09655196, 0.038534023, -0.052823648, 0.042058393, 0.098737724, 0.0071062525, 0.04515358, 0.0058798003, 0.030042496, 0.02326753, 0.035150576, 0.035417646, 0.029806485, -0.01516096, -0.059910078, 0.07034742, 0.02863284, -0.0035651296, -0.07796795, 0.0037086364, -0.03721042, 0.05768006, 0.016536398, -0.013652816, -0.0037658534, 0.058274053, -0.005725615, 0.015641179, -0.00830378, -0.02107184, -0.04978513, -0.05031609, 0.0250386, -0.0192109, -0.034677386, 0.026529575, 0.022797516, -0.036952976, -0.018413566, -0.052252233, -0.042169765, -0.01742818, -0.047948796, 0.031264987, 0.047713775, -0.026065355, 0.049232744, 0.0047972663, 0.03639905, -0.042724963, 0.033669114, 0.0058837356, 0.02077361, 0.041300077, 0.0045243697, 0.002229851, -0.092483185, 0.0116710365, 0.08729967, -0.039291866 ] }, { "values": [ -0.0103481, -0.008950749, -0.075250275, -0.057939682, 0.0049160547, 0.033500396, 0.002109445, 0.0493123, -0.0011893634, 0.006297179, 0.011932147, 0.030293183, 0.04339027, -0.0263826, -0.042176854, -0.05920142, -0.002741744, 0.0011793767, -0.07519759, -0.06803968, 0.026098086, 0.04299745, 0.012015511, -0.05030675, -0.021639617, 0.0119352415, 0.063268796, -0.017756516, -0.0058839396, -0.029609872, 0.016388977, 0.047499303, -0.004215129, -0.038376004, 0.022607865, 0.035901222, -0.051039513, 0.008261147, 0.0061779493, -0.019105976, -0.059932142, -0.009674649, 0.0132385595, 0.043280773, -0.050067835, 0.018353276, 0.017585143, -0.004870078, -0.05238628, 0.027435169, -0.014868789, 0.028309593, -0.027516097, -0.030929213, -0.014063297, -0.038965303, -0.03586935, -0.0041279416, 0.051764455, -0.020304069, 0.0022700315, 0.007653001, -0.0008930126, -0.012341344, -0.0330691, -0.03665654, -0.06857751, -0.02480251, -0.01973313, 0.053500373, -0.04639866, 0.024227578, -0.033222917, 0.009395941, 0.025919238, -0.010513005, 0.026630694, 0.008839822, -0.010186817, 0.07255122, 0.002510896, 0.021836156, 0.0705183, 0.005797821, 0.0054878215, 0.00497912, 0.062638745, -0.031042403, -0.013884465, 0.014928058, 0.06822173, -0.019268032, -0.040915366, 0.0014062226, 0.022040224, 0.02088155, -0.03302515, -0.106774196, -0.017284125, 0.08708616, -0.07146221, -0.02394809, -0.029645538, 0.0026085093, 0.026159575, 0.04974482, -0.016756536, -0.0020651743, -0.017803716, 0.009092357, -0.041391645, -0.045604438, 0.02642254, 0.0019478084, 0.011986679, -0.050094236, 0.02244091, -0.0031406372, -0.015020637, -0.016756838, 0.017029418, -0.013866366, 0.022972194, 0.08321967, -0.007081241, 0.00740061, 0.024171274, 0.02662179, -0.061417144, -0.031532172, 0.10348925, -0.115337335, 0.018603975, -0.03167914, -0.02196496, -0.03184158, 0.0498011, 0.024829334, -0.013765386, 0.011027005, 0.008623097, 0.026050797, -0.059953537, 0.0064724763, -0.018096808, 0.016278869, -0.01256721, -0.016132541, -0.029349878, 0.020440439, -0.058683574, -0.017319713, 0.027179467, -0.026058102, -0.053531412, 0.025031805, 0.06903267, 0.0010953532, 0.07243336, -0.076766245, 0.061028495, -0.018699776, -0.035480946, 0.0060532326, -0.075235814, 0.0027460738, 0.055798937, -0.07111251, -0.012318241, 0.008054385, -0.0045661894, -0.03987058, -0.043354813, -0.062727444, -0.005102072, -0.01905067, -0.021713614, 0.007519367, -0.054600794, -0.0023672665, 0.03781484, 0.07023832, -0.01056121, 0.011728047, -0.010710701, 0.024015767, -0.014502551, 0.040463343, -0.02602111, 0.015785493, -0.019541018, -0.007832002, 0.046002716, 0.1060495, 0.013792188, 0.033852845, 0.061978452, -0.04061334, -0.017317863, -0.01054661, 0.026439188, 0.0018972622, -0.03661799, 0.04625094, -0.021834448, -0.01322634, -0.027123978, -0.009588488, 0.041075155, -0.01061952, -0.029041223, 0.004865393, -0.00927477, -0.06598672, -0.030463098, 0.0023901672, 0.11828687, 0.07469933, 0.032819524, -0.03825218, -0.026522797, -0.027168578, 0.0021266234, -0.007326591, 0.045902953, -0.03997652, -0.029975597, -0.008445833, -0.034300126, -0.021906015, -0.02673166, 0.043365005, 0.0071981796, -0.004166538, -0.034769118, 0.023592995, -0.02801676, 0.032438274, 0.003874218, -0.027818674, -0.013401385, 0.014908083, 0.014022177, -0.016977336, 0.0040863426, 0.032750007, 0.055090625, 0.04245817, 0.028660418, -0.04510204, -0.017637936, -0.04048886, -0.048371285, -0.0038322196, -0.04278357, -0.008325354, 0.058567602, -0.036021892, -0.0012055383, 0.0019674196, -0.0068394328, 0.014799788, -0.021735758, -0.03761883, 0.0004445384, -0.077267036, -0.0077430224, -0.030148165, 0.033908542, -0.022535121, 0.0067774435, 0.019636828, -0.07222061, -0.06389658, 0.037055172, 0.014165012, 0.0010050706, 0.010151848, -0.040326495, -0.012883855, 0.029734483, -0.0106396405, -0.002657304, -0.030327488, -0.03353539, -0.048569217, 0.0068111187, 0.04142262, -0.040668078, -0.08023531, 0.025541082, 0.03480341, 0.03745488, -0.015077912, 0.039908815, 0.0031544855, 0.0494655, 0.01574921, -0.02654318, 0.0071773557, 0.04610048, 0.0838549, -0.040765405, 0.021716602, -0.06028104, 0.06337404, 0.0027497632, 0.0026604277, -0.02120946, -0.012182134, 0.018091494, 0.05372995, -0.055085883, -0.028022567, -0.014684498, -0.030326983, -0.09738079, -0.020970235, -0.047885157, -0.038953323, -0.012367856, 0.031168586, -0.016430266, -0.0032979539, 0.06506161, -0.0009443405, -0.009477268, 0.016951185, 0.014352261, 0.028346336, -0.004083356, 0.029947909, 0.007235526, 0.0039559975, -0.0092662005, -0.034089983, -0.02224983, -0.019981096, 0.04048898, -0.015425742, 0.053591367, 0.032900576, 0.026831869, 0.07050113, -0.022831826, -0.0479814, 0.038329724, -0.002182392, 0.030708479, -0.10058621, -0.054961678, 0.08323457, 0.0011098154, -0.026178952, 0.04744219, -0.0008826942, 0.00862311, 0.006914865, 0.04531365, 0.007873983, -0.011371431, 0.03681729, -0.004008508, 0.021185197, 0.036889203, -0.010352142, 0.0228757, 0.0017751816, 0.012020276, -0.03265912, 0.034671962, 0.039418727, -0.0057257237, 0.019010607, -0.002700229, -0.026521549, 0.027641693, 0.009639332, -0.007712579, -0.06103938, -0.018519381, -0.060339697, -0.030678403, -0.021356668, -0.03644561, 0.052052457, -0.037623324, 0.0026728201, 0.008505094, 0.004635671, -0.008745228, 0.0735676, 0.021001406, 0.0035869353, -0.010021499, 0.044727694, 0.008740555, 0.022485929, 0.021273637, 0.0012907186, -0.013984426, 0.034412473, 0.04281248, -0.03836961, -0.009131913, -0.038819518, 0.072931014, -0.009409668, 0.026431246, 0.002030144, 0.042420514, 0.0019077817, 0.044171177, -0.010117007, -0.042513747, -0.002778835, 0.039670702, -0.05021532, -0.045142952, 0.0147856735, -0.028151479, 0.011884172, 0.011684556, 0.024928931, 0.01582246, -0.031510036, -0.0011001416, -0.035339076, 0.05197886, 0.0097715305, 0.027869524, 0.007939346, -0.03627592, 0.034829788, 0.011832782, -0.0011453598, -0.0068914243, -0.011232675, -0.046603438, 0.014878052, -0.004960088, 0.027761796, 0.02246873, 0.055818055, -0.008662472, -0.02977784, 0.019381054, -0.0126260435, -0.027300239, -0.045163322, -0.045225352, 0.029810287, -0.012099398, -0.057196174, 0.0048725405, -0.009796073, -0.00022616715, 0.04341619, -0.068332344, 0.041074816, -0.054427907, -0.0022596747, 0.043433093, 0.052892894, -0.011056559, -0.041866567, -0.060406353, 0.0130484365, 0.026553685, 0.06623654, 0.0050304225, -0.009312129, 0.034012828, -0.030576132, -0.0064143995, 0.05654373, 0.013325584, 0.017286617, -0.0051768892, 0.024309322, -0.01884484, 0.0018373176, 0.0065890476, 0.02563656, 0.039091393, -0.07066849, 0.00051430013, 0.035672892, 0.038387433, -0.0037432758, 0.05367412, 0.054227136, 0.0037292235, 0.02748471, -0.05788923, -0.023014767, 0.054272704, 0.0069722324, -0.027517656, -0.0012095844, 0.060169484, -0.034826316, -0.04006889, -0.09336851, 0.025225235, 0.025881203, -0.0548937, -0.014049779, 0.018449798, -0.051618386, -0.013565047, -0.007751378, -0.00024888443, 0.0022509387, -0.06332888, 0.07814254, -0.09555583, 0.0034872133, 0.002222235, 0.028435169, -0.007675442, -0.0119146295, 0.05292642, -0.065295, -0.05651424, -0.00897533, -0.000453858, 0.046416435, 0.05576377, 0.0029132126, 0.004027801, 0.033776652, 0.008196563, 0.011320454, 0.0143071655, 0.038639396, 0.021304939, 0.0049417582, -0.06014465, 0.02765429, 0.029632907, 0.03735342, 0.053628437, 0.013444369, 0.043020215, -0.013496424, -0.009814941, -0.045634, 0.0065855007, 0.043859694, -0.041039646, -0.024701789, -0.0002271298, -0.046133153, 0.011851925, -0.015351279, -0.04198327, -0.024062013, -0.032323077, 0.0612001, 0.049318448, -0.0046297144, 0.0021034598, -0.0051104384, 0.0009092, -0.010802463, -0.049823716, 0.059281893, -0.0020197472, -0.020889753, -0.010121173, 0.021301692, -0.0007225352, -0.06535292, 0.008816505, 0.0051194527, -0.03238084, -0.0073795887, 0.054004833, -0.03546388, 0.026067423, 0.042394355, 0.079263784, -0.014818608, -0.0095970165, 0.0105319, 0.029929686, -0.027983863, 0.008250292, 0.023250569, -0.0099730035, 0.031585146, 0.017505635, -0.030606275, 0.06052594, -0.002967559, -0.0023024397, -0.036862016, 0.035519842, 0.009905508, -0.044084832, 0.019156203, -0.022699043, 0.0035219397, -0.0078580445, 0.0072631706, -0.023083443, -0.03570457, -0.0036492841, -0.020515148, -0.056062315, 0.0029439845, -0.009649783, 0.006343852, -0.066173665, 0.0038204791, -0.05525419, -0.053200614, 0.026708571, -0.011949185, 0.019049736, 0.02746147, -0.04818339, 0.03363905, -0.103530526, -0.012048187, -0.010473508, 0.020187568, -0.027267203, -0.023412019, -0.04505656, 0.008642473, 0.02752399, -0.038770296, -0.02261702, 0.062338915, -0.014160798, -0.034581285, 0.0053772535, -0.041539412, 0.019383721, -0.011387741, 0.047140278, 0.034739554, -0.058292687, 0.018333353, 0.05221312, 0.024981191, -0.01660766, 0.045529865, -0.023479776, 0.031643506, -0.037753712, -0.0169812, -0.0558086, -0.027620643, -0.006877213, 0.017365333, 0.020772394, -0.024040485, 0.013980156, -0.029902816, 0.029452, 0.0046852594, -0.04863067, 0.02974499, -0.009822516, 0.014955866, -0.028931536, -0.0130457515, 0.034438778, 0.024789209, 0.026095036, 0.042293623, -0.0077257105, 0.040645875, 0.025349636, -0.043672226, -0.04662547, 0.020758921, 0.020579621, -0.050335098, 0.0038344509, -0.020987455, -2.7161637e-05, -0.017264389, 0.06186201, -0.054049246, 0.023795828, 0.020994501, 0.02281341, -0.044155728, -0.0021643871, 0.028718418, 0.038413465, 0.08137337, -0.08407586, 0.0009900478, -0.06569898, -0.0022799452, -0.03973424, 0.019509884, -0.02989369, -0.036976457, 0.039967332, 0.002548024, -0.0040451987, 0.058756463, -0.07103578, 0.041954786, -0.044669, 0.03395377, 0.06761896, 0.023038553, 0.055380188, 0.0094973305, 0.030633343, 0.03502061, 0.027008401, 0.017860334, 0.0059881248, -0.0010463194, -0.06318349, 0.08876569, 0.021090206, -0.02196814, -0.057724614, 0.013730257, -0.03723588, 0.036690313, 0.00656476, -0.026947983, -0.0020438235, 0.06681469, 0.0030826193, 0.012130044, -0.0007449243, -0.028099207, -0.06384243, -0.046412863, 0.017566703, -0.0066668796, -0.021768808, -0.0018549672, 0.039893895, -0.0362115, -0.032878816, -0.03603752, -0.06783245, -0.04707753, -0.027714448, 0.013756795, 0.04641393, -0.027811809, 0.040617343, 0.035009995, 0.0291081, -0.0476201, 0.030166177, 0.008520195, -0.004518759, 0.0270858, -0.0025211796, 0.005112331, -0.09074035, 0.008434334, 0.06918778, -0.029973073 ] }, { "values": [ -0.0068298657, -0.038565777, -0.07844742, -0.04616561, 0.015156514, 0.020879671, 0.01638234, 0.02460431, -0.00912222, -0.0022967546, 0.005384373, 0.05032226, 0.023252912, -0.021574121, -0.04084317, -0.04505998, -0.008887754, -0.0010160558, -0.07985394, -0.05523947, 0.015603463, 0.01999624, 0.04282598, -0.019108426, -0.009541483, 0.045554098, 0.052238323, -0.026676392, 0.004736386, -0.03137899, 0.024289872, 0.043792296, 0.0023559511, 0.009356808, 0.0726442, 0.01571995, -0.017156664, -0.005858658, 0.010369399, -0.031483144, -0.04193903, 0.020927038, 0.0058684316, 0.02055271, -0.03163238, 0.049009264, -0.002737195, -0.009936863, -0.055886716, 0.040899266, -0.033950638, 0.025494285, -0.021653464, -0.033071514, -0.0049181073, -0.014876399, -0.024202544, -0.018844869, 0.08295497, -0.01824737, 0.02111893, -0.009062868, 0.055113617, -0.01077034, -0.020911293, -0.018566396, -0.046884853, -0.032284725, -0.04215539, 0.051456425, -0.015177992, 0.023737228, -0.04704715, 0.026768906, 0.020606428, -0.0008149547, 0.0033054398, 0.034189716, -0.013925805, 0.042607684, -0.028749188, -0.004258231, 0.10657459, -0.0025791337, 0.034270223, 0.008274603, 0.037104424, -0.005942919, -0.025506197, 0.024040164, 0.075932845, -0.02000789, 0.00839568, 0.011686185, 0.027303062, 0.017874364, -0.06416141, -0.11337622, -0.03224897, 0.08601724, -0.04744901, -0.01935304, -0.02236658, -0.0074878074, 0.06005092, 0.039225496, 0.024045417, -0.027544467, -0.023011604, 0.023905462, -0.028338982, -0.059811816, 0.01797538, 0.010499245, 0.030490987, -0.045719, 0.04649084, 0.024097655, -0.0055702687, -0.0044939984, 0.027736004, -0.011208565, 0.025365116, 0.07586249, -0.011297323, 0.017105255, 0.030260073, -0.003394405, -0.055695985, -0.05588786, 0.09889818, -0.08149285, -0.002810519, -0.017993603, -0.026783958, -0.04541339, 0.0046671797, 0.029853942, -0.007784383, 0.008714048, 0.0036111719, -0.010848195, -0.04127527, -0.00019449466, -0.002853338, 0.004397205, 0.017644867, -0.014334717, -0.0075348173, 0.012803021, -0.08772619, -0.0003225463, 0.03752134, -0.025306322, -0.045814972, 0.03382805, 0.08358063, -0.008336229, 0.08271399, -0.053484745, 0.019243872, -0.028807161, 0.00044073022, 0.011651973, -0.07497298, -0.014824491, 0.03957581, -0.08292306, -0.010112592, -0.0022521, 0.011119723, -0.019464886, 0.0065210382, -0.073205315, 0.0069524273, -0.032984238, -0.015215791, 0.019649392, -0.061599456, 0.013335402, 0.028641, 0.050297316, 0.0055975537, 0.023060255, -0.020479163, -0.0115550775, -0.012358471, 0.04561164, -0.010389022, 0.0072974293, -0.04459383, 0.0014520466, 0.031185726, 0.07407648, -0.0015974318, 0.047501165, 0.05448928, -0.005726787, -0.01546636, -0.024207482, 0.03403183, -0.042311385, -0.013965876, 0.0049629803, -0.04659653, -0.04296255, -0.038742825, -0.0014038471, 0.046956636, 0.0041116164, -0.028598068, -0.0040073814, -0.023010261, -0.06537634, -0.026607677, -0.0077720513, 0.11393591, 0.104298696, 0.013113478, -0.039458226, -0.0018649237, -0.0019105786, 0.013780922, -0.013313819, 0.035088476, -0.04100926, -0.05342248, -0.019623933, -0.045327704, -0.0059003155, -0.04942708, 0.05675759, 0.011402603, -0.012399395, -0.030042335, -0.006700142, -0.014019889, 0.022979701, 0.00019411994, -0.051098324, -0.008091484, 0.045678876, 0.015046263, -0.024812665, 0.013441309, -0.0036246341, 0.046261355, 0.061019, -0.0026088373, -0.025725313, -0.01862, -0.027103737, -0.014902233, 0.014104764, -0.04463728, -0.00392294, 0.03775792, -0.03341538, -0.016079856, -0.008481881, -0.01737105, 0.012665844, -0.012872877, -0.041165687, -0.03430721, -0.097474925, 0.007088334, -0.018360402, 0.023518268, 0.005442433, 0.027487624, 0.013268372, -0.07206735, -0.08305453, 0.030393533, 0.010922304, -0.0041426606, 0.03367526, -0.014586707, -0.014131749, 0.037254516, -0.014022246, -0.012711215, -0.030487979, -0.005448834, -0.06566648, 0.0028029045, 0.0085038515, -0.051515408, -0.09000731, 0.039796483, 0.049450517, 0.021484759, 0.0047631655, 0.030963123, -0.0032159723, 0.044975147, 0.0061871675, 0.023824407, 0.011949263, 0.026767265, 0.08404353, -0.018390127, 0.018831754, -0.052016668, 0.07026124, -0.003137961, -0.02459133, -0.039319247, -0.0060067214, 0.016020004, 0.056855034, -0.042390544, -0.040521204, 0.010737721, -0.011576453, -0.072714165, -0.01396472, -0.040164396, -0.04503974, -0.0058804234, 0.036151376, -0.0179879, -0.004003657, 0.08369293, -0.007835245, -0.014706487, -0.014262058, 0.013980288, 0.02793834, 0.0017948949, 0.01797349, -0.010004956, -0.014408701, -0.013584386, -0.046621837, -0.019819556, -0.016818587, 0.019320698, -0.030450495, 0.04882398, 0.039046794, 0.023295106, 0.013081249, -0.014156276, -0.051467095, 0.039790515, -0.022732899, 0.03960704, -0.09459921, -0.030138986, 0.061410822, -0.01028559, -0.018810948, 0.057036016, 0.024642784, 0.028350716, 0.009341934, 0.030591335, 0.017403869, -0.015989823, 0.030469391, 0.01600843, 0.0116449, 0.017174182, -0.01267792, 0.027369566, -0.0072132545, 0.009167053, -0.04215034, 0.020943832, 0.04664696, 0.008572428, 0.0007340242, 0.0011114955, -0.051314447, 0.014809752, 0.0018337708, 0.0071594925, -0.047421344, -0.028930351, -0.049872134, -0.037006248, -0.025318023, 0.006925216, 0.039219324, -0.034749515, -0.008614039, 0.010601456, 0.010976197, 0.0011076585, 0.06258298, 0.036403697, 0.014540981, 0.0066858823, 0.027022956, 0.0034216382, 0.02414422, 0.014901841, 0.015624526, -0.004712759, 0.04427549, 0.043891925, -0.04642307, -0.008213037, -0.018247124, 0.06319183, -0.020679638, 0.018549755, 0.02153248, 0.046229884, 0.003891255, 0.03248005, -0.015492977, -0.0445432, -0.017966146, 0.034478296, -0.044694416, -0.05249511, 0.028523808, -0.02749646, 0.01403851, 0.01718771, 0.054359753, 0.016096612, -0.04141613, 0.03480052, -0.024649013, 0.055435013, 0.027180018, 0.047056988, 0.013067569, -0.032248672, 0.042555287, 0.0076147076, -0.025232144, 0.02886954, -0.010208985, -0.03280044, 0.014685088, 0.0047074994, 0.027577955, 0.046945576, 0.04365698, -0.014616873, 0.02417715, 0.036303174, -0.019877367, -0.030778822, -0.045985833, -0.019612998, 0.046419, -0.018497601, -0.084287, -0.019894196, 0.002181189, 0.0018993072, 0.04597116, -0.05345076, 0.041730434, -0.042136014, -0.023874063, 0.04422312, 0.04700009, -0.010338678, -0.053187832, -0.06523801, 0.03126639, 0.032609344, 0.03950495, 0.0018749157, 0.014719024, 0.022575863, -0.01042247, 0.011705085, 0.06643595, 0.0067061153, 0.006617811, -0.0020927635, 0.0069222925, 0.01332162, 0.01227379, 0.0026112648, 0.0114368275, 0.040325277, -0.082089685, -0.02700893, -0.00026795227, 0.02201199, 0.0041379305, 0.01955224, 0.047163736, 0.022620685, 0.006211199, -0.041787926, -0.037949603, 0.067443304, 0.0049724835, -0.03049654, -0.026194666, 0.07215114, -0.011585572, -0.0031220396, -0.04548871, 0.0049960143, 0.038247116, -0.056293122, -0.011762337, 0.020917453, -0.046795245, -0.032665323, -0.028462276, 0.024880528, -0.021213831, -0.06960636, 0.071620785, -0.09219889, 0.016133225, -0.028024565, 0.03296987, -0.04979977, -0.0134421475, 0.06334889, -0.095508076, -0.04270728, -0.015876077, -0.009608293, 0.031611368, 0.042388618, -0.010833202, -0.023348792, 0.04176975, 0.02677279, -0.007874846, 0.021551255, 0.014565382, 0.036463827, -0.02699857, -0.043509103, 0.042322565, 0.024321286, -0.005184166, 0.06232944, 0.020771159, 0.052411444, -0.021962069, -0.006129234, -0.059485182, 0.016799938, 0.06151544, -0.021465909, -0.041664366, -0.025996456, -0.033960637, -0.010131619, -0.01975406, -0.053148318, -0.020856002, -0.025252108, 0.068347484, 0.04010778, -0.011626146, -0.009734146, 0.012670821, -0.029712448, 0.002343787, -0.03650258, 0.087113194, -0.009057761, -0.008982868, -0.012642707, 0.0039108563, -0.017935848, -0.06490516, 0.016329657, 0.01123667, -0.027379474, 8.9024215e-05, 0.043372855, -0.010445872, 0.04103105, 0.027409192, 0.05057671, -0.02061645, -0.0011675343, 0.0029749465, 0.0053830473, -0.04134672, 0.021804411, 0.012801297, -0.03189068, 0.034158893, 0.0054513486, -0.030950315, 0.057909854, -0.01151588, -0.0034167806, -0.054408975, 0.026695939, -0.00420968, -0.029016104, -0.015741745, -0.043914348, 0.012696694, 0.0074338987, 0.033584923, -0.007243186, -0.041617896, 0.0031086034, -0.006105382, -0.067388155, 0.002470171, -0.0066276747, -0.015558908, -0.061883587, 0.014655394, -0.04254523, -0.066908434, 0.029905472, 0.012093548, 0.045640003, 0.047916025, -0.015875999, 0.010922914, -0.090485565, -0.026556581, -0.004237729, 0.03172998, -0.028333532, -0.01901945, -0.053451438, 0.0068660015, 0.030224878, -0.03945607, -0.038100723, 0.07439924, 0.010182566, -0.018789137, 0.028001498, -0.05223313, 0.018943995, 0.00865, 0.042465445, 0.05130958, -0.06870117, 0.034566164, 0.045016147, 0.032209735, -0.05190955, 0.04710145, -0.031515006, -0.0011468404, -0.03041631, -0.019769551, -0.053966694, -0.017236464, -0.01422445, 0.007708954, 0.020858534, -0.031122806, 0.0041732825, -0.029438864, 0.045601275, 0.02403989, -0.04028841, 0.022451492, -0.019689089, 0.031882286, -0.008381295, -0.031575844, 0.040272985, 0.022991905, 0.052745644, 0.07060581, -0.005850636, 0.016650254, 0.012490531, -0.040173825, -0.04741019, 0.020297965, 5.9293805e-05, -0.029318392, -0.0061951783, -0.0098621845, 0.007521508, -0.026390897, 0.06424682, -0.062220525, 0.01737658, 0.010593361, 0.044550225, -0.040895842, -0.028981214, 0.0040427856, 0.030446079, 0.07765172, -0.072795935, 0.041327216, -0.08585923, -0.0011832055, -0.03079934, 0.0075869244, -0.045873836, -0.0112285465, 0.035853893, 0.0036215486, -0.0030136616, 0.037765216, -0.067196906, 0.03656565, -0.043077163, 0.027672747, 0.0672071, 0.026702724, 0.042239334, 0.007580126, 0.02996088, 0.018445984, 0.04329642, 0.04191004, 0.0010537637, 0.0027051969, -0.065952316, 0.08569964, 0.015171028, 0.0077272574, -0.061489563, 0.005077074, -0.03476723, 0.042668596, -0.009616247, -0.015551611, 0.00070484244, 0.05964834, 0.00015036634, 0.015780343, -0.017064566, -0.011289365, -0.05742592, -0.017160928, 0.018773716, 0.0015402612, -0.018203447, 0.04770262, 0.020214114, -0.025527328, -0.044697028, -0.06495649, -0.058439374, -0.030415216, -0.04585283, 0.02103545, 0.036549617, -0.033369575, 0.054618873, 0.0113310125, 0.023406582, -0.033954386, 0.019097347, 0.004337913, -0.016915986, 0.03129842, -0.015439574, 0.0065217596, -0.07074852, 0.018685637, 0.04850699, -0.037617575 ] }, { "values": [ -0.013083945, -0.039267525, -0.076097764, -0.04582298, -0.0064583574, 0.037412673, 0.005267941, 0.054207526, -0.026565423, -0.0045036264, 0.015388558, 0.052392475, 0.026114544, -0.01339411, -0.023241822, -0.046129227, -0.0044396156, -0.020585833, -0.06238806, -0.03779526, 0.0140686035, 0.041544937, -0.00070205505, -0.039034326, 0.0023912764, 0.039460015, 0.047350362, -0.03092751, 0.01514611, -0.04469544, 0.016083308, 0.029822245, 0.015320664, 0.011562427, 0.019723559, 0.02857477, -0.033704843, -0.010179832, 0.027320493, -0.032605562, -0.040799953, -0.009914568, -0.013729715, 0.044772107, -0.05324568, 0.0505575, -0.005403826, 0.004252949, -0.030249516, 0.012799895, -0.01084751, 0.009464348, -0.025011761, -0.017988132, -0.0069173346, -0.022826355, -0.041231353, -0.015820945, 0.0750478, -0.0091815265, 0.018065443, 0.00030159266, 0.0324205, -0.019484447, -0.032101154, -0.025159156, -0.03473267, -0.043831915, -0.051688943, 0.048462573, -0.038623195, 0.009553778, -0.040316924, 0.032586165, 0.028118914, -0.017693158, 0.022863016, -0.00996779, -0.031683188, 0.06548395, -0.0010715789, -0.0031146961, 0.058139462, -0.0010474888, 0.018711625, 0.0007543133, 0.057319887, -0.011123379, -0.041510407, 0.031829186, 0.06500339, -0.016618947, -0.015444426, 0.01617597, 0.051331073, 0.0029085074, -0.042568307, -0.09698366, -0.018674988, 0.064086564, -0.075913444, 6.884827e-05, -0.007202049, -0.019809026, 0.05262381, 0.06569985, 0.00021775342, -0.018698687, -0.0058257496, 0.019099368, -0.028858796, -0.05246471, 0.00028671676, 0.0120490575, 0.01644284, -0.06257465, 0.04522504, 0.0012974117, -0.02893284, -0.040420458, 0.01295023, 0.0011625899, 0.030917084, 0.0757211, -0.019961674, 0.018487949, 0.022475392, 0.016298514, -0.0428904, -0.036242668, 0.08044299, -0.10581199, 0.021452365, -0.024606526, -0.028657837, -0.034568418, 0.05238454, 0.034761652, -0.019523596, -0.017328063, 0.002645245, -0.0041590612, -0.050121974, 0.028098201, 0.007241158, -0.021532655, -0.016630648, -0.040814072, -0.0022226663, -0.0036672573, -0.06907877, 0.0026987297, 0.0068618315, -0.009697835, -0.03319269, 0.017074011, 0.078086905, -0.04349011, 0.066848874, -0.07042775, 0.015218959, -0.034579165, 0.0042337123, -0.008182833, -0.06258388, 0.011572977, 0.03160804, -0.07023717, -0.033181358, -0.01789152, -0.005162375, -0.08017579, -0.046390243, -0.07127958, -0.019018102, -0.03718801, -0.016602939, 0.012324756, -0.05570564, 0.029658588, 0.040873256, 0.071014486, 0.017572537, 0.0041507636, -0.039226152, 0.0012348841, 0.008452714, 0.054362535, -0.013434258, 0.026614677, -0.022129934, 0.011633852, 0.052478857, 0.09382229, 0.030316727, 0.04725348, 0.072750404, -0.026240222, -0.042724162, -0.0138385855, 0.012132833, -0.0011999923, -0.029529298, 0.04275067, -0.023759307, -0.03267717, -0.0017756181, 0.0038309398, 0.049739648, -0.007938864, -0.038814124, 0.028948022, -0.026020112, -0.07362294, -0.0187406, -0.018954614, 0.12733312, 0.10604625, 0.055229362, -0.043929376, -0.0005831164, 0.00075560634, 0.019574925, 0.010256162, 0.057725396, -0.036189597, -0.037374154, -0.008999733, -0.029225273, -0.022801396, -0.0354079, 0.047015168, -0.007834074, -0.02414983, -0.016475277, 0.0073714964, -0.012186063, 0.03738587, -0.021607725, -0.02402544, -0.014663121, 0.03589382, 0.031492118, -0.037538007, 0.006480931, 0.025748976, 0.054933637, 0.037082795, 0.003606639, -0.060776405, -0.016501132, -0.048985828, -0.039110888, -0.008869075, -0.05017714, -0.012173379, 0.051840737, -0.031494573, -0.015642911, -0.00014177483, 0.0023329847, -0.011402152, -0.0064292946, -0.055485047, -0.01759252, -0.042650014, 0.0023093822, -0.013871648, 0.02096378, -0.018300442, 0.012056772, 0.020218076, -0.07192792, -0.0575068, 0.024456795, 0.024593735, 0.0019018401, 0.0153101785, -0.02796249, -0.033007707, 0.062039148, -0.016008966, -0.005219829, -0.027980752, -0.010929605, -0.04490726, 0.0021477789, 0.043980327, -0.043262858, -0.06894606, 0.036585953, 0.045077696, 0.020776793, 0.004263551, 0.05634887, -0.0043116948, 0.051067162, 0.011146172, -0.030300774, 0.008421035, 0.015714593, 0.06964266, -0.02968773, 0.025600666, -0.030228116, 0.08716253, -0.002151185, -0.016227273, -0.028966824, -0.012947032, 0.0013685655, 0.06999411, -0.058074106, -0.036587704, 0.0071329805, -0.017994104, -0.09149567, -0.015494566, -0.03185924, -0.050497033, -0.01876817, 0.023158653, -0.035213064, -0.009659787, 0.055445872, -0.003757611, -0.004635275, -0.0035516254, 0.02370942, 0.031118985, -0.009668792, 0.03528769, 0.0027031435, 0.014946901, -0.016497677, -0.027396165, -0.04674231, -0.018158095, 0.023154767, -0.011704066, 0.02442572, 0.0265963, 0.04476443, 0.053824842, -0.001878908, -0.03255599, 0.033545256, -0.0032956703, 0.019614693, -0.11348177, -0.05281551, 0.077929445, -0.0048812777, -0.037725184, 0.04978415, 0.01961408, 0.0153425485, 0.004423451, -0.004592244, 0.022587528, -0.019962426, 0.021129502, 0.013970353, 0.02790541, 0.040786337, 0.005174402, 0.030094042, 0.0054869885, 0.016636899, -0.014515872, 0.02222087, 0.048775908, 0.006981152, 0.020115525, 0.009405715, -0.053679712, -0.00060029246, -0.015738599, 0.006915211, -0.03668941, -0.017217562, -0.04586305, -0.024563111, -0.037776496, -0.027627818, 0.03229681, -0.035923764, 0.0010843688, 0.012558317, 0.021543423, -0.019804338, 0.040946398, 0.017240873, 0.006594127, 0.0068723545, 0.058100097, 0.017298257, 0.037154507, 0.0035048446, -0.0049553937, -0.013018502, 0.03576156, 0.03387001, -0.05376496, -0.0035421366, -0.0027715643, 0.07033409, -0.0053773425, 0.023287565, -0.0017027025, 0.04566577, -0.0007279127, 0.033467475, 0.0035723527, -0.049026918, -0.008490088, 0.05837078, -0.03625018, -0.03748701, 0.014546837, 0.005268593, 0.016523866, -0.0015741593, 0.049241945, -0.014304783, -0.025771204, 0.019202149, -0.010973167, 0.0508734, 0.021533135, 0.04960959, 0.0016199462, -0.03198495, 0.048056263, -0.01798117, -0.0128592905, 0.0072551086, 0.0028680416, -0.021486243, 0.010732681, -0.011113544, 0.029396672, 0.03135834, 0.053170808, -0.017344756, 0.012978691, 0.021297172, -0.031295583, -0.030728735, -0.07072206, -0.04839494, 0.020707775, -0.0036014286, -0.07423242, -0.035406392, -0.011417633, 0.019678216, 0.039082266, -0.04026444, 0.0498547, -0.065529, -0.0033040144, 0.041835275, 0.048611794, -0.031010505, -0.03959129, -0.06853338, 0.037508935, 0.016540073, 0.060879253, 0.011394941, 0.012866778, 0.027139062, -0.010342791, -0.0046191295, 0.059622604, -0.011095455, 0.025922809, -0.008931209, 0.012315448, -0.0034578866, -0.00032409758, 0.017730257, 0.013061169, 0.046613052, -0.06647125, -0.030997943, 0.02829815, 0.031741004, 0.022675298, 0.048413426, 0.055350643, 0.005661576, 0.03227316, -0.03196405, -0.006531806, 0.054719098, 0.0026577553, -0.013911418, -0.008500204, 0.067833394, -0.027531544, -0.008215887, -0.05194498, 0.0061551537, 0.026092479, -0.077252544, 7.1380375e-05, 0.013206088, -0.039303787, -0.012585346, -0.022423832, 0.019596847, 0.014751168, -0.054920994, 0.07499953, -0.0854378, 0.0035946406, -0.002034756, 0.04357106, -0.017091958, -0.010824443, 0.059860118, -0.06598395, -0.056610692, 0.0044147037, -0.029972734, 0.023528391, 0.04881396, -0.010282364, -0.021724941, 0.041082986, 0.01756174, 0.010516816, 0.017979698, 0.015701864, 0.01865536, -0.0057010967, -0.040175382, 0.051509317, 0.013337859, 0.045520093, 0.046017822, 0.022735441, 0.053311996, -0.023935767, -0.018608054, -0.072186984, -0.0025024032, 0.052952398, -0.031182505, -0.03144792, 0.0030050864, -0.025405936, 0.008042489, -0.03343972, -0.04603639, -0.022825306, -0.051940598, 0.055876244, 0.06802139, -0.013785494, -0.008723418, -0.001955239, 0.0040368624, -0.015630087, -0.059164196, 0.06570307, 0.0062707798, -0.021018025, -0.015252827, 0.0161006, -0.0044591334, -0.058259342, 0.039100263, -0.00410255, -0.028834825, 0.008408882, 0.045986127, -0.020945027, 0.057817828, 0.02245235, 0.056432087, -0.032654688, 0.0048130527, 0.009770064, 0.020928156, -0.033648588, 0.00071356003, 0.048513487, -0.022666913, 0.038719554, 0.002541209, -0.014567048, 0.05369836, -0.016876083, -0.02006735, -0.030694745, 0.033833254, -0.0005169008, -0.036104612, 0.0014830201, -0.023139205, 0.021836147, -0.0009224388, 0.016384372, -0.0044971397, -0.05077281, -0.008221667, -0.0036883198, -0.046194393, -0.0008274549, -0.023181565, 0.020103747, -0.045534447, 0.019394318, -0.04365193, -0.048853494, 0.023340764, -0.0040990748, 0.008411096, 0.027704837, -0.0355601, 0.012177654, -0.099255376, -0.002320735, -0.011908287, 0.035484117, -0.031820834, -0.011678649, -0.03245726, 0.009895388, 0.024212247, -0.042608134, -0.041622464, 0.070485994, 0.008088707, -0.01177827, -0.019448467, -0.06497134, 0.020787703, -0.0037508423, 0.05280651, 0.03183134, -0.10121992, 0.03400427, 0.027024955, 0.027356202, -0.023573931, 0.06399707, -0.028578607, 0.018929841, -0.04460554, -0.014116426, -0.04690833, -0.023510711, -0.022435956, -0.0033777799, 0.020459676, -0.025527611, -0.0026512165, -0.01459454, 0.025345102, 0.008795897, -0.044757374, 0.035443954, 0.003959107, 0.011302639, -0.022250151, -0.014195484, 0.028484749, 0.02375492, 0.042729795, 0.0443651, -0.016002562, 0.03010528, 0.015737427, -0.01016264, -0.070253335, 0.022509737, -0.005724213, -0.061596822, 0.013795601, -0.036479734, -0.014082749, -0.01445012, 0.06992653, -0.047744703, 0.054164086, 0.03130216, 0.009349743, -0.061844926, 0.005790771, 0.017128835, 0.042663794, 0.07136141, -0.07987923, 0.024803916, -0.061510947, 0.0064698397, -0.033292178, 0.01258954, -0.03178633, -0.041396443, 0.045059856, 0.0022567406, -0.0012791607, 0.059035618, -0.04371129, 0.06291184, -0.052810922, 0.04539796, 0.067476615, 0.036038123, 0.048490733, 0.018997476, 0.023384457, -0.0062093325, 0.03849198, 0.0170253, -0.0021998037, -0.019394027, -0.06765583, 0.09201031, 0.02160143, -0.0039037568, -0.04593166, 0.005606505, -0.015046429, 0.04955752, 0.0028957603, -0.020963328, -0.017832616, 0.07195447, 0.011050757, 0.003986129, -0.0057980143, -0.016456367, -0.037851993, -0.05361293, 0.005072512, -0.021092732, -0.018735394, -0.002881505, 0.020848677, -0.014725089, -0.026154233, -0.05708984, -0.043420877, -0.028972413, -0.039459314, 0.0070630424, 0.034446217, -0.03115393, 0.04281165, 0.0067931875, 0.06546332, -0.038640883, 0.03837751, 0.004725469, 0.0048292475, 0.039067563, -0.00070071185, -0.002852461, -0.0888855, -0.008007969, 0.062652044, -0.045118522 ] }, { "values": [ -0.01982326, -0.023690017, -0.043110613, -0.035795443, -0.005890851, 0.040889453, 0.026343968, 0.022060199, -0.015199775, 0.01314131, 0.020320704, 0.05286852, 0.0155568905, -0.02868211, -0.03225072, -0.028657442, 0.009135062, -0.0048398213, -0.07794962, -0.07425416, 0.025961, 0.03786946, -0.0061527113, -0.021062827, 0.0012508754, 0.027913686, 0.041442383, -0.029328197, 0.009855927, -0.043395385, 0.013881841, 0.052556716, -0.008816944, -0.007018917, 0.048576586, 0.014715549, -0.036648978, -0.02770064, 0.03774025, -0.0349534, -0.043465875, 0.01603475, -0.009836645, 0.02578489, -0.030629545, 0.059813857, 0.019900646, 0.02559648, -0.008451589, 0.03335774, 0.0028544154, 0.012614476, -0.0063139475, -0.023495661, 0.02103197, -0.030347887, -0.06568852, -0.047509845, 0.0497081, -0.0057557686, 0.022579169, 0.0086724805, 0.023833843, -0.028889861, -0.00918157, -0.028515011, -0.017915882, -0.033220008, -0.044071715, 0.06523972, 0.010565161, 0.02842405, -0.026705835, 0.02142862, 0.010994786, -0.004750507, -0.01126569, 0.00045729836, -0.055964623, 0.04072226, -0.024053521, 0.00013506877, 0.07088178, 0.0136493575, 0.024139132, -0.015251067, 0.047065493, -0.033272687, -0.024350956, 0.026233548, 0.06269689, 0.00060353964, 0.009022976, 0.007234482, 0.035037074, -0.004343456, -0.060370937, -0.08381607, -0.0018072663, 0.087474376, -0.04320087, -0.015942931, 0.005617311, -0.013763396, 0.059656017, 0.054497745, -0.0016263811, -0.027767653, -0.026494725, 0.033919655, -0.044246856, -0.042153485, 0.008569015, -0.0005591378, -0.0055357977, -0.064106226, 0.043881696, 0.00034060347, -0.025974134, -0.056464657, 0.019603932, 0.004762718, -0.008445132, 0.052180707, -0.021986963, 0.019572198, -0.006318399, 0.016292285, -0.046498455, -0.061275143, 0.08969173, -0.10363644, 0.004632582, -0.025725354, -0.031000273, -0.049074624, 0.050968632, 0.039517097, 0.003898646, -0.008764936, -0.0043755164, 0.005859548, -0.02579421, 0.025303956, 0.0053535434, -0.018564466, -0.004784788, -0.010988995, -0.026483066, 0.013532854, -0.08896497, 0.021147786, 0.01177336, -0.0075789457, -0.030951055, 0.030134805, 0.07872701, -0.021397103, 0.0713759, -0.071590014, 0.027679576, -0.007595266, -0.0088712005, 0.0028562946, -0.06698454, -0.042056214, 0.0230323, -0.08219662, -0.028552782, -0.02789199, 0.008656008, -0.031584907, -0.036059596, -0.082346626, 0.0014698559, -0.009466286, -0.009086812, 0.023243012, -0.027037265, 0.038978465, 0.037604906, 0.03868292, 0.018406238, 0.017306963, -0.009090517, -0.016863473, -0.018550564, 0.060256373, 0.0016886741, 0.046904527, -0.020751433, 0.023116909, 0.021124845, 0.07007794, 0.029873798, 0.039379742, 0.05540366, -0.012027159, 0.008570038, -0.014640201, 0.04964003, -0.019891454, -0.018695394, 0.03306884, -0.03197273, -0.055041447, 0.006575222, 0.010587039, 0.036347818, 0.023124676, -0.0643797, -0.016881574, 0.0026569902, -0.06514041, -0.034411892, 0.018688494, 0.10961297, 0.094335794, 0.025093086, -0.03434562, -0.005705603, 0.00865119, 0.012264841, 0.01450431, 0.05359346, -0.059930686, -0.054336715, -0.041033905, -0.04741436, -0.007140571, -0.048907477, 0.044172138, 0.0010690682, 0.0019999181, -0.030080607, -0.004450173, -0.021259272, 0.04158392, -0.002509316, -0.020052752, -0.028346874, 0.04011422, 0.044972435, -0.014090944, 0.00068590895, 0.04144875, 0.06140763, 0.071915485, -0.00095114525, -0.06714805, -0.02185813, -0.03647693, -0.046953574, 0.010002268, -0.03940557, -0.036737647, 0.042439513, -0.04972794, -0.0072073834, -0.032102402, 0.0004719069, 0.007431939, -0.021996856, -0.043015223, -0.038879704, -0.050172266, -0.0027310809, -0.0040399437, 0.033500165, 0.012925223, 0.009764506, 0.027274666, -0.052673858, -0.07278451, 0.021063639, 0.019011278, -0.0052247713, 0.012553702, -0.011639498, -0.025016401, 0.05722796, -0.03142263, -0.014860654, -0.042254, 0.009841439, -0.042358983, 0.014924188, 0.029820606, -0.052915823, -0.074693084, 0.05449364, 0.037844572, 0.031048736, -0.0022311434, 0.02958095, 2.9508068e-05, 0.05385, 0.01728448, -0.009733392, -0.006103622, 0.03437513, 0.06417178, -0.019115748, 0.002735425, -0.03537566, 0.08604147, -0.02866227, -0.039466865, -0.024392905, 0.007331622, 0.011986632, 0.06476328, -0.033708107, -0.039123014, 0.03150204, 0.0043373983, -0.08478736, -0.010656318, -0.027772732, -0.036700644, 0.0013846813, 0.040569697, -0.036845814, -0.000611616, 0.06959116, -0.009532263, -0.0066744867, -0.01089846, 0.029653842, 0.036961272, 0.010912286, 0.040595356, -0.0019246488, 0.03174262, -0.009625149, -0.02568949, -0.032920763, -0.014739587, 0.03919771, -0.012638819, 0.02406593, 0.016032496, 0.044200704, 0.043560684, -0.020134922, -0.05142785, 0.022104267, -0.011789772, 0.04575081, -0.0951468, -0.07683453, 0.07346569, 0.02761008, -0.03708256, 0.042851336, 0.009716868, 0.0361532, 0.008562011, 0.020054635, 0.0057535097, -0.009406348, 0.0414202, 0.018569147, 0.026685385, 0.021196777, 0.0001239023, 0.039789915, -0.013024798, 0.010368322, -0.036933757, 0.025070766, 0.05218321, 0.0027934886, -0.008371835, 0.012121718, -0.0619683, 0.005805257, -0.014973154, -0.00071800937, -0.054316934, -0.030272765, -0.029792642, -0.003564, -0.0396145, -0.033295672, 0.04176264, -0.031498138, -0.020316675, 0.024825668, 0.020671811, -0.006671966, 0.053469334, 0.0060706637, 0.007194509, 0.007346138, 0.040428676, -0.009735617, 0.03684014, 0.017504612, -0.02045146, -0.025258403, 0.04612219, 0.038424566, -0.039805103, -0.0008244023, 0.00052927976, 0.071880884, -0.025858376, 0.02445605, -0.010502657, 0.036026783, 0.0032881435, 0.014223836, -0.017625691, -0.059316825, -0.039494988, 0.030317357, -0.021934178, -0.03366596, 0.0021176604, -0.029151402, 0.021419626, 0.013315889, 0.034328893, -0.017473849, -0.049721062, 0.02496922, -0.018155912, 0.0404021, 0.008210236, 0.043816455, 0.013273076, -0.03252963, 0.03719734, -0.0074082185, -0.024511253, 0.010932022, 0.005987283, -0.025814403, -0.014765652, -0.00013441153, 0.026065126, 0.04765311, 0.041570205, -0.0011714657, 0.01818231, 0.033780694, 0.004561789, -0.04657577, -0.06847256, -0.0036764438, 0.04892392, -0.014991414, -0.07571369, -0.042782962, -0.04235435, 0.010484568, 0.049086135, -0.05096155, 0.033444986, -0.03945937, -0.015416661, 0.055230714, 0.04145384, -0.023844639, -0.048732985, -0.06823315, 0.047802676, 0.027388142, 0.049058516, 0.014669187, 0.0015867478, 0.021584244, -0.0023538203, 0.024879131, 0.061565936, 0.0037946594, -0.0035245721, 0.002203731, -0.00029763422, -0.011603457, 0.03076177, 0.020716187, 0.008527714, 0.049241114, -0.06777413, -0.013435277, 0.004026314, 0.03815216, -0.009648908, 0.013567662, 0.06229591, -0.0066936454, 0.024545075, -0.019724438, -0.01229203, 0.05379519, -0.0021669858, 0.0053947573, -0.025543103, 0.050791215, -0.025640532, -0.009819478, -0.02242964, 0.00065165036, 0.0075964313, -0.05466733, 0.0033057898, 0.03937577, -0.027502934, -0.02026688, -0.009676782, 0.024634333, 0.00460173, -0.047741976, 0.088367246, -0.07100819, 0.0035474002, -0.012416086, 0.052514646, -0.053689733, -0.026309721, 0.061511587, -0.08893697, -0.06447085, -0.005958484, -0.028463665, 0.020404613, 0.029526053, -0.0083460845, -0.014920533, 0.027174765, 0.0005469016, 0.0040767295, -0.0029767973, 0.024968429, 0.03735254, -0.029958868, -0.0371543, 0.061812777, 0.026923709, 0.022297256, 0.03891325, 0.013506099, 0.038611755, -0.021253891, -0.0024962134, -0.062275633, -0.0066708582, 0.050760478, -0.034395304, -0.052506026, 0.00024125718, -0.029901959, -0.007473103, -0.020198891, -0.046386134, -0.033425782, -0.046288345, 0.057456914, 0.049178235, -0.012476929, -0.013096786, 0.027917698, -0.008871003, 0.00068166776, -0.056553647, 0.06681822, -0.016327927, -0.00808204, -0.0084071355, 0.0029424166, -0.0036429553, -0.06916597, 0.029260574, 0.022716938, -0.021251637, -0.0058289613, 0.048545644, -0.016639864, 0.06467224, 0.04245141, 0.070617385, -0.05048758, 0.0011736098, 0.012101001, 0.011294526, -0.033923253, 0.008390771, 0.0525965, -0.024225729, 0.04617052, -0.00055356254, -0.03072783, 0.043595903, 0.018195204, -0.013722261, -0.06304235, 0.023769468, 0.011666598, -0.03151393, -0.016013913, -0.04519275, 0.02847906, -0.005491562, 0.014115573, -0.010094367, -0.035537153, 0.02553248, -0.0086813625, -0.039192762, 0.005619251, -0.011509608, 0.015079343, -0.066349596, 0.029713238, -0.039912958, -0.052743804, 0.033478264, -0.020813487, 0.016070748, 0.03671416, -0.033795822, -0.007465519, -0.080106065, -0.02533859, 0.010559039, 0.03137715, -0.03313118, 0.0039601005, -0.0100225415, -0.011559447, 0.041739624, -0.03727478, -0.036232207, 0.07439445, 0.009158373, 0.0030683991, 0.022818826, -0.054768257, -0.000786789, 0.018009646, 0.025692556, 0.055595856, -0.09031376, 0.029804906, 0.03414466, 0.026932124, -0.023593798, 0.04348559, -0.035198595, -0.026467869, -0.033869687, -0.025180738, -0.042217292, -0.025658285, 0.009435405, -0.0124828005, 0.024108088, -0.023440901, -0.017616775, -0.027126772, 0.013455076, 0.03040786, -0.030336943, 0.00860052, 0.0019729773, 0.008776071, -0.033497434, -0.03203646, 0.015282578, 0.0068939338, 0.06147713, 0.03575952, -0.04218555, 0.03167158, 0.027094632, -0.015558099, -0.04376271, 0.0035204983, 0.010136369, -0.045598216, -0.0035201765, -0.03231323, -0.00971683, -0.01003449, 0.058742873, -0.04634606, 0.04449165, 0.01479209, 0.024971448, -0.050712872, -0.018651377, 0.010566415, 0.02571648, 0.0716606, -0.057471283, 0.037408765, -0.07892605, -0.0035069417, -0.019345142, -0.0030680536, -0.05469136, -0.014649372, 0.033779755, 0.019915119, -0.005905116, 0.05511808, -0.077314265, 0.058718428, -0.05181468, 0.03989655, 0.07490018, -0.0005806088, 0.05015016, 0.0065621124, 0.027547538, -0.0064736633, 0.053110234, 0.06097999, -0.010853392, -0.024757314, -0.059443112, 0.082536586, 0.010719263, -0.0034264582, -0.06778238, -0.0033053055, -0.03186918, 0.06077553, 0.018814238, -0.03235931, -0.029542834, 0.069851615, 0.008300629, 0.0122646615, -0.026635123, -0.009638662, -0.036766607, -0.04795167, 0.01326166, -0.02278106, -0.030462552, 0.027942305, 0.017981267, -0.029031062, -0.030147651, -0.06372649, -0.030792331, -0.024779731, -0.060084395, 0.02967949, 0.0291465, -0.030836217, 0.055271097, -0.005784966, 0.051800877, -0.03692693, 0.02190792, -0.0046922616, 0.0020774638, 0.06612803, -0.009094726, -3.5642246e-05, -0.06237129, 0.011292772, 0.085744515, -0.050625272 ] }, { "values": [ -0.015922362, -0.030217102, -0.040267706, -0.043822635, -0.02581347, 0.054964885, 0.001962413, 0.018544523, 0.0012797078, 0.0051807314, 0.016453551, 0.042381715, 0.021544581, -0.028979376, -0.032869585, -0.045992747, 0.010521904, -0.027769906, -0.09314514, -0.074008696, 0.02809519, 0.036730044, -0.0004142914, -0.010033295, -0.0058525805, 0.01571946, 0.0479, -0.013781742, 0.014308364, -0.03974676, 0.015856542, 0.057802897, 0.003594528, -0.024805896, 0.022356315, 0.030121045, -0.061615333, -0.023844827, 0.02367738, -0.033367995, -0.0566957, 0.022828735, 0.011682284, 0.030868348, -0.025512125, 0.046082422, 0.025850415, 0.0084547615, -0.012166182, 0.041028954, -0.021838171, 0.0042917444, -0.0011873612, -0.024699846, 0.018721014, -0.03339958, -0.04843954, -0.003444689, 0.040768616, -0.010476958, 0.016974755, 0.01740635, 0.021628425, -0.0058553927, -0.01658138, -0.03876659, -0.04552564, -0.018812837, -0.012458272, 0.07175032, -0.008209105, 0.028119527, -0.042771704, 0.02972982, 0.032360703, -0.0010105848, 0.020566683, -0.009169362, -0.06340557, 0.062760316, 0.014344414, 0.015909022, 0.050942898, -0.015021856, 0.005566983, -0.010758904, 0.05785763, -0.037572224, -0.019723846, 0.024278682, 0.037479516, 0.001180869, -0.0069050035, 0.015332325, 0.031142183, 0.010682647, -0.052438315, -0.1152552, 0.015675813, 0.07596961, -0.05731283, -0.017836269, -0.0115485005, -0.011091441, 0.05544932, 0.032141004, -0.02122381, -0.002401961, -0.044914722, 0.0002130973, -0.03242509, -0.051045243, 0.024590496, 0.006435525, -0.0120464405, -0.059115775, 0.027189894, 0.0017751512, -0.013217758, -0.024746452, 0.021995358, -0.0062034773, 0.004828104, 0.055369783, -0.017737292, 0.035892017, 0.015197475, 0.019733753, -0.06348303, -0.048069257, 0.09420776, -0.11049212, 0.012844368, -0.026619984, -0.024184318, -0.03127119, 0.062317535, 0.027473131, -0.0042716293, -0.017134083, -0.0021146324, 0.013831728, -0.043965057, 0.020796174, -0.0056252866, -0.020314524, -0.006779978, -0.021462644, -0.01522857, 0.026585294, -0.086495526, -0.007870385, 0.005804363, -0.005745505, -0.03394884, 0.033001356, 0.08156697, -0.022989891, 0.06746794, -0.07729597, 0.013702322, -0.016376166, -0.019950999, 0.004116524, -0.07580513, -0.015379072, 0.03429439, -0.09179736, -0.04683509, -0.02000039, 0.0058823116, -0.030159375, -0.03486773, -0.060859017, -0.022218356, -0.038047764, 0.0010803775, 0.013230117, -0.043615546, 0.029125396, 0.05062881, 0.06947866, 0.0039105243, 0.0010965422, -0.007617329, -0.017813064, -0.009807887, 0.06335548, 0.005380805, 0.052320592, -0.018632205, 0.015742669, 0.044772673, 0.076819554, 0.017679704, 0.03113204, 0.04684262, -0.015427797, -0.0262917, -0.02281612, 0.020139843, -0.007815697, -0.020706652, 0.043631326, -0.038101852, -0.037525598, -0.006068738, 0.010946902, 0.03969148, 0.010068563, -0.048649028, 0.00067029335, 0.010280636, -0.07824495, -0.031193621, 0.008671368, 0.11259535, 0.09430464, 0.046835456, -0.021870842, -0.037097797, -0.006341227, 0.011644258, 0.009279535, 0.045607336, -0.040608577, -0.043400537, -0.014167935, -0.041064553, -0.0057831253, -0.021000056, 0.058753718, -0.0065663555, -0.020967187, -0.024684213, 0.008862627, -0.019994704, 0.030212583, 0.0029266449, 0.0038120544, -0.039801523, 0.028431486, 0.026970927, -0.010277066, -0.00925401, 0.04491962, 0.06066329, 0.06186392, 0.025211992, -0.06475121, -0.054439407, -0.02020353, -0.048672482, 0.005156005, -0.038102068, -0.020359104, 0.0557403, -0.035702113, 0.011319743, -0.000996999, 0.011378571, -0.004679945, -0.0060595204, -0.04739608, -0.007817927, -0.045216583, -0.0058573624, -0.022071727, 0.020792661, -0.009876627, 0.009517505, 0.016834063, -0.063696094, -0.08160065, 0.024081605, 0.0143506965, -0.0074425475, 0.0141283, -0.0030041544, -0.0377357, 0.058301065, -0.033588413, 0.010401906, -0.03490091, 0.008217038, -0.03142379, 0.026806036, 0.021496128, -0.04534573, -0.07481568, 0.039415993, 0.044949077, 0.027699951, -0.009976635, 0.03608106, 0.014579995, 0.05987952, 0.0029228355, -0.011268772, 0.01174167, 0.02252574, 0.06996744, -0.038781676, 0.0012489483, -0.036661718, 0.074502826, -0.011291469, -0.0050616357, -0.035867047, -0.009444166, -0.0032946195, 0.07002423, -0.03429741, -0.038447198, 0.009294553, -0.0137169035, -0.092777304, -0.029243596, -0.047628675, -0.0027194018, 0.0154317105, 0.037878394, -0.024489874, -0.007352526, 0.07023034, -0.0030000133, -0.008264173, -0.0025229238, 0.028640734, 0.03512862, 0.009882886, 0.05284171, 0.0074756574, 0.01357594, 0.005862685, -0.02204531, -0.030964365, -0.03266893, 0.05594393, -0.014740774, 0.026014978, 0.026501818, 0.057192978, 0.054778434, -0.021405213, -0.052638892, 0.028783899, -0.0012695966, 0.026011743, -0.100841954, -0.07233459, 0.07705686, 0.00830477, -0.027860373, 0.04098588, -0.003607241, 0.020659192, -0.006589318, 0.0285531, 0.012312812, -0.0037102017, 0.039793827, 0.016729975, 0.019603327, 0.03664438, -0.004700685, 0.025968358, 0.002287144, 0.015006968, -0.021660034, 0.030525006, 0.033815, 0.006576858, 0.017065583, 0.0068054087, -0.054034613, 0.0031933745, -0.014813549, -0.0057870788, -0.06131255, -0.0100031085, -0.049023293, -0.019272536, -0.02494745, -0.048976753, 0.04284843, -0.023278248, 0.0002279031, 0.025986567, 0.013530255, -0.015439139, 0.057324782, 0.00047619172, 0.007857184, -0.0023755678, 0.05475475, -0.0005361674, 0.019021984, 0.0052531045, -0.019981207, -0.02286269, 0.03958057, 0.039681233, -0.037584055, 0.008949222, -0.011228344, 0.06173745, -0.039990343, 0.027737975, -0.017242504, 0.05015334, 0.00078937056, 0.011079157, -0.001243545, -0.049919695, -0.021579819, 0.053442545, -0.017170232, -0.03978632, 0.0053113485, -0.004759846, 0.042371716, 0.007404424, 0.005003178, -0.03882969, -0.0418256, -0.0028197037, -0.013239143, 0.0484808, 0.035396047, 0.03322756, 0.017296901, -0.035005435, 0.038288016, -0.0144214695, -0.012327759, 0.008763843, 0.0055678166, -0.030182814, -0.0041830237, -0.009606296, 0.020306537, 0.024516193, 0.044820443, -0.0058922414, 0.0039747865, 0.030317128, -0.0069983094, -0.034181546, -0.06568325, -0.03657941, 0.027154444, -0.011159234, -0.056806933, -0.022192253, -0.02327292, 0.002502666, 0.04656778, -0.05941627, 0.04813274, -0.056526367, -0.013061719, 0.05402441, 0.033059213, -0.032390088, -0.044128783, -0.06638671, 0.03570077, 0.04838788, 0.08044973, -0.00074628997, -0.00042753838, 0.03810964, -0.024260353, 0.017417546, 0.061900683, 0.010013169, 0.03307888, 0.014536873, 0.0055778883, -0.021066664, 0.030559745, 0.018567888, 0.01136412, 0.06531289, -0.08151561, 0.0033359062, 0.020161377, 0.053163152, 0.008255298, 0.043410342, 0.05173225, -0.02430457, 0.03553697, -0.024343947, -0.017925136, 0.04084507, -0.00080578605, 0.00015060481, -0.003296157, 0.042871818, -0.024867667, -0.011836583, -0.054934144, 0.027039992, 0.017560296, -0.07658933, -0.021735534, 0.008827899, -0.052313857, -0.013959823, -0.008189799, 0.013177228, 0.010454725, -0.03549545, 0.070550874, -0.097067915, -0.004805519, 0.00017636627, 0.050515726, -0.026968423, -0.020523027, 0.051768687, -0.07934247, -0.0807942, 0.0016423194, -0.01209032, 0.030984141, 0.0332597, 0.013500897, -0.009183593, 0.015029672, -0.006991863, 0.012771575, 0.013373323, 0.011373362, 0.036615588, -0.012629677, -0.025018847, 0.03687812, 0.046548884, 0.03436297, 0.035892002, 0.024048833, 0.048811343, -0.017669186, -0.0042885616, -0.04644961, -0.020758431, 0.042775657, -0.0065843742, -0.047706444, 0.020743325, -0.031543776, 0.016246159, -0.02674244, -0.038832836, -0.043832663, -0.056958437, 0.051989574, 0.06804138, -0.022497412, 0.00734754, -0.008629126, -0.010970778, -0.03013795, -0.055601384, 0.052741334, -0.009019116, -0.025010394, -0.005649048, 0.014109741, -0.02530171, -0.07633193, 0.005705323, -0.0015556655, -0.0073174774, -0.015951056, 0.05300217, -0.013898299, 0.046414133, 0.03136534, 0.072238855, -0.025598174, -0.0056019216, 0.02614194, 0.017124401, -0.032676496, 0.014423353, 0.04577468, -0.016112441, 0.048439503, -0.016331056, -0.0077760257, 0.05221546, 0.0032454808, 0.010231685, -0.053865843, 0.036287036, -0.01402308, -0.028847164, -0.0012313758, -0.013354328, 0.023854556, -0.0114085255, 0.008756843, -0.007046847, -0.044490736, 0.024558783, -0.03878824, -0.043919947, 0.016845522, -0.0034916168, 0.034490302, -0.060069714, 0.012793726, -0.048243877, -0.046159077, 0.044928156, -0.008182396, 0.023000097, 0.02243382, -0.04337183, 0.026416952, -0.080555916, -0.0026289674, -0.0087188715, 0.037370622, -0.04130577, 0.009343865, -0.034517184, -0.0056124693, 0.04437579, -0.05578506, -0.025094599, 0.060618106, -0.0063312836, 0.004344671, 0.0044342265, -0.06415866, 0.018344514, 0.003805766, 0.032520395, 0.031914957, -0.0831108, 0.043441202, 0.016521178, 0.03555777, -0.030449938, 0.046817873, -0.015839087, 0.01207283, -0.035205256, -0.009365501, -0.028634768, -0.03199842, 0.0063248244, -0.0032912968, 0.026917493, -0.013595525, -0.006825916, -0.036931045, 0.02279534, 0.03841089, -0.027398596, 0.001113158, -0.015448571, 0.016220188, -0.034052193, -0.042015597, 0.028873954, 0.0184305, 0.053459417, 0.027271345, -0.041995663, 0.032791454, 0.022450184, -0.016612547, -0.048975747, 0.013298057, 0.017301679, -0.04182051, 0.01650118, -0.05559484, 0.0030032268, -0.020896139, 0.068955466, -0.06995054, 0.050986126, 0.01386487, 0.027751751, -0.060730886, 0.005630692, 0.002597923, 0.024451425, 0.07034679, -0.072052464, 0.0029758953, -0.081974365, 0.021281471, -0.033499707, -0.013878064, -0.024355432, -0.02657984, 0.038151816, 0.0014615537, 0.004757451, 0.062201582, -0.049105603, 0.04092534, -0.05132568, 0.03992051, 0.058232486, 0.019985221, 0.040946763, 0.02439238, 0.016979756, 0.0091516, 0.04407083, 0.043122318, -0.003330461, -0.021333048, -0.06329791, 0.08324684, 0.011718972, -0.017625963, -0.04758068, 0.0076768673, -0.04259937, 0.030450922, 0.014868812, -0.021458877, 0.00043255155, 0.06865584, 0.020596353, -0.0066452287, 0.0022396303, -0.004988352, -0.043983325, -0.027169513, 0.013796116, 0.0060241804, -0.028166309, 0.006355583, 0.030303989, -0.014601271, -0.023033496, -0.052966595, -0.043529302, -0.048144165, -0.05716743, 0.007344293, 0.03211244, -0.030559914, 0.04592174, 0.009565803, 0.04715509, -0.051670287, 0.04033216, -0.004983104, -0.013462218, 0.05470061, -0.02488565, -0.00021323154, -0.09514152, -0.009200185, 0.07009593, -0.05041894 ] }, { "values": [ -0.025955576, -0.044570222, -0.055393748, -0.04755395, 0.007951202, 0.04642908, -0.0033036324, 0.03068569, 0.0062491084, 0.01450278, 0.013173838, 0.041057248, 0.012080272, -0.014819037, -0.028553303, -0.07039504, -0.007286738, -0.01915783, -0.07317331, -0.0806675, 0.011166153, 0.014030373, -0.009274994, -0.02172114, -0.02378056, 0.0376287, 0.043192502, -0.023175942, 0.027736397, -0.031738974, 0.021295138, 0.036026195, 0.006452866, -0.009410351, 0.055026095, -0.00019127034, -0.051334307, -0.012243738, 0.03227922, -0.03023655, -0.05712137, 0.022055032, -0.0053431154, 0.018810518, -0.013655303, 0.05096721, 0.033442676, 0.003141739, -0.0571295, 0.052368898, -0.022866432, 0.010114128, -0.010846596, -0.035868388, -0.014871889, -0.026645036, -0.035956442, -0.03453541, 0.05863578, -0.015811082, 0.026037686, -0.012286127, 0.04046223, -0.008203635, 0.0069005797, -0.034988914, -0.02945871, -0.026558874, -0.023711415, 0.05401544, -0.017953603, 0.027085148, -0.029177181, 0.017544568, 0.013206879, 0.010218438, 0.001133676, -0.00044786785, -0.056580786, 0.03984468, -0.016153231, -0.00898467, 0.09749494, -0.0053592096, 0.012556455, -0.009004888, 0.01625336, -0.016976487, -0.011739766, 0.0343703, 0.044873904, -0.041045368, 0.009819023, 0.010279937, 0.0328045, 0.014301812, -0.049564447, -0.08942543, 0.007556694, 0.07395829, -0.04118922, -0.003167028, -0.017241586, -0.022269983, 0.06679643, -0.0017142207, -0.0131553095, -0.031977993, -0.03852309, 0.00783273, -0.012424155, -0.047009878, -0.009690979, -0.008101852, -0.0067457594, -0.06301825, 0.023019815, 0.01598626, -0.019971231, -0.017931713, 0.03145069, 0.012402679, 0.011861249, 0.05342594, -0.009642657, 0.03147284, 0.033752337, 0.007473275, -0.044872943, -0.06685788, 0.08372157, -0.09016024, 0.0064217453, -0.009280065, -0.019775433, -0.04034345, 0.026434738, 0.029475, 0.012257673, -0.008490179, 0.013347218, 0.015178836, -0.013290742, 0.011593916, -0.0075383913, -0.035104744, 0.0041277385, -0.014902667, -0.012073299, 0.016897114, -0.124827795, 0.006434304, 0.03338289, -0.0272932, -0.04073961, 0.0039485535, 0.07941578, -0.031932347, 0.07581177, -0.064459175, 0.010581423, -0.017914228, -0.0049663526, 0.022722675, -0.08769979, -0.016561259, 0.040176064, -0.08871925, -0.020971255, -0.020866254, 0.0138719585, -0.025082605, -0.011927086, -0.08691062, -0.0016542093, -0.030756276, 0.0013511636, 0.031653255, -0.023238717, 0.009803514, 0.058562316, 0.03224275, 0.016229223, 0.004430871, -0.002444545, -0.0071902503, -0.021366013, 0.07110779, 0.0029732068, 0.039349906, -0.016295826, 0.017026054, 0.03310873, 0.06870778, 0.018130831, 0.044003554, 0.050180692, -0.019677851, -0.015239404, -0.04530823, 0.036219813, -0.040898427, 0.021361781, 0.03400484, -0.03696138, -0.05319752, -0.028767588, 0.009439273, 0.03932824, 0.031212052, -0.05038337, -0.025185438, -0.006968346, -0.081043534, -0.015748734, -0.024695288, 0.10305755, 0.115118094, 0.0019199091, -0.038282182, -0.019876592, 0.013305625, 0.012314904, 0.016167054, 0.04431815, -0.03495808, -0.044661418, -0.029251786, -0.03726952, -0.00812673, -0.025115507, 0.031001324, 0.010588441, -0.010355482, -0.024939526, 0.015188652, -0.028307542, 0.025104072, 0.013758904, -0.0019648238, -0.009018543, 0.044333506, 0.02479767, 0.0018659829, 0.009923103, 0.019993756, 0.058081273, 0.10239242, -0.0023250065, -0.054121777, -0.051076636, -0.018378448, -0.03837193, -0.004363173, -0.037721552, -0.0318413, 0.051314525, -0.048346646, 0.00022276386, -0.01773408, -0.005961858, -0.010355584, -0.011996819, -0.048648115, -0.02293305, -0.060785502, 0.00027806172, -0.022451442, 0.03313654, 0.010847122, 0.02598899, 0.001236598, -0.06555969, -0.09200626, 0.02984542, 0.00720326, -0.03140232, 0.03199718, -0.014734642, -0.04722494, 0.054570504, -0.020268546, 0.003649515, -0.03027955, 0.018078517, -0.03088906, 0.014400012, -0.0038899845, -0.045594193, -0.09202651, 0.061400022, 0.047692783, 0.031516343, 0.01406766, 0.03250395, 0.006993266, 0.04583275, 0.0020131816, 0.0016061437, 0.0025002635, 0.026613824, 0.056960028, -0.048254684, 0.008107498, -0.047696095, 0.082532726, -0.027215656, -0.01794838, -0.046958312, 0.012859332, 0.005091963, 0.07328533, -0.046167657, -0.023752196, 0.020539328, -0.011616086, -0.09089735, -0.008570376, -0.055527106, -0.027467536, 0.037330512, 0.054577086, -0.036982454, -0.013257806, 0.069859736, -0.015222779, -0.00659435, -0.006842811, 0.020837268, 0.013001324, 0.020819267, 0.03152947, 0.016342366, -0.009157816, -0.010520147, -0.041954428, -0.039237365, -0.025126971, 0.045642868, -0.030171525, 0.036460247, 0.036612183, 0.046737645, 0.025137354, -0.031831183, -0.056197383, 0.021849338, 0.012317541, 0.050915267, -0.08007102, -0.06678782, 0.046026066, 0.022396725, -0.021663098, 0.06439566, 0.023864435, 0.026057797, 0.011597244, 0.025631072, -0.0048612207, -0.021951197, 0.03448444, 0.0071639046, 0.024662085, 0.018753998, -0.002417165, 0.041585814, -0.0060322816, 0.015575256, -0.04059841, 0.015714826, 0.040173363, 0.014821396, -0.0034446984, -0.0029770571, -0.075076014, 0.005557403, 0.00060109404, -0.003911703, -0.040796407, -0.033627562, -0.047208138, -0.018016925, -0.026852349, -0.0373488, 0.0605258, -0.025880512, -0.01052829, 0.012259683, -0.0053954795, -0.015769556, 0.056134254, 0.0071108397, -0.00824803, -0.006440984, 0.044057876, -0.009218876, 0.015705474, 0.016541759, -0.0035609237, -0.020062113, 0.051191404, 0.025723618, -0.030999416, 0.004618518, -0.014716119, 0.07076846, -0.064642265, 0.022256715, 0.0092463335, 0.036305036, -0.010463852, 0.038654204, -0.01588252, -0.022990245, -0.017537137, 0.037659094, -0.023036705, -0.048266616, 0.003956258, -0.0121180015, 0.031011257, 0.016143195, 0.04419393, -0.0054162135, -0.040058266, 0.011381433, -0.009281949, 0.071001306, 0.037936945, 0.05291269, 0.020833863, -0.034895048, 0.04271516, 0.0103079965, -0.018824708, 0.035436355, 0.01602313, -0.020608954, 0.0071859863, -0.009394388, 0.022362985, 0.038566124, 0.035730228, -0.020531144, 0.016797474, 0.027946658, -0.010789321, -0.026648248, -0.06307522, -0.009629992, 0.022548202, -0.009189033, -0.06918382, -0.013918533, 0.0040873648, 0.007031697, 0.064954676, -0.06205548, 0.021123534, -0.05027247, -0.023741428, 0.043231282, 0.03207625, -0.012084327, -0.049619902, -0.06772099, 0.051015593, 0.042025488, 0.065947264, 0.013317762, 0.0051677823, 0.013965016, -0.010217254, 0.023420108, 0.059935264, 0.02453983, 0.008689194, 0.006879203, 0.009369535, -0.007789725, 0.019089261, -0.0072175707, 0.022768632, 0.04647449, -0.07134536, -0.010269389, 0.019616973, 0.016583454, 0.009550329, 0.028546674, 0.06308985, -0.016382894, 0.033727042, -0.023851069, -0.026208134, 0.048896633, -0.011904533, -0.015185777, -0.03800705, 0.061738763, -0.010338289, -0.012152098, -0.026937263, 0.03781803, 0.012003699, -0.053901106, -0.016776161, 0.020818107, -0.034263417, -0.020988988, -0.013301956, 0.030761128, -0.0012601428, -0.05051893, 0.08465723, -0.10129635, 0.0017734921, -0.023917872, 0.057791397, -0.0667126, -0.014889712, 0.05728102, -0.08842598, -0.06779462, 0.0005633301, -0.03430019, 0.018209133, 0.036964152, 0.010470049, -0.009976732, 0.04197204, 0.0009169995, -0.0038381016, 0.012892934, 0.01832588, 0.022410579, -0.022509921, -0.018443123, 0.045869492, 0.036394686, 0.016641349, 0.067166984, 0.028079879, 0.05206026, -0.014642577, -0.0076572737, -0.034989983, -0.008322915, 0.06172295, 0.008632344, -0.0617255, 0.001721543, -0.03104919, 0.019130675, -0.0161809, -0.041684616, -0.05057296, -0.04829269, 0.05429672, 0.05944545, -0.01514068, -0.008723231, 0.017578002, -0.022098001, -0.016352324, -0.06503355, 0.04953305, -0.02487464, -0.0140493, -0.009002907, 0.0013545996, -0.016685689, -0.07478748, 0.017966162, 0.0155186625, -0.013045484, -0.0020876725, 0.06019497, -0.008544122, 0.054617383, 0.051228356, 0.060456205, -0.038354095, 0.0006978016, 0.011288573, 0.021003507, -0.052838072, 0.015217934, 0.040906634, -0.015685424, 0.0015775413, 0.0006277185, -0.0060795764, 0.044127278, 0.013944083, 0.0004918051, -0.057919152, 0.029451393, -0.005954759, -0.022800524, -0.024303772, -0.014283868, 0.0020288615, -0.0021057602, 0.033661783, -0.009967778, -0.04296239, 0.03293138, -0.021013118, -0.031292513, 0.010711455, 0.011080964, -0.00023833399, -0.0481294, 0.014756244, -0.048511215, -0.04452853, 0.058841016, 0.002582829, 0.029197194, 0.049019445, -0.022099573, 0.017221961, -0.07145922, -0.012408242, -0.019452425, 0.035544105, -0.03819414, -3.6153324e-05, -0.046127137, -0.011140634, 0.05640068, -0.041270472, -0.007525153, 0.056558184, -0.009179792, -0.0045695268, 0.0002556373, -0.061987255, 0.03149116, 0.0029117134, 0.030882632, 0.05588398, -0.066327624, 0.045309335, 0.0029156634, 0.036234614, -0.034437027, 0.036717962, -0.03449664, -0.010246003, -0.029159354, -0.013103574, -0.03871609, -0.029319266, -0.023360675, -0.012083755, 0.019636232, 0.010489656, -0.0134755485, -0.01686802, 0.027727155, 0.06138075, -0.028685033, 0.0046409937, -0.024997437, 0.015395906, -0.024750592, -0.04766494, 0.019092703, 0.026444992, 0.03597224, 0.043327603, -0.04047791, 0.03344844, 0.01289, -0.026627572, -0.065885566, 0.02606303, 0.017243091, -0.03803596, 0.003950568, -0.039279077, 0.023410205, -0.026938664, 0.044062823, -0.051604394, 0.026584763, 0.037157908, 0.04160245, -0.044873003, 0.0043805162, 0.009250785, 0.024051309, 0.09329652, -0.055982664, 0.031726938, -0.07727841, 0.018317811, -0.032031126, -0.0066636275, -0.019525267, -0.009909906, 0.03355338, 0.0011606788, -0.01113978, 0.030754209, -0.055941354, 0.04289227, -0.048970845, 0.034253024, 0.057122476, 0.019041706, 0.035349067, 0.010522836, 0.021811087, 0.010802027, 0.050152812, 0.044296965, 0.0044815685, -0.006566363, -0.057002295, 0.069317, 0.011808992, -0.010362111, -0.07710703, 0.0131479185, -0.032750964, 0.057786267, 0.002693402, -0.0041872207, -0.0015806084, 0.058223702, 0.00879664, 0.0070114965, -0.014897052, -0.008546366, -0.030580036, -0.009070691, 0.015459981, 0.0022976329, -0.015519047, 0.01333063, 0.032223176, -0.014036508, -0.034131937, -0.05774, -0.030021762, -0.023093773, -0.053609528, 0.027386634, 0.029606128, -0.025475167, 0.06386062, -0.016438145, 0.024864294, -0.045554053, 0.018567791, 0.007373975, 0.008378802, 0.051896732, -0.014426159, 0.008644023, -0.08181445, -0.0065836105, 0.059793927, -0.043817222 ] }, { "values": [ -0.022313977, -0.027350087, -0.06438148, -0.057679184, -0.003638858, 0.05649718, -0.014768458, 0.037312098, -0.0041763526, 0.0029822905, 0.023659186, 0.03002767, 0.017161552, 0.0030514938, -0.010935742, -0.056477398, -0.014905635, -0.020854065, -0.080227725, -0.066914275, 0.026474634, 0.02454591, -0.031885415, -0.011701089, -0.01341107, 0.028028162, 0.027327409, -0.024664255, 0.015196263, -0.022870593, 0.024718143, 0.025334608, -0.0017382724, -0.0044109086, 0.018029049, 0.029434955, -0.03110988, 0.0019290859, 0.04620141, -0.057215653, -0.047681354, 0.013020974, 0.005682366, 0.026741102, -0.017917603, 0.043550596, 0.028353779, 0.0019291017, -0.021004956, 0.031013899, -0.014661853, 0.01718925, -0.021827783, -0.044794217, -0.025478015, -0.03514097, -0.039547566, -0.016155783, 0.064663254, 0.0076163798, 0.0022014112, -0.020270081, 0.024563905, -0.017494177, -0.0040383763, -0.01477168, -0.04325279, -0.016323458, -0.018375691, 0.043443635, -0.04480762, 0.032209698, -0.03999977, 0.028189434, 0.03146577, -0.0027494002, 0.010205926, -0.009886597, -0.03881313, 0.06282004, -0.0056551513, -0.0019414651, 0.068540074, 0.007991496, 0.0062871543, -0.02426271, 0.035663296, 0.0024425278, -0.014281471, 0.036461823, 0.02372639, -0.030058583, -0.0004450583, -0.012096289, 0.05941062, 0.0046864743, -0.04140486, -0.08888241, 0.018044226, 0.05386336, -0.062264815, 0.0030594994, -0.00817414, -0.009136652, 0.06465915, 0.032566544, -0.023102704, -0.014741954, -0.037546378, -0.011002947, -0.028674774, -0.050796304, -0.005027119, 0.011150807, -0.00958233, -0.06182504, 0.032920316, 0.02032967, -0.01475135, -0.03695279, 0.008185982, 0.009735907, 0.012955336, 0.08017181, -0.007039712, 0.036002733, 0.029648453, 0.038012158, -0.03742292, -0.026783371, 0.08593353, -0.09600081, 0.04494226, -0.01288043, -0.033672825, -0.018907286, 0.06798807, 0.028587794, -0.0018503215, -0.0008683223, 0.0051789945, 0.009372664, -0.030174522, 0.032404415, 0.016125316, -0.013079071, -0.021643167, -0.03253587, -0.017357092, 0.028824273, -0.1007866, -0.0106425565, 0.021023637, -0.016014045, -0.034145243, 0.00612277, 0.079681166, -0.03528086, 0.08608211, -0.08782275, 0.009533833, -0.017598467, 0.0017094029, 0.030769916, -0.07270962, 0.0062787165, 0.043061268, -0.08544808, -0.035592966, -0.028594662, -0.0031918145, -0.04516117, -0.044615813, -0.07420963, -0.03282165, -0.031745452, -0.018972807, 0.014372215, -0.03170345, 0.018185832, 0.061037995, 0.07262778, 0.017498357, 0.00037341318, 0.0030767983, 0.0053575574, 0.013048494, 0.062254407, 0.00028999557, 0.04882337, -0.026959706, 0.041943125, 0.03379443, 0.06719023, 0.0037322713, 0.04254774, 0.05249464, -0.04273515, -0.037326187, -0.03278757, 0.01926755, -0.004857733, -0.0010997684, 0.035677012, -0.038526926, -0.051974144, 0.0015067675, 0.006131226, 0.055708352, 0.013848346, -0.03911739, -0.017376699, -0.0074821752, -0.065691486, -0.023374557, -0.019517094, 0.11214475, 0.09301867, 0.035226375, -0.054891344, -0.038003374, 0.018419843, 0.020101776, 0.032428134, 0.055456962, -0.03291163, -0.0332432, -0.014712198, -0.035157133, -0.036050864, -0.016951935, 0.02858972, -0.008449218, 0.000223716, -0.016441474, 0.016542785, -0.010988712, 0.036951035, -0.008981442, 0.0111398455, 0.01749029, 0.033555396, 0.021541044, -0.0020197202, 0.006806741, 0.036610927, 0.040873338, 0.059596732, 0.010892067, -0.0763052, -0.030515892, -0.039000977, -0.0345013, -0.004915231, -0.035882436, -0.011098318, 0.0505825, -0.040300127, -0.0035208736, 0.012630556, 0.0017467017, -0.0091153, -0.013107938, -0.029439429, -0.02066671, -0.023035966, -0.0025357893, -0.014571551, 0.0026882894, -0.012663041, 0.007509228, 0.009793775, -0.077205166, -0.066072494, 0.020438798, 0.013356565, -0.01769476, 0.022322342, -0.027364342, -0.039706424, 0.06400189, -0.017968731, 0.019144539, -0.033238363, 0.01114252, -0.026916714, -0.004047549, 0.012429756, -0.04572573, -0.089246325, 0.037877496, 0.05513026, 0.03179991, 0.005657365, 0.0466095, -0.00033769503, 0.047646526, 0.0010978114, -0.022695437, -0.0025686398, 0.02022163, 0.06501354, -0.036448516, 0.020491036, -0.03794009, 0.08044804, -0.026311593, -0.011080476, -0.03583623, -0.011321355, 0.0054725343, 0.07242383, -0.061018255, -0.042057876, 0.0059083593, -0.02745266, -0.08943554, -0.017985208, -0.053470094, -0.032804884, 0.013201947, 0.041325405, -0.02728303, 0.0010188604, 0.05616553, -0.01277057, 0.0021246015, 0.016315455, 0.016122019, 0.027639601, 0.01848534, 0.023698049, 0.0068289996, 0.0036861978, 0.01836902, -0.014797481, -0.044839125, -0.024061624, 0.038620315, -0.0325902, 0.058048572, 0.023108363, 0.051791385, 0.057288278, -0.0074580577, -0.053136796, 0.035368565, 0.0034464826, 0.0394406, -0.106654644, -0.04924562, 0.06048617, 0.009929619, -0.03383652, 0.048917018, 0.019768398, 0.014318582, 0.00999838, -0.001746883, 0.011337805, -0.016934218, 0.032421373, 0.0019188973, 0.030461133, 0.03951371, 0.015633369, 0.01999942, 0.0011223883, 0.012950875, -0.018256875, 0.038674004, 0.04618977, 0.009700095, -0.010794411, 0.010911944, -0.049782805, 0.013561108, -0.019165644, 0.01886444, -0.040249303, -0.015829697, -0.040405095, -0.01693029, -0.023714136, -0.04345983, 0.053196058, -0.03036965, -0.007360369, 0.004708534, 0.0039386586, -0.006491238, 0.054303296, 0.019557985, 0.00067902927, -0.0069586467, 0.071819164, 0.0052319295, 0.023195809, 0.011111189, 0.009663035, -0.023634095, 0.039581154, 0.037386972, -0.04695806, -0.0047827824, -0.0214121, 0.07189785, -0.045670986, 0.037763737, -0.009535278, 0.05980957, -0.019624854, 0.03369809, -0.00936171, -0.031040302, -0.0040515033, 0.03916397, -0.04424414, -0.053666692, 0.0060068965, -0.029639019, 0.02210512, -0.0016381994, 0.030271925, -0.01649912, -0.037049368, 0.0028799025, -0.012572501, 0.0642102, 0.032121148, 0.041646324, 0.013478317, -0.030394256, 0.03173739, 0.0005483753, -0.024788871, 0.02753798, 0.014606446, -0.036308136, 0.019176496, -0.017840948, 0.025476903, 0.038372472, 0.037273318, -0.01918858, 0.0055755638, 0.013525731, -0.029705202, -0.034247905, -0.06811392, -0.03312367, 0.02878279, 0.0019161347, -0.06258837, -0.033098515, 0.0036559629, 0.018322596, 0.06126083, -0.047756962, 0.04810706, -0.06273711, -0.01310108, 0.032813024, 0.03739457, -0.03694943, -0.0440153, -0.054083053, 0.04970289, 0.02797805, 0.072460085, 0.023413876, 0.0038155778, 0.01948407, -0.026111988, 0.008554067, 0.051451445, 0.014613878, 0.023835411, -0.0017687689, 0.0050037373, -0.006762017, 0.017474333, 0.01279535, 0.0072996537, 0.048739504, -0.070172265, 0.005948942, 0.051421337, 0.0369901, 0.017890574, 0.052726883, 0.058953784, 0.0053159725, 0.030310778, -0.042734135, -0.020055562, 0.05754898, -0.009278485, -0.0019579595, -0.0039920537, 0.061384503, -0.00902699, -0.0011413534, -0.051839896, 0.025436103, 0.042515934, -0.051457696, -0.02120289, 0.019061022, -0.043002196, -0.012452823, -0.011242678, 0.01011311, 0.0033678685, -0.041843377, 0.072208494, -0.096181326, -0.00095716777, 0.0048722634, 0.048708953, -0.018675817, -0.020194195, 0.045171246, -0.07658554, -0.06284452, 0.020011473, -0.02833235, 0.02378559, 0.056162838, 0.0017669076, -0.016604919, 0.024897005, -0.005591098, -0.0014515376, 0.018880196, 0.026920924, 0.035255183, -0.014980801, -0.02877197, 0.052452456, 0.032303467, 0.04991434, 0.04544579, 0.026319504, 0.05864938, -0.0022855185, -0.006874703, -0.047660813, -0.0079734605, 0.063097686, -0.010055549, -0.036711387, -0.0022561904, -0.023834426, 0.02396293, -0.017082687, -0.057669673, -0.052220907, -0.047463223, 0.04434439, 0.05816631, -0.028485391, -0.010424003, -0.006684692, -0.0008895839, -0.017820599, -0.076358795, 0.035792213, 0.008208814, -0.00990867, -0.015102219, 0.0037280305, -0.02151731, -0.045932066, 0.013240175, 0.016470123, -0.017484909, -0.015821982, 0.049314342, -0.0094722, 0.051324062, 0.050033327, 0.060482252, -0.027160278, 0.0125507675, 0.008665939, 0.04446503, -0.036301173, 0.019271214, 0.054100238, -0.013459808, 0.016642673, 0.008152496, -0.0015470351, 0.041197065, -0.020058233, -0.00663761, -0.058105834, 0.058310196, -0.01362435, -0.026264224, 0.00607362, -0.014800452, 0.035422593, -0.016091961, 0.015239487, -0.011088865, -0.046567425, 0.020943437, -0.033922628, -0.046543904, 0.014047006, -0.025456643, 0.020235064, -0.03996275, -0.0022666494, -0.02774604, -0.03572206, 0.042290587, 0.01040651, 0.009266759, 0.041149076, -0.037239555, 0.022727208, -0.09187869, -0.0017955129, -0.019019805, 0.025095215, -0.04328726, -0.009359419, -0.062238127, 0.0042137075, 0.05074914, -0.03961498, -0.010302008, 0.061725423, -0.009833112, -0.01139769, -0.030513369, -0.059481896, 0.008179291, -0.005002217, 0.039966654, 0.04542837, -0.08712479, 0.026085503, 0.010349139, 0.060390886, -0.020799888, 0.047054302, -0.019204162, 0.026064115, -0.022842063, -0.010752527, -0.05956151, -0.0100857485, -0.015007043, -0.010226524, 0.020513741, -0.028720742, -0.018450772, -0.030661782, 0.01664899, 0.043911092, -0.041759893, 0.023824163, -0.008767668, 0.011205067, -0.037836302, -0.025849923, 0.031230837, 0.0066293534, 0.0048345155, 0.040342655, -0.012718391, 0.033428807, 0.011913378, -0.037206452, -0.052918684, 0.028540686, 0.02258255, -0.0512986, 0.011776349, -0.048887424, 0.013143975, -0.0155544905, 0.05787284, -0.04737331, 0.04812812, 0.03412545, 0.019875064, -0.059970524, 0.014921597, 0.030851573, 0.03455072, 0.09343833, -0.051721398, 0.009735895, -0.06794052, 0.02200101, -0.032260653, -0.012076669, 0.0034070937, -0.042810246, 0.029529404, -0.009115874, 0.0027256361, 0.02928041, -0.050124317, 0.0500302, -0.036190752, 0.051741477, 0.07906583, 0.018062973, 0.030242933, 0.0065957406, 0.031861782, -0.016076501, 0.03971221, 0.024946656, -0.009322359, -0.015950654, -0.07299133, 0.09217992, 0.030759698, -0.028374523, -0.051357247, 0.016986433, -0.039337043, 0.030209627, 0.0022641292, -0.010524878, -0.020571616, 0.08091621, 0.011657337, 0.015029769, 0.008469411, -0.03082155, -0.048350535, -0.027602118, 0.012316152, 0.013793301, -0.037797727, 0.003366146, 0.030055193, -0.02981126, -0.018906726, -0.057551954, -0.04997574, -0.04224166, -0.025089588, 0.026139105, 0.04546795, -0.015527614, 0.06247753, 0.0041055246, 0.06416746, -0.04356208, 0.032919522, -0.0048800856, 0.0050567365, 0.043852318, 0.00034010143, 0.006232713, -0.079161644, -0.005048126, 0.0637079, -0.045924794 ] }, { "values": [ -0.0022338708, -0.038814742, -0.05430492, -0.063041836, 0.0054076933, 0.019012008, -0.022445098, 0.045542948, 0.00089252763, 0.0051895375, 0.026158012, 0.041853417, 0.015473519, 0.008167242, -0.04227508, -0.028373003, 0.015921509, -0.048531085, -0.043531056, -0.019168682, 0.013138686, 0.018897478, -0.027175246, -0.034701306, 0.0041469373, 0.05057839, 0.022365164, -0.04647085, 0.01927197, -0.040771797, 0.03199382, 0.0021735604, -0.027132796, 0.00552828, 0.024972549, 0.016075168, 0.0063810525, 0.0070047253, 0.03835129, -0.03779682, -0.037649993, -0.0021081541, -0.013461122, 0.010892598, -0.04889717, 0.033043787, -0.00013665474, -0.003157995, -0.019478248, 0.036483176, 0.0066951793, 0.021130372, -0.011506229, 0.005018696, -0.010993898, 0.00028745615, -0.037056427, -0.03261342, 0.080282874, 0.020930052, 0.013203602, -0.011352354, 0.014381491, -0.01819764, -0.006403056, -0.011030369, -0.0365258, -0.05560977, -0.047507122, 0.029153813, -0.0664818, 0.03527707, -0.03813204, 0.022373073, 0.021809356, -0.024844745, 0.0035137911, -0.012886136, -0.018010342, 0.05201659, -0.007948835, -0.015940454, 0.08437065, 0.045500018, 0.035396766, 0.01250674, 0.007032109, -0.012313318, -0.030406864, 0.0064051133, 0.040851146, -0.0514451, -0.028685711, -0.025527053, 0.054583862, -0.060009968, -0.023787336, -0.058989327, -0.01315755, 0.06088574, -0.03298878, -0.024043087, -0.04082625, -0.013167153, 0.071892284, 0.06746164, -0.005174705, -0.03819505, 0.01683894, 0.0012367397, -0.045071162, -0.07755467, -0.029640045, 0.029541004, 0.009828233, -0.05625366, 0.06456071, -0.00018612761, -0.038813777, -0.04345928, 0.01618679, -0.0042589293, 0.019898051, 0.060283512, -0.015621108, 0.014316347, 0.0582004, -0.012959553, -0.053434543, -0.049463853, 0.054069187, -0.10834462, 0.006937417, 0.013493384, -0.052249394, -0.023521157, 0.042524926, 0.02387953, -0.045489058, -0.0021367676, 0.0022033278, -0.023346703, -0.039322853, 0.017200144, 0.02213328, -0.018285936, 0.0143052805, -0.008257308, -0.025384836, 0.020384796, -0.087555446, -0.010138167, 0.0028719918, -0.02689984, -0.017489733, -0.0031913477, 0.08822293, -0.051003836, 0.070360124, -0.06752992, 0.0058954395, -0.034126814, 0.0071499287, 0.027451765, -0.059117764, 0.024169853, 0.062167402, -0.06327532, -0.053388838, -0.03340971, -0.014564542, -0.052210197, -0.040120423, -0.07812662, -0.048329704, 0.00501369, -0.05237561, -0.012740275, -0.06174141, 0.010448212, 0.048569642, 0.056222286, 0.0006210635, -0.0006271409, -0.03194819, -0.0012282965, -0.004511311, 0.07740736, -0.008188854, 0.045617115, -0.051045224, 0.020853296, 0.029588992, 0.03731951, 0.041034818, 0.035231277, 0.06967254, -0.043740023, -0.041397903, -0.02447021, 0.01366476, 0.050582457, -0.025458027, 0.022648172, -0.041979186, -0.0506074, -0.0069526723, -0.023808472, 0.083515726, -0.0030390196, -0.037443794, 0.028487144, -0.018746424, -0.065852374, -0.038282033, -0.03814431, 0.08334144, 0.049046203, 0.03247352, -0.056380775, -0.03174436, 0.00034705308, 0.029627472, -0.008937306, 0.08992817, 0.014411318, -0.028469073, 0.008565084, -0.01079178, -0.031240473, -0.037287634, 0.020740282, 0.0049204347, -0.016956981, 0.026961489, 0.039690465, 0.028651878, 0.015472168, -0.026451949, 0.026754528, 0.0066277506, 0.03976714, 0.021894587, -0.021759719, -0.00024162717, 0.035496674, 0.07375377, 0.045198753, -0.039512996, -0.035164215, -0.027114466, -0.047916308, -0.047542762, -0.018037004, -0.04664396, -0.01755528, 0.052899294, -0.057825364, -0.000310178, 0.04132463, 0.012621392, -0.010956454, -0.024811825, -0.055048108, -0.02845595, -0.058119684, -0.034362383, -0.024562243, 0.03443037, -0.014378753, 0.008118202, 0.018577524, -0.10678, -0.039499804, 0.03675154, 0.038758755, -0.0060169706, 0.016997786, -0.045269046, -0.05583557, 0.078320414, -0.012559509, -0.01665347, -0.0576062, -0.016635103, -0.033317395, 0.007871385, 0.033223968, -0.03555915, -0.061688807, 0.035442185, 0.032228462, 0.046229128, 0.021555668, 0.06277037, -0.012978919, 0.027388858, -0.00025232145, -0.01524029, -0.03216906, -0.0127544375, 0.06492721, 0.0018300932, 0.032830026, -0.008277642, 0.047697634, -0.018881805, -0.030739853, -0.012890651, -0.008144657, -0.013710162, 0.054663315, -0.05557383, -0.03561901, 0.01619978, -0.014809025, -0.084050946, -0.0053842776, -0.040277146, -0.025589231, -0.0048418613, 0.0487015, -0.016706016, -0.011819783, 0.03424131, -0.004682926, 0.0057618846, -0.003993427, 0.03131029, 0.0067604813, 0.010362581, 0.044911347, 0.013658684, 0.013960553, 0.0040623117, 0.0003818213, -0.04772269, 0.0024175437, 0.026434043, -0.010758543, 0.05191873, 0.014869501, 0.029232116, 0.03698786, 0.01581876, -0.046981722, 0.022762252, -0.00851042, 0.018912366, -0.07693648, -0.037217885, 0.05644687, -0.025838222, -0.01739756, 0.04583313, 0.052014206, 0.023347542, 0.06335946, -0.020198666, 0.021199564, -0.026341613, 0.007333883, 0.00370696, 0.02756627, 0.0067653386, 0.011377119, 0.008656262, 0.024993824, -0.02777437, -0.018937677, 0.052172724, 0.043069813, 0.021837248, 0.012562951, 0.026936257, -0.06266609, -0.009268453, -0.02366321, 0.0018999007, -0.025326688, -0.019451765, -0.023952264, -0.008952749, -0.022149837, -0.03985942, 0.04852374, -0.037595622, -0.013510278, 0.005219421, 0.035912603, -0.014965371, 0.034578644, -0.015477694, 0.010642255, 0.016770553, 0.05623869, 0.014527858, 0.0075638015, -0.024121154, -0.023863385, -0.034899816, 0.015720654, 0.05342772, -0.047844432, 0.022140108, -0.019491144, 0.07092587, -0.00069788605, 0.025955198, -0.020825358, 0.05114923, -0.02620512, 0.043977432, 0.01740056, -3.1650816e-05, 0.04968302, 0.0406412, -0.07268242, -0.036908317, 0.02578626, 0.023201898, 0.015570333, -0.024442174, 0.041484457, -0.004272032, -0.05591442, 0.0019877972, 0.018712798, 0.030091818, 0.027135564, 0.0126328925, 9.5603784e-05, -0.010385928, 0.009466345, -0.04170112, -0.018443143, 0.024382563, 0.008517128, -0.008401752, -0.011692202, -0.021979474, 0.015898403, 0.025918577, 0.06902981, -0.027605671, 0.015502008, 0.006243749, -0.02803037, -0.03565975, -0.071174145, -0.019987838, 0.03865697, 0.03171906, -0.07919585, -0.007162573, -0.0063147694, 0.01888917, 0.061542094, -0.017058928, 0.0064412183, -0.056580618, -0.008199113, 0.040446807, 0.038439345, -0.03470936, -0.021514345, -0.045763455, 0.01460191, 0.026484426, 0.05271039, 0.027225591, -0.011930641, 0.014341873, -0.0047786734, 0.0069138673, 0.03851893, 0.00805294, 0.023346804, 0.024177568, 0.01603032, 0.010608731, 0.024200276, -0.011138449, -0.0075893383, 0.015139627, -0.08279711, -0.027794475, 0.016266394, 0.027993249, 0.040051784, 0.032895707, 0.056661446, 0.020664386, 0.05104268, -0.042840883, -0.018025057, 0.06944167, -0.003126617, -0.015881961, -0.03664216, 0.07869344, -0.010545425, 0.005156527, -0.033416484, -0.02733896, 0.049391713, -0.07085206, -0.011935931, 0.027351223, -0.027183201, 0.009834233, 0.0027012432, 0.04532969, -0.033594046, -0.04772556, 0.075459376, -0.081376866, 0.013231504, -0.022082208, 0.03844104, -0.026501035, 0.00060010917, 0.057781506, -0.04788548, -0.0638262, 0.033577565, -0.047232587, 0.042331386, 0.06632207, -0.04521744, -0.022188112, 0.029304957, 0.062492497, 0.008313729, 0.03187119, 0.025159134, 0.015837857, 0.020866241, -0.045109004, 0.013853802, 0.013798537, 0.022941342, 0.03668293, 0.017905034, 0.04261835, -0.014457119, 0.01711244, -0.048885074, -0.019517137, 0.08832992, -0.034077458, -0.024571402, 0.013835993, -0.004218535, 0.0155268, -0.04228644, -0.039944608, -0.032801006, -0.04118106, 0.008659985, 0.06175556, -0.00946728, -0.007633339, 0.013003965, 0.011280326, 0.004272428, -0.076897226, 0.03202419, 0.017061297, -0.021731617, -0.02441426, 0.019197157, -0.034472533, -0.044146616, 0.050138656, 0.0018637162, -0.021079836, -0.004833413, 0.04620332, 0.019698566, 0.020156404, 0.0066156406, 0.05761476, -0.0291911, -0.041351482, 0.024318105, 0.04494271, -0.049535062, 0.004656686, 0.05195052, -0.027508697, -0.02417328, -0.0015014573, -0.007294388, 0.037686247, -0.035966292, -0.044833843, -0.021397142, 0.04252874, 0.016379576, -0.035845254, 0.008311861, -0.02304963, 0.012664626, -0.02383787, 0.020045707, -0.025116479, -0.052832656, -0.016442126, 0.017370611, -0.041419648, 0.012178264, -0.05165313, 0.010217238, -0.06074666, 0.03461168, -0.01896961, -0.0260781, 0.00865401, -0.004418291, -0.018261291, 0.063659035, 0.0021480909, -0.006532266, -0.09164764, 0.041593894, -0.038772203, 0.030545201, -0.0113477, -0.016126093, -0.06074708, 0.047389228, 0.032388583, -0.01978997, 0.0015711626, 0.04352278, -0.0021481118, -0.016194522, -0.030511279, -0.04754184, 0.030598778, -0.007479875, 0.037107237, 0.050878473, -0.069556534, 0.032127697, -0.014376796, 0.030736873, -0.0118705705, 0.047584187, -0.003545853, 0.041370094, -0.030238884, -0.023752015, -0.045675006, 0.0032918712, -0.038685054, 0.018791426, 0.023677938, -0.0062820325, -0.003047582, -0.048539817, 0.05134216, 0.03439075, -0.04855981, 0.043683466, 0.008524092, 0.027952066, -0.026004346, -0.009518237, 0.031422414, 0.0102770785, 0.013100175, 0.028745519, -0.026980132, 0.036589, 0.0022084906, -0.020021966, -0.06385351, 0.03771159, 0.01647417, -0.067909926, 5.9230493e-05, -0.039126355, 0.00019025778, 0.00022911902, 0.030567689, -0.062180836, 0.042978648, 0.02163708, -0.026441049, -0.047776192, -0.02685668, 0.02357355, 0.019102132, 0.045380235, -0.03275265, 0.036389958, -0.053354077, 0.04228801, -0.046947423, 0.010879868, -0.03198677, -0.053540774, 0.034536295, 0.024669044, 0.014603682, 0.0031624823, -0.062930465, 0.03542381, -0.05407414, 0.0342811, 0.09633307, 0.047732566, 0.012316157, -0.005243805, 0.022605823, -0.0026818598, 0.03609175, -0.02418902, -0.02323273, -0.023090517, -0.05825929, 0.08174834, 0.035350725, 0.007342512, -0.06377281, 0.019040937, -0.035030123, 0.076489136, 0.029202314, -0.027439667, -0.015512961, 0.08984711, 0.0039782873, 0.007720957, -0.017814888, -0.036647644, -0.033252902, -0.033486567, -0.009041138, -0.007820737, -0.034414686, 0.018197479, -0.0010434851, -0.0214058, -0.038629994, -0.04943633, -0.039128516, -0.020747364, 0.007817758, -0.010892657, 0.048227433, -0.020679066, 0.04418178, -0.02800588, 0.041135896, -0.030420402, 0.04126, -0.0031663368, 0.02206419, 0.014010112, 0.024085527, 0.01552981, -0.074075185, 0.021609794, 0.039967384, -0.047226105 ] }, { "values": [ -0.031914342, -0.033337113, -0.03604046, -0.056035843, -0.006251908, 0.041850504, -0.019694205, 0.02712277, -0.0101697035, 0.0148614915, 0.028046716, 0.023952665, 0.029301824, 0.0025253296, -0.023831598, -0.036180463, 0.03758586, -0.021833586, -0.06753526, -0.03494596, 0.029782338, 0.013038982, -0.035802603, -0.031168846, -0.012591996, 0.03801754, 0.031542763, -0.037836708, 0.006118455, -0.04098636, 0.033956468, 0.0038586278, -0.040577278, -0.024601957, 0.019338563, 0.033796683, -0.032614898, 0.002397126, 0.028635982, -0.04450999, -0.020658359, 0.021178894, -0.0052383803, 0.024776202, -0.031451143, 0.02537166, 0.00048758683, 0.04527899, -0.027185827, 0.038285755, -0.015895199, 0.0020567544, 0.005458828, -0.012866853, -0.0031425643, -0.043247104, -0.07059326, -0.007122598, 0.07449818, 0.012630848, 0.0046609337, 0.00023857229, -0.004244897, -0.021433016, -0.020163337, -0.002261979, -0.053156506, -0.04299882, -0.03510688, 0.05813459, -0.052578133, 0.02097242, -0.051456388, 0.024375372, 0.018257191, -0.029832074, 0.012115185, -0.015982877, -0.021157993, 0.05738595, -0.0014985307, -0.018597275, 0.070067205, 0.03598454, 0.026888825, -0.005616047, 0.03345256, -0.041626893, -0.04045314, 0.013382674, 0.04574212, -0.032324046, -0.025885874, -0.034646295, 0.056062743, -0.020283613, -0.024379551, -0.08728334, 0.0036798455, 0.07146697, -0.04883326, -0.021167982, -0.02036442, -0.010284883, 0.045222014, 0.045772012, -0.02740391, -0.012172397, -0.0011747851, -0.019528538, -0.054019187, -0.062301617, -0.025923068, 0.025261734, -0.006319137, -0.047969572, 0.047375783, -0.0016172696, 0.002884879, -0.036757372, 0.01749766, -0.024753986, 0.004188477, 0.07464777, 0.013236612, 0.0022743864, 0.039053492, 0.0214373, -0.05315356, -0.028749784, 0.09168506, -0.09125788, 0.019323213, -0.008825924, -0.041432165, -0.013264061, 0.07567233, 0.034843575, -0.050673246, -0.0031599824, -0.008823166, 0.0007247415, -0.033086568, 0.04655817, 0.0055364063, -0.022935968, 0.0037954485, -0.012778852, 0.0029790774, 0.026831, -0.091381654, -0.016384833, 0.019417996, -0.01707809, -0.025022702, 0.031244924, 0.09353875, -0.053235047, 0.04798367, -0.10521965, 0.021696609, -0.024874585, -0.020413594, 0.015590647, -0.071378626, -0.010408564, 0.030762909, -0.07706588, -0.050980415, -0.036350295, -0.011721603, -0.052042462, -0.026638346, -0.057636045, -0.04661735, 0.00372298, -0.015386092, -0.008100942, -0.06463367, 0.024857346, 0.022301558, 0.07791778, 0.027323587, 0.033313427, -0.015614692, -0.008809492, -0.0079460265, 0.035281144, -0.0022773389, 0.04940179, -0.04168933, -0.0025073239, 0.028255265, 0.05420687, 0.048108876, 0.049037922, 0.058652267, -0.04279827, -0.033821635, -0.03284713, 0.008321632, 0.03754904, -0.014753579, 0.024646627, -0.061187137, -0.027377415, -0.017857095, 0.0053713024, 0.06065878, 0.008903254, -0.03618158, 0.027612725, 0.009798648, -0.0688733, -0.03979187, -0.009234632, 0.09374729, 0.04735393, 0.040319435, -0.043968912, -0.03972321, -0.0070448746, 0.0132946065, 9.547929e-05, 0.060950533, 0.008263249, -0.026932226, -0.011210501, -0.019600905, -0.039025836, -0.02398588, 0.04010469, -0.0065221624, -0.012784197, 0.0062061506, 0.048142202, 0.015405036, 0.0144581245, -0.016239336, 0.02278924, -0.0034928457, 0.04436326, 0.024412489, -0.019569255, -0.0026192022, 0.048940297, 0.07412534, 0.04758887, -0.0105971685, -0.050484378, -0.03885109, -0.05355458, -0.060720015, -0.016037773, -0.043789756, -0.01504389, 0.03545989, -0.055814765, 0.0012490224, 0.045218993, 0.029462026, -0.003040308, -0.01870337, -0.031226048, -0.016735137, -0.032655492, 0.0115083065, 0.0015686109, 0.027315257, -0.015500197, 0.015505221, 0.017500909, -0.106287494, -0.037652854, 0.054936916, 0.018303258, -0.010340812, 0.030887768, -0.036998272, -0.05375208, 0.057142798, -0.022077734, -0.017081281, -0.042202584, -0.005133462, -0.03906548, 0.002540842, 0.048082728, -0.045089494, -0.05654056, 0.041572813, 0.040503908, 0.022786092, -0.012689028, 0.029695457, -0.0016388698, 0.04047703, -0.023938803, -0.003865144, -0.021733537, 0.012996611, 0.050519098, -0.02473609, 0.003107333, -0.028861944, 0.05768282, -0.03425414, -0.01767881, -0.0102563705, 0.007208326, -0.0037882507, 0.055462983, -0.057020884, -0.024833007, 0.010910262, -0.0034129198, -0.112180956, -0.010467106, -0.032995462, -0.023813186, 0.014125027, 0.032101456, -0.021704644, -0.017105507, 0.024618156, -0.015458071, -0.01697033, -0.0043735555, 0.018939778, 0.01609384, -0.0067484905, 0.04471251, 0.017623197, 0.026327256, -0.008883511, -0.001239611, -0.044170756, 0.0030350208, 0.02310582, -0.044906057, 0.036873415, 0.0031583728, 0.04664604, 0.060174394, 0.0034783387, -0.059533432, 0.02146057, -0.013201105, 0.026053913, -0.06839846, -0.034393683, 0.044766724, -0.009732823, -0.020539418, 0.047046624, 0.029068092, 0.027498761, 0.04251705, -0.0013094012, 0.022718387, -0.009261702, 0.020881373, -0.0002855244, 0.029317856, 0.047100347, 0.009464659, 0.0113167185, 0.014567199, 2.3272065e-05, -0.03674015, 0.049057197, 0.037983656, 0.024332954, 0.037242543, 0.011702146, -0.0713708, 0.003411375, -0.020131726, -0.0026815007, -0.03228604, -0.016521892, -0.031318344, 0.0024479856, -0.022239178, -0.050757226, 0.052384336, -0.0371793, -0.0040337774, 0.028179592, 0.026566429, -0.001680588, 0.05858078, -0.02573591, -0.006825518, 0.0061480324, 0.07960375, -0.0024171902, 0.0056224857, -0.025599673, 0.0027534, -0.03838965, -0.0073910938, 0.06961953, -0.033150397, 0.015399207, -0.038797233, 0.09282056, -0.023791304, 0.037429683, -0.039667986, 0.0605288, -0.021389669, 0.038175803, 0.03992979, -0.025300065, 0.025537787, 0.049310092, -0.04227284, -0.031118186, -0.008304988, 0.00030752766, 0.024884656, -0.010452345, 0.0153962765, -0.017325945, -0.0513258, -0.028342623, 0.0031911123, 0.046743926, 0.01986583, 0.009259951, 0.011038991, -0.023118133, 0.021627579, -0.048529908, -0.008535972, 0.025593052, 0.023274839, -0.030597117, -0.0052765463, -0.016444337, 0.035339456, 0.008595863, 0.0546358, -0.021993242, 0.016463028, 0.012059227, -0.012125588, -0.033199165, -0.06294807, -0.029903581, 0.01248033, 0.0061919587, -0.07240947, -0.033602916, 0.0014573522, 0.031652413, 0.08471212, -0.02577441, 0.029138135, -0.0674652, -0.0075431685, 0.047585346, 0.022266254, -0.031489994, -0.008868928, -0.065681495, 0.017944075, 0.0070560914, 0.06797896, 0.04522737, -0.0060307514, 0.04933359, -0.015338508, 0.009582334, 0.05855671, -0.011530025, 0.016248101, 0.021099756, 0.01649891, -0.012457695, 0.03336514, 0.0150743285, -0.0021222932, 0.047628794, -0.086299926, -0.0083946325, 0.031704426, 0.053993944, 0.009275323, 0.055243704, 0.06506724, -0.011640644, 0.0440255, -0.034985084, -0.025529789, 0.063852556, -0.019869113, -0.005586171, -0.030776324, 0.055641253, -0.019606583, -0.006525726, -0.0621911, 0.014190758, 0.034029506, -0.059532236, -0.008116686, 0.004065373, -0.036158655, -0.008361209, 0.014376396, 0.040381707, -0.03750697, -0.052612953, 0.061946265, -0.10406813, -0.011301768, -0.0011890382, 0.02900615, -0.00082596764, -0.008837952, 0.055113215, -0.06440056, -0.040900946, 0.019232448, -0.032088697, 0.044367652, 0.05450445, -0.01013498, -0.032817997, 0.011469891, 0.03263128, 0.018689336, 0.02623389, 0.018474227, 0.0076794587, 0.016650878, -0.044076737, 0.020175913, -0.0026389675, 0.04315679, 0.03292478, 0.018408041, 0.04992704, -0.018678786, 0.0066738795, -0.056431856, -0.029558903, 0.06455299, -0.013239324, -0.015663616, 0.0015183961, 0.0048855897, 0.03990993, -0.026565582, -0.037296966, -0.044743568, -0.058864612, 0.027247922, 0.050731566, -0.010822138, -0.0042317533, -0.00508422, 0.02309511, -0.01218211, -0.07787159, 0.04074304, 0.011903648, -0.03221906, -0.013026145, 0.015686702, -0.032907158, -0.04960806, 0.03934661, 0.010239092, -0.02173194, -0.0026625264, 0.039127193, -0.0036365646, 0.02902506, 0.009425904, 0.068160325, -0.028184474, -0.025001429, 0.014471483, 0.034262765, -0.049486116, 0.000118785, 0.041544817, -0.007578062, 0.013692185, 0.01220404, -0.00016342544, 0.048878744, -0.024613895, -0.017148731, -0.022971878, 0.054119892, 0.011723247, -0.03681632, 0.02545019, -0.034075387, 0.020552248, -0.030172326, 0.0017946782, -0.020388184, -0.035622798, -0.0015186936, -0.011222336, -0.034338053, 0.025337838, -0.019616634, 0.03177985, -0.048205014, 0.0029523226, -0.027385272, -0.01962144, -0.0021730475, -0.0038901994, -0.01463991, 0.051160567, -0.02596191, 0.0076936563, -0.0863278, 0.026396781, -0.036986567, 0.032483373, -0.03534758, -0.033545543, -0.030381106, 0.034095563, 0.04557158, -0.024837585, -0.0027726388, 0.039021857, 0.0023585907, -0.0018856492, -0.0151077, -0.051667586, 0.030605696, -0.0048520598, 0.046561733, 0.037195817, -0.07550642, 0.022020016, 0.0077624386, 0.039357126, 0.0059642643, 0.052252844, -0.009585535, 0.057404824, -0.021352462, -0.019702852, -0.051924974, -0.013108236, -0.0024935456, 0.021521097, 0.034583196, -0.014403246, 0.0073862807, -0.016657742, 0.036651045, 0.022916382, -0.039829906, 0.029892523, 0.012094574, 0.01284433, -0.020651037, 0.0016376857, 0.027548438, 0.008981215, 0.009198638, 0.06491481, -0.03687926, 0.02406863, 0.028532276, -0.014714305, -0.063172385, 0.039391603, 0.034132354, -0.046684302, 0.023258047, -0.054777388, -0.010927786, -0.014017308, 0.07619861, -0.07600255, 0.042136043, 0.009739901, -0.019780274, -0.067948125, -0.005296483, 0.014299618, 0.016132226, 0.051898386, -0.03003571, 0.030888295, -0.06261777, 0.04073941, -0.05433603, 0.00954151, -0.034662746, -0.052859697, 0.025211671, 0.023413993, 0.0012570916, -0.0018454074, -0.07394882, 0.028251225, -0.064557225, 0.039417762, 0.09358017, 0.019250385, 0.029757386, 0.01869387, 0.03416997, 0.009887352, 0.042070385, -0.008865014, -0.02380466, -0.04370477, -0.049390573, 0.07763586, 0.016157117, -0.008160728, -0.0469367, -0.008402322, -0.044290476, 0.046299506, 0.013191216, -0.018970923, -0.020905802, 0.10569155, 0.0070279124, 0.0020823702, -0.014336088, -0.017945027, -0.03770672, -0.039303865, 0.011845098, -0.0030095403, -0.027819606, 0.009778712, 0.020893248, -0.015606179, -0.027425768, -0.06558786, -0.04801208, -0.014586138, -0.0255186, 0.011086996, 0.06565929, -0.008514854, 0.013518654, -0.022809057, 0.047426198, -0.06411556, 0.04093126, -0.005835827, -0.014367581, 0.026083857, -0.011461791, 0.006497575, -0.091422014, 0.010188829, 0.068416625, -0.020538177 ] }, { "values": [ -0.034130752, -0.0087906, -0.034412794, -0.039016336, -0.004498039, 0.039093535, -0.0035575342, 0.030345032, -0.026888762, 0.0067492444, 0.013758771, 0.02189541, 0.033786763, -0.0068031005, -0.021112565, -0.052561272, 0.031035976, -0.014711567, -0.050108824, -0.052415177, 0.023852292, 0.0062921555, -0.01633285, -0.056537673, -0.043654162, 0.023284877, 0.039972626, -0.037555568, 0.013040088, -0.050511986, 0.033595495, 0.024179352, -0.046586227, -0.034607477, 0.032620154, 0.027219247, -0.016038729, -0.008222423, 0.05311746, -0.032694723, -0.020779978, 0.013958742, 0.004132762, 0.02577918, -0.035936043, 0.031186337, 0.01266617, 0.03000268, -0.049829397, 0.05891343, -0.0069313645, 0.024482071, 0.021690138, 0.0010974767, 0.008781514, -0.033366956, -0.072215624, -0.038868446, 0.047169358, 0.0046482, 0.0048487065, -0.0024648088, -0.004882235, -0.035281, -0.0351796, -0.011888013, -0.052656308, -0.057968255, -0.05047424, 0.047573514, -0.041153315, 0.02395166, -0.08538268, -0.017467378, 0.013632355, -0.014262047, 0.0016677877, 0.007800909, -0.030820424, 0.05275772, -0.017847838, -0.0509318, 0.096562706, 0.060985707, 0.030954389, 0.01454309, 0.011144288, -0.024704592, -0.031337466, 0.028676862, 0.052210256, -0.038381714, -0.036338832, -0.0016515391, 0.0455365, -0.0051447637, -0.023082497, -0.101811096, 0.01799958, 0.09541963, -0.028793516, -0.016278492, -0.015525871, 0.02196409, 0.04317841, 0.04160359, -0.029494267, -0.032977752, -0.0031108074, -0.023225483, -0.040639002, -0.045642447, -0.0050160424, 0.025755562, -0.009660836, -0.05786608, 0.06818285, -0.0071504028, 0.005218022, -0.029865816, 0.05810811, -0.031829704, -0.001546959, 0.06611641, 0.027555525, 0.010849477, 0.06410583, 0.023355708, -0.03909998, -0.049023386, 0.067103624, -0.09010418, 0.008930599, 0.012304405, -0.043215834, -0.041800156, 0.04025842, 0.046149194, -0.04833402, -0.012613564, 0.0032230772, 0.012801428, -0.015913581, 0.04862344, -0.001635409, -0.03881368, -0.004178333, -0.01094518, -0.028003348, 0.0234628, -0.09954122, -0.00037782162, 0.034988504, -0.02985602, -0.009047358, -0.004289043, 0.09714455, -0.018824933, 0.06278733, -0.097988814, 0.016244235, -0.01947226, -0.013694655, 0.015339328, -0.04196171, -0.020957721, 0.054463133, -0.07414207, -0.030651662, -0.028788067, 0.0041060005, -0.0396229, -0.0058678417, -0.07145958, -0.033336278, 0.0020460617, -0.031253383, 0.0056141866, -0.04911407, 0.020467203, 0.02338233, 0.047152422, 0.01371025, 0.025097353, -0.034757756, 0.010103777, -0.03001371, 0.06649246, -0.003839095, 0.04803765, -0.04310846, -0.017769383, 0.039930582, 0.06267703, 0.025523301, 0.039621495, 0.07029861, -0.020544356, -0.020286484, -0.034365267, 0.025815556, 0.012066479, -0.013065048, 0.0099280495, -0.05216594, -0.038772866, -0.026026985, -0.005336945, 0.032451, 0.004893632, -0.032769445, 0.03238014, -0.0071274354, -0.052164733, -0.038376555, -0.0020702637, 0.0764262, 0.06405414, 0.021472566, -0.05613585, -0.010339683, -0.00036639953, 0.029806538, -0.0124245575, 0.044075042, -0.020021208, -0.015097495, -0.029430088, -0.028658047, -0.019213038, -0.027930923, 0.016306499, 0.0027206289, -0.014741421, -0.020496072, 0.039759897, -0.010790701, 0.007404243, -0.010364292, 0.011632785, -0.001250764, 0.015104897, 0.031117855, -0.01022078, -0.0018950355, 0.051616184, 0.083152056, 0.0697186, -0.01042298, -0.03874823, -0.034589183, -0.05002101, -0.065101735, -0.023913438, -0.06661165, -0.019645747, 0.019791413, -0.056169476, -0.0015009879, 0.03149255, 0.009407136, -0.020021303, -0.027110588, -0.025056588, -0.015148066, -0.080353536, -0.003035049, -0.0055387127, 0.045638893, -0.005274199, 0.008171861, 0.016727693, -0.08561396, -0.045734633, 0.07627141, 0.012688795, 0.0058865747, 0.04100562, -0.032454293, -0.0402747, 0.046216268, -0.012810033, -0.021434879, -0.040616162, -0.016008733, -0.039742116, 0.01290279, 0.038651343, -0.05503716, -0.0742692, 0.045563046, 0.03352639, 0.047496065, -0.011268814, 0.023777127, -0.02157751, 0.03881991, 0.017467087, 0.007868023, -0.026900059, 0.02871661, 0.06288981, -0.023998281, 0.014967606, -0.043784935, 0.06533767, -0.042301457, -0.022761969, -0.037177376, 0.0015677674, 0.023528885, 0.07477715, -0.033736527, -0.0201145, 0.0019674916, 0.00059744023, -0.10621976, -0.0032801365, -0.03255519, -0.03245907, 0.01341375, 0.03229952, -0.031357694, -0.01478123, 0.025658634, -0.011843196, -0.01300153, -0.0024892653, 0.02632484, 0.01827244, 0.014637221, 0.04638964, 0.013465484, 0.0030288838, -0.010852295, -0.00092141563, -0.030539326, 0.00952702, 0.007708817, -0.037951052, 0.04734327, 0.015697422, 0.043698404, 0.060237013, -0.016131034, -0.0486977, 0.012869536, -0.0116185, 0.070473745, -0.050374005, -0.04477969, 0.05931104, -0.016162714, -0.019519737, 0.04081185, 0.009662559, 0.027663061, 0.048341777, 0.022758603, 0.013273019, -0.014506375, 0.025972402, -9.1779235e-05, 0.022347301, 0.011663586, 0.006818294, 0.021862548, -0.0006630724, 0.013500664, -0.04844575, 0.023321003, 0.04280773, 0.0145260515, 0.023581078, 0.0015839095, -0.08581629, -0.00074573443, -0.015662117, -0.0046420167, -0.02977112, -0.039414328, -0.04561603, -0.002135805, -0.028626364, -0.05560041, 0.051188953, -0.039117366, -0.0077923695, 0.01938908, 0.0108657265, -0.018617915, 0.059508022, -0.0059857774, 0.0010666832, -0.010268211, 0.061376847, 0.008719407, 0.015665442, -0.0062861643, -0.009998755, -0.04444878, 0.0067223767, 0.051596772, -0.02504068, 0.0020490584, -0.04917097, 0.06186772, -0.011694824, 0.0261866, -0.024740038, 0.029340236, -0.054011237, 0.035876434, 0.01427634, -0.01286381, 0.0062167314, 0.014869042, -0.05653278, -0.06164114, -0.033057887, -0.014066849, -0.014804783, -0.01729562, 0.034405347, -0.014657306, -0.06530161, -0.011142886, -0.021619525, 0.054139435, 0.026052656, 0.015921002, 0.023383338, -0.05565718, 0.01241861, -0.02084821, -0.00035699215, -0.0012726659, 0.0095536765, -0.03288296, 0.0016182278, -0.011319482, 0.020641156, 0.03515375, 0.058188383, -0.020203967, 0.020742254, 0.015661497, -0.021797987, -0.028485682, -0.075687215, -0.015955724, 0.023452198, -0.013095041, -0.08559082, -0.0075570815, -0.015449637, 0.028230237, 0.08208539, -0.016716862, 0.0051490534, -0.052320015, -0.0052382085, 0.040786423, 0.029082768, -0.036824174, -0.007653972, -0.03470504, 0.010986986, -0.009770977, 0.03608241, 0.03583418, -0.021625223, 0.037161153, -0.008167477, 0.03457547, 0.06800023, -0.016227636, 0.017844535, 0.0032565794, 0.02035469, -0.01263689, 0.030187195, 0.00037966817, -0.021712942, 0.036832523, -0.083579935, -0.016952528, 0.013505449, 0.047452006, 0.00019700041, 0.05393831, 0.043261006, -0.0038495047, 0.037964057, -0.028374951, -0.033252865, 0.05712782, -0.031841714, -0.015725186, -0.041155327, 0.05471573, -0.010803887, -0.026281439, -0.053685155, -0.007129454, 0.029761102, -0.03489633, -0.03178067, 0.04489371, -0.031921692, -0.022189898, -0.005946579, 0.036692098, -0.04357143, -0.053157624, 0.08182749, -0.07707202, 0.00059280597, -0.02314925, 0.04222505, -0.014267798, -0.02432407, 0.049614854, -0.087994576, -0.059920643, 0.0043205153, -0.009526886, 0.028285231, 0.053270873, -0.007834979, -0.016172841, 0.0022473724, 0.040415574, 0.01176408, 0.03047696, 0.02935036, 0.0095382705, 0.008782269, -0.053331956, 0.040077485, -0.00022051626, 0.023080137, 0.045424383, 0.024422418, 0.03546833, -0.0046744677, 0.013075769, -0.061643854, 0.0033792732, 0.07435132, -0.04797642, -0.027128365, -0.010853924, -0.0148280095, 0.012018216, -0.018923912, -0.010387839, -0.012509694, -0.055544812, 0.021001818, 0.049436998, -0.001252663, 0.00018321723, -0.011595536, -0.0044632964, -0.004760039, -0.094785005, 0.053114668, 0.015479957, -0.02754219, -0.01394977, 0.00079076696, -0.02391044, -0.06433744, 0.03725118, 0.00986416, -0.020658275, 0.00023010903, 0.04989496, 0.008834387, 0.027024886, 0.042795774, 0.061719783, -0.011366949, -0.00659112, 0.00095969957, 0.055539533, -0.03436553, 0.005309176, 0.01919121, 0.015695276, 0.022706721, 0.00919178, -0.010575497, 0.037064727, -0.0072920253, -0.016099975, -0.029609736, 0.06850338, 0.026823752, -0.04729459, 0.018252999, -0.03751898, 0.007031331, -0.009630255, 0.012562074, -0.020896452, -0.04352358, -0.015670609, -0.008358274, -0.055594705, 0.0075127752, -0.042420268, 0.024533479, -0.04479781, 0.0069039706, -0.03242768, -0.02362401, 0.00036002346, -0.02444344, -0.010045968, 0.04506212, -0.024930172, 0.004435193, -0.08305858, -0.003954077, -0.022494115, 0.039655052, -0.048726995, -0.022801315, -0.027411073, 0.01441757, 0.04925796, -0.026820892, -0.016226053, 0.044228625, -0.0027298648, -0.01607161, 0.018194458, -0.04588801, 0.024147285, 0.008598069, 0.068789184, 0.055406827, -0.076493666, 0.0105778305, 0.022894124, 0.028881734, -0.0034016361, 0.020017616, -0.020503538, 0.050194964, -0.010961525, -0.024119003, -0.033251133, -0.01597794, -0.029464198, 0.00968765, 0.021507962, -0.032195345, -0.0028023454, -0.013774199, 0.027005557, 0.036624897, -0.030820537, 0.0058604083, -0.007915946, 0.017258035, -0.029324891, -0.02303397, 0.0018260411, 0.006195493, 0.011121959, 0.051389787, -0.02654441, 0.026698416, 0.015444052, -0.019575879, -0.053829663, 0.027352504, 0.024981849, -0.0442848, 0.006773509, -0.028657837, -0.021383945, -0.0122246025, 0.04394407, -0.07257184, 0.038691863, 0.006735747, -0.010984648, -0.05299817, -0.02709331, -0.005600933, 0.032820303, 0.08395717, -0.03703249, 0.033316683, -0.07461946, 0.022717185, -0.042373527, 0.010962606, -0.039859213, -0.045006264, 0.041561242, 0.028782377, -0.0021976747, 0.011817939, -0.070172146, 0.01587359, -0.06006569, 0.028739957, 0.07269201, 0.0010162102, 0.03578003, 0.011527481, 0.049381267, -0.017983494, 0.036921613, 0.012468594, -0.013784662, -0.036553346, -0.050403293, 0.07843019, 0.022894911, 0.012799997, -0.06509919, -0.006857615, -0.050256368, 0.039402485, -0.0020352502, -0.0020418132, -0.027928201, 0.08649731, 0.0046406654, 0.014046166, -0.009497333, -0.017083818, -0.032700818, -0.016790392, 0.020729372, -0.015174579, -0.05038429, 0.01595534, 0.03179012, -0.018801374, -0.039420534, -0.092023894, -0.053210024, 0.0028371552, -0.031063776, 0.022180663, 0.06674966, -0.006897726, 0.025994996, -0.045874447, 0.030687002, -0.03198796, 0.033063352, 0.0009900487, -0.006309078, 0.025733477, 0.0047643282, 0.017212896, -0.09255509, 0.013001215, 0.0691318, -0.034565683 ] }, { "values": [ -0.017159173, 0.005400194, -0.048063923, -0.03456064, 0.006545381, 0.040847458, -0.00083722867, 0.038438786, -0.012603599, 0.0024401385, 0.021398634, 0.018790884, 0.03164521, -0.0047604786, -0.04209158, -0.057865888, 0.035988946, -0.022122223, -0.062272917, -0.04906293, 0.02642295, 0.0066243326, -0.01907148, -0.049869787, -0.03855686, 0.016560227, 0.048855186, -0.023130583, 0.0073777004, -0.044534426, 0.015704727, 0.026832541, -0.035369255, -0.047357876, 0.027929837, 0.036157448, -0.03510562, 0.0061534317, 0.033306852, -0.042298622, -0.041658804, -0.0060821273, -0.020298632, 0.04230841, -0.042217027, 0.021263575, 0.019453108, 0.013915248, -0.04867126, 0.03377989, -0.013425904, 0.03253563, 0.0014193084, -0.014191581, -0.01503409, -0.043163348, -0.05316418, -0.02044159, 0.049388915, -0.0050895414, -0.009570852, 0.0017356765, -0.037813433, -0.029979637, -0.04677587, -0.0044576162, -0.06592581, -0.048899565, -0.036730397, 0.031164419, -0.05022745, 0.015462984, -0.064862415, -0.011865237, 0.025349503, -0.015896058, 0.02201583, 0.0037773405, -0.014848363, 0.06679117, 0.0017369987, -0.010752876, 0.06594917, 0.034680497, 0.013380479, 0.025243407, 0.03325827, -0.019243503, -0.027003918, 0.006795087, 0.03791373, -0.030584285, -0.046325833, -0.008949882, 0.04724646, 0.0061166002, -0.013765784, -0.10723428, -0.00830656, 0.104084045, -0.048205502, -0.015092777, -0.022499101, -0.010596636, 0.02469459, 0.049002968, -0.026390556, -0.022775898, -0.010219467, -0.014978685, -0.043927707, -0.03217833, 0.015881544, 0.024632333, 0.001564634, -0.0423599, 0.069608234, -0.032192923, -0.0055879317, -0.03256346, 0.04196073, -0.029308492, 0.005409882, 0.07649912, 0.023937896, 0.0054966374, 0.039767694, 0.03218759, -0.051220782, -0.038917262, 0.07582144, -0.11091652, 0.029256828, -0.01858201, -0.032523833, -0.023680355, 0.06313226, 0.0183294, -0.027930556, -0.00209888, 0.0014400781, 0.014610735, -0.051806144, 0.03270819, -0.011240063, -0.006015376, -0.022830905, -0.028423967, -0.018774569, 0.029233756, -0.06737873, -0.012182519, 0.03431437, -0.023203019, -0.021725336, 0.0056427727, 0.10278222, -0.01586276, 0.049268957, -0.089900404, 0.052555885, -0.021019103, -0.016430162, 0.016979527, -0.060817037, -0.0002756791, 0.066268, -0.06775172, -0.022547478, -0.009573148, -0.0206628, -0.06038373, -0.038750317, -0.066702075, -0.035411663, -0.01094418, -0.035964143, 0.006798397, -0.062279932, 0.0073789987, 0.037441008, 0.070996515, -0.0076974616, 0.03036988, -0.056915857, 0.026905775, -0.0109315, 0.03402349, 0.00234856, 0.045212895, -0.03310022, -0.01896928, 0.037959136, 0.067272045, 0.01354792, 0.02446271, 0.078333035, -0.04391922, -0.045622982, -0.018891366, 0.014734828, 0.037319813, -0.027793441, 0.030961862, -0.03953267, -0.016946191, -0.022514205, -0.010794793, 0.04555212, 0.0011439198, -0.04743709, 0.03857729, -0.0012074199, -0.037627324, -0.040027414, -0.0017429695, 0.09746478, 0.045089003, 0.03256754, -0.04672191, -0.03731033, -0.015107331, 0.016818877, -0.016569503, 0.055956088, 0.0004764868, -0.018226147, -0.014876453, -0.024175335, -0.017799016, -0.029952709, 0.02832719, 0.0064450344, -0.025687277, -0.023533184, 0.0301278, -0.010421003, 0.014754944, -0.0141327875, -0.0040185424, -0.003996234, 0.0026833885, 0.016988434, -0.0032206527, 0.008689983, 0.05125886, 0.0715836, 0.03191034, 0.0104961, -0.02280004, -0.029057747, -0.05931282, -0.06692888, -0.014027705, -0.06313772, -0.0048721507, 0.021686282, -0.060477346, 0.008032629, 0.031963527, 0.002613458, 0.01001071, -0.023392057, -0.043260295, -0.0030110904, -0.060294155, -0.020389443, -0.015067986, 0.028940624, -0.019419335, 0.0020119804, 0.023475926, -0.08514089, -0.048514504, 0.045601245, 0.0072079212, 0.008634489, 0.021562072, -0.03681469, -0.037191045, 0.044107366, -0.022767957, -0.007155816, -0.03885085, -0.022061115, -0.032939877, 0.0077345455, 0.039677642, -0.04707831, -0.08065194, 0.021148851, 0.032724474, 0.052637726, -0.02043502, 0.029444, -0.02019482, 0.04308992, 0.025507519, -0.034118533, -0.019255338, 0.034345075, 0.062120788, -0.039730478, 0.022362968, -0.03986, 0.061992835, -0.026056627, -0.016707543, -0.023578135, -0.0037526507, 0.006449819, 0.073451735, -0.050028913, -0.016217433, -0.00058312254, -0.0064352644, -0.10908338, -0.014990981, -0.05123184, -0.034008138, -0.0019742136, 0.021115761, -0.014556917, -0.01354153, 0.033402897, -0.0171093, -0.01146476, 0.029443517, 0.025370141, 0.016353747, -0.005076485, 0.036499258, 0.019980429, 0.022467757, -0.012344048, -0.003695139, -0.03262267, 0.0038579435, 0.022510145, -0.031892285, 0.06921379, 0.019789994, 0.037644707, 0.061843157, -0.012046176, -0.055908397, 0.027206361, -0.01037782, 0.03733785, -0.086083844, -0.026956031, 0.07017214, -0.023082731, -0.029729364, 0.035686668, -0.0009494334, 0.0075858836, 0.029774237, 0.031490047, 0.02238071, -0.018194327, 0.023811327, -0.005623039, 0.02972855, 0.026744558, -0.00042273602, 0.01534987, 0.006155255, -0.010332755, -0.026181577, 0.044809125, 0.028952898, 0.025213175, 0.04000491, -0.002605659, -0.059638463, 0.0042317994, -0.0050076805, -0.00885465, -0.047739934, -0.014760838, -0.04428738, -0.019285284, -0.01624104, -0.03896437, 0.03827965, -0.045387745, 0.006127987, 0.014887043, 0.013931552, -0.014941659, 0.060136538, 0.008531433, 0.00068074855, -0.0037860249, 0.07184925, 0.011929834, 0.013124076, -0.0014930412, -0.0033481827, -0.030692393, 0.004971877, 0.06807572, -0.02483052, -0.003841071, -0.05489651, 0.07058376, -0.008047281, 0.030812522, -0.00078345236, 0.045020428, -0.019447407, 0.05245259, 0.018016618, -4.3576158e-05, 0.024783887, 0.03132813, -0.059644796, -0.0457612, -0.023451537, -0.023909587, -0.0014769265, -0.006899178, 0.023166671, -0.015913682, -0.05818752, -0.018192934, -0.01601498, 0.048400532, 0.03150956, 0.015604013, 0.030730989, -0.038617667, 0.006977887, -0.02104051, -0.017570516, -0.023188138, 0.0002528219, -0.045208327, 0.003199654, -0.02293236, 0.026453901, 0.04370303, 0.058429547, -0.027445415, -0.0073379176, 0.007984213, -0.018041553, -0.037755728, -0.07383872, -0.039753772, 0.010917881, -0.0070882807, -0.06270842, -0.00065588515, -9.109779e-05, 0.024918944, 0.06413903, -0.035249043, 0.01770168, -0.046106406, 0.015753046, 0.038324643, 0.037027758, -0.04090155, -0.008465102, -0.038786594, 0.005388985, 0.010060593, 0.048764136, 0.03671596, -0.019671492, 0.034625307, -0.019134134, 0.029186664, 0.051132847, 0.004217906, 0.02827428, 0.01698702, 0.028508332, -0.021791618, 0.016687665, -0.013102067, -0.006292223, 0.041941326, -0.06600447, -0.024402859, 0.034906104, 0.05239081, 0.021852486, 0.067013375, 0.048444677, 0.00824424, 0.050966773, -0.046941854, -0.025606774, 0.06765585, -0.018224074, -0.012704831, -0.022776186, 0.052183963, -0.020698901, -0.036424495, -0.08325237, 0.0066465596, 0.04466672, -0.05483736, -0.04071467, 0.025286997, -0.048379365, -0.01542401, 0.0017088854, 0.025583189, -0.020447494, -0.04909474, 0.078727074, -0.10794765, -0.013109376, -0.0038343465, 0.03662355, 0.015678404, -0.016981434, 0.05013913, -0.06970179, -0.05858965, 0.019291038, 0.0030286352, 0.025207933, 0.06739475, -0.006380079, -0.001734982, 0.009365184, 0.022013167, 0.028619293, 0.022361666, 0.031039346, 0.018996194, 0.023272272, -0.056848712, 0.025725776, 0.025221007, 0.04279871, 0.035800066, 0.014894737, 0.048332475, -0.0039007475, 0.017077833, -0.035083767, -0.017362157, 0.045607943, -0.05796482, -0.017249903, 0.0023636927, -0.020650761, 0.018949408, -0.009712298, -0.0104561, 0.0068171346, -0.051375277, 0.015970508, 0.061614152, 0.0004355641, -0.002407737, -0.02704421, 0.030824414, -0.022873146, -0.07530425, 0.033489607, 0.016463669, -0.024607485, -0.0023224894, 0.02015685, -0.0012069647, -0.037836254, 0.025901299, 0.0029302249, -0.015806975, -0.01779959, 0.039796565, -0.0016512009, 0.021380356, 0.04305996, 0.07706898, -0.0019301039, -0.018871967, 0.010445712, 0.052360367, -0.021750703, 0.014210164, 0.03924974, 0.0010696317, 0.041032366, 0.003946553, -0.02640433, 0.045583896, -0.026714485, -0.0072577866, -0.031390622, 0.052910697, 0.027839277, -0.067077935, 0.021429991, -0.026605135, 0.01639857, -0.014811796, -0.0034551413, -0.03887886, -0.042940512, -0.013447515, -0.027464937, -0.05824309, -0.0011016093, -0.042649273, 0.030568283, -0.05047584, 0.015586605, -0.03441085, -0.016143557, 0.0040962733, -0.025005639, -0.0061830557, 0.02213643, -0.043375205, 0.028021386, -0.10960511, 0.014474608, -0.014637417, 0.038882133, -0.035065062, -0.024055248, -0.041038517, 0.024675393, 0.03450959, -0.04252308, -0.0068916045, 0.052615386, 3.2017353e-05, -0.02950312, 0.009154745, -0.031779245, 0.013624078, -0.0058509316, 0.059020113, 0.015278138, -0.06743326, 0.017139664, 0.03556127, 0.027448323, 0.00013393287, 0.0464576, -0.0026027402, 0.066983685, -0.014413675, -0.021860946, -0.057603363, -0.022101086, -0.022385687, 0.028461523, 0.017291637, -0.027222611, 0.0020267437, -0.028007038, 0.019363526, 0.026019977, -0.03867081, 0.01404406, 0.0062200194, 0.018841457, -0.036142103, -0.014924425, 0.022121267, 0.014177532, 0.012306928, 0.04110461, -0.017061377, 0.0306588, 0.0055843205, -0.051052302, -0.05155468, 0.039288018, 0.029670585, -0.05714139, 0.006637123, -0.024023252, -0.0075469567, -0.029742802, 0.058608823, -0.069572985, 0.02031489, 0.02008949, -0.015728157, -0.0654856, -0.00083783653, 0.0063675833, 0.031542588, 0.08241485, -0.075831555, 0.012759871, -0.06641007, 0.012125687, -0.052320093, 0.026518358, -0.020338044, -0.05881749, 0.048686605, 0.012659798, -0.0038005633, 0.033456516, -0.0497772, 0.03699226, -0.04908603, 0.023002738, 0.05897969, 0.011760265, 0.021995686, 0.021483969, 0.048794672, 0.008733763, 0.036433537, -0.009621225, -0.014143493, -0.030849298, -0.048943136, 0.095031254, 0.033114236, -0.01337279, -0.05029853, -0.0070222546, -0.052916404, 0.036599107, 0.003510337, -0.02669749, -0.025142342, 0.07103421, -0.008491748, 0.01305071, 0.0051366333, -0.021976145, -0.03190571, -0.025109213, 0.02483228, -0.007491219, -0.056921702, -0.001955111, 0.041010983, -0.02274725, -0.029689278, -0.07779296, -0.06214068, -0.023779757, -0.021112455, 0.010439601, 0.0714966, -0.0035178973, 0.032029465, -0.01475355, 0.017424138, -0.049460012, 0.04266945, 0.009492261, -0.033095263, 0.02296279, 0.00766617, 0.016543612, -0.089809306, -0.0042246524, 0.06431582, -0.021140419 ] }, { "values": [ -0.0060138367, 0.0008707725, -0.05583727, -0.046077967, 0.0074725277, 0.027038582, 0.00067951955, 0.03598582, -0.023479098, 0.0020157564, 0.019603703, 0.03247136, 0.027088383, -0.010801473, -0.041764803, -0.061505985, 0.00068438996, -0.024352036, -0.072113484, -0.04626303, 0.0018945769, -0.0025580334, 0.0030664701, -0.06461314, -0.02385899, 0.023453252, 0.044609282, -0.024724223, 0.012197053, -0.03949332, 0.027542712, 0.016871225, -0.02121191, -0.044752955, 0.05134773, 0.030183727, -0.022243943, -0.009363867, 0.027849946, -0.030340409, -0.025746554, -0.00065169466, -0.024940832, 0.028071895, -0.03454425, 0.013279434, 0.00033009567, 0.016209416, -0.032163568, 0.041799825, -0.02189239, 0.025997883, -0.025716862, -0.03103046, -0.0059551853, -0.026312187, -0.029726975, -0.0341126, 0.04287875, 0.002395548, 0.00011673819, -0.008175112, -0.0005925682, -0.01451194, -0.037750687, -0.009050649, -0.055739265, -0.04359879, -0.04610458, 0.030860959, -0.047772292, 0.0058923145, -0.060006425, -0.007750809, 0.035330325, -0.005850069, 0.026108636, 0.025808986, -0.02445783, 0.054697633, -0.029215552, -0.024735108, 0.0823931, 0.015698636, 0.0037644508, 0.015166913, 0.022053815, -0.0015989976, -0.01829164, 0.038812667, 0.052115932, -0.03955082, -0.017113218, 0.0109572355, 0.06696441, -0.01094172, -0.019919576, -0.12703058, -0.012087191, 0.09751016, -0.045759626, -0.0082840845, -0.0142287705, -0.0029517058, 0.04082477, 0.058951203, -0.022629257, -0.024288867, -0.017981488, -0.019284707, -0.018046532, -0.029732386, 0.019354995, 0.016768685, -0.0012148382, -0.04530694, 0.060851365, -0.023527432, -0.00046351878, -0.018752517, 0.04587257, -0.0220756, 0.02084333, 0.075156756, -0.008173837, 0.0063597257, 0.062144134, 0.02630889, -0.04356926, -0.06497352, 0.05506127, -0.11586983, 0.023141643, -0.016983984, -0.044881087, -0.02516779, 0.039571647, 0.036743294, -0.0092507545, -0.005711534, -0.0006950599, 0.009038525, -0.026018746, 0.027084408, -0.010997231, -0.008537043, -0.013231248, -0.018825661, -0.010677199, -0.0069010635, -0.08265481, -0.016017566, 0.041512933, -0.024934681, -0.021734593, -0.01091474, 0.124408536, -0.014222164, 0.066836976, -0.080754645, 0.0038239558, -0.038794342, -0.0043938737, 0.033733808, -0.084926635, -0.00520526, 0.062552415, -0.07642444, -0.020764746, -0.019281795, -0.019261172, -0.048407584, -0.010232392, -0.06816336, -0.033670314, -0.017470108, -0.042045984, 0.0048756357, -0.04740176, 0.006617667, 0.05751312, 0.043669205, 0.027500764, 0.021331578, -0.047583964, 0.033124078, 0.005523633, 0.031365648, 0.0026813755, 0.034302067, -0.031559017, -0.012480929, 0.050086845, 0.066198125, 0.01276414, 0.015586323, 0.083047025, -0.039616846, -0.030829847, -0.023236329, 0.020965725, -0.00015987427, -0.012772544, 0.027042488, -0.042002305, -0.045770366, -0.03014561, 0.00037993578, 0.05276642, 0.0020262895, -0.04615482, 0.026889056, -0.024787571, -0.032383103, -0.030547336, -0.0063653328, 0.10050519, 0.08386344, 0.04980344, -0.033693504, -0.01376765, 0.010335423, 0.0290164, -0.015872998, 0.04687237, -0.029332729, -0.034553498, -0.013020805, -0.021151215, -0.016348459, -0.033561356, 0.019446962, 0.008708944, -0.038645428, -0.015069582, 0.008999042, -0.04227814, 0.008382386, -0.00030894304, -0.03277963, -0.0015562186, 0.0223801, 0.033044107, 0.002981487, 0.038171932, 0.034018468, 0.063297935, 0.05037886, 0.005759384, -0.023976594, -0.01601249, -0.038668275, -0.06116089, -0.013515752, -0.06602327, -0.006684305, 0.033909336, -0.05986838, -0.019185243, 0.010489971, -0.004291789, -0.00019811113, -0.01977743, -0.0439592, -0.015652811, -0.066685066, -0.008751671, -0.0050206953, 0.011710703, -0.014253801, 0.023018908, 0.022856548, -0.054952808, -0.05912087, 0.0340763, -0.00013831146, 0.0045231367, 0.04668296, -0.025988646, -0.023817264, 0.043629684, -0.02122431, -0.017065255, -0.026819576, -0.0073852167, -0.04426697, 0.011212861, 0.014664228, -0.05432525, -0.08488305, 0.039194442, 0.049986184, 0.032632254, 0.0063441675, 0.019376526, -0.024115877, 0.04535751, 0.025500694, -0.015110461, -0.030935718, 0.034947053, 0.06250883, -0.04380429, 0.020890594, -0.049607646, 0.07717443, -0.025579548, -0.014864579, -0.04696166, -1.1588311e-05, 0.010887907, 0.10171267, -0.0582589, -0.010689727, 0.0036587582, -0.00050253933, -0.09387069, -0.0019022499, -0.050247326, -0.054678075, 0.008391987, 0.038233206, -0.02510788, -0.0012306403, 0.037135568, -0.025701033, -0.017491898, 0.015451283, 0.02634897, 0.013575322, 0.0028461926, 0.026968542, -0.00047972426, 0.0073830183, -0.008315461, -0.023323113, -0.045868866, -0.0024479553, 0.006809989, -0.04080863, 0.060274817, 0.0319468, 0.056807026, 0.0448024, -0.028494192, -0.054430276, 0.026061218, -0.00551097, 0.05589555, -0.07150607, -0.022287413, 0.053771004, -0.009058453, -0.022589477, 0.040117405, -0.006043803, 0.004438372, 0.0222768, 0.02242203, 0.020505829, -0.029039022, 0.02486437, 0.0021908823, 0.024967877, 0.011956484, -0.006379912, 0.0031613086, 0.0038435538, -0.0047340016, -0.016417414, 0.004920476, 0.0476154, 0.021481624, 0.015798666, 0.005183893, -0.08185688, -0.001375905, -0.015975771, -0.0056371405, -0.040643036, -0.029723959, -0.041725636, -0.023077937, -0.023576576, -0.03380765, 0.05486999, -0.05605854, 0.0040198867, 0.011328105, 0.009756688, -0.0017574248, 0.060976192, 0.0050190655, 0.0056638485, 0.00044520875, 0.080233835, 0.021176005, 0.015760932, 0.004901253, -0.018543454, -0.011252359, 0.034476846, 0.05293945, -0.010936055, -0.013395719, -0.03838218, 0.05215874, -0.028880054, 0.024573343, 0.016092146, 0.031793516, -0.027791468, 0.05920141, 0.008260305, 0.01002237, 0.021485584, 0.030230695, -0.045031454, -0.06031927, -0.0065242937, -0.017744018, -0.0011766376, -0.006400104, 0.046157517, -0.00046941463, -0.046121217, -0.0031441497, -0.0022939858, 0.051207382, 0.03165947, 0.033367384, 0.017056094, -0.03536649, 0.01733911, -0.029384805, -0.0043884707, -0.0051117493, 0.0027388677, -0.045190215, -0.0033589448, -0.016225291, 0.024933724, 0.0464651, 0.051076893, -0.033725306, 0.013250109, 0.013229293, -0.028146777, -0.033221163, -0.074365996, -0.03552534, 0.036437485, -0.020494428, -0.081481606, 0.005241308, 0.008235716, 0.012305864, 0.073637746, -0.03423209, 0.029134184, -0.060536236, -0.010642281, 0.023864156, 0.03374014, -0.019338045, -0.021595778, -0.052281596, 0.021469403, 0.015456839, 0.032574296, 0.036750533, -0.020731345, 0.019988872, -0.0057204445, 0.024426645, 0.06304412, -0.00038788587, 0.016975263, -0.0012065304, 0.015780894, -0.012800322, -0.002870404, -0.01785359, -0.019646417, 0.026371287, -0.059288654, -0.044674423, 0.026771808, 0.044254065, 0.011179544, 0.035752982, 0.027846187, 0.013852583, 0.04595217, -0.05338611, -0.021137403, 0.0804447, -0.0093374215, -0.011959914, -0.034524586, 0.062450655, 0.0015515605, -0.02212096, -0.05679676, 0.003726989, 0.040329807, -0.037465896, -0.031442728, 0.027394751, -0.042724617, -0.021450171, -0.00809763, 0.014231696, -0.009326889, -0.057993487, 0.08846726, -0.095693916, 0.003430823, -0.023837665, 0.03727856, -0.022650149, -0.023685062, 0.056781385, -0.07119456, -0.05612623, 0.017828932, -0.011893289, 0.017838694, 0.05745006, -0.01137836, 0.002624391, 0.015827855, 0.031157997, 0.0074860863, 0.020696716, 0.042853612, 0.014756379, -0.0043185074, -0.044392202, 0.054378115, 0.0026008436, 0.03207641, 0.04456903, 0.037890468, 0.053394582, -0.00735945, 0.017747272, -0.05804379, 0.016546471, 0.05718682, -0.04511042, -0.032494444, -0.021962224, -0.027696015, 0.0037222751, -0.004500364, -0.024257774, 0.0075240624, -0.04691374, 0.043955974, 0.06248573, -0.0023514316, -0.0132541675, -0.013372911, -0.010241899, -0.009906788, -0.076327235, 0.053972363, 0.018366588, -0.009731928, -0.006254439, 0.0061649866, 0.007830148, -0.063422956, 0.027421353, 0.0069646956, -0.0049797003, -0.003343795, 0.05264478, 0.006785795, 0.03650427, 0.04900924, 0.054679275, -0.0016789607, 0.021814073, -0.005776095, 0.04749674, -0.017775333, 0.002602189, 0.03898603, 0.00087155536, 0.028822746, 0.019002805, -0.015974255, 0.041126166, -0.037153594, -0.0010645846, -0.031531613, 0.055751387, 0.011077178, -0.05410371, 0.0035956227, -0.03640254, 0.0093478095, -0.012384035, 0.0010528504, -0.023662165, -0.051479023, -0.017461265, -0.010180513, -0.0658557, 0.0011750024, -0.046092857, 0.022183463, -0.044415742, 0.011313638, -0.032396264, -0.028857576, 0.017595202, -0.014037708, 0.0026212402, 0.03416676, -0.031484753, 0.019949479, -0.08322803, -0.005364985, -0.007852751, 0.04163642, -0.050337136, -0.03795061, -0.040597346, 0.0031447532, 0.030599888, -0.023998385, -0.03096469, 0.062107928, -0.0057850303, -0.030859046, -0.010950288, -0.04468844, -0.004230899, 0.013402652, 0.06720227, 0.038307488, -0.089540794, 0.014323171, 0.036078814, 0.03478183, -0.010009974, 0.04754864, -0.009785581, 0.035471965, -0.017208414, -0.008082447, -0.041094445, -0.010844426, -0.02824131, 0.013732633, 0.015317036, -0.010065737, 0.009314715, -0.012814681, 0.027146302, 0.024047015, -0.04000647, 0.018051129, 0.0031710519, 0.026974367, -0.030848533, -0.028275343, 0.023273923, 0.011011001, 0.03534776, 0.052428346, -0.0144368885, 0.027202256, 0.0028855249, -0.052659005, -0.052322056, 0.024658905, 0.018337179, -0.044274718, -0.001718336, -0.017171202, 0.0016374383, -0.025892163, 0.047984336, -0.047315884, 0.031663172, 0.038159117, 0.0132562835, -0.029230626, -0.017070845, 0.000545433, 0.025378793, 0.097751416, -0.074896, 0.022842724, -0.079783455, -0.0063122446, -0.0422224, 0.03230493, -0.02400706, -0.038600307, 0.075453386, -0.00450763, -0.010265292, 0.029729728, -0.044177454, 0.035963986, -0.050601657, 0.033750344, 0.04682727, 0.004618498, 0.019448286, 0.03289826, 0.0442675, 0.0025862958, 0.055144988, 0.011477572, -0.0076642893, -0.035885137, -0.05852278, 0.09431685, 0.034345686, -0.009336997, -0.060915273, 0.002335435, -0.0477366, 0.036341947, -0.012625019, -0.018572904, -0.02699387, 0.08980348, -0.0075578676, 0.029281527, -0.00042811388, -0.025840482, -0.027093457, -0.01976765, 0.026225375, -0.010934046, -0.03153683, 0.012060897, 0.035508707, -0.029368183, -0.027875926, -0.11433536, -0.054614235, -0.021688946, -0.022262314, 0.00759331, 0.05582698, -0.015667632, 0.047117, -0.013299141, 0.017121952, -0.031644117, 0.037093937, 0.003690731, -0.0025871452, 0.03264965, -0.002451174, 0.013781465, -0.07602937, -0.012824741, 0.06852597, -0.01872415 ] }, { "values": [ -0.007388152, -0.026430579, -0.042010464, -0.038502853, 0.013811546, 0.021453477, -0.01765057, 0.026015708, -0.020041289, -0.004140471, 0.025705334, 0.019334974, 0.01924248, -0.011288825, -0.034567, -0.045256536, 0.019791728, -0.0320844, -0.062371418, -0.02545751, 0.0035748393, 0.010514926, -0.025642361, -0.058905184, -0.017958922, 0.043300565, 0.031150252, -0.036058173, 0.020329753, -0.04082957, 0.013825338, -0.0044686967, -0.024202934, -0.024468783, 0.023553802, 0.03957924, -0.031016748, -0.009074727, 0.031486526, -0.0543436, -0.026086615, -0.004816496, -0.035895742, 0.026557436, -0.057545528, 0.03025872, -0.023093987, 0.016629934, -0.028780578, 0.037199795, -0.023716511, 0.0124117555, -0.004885808, -0.012173798, -0.0053141094, -0.020344105, -0.04570098, -0.03095628, 0.06356411, -0.0035269673, -0.0014738272, 0.009698205, -0.010309976, -0.016060997, -0.031795472, -0.014664851, -0.070664935, -0.055964407, -0.06483629, 0.019675894, -0.059957325, -0.009639778, -0.072659835, -0.0126789855, 0.026403287, -0.026297033, 0.027960705, -0.008736296, -0.018314011, 0.034747403, -0.009394825, -0.025791867, 0.053191416, 0.015899215, 0.0061910823, 0.024008498, 0.016979689, -0.014440917, -0.042367592, 0.027877204, 0.0480337, -0.03538709, -0.03907487, -0.0048405686, 0.07774652, -0.022176523, -0.0048952564, -0.10682079, -0.026489029, 0.0949404, -0.046858225, -0.0065828287, -0.014178649, -0.03359879, 0.042511594, 0.05485088, 0.0030131212, -0.039129168, -0.0044302456, 0.008005198, -0.023479188, -0.047656596, -0.024535244, 0.03151201, -0.00909, -0.033366855, 0.06770671, -0.032803215, -0.01574509, -0.023075756, 0.039849006, -0.014280199, 0.023148935, 0.0681628, 0.010860859, 0.011684696, 0.04875999, 0.012477287, -0.040461875, -0.03710207, 0.052953675, -0.11864574, 0.018138902, -0.01762819, -0.031155074, -0.027391588, 0.04516503, 0.027849657, -0.03240934, -0.012277118, 0.0078062485, -0.013914584, -0.049678627, 0.04460065, 0.0014196977, -0.026662368, -0.031393673, -0.025499739, 0.009378509, -0.0047807973, -0.07366618, -0.023079913, 0.024047809, -0.016004782, -0.018237866, 0.0021648319, 0.11684382, -0.057221424, 0.052061275, -0.052990355, 0.010057605, -0.055370968, 0.004572799, 0.014668346, -0.055952415, 0.029924523, 0.057035375, -0.07585248, -0.04000438, -0.026960064, -0.0032643126, -0.09192667, -0.03300085, -0.06492205, -0.047175962, -0.025700992, -0.0261776, 0.0046015196, -0.035225164, 0.0016923025, 0.061162286, 0.062005103, 0.027870532, 0.026460385, -0.078789055, 0.00394381, 0.0045419224, 0.034277298, 0.012159273, 0.03123243, -0.04529413, -0.009093736, 0.039369717, 0.05455909, 0.027886773, 0.018202988, 0.09332987, -0.03950152, -0.053075, -0.036030695, 0.023429396, 0.041236594, -0.023709614, 0.033504274, -0.03635944, -0.021927759, -0.021416008, -0.00040521118, 0.07073737, -0.00034278337, -0.032030627, 0.0517566, -0.013178919, -0.036786467, -0.027485399, -0.029650701, 0.10105747, 0.06618725, 0.043980535, -0.04397075, -0.01939294, 0.0017980139, 0.029854923, -0.001270245, 0.064397015, 0.015394079, -0.022790264, -0.012434552, -0.0031174715, -0.009197479, -0.035006158, 0.033885796, 0.005530851, -0.03351026, -0.004954966, 0.02930407, -0.0011316069, 0.010044062, -0.01923891, -0.0170802, 0.011823198, 0.01608013, 0.02577435, -0.019488951, 0.016452834, 0.049880877, 0.074268594, 0.037716072, -0.025165403, -0.014600654, -0.01924166, -0.043956414, -0.07806903, -0.017966231, -0.06941794, -0.011830342, 0.04819918, -0.05548385, -0.018659644, 0.02008798, 0.0076812515, -0.0119599, -0.01567915, -0.058327008, -0.0009577648, -0.04095611, -0.011950719, 0.004329584, 0.020441765, -0.013765631, 0.02072046, 0.012746116, -0.08957225, -0.043577462, 0.035456236, 0.024945172, 0.0006319391, 0.028914684, -0.041998353, -0.037796628, 0.061067443, -0.035874106, -0.006746868, -0.034833636, -0.01235151, -0.03708623, 0.015209396, 0.032569204, -0.04521811, -0.073694654, 0.020742673, 0.044077534, 0.033900443, 0.0045830724, 0.03653054, -0.030017892, 0.043539554, 0.021150772, -0.028035156, -0.023357593, 0.007962184, 0.06048615, -0.029089026, 0.019214446, -0.021884, 0.062355965, -0.021416392, -0.018490583, -0.019578792, -0.005275294, 0.0057330225, 0.08924091, -0.06574872, -0.02048978, 0.0064271283, 0.0067342385, -0.11977238, 0.00988159, -0.044175874, -0.027385745, -0.008655914, 0.01901614, -0.017829716, -0.021042883, 0.007425305, -0.016597793, -0.012292842, 0.013891843, 0.028706452, -0.00022109142, -0.011153805, 0.040527638, 0.011672287, 0.015893936, -0.01212074, -0.0077957744, -0.04221306, 0.004424652, 0.007693677, -0.015380892, 0.034650337, 0.017763168, 0.059089117, 0.025134884, -0.005984647, -0.050404884, 0.014402301, -0.018152108, 0.034990657, -0.090064675, -0.025973527, 0.054442246, -0.012789058, -0.017674455, 0.045723915, 0.01606443, 0.008932893, 0.034109, 0.0025875666, 0.024888173, -0.04110286, 0.0026480216, 0.006314408, 0.025938654, 0.034209467, 0.0047961134, 0.022624468, 0.01857366, -0.017785653, -0.010901045, 0.03156137, 0.04358077, 0.039162684, 0.04582342, 0.006108493, -0.08154621, -0.01623433, -0.021330029, -0.003112475, -0.038394365, -0.021793857, -0.04323419, -0.01228706, -0.019016761, -0.032636628, 0.031111961, -0.051279496, 0.005928228, 0.017631691, 0.021575617, -0.012720016, 0.028466769, -0.0017684066, -0.0070926934, 0.01386131, 0.079649694, 0.026327588, -0.0020318145, -0.0117430845, -0.011654533, -0.0030941353, -0.0032715437, 0.06095207, -0.026664205, -0.0015937488, -0.013405924, 0.0540968, -0.013197751, 0.032039426, -0.003109903, 0.058478955, -0.0071519245, 0.06999011, 0.025432063, 0.005079857, 0.042857643, 0.046939153, -0.046610225, -0.038856488, 0.004945865, 0.019375656, 0.0050252206, -0.011135341, 0.05705, -0.0182107, -0.050287914, -0.011609408, 0.012940246, 0.05334425, 0.035434745, 0.014065095, 0.019932693, -0.034045726, 0.0055205156, -0.060055938, 0.003442829, -0.012965442, 0.01201313, -0.032683063, 0.0027799986, -0.009166641, 0.038404815, 0.03447617, 0.06477617, -0.035062693, 0.0052112825, 0.011417796, -0.04460678, -0.03662472, -0.07510692, -0.034036458, 0.0010003956, -0.010304658, -0.0716864, -0.0087770885, 0.01169544, 0.035505753, 0.04682997, -0.032315917, 0.029850686, -0.054149613, 0.0038652697, 0.032355234, 0.038492605, -0.024975626, -0.006961366, -0.053754717, 0.021263568, 0.0048497175, 0.05414762, 0.035734836, -0.006888268, 0.035022687, -0.0039086654, 0.016460111, 0.05572055, -0.019645426, 0.032587048, 0.018427579, 0.019737115, -0.0053116367, 0.00845948, -0.010700471, -0.004757074, 0.03433499, -0.07586985, -0.051547214, 0.033046443, 0.028471923, 0.039059483, 0.043997332, 0.04405466, 0.0129483715, 0.056579303, -0.04002524, -0.010478321, 0.07290659, -0.027805483, -0.010036718, -0.038825788, 0.072334245, 0.0044798423, -0.027923465, -0.0620388, -0.005517846, 0.036057968, -0.06021217, -0.02272265, 0.018515851, -0.024768755, -0.016249292, -0.00034670744, 0.04436119, -0.0076610367, -0.044371758, 0.08238299, -0.099030115, -0.002609407, -0.011226705, 0.04618125, 0.0048023234, -0.0006161744, 0.045970667, -0.064392254, -0.061514348, 0.022277415, -0.035576023, 0.017776975, 0.060983557, -0.027185988, -0.02760705, 0.026142377, 0.034182526, 0.027748242, 0.038404383, 0.0016815666, 0.0024988921, 0.0054213805, -0.028834587, 0.042934276, 0.0005322026, 0.053830817, 0.039690115, 0.019299012, 0.043065462, -0.01788979, 0.015925966, -0.059742764, -0.010502954, 0.052935608, -0.03869656, -0.030329192, 0.01013034, -0.003864854, 0.011969449, -0.029251501, -0.011335077, 0.013538957, -0.06274972, 0.020983677, 0.06517102, 0.0051612305, -0.012850358, -0.0048859124, 0.011152071, -0.016952055, -0.075678766, 0.03844279, 0.029645925, -0.034187805, 0.008802045, 0.020810977, -0.002765095, -0.04459203, 0.048059314, -0.012248765, -0.010156534, -0.0015652186, 0.047370557, 0.000646356, 0.030784497, 0.0139171025, 0.058348518, -0.012944237, -0.013333127, 0.004600734, 0.038752653, -0.03632041, -0.0044060606, 0.053493626, -0.0060143513, 0.017732685, 0.0063934796, -0.013975693, 0.049011473, -0.04708379, -0.012694469, -0.025615277, 0.04079803, 0.0047277943, -0.06105391, -0.009956656, -0.021517152, 0.0111882165, -0.022192819, -0.015687801, -0.03645878, -0.039540157, -0.011619887, 0.005871711, -0.06320378, 0.008701954, -0.03297552, 0.02337558, -0.048793327, 0.029365757, -0.033308394, -0.0078822635, 0.007420947, -0.012594281, -0.010820677, 0.029403077, -0.023050124, 0.021423712, -0.10069026, 0.023394987, -0.027319591, 0.055257246, -0.029630294, -0.023000961, -0.034263387, 0.028836036, 0.02668126, -0.03442159, -0.025848357, 0.050810736, 0.01538586, -0.031840947, -0.023064943, -0.05771329, 0.019218486, -0.010038024, 0.060595546, 0.018210558, -0.094013944, 0.03277866, 0.014545356, 0.018524187, 0.0028894483, 0.05168246, -0.0014794254, 0.061016653, -0.024445135, -0.022829667, -0.05217104, -0.026242282, -0.025397923, -0.0024050514, 0.017587135, -0.0025656356, -0.0042294334, -0.0045388592, 0.0226068, 0.025501162, -0.03473088, 0.030899813, 0.009536904, 0.017861042, -0.014173547, -0.024896856, 0.023399131, 0.02286295, 0.017943049, 0.065941565, -0.025977617, 0.030620016, 0.00809164, -0.02624618, -0.05832302, 0.033183075, 0.020916883, -0.065640815, 0.027920526, -0.021052487, 0.0023495706, -0.02490588, 0.04223015, -0.06876831, 0.029605314, 0.025220687, -0.018711453, -0.057763334, 0.008013899, -0.0075765145, 0.021276115, 0.063992895, -0.07238938, 0.033096384, -0.051339973, 0.008976272, -0.04524646, 0.027225448, -0.033899754, -0.059633628, 0.067042485, 0.014674627, -0.0018973981, 0.014254248, -0.045650616, 0.038151696, -0.05653717, 0.034357958, 0.042745955, 0.02388602, 0.020535672, 0.035237614, 0.037161976, 0.0015348232, 0.042582627, -0.018077834, -0.02238352, -0.03790546, -0.039522402, 0.09946518, 0.027691578, 0.0036741565, -0.051024675, -0.005450985, -0.04094855, 0.048395142, -0.00060319057, -0.018144561, -0.032849357, 0.07327619, 0.010259049, 0.009884366, -0.014397238, -0.024760064, -0.021683097, -0.033036795, 0.021552186, -0.023763055, -0.03172043, -0.010689522, 0.027161885, -0.0038041696, -0.027518688, -0.09157388, -0.033458076, -0.01913163, -0.03067072, -0.0067755487, 0.06155605, -0.0013861714, 0.022799378, -0.024638634, 0.015259508, -0.038436394, 0.045317326, 0.021964936, -0.01383113, 0.01008191, -0.0011672305, 0.018529484, -0.08489913, 0.0021298379, 0.048771348, -0.026520189 ] }, { "values": [ -0.0017599007, -0.016416058, -0.027407376, -0.03910941, 0.011246622, 0.021630155, -0.004787874, -0.004371963, -0.030493498, 0.0071433447, 0.03208437, 0.02926045, 0.023106975, -0.026377192, -0.037244666, -0.034284014, 0.024359208, -0.02614834, -0.06900433, -0.058107033, 0.012856075, -0.0017150434, -0.021415131, -0.04317438, -0.024681786, 0.022499615, 0.032347772, -0.032267172, 0.020622058, -0.041779637, 0.016534504, 0.01935386, -0.04584683, -0.039764974, 0.049190894, 0.01936158, -0.028992921, -0.011280006, 0.044463843, -0.04717073, -0.0072367927, 0.031437546, -0.030536585, 0.012638597, -0.03832401, 0.028106743, 0.00043919947, 0.035360128, -0.012941325, 0.059437815, -0.01737919, 0.020034704, 0.019018011, -0.010469965, 0.023206888, -0.0274837, -0.058263585, -0.057617556, 0.060550567, -0.00862463, 0.01603618, 0.014748018, -0.011053907, -0.017733056, -0.020207446, -0.0050226827, -0.050032552, -0.05811696, -0.048364926, 0.033962026, -0.013250958, 0.006945413, -0.06762175, -0.01864885, 0.017961102, -0.015840536, 0.014531432, 0.006618569, -0.04812817, 0.025180554, -0.021921815, -0.028632797, 0.074526906, 0.02050147, 0.01378783, 0.018898293, 0.010790503, -0.024944335, -0.034039244, 0.029014599, 0.028282508, -0.02290623, -0.019885862, 0.003147705, 0.059216227, -0.012343835, -0.024739748, -0.12732844, -0.02713077, 0.11699676, -0.020026619, -0.016577486, -0.017616058, -0.028868206, 0.055590745, 0.043101385, -0.0066658873, -0.04272815, -0.015556804, 0.011690985, -0.03022448, -0.057162687, -0.013997508, 0.027954133, -0.018834978, -0.021248145, 0.059584096, -0.031931486, 0.0013993875, -0.028912771, 0.05161548, -0.015909977, -0.012666318, 0.06170312, 0.012380944, 0.015708903, 0.023552092, 0.009956545, -0.038852192, -0.056978494, 0.046937793, -0.12735204, 0.005874372, -0.011743718, -0.037936598, -0.0328718, 0.033778723, 0.023691025, -0.007867264, -0.010203058, -0.0134352, -3.8297432e-05, -0.02576674, 0.03593893, -0.010733478, -0.036405575, -0.016439175, 0.005497079, -0.004963628, 0.0014535744, -0.09160233, -0.009770322, 0.022824531, -0.0116081685, -0.0072113858, 0.0077794427, 0.12650459, -0.04645988, 0.04506676, -0.05905388, 0.018399565, -0.04026898, -0.008517773, 0.015275756, -0.06316286, -0.023092054, 0.044838343, -0.08799396, -0.018422306, -0.029725438, 0.012246368, -0.051876184, -0.019357717, -0.070266895, -0.023931963, -0.012026764, -0.019566484, 0.012032314, -0.0056153997, 0.02283522, 0.065024406, 0.020191843, 0.029055528, 0.034786507, -0.055121552, -0.004245907, -0.030311743, 0.041279793, 0.026009431, 0.03299489, -0.042026386, -0.024233505, 0.0160116, 0.04122603, 0.031250235, 0.012011244, 0.0778083, -0.023600742, -0.01568867, -0.037341062, 0.048226174, 0.011455751, -0.014161639, 0.026647886, -0.03757174, -0.038959652, -0.02284602, 0.012120999, 0.052607436, 0.018428355, -0.0478504, 0.02565638, 0.011372699, -0.04300456, -0.052463233, -0.008966379, 0.08380514, 0.07321965, 0.008979745, -0.037011668, -0.005458468, 0.015689516, 0.032084677, 0.011491873, 0.049801625, 0.013702685, -0.043329075, -0.03786694, -0.016848423, 0.019174881, -0.0468115, 0.029122636, 0.021191329, -0.043669526, -0.021876326, 0.02211919, -0.012200231, 0.015993552, -0.0012945276, -0.016951736, -0.02205123, 0.014079384, 0.037209637, 0.015445353, 0.021963423, 0.060253486, 0.078001596, 0.068222634, -0.034620933, -0.016997792, -0.027406381, -0.03827773, -0.07068929, -0.0139519395, -0.06302091, -0.029510723, 0.042539492, -0.077409536, -0.0067573814, 0.004380151, 0.010940457, -0.015520996, -0.018083755, -0.05902711, -0.0092084985, -0.0386102, -0.026211593, 0.008349204, 0.043673094, 0.014906851, 0.041488145, 0.016275581, -0.086320475, -0.062923394, 0.048781704, 0.017304614, 0.0018255158, 0.030795878, -0.024162278, -0.038359396, 0.061356463, -0.04412158, -0.019621395, -0.027619973, 0.0031943466, -0.041429292, 0.017716246, 0.020209344, -0.05081841, -0.08338453, 0.036552485, 0.036027387, 0.042903356, 0.0046261763, 0.009756877, -0.037636895, 0.04268838, 0.013271398, 0.0008702627, -0.039221544, 0.024606014, 0.058532864, -0.026355714, -0.00234937, -0.036270607, 0.061208732, -0.031787064, -0.0427141, -0.020724121, 0.010919944, 0.005406559, 0.0924162, -0.03062504, -0.015538215, 0.016602656, 0.03150955, -0.1252703, 0.0023093142, -0.058639742, -0.021216046, 0.010619162, 0.034728978, -0.020231241, -0.008691185, 0.008287907, -0.028791621, -0.013840368, 0.017733788, 0.02140526, 0.01065317, 0.002211787, 0.040204998, 0.0031676723, 0.0232106, -0.012603514, -0.015952645, -0.03415703, 0.0014292393, 0.0047736494, -0.03499253, 0.028557805, 0.021548377, 0.06417826, 0.011772039, -0.026567506, -0.0700855, -0.003647694, -0.009857753, 0.059453983, -0.067064464, -0.034102354, 0.04673169, 0.010633836, -0.009433982, 0.040035408, -0.0041435645, 0.020059334, 0.025926631, 0.034858037, 0.011459511, -0.0347662, 0.024140185, 0.007758711, 0.030995267, 0.01730513, -0.008978197, 0.036193285, -0.014903769, -0.01020432, -0.025565043, 0.021122398, 0.049803045, 0.038747266, 0.022235256, -0.0019046032, -0.105187036, -0.02378574, -0.015553972, -0.010858281, -0.044237003, -0.034407035, -0.04203407, -0.004233641, -0.0142091885, -0.04977151, 0.0434811, -0.043182958, -0.005552915, 0.023452401, 0.011494235, 0.0030197832, 0.026120853, -0.0056391563, -0.013532871, 0.01440194, 0.058025613, 0.006559018, -0.0064029833, -0.0104310475, -0.0243938, -0.015099285, 0.018149676, 0.059689842, -0.010439127, 0.0010092915, -0.021465668, 0.05245492, -0.028807366, 0.027684182, -1.1977751e-05, 0.05002571, -0.013627347, 0.041346822, 0.019433392, -0.0009282891, 0.018453924, 0.027390858, -0.028371645, -0.047169812, -0.0090080025, -0.0005062099, -0.00125186, -0.003157875, 0.0522024, -0.018908964, -0.07146094, -0.0034738919, 0.00020727121, 0.049673617, 0.02508288, 0.017645031, 0.03221157, -0.04892185, 0.012445414, -0.058668338, -0.005817417, -0.006192289, 0.012797192, -0.02735295, -0.017181275, -0.0014582167, 0.034569137, 0.03257588, 0.048881687, -0.037771218, 0.023118014, 0.036620516, -0.031713005, -0.051856495, -0.06682303, -0.0041252817, 0.014975472, -0.025177281, -0.07682412, -0.0150541235, -0.0047947364, 0.033506285, 0.058046445, -0.038867712, 0.026722398, -0.036746338, 0.0067845467, 0.037636507, 0.023594934, -0.0065290104, -0.020310482, -0.041260738, 0.030508978, 0.010877071, 0.024706068, 0.038616993, -0.014582743, 0.03129332, 0.0041596433, 0.036282882, 0.07116345, -0.016106967, 0.0017667064, 0.023529615, 0.014999277, -0.016542511, 0.026666224, -0.005504236, -0.014852017, 0.038796257, -0.08511062, -0.0416847, 0.012493251, 0.03454206, 0.008179232, 0.025533365, 0.04152396, 0.0034164358, 0.04628295, -0.025514416, -0.01748215, 0.07796968, -0.04091486, -0.010527456, -0.05345112, 0.046615303, 0.012124255, -0.024831684, -0.03676615, -0.0008888684, 0.01672864, -0.05454253, -0.025105095, 0.028334012, -0.01042265, -0.035007305, 0.013397115, 0.05666792, -0.01156514, -0.044439435, 0.10411231, -0.0936887, -0.014489744, -0.03023032, 0.051690113, -0.021239636, -0.020544803, 0.05747812, -0.087642916, -0.06305593, 0.015181481, -0.029652135, -0.007962708, 0.03671815, -0.026602268, -0.026304659, 0.016933814, 0.02540662, 0.013490086, 0.025927097, 0.01267769, 0.016547898, -0.0116848145, -0.035665024, 0.06095989, 0.016843658, 0.040331513, 0.04127147, 0.010723276, 0.053551584, -0.01561351, 0.025642952, -0.06126825, -0.0135664055, 0.04989922, -0.037262868, -0.046899144, 0.005786292, -0.0027067862, -0.0072437064, -0.02442824, -0.016602583, -0.008141811, -0.06948576, 0.036655813, 0.05252664, 0.0039945366, -0.0016003974, 0.010504393, 0.0067566507, -0.01604549, -0.074353434, 0.054054953, 0.013787437, -0.041467305, 0.005782339, 0.0039035045, -0.00496445, -0.057196807, 0.042520013, -0.002166838, 0.0005944759, -0.0025740557, 0.046393074, 0.0014490887, 0.034952804, 0.026532693, 0.07055311, -0.028040476, -0.018204981, 0.010419903, 0.025998177, -0.028874513, -0.007134838, 0.04723717, 0.0052333255, 0.023965457, -0.004563589, -0.009672356, 0.03508215, -0.02058148, 0.0010154918, -0.043123987, 0.023080112, 0.0030672173, -0.054868188, -0.02144696, -0.037169464, 0.019484181, -0.020187322, -0.016318657, -0.030535398, -0.044713717, 0.008660513, -0.019925501, -0.049688395, 0.0029200295, -0.02779055, 0.013665845, -0.059923224, 0.03947503, -0.022813011, -0.013816074, 0.024403507, -0.023379358, 0.0045007663, 0.052629553, -0.016642332, 0.02002892, -0.077419996, 0.0062202956, -0.0096853515, 0.053731926, -0.032303803, -0.0068485253, -0.01735926, 0.004595895, 0.045826085, -0.043978263, -0.032695677, 0.053824943, 0.021123106, -0.011158256, 0.0066043353, -0.04935503, 0.013833675, 0.017977461, 0.058626667, 0.018431671, -0.09655163, 0.03806332, 0.016236924, 0.01114954, 0.0013769924, 0.027923645, -0.019961525, 0.019746719, -0.017124666, -0.04160356, -0.038119648, -0.025401251, -0.0063143177, 0.0009425346, 0.018193226, -0.00014908578, -0.017998898, -0.011927947, 0.013273046, 0.052969273, -0.028491043, -0.00055247865, -0.013388608, 0.017002273, -0.018711977, -0.05003539, 0.009522432, 0.02991077, 0.039493144, 0.06715032, -0.04230834, 0.031802993, 0.0060409927, -0.0218139, -0.048281297, 0.021832196, 0.026307287, -0.044480894, 0.024186838, -0.022209859, 0.001752094, -0.030466784, 0.040155325, -0.07075116, 0.029340973, 0.01964042, 0.008849953, -0.027507454, -0.0007263749, -0.024693217, -0.006518549, 0.06416751, -0.061498683, 0.040205076, -0.081199266, -0.011307225, -0.045635793, 0.01957521, -0.04248223, -0.035797507, 0.06214169, 0.02858676, -0.011146855, 0.019299598, -0.06635358, 0.021920878, -0.056500167, 0.016796272, 0.033786338, 0.009333297, 0.03338817, 0.038680978, 0.04342765, -0.014457674, 0.058952786, 0.034694925, -0.021958223, -0.047060996, -0.028455159, 0.085527234, 0.016344123, 0.011148768, -0.06644172, -0.022692062, -0.052254666, 0.043773733, 0.0023066406, -0.02068713, -0.030510731, 0.07028167, 0.0060085044, 0.004018524, -0.03611661, -0.021092463, -0.02068, -0.014890311, 0.01865482, -0.014289754, -0.030888604, 0.010121205, 0.041843474, 0.0036784888, -0.024344135, -0.11015443, -0.03726195, -0.0052398196, -0.043240502, 0.0018330945, 0.059903137, -0.0045048213, 0.030181369, -0.04192285, -0.004614785, -0.041421477, 0.03975768, 0.014252268, -0.024661792, 0.035634287, -0.022015, 0.023329668, -0.06933443, 0.0165806, 0.06598234, -0.033353813 ] }, { "values": [ -0.011831748, -0.013581416, -0.027696809, -0.03577853, 0.0027913318, 0.025181228, -0.016154991, 0.0033467722, -0.0040277294, 0.012884079, 0.037128676, 0.02484042, 0.017450286, -0.0199817, -0.027896157, -0.052703686, 0.014902018, -0.027630307, -0.07595677, -0.06389674, 0.027090868, -0.010526672, -0.021663165, -0.04289865, -0.03273585, 0.0071488502, 0.044927172, -0.021779628, 0.022020543, -0.048690245, 0.0063275467, 0.019355528, -0.038626753, -0.04653283, 0.029950328, 0.01932529, -0.05044974, -0.01775577, 0.032139834, -0.050062336, -0.025181808, 0.03396622, -0.030361759, 0.025074497, -0.04175552, 0.024776628, 0.013758452, 0.033720333, -0.014500641, 0.043208223, -0.022957008, 0.013039818, 0.032199826, -0.0073490636, 0.0090403855, -0.038339548, -0.06431846, -0.010494242, 0.050795816, -0.00018678512, 0.0141650345, 0.01806083, -0.026726449, -0.017378386, -0.03780573, -0.014614772, -0.059137855, -0.03536403, -0.035505228, 0.040891647, -0.026947618, -0.00071529264, -0.0634174, -0.006127445, 0.020151595, -0.011798126, 0.031091768, -0.010699793, -0.06447667, 0.041959453, 0.010879676, -0.010012265, 0.045453954, 0.007835065, -0.010726005, 0.0006479847, 0.032741003, -0.018123938, -0.028942833, 0.022820605, 0.023341445, -0.01690164, -0.0428874, 0.0034476034, 0.06474248, -0.0051684314, -0.014219344, -0.12694645, -0.008446343, 0.08894853, -0.022057854, -0.025606394, -0.018604374, -0.02342997, 0.026810242, 0.040036336, -0.029955454, -0.015988676, -0.035296716, -0.007010704, -0.020711998, -0.04624704, 0.002806343, 0.016662369, -0.038757402, -0.0377853, 0.04869006, -0.04144011, -0.0063386834, -0.032323234, 0.04065797, -0.020566449, -0.020704797, 0.0620418, 0.028281124, 0.011347195, 0.025415225, 0.028257687, -0.045698244, -0.031002473, 0.052267626, -0.12685168, 0.017775089, -0.013880158, -0.022411536, -0.031374488, 0.07119947, 0.0287211, -0.0033414513, -0.00530299, -0.011360143, 0.0070004743, -0.037119478, 0.042491335, -0.011907907, -0.03361489, -0.035576776, -0.008174942, -0.007789004, 0.004170622, -0.08296568, -0.014772588, 0.011775252, 0.0070997006, -0.015185365, 0.0136041315, 0.10626672, -0.042790346, 0.043066807, -0.07693088, 0.028503047, -0.028910426, -0.019775013, 0.019603569, -0.038981874, -0.008485129, 0.04153304, -0.081620805, -0.03189603, -0.017518949, -0.0074279387, -0.06809935, -0.03799538, -0.056669764, -0.033860248, -0.020821573, -0.007689975, 0.01943711, -0.023291921, 0.019954702, 0.078321494, 0.048247144, 0.009823635, 0.02882505, -0.048064336, -0.010883888, -0.013727183, 0.05030814, 0.023946093, 0.044565897, -0.04877799, 9.017116e-05, 0.026298253, 0.04461393, 0.038167924, 0.015716918, 0.07497352, -0.012839572, -0.029728783, -0.04396924, 0.033631925, 0.03211087, -0.022813356, 0.04931401, -0.037627894, -0.014421116, -0.008586644, -0.008066225, 0.049603958, -0.0064442316, -0.03953974, 0.028756436, 0.020143343, -0.0511483, -0.04467095, -0.00055029604, 0.09943566, 0.05291385, 0.03244902, -0.019797528, -0.03531454, -0.0073108603, 0.016691599, 0.029434001, 0.040032562, 0.024601642, -0.02734323, -0.022545222, -0.016264377, 0.0040235035, -0.0129294535, 0.019912507, 0.0123093575, -0.04897884, -0.023185205, 0.03152242, -0.024536058, 0.02215961, 0.00349375, 0.0052025067, -0.023738623, 0.0032691818, 0.041531216, 0.02242988, 0.019991972, 0.07160076, 0.07673, 0.059117813, -0.014338379, -0.036889486, -0.051086817, -0.03542531, -0.09383664, -0.03048248, -0.062758334, -0.028940234, 0.045603212, -0.075775355, 0.0014069881, 0.009331123, 0.012998729, -0.012615066, -0.026677076, -0.053023964, -0.0021815724, -0.040635947, -0.023949098, 0.0050888406, 0.035099544, -0.007916465, 0.02799544, 0.011893443, -0.08148111, -0.052841537, 0.03368879, 0.02441648, 0.0013124814, 0.02130628, -0.024544535, -0.058400556, 0.055645157, -0.046144456, -0.0066863336, -0.029818418, 0.005708119, -0.022939328, 0.012232921, 0.024940846, -0.044065785, -0.06818633, 0.027960068, 0.04240173, 0.034367453, -0.014845005, 0.01627693, -0.016853804, 0.04075942, 0.025621627, -0.02869291, -0.030983964, 0.026259577, 0.054469906, -0.029935986, -0.014390239, -0.027871197, 0.07131677, -0.05102099, -0.032744516, -0.030765358, -0.009905045, -0.0068467692, 0.08040555, -0.03347864, -0.002910297, 0.0031314618, 0.014462988, -0.13363315, 0.0059578144, -0.07014295, -0.009337579, 0.026156839, 0.027503911, -0.009789552, -0.023150051, 0.018845044, -0.027244914, -0.0026503864, 0.02712364, 0.018251851, 0.01298018, 0.0027366497, 0.05834125, 0.009093538, 0.009668972, -0.0073944707, -0.018998573, -0.03734552, -0.012378084, 0.032504313, -0.019702652, 0.039581504, 0.019721273, 0.057308488, 0.043169133, -0.03123773, -0.060989812, 0.022502046, -0.0068008825, 0.039389547, -0.084450886, -0.04035295, 0.057700027, -0.00050506106, -0.02907926, 0.03149331, -0.013726547, 0.014494981, 0.0098662125, 0.016865969, 0.006498853, -0.03012536, 0.027651874, -0.0013178495, 0.036318135, 0.020815846, 0.007820676, 0.031960454, -0.0064794216, -0.0034824866, -0.02988633, 0.022331582, 0.022357756, 0.025762053, 0.05613925, -0.002951339, -0.09532309, -0.012641728, -0.009691864, -0.0076134806, -0.039436866, -0.018732928, -0.05105051, 0.0004224695, -0.016636118, -0.050642587, 0.04171258, -0.037869003, 0.007094657, 0.026206039, 0.015930314, -0.021269808, 0.029208604, -0.010510406, -0.003691449, 0.012027584, 0.07490873, 0.0076859654, 0.0012422692, -0.008421315, -0.021908749, -0.030609429, 0.010077861, 0.07318132, -0.021029865, 0.004922671, -0.022903662, 0.06680283, -0.030425927, 0.020814296, -0.0149459, 0.05558412, -0.0031724044, 0.04276168, 0.023198096, -0.0054730987, 0.0062849796, 0.05359196, -0.031787913, -0.049483355, -0.023382615, 0.004796857, 0.019081108, -0.0030211878, 0.02422581, -0.026773829, -0.05127656, -0.021052968, -0.00050132745, 0.0609809, 0.03134017, 0.010153211, 0.01582664, -0.054737087, 0.009798909, -0.045765884, 0.0039279843, -0.012534147, 0.02110847, -0.02769899, -0.01898523, 0.0021312595, 0.028887458, 0.023297848, 0.049737204, -0.027072461, -0.00495979, 0.02719563, -0.024832577, -0.05649043, -0.071196705, -0.019879488, -0.008535939, -0.023155397, -0.054086648, -0.0104476325, 0.0033159556, 0.029790677, 0.057516146, -0.03441515, 0.035972167, -0.062541574, 0.014369352, 0.048324943, 0.03058831, -0.016195, -0.005501854, -0.052813116, 0.031150755, 0.023716321, 0.052437164, 0.034980815, -0.014261104, 0.057523023, -0.014379507, 0.0286047, 0.068097934, -0.00878286, 0.013920852, 0.03193127, 0.022823095, -0.03331173, 0.021574374, 0.003908753, 0.001952409, 0.050232347, -0.07423716, -0.009536825, 0.029584108, 0.045192022, 0.030439008, 0.04906376, 0.049115896, -0.00024335882, 0.058511496, -0.02792659, -0.009078766, 0.054389864, -0.03164887, 0.0041472097, -0.034581795, 0.034479592, -0.0007016764, -0.021686817, -0.039659444, 0.02053041, 0.031691536, -0.079404734, -0.029523203, 0.012408274, -0.022420775, -0.018101715, 0.007193772, 0.041645415, -0.0011557111, -0.038149834, 0.08417177, -0.10148467, -0.020739388, -0.01541562, 0.052833293, 0.010027702, -0.011297162, 0.05314793, -0.06396402, -0.07064916, 0.002707656, -0.0078041973, -0.0031856613, 0.04297678, -0.020233361, -0.016069544, 0.015238566, 0.004181043, 0.024633078, 0.011789832, -0.0025481675, 0.0165151, 0.011314572, -0.04945736, 0.055663064, 0.02017491, 0.054325823, 0.038903054, 0.014722442, 0.06596505, -0.024350444, 0.018813878, -0.047946826, -0.028293313, 0.03983785, -0.010471318, -0.04365766, 0.019046314, -0.0018346205, 0.023350317, -0.02553625, -0.024812132, -0.023613978, -0.08863323, 0.029555159, 0.054307047, -0.005091054, 0.0061374786, -0.015297793, 0.024720378, -0.032666087, -0.07468445, 0.040427476, -7.208303e-05, -0.040665314, 0.009368582, 0.019337561, 0.000916348, -0.04842722, 0.021410491, -0.0070233657, 0.008805433, -0.004755361, 0.055918973, 0.0045465073, 0.026936026, 0.0045986027, 0.080756985, -0.031164413, -0.018482529, 0.018790722, 0.037219793, -0.026494034, -0.00811772, 0.05614895, 0.0055739735, 0.025147092, -0.00197407, -0.00070471986, 0.0389614, -0.021687934, 0.0142085, -0.04706796, 0.029180996, 0.007656477, -0.05140324, -0.0021478762, -0.010717683, 0.019469725, -0.027856698, -0.03803842, -0.018279657, -0.04492143, 0.010772071, -0.02264158, -0.04624761, 0.004223184, -0.027361808, 0.030465538, -0.050306253, 0.022363164, -0.022928955, -0.0046341075, 0.029003888, -0.010977961, -0.0049298503, 0.03648345, -0.034098774, 0.03213127, -0.07770269, 0.017496059, -0.021520544, 0.059803765, -0.030719098, -0.0023895728, -0.015481039, 0.014027855, 0.05801508, -0.040102076, -0.032284398, 0.0422697, 0.002379642, -0.010301989, -0.00085698836, -0.0525671, 0.02101967, 0.0063494965, 0.050315015, 0.007193944, -0.10043642, 0.038841765, -0.010239602, 0.034405597, 0.00639628, 0.042632237, -0.020363534, 0.048841648, -0.0287177, -0.035700385, -0.038258564, -0.02925317, 0.00041967345, -0.013236377, 0.030821392, 0.006921225, -0.019169945, -0.018754791, 0.023029367, 0.042876087, -0.030844068, -0.014317649, -0.000750746, 0.0054374053, -0.022538172, -0.028123865, 0.03011734, 0.032707952, 0.030547075, 0.045625165, -0.038363654, 0.025977846, 0.008233775, -0.012557981, -0.06141003, 0.020851217, 0.03428698, -0.044104137, 0.026490895, -0.024408916, 0.013743761, -0.020498872, 0.04198094, -0.07870701, 0.037769217, 0.02249016, 0.005948979, -0.053563964, 0.020285847, -0.017489642, -0.0043805875, 0.05829977, -0.06302524, 0.017295858, -0.08132339, 0.013158137, -0.06073016, 0.017032128, -0.025531393, -0.04509923, 0.059829094, 0.010226512, 0.0013620009, 0.034002934, -0.05697391, 0.017578242, -0.047308967, 0.030037163, 0.03279074, -0.005905309, 0.02369143, 0.04691858, 0.03144798, -0.01427057, 0.056057118, 0.014401, -0.0143596865, -0.05250289, -0.030614818, 0.090939276, 0.023203572, -0.011472663, -0.05769211, -0.016860414, -0.050268956, 0.051710125, 0.024255045, -0.023486657, -0.010327791, 0.0606762, 0.0030804977, 0.01617196, -0.0020615058, -0.009819955, -0.03944906, -0.01657209, 0.014453968, -0.014456935, -0.036715932, -0.021793842, 0.036037214, 0.0038030192, -0.014799769, -0.08721554, -0.034426816, -0.022325257, -0.046236426, 0.0081212325, 0.04716432, 0.0037364205, 0.03291267, -0.024706537, 0.020398775, -0.04222822, 0.05860378, 0.033912234, -0.0353174, 0.029409014, -0.030965233, 0.010953582, -0.09237108, 0.0011181314, 0.07473186, -0.04033037 ] }, { "values": [ -0.018837621, -0.013247064, -0.053674888, -0.052531224, 0.016748957, 0.024206905, -0.014784662, 0.016256195, -0.005990788, 0.027989391, 0.025119275, 0.03301043, 0.017668974, -0.014985215, -0.023053326, -0.071748205, -0.0041571083, -0.016046211, -0.05165021, -0.072438136, 0.0080627175, -0.020410985, -0.022697322, -0.07442238, -0.037590433, 0.027135897, 0.037072048, -0.048731532, 0.036101643, -0.0421675, 0.017362468, 0.0063762246, -0.030149885, -0.041416146, 0.067744136, 0.0076836892, -0.028906692, -0.01231145, 0.026526785, -0.033715654, -0.025688712, 0.023274893, -0.040445548, 0.013584113, -0.04417172, 0.013198058, 0.012356236, 0.026766194, -0.032173228, 0.052660048, -0.008509135, 0.023063803, 0.014681349, -0.021576209, -0.01195828, -0.03202154, -0.058917202, -0.06045912, 0.05552174, -0.0012792018, 0.011827769, -0.0103366915, -0.012401733, -0.022604244, -0.0072866124, -0.011807795, -0.0446901, -0.048822977, -0.049054515, 0.031636182, -0.04126401, 0.0016520346, -0.048406534, -0.008018342, -0.0056779822, -0.0042538466, 0.01266029, 0.01804894, -0.056932528, 0.024086183, -0.027652135, -0.021879304, 0.07789895, 0.017044961, -0.00039718105, -0.009898643, -0.00042568697, 0.0056243967, -0.025080714, 0.03669001, 0.04144916, -0.045269903, -0.026359694, 0.017287895, 0.060041882, -0.009507651, -0.0025075052, -0.09928585, -0.011069176, 0.0959103, -0.010792612, -0.0020347573, -0.019687403, -0.015377477, 0.039962094, 0.026172973, -0.019694656, -0.037226304, -0.026149545, -0.004197014, -0.0044588964, -0.032869454, -0.017868884, -0.0028582527, -0.010196277, -0.024379274, 0.046351332, -0.034593493, -0.0009992364, -0.03111706, 0.047381867, 0.0014778107, -0.01688651, 0.060293406, 0.03137996, -0.00065997697, 0.037807092, 0.018187398, -0.02321186, -0.05644383, 0.051772736, -0.12289228, 0.00440741, -0.008801775, -0.03130554, -0.035294186, 0.044960514, 0.03867018, 0.00080119114, -0.006474587, -0.008649933, 0.019427417, 0.0061471555, 0.028060008, -0.012782362, -0.050452422, -0.017245717, -0.0037210006, -0.021808092, -0.0071668015, -0.1019079, 0.0052462644, 0.03921281, -0.011193765, -0.04115847, -0.023367444, 0.10069005, -0.026668318, 0.051949546, -0.08323749, 0.014806989, -0.041209783, -0.012192049, 0.03668427, -0.03238956, -0.0013229243, 0.06402498, -0.087324135, 0.008318249, -0.030219335, 0.021352818, -0.042209238, -0.026863549, -0.08896991, -0.004224572, -0.002050569, 0.0022321008, 0.041595265, -0.0059421575, 0.01945135, 0.07405988, 0.004290442, 0.0121159395, 0.013469662, -0.0348725, 0.022299223, -0.028694678, 0.04889051, 0.028625127, 0.04268308, -0.032259807, -0.0030167091, 0.028556187, 0.04951654, 0.033566084, 0.0110348435, 0.07430918, -0.030595127, -0.006622582, -0.05493066, 0.05506171, 0.0047335527, 0.011547723, 0.02494854, -0.04145952, -0.038006384, -0.03026925, 0.008767106, 0.047999106, 0.012848181, -0.041488532, 0.012047164, -0.0030200111, -0.02806729, -0.038910817, -0.009987971, 0.081958115, 0.076408416, -0.0094185425, -0.0286258, -0.010213017, 0.01912979, 0.013292044, 0.0365161, 0.018619008, -0.0100502, -0.031562157, -0.04135137, -0.013605906, 0.00045875253, -0.021853197, -0.005943521, 0.011575408, -0.0256871, -0.0172686, 0.048915196, -0.028097464, 0.019668413, 0.024090849, -0.008394159, -0.0010430085, 0.021267049, 0.039394822, 0.029224653, 0.037530027, 0.049545966, 0.08010233, 0.101849504, -0.034155805, -0.03457906, -0.03920711, -0.031355396, -0.074298546, -0.016782487, -0.063518316, -0.046577666, 0.03428181, -0.084429726, -0.010778424, -0.016875355, -0.0032765665, -0.03304326, -0.03540562, -0.051431265, -0.016278649, -0.04391616, -0.0050637373, 0.005517547, 0.052882425, 0.0030796623, 0.031288266, -0.0056720707, -0.074555755, -0.067629546, 0.045240704, 0.012134308, -0.008122359, 0.040567618, -0.04063907, -0.06451121, 0.053909563, -0.03714152, -0.018218035, -0.014502171, 0.018847287, -0.021118246, 0.0072624767, 0.010022538, -0.038846157, -0.079060644, 0.04934722, 0.042075068, 0.046965927, 0.0031269544, 0.019872444, -0.028117228, 0.044005968, 0.033438105, -0.017810015, -0.038170576, 0.03504478, 0.043066926, -0.029822271, -0.0006443635, -0.039453562, 0.084816426, -0.041611895, -0.03194882, -0.04708821, 0.0084996205, 0.016970033, 0.0871528, -0.036660574, -0.0024514268, 0.0063820975, 0.017250374, -0.13241173, 0.011269059, -0.06323259, -0.04215874, 0.04636551, 0.028807351, -0.03942469, -0.019390495, 0.0043277605, -0.044559296, -0.0036745418, 0.016587839, 0.020660006, -0.0016735765, 0.016884483, 0.031789597, 0.012733013, -0.010304469, -0.024544729, -0.025349962, -0.048143435, -0.012561993, 0.028137235, -0.027325474, 0.042748936, 0.031998914, 0.059410922, 0.030144572, -0.032508627, -0.04288386, 0.015502284, 0.0015901681, 0.0687122, -0.05871424, -0.055716775, 0.043709204, 0.026285704, -0.016385185, 0.050226506, -0.005811858, 0.015073893, 0.023923555, 0.023459954, -0.013001322, -0.041423514, 0.03352453, -0.0064256405, 0.014924015, 0.011357312, -0.0011780031, 0.04152053, -0.016846593, 0.00016591568, -0.033963446, 0.004125507, 0.04198274, 0.035809748, 0.0206234, -0.0037672713, -0.09968411, -0.009215333, 0.0006125889, -0.0017664452, -0.016416922, -0.045999773, -0.048355613, 0.005723331, -0.011516441, -0.036304213, 0.063414164, -0.0409906, -0.01774716, 0.015719147, -0.0027891414, -0.023988917, 0.029652782, -0.0062915715, -0.025076235, 0.0009105091, 0.07319941, -0.0023846189, 0.012919203, -0.0013640275, -0.023876788, -0.033954754, 0.031162165, 0.045717705, -0.004123014, -0.0006851237, -0.033931524, 0.05760734, -0.037095167, 0.014305688, 0.0019697268, 0.03692535, -0.01592699, 0.044720817, 0.0026136998, 0.0076494394, 0.00882036, 0.02596839, -0.024420349, -0.052982956, -0.025657997, -0.0070713414, 0.006993365, -0.0011023706, 0.05176819, 0.003880645, -0.051110093, -0.00229407, -0.015597639, 0.06784183, 0.023607418, 0.031145068, 0.028554576, -0.04376032, 0.014566525, -0.03213825, -0.007132204, 0.011112968, 0.01779066, -0.03327383, -0.016477846, -0.005897246, 0.021479275, 0.043243136, 0.042129256, -0.045999993, 0.0038253902, 0.031509634, -0.035846148, -0.049309764, -0.064710476, 0.00086575723, 0.013701153, -0.015668754, -0.06316364, 0.008100608, 0.019577613, 0.029902747, 0.06956316, -0.031342503, 0.024087528, -0.05437631, 0.005202343, 0.036379464, 0.03593035, -0.0011306243, -0.009762465, -0.049941316, 0.034137767, 0.013213853, 0.033753797, 0.050307702, -0.014693029, 0.024103474, 0.0018773688, 0.022517648, 0.07459316, 0.014740252, -0.001574377, 0.017510403, 0.029092027, -0.029450757, 0.015160773, -0.011966006, 0.0030530507, 0.029609416, -0.0712995, -0.027128166, 0.02898083, 0.014903236, 0.025154598, 0.031792622, 0.052650496, 0.002487655, 0.05294118, -0.032063175, -0.022984492, 0.06950716, -0.03742331, -0.0051947986, -0.05324419, 0.050694916, 0.013180223, -0.023707444, -0.023778724, 0.034909144, 0.018241609, -0.04655465, -0.027850635, 0.02362665, -0.019512262, -0.033412136, 0.0023502083, 0.043090947, -0.0007663037, -0.055692837, 0.10125722, -0.097019546, -0.0032889575, -0.035072744, 0.061568797, -0.034444343, -0.020521274, 0.05365889, -0.07560203, -0.049705204, 0.0069924057, -0.014647242, -0.013338723, 0.037201937, -0.014275056, -0.023366181, 0.035840947, 0.014792866, 0.013705508, 0.0061779534, 0.026888568, -0.004305389, 0.0104085095, -0.045581516, 0.07907018, 0.01766573, 0.04381505, 0.061896324, 0.03468535, 0.06587836, -0.020022325, 0.016621824, -0.04163117, -0.0021198199, 0.0736119, -0.0067527774, -0.03959287, 0.0031046083, -0.005768491, 0.018202884, -0.01533311, -0.029399112, -0.024885744, -0.073150635, 0.0338709, 0.04939069, 0.0032595447, -0.014843444, 0.005614786, 0.0062787756, -0.017044729, -0.07495863, 0.04618124, -0.020147905, -0.045881018, 0.006339488, 0.0012819404, 0.009345735, -0.0559064, 0.020057686, 0.0015165292, -0.0053355126, 0.015737556, 0.060938288, -0.003043229, 0.053509973, 0.032288417, 0.056852903, -0.028311366, -0.01625696, -0.002276114, 0.03882382, -0.030007476, -0.0057216873, 0.039364003, 0.0133183235, 4.359358e-05, 0.016210113, -0.004678387, 0.029808447, -0.008977666, 0.010918251, -0.0462827, 0.029517053, 0.00516512, -0.05185752, -0.020059261, -0.020532869, 0.018350402, -0.014620435, -0.0064002485, -0.03459844, -0.032633986, 0.0147287045, -0.0064626606, -0.037193075, -0.006888672, -0.010145676, 0.0041373484, -0.039628997, 0.015962448, -0.029828278, -0.010748981, 0.043316063, -0.0061546834, -0.003085194, 0.052407827, -0.0287355, 0.049082007, -0.06285072, 0.001647805, -0.017286502, 0.04380072, -0.034648262, -0.0050980737, -0.028630024, 0.0032445772, 0.07444084, -0.037120838, -0.03351071, 0.037699293, -0.007759458, -0.013721669, -0.007317979, -0.05724389, 0.016283581, 0.003790255, 0.059642356, 0.038201366, -0.08573081, 0.022981094, -0.0052628764, 0.038199212, -0.0028969762, 0.01096006, -0.04765615, 0.015880883, -0.015329666, -0.02710287, -0.035292782, -0.029848225, -0.020340431, -0.023225132, 0.01636548, 0.014817948, -0.021437958, -0.027643435, 0.024742654, 0.048905846, -0.03343573, -0.010243786, -0.012854349, 0.015810592, -0.016527973, -0.041313317, 0.017833034, 0.023228597, 0.005044873, 0.04165386, -0.033792008, 0.016394481, 0.002948693, -0.014871144, -0.07113254, 0.035621304, 0.024870882, -0.04175799, 0.018371468, -0.016001081, 0.020698862, -0.0073892395, 0.04000914, -0.058215436, 0.0320814, 0.04049569, 0.021727638, -0.025826138, 0.012495666, -0.0060127336, -0.0018128228, 0.08307111, -0.044615436, 0.03672885, -0.07280882, 0.013172765, -0.051855836, 0.010940163, -0.023131933, -0.026713114, 0.048223432, 0.0042533767, 0.00068403454, 0.014857546, -0.0590503, 0.024156848, -0.0470053, 0.015159989, 0.02897138, -0.02166648, 0.009698195, 0.03135686, 0.027856594, -0.018186811, 0.050968055, 0.03040488, -0.015637146, -0.04529315, -0.04708856, 0.07114808, 0.022501677, 0.002414144, -0.078867525, 0.0066864807, -0.0509602, 0.048571885, 0.013608164, -0.012580396, -0.023928436, 0.059683524, 0.007298079, 0.031082366, -0.016666913, -0.0136197265, -0.024449708, -0.0150085455, 0.028280342, -0.010775297, -0.03318357, -0.012166263, 0.044680376, -0.016221292, -0.0102235535, -0.09307887, -0.023669884, -0.0014759278, -0.04460252, 0.031189417, 0.04391967, 0.006144893, 0.04932345, -0.029373096, 0.02065436, -0.03202436, 0.04097346, 0.03205704, 0.004780575, 0.02607762, -0.017254641, 0.013662334, -0.08521782, -0.0062500136, 0.09104269, -0.02257027 ] }, { "values": [ -0.01948264, -0.02141828, -0.04976951, -0.043680184, 0.0035028688, 0.03771508, -0.008630694, 0.025225932, -0.0028845663, 0.015832648, 0.028035497, 0.021081133, 0.026530562, 0.0010582573, -0.0007238152, -0.080856025, -0.0024682323, -0.020956976, -0.0692003, -0.06461649, 0.0106611205, -0.011503736, -0.031468, -0.060822327, -0.03706231, 0.012334851, 0.029226005, -0.05949968, 0.028908443, -0.024675854, 0.021512022, -0.004503399, -0.015788507, -0.031753667, 0.022279562, 0.028924271, -0.018020468, -0.0065859137, 0.0295175, -0.053834416, -0.014904775, -0.009498517, -0.055016965, 0.026875794, -0.03504409, 0.029347904, 0.0023741135, 0.025060575, -0.027483322, 0.032264285, 0.0029017674, 0.01957158, 0.002000062, -0.028959729, -0.04140085, -0.04666937, -0.052093286, -0.032431994, 0.0672483, 0.0022068303, -0.020107822, -0.0145878075, -0.037794754, -0.02277326, -0.014489777, 0.023003558, -0.038771328, -0.039050408, -0.04974325, 0.025372012, -0.07325414, -0.006427271, -0.050042722, -0.0047347606, -0.006235776, -0.016047984, 0.010789333, -0.0018626874, -0.02168983, 0.03345099, -0.009749223, -0.0110621415, 0.05974495, 0.014917649, -0.008760728, -0.007833165, 0.011975577, 0.019855563, -0.0265956, 0.038062174, 0.04590235, -0.03908072, -0.030462647, -0.0082890745, 0.072048396, 0.0022254118, 0.005780688, -0.091826, -0.010847222, 0.075108275, -0.036280006, 0.0044220085, -0.003976177, -0.023589702, 0.036312483, 0.04419734, -0.016898133, -0.018727722, -0.03346707, 0.0026755165, -0.0031670693, -0.045269683, -0.013507063, 0.02245125, -0.0037538854, -0.025144968, 0.05826805, -0.011333619, -0.012200195, -0.046143413, 0.007679891, 0.0039498718, -0.009267269, 0.08366443, 0.03261082, 0.0045439266, 0.022988502, 0.039892882, -0.02471309, -0.020003324, 0.06472209, -0.11988979, 0.044047307, -0.014839248, -0.028578313, -0.010995181, 0.06626946, 0.017565299, -0.01758542, 0.005528914, -0.011205406, 0.004035466, -0.012269228, 0.039205246, 0.006298323, -0.036975287, -0.0508995, -0.023052294, -0.0245551, 0.00058742886, -0.079086095, -0.011669344, 0.04446692, 0.0021379027, -0.055275746, -0.023772456, 0.09505588, -0.018266628, 0.049889836, -0.109097816, 0.032908887, -0.034244694, 0.0030032152, 0.03880784, -0.031630866, 0.030742513, 0.057679005, -0.06447517, -0.008370661, -0.031783387, 0.010107999, -0.066480644, -0.059012774, -0.071798444, -0.01976822, -0.007546786, -0.0019977107, 0.050501384, -0.018743318, 0.016294094, 0.06443916, 0.041649863, 0.010724935, 0.023653507, -0.03126641, 0.02318761, -0.006388182, 0.03562562, 0.040050488, 0.033985727, -0.026548196, 0.020715436, 0.023521958, 0.067351475, 0.022841241, 0.01969028, 0.08004125, -0.049505897, -0.017462926, -0.0507616, 0.0321407, 0.024849968, -0.001502902, 0.027367452, -0.048830353, -0.016066356, -0.008663535, 0.0070523457, 0.071255215, -0.011154562, -0.02671598, 0.0036915063, 0.0030285688, -0.010871003, -0.046801746, -0.015337764, 0.09892333, 0.056438576, 0.023937576, -0.03445217, -0.03122574, 0.02698576, 0.013738728, 0.043938383, 0.024670482, -0.016957374, -0.024163114, -0.041682173, -0.022907732, -0.026092075, -0.007859645, 0.013249917, -0.008465196, -0.009695429, -0.023692686, 0.058207586, -0.0034806225, 0.030226795, 0.008120066, -0.013307677, 0.028534021, 0.0034150938, 0.030809997, 0.002554684, 0.03369766, 0.041843742, 0.072039045, 0.055820167, -0.017692031, -0.03834024, -0.018082066, -0.046653803, -0.053985883, -0.019698134, -0.04983788, -0.04521382, 0.021568703, -0.08675056, -0.010531274, -0.007721977, 0.009319889, -0.017971136, -0.017977532, -0.0424975, -0.012568911, -0.0064748903, -0.0021689234, 0.016388707, 0.023356015, -0.013202885, 0.0069994396, 0.004159121, -0.08094088, -0.044246923, 0.035689536, 0.00829459, -0.005578699, 0.034023266, -0.054178182, -0.057297308, 0.069629245, -0.036399927, -0.0043817526, -0.02593355, 0.0055717924, -0.008066398, -0.017219974, 0.03350923, -0.039892305, -0.076746956, 0.030040242, 0.058065172, 0.041403506, 0.0047042486, 0.043851994, -0.033991113, 0.033462316, 0.025539437, -0.040824905, -0.032507114, 0.046670012, 0.044615388, -0.022388795, 0.017307274, -0.028318549, 0.08171904, -0.029634757, -0.01253872, -0.03928372, 0.0011558261, 0.0020672577, 0.055953495, -0.05463681, -0.03975265, 0.008221598, -0.004401743, -0.1261366, -0.0052840402, -0.04497584, -0.050333783, 0.0037399477, 0.015200081, -0.02462612, -0.011549841, -0.008917408, -0.033163372, 0.007732695, 0.0450349, 0.012441869, 0.0059230467, 0.008778211, 0.011039872, 0.006554336, -0.011869466, -0.016372358, -0.0032012542, -0.053924363, -0.005840731, 0.026996365, -0.03392544, 0.065648295, 0.0009797132, 0.04543619, 0.057505358, -0.015811143, -0.046869423, 0.025375811, -0.017933987, 0.040005244, -0.091680035, -0.02908161, 0.052814383, -0.005894951, -0.039965242, 0.03759557, 0.019991409, -0.0008067667, 0.021713328, 0.0071119657, 0.01766716, -0.033959784, 0.03341827, -0.003136268, 0.01671077, 0.039177127, 0.014443127, 0.036505796, -0.0051304884, -0.008868128, -0.014353925, 0.02883308, 0.04411904, 0.03846482, 0.030301707, 0.023113841, -0.06680863, -0.0067145093, -0.00560687, 0.010668828, -0.014991794, -0.04180424, -0.04403676, 0.0076485747, -0.008825424, -0.0262369, 0.035789326, -0.038541157, -0.004035732, 0.009427456, 0.0017700281, -0.01606281, 0.04751728, -0.00276743, -0.024780571, 0.011284861, 0.1065455, 0.0015683799, 0.028763568, 0.0010898969, 0.0041656718, -0.017317262, 0.005585595, 0.061761037, -0.022201069, 0.0017419127, -0.032302443, 0.070915185, -0.023202995, 0.03980615, -0.021605873, 0.057167437, -0.00049767515, 0.044685714, 0.006774487, -0.00096033886, 0.021512687, 0.032152522, -0.05263492, -0.04761869, -0.009197191, -0.02672962, 0.009906085, -0.013598262, 0.04335769, 0.004343689, -0.040164758, -0.010417992, -0.014815957, 0.066988155, 0.020944424, 0.024276026, 0.029598292, -0.032901116, 0.014401041, -0.03380645, -0.011941259, -0.005268329, 0.022084665, -0.050355945, 0.012014628, -0.009904405, 0.037435293, 0.041923735, 0.044685848, -0.049316555, -0.012368249, 0.02667364, -0.040269572, -0.04251418, -0.08178636, -0.00920286, -0.009968246, -0.0017536433, -0.045513067, -0.014103469, 0.03311211, 0.03065249, 0.059968874, -0.017388474, 0.025213046, -0.056793984, 0.0045822733, 0.028264258, 0.036366757, -0.025020206, -0.01726694, -0.04487432, 0.028803902, 0.015298271, 0.049530935, 0.037171334, -0.010577553, 0.029249331, -0.012052429, -0.00075084117, 0.055865474, 0.005579391, 0.010411856, 0.004384067, 0.030366242, -0.039821927, 0.00895082, -0.00059116207, 0.008991146, 0.028092317, -0.06580388, -0.01701821, 0.06418303, 0.023507232, 0.018314952, 0.046640247, 0.061816636, 0.006834016, 0.04258063, -0.034476224, -0.025237015, 0.08199529, -0.030867156, 0.008837546, -0.019333258, 0.070375934, 0.0075867125, -0.037607905, -0.049037665, 0.02877205, 0.045018896, -0.046469558, -0.020043949, 0.018268872, -0.011213905, -0.01922053, 0.0012638965, 0.018984325, -0.0093225585, -0.050399903, 0.0825708, -0.09655955, -0.0072678817, 0.0140540395, 0.058849055, 0.013360147, -0.015892005, 0.041737467, -0.06293298, -0.04765837, 0.014094457, -0.017378954, -0.0183464, 0.064916365, -0.01645096, -0.043328345, 0.02110871, -0.0075245323, 0.03577072, 0.010865749, 0.022235371, 0.0027798375, 0.010930639, -0.04398007, 0.08537592, 0.015393145, 0.06406332, 0.053452116, 0.03545101, 0.084094815, -0.00096659904, 0.008640428, -0.050974507, -0.0024254494, 0.07225218, -0.02387422, -0.024578622, 0.0039043825, -0.007230422, 0.011142701, -0.014657935, -0.038889106, -0.029893426, -0.06055369, 0.018433666, 0.047738686, 0.00047874206, -0.006885205, -0.010586297, 0.027811797, -0.011457764, -0.07971016, 0.042836703, 0.0018989211, -0.031396408, 0.0031100148, 0.0101042455, -0.0012924492, -0.015980868, 0.014426045, 0.02046166, -0.012077706, 0.019630086, 0.036453202, -0.007442274, 0.04381752, 0.038083605, 0.06418697, -0.025523009, -0.00730985, 0.00094215025, 0.033599302, -0.019663446, 0.010600939, 0.05053264, 0.0037959793, 0.02041781, 0.028686386, -0.01194304, 0.041033175, -0.035256606, 0.003004261, -0.03736228, 0.045669965, 0.015139471, -0.0552878, -0.0019499538, -0.018407535, 0.036827706, -0.02468307, -0.022215914, -0.026081966, -0.02474857, 0.017657695, -0.0049499744, -0.054990396, 0.0027580268, -0.02818693, 0.016262382, -0.031704463, 0.019240212, -0.021922529, 0.009728422, 0.034927405, -0.011030224, -0.012921355, 0.04262824, -0.055372056, 0.04274384, -0.08843831, 0.010543596, -0.011339181, 0.026524752, -0.035814818, -0.014924201, -0.04231819, 0.020671422, 0.07629214, -0.038910747, -0.020808019, 0.040889055, 0.013532148, -0.012667908, -0.03867928, -0.07230634, 0.0019856761, -0.009019558, 0.0723069, 0.026662683, -0.08094016, 0.025815902, 0.003187778, 0.04572745, 0.01046447, 0.028386004, -0.025376566, 0.049513232, -0.0045112097, -0.02524939, -0.069412455, -0.019831188, -0.017077219, -0.025010772, 0.017797818, -0.023892859, -0.029315382, -0.019213991, 0.0053695044, 0.032795127, -0.04066433, 0.018092176, 0.0034417857, 0.009750634, -0.018140001, -0.020106677, 0.024474291, 0.01216195, -0.026935728, 0.049655028, -0.0064738733, 0.012829006, -0.0002802337, -0.02592906, -0.060905688, 0.039189614, 0.028975464, -0.05372166, 0.0403211, -0.0107634775, 0.025684955, -0.013518835, 0.04492391, -0.04467289, 0.032201603, 0.046929464, -0.004729505, -0.05973945, 0.029031128, 0.011577683, 0.01813904, 0.09289833, -0.04796982, 0.021242283, -0.06380869, 0.025217887, -0.04455674, 0.0069654584, -0.013921739, -0.054903924, 0.03323598, -0.012199926, 0.008987274, 0.0060363715, -0.050473716, 0.053052396, -0.02884179, 0.024987204, 0.039784778, -0.01834286, 0.011324991, 0.036254678, 0.040558267, -0.023034029, 0.044764426, -0.0045749256, -0.021130066, -0.04812497, -0.050197955, 0.0895548, 0.0461643, -0.007889693, -0.0509932, 0.008876679, -0.044751775, 0.030783286, 0.0061657373, -0.0050359676, -0.04113381, 0.05452876, 0.00997938, 0.03944787, -0.020187814, -0.028179398, -0.03569761, -0.038252182, 0.03066034, 0.0046503874, -0.052157037, -0.022597192, 0.044818234, -0.015186795, -0.011930668, -0.07811392, -0.033737898, -0.008760061, -0.03623258, 0.03589235, 0.05609699, 0.027228456, 0.04525742, -0.0027539134, 0.049748916, -0.02645142, 0.048613723, 0.009985524, -0.0052875825, 0.030603344, 0.010590393, 0.01734517, -0.087854214, -0.012511034, 0.07604532, -0.009694014 ] }, { "values": [ -0.0006253157, -0.03685229, -0.05163547, -0.061533492, 0.021158544, -0.009139856, 0.004570594, 0.026223073, -0.0039895508, 0.03876073, 0.026194433, 0.047541197, 0.017202538, 0.0060340166, -0.03863583, -0.040635694, 0.0034164886, -0.019158468, -0.056858055, -0.047529303, -0.021647394, -0.00531462, 0.002384746, -0.064376675, -0.0002859261, 0.033115998, 0.0038212612, -0.096376605, 0.034406397, -0.028765947, 0.014634483, 0.012874324, -0.012094693, -0.009593849, 0.062043138, 0.017411225, 0.009681506, -0.0015446952, 0.014038436, -0.023967031, -0.022589473, -0.0088071115, -0.036615707, 0.004313762, -0.050100002, 0.02886244, -0.012137382, 0.027814295, -0.012579597, 0.034957483, 0.040560555, 0.02886545, 0.0072791665, 0.0059761545, 0.0024948854, -0.01771876, -0.070270374, -0.060039777, 0.07803158, 0.009661166, 0.009989671, -0.007190106, -0.021449191, -0.019924326, 0.0031288657, -0.021169862, -0.0008881642, -0.070536725, -0.054830994, 0.015981497, -0.073624074, 0.028572252, -0.044256542, 0.011312506, -0.011928344, -0.034560353, -0.0061167125, 0.04140507, -0.0351338, 0.016532514, -0.028780188, 0.0052808467, 0.08275007, 0.028112615, 0.023818012, 0.016747586, 0.029804008, -0.00012805244, -0.02479938, 0.019100314, 0.09023318, -0.05154792, -0.02238509, 0.0070154215, 0.05673154, -0.060988717, 0.002487388, -0.08515484, -0.036833297, 0.09049365, -0.027272925, -0.0337314, -0.03882718, -0.013542001, 0.06376813, 0.0761636, -0.011665597, -0.037438992, 0.0010424725, 0.05215544, -0.03872656, -0.06359866, -0.030618891, 0.02457453, -0.00061836257, -0.047774326, 0.029153723, -0.0053286594, -0.034238927, -0.051109627, -0.0020536208, -0.00442159, -0.022677531, 0.053847123, -0.012271186, -0.008186121, 0.027277611, -0.00043289346, -0.022410495, -0.07078388, 0.05574161, -0.11557601, -0.001056444, 0.003204987, -0.0461516, -0.017523052, 0.028343074, 0.040855277, -0.026379425, 0.019536164, 0.0024982903, -0.028899392, -0.004858294, 0.015924677, 0.014222049, -0.047661584, 5.0976374e-05, -0.012059626, -0.04112341, 0.007348751, -0.06654601, 0.020057062, 0.04134574, 0.0043975487, -0.039702985, -0.013011522, 0.0956132, -0.046976205, 0.060118783, -0.0831902, 0.0135878725, -0.012689186, 0.0023910187, 0.03432149, -0.04976444, 0.009592579, 0.05581667, -0.054528844, -0.023716252, -0.03297839, 0.0047081932, -0.0440463, -0.028296694, -0.087737285, -0.022023365, 0.020972922, -0.029212423, 0.045734283, -0.023921307, 0.025904035, 0.067612536, 0.007884137, -0.004366112, 0.0066617, -0.01741143, -0.00044910997, -0.023515422, 0.052938815, 0.029019704, 0.037364066, -0.025347311, -0.011183567, 0.025320629, 0.05568411, 0.04848691, 0.03749519, 0.07376134, -0.026625995, 0.02108161, -0.04870192, 0.037640166, 0.033689786, -0.022193309, 0.0039410735, -0.03062412, -0.04466256, -0.03163943, -0.010469849, 0.06307068, -0.00023046884, -0.03075603, 0.015443019, -0.0094203, -0.035190582, -0.051846113, 0.0015284321, 0.07905307, 0.052093055, 0.010359009, -0.02502957, -0.016010249, 0.005043823, 0.017320493, 0.017264964, 0.0286515, -0.036058772, -0.053035095, -0.0475106, -0.0025590481, -0.027625648, -0.034168284, -3.7866164e-05, 0.0015796254, -0.026877154, 0.02188492, 0.032525532, 0.021262841, 0.027902873, -0.007318246, 0.013666325, 0.0043824175, 0.02461232, 0.032212492, 0.005658055, 0.02702683, 0.029463543, 0.080721185, 0.05526655, -0.04225178, -0.008761452, 0.013172275, -0.04147338, -0.072106734, -0.005560901, -0.035626058, -0.044844523, 0.041347392, -0.084933415, -0.01687871, -0.018260688, 0.0018797063, -0.009124494, -0.030199638, -0.055012636, -0.03435653, -0.0533474, -0.038628366, 0.0039443513, 0.06151845, 0.029470723, -0.006583897, 0.026102701, -0.08483856, -0.045859035, 0.03218582, 0.040275883, -0.02273351, 0.02657616, -0.061509352, -0.05719464, 0.07775147, -0.011729153, -0.049792502, -0.05178119, -0.008405533, -0.03626805, 0.001908832, 0.045563176, -0.04173056, -0.06178445, 0.06591729, 0.028686289, 0.03762128, 0.01651417, 0.04623694, -0.037025385, 0.022529986, 0.01802481, 0.0114551205, -0.03147608, 0.009095607, 0.044278443, 0.011927266, 0.013252711, -0.007697042, 0.08174701, -0.033269234, -0.043414697, -0.032624517, -0.00044274755, -0.0048283506, 0.04773956, -0.024897024, -0.03313337, 0.0137759745, 0.014973563, -0.094842345, 0.0034433329, -0.037206966, -0.052403938, -0.024410708, 0.031811327, -0.034989223, -0.0058015697, 0.0011478756, -0.017339291, 0.003765224, -0.0009991754, 0.012890967, -0.010642521, 0.00079729425, 0.021703169, 0.007437569, -0.01852326, -0.008139425, 0.011591298, -0.040998086, -0.011423587, 0.037656166, -0.022955082, 0.049311038, 0.0002460253, 0.04451065, 0.026784651, -0.014370742, -0.049838714, 0.014809551, -0.019045345, 0.01813425, -0.049430996, -0.049247503, 0.05356514, -0.01600609, -0.014421731, 0.03582339, 0.041072488, 0.02968048, 0.062168576, 0.012930916, 0.01667877, -0.033917964, 0.014785106, 0.006880946, 0.00023117373, 0.018451149, -0.00822453, 0.03703423, 0.0158236, -0.021677496, -0.026013043, 0.019500654, 0.0501575, 0.038352013, 0.020193312, 0.02712891, -0.07792847, -0.021838695, 0.00635929, -0.01543686, -0.013987433, -0.056901757, -0.023200119, 0.008658642, -0.02611712, -0.023478098, 0.04368871, -0.04499384, -0.030547524, 0.025727019, 0.03374307, -0.017468281, 0.040031828, -0.0310397, -0.033720087, 0.018378261, 0.067747556, -0.002102934, 0.026449919, -0.005251279, -0.02797002, -0.028206777, 0.009679941, 0.053455506, -0.025647452, 0.00792793, -0.023367668, 0.07043, 0.01844562, 0.04234309, -0.01844801, 0.04431987, -0.0066002477, 0.047959864, 0.0008878033, 0.012396499, 0.037163842, 0.035718393, -0.03953603, -0.031067561, 0.026717527, -0.0035367538, 0.012694641, -0.01793023, 0.04962912, 0.022714693, -0.068553604, 0.017855922, -0.0026793599, 0.018581714, 0.0027064977, 0.010487627, 0.014858345, -0.020777512, 0.026407246, -0.062806934, -0.022784078, 0.021338487, 0.018236678, -0.018990405, -0.023623465, 0.026512304, 0.037212446, 0.037655167, 0.03642663, -0.029618198, 0.019089568, 0.035996757, -0.02488554, -0.058529492, -0.08177395, 0.017351963, 0.03726108, 0.007729806, -0.049353708, 0.0027879493, 0.00033688277, 0.012517954, 0.0571753, -0.0053594564, 0.004735687, -0.054731093, -0.011941619, 0.024877053, 0.038306363, -0.0056070476, -0.007610285, -0.050823417, 0.023923624, 0.033137374, 0.028061895, 0.05047737, -0.02440506, 0.009796709, 0.021872185, 0.034259707, 0.040543985, 0.0014823154, -0.0020517504, 0.013430634, 0.025152067, -0.029836142, 0.023082659, -0.0027967491, 0.0048117223, 0.013802495, -0.07224426, -0.05520531, 0.017687347, 0.025034899, 0.03421334, 0.00751211, 0.05353998, -0.0113141155, 0.062473647, -0.032913648, -0.010152982, 0.08649543, -0.010851191, -0.0060383687, -0.036215875, 0.079538256, 0.009954426, -0.028975235, -0.0040974845, -0.007488659, 0.040206064, -0.039028816, -0.0041502262, 0.015065633, -0.008193853, 0.00053767604, -0.0073692827, 0.033841822, -0.035650317, -0.05923469, 0.0887294, -0.061502144, 0.024487734, -0.030729078, 0.06547797, -0.034160808, -0.026187807, 0.047766753, -0.0563218, -0.05662689, 0.032098588, -0.019996766, -0.0017387641, 0.05172564, -0.032483995, -0.02807637, 0.033794295, 0.03437993, 0.017305927, 0.014970082, 0.038048044, -0.0012452512, 0.01265109, -0.045099847, 0.08134959, 0.022288978, 0.01010748, 0.06810607, 0.035258424, 0.06261365, -0.010514909, 0.030226419, -0.051773813, 0.0006519057, 0.08868592, -0.05201551, -0.036131874, 0.022172816, 0.012647073, -0.014472858, -0.047734935, -0.03048335, -0.047196336, -0.05248241, 0.0141346, 0.056665316, 0.0060806987, -0.02433746, 0.0064463792, 0.029020471, 0.0055453237, -0.055319652, 0.06916774, -0.00036539044, -0.01096071, -0.022667335, 0.01336928, -0.0042733056, -0.046096906, 0.034151, 0.011953697, -0.021139959, 0.011638645, 0.04070274, 0.009414834, 0.0445927, 0.020243248, 0.0691587, -0.020977959, -0.025468813, 0.009677907, 0.026139498, -0.043742996, -0.02178624, 0.044987492, -0.01084881, -0.008873603, 0.023165673, -0.018761085, 0.06033206, -0.027519235, -0.039452735, -0.033273343, 0.004303714, 0.026373861, -0.046815503, -0.009420616, -0.040295098, 0.027102165, 0.006550617, 0.011044407, -0.01996728, -0.016946698, 0.0041724667, 0.01873031, -0.04418052, 0.0062688915, -0.025543839, 0.0036675362, -0.05831494, 0.0423366, -0.015136053, -0.021110587, 0.017863343, -0.027079865, -0.009931521, 0.061341356, -0.04325029, 0.010436138, -0.06229517, 0.03229799, -0.015575037, 0.024867978, -0.029343931, 0.0054047736, -0.044731498, 0.018584868, 0.075819165, -0.023228625, -0.033624806, 0.030435108, 0.030234603, -0.0067922473, -0.011879548, -0.052691255, 0.0068724393, 0.013267112, 0.055312213, 0.04714915, -0.06760321, 0.027774613, 0.013193397, 0.03390441, 0.017194174, 0.012023585, -0.038577046, 0.009759403, -0.008360667, -0.03250084, -0.055671714, -0.022029135, -0.0058620153, 0.00081680383, 0.01929709, 0.00378673, -0.022819456, -0.052435286, 0.030154137, 0.018898949, -0.0393535, 0.019792749, -0.0028154354, 0.00830372, -0.020558052, -0.028760495, 0.009797521, -0.0005401387, -0.0029704664, 0.038022034, -0.031338356, 0.034905706, 0.0074860915, 0.0059109274, -0.05980589, 0.038648143, 0.0115403915, -0.05538417, 0.010594672, -0.019451184, 0.008886729, 0.005994168, 0.027986886, -0.053020775, 0.06351689, 0.029977504, -0.011452465, -0.044455405, -0.03565955, 0.0097444905, 0.015560551, 0.04856031, -0.03475934, 0.04320738, -0.0811569, 0.045298308, -0.031635523, 0.011565478, -0.053526063, -0.014662129, 0.02453828, 0.0039067287, 0.017891666, 0.0029125407, -0.061941274, 0.024446893, -0.04286283, 0.014179984, 0.06538582, 0.0031122444, 0.018137103, 0.036597725, 0.04897637, -0.0054864497, 0.053924724, 0.009059506, -0.024602648, -0.032721944, -0.057101227, 0.0685169, 0.034074914, 0.02307567, -0.07588942, 0.02581694, -0.041153166, 0.07670222, 0.016725978, -0.030511567, -0.036289744, 0.064783126, -0.002998803, 0.018419981, -0.05970313, -0.029293757, -0.018016465, -0.055845484, -0.0022603835, -0.021150125, -0.031435087, 0.006739255, 0.016602537, -0.023879811, -0.008692778, -0.07481173, -0.021621674, 0.0031915002, -0.04224811, 0.023936464, 0.029249044, -0.0027745166, 0.033992272, -0.023043832, 0.033757582, -0.02481528, 0.050375033, 0.005311688, 0.023123274, 0.005994977, -0.0036858208, 0.0077833706, -0.09627519, 0.018074147, 0.07281788, -0.04399611 ] }, { "values": [ -0.016888078, -0.02454832, -0.029074393, -0.074059986, 0.016216623, 0.0028063843, -0.01760366, -0.0037393577, 0.00691296, 0.055524822, 0.017928084, 0.03657075, 0.050420046, -0.029921085, -0.011578906, -0.018398225, 0.019336868, 0.00634822, -0.07438638, -0.0256493, 0.010524466, -0.011119647, -0.008018146, -0.07361609, -0.016968435, 0.022879854, 0.03888817, -0.07107393, 0.010301027, -0.03741515, 0.0018693215, 0.03386679, -0.0401159, -0.032360643, 0.07617537, 0.031120038, -0.039716005, -0.009995016, -0.004242441, -0.055872083, -0.041649703, 0.0017373883, -0.03305346, 0.014587019, -0.059869908, 0.010664618, -0.005684715, 0.049047742, -0.01422349, 0.035922132, 0.03901408, 0.01214229, -0.008304635, 0.008051027, 0.022564773, -0.065893106, -0.12394778, -0.047798492, 0.07197453, 0.016300155, 0.004003667, -0.021216376, -0.024940955, -0.031203112, -0.02846028, -0.02204925, -0.0107269455, -0.0470046, -0.052301116, 0.013447322, -0.038075484, 0.028299874, -0.060711775, 0.05482414, -0.005433425, -0.050356947, 0.0034353675, 0.00062240986, -0.026673378, 0.03113521, -0.015064412, 0.0013040499, 0.050751876, 0.016398707, 0.028637407, 0.017219856, 0.019989703, -0.029895514, -0.033253208, 0.03593761, 0.061873257, -0.033667907, -0.009833776, 0.011496465, 0.043621574, -0.061359737, -0.017742999, -0.084125504, -0.026735047, 0.08671386, -0.044216685, -0.029072346, -0.003229425, -0.030845286, 0.052494165, 0.05709828, -0.030795708, -0.03324761, -0.011423064, 0.03159573, -0.05893872, -0.03355178, -0.00822303, 0.028841095, -0.0026513333, -0.01599705, -0.00804131, -0.012810591, 0.004005359, -0.06710916, 0.021055985, -0.0026013835, -0.05324189, 0.043093648, 0.033338346, -0.019663265, -0.04016069, 0.014320253, -0.04500828, -0.05665543, 0.09020289, -0.107750066, 0.0065913396, -0.009538377, -0.044312373, -0.03176614, 0.07788721, 0.035492178, -0.0027871884, 0.020305077, -0.009075978, -0.0021933168, -0.011883109, 0.04800526, 0.004495933, -0.036768857, -0.002829576, -0.011406427, -0.017623832, 0.01219134, -0.037975047, 0.004048301, 0.0359007, 0.009031532, -0.037068233, 0.030977942, 0.10036763, -0.042101543, 0.03442784, -0.080682494, 0.00031842839, -0.018476607, -0.0051149246, 0.039319284, -0.024193708, 0.01203967, 0.03175866, -0.05349514, -0.018674165, -0.05732715, -0.0033467961, -0.02434066, -0.046929646, -0.06891622, -0.033844832, 0.014522593, -0.018075628, 0.034326043, -0.038909424, 0.020862805, 0.030892817, 0.023651456, 0.0017390581, 0.016062642, -0.0003179216, 0.0068339617, -0.026531544, 0.021765493, 0.037118845, 0.0344421, -0.052443378, -0.0011670914, 0.030029966, 0.067674644, 0.026573177, 0.051656947, 0.078060746, -0.053348415, 0.021099577, -0.043129858, 0.0445894, -0.0082965195, -0.025390543, 0.0124394465, -0.03310308, -0.02629824, -0.037955567, 0.0046849377, 0.04911121, -0.029012641, -0.0056568687, 0.007835634, 0.022902945, -0.04361985, -0.054217357, 0.03278257, 0.09163089, 0.038401965, 0.015649345, 0.00033454507, -0.036679693, -0.00071685144, 0.010215253, 0.0036806965, 0.005065906, -0.023661856, -0.042010214, -0.031465076, -0.025898367, -0.027346825, -0.028068094, 0.002300739, 0.0033400683, -0.01495496, 0.0040264516, 0.016038755, 0.049827233, 0.021785012, -0.007183879, -0.0066264463, 0.020399751, 0.019135872, 0.037616365, -0.009017875, 0.018239703, 0.03079033, 0.07538341, 0.056852743, -0.04133776, -0.0197388, 0.008405472, -0.04394479, -0.059343647, 0.021798106, -0.036962785, -0.039892852, 0.03193134, -0.08551575, -0.023053305, -0.012367288, 0.01724575, 0.006112219, -0.03829022, -0.02389585, -0.023824362, -0.051344987, -0.02258081, -0.0077568647, 0.04723217, 0.022260327, -0.012706817, 0.02657707, -0.08688999, -0.037780654, 0.036553048, 0.038708147, -0.029512925, 0.016337747, -0.0549735, -0.040001824, 0.059887473, -0.0342246, -0.062987305, -0.05723665, 0.000117953416, -0.047762472, -0.020437684, 0.041235663, -0.06518404, -0.04751652, 0.06551766, 0.01912236, 0.026546644, -0.028208219, 0.013932661, -0.023541087, 0.024335789, -0.017605312, 0.0012806578, -0.030087963, 0.01887725, 0.04759657, 0.0117945485, -0.019887311, 0.006772521, 0.042835157, -0.024481304, -0.037444886, -0.003596705, 0.010859883, 0.015745226, 0.023055548, -0.018225996, -0.008650535, 0.018476354, 0.007621543, -0.11571697, 0.012944439, -0.026914338, -0.050271105, 0.019156056, -0.0067323768, -0.0389682, -0.029410522, 0.021445658, -0.010050023, -0.012611973, 0.011130222, 0.0005164928, -0.036265366, 0.013002039, 0.028424654, 0.02516028, 0.028677523, -0.0017869158, -0.01867671, -0.027979555, -0.0014329957, 0.05817803, -0.035874013, 0.049806084, -0.0059586386, 0.073683634, 0.05575633, -0.006859174, -0.050293304, 0.013237058, -0.013869138, 0.021061316, -0.04462533, -0.04683871, 0.06504196, 0.012506239, -0.01653483, 0.03907238, 0.026001435, 0.032049313, 0.03832107, 0.029863024, 0.00014755811, -0.016765151, 0.016950788, 0.007705783, -0.016938457, 0.041844714, -0.0012001441, 0.013982858, 0.0021448731, -0.016425258, -0.035068844, 0.032390375, 0.042126447, 0.015628183, 0.025383871, 0.02482934, -0.065035224, -0.0044660293, -0.015405476, 0.004200434, -0.009892984, -0.05868847, -0.028146211, 0.012227667, -0.01516002, -0.043053746, 0.04210786, -0.060680047, -0.030870536, 0.04445115, 0.012261582, -0.006364833, 0.055828493, -0.021917112, -0.024265025, -0.01033313, 0.08535757, -0.025570888, 0.022408629, 0.019520905, -0.041179046, -0.042331047, -0.012126626, 0.087430924, -0.005932416, 0.014994671, -0.003774683, 0.059006616, 0.03578714, 0.040009942, -0.028427929, 0.06267888, 0.049751267, 0.039632432, 0.004133078, -0.0087148, 0.016771562, 0.029761279, -0.01736548, 0.010325013, 0.020208701, -0.04288293, 0.024719324, 0.0052186404, 0.03514198, 0.014735447, -0.070383534, 0.0038540105, -0.015695995, 0.0072258157, -0.016530441, -0.007195952, 0.024424996, -0.02481094, 0.021280654, -0.041844603, -0.015002549, 0.010040238, 0.016158951, -0.043401, -0.026567312, 0.01586599, 0.007567453, 0.03543782, 0.036226872, -0.011026396, 0.035767432, 0.04131483, 0.023245566, -0.0762898, -0.05933162, 0.0064166873, 0.027794134, -0.014193186, -0.041718755, -0.015997583, 0.0039209565, 0.039659925, 0.051882785, -0.014461612, 0.03873251, -0.0787462, -0.009210534, 0.024810117, 0.03904975, 0.0040123817, -0.021671372, -0.075558245, 0.020475, 0.0010578209, 0.060004354, 0.057188865, -0.028642833, 0.023007475, 0.0013677453, 0.037104584, 0.038338564, -0.015585617, -0.011562218, 0.017785486, 0.030382358, -0.05957719, 0.020982644, 0.02289904, 0.024528045, 0.035100132, -0.08732924, -0.039587207, 0.03733602, 0.06381881, 0.021170214, 0.022260344, 0.04925876, -0.021063687, 0.06943261, -0.029483696, -0.022650274, 0.04864419, 0.0005306815, -0.0069535743, -0.01794533, 0.057663128, 0.005605907, -0.02333189, -0.028400702, 0.02548903, 0.02602392, -0.02367298, -0.0078041735, -0.0014524232, -0.0075961244, -0.016136771, 0.008118839, 0.055035282, -0.006404078, -0.042640503, 0.05985941, -0.06924581, 0.0017250893, -0.01396215, 0.04662544, -0.038533326, -0.03986657, 0.028091516, -0.05101084, -0.028140442, 0.01814971, -0.010292847, 0.008148355, 0.044857375, -0.013082081, -0.03611738, 0.024674686, 0.023264827, 0.017724056, 0.0129024135, 0.037532274, 0.0014538986, 0.026784644, -0.04128041, 0.06370946, 0.0051419316, 0.020226533, 0.0711235, 0.026200807, 0.055957217, -0.023760485, 0.05911159, -0.036503274, -0.011682854, 0.07980378, -0.032340847, -0.010607026, 0.021607604, 0.037578195, -0.019213164, -0.04687239, -0.03874584, -0.043738715, -0.077277236, 0.020492962, 0.042846583, 0.020299409, -0.022552965, 0.0034600527, 0.025217446, 0.011849037, -0.024805497, 0.078943186, 0.0023773299, -0.037707906, -0.005779778, 0.007923448, -0.002549725, -0.02738869, 0.027548376, 0.0088231135, -0.02944313, 0.0022716296, 0.027312614, -0.005012804, 0.056667484, 0.013759184, 0.07507213, -0.05051694, -0.010727462, 0.012118248, 0.019926226, -0.0143402, -0.011799371, 0.036112573, 0.014252626, 0.024493683, 0.027572721, -0.023854474, 0.086413115, -0.03152996, -0.029934362, -0.015600179, 0.019894997, 0.017556177, -0.04380666, 0.037724566, -0.053498283, 0.030567987, 0.0012104698, -0.034520347, -0.023589278, -0.006788738, 0.029508986, -0.031050649, -0.030575829, 0.036894623, 0.002818555, 0.010451037, -0.046523966, 0.030481564, -0.034523506, -0.03197139, 0.026458826, -0.021091722, -0.011473727, 0.04807989, -0.05136279, 0.009389108, -0.040523626, 0.00883456, -0.046966296, 0.013479664, -0.03610518, -0.021043833, -0.0107616, 0.015670503, 0.07469694, -0.032688357, -0.026802968, 0.034313917, 0.011806049, -0.012153372, 0.013606863, -0.036593586, 0.015510803, 0.00012417587, 0.023384057, 0.016893396, -0.080771655, 0.019984461, 0.03338657, 0.05105085, 0.01910666, -0.0023862445, -0.004341059, -0.0014765365, -0.0053080376, -0.023668429, -0.07336446, -0.010325165, 0.0038847604, -5.0768533e-05, 0.031632226, -0.0016304938, 0.0153868105, -0.04564298, 0.031478178, 0.0012209029, -0.033523604, 0.015054168, 0.026982278, 0.005614288, -0.008432303, -0.023928115, 0.0063379635, -0.0238317, -0.021139653, 0.032945696, -0.056882087, 0.02837664, 0.029855734, -0.009957567, -0.06438531, 0.015261039, 0.019561764, -0.051876538, 0.01904492, -0.035149164, -0.0133568905, 0.028456535, 0.041652203, -0.05198787, 0.06413519, -0.0047570174, 0.0020336271, -0.067123406, -0.013254507, 0.032134533, 0.013361679, 0.024732443, -0.038658828, 0.047188956, -0.06947745, 0.028557418, -0.032362245, -0.009910109, -0.06446766, -0.035034258, 0.01564967, 0.013905436, 0.03594402, 0.005430347, -0.063825056, 0.031675927, -0.030628784, 0.017796027, 0.101039276, -0.035590563, 0.018399056, 0.024046961, 0.049821015, 0.029758101, 0.04944691, 0.01395147, -0.037585564, -0.04977262, -0.04360121, 0.06823159, 0.017361648, -0.004187013, -0.06303646, 0.003522648, -0.048332542, 0.051388178, 0.011149072, -0.036850285, -0.045241963, 0.07432265, -0.01377749, 0.027659908, -0.05593143, 0.006721558, -0.016790334, -0.048198897, -0.018847698, -0.0457741, -0.036218263, 0.0031320048, 0.030290078, -0.031468797, 0.008175951, -0.053818192, -0.013340049, -0.013446555, -0.052012164, 0.03359078, 0.035511773, 0.0017184733, 0.0063139205, -0.020534411, 0.033551805, -0.053871974, 0.03973038, 0.024224095, -0.011086911, 0.0077838222, -0.019041989, 0.022616796, -0.0870924, -0.0012893873, 0.0764095, -0.01903739 ] }, { "values": [ -0.022804352, -0.021444092, -0.023785649, -0.049487356, 0.022316013, 0.0046326723, 0.013449927, 0.007445267, -5.5592373e-05, 0.043815866, 0.0059088976, 0.042122103, 0.042275358, -0.035458382, -0.024619427, -0.027296463, 0.02967028, 0.012058556, -0.044222075, -0.029203564, 0.012657193, 0.018268509, 0.0066381684, -0.10440482, -0.025403233, 0.030384567, 0.021694645, -0.06120239, 0.0035999296, -0.059613105, -0.0025605464, 0.048107367, -0.034012396, -0.023424564, 0.07598676, 0.027978744, -0.029642494, -0.013933748, 0.025606358, -0.04633607, -0.05221601, -0.0146156745, -0.01781332, 0.015804065, -0.06510629, 0.008916955, -0.009376346, 0.043707944, -0.03501519, 0.062671974, 0.07451293, 0.025121091, 0.014395175, 0.015720546, 0.027366877, -0.037578832, -0.11978884, -0.07048342, 0.048770193, 0.006600854, -0.004236858, -0.011739979, -0.040321555, -0.029382996, -0.029412316, -0.03475085, -0.0061937994, -0.06311012, -0.06255936, 0.015107892, -0.033933964, 0.018819472, -0.08348578, 0.0114103975, -0.013672749, -0.033605583, -0.0062121945, 0.0072720647, -0.029595383, 0.017454842, -0.017976817, -0.0032172226, 0.06540774, 0.034233686, 0.031013211, 0.01789349, 0.024744432, -0.034494825, 0.005867032, 0.03945206, 0.0782543, -0.028728189, -0.030338524, 0.022622714, 0.033238344, -0.049418595, -0.018139886, -0.074653186, -0.0145568205, 0.08856788, -0.041597806, -0.02817065, 0.009391737, -0.0015677894, 0.047616154, 0.03497297, -0.023050806, -0.046550956, -0.029404625, 0.04613713, -0.044775274, -0.024362806, 0.004549726, 0.0178319, -0.006935019, -0.041439313, 0.008890725, -0.01718858, -0.0068712286, -0.054975167, 0.04236081, -0.0121189775, -0.0684133, 0.03203195, 0.048543505, 0.006481502, -0.008600843, -0.0060173334, -0.028265465, -0.074162655, 0.07577664, -0.119181104, 0.01067903, -0.004925333, -0.05265331, -0.058598157, 0.03875583, 0.031087877, 0.00021267986, -0.0022464283, 0.0020255756, -0.007549277, 0.004545767, 0.025562849, -0.007203113, -0.04055806, -0.029307522, -0.013080809, -0.065558665, 0.018349102, -0.03961287, 0.029726313, 0.040011715, 0.018974507, -0.033384275, -0.004293346, 0.09208955, -0.03632641, 0.04059995, -0.0630197, 0.0138746165, -0.017444368, 0.005724622, 0.045057435, -0.005991642, -0.011928593, 0.035822645, -0.051074803, -0.0360469, -0.054020524, 0.004122753, -0.017816763, -0.040979862, -0.06888279, -0.024039855, 0.027132325, -0.029225163, 0.034966573, -0.022320451, 0.016294258, 0.037519556, 0.015290424, -0.004783507, 0.015509806, -0.019320808, 1.266934e-05, -0.038485643, 0.03589311, 0.022558548, 0.04000635, -0.031507723, 0.0046383855, 0.03935379, 0.08222066, 0.011263194, 0.041976668, 0.078140974, -0.03187706, 0.032255806, -0.050314892, 0.061789438, -0.033321336, -0.023813754, -0.0007492195, -0.030586513, -0.035330698, -0.03199387, -0.021992898, 0.027757676, -0.017818367, -0.0036972524, -0.005588435, -0.004071686, -0.01917516, -0.038389884, 0.024157528, 0.0770173, 0.053216763, 0.014052609, -0.00826542, -0.017681686, -0.0015062493, 0.016492883, -0.013229419, 0.020591209, -0.05553581, -0.032935694, -0.054496992, -0.03503907, -0.016772566, -0.042291112, -0.015916474, -0.0018724084, -0.018880395, -0.012201263, -0.003650983, 0.011053516, 0.014007088, -0.0030139922, -0.0007081802, 0.023399428, 0.010695017, 0.048432924, 0.0031837088, 0.0075374003, 0.03914624, 0.06881547, 0.087867945, -0.024169944, -0.011294315, 0.000856245, -0.039531823, -0.06323565, 0.020368887, -0.05040572, -0.046397775, 0.027793651, -0.067281045, -0.032658625, -0.024913808, 0.015156268, -0.002896102, -0.04579911, -0.029773327, -0.028461028, -0.08650357, -0.021152139, -0.004861976, 0.067934036, 0.026116489, -0.021078462, 0.027058082, -0.07710241, -0.04097314, 0.027389977, 0.05141592, -0.018936867, 0.02255236, -0.053060345, -0.033728518, 0.04334808, -0.024740724, -0.055995785, -0.053862058, -0.0037692827, -0.040196467, 0.007700334, 0.040481143, -0.057194576, -0.070614554, 0.067416884, 0.022124728, 0.031090578, -0.012885632, 0.022305636, -0.04097829, 0.01639638, 0.014759585, 0.017870883, -0.02587567, 0.009203646, 0.056799676, 0.009328872, -0.015881391, 0.0050691497, 0.043431465, -0.04184635, -0.03837269, -0.012849175, 0.017617173, 0.022150982, 0.03596741, -0.0051469505, -0.010124778, 0.010195958, 0.0042804875, -0.11133716, 0.02002214, -0.021929553, -0.05453151, 0.016636208, -0.0023747787, -0.037015412, -0.020298062, 0.025338491, 0.005695355, -0.0052907877, 0.00188412, 0.012057114, -0.0119926315, 0.019435586, 0.018267464, 0.014840133, -0.016166532, -0.00666554, -0.004941788, -0.007751077, 0.009280605, 0.058163866, -0.012117213, 0.04747939, -0.0056096963, 0.043101, 0.051783428, -0.005560682, -0.045522645, -0.00091939664, -0.0060843895, 0.050409243, -0.039531156, -0.06315186, 0.07981912, 0.013326594, -0.011623243, 0.027916536, 0.024759457, 0.028626163, 0.05672796, 0.013561205, -0.010925354, -0.028202519, 0.023336144, 0.003065185, -0.013669997, 0.022721814, -0.009506208, 0.022311613, 0.00021309753, 0.00244429, -0.04029711, 0.021884784, 0.04944922, 0.017607234, 0.019624494, 0.020732915, -0.06464521, -0.0012948278, -0.02275228, -0.0060961894, -0.009610366, -0.06433872, -0.029329648, 0.031667635, -0.014689652, -0.036722787, 0.038103994, -0.058982857, -0.049674995, 0.040678974, 0.033507608, -0.019191831, 0.063265264, -0.026604105, -0.009808988, -0.028919652, 0.08064264, -0.024027422, 0.034587543, 0.042839695, -0.048701134, -0.04377272, -0.009770449, 0.06681249, -0.021534692, -0.0013121432, -0.012337213, 0.046681568, 0.049212504, 0.046483062, -0.029297186, 0.03879666, 0.003668548, 0.03703096, -0.010572704, -0.0010318479, -0.0041351872, 0.026018867, -0.032686528, -0.008689541, 0.009955068, -0.028146708, 0.004731765, -0.004994087, 0.041429598, 0.00070316106, -0.08517476, 0.022478294, -0.02200169, 0.012557769, -0.028275784, -0.012621619, 0.042888142, -0.047765795, 0.019646095, -0.03163414, -0.011704532, -0.011599158, -0.00013884579, -0.03429899, -0.021857627, 0.02203765, 0.0016228809, 0.05011607, 0.040273234, -0.007198554, 0.045663673, 0.04177654, 0.013794327, -0.06178871, -0.08193798, 0.015270523, 0.030727971, -0.018770242, -0.05038189, 0.0016074938, -0.0034804572, 0.029321384, 0.041900843, -0.0076157814, 0.020042708, -0.06038523, -0.006402163, 0.03124205, 0.029386658, -0.012527455, -0.0024634297, -0.051443562, 0.014965332, -0.011799162, 0.049982492, 0.01800744, -0.030657735, 0.013245079, 0.013851177, 0.03732292, 0.035238303, -0.0018707622, -0.026551073, 0.03125849, 0.030343661, -0.050247163, 0.029787226, 0.016357418, 0.02273618, 0.014720796, -0.07196459, -0.022833966, 0.020325195, 0.048624, 0.0041119233, 0.017419383, 0.044740938, -0.016038278, 0.06572771, -0.0351048, -0.027533317, 0.04565009, -0.010159189, -0.007791553, -0.01793035, 0.057145286, 0.011819444, -0.03252143, -0.010243023, 0.010613912, 0.02460511, -0.013726436, -0.015678477, 0.037656415, -0.005251048, 0.0017533085, -0.004236913, 0.04872133, -0.021503164, -0.030716421, 0.07184084, -0.02887322, 0.0016896302, -0.029774131, 0.052719478, -0.026575943, -0.048094753, 0.011992357, -0.07057121, -0.052839603, 0.020945072, -0.011190871, 0.00072393153, 0.054788996, -0.028387887, -0.01346383, 0.0312635, 0.0063890642, 0.0110815, 0.01688643, 0.039192732, 0.0060067535, 0.024187429, -0.05603869, 0.08173156, -0.0031496894, -0.002124858, 0.083605506, 0.024923993, 0.050881468, -0.0052575124, 0.061196852, -0.045161463, -0.0074180947, 0.09536267, -0.0474663, -0.016156053, 0.02631159, 0.012056574, -0.037967373, -0.04904577, -0.018529007, -0.030832985, -0.06115339, 0.013497528, 0.033075627, 0.028962353, -0.025473088, 0.012403473, -0.0038583442, 0.015666662, -0.03465959, 0.0852325, -0.012615824, -0.027131923, -0.006366947, 0.0022177866, 0.0029217189, -0.027843134, 0.017127156, 0.028990805, -0.043669157, -0.00018487842, 0.03226096, 0.007204125, 0.05972592, 0.031263553, 0.07532644, -0.04584308, -0.001857387, 0.0030196344, 0.029914709, -0.03507163, -0.012859511, 0.028263653, 0.027589018, 0.021197105, 0.018962003, -0.025824819, 0.07445556, -0.021274986, -0.025412453, -0.025451923, 0.031471994, 0.043361504, -0.037356243, 0.011325872, -0.045579717, 0.019306842, 0.010208201, -0.023567576, -0.022686562, -0.016226089, 0.04087421, -0.011128787, -0.038559306, 0.01896753, -0.0022273113, -0.0029417817, -0.047723234, 0.02986161, -0.03477469, -0.04149274, 0.026982589, -0.042808704, -0.010878534, 0.03997451, -0.04606431, 0.0016791197, -0.052995376, -0.0048647798, -0.01261723, 0.01194181, -0.0573145, -0.025515443, -0.02123718, 0.019984137, 0.08353092, -0.016902946, -0.03868875, 0.03165079, 0.004023321, -0.03330174, 0.03994355, -0.03952613, 0.008714228, 0.006603387, 0.030691188, 0.051558185, -0.07219938, 0.031278122, 0.030816661, 0.05493335, 0.011938091, -0.022234777, -0.024262158, 0.008425389, 0.0024074335, -0.020642756, -0.06311152, -0.026644815, -0.008383195, -0.013530955, 0.03294119, -0.014075167, 0.016037172, -0.037026472, 0.028638238, 0.020004062, -0.0067392834, 0.0048219752, 0.0100578405, 0.005169585, -0.018305887, -0.030964574, -0.014424977, -0.004877052, -0.00527419, 0.022103645, -0.044743083, 0.044394195, 0.013994693, -0.02243286, -0.053667475, 0.008895039, 0.032880478, -0.059229694, -0.0018075481, -0.0011595123, -0.010042979, 0.02194785, 0.01660591, -0.040652942, 0.05333142, 0.011014642, -0.007617886, -0.07670666, -0.03899347, 0.022236532, 0.029109318, 0.04986263, -0.041250713, 0.044011924, -0.07298746, 0.032743685, -0.00883778, -0.0053629447, -0.06277748, -0.015010997, 0.029078152, 0.026264474, 0.03315168, 0.014849079, -0.0704218, 0.02463952, -0.02833142, 0.0031514836, 0.08721661, -0.031210411, 0.021037448, 0.016444255, 0.052181497, 0.009552548, 0.049918287, 0.023157593, -0.03347728, -0.04568268, -0.038196824, 0.07044855, 0.025935147, 0.0070305057, -0.07686272, 0.008596058, -0.04312773, 0.06128091, 0.007855187, -0.025703965, -0.033023316, 0.04909167, -0.013272135, 0.036748968, -0.044917203, -0.0037750034, -0.014852405, -0.051947247, -0.00019850995, -0.054705113, -0.06192373, 0.002697418, 0.02179572, -0.0330426, -0.008951941, -0.049765617, -0.016637227, 0.011350066, -0.06910095, 0.022298727, 0.011483357, 0.0040125027, 0.036286313, -0.03903817, 0.020543028, -0.018900605, 0.027363058, 0.022762273, -0.0117837265, 0.007223674, -0.0038491029, 0.024418002, -0.08836574, 0.008462253, 0.0768473, -0.037032545 ] }, { "values": [ -0.0076927715, -0.0020478966, -0.03239568, -0.038584307, 0.036247354, 0.018096585, 0.012588837, 0.020576565, 0.00931448, 0.049823835, 0.014926726, 0.028254759, 0.050515153, -0.032863278, -0.053164974, -0.035015337, 0.025837611, 0.007917844, -0.057522118, -0.026723986, 0.017944524, 0.013846288, 0.008387354, -0.093725294, -0.023501653, 0.031539846, 0.0493578, -0.08215542, 0.013013573, -0.04860865, -0.007745093, 0.042461593, -0.047659144, -0.043165464, 0.067535274, 0.031450193, -0.012982111, 0.01153814, 0.016077956, -0.049221266, -0.05773005, -0.023834178, -0.04623552, 0.029413572, -0.0626755, -0.008211767, 0.003930781, 0.02429959, -0.039134827, 0.04675439, 0.048992205, 0.018111749, -0.0036915734, 0.019292993, 0.011488385, -0.058725797, -0.10527154, -0.059740283, 0.050903935, -0.005557502, -0.010549024, -0.009933556, -0.04564235, -0.02092554, -0.041995596, -0.032426246, -0.008594674, -0.053390246, -0.03731456, 0.0062075383, -0.049779072, 0.02058163, -0.08459996, 0.010587997, -0.00870531, -0.029307296, 0.0022847624, 0.009312277, -0.02816871, 0.02789111, -0.0036575408, 0.020902876, 0.058920886, 0.014898176, 0.018555308, 0.035203166, 0.050697234, -0.031963, -0.008563284, 0.01495388, 0.06557968, -0.028049564, -0.032137547, 0.01620025, 0.01949659, -0.03168731, 0.0026337935, -0.078836076, -0.03832612, 0.107464895, -0.057263512, -0.03677412, -0.009453159, -0.03768061, 0.029955423, 0.050363332, -0.01676165, -0.038932107, -0.02439462, 0.06320521, -0.042198166, -0.01688099, 0.02457941, 0.016711049, -0.0046668784, -0.02127948, -0.0006625794, -0.03761354, -0.03343234, -0.0775278, 0.01826976, 0.012947418, -0.058371123, 0.04300866, 0.047668666, -0.014340863, -0.037214797, -0.003077123, -0.046537634, -0.0766712, 0.07764128, -0.123098426, 0.006323574, -0.033338547, -0.049337145, -0.032395005, 0.05244932, 0.010594842, 0.0030871523, 0.025578944, -0.014564308, -0.009210464, -0.04230636, 0.018269837, -0.0051574577, -0.016978286, -0.036428995, -0.029124094, -0.0585387, 0.02799149, -0.008698529, 0.027399799, 0.040726826, 0.00092982757, -0.05315673, -0.0022567639, 0.075620145, -0.039971024, 0.028711202, -0.04341646, 0.05130405, -0.016866969, -0.004663918, 0.03656296, -0.026189545, 0.005940048, 0.053283837, -0.056358606, -0.0013013574, -0.032530878, -0.011164041, -0.03154622, -0.051370434, -0.079101115, -0.007625187, 0.023947602, -0.033912737, 0.03935293, -0.024535898, 0.0048646107, 0.05482506, 0.016558474, -0.02676635, 0.010675719, -0.04255974, 0.017041437, -0.015816292, 0.013893487, 0.015752124, 0.026217531, -0.038006395, -0.013793518, 0.01785375, 0.08485508, 0.0002743743, 0.026982438, 0.08647776, -0.04328721, 0.027226018, -0.04472794, 0.03912625, -8.5949585e-05, -0.04114482, 0.017129093, -0.0010957647, -0.021694401, -0.03231094, -0.008211657, 0.019568585, -0.024770487, -0.009921408, 0.017850718, 0.009738468, -0.0073619965, -0.04397432, 0.033973508, 0.09437232, 0.023521308, 0.013889338, -0.0071648555, -0.04132287, 0.0021155823, -0.0047464552, -0.025000034, 0.026594207, -0.028579855, -0.049532585, -0.036833778, -0.022471473, -0.014076233, -0.03254637, 0.0035865633, 0.0002545089, -0.032211166, -0.009137752, -0.0047400887, 0.026364844, 0.027312718, 0.01098763, -0.019472275, 0.017062327, -0.017929846, 0.024897281, 0.005832136, 0.009358407, 0.031249026, 0.07519766, 0.046281107, -0.013620199, 0.013820016, 0.00059893675, -0.05161317, -0.068356566, 0.027948981, -0.06673115, -0.034455333, 0.0294724, -0.08672734, -0.0018531128, -0.022561677, 0.010993362, 0.02143321, -0.035292752, -0.04543779, -0.019966617, -0.06727939, -0.03243817, -0.02021962, 0.0746478, 0.028783381, -0.006304043, 0.030094178, -0.06673546, -0.04941094, 0.028742075, 0.05998646, -0.022304265, 0.011805561, -0.034000363, -0.04266908, 0.050474826, -0.0241105, -0.055079468, -0.047448423, -0.022461895, -0.03711548, -0.0009988927, 0.05296036, -0.046714697, -0.06436036, 0.050741736, 0.01620978, 0.038838904, -0.021879192, 0.01639448, -0.03232797, 0.017586255, 0.019851968, -0.0126914885, -0.005034259, 0.026446762, 0.036855027, 0.0045358445, -0.003960172, 0.005106765, 0.051294513, -0.029934855, -0.027907008, -0.01566746, 0.011188841, 0.012786592, 0.027265122, -0.018216033, -0.0043141125, 0.021888847, -0.004697741, -0.11733278, -0.0036146059, -0.03017809, -0.05747663, -4.6474706e-05, -0.0014316997, -0.023211587, -0.035930555, 0.021939857, -0.010810615, -0.0044372696, 0.02155295, 0.015760114, -0.008551509, -0.013096426, 0.02976402, 0.028360369, 0.002070204, -0.003503934, -0.014480029, -0.0081195235, -0.006107287, 0.062096406, -0.017693745, 0.06698886, 0.010930935, 0.054116096, 0.042246275, 0.0010017593, -0.052744642, 0.017145751, -0.0037438623, 0.028577924, -0.065194234, -0.0439807, 0.09780064, 0.006609551, -0.018575137, 0.023835177, 0.0066914377, 0.024271928, 0.020991161, 0.038005043, -0.0117136715, -0.018539943, 0.008204685, -0.007812493, -0.011653298, 0.020262899, -0.018918866, 0.014724397, -0.004559448, -0.02065883, -0.023027755, 0.03566794, 0.039000075, 0.018463979, 0.026421944, 0.006198202, -0.05015403, -0.004161669, 0.0012970221, -0.013343391, -0.02603884, -0.051448487, -0.032177154, 0.0007710173, -0.012404172, -0.027516529, 0.034700345, -0.059546456, -0.0255024, 0.041703615, 0.03329168, -0.015435018, 0.06709403, -0.018630711, -0.0200755, -0.018636959, 0.08493366, -0.0040218313, 0.030461397, 0.040684614, -0.036415055, -0.03228188, 0.00046809157, 0.083436266, -0.01910143, 0.0071931616, -0.026111592, 0.058920167, 0.05489094, 0.050661933, -0.012915312, 0.055087186, 0.037114214, 0.042813305, -0.01023223, -0.003997456, 0.017942809, 0.023827542, -0.024498612, -0.004183115, 0.015932374, -0.042924628, 0.0057004048, 0.001767767, 0.038601268, 0.016641099, -0.060557276, 0.026731366, -0.022863237, -0.012064536, -0.01207766, 0.004704993, 0.048946936, -0.022046562, 0.002874727, -0.029399907, -0.025177306, -0.019316195, -0.0024196045, -0.047942124, -0.028604383, 0.0061862334, 0.014205328, 0.0572524, 0.042230807, -0.01702154, 0.008334861, 0.040065777, 0.025201317, -0.06044853, -0.06339241, 0.0024671962, 0.02468573, -0.0024407853, -0.044338115, 0.00014605618, 0.0034020348, 0.026124058, 0.028616155, -0.019324599, 0.01956893, -0.05766112, 0.014421874, 0.033535123, 0.028918743, -0.017789703, -0.0052051027, -0.051788904, 0.015456997, 0.015069602, 0.051854286, 0.023849579, -0.024075918, 0.018625177, 0.012008662, 0.027911749, 0.026519468, 0.02634255, -0.002849146, 0.025802836, 0.038985506, -0.042674933, 0.016937548, 0.023088425, 0.034254286, 0.013080168, -0.06278458, -0.036923863, 0.03747106, 0.063007295, 0.040218458, 0.020249734, 0.050832305, -0.018094774, 0.08794511, -0.028594702, -0.019033244, 0.05683241, -0.0025274022, -0.0022184183, -0.004702224, 0.05994349, 0.0060622133, -0.05404098, -0.049464393, 0.009596747, 0.031970732, -0.025334785, -0.011477336, 0.02656983, -0.02997757, 0.008965527, -0.014334362, 0.04004164, -0.017847234, -0.02631932, 0.07263964, -0.06333892, -0.009130309, -0.012679765, 0.05037916, -0.008050736, -0.04389867, 0.023747152, -0.06572343, -0.057588447, 0.019281095, 0.003855505, 0.0035210038, 0.068096735, -0.022317924, -0.02179455, 0.030241499, -0.0016211761, 0.024056755, 0.005839873, 0.052168224, 0.012321842, 0.045406442, -0.05643693, 0.045496676, 0.006523795, 0.012274358, 0.08337441, 0.015508446, 0.0552668, -0.004290102, 0.07168438, -0.02476903, -0.0150973275, 0.06694119, -0.059682183, -0.015049313, 0.043328144, 0.005967148, -0.025173523, -0.038373344, -0.016467636, -0.01610579, -0.07076579, 0.010134547, 0.03482893, 0.019700786, -0.014205889, -0.0088498965, 0.03369881, 0.021985313, -0.020419914, 0.062139977, -0.013397491, -0.031645138, -0.0005180286, 0.008259554, 0.011459307, -0.026191272, 0.01900797, 0.021080384, -0.029169789, -0.01378819, 0.018482434, -0.0057223416, 0.040717766, 0.02940491, 0.09035293, -0.020593418, -0.015848044, 0.012298854, 0.019750666, -0.023878986, 0.005870618, 0.039246123, 0.0050478377, 0.030963756, 0.026838453, -0.04849128, 0.0776271, -0.01510537, -0.032245837, -0.018883774, 0.006451618, 0.049615357, -0.053714585, 0.008886413, -0.039871953, 0.025001774, 0.006110617, -0.029338432, -0.03853357, -0.014236527, 0.027174179, -0.021799885, -0.023561932, 0.004722576, -0.00973312, -0.017645936, -0.060647886, 0.043387987, -0.044361457, -0.03474249, 0.029929385, -0.03276155, -0.0029990762, 0.02615316, -0.06118064, 0.02156124, -0.07666464, 0.0030769433, -0.010490551, 0.0069248485, -0.029083494, -0.010068632, -0.029697543, 0.03290049, 0.059663963, -0.03918573, -0.029323058, 0.03227678, 0.012103298, -0.026804494, 0.040299185, -0.026004024, 0.003975574, 0.004598932, 0.03571317, 0.001626403, -0.06703036, 0.032488704, 0.045857318, 0.04051036, 0.012248309, 0.0013707278, -0.006299232, 0.005752899, -0.005776607, -0.020478487, -0.088037424, -0.026605887, 0.0029429933, 0.009016165, 0.02361829, -0.0063588684, 0.012244167, -0.06316423, 0.030752264, 0.0144728795, -0.028471332, 0.009836002, 0.0061749695, 0.0065215607, -0.020861275, -0.036102876, -0.0043828236, 0.0046615344, -0.0073019937, 0.019103024, -0.029277151, 0.04007556, 0.010786988, -0.053713672, -0.07057588, 0.006749682, 0.017824678, -0.07329013, 0.0057707527, 0.0027959251, 0.0014876089, 0.004316991, 0.01720028, -0.05648946, 0.03711605, 0.010304794, -0.0053357207, -0.07251728, -0.0035967045, 0.025523664, 0.026115956, 0.04349565, -0.06548194, 0.031570148, -0.079331815, 0.029681029, -0.033623982, 0.0035038074, -0.06419139, -0.029709727, 0.029383613, 0.023929551, 0.024109855, 0.03163228, -0.051355094, 0.03382028, -0.025407946, -0.009102672, 0.07288556, -0.022298604, 0.01897233, 0.038044084, 0.062432755, 0.021063434, 0.057999138, 0.016307695, -0.039655887, -0.038789533, -0.047236815, 0.060815465, 0.024301428, -0.009066467, -0.067470215, 0.00019275355, -0.048661914, 0.07109679, 0.012690578, -0.041903872, -0.03604553, 0.031443484, -0.031247752, 0.036879953, -0.032861516, -0.0065434454, -0.014502523, -0.0481866, -0.0008466952, -0.04817597, -0.058475863, -0.010302924, 0.04661939, -0.03436779, 0.0037735933, -0.054721978, -0.036329594, -0.0051420173, -0.05503619, 0.020348936, 0.02242848, 0.0047053844, 0.02939054, -0.01979533, 0.026483921, -0.047378633, 0.040038016, 0.026150212, -0.024374373, 0.01579543, -0.0017302016, 0.012407492, -0.06461001, -0.010357503, 0.07769595, -0.022424731 ] }, { "values": [ -0.0030823587, -0.023820128, -0.049764067, -0.034769673, 0.00048610807, 0.020262167, 0.005837049, 0.029944098, 0.00092077215, 0.029913148, 0.016906805, 0.032472234, 0.040003724, -0.03758392, -0.04400146, -0.05687502, -0.011019681, 0.008546258, -0.0795566, -0.07524401, -0.03305876, 0.004663556, 0.01986566, -0.08481547, -0.016877186, 0.030648418, 0.024597721, -0.046261117, 0.026958056, -0.022220349, 0.0061806226, 0.036140118, 0.0034887202, -0.029221108, 0.051437564, 0.03604665, -0.02592875, -0.007823196, 0.0015644829, -0.016342357, -0.030866189, -0.024429942, -0.047144454, 0.014092024, -0.029371193, 0.018125555, 0.007223336, 0.017780168, -0.021183943, 0.025863064, 0.03791341, 0.011650165, -0.012122626, -0.026030216, 0.008326257, -0.056694213, -0.06769209, -0.054213785, 0.02759271, -0.0041656364, -0.012064719, -0.016878206, -0.004612537, -0.025582142, -0.021044273, -0.012462857, -0.02177742, -0.06770262, -0.048977736, 0.031497862, -0.050556798, 0.00451878, -0.04791776, 0.0152019905, -0.008823296, -0.008671795, 0.011072318, 0.032311887, -0.022608174, 0.032804742, -0.03344681, 0.0035424517, 0.08210078, 0.004922813, 0.011432472, -0.008270507, 0.02978133, -0.02574883, -0.01855808, 0.030566135, 0.09957658, -0.046956833, -0.02643, 0.02494962, 0.041090082, -0.006324846, -2.1243291e-05, -0.11362917, -0.018979238, 0.11479603, -0.026800718, -0.021063082, -0.0022457198, -0.010765932, 0.045798812, 0.06632012, -0.01843855, -0.026140273, -0.03397866, 0.051280264, -0.02111519, -0.04377531, 0.02733284, 0.014319887, 0.019063162, -0.042158637, 0.010214744, -0.008661243, -0.010405088, -0.0524301, 0.0121502, 0.002402404, -0.014276584, 0.07048346, -0.0151957255, -0.009113057, 0.0070661604, 0.010970692, -0.024084494, -0.07261808, 0.06442361, -0.10374431, 0.020402946, -0.02590458, -0.042661212, -0.03469354, 0.04930802, 0.06661063, 0.014946863, 0.02040051, -0.008890447, -0.00084175204, 0.0033822542, 0.02850974, -0.018371783, -0.04376635, -0.02521096, -0.022762755, -0.037920248, -0.0130005535, -0.037857432, 0.020960234, 0.0689149, -0.0140208015, -0.042430315, -0.023155967, 0.09169419, -0.021384, 0.04814401, -0.075076155, 0.030409556, -0.02273806, 0.014978075, 0.036575504, -0.041491542, 0.0018873612, 0.035097383, -0.08599321, -0.0009885996, -0.021507835, 0.013137176, -0.04648259, -0.027332658, -0.09002915, 0.0041618007, 0.0006506303, -0.039386354, 0.07539165, -0.030135622, -0.0022968305, 0.049008876, 0.019501092, 0.02005767, -0.0047584972, -0.0284754, 0.04149848, -0.010787948, 0.053735238, 0.008301755, 0.0046704616, -0.0028218972, -0.009475549, 0.040737294, 0.10248598, 0.02665996, 0.008113579, 0.074756935, -0.018888013, 0.017941384, -0.042368338, 0.05399794, -0.026570955, -0.023513809, 0.01768866, -0.03776846, -0.025099183, -0.0315221, -0.010447329, 0.05154073, -0.015543235, -0.020530935, 0.0022188525, 0.0009514138, -0.011693044, -0.02674237, 0.017411532, 0.09960246, 0.06886929, 0.039758578, -0.015162064, -0.011256885, 0.0046182973, 0.0057932697, -0.013656277, 0.008196298, -0.0692731, -0.05910498, -0.07115112, -0.0045098253, -0.028919162, -0.019436527, 0.0027939864, -0.010473532, -0.025404112, 0.0032937278, 0.0044604717, -0.028111866, 0.02943399, 0.017500777, -0.035516318, 0.022241594, -0.0023336872, 0.023078177, 0.0014738393, 0.037954662, 0.0282536, 0.06443135, 0.05498117, -0.008490054, -0.0125686955, 0.01341397, -0.034240045, -0.066010036, 0.012643726, -0.072603166, -0.011107349, 0.028837336, -0.06797153, -0.033210494, -0.03936102, -0.013510932, -0.009821543, -0.036106043, -0.048653573, -0.030283527, -0.05900017, -0.0073183407, -0.0043206657, 0.062985756, 0.020514324, -0.0018843656, 0.041329514, -0.032427255, -0.061672717, 0.054934476, 0.011260244, -0.023364201, 0.02072409, -0.043735452, -0.020230087, 0.051730685, -0.030599484, -0.04157154, -0.03848441, 0.004086268, -0.022777298, -0.0031542475, 0.031515475, -0.0705246, -0.07864242, 0.06474012, 0.03929743, 0.038653255, -0.002847203, 0.017145824, -0.021760624, 0.024587614, 0.031980075, -0.005032082, -0.009561274, 0.05638502, 0.05626306, -0.016930757, 0.003078295, -0.038437758, 0.09815488, -0.0441621, -0.026611583, -0.045564115, 0.011190837, 0.014201689, 0.05273504, -0.037216216, -0.03292712, 0.021593176, -0.0005443954, -0.08885509, 0.0016980676, -0.019296689, -0.06927815, -0.0025815193, 0.011783026, -0.036381148, -0.017452035, 0.042756483, -0.021855826, 0.005825814, -5.9055612e-05, -0.012437493, 0.006227207, 0.00012801537, 0.013229314, 0.0008925026, -0.005239979, -0.025224539, -0.011465073, -0.025576646, -0.011184524, 0.039022624, -0.025219487, 0.058155566, -9.105005e-05, 0.074420765, 0.053453613, -0.031782266, -0.049916957, 0.0307986, -0.018343521, 0.06478892, -0.06953928, -0.0574648, 0.07302323, 0.0017306287, -0.018084604, 0.022068473, 0.017948283, 0.022489766, 0.033596143, 0.04465473, -0.009698365, -0.018326724, 0.027879948, 0.02008954, -0.0016293625, 0.022584664, -0.030324107, 0.045876615, 0.0052934787, -0.0005524953, -0.0129615255, -0.00028674767, 0.069300964, 0.012580914, 0.018521989, 0.0038230005, -0.075844124, -0.0131116025, 0.005067214, -0.005346345, -0.04104279, -0.060326606, -0.031492192, 0.013190747, -0.03397916, -0.004017374, 0.04069229, -0.04613315, -0.007122964, 0.015635703, 0.012933199, -0.01443778, 0.05994208, 0.0014381291, -0.037501276, -0.004386912, 0.08076421, 0.011887616, 0.04306191, 0.04267351, -0.0147478245, -0.010095055, 0.028914113, 0.03744361, -0.015774097, -0.013015322, -0.018681655, 0.05207787, 0.015698267, 0.043103486, -0.0048951874, 0.047201104, 0.009238253, 0.053321637, -0.012208142, -0.008906709, 0.00020695584, 0.0011680126, -0.0156014655, -0.031173399, 0.028748758, -0.025256505, -0.010334279, 0.008975755, 0.04049755, 0.015371172, -0.052115373, 0.027614146, -0.014447075, 0.019369997, -0.0008392749, 0.01084116, 0.021683706, -0.037314203, 0.033420857, -0.022374745, -0.0142102195, -0.0036190818, 0.0028675685, -0.044391662, -0.0031362784, 0.03412842, 0.013637407, 0.04191779, 0.0324229, -0.030358152, 0.008067493, 0.03449287, -0.017694695, -0.0413929, -0.058730982, -0.0032017624, 0.04506706, -0.018754426, -0.04760141, 0.004413666, 0.0054571256, 0.013196949, 0.02250664, -0.0107642785, 0.02833911, -0.07179458, -0.02692911, 0.012167223, 0.032830935, 0.011568164, -0.027358659, -0.062442522, 0.022545913, 0.011019894, 0.029822696, 0.05174126, -0.014794927, 0.022933709, -0.010112769, 0.025397623, 0.032509908, 0.008948112, -0.0010664678, -0.0032154326, 0.010824045, -0.05015316, 0.010074464, 0.02006237, 0.006336603, 0.034001533, -0.049725216, -0.042164546, 0.029677069, 0.044634122, -0.0010143596, 0.018607114, 0.03509092, -0.009050898, 0.037291456, -0.031292733, -0.00535557, 0.08250118, -0.013823745, 0.011349511, -0.02649657, 0.05056662, 0.00090282975, -0.03185851, -0.041589133, 0.010596257, 0.01476467, -0.018626068, -0.011240477, 0.029226217, -0.019573998, -0.01626517, -0.013993065, 0.008010385, -0.0077920756, -0.06973431, 0.09098051, -0.06966017, 0.016262393, -0.011271961, 0.0414697, -0.022913093, -0.04808479, 0.033259436, -0.06396524, -0.058219343, 0.0047165025, 0.0102441395, -0.00089072896, 0.060569815, -0.005512426, -0.010374002, 0.014367708, -0.007711311, 0.018534916, 0.00034952819, 0.066804856, 0.0035592671, -0.006911412, -0.035152808, 0.09567004, 0.0058078878, 0.01819731, 0.09000189, 0.049555033, 0.057123058, -0.003634974, 0.037661996, -0.046564363, 0.01681308, 0.070207275, -0.061176408, -0.03790076, 0.015955223, -0.017280452, -0.020097315, -0.025836641, -0.01996999, -0.016111126, -0.04933896, 0.03915591, 0.043502543, -0.0065304423, -0.005802087, -0.011521835, -0.0233903, 0.010065085, -0.024603458, 0.077778675, -0.018146208, -0.009694236, -0.0035584809, 0.007872596, 0.013288491, -0.047834147, 0.01820828, 0.027336964, -0.0140947, 0.009791589, 0.03808541, -0.0089144455, 0.053640462, 0.06638776, 0.06288666, -0.00872796, 0.021683127, -0.002796108, 0.027554346, -0.022672348, -0.008972104, 0.039115027, 0.009112594, 0.056204345, 0.046259567, -0.03306359, 0.06306736, -0.0060723326, -0.015011625, -0.0325115, 0.008342103, 0.022771599, -0.05674491, -0.013105152, -0.03374388, 0.024855861, 0.008793476, -0.00036571396, -0.016427677, -0.016135752, 0.017540028, -0.0076454952, -0.0511537, -0.004225373, -0.011299305, 0.003227211, -0.052794, 0.022590615, -0.030827772, -0.04616138, 0.012161618, -0.0268518, 0.011349681, 0.029838474, -0.055597924, 0.026228733, -0.06786999, -0.017621104, -0.0047797505, 0.0072060237, -0.046925787, -0.0067923064, -0.025762022, -0.013036699, 0.058529478, -0.020483632, -0.03852511, 0.052437946, 0.00899613, -0.014374867, 0.008501756, -0.042294458, -0.008760009, 0.025784353, 0.056524914, 0.022142008, -0.0877018, 0.024838358, 0.06759052, 0.0583717, 0.0025220525, 0.018262062, -0.033609647, 0.011574562, -0.010754357, -0.009507324, -0.0648671, -0.027376527, 0.0027472095, -0.025083717, 0.014058991, -0.033182234, 0.0011902482, 0.002505998, 0.016192148, 0.005991897, -0.037354376, 0.012482867, -0.0060677077, 0.013085378, -0.020234466, -0.035522167, 0.013022503, 0.017066123, 0.0033504064, 0.033191744, -0.02022283, 0.030692466, 0.014715215, -0.043885417, -0.04254645, 0.0034875905, 0.0027640515, -0.065099806, -0.0087264255, -0.0028540017, 0.0015471465, -0.010655688, 0.040393166, -0.0205051, 0.05015195, 0.015677767, 0.01699632, -0.049554322, -0.01716734, 0.009283299, 0.026294732, 0.084748305, -0.05846162, 0.03271379, -0.091706656, -0.0019062113, -0.028215872, 0.02542807, -0.048954636, -0.008181331, 0.03428809, -0.009802274, -0.006681986, 0.04154795, -0.04411209, 0.032516293, -0.040682223, 0.0072180876, 0.05081402, -0.01166395, 0.034084566, 0.039938025, 0.04712176, 0.017659687, 0.06487673, 0.039400924, -0.0019032481, -0.029893866, -0.06923577, 0.07564833, 0.04819558, 0.003907313, -0.06662361, 0.015768623, -0.047299355, 0.059507526, -0.012962027, -0.016136883, -0.046633806, 0.073514834, -0.011882366, 0.052405376, -0.01438804, -0.0142912, -0.014543208, -0.039128367, 0.020350827, -0.03279633, -0.032821696, 0.020026723, 0.03317102, -0.03330006, -0.022106528, -0.08891524, -0.03932098, 0.008611182, -0.062889114, 0.04205862, 0.016930617, -0.00612249, 0.05157182, -0.00034010527, 0.023198275, -0.020625645, 0.0384474, 0.008772217, 0.009924975, 0.04165004, -0.019335965, 0.021867335, -0.06721097, -0.020093188, 0.0763624, -0.02098624 ] }, { "values": [ -0.0032449237, -0.021572582, -0.044270482, -0.019057088, 0.01216702, 0.0104732895, 0.0016051171, 0.043906346, 0.0013367762, 0.007767515, 0.023465909, 0.03187803, 0.039310347, -0.018294288, -0.039915167, -0.051892705, 0.023205582, -0.006964428, -0.07006964, -0.041427176, -0.016467232, 0.018739771, -0.0031263435, -0.08122221, -0.0032288174, 0.03881464, 0.015419044, -0.06892064, 0.02026059, -0.042493645, -0.006602455, 0.012883071, 0.0034668949, 0.00054135977, 0.020456795, 0.029162597, -0.022097463, -0.018324228, 0.011571809, -0.04087442, -0.022325294, -0.030792577, -0.055391543, 0.02067782, -0.052690048, 0.02430979, -0.0052980534, 0.031430043, -0.0175255, 0.01556478, 0.054057144, 0.00623102, 0.003140018, 0.0025613988, 0.0023161669, -0.05222816, -0.09167464, -0.04973154, 0.034325983, 0.0031687585, 0.0033849406, -0.0011478548, -0.03629261, -0.03551019, -0.02749918, -0.025615571, -0.026939897, -0.06918332, -0.06386587, 0.019019421, -0.06707298, -0.009770488, -0.076760225, 0.0150104035, -0.011331816, -0.03068722, 0.01776434, 0.007472736, -0.031373367, 0.028577365, -0.010338527, -0.0132781, 0.044676367, 0.024138011, 0.01786709, 0.007098636, 0.03751246, -0.024435475, -0.043833256, 0.017527718, 0.093370885, -0.03538314, -0.054794956, 0.021909082, 0.060834642, -0.027381307, 0.014741096, -0.08660741, -0.027840352, 0.08938256, -0.04293815, -0.026542554, 0.005925219, -0.030935863, 0.037261255, 0.08057295, -0.0031862408, -0.039175846, -0.0050280197, 0.06510792, -0.026327621, -0.030194141, -0.0005728364, 0.032559104, 0.008110172, -0.04730972, 0.024139695, -0.023439713, -0.02954493, -0.06488731, -0.00609036, -0.0003738587, -0.005121492, 0.07048693, 0.009506218, -0.017658856, -0.002145037, -0.00034510423, -0.010385891, -0.05129644, 0.055215985, -0.10984775, 0.029321112, -0.026239837, -0.043646343, -0.03392428, 0.067537576, 0.05080259, -0.008268588, 0.0031366125, -0.024193065, -0.021465858, -0.014314365, 0.05820035, 0.008927066, -0.057335377, -0.03985501, -0.036865227, -0.019601518, -0.007892338, -0.034354296, 0.016020434, 0.049953993, -0.011669182, -0.03717952, -0.005376739, 0.080218256, -0.043525785, 0.023364065, -0.066236846, 0.038078543, -0.028164843, 0.019673623, 0.027532993, -0.002201423, 0.028901178, 0.036474556, -0.059464503, -0.031534, -0.04500487, 0.0027601246, -0.08168647, -0.06752432, -0.10056555, -0.010750552, 0.0059913285, -0.039028, 0.048942626, -0.038306598, -0.0011595365, 0.053912736, 0.04229599, 0.006194036, -0.008024823, -0.053371396, 0.02328919, 0.002904772, 0.05009965, 0.008804124, 0.014472204, -0.013812309, -0.0048317886, 0.029135767, 0.09621209, 0.03686888, 0.015729057, 0.087164186, -0.026830837, -0.0013820939, -0.040348746, 0.03638906, 0.014879392, -0.038639132, 0.028773392, -0.024166571, -0.012836111, -0.008432677, -0.0051317606, 0.05935394, -0.035383493, -0.022533333, 0.043253694, 0.010085391, -0.01051065, -0.033462435, -0.0016866281, 0.09393301, 0.059730437, 0.048376337, -0.030325457, 0.0026945444, -0.0027001519, 0.020424772, 0.015139471, 0.028479902, -0.030927077, -0.037236672, -0.04787778, 0.0124843335, -0.02553174, -0.018742215, 0.0052388585, -0.0029865913, -0.038574867, 0.014868048, 0.024201157, 0.0016257428, 0.029037017, -0.008725506, -0.010884957, 0.029079959, -0.0041730176, 0.012606403, -0.012975132, 0.021593316, 0.05181051, 0.08074481, 0.027359134, -0.028425962, -0.023490543, 0.019379526, -0.04467016, -0.081980504, -0.0033109211, -0.066136576, -0.012291713, 0.045177925, -0.07581666, -0.019168122, -0.028084682, 0.0037915902, -0.013643502, -0.030328196, -0.057006013, -0.013289471, -0.02367966, -0.029377853, 0.004006341, 0.060997985, 0.0013840846, -0.011288192, 0.03162282, -0.057600215, -0.028716182, 0.04802253, 0.031430896, -0.0066533685, 0.005548586, -0.0665913, -0.047179017, 0.052849438, -0.023671407, -0.029552152, -0.039417747, -0.020732395, -0.022850526, -0.0025345972, 0.060676727, -0.05132132, -0.06513041, 0.049612336, 0.022945479, 0.028611874, -0.016161567, 0.03247862, -0.020515867, 0.02210348, 0.034831934, -0.03156807, -0.010438018, 0.03173477, 0.05094639, -0.009645538, 0.010436868, -0.009463988, 0.09388287, -0.037548102, -0.040300347, -0.01902104, -0.0041569443, 0.00604983, 0.051115744, -0.034695424, -0.030582702, 0.021853216, 0.0056408076, -0.10726763, 0.013156705, -0.012628139, -0.059192494, -0.03600472, 0.0040631006, -0.025864368, -0.03527204, 0.0037360534, -0.015762912, 0.0054456103, 0.007983683, -0.00386621, 0.012791738, -0.020780506, 0.030468633, 0.017786618, -0.0014384052, -0.029092139, 0.018195499, -0.033540998, -0.0037727854, 0.03691173, -0.0026503797, 0.046514798, -0.0009243858, 0.062442027, 0.049431346, 0.005613564, -0.05024455, 0.023635779, -0.016621321, 0.043655585, -0.08332537, -0.055683862, 0.07896556, -0.013149081, -0.03046588, 0.020427316, 0.046331536, 0.0041341353, 0.04809395, -0.0044112126, 0.009378476, -0.02186892, 0.01046095, 0.01563916, 0.007980566, 0.039125733, -0.0049972953, 0.049492665, 0.026460035, -0.011880669, -0.00017106833, 0.010233326, 0.06452768, 0.034045268, 0.05075605, 0.005478682, -0.07386812, -0.024467794, 0.00050504843, -0.0044316007, -0.027551858, -0.048888925, -0.033442505, 0.016360523, -0.036342707, -0.002842643, 0.020847337, -0.055966746, -0.011052765, 0.031648718, 0.027081173, -0.038372733, 0.03437859, -0.00048140084, -0.028649643, 0.010510019, 0.08612651, 0.006816065, 0.04697249, 0.022242965, -0.009305714, -0.010435883, -0.0028668274, 0.058516473, -0.03583766, -0.0027179022, 0.0058445893, 0.05545876, 0.0416265, 0.046424832, -0.013122704, 0.053309612, 0.017572967, 0.0495647, 0.0040823524, -0.012001461, 0.020363094, 0.021351796, -0.025459662, -0.018470429, 0.016771646, 0.009010117, -0.0047513526, -0.00967779, 0.04047145, 0.011962814, -0.054505784, 0.019031478, -0.0030142313, 0.021503812, -0.00959846, 0.008509624, 0.015811643, -0.028470086, 0.034881208, -0.062721014, -0.016826143, -0.026628738, 0.0087008495, -0.020541897, -0.0066694696, 0.014113781, 0.0141898515, 0.02779665, 0.03619596, -0.020825716, 0.003460208, 0.031030634, -0.016956225, -0.039753594, -0.07868971, -0.0039788727, 0.020144865, -0.0048942296, -0.037005465, -0.009376744, -0.00044218233, 0.037419163, 0.010017133, 0.00013231632, 0.03762894, -0.07257309, -0.004947936, 0.029146425, 0.042145576, 0.0024706335, -0.004984703, -0.052479398, 0.025548857, -0.012274419, 0.051688723, 0.04120149, -0.013837822, 0.03886686, 0.0025427546, 0.016755516, 0.026106028, -0.016468752, 0.01675635, 0.0024388935, 0.01751603, -0.039155632, 0.0077107185, 0.023413077, 0.01027378, 0.030083122, -0.0451308, -0.050864097, 0.038781676, 0.03524314, 0.036515597, 0.030642597, 0.0585149, -0.010081727, 0.057639014, -0.012107496, -0.00023341991, 0.08046724, -0.012444939, 0.009500873, -0.029802663, 0.07271131, -0.018992154, -0.028934006, -0.040973384, -0.0063666794, 0.03404162, -0.047465526, -0.0100732865, 0.01972163, 0.0011147201, 0.0067219795, -0.010791659, 0.028581206, -0.009582416, -0.05826193, 0.07788587, -0.060980186, 0.0029498762, -0.008370386, 0.058729775, 0.010598092, -0.03302828, 0.04374969, -0.056597393, -0.057297703, 0.012307932, -0.009598975, -0.0017019731, 0.072085045, -0.027515983, -0.03722489, 0.018114492, 0.008157678, 0.040490165, 0.010277484, 0.030252233, 0.0048176404, 0.011510325, -0.051065642, 0.07077045, 0.0013901806, 0.0442657, 0.07108763, 0.022111455, 0.06869965, -0.011286347, 0.04215968, -0.052562322, -0.0012326412, 0.07543058, -0.0600962, -0.013920605, 0.020076748, 0.018060166, -0.009908855, -0.043021727, -0.010688765, -0.002958822, -0.07327563, 0.021393353, 0.06404577, 0.010565776, -0.014070713, -0.0016586011, 0.011634223, -0.00017381123, -0.034598418, 0.062250767, -0.007003833, -0.029466305, 0.0019676979, 0.029603237, 0.0050261593, -0.022334935, 0.045638904, 0.005198083, -0.01137709, 0.011024797, 0.035088602, -0.024874507, 0.049249027, 0.046952467, 0.064622216, -0.023774032, -0.007732795, 0.0010145814, 0.03266677, -0.03506843, -0.023145998, 0.052549932, 4.0444826e-05, 0.045959674, 0.029400896, -0.028266065, 0.07121589, -0.017535754, -0.025186988, -0.025219547, 0.011139418, 0.027726075, -0.061034337, -0.0028074, -0.029949589, 0.030049738, -0.0025914372, -0.005752833, -0.018570459, -0.013470248, 0.0039789397, 0.01276807, -0.04643029, -0.0015354871, -0.026805777, 0.02387934, -0.04654072, 0.038053043, -0.024151694, -0.015008598, 0.002010473, -0.039648984, -0.02640144, 0.019858304, -0.063420326, 0.011303156, -0.08676671, 0.02472719, -0.012397515, 0.020032695, -0.032166515, -0.0117074605, -0.020865692, 0.020537656, 0.04485223, -0.020103745, -0.03822155, 0.04960905, 0.024154484, -0.011292431, -0.015297452, -0.051086623, 0.004735497, 0.0010284559, 0.055274505, -4.180737e-05, -0.09981163, 0.030186035, 0.042814035, 0.02881731, 0.016387766, 0.037244193, -0.016075026, 0.03456626, -0.022933112, -0.027927306, -0.060247082, -0.028671155, -0.00878399, -0.016806094, 0.015642222, -0.010860968, -0.019473953, -0.010582946, 0.018014342, -0.010051627, -0.038025633, 0.021307005, -0.00093820464, 0.0025392321, -0.021582598, -0.0129504325, 0.02030688, -0.0014514144, -0.004892546, 0.038632054, -0.0064268145, 0.02734927, 0.012641859, -0.009867812, -0.05855999, 0.02973465, 0.0010725892, -0.07747789, 0.004924897, -0.009904908, -0.007717705, -0.005407498, 0.037335727, -0.03484788, 0.05814237, 0.020057317, -0.027178967, -0.07724721, -0.0030833546, 0.004887655, 0.03656221, 0.051346876, -0.05870851, 0.039379813, -0.070767544, 0.02967656, -0.03952786, 0.02601906, -0.05284008, -0.02774901, 0.03373002, -0.00096720806, 0.021679677, 0.038730472, -0.043516077, 0.042038742, -0.04215651, 0.008159939, 0.057961475, 0.0014276764, 0.03788087, 0.045117833, 0.044438247, -0.011871662, 0.041626487, -0.0012000113, -0.031384885, -0.04824873, -0.05375951, 0.091709435, 0.045384984, 0.013416604, -0.054314975, 0.011467255, -0.025782865, 0.077694796, 0.0030677766, -0.02348246, -0.046067916, 0.05769194, 0.0018013674, 0.038466457, -0.022512529, -0.009251862, -0.00803029, -0.061867844, 0.004105441, -0.03972818, -0.041848637, -0.009997046, 0.00970174, -0.010165894, -0.015275764, -0.07922807, -0.02192274, 0.008839868, -0.053718295, 0.013307217, 0.026345992, 0.0062347613, 0.041576292, -0.011298321, 0.049328245, -0.02645022, 0.053389505, 0.024702003, -0.008887435, 0.01156926, -0.0010406743, 0.0058191866, -0.08525533, -0.002686964, 0.065464154, -0.020427486 ] }, { "values": [ 0.007881167, -0.036278214, -0.03986995, -0.0018361444, 0.008819966, -0.009192159, 0.014387874, 0.004413746, 0.0063328883, 0.012621772, 0.028309025, 0.03337861, 0.037489343, -0.039519478, -0.04744226, -0.04304894, 0.015810044, -0.0037825422, -0.0883947, -0.08562582, -0.021456143, 0.014743659, -0.008803569, -0.06286799, -0.0055418047, 0.042881396, 0.016436452, -0.062823415, 0.01781544, -0.042341888, 0.0052978382, 0.03444276, -0.018584866, -0.0053065205, 0.040601436, 0.03422333, -0.032495573, -0.003991075, 0.023114758, -0.04078326, -0.025634836, -0.009150694, -0.04642061, -0.004769836, -0.03155062, 0.030675279, 0.016556248, 0.03167634, -0.0028266462, 0.036256105, 0.05233788, 0.014104872, 0.028039455, -0.012700302, 0.028878918, -0.04583072, -0.1024188, -0.062387247, 0.021457406, -0.012127605, 0.0004523865, 0.0008835321, -0.023511946, -0.030977882, 0.017294757, -0.020732734, -0.023708053, -0.050710525, -0.04063267, 0.044099584, -0.038375262, 0.02266917, -0.05897515, 0.0044065807, -0.025938991, -0.003480867, 0.0016723499, 0.03708477, -0.055044718, 0.020965606, -0.03398618, -0.012819076, 0.07366389, 0.023556903, 0.029771086, -0.0067528766, 0.020558517, -0.03380575, -0.037803106, 0.0078539, 0.07848894, -0.038860008, -0.0297927, 0.015257306, 0.03667891, -0.02595685, -0.0131588, -0.10349563, -0.031007124, 0.109753184, -0.023031354, -0.03894617, 0.006209328, -0.033985022, 0.045642395, 0.06235333, -0.00046353517, -0.05004034, -0.021215608, 0.055269662, -0.03978721, -0.04712931, 0.018771373, 0.019249005, -0.024807163, -0.028970186, 0.022081293, -0.0074527375, -0.006046868, -0.04589228, 0.006752119, 0.0039009587, -0.036953833, 0.06756485, 0.0031648558, -0.0031578017, -0.006233985, -0.003928012, -0.0206357, -0.064514555, 0.07637519, -0.12612805, 0.01422062, -0.010954397, -0.0399914, -0.03199746, 0.050560188, 0.06324227, 0.01617084, -0.004952703, -0.02642602, -0.008259557, 0.008931797, 0.043702923, 0.0033773477, -0.04887903, -0.012806585, -0.0042057675, -0.015328968, 0.0154251885, -0.05445662, 0.01841312, 0.050950605, -0.017555771, -0.03767593, 0.00355159, 0.08949821, -0.020646777, 0.03211342, -0.047113735, 0.053006034, -0.006051177, 0.012488825, 0.027872503, -0.036310304, -0.012990744, 0.02869517, -0.07620914, -0.02243944, -0.04296928, 0.019113285, -0.04517983, -0.05711866, -0.10021271, 0.016171193, 0.0056817317, -0.024167288, 0.040764652, -0.008829143, 0.005382915, 0.043297533, 0.01981966, -0.0045486307, -0.0020052171, -0.030435087, -0.008529435, -0.051379483, 0.071453795, 0.020928066, 0.0099771675, -0.008470729, -0.0076185106, 0.009829232, 0.09303536, 0.045726527, 0.012796194, 0.06967697, -0.008470718, 0.027851503, -0.042147458, 0.06039945, -0.011901821, -0.025226876, 0.012050004, -0.049035758, -0.039208613, -0.013417608, 0.00053802785, 0.04881865, -0.0069785058, -0.017508684, 0.013057648, 0.021967372, -0.021379512, -0.042985216, 0.018511657, 0.06952725, 0.065507784, 0.02292956, -0.025422992, -0.007816464, -0.0040494027, 0.029328704, 0.012059168, 0.01854434, -0.0585029, -0.059390076, -0.08461053, 0.012606323, 0.0040266155, -0.02576802, 0.0025747537, 0.022613239, -0.015623355, 0.012834042, 0.0073298477, -0.007852496, 0.024868656, 0.005079785, -0.015757805, 0.0038793294, 0.0046477946, 0.018194772, -0.006836551, 0.029053094, 0.055070017, 0.06591325, 0.06246905, -0.026897913, -0.026607871, 0.0153636085, -0.014960383, -0.08977928, -0.0037880153, -0.072564654, -0.021440823, 0.051649556, -0.07616729, -0.010453547, -0.049791656, 0.010527688, -0.00134803, -0.037828665, -0.054459922, -0.016512169, -0.037730392, -0.0429627, -0.0021018204, 0.09411039, 0.025125798, -0.0014872339, 0.026203586, -0.047367696, -0.037998248, 0.070177905, 0.021596711, -0.012324518, 0.011356938, -0.04931703, -0.03830015, 0.06782263, -0.03607899, -0.033322074, -0.04356519, 0.00216377, -0.014574182, 0.008749816, 0.037714105, -0.061460182, -0.06401684, 0.06696414, 0.032840177, 0.04053586, -0.012992346, 0.00505412, -0.013796843, 0.025038367, 0.021062741, -0.01693057, -0.004607014, 0.027755955, 0.064418815, -0.0039465167, -0.0025102869, -0.03167353, 0.0785632, -0.03868114, -0.04430361, -0.015292459, 0.0032316155, 0.006205626, 0.06016858, -0.021941205, -0.038562812, 0.033457182, 0.013703322, -0.1027794, 0.012281061, -0.01257481, -0.033409644, 0.000976252, 0.015811898, -0.03286238, -0.003007654, 0.012386498, -0.023329109, -0.0027521825, 0.00030559566, -0.008273138, 0.010553793, 0.010968749, 0.033980515, 0.014660835, 0.009816682, -0.026979387, 0.009431721, -0.009616181, -0.011005641, 0.045094144, -0.0130154025, 0.041874003, 0.0028449586, 0.059180755, 0.018257085, -0.0027992034, -0.07175488, 0.0063648964, -0.0304223, 0.06646353, -0.07656121, -0.0663724, 0.0674109, 0.011167721, -0.024249248, 0.024090016, 0.032688368, 0.0092914365, 0.04125078, 0.03147987, -0.015670974, -0.0093626585, 0.034743045, 0.025223479, 0.015720386, 0.012178573, -0.023922455, 0.0485564, 0.013079107, -0.020365741, -0.02678548, 0.015564458, 0.07043339, 0.030977761, 0.011984839, -0.022647953, -0.09388473, -0.020132167, -0.004256984, -0.0071022213, -0.048749696, -0.046634056, -0.03706299, 0.014480593, -0.035967164, 0.0037773105, 0.025858589, -0.04359316, -0.028775103, 0.022577561, 0.025367936, -0.014904959, 0.04755427, 0.0048259706, -0.023118783, -0.0057956846, 0.058889065, -0.002180863, 0.041084185, 0.039365433, -0.032037415, -0.017644411, 0.011064884, 0.045014016, -0.012984676, 0.001963289, 0.007758949, 0.04966097, 0.00092335645, 0.04836226, -0.0095357755, 0.046883725, 0.0058930907, 0.031280044, -0.0025533538, -0.017833482, -0.00022243896, -0.0013916396, -0.03305566, -0.02389156, 0.010780371, 0.0027217178, -0.0018013347, 0.016039867, 0.03505703, 0.018661728, -0.07883623, 0.015765531, -0.012991734, 0.017463317, -0.030357314, -0.006586664, 0.02726937, -0.037348878, 0.036469895, -0.04557516, -0.022590443, -0.027052067, 0.008878005, -0.022793565, -0.022841102, 0.024072364, 0.014006796, 0.028778462, 0.02778851, -0.014459017, 0.0027700355, 0.04560547, -0.0077773943, -0.05005516, -0.05643327, 0.015276845, 0.03530118, -0.00726538, -0.044994105, -0.019665692, -0.005926298, 0.03957695, 0.018562593, -0.027168103, 0.024198294, -0.049969368, -0.02623786, 0.020301253, 0.045176443, 0.020784661, -0.026534483, -0.047411107, 0.031456746, 0.012564936, 0.051104885, 0.035658605, -0.017520329, 0.043310136, 0.00089829735, 0.028941093, 0.041187137, -0.014328158, -0.0026114208, 0.020121334, -0.00046944746, -0.037243206, 0.039034527, 0.02578186, 0.0067714495, 0.04444056, -0.054701775, -0.035692956, 0.012527046, 0.034300007, 0.0059080487, 0.008551944, 0.06462541, -0.01840384, 0.045144968, -0.019080251, -0.011531926, 0.081961244, -0.015948033, 0.036061954, -0.03194188, 0.052846953, -0.010479759, -0.0371762, -0.025216661, -0.010340224, 0.018125035, -0.031370565, -0.02255171, 0.04468711, -0.0124069555, 0.0046404903, -0.0030818917, 0.028128315, -0.0098729115, -0.06267904, 0.089211285, -0.055358328, -0.004270865, -0.022336308, 0.0692433, -0.02087985, -0.040174082, 0.05724122, -0.090087295, -0.07835944, -0.0036556742, -0.004722284, -0.005521471, 0.0595859, -0.020333415, -0.028154284, 0.011715907, 0.006467546, 0.024713153, 0.01094652, 0.040468197, 0.014223257, -0.017888373, -0.038986064, 0.066188075, 0.02065708, 0.013183366, 0.07334186, 0.019826034, 0.05221812, -0.010622679, 0.030689565, -0.044900667, -0.0021532753, 0.07768907, -0.055375494, -0.039167013, 0.014560396, 0.0051850867, -0.031217156, -0.030202916, -0.013917536, -0.022853352, -0.0627508, 0.036802925, 0.035457086, 0.003818609, 0.0050965548, 0.020134464, -0.0195015, 0.004541188, -0.020839728, 0.07664461, -0.02201619, -0.016943166, 0.0016293778, 0.013157561, -0.00010352931, -0.02924079, 0.029796531, 0.019721411, 0.0016903662, 0.005228049, 0.035021205, -0.029522024, 0.05586384, 0.06588314, 0.07710617, -0.027472895, -0.029751549, 0.017398702, 0.018650418, -0.03765696, -0.01932419, 0.041249745, -0.0020921163, 0.054075867, 0.018522045, -0.029503385, 0.050235786, 0.0028054053, -0.010969264, -0.048111137, 0.002001758, 0.02218161, -0.036716048, -0.012644632, -0.026343187, 0.035038076, 0.0010086794, 0.008808053, -0.0102913845, -0.014637891, 0.046369974, 0.001905302, -0.029016402, 0.008758571, 0.008865994, 0.017163206, -0.068220265, 0.028701829, -0.03208932, -0.026837701, 0.020019365, -0.04883038, 0.00595695, 0.031060636, -0.04619336, -0.011197644, -0.06616001, 0.01636427, -0.0047840774, 0.022773257, -0.03651506, 0.0030956862, -0.015345389, -0.008839178, 0.05221912, -0.027434016, -0.026066922, 0.055430338, 0.018053895, -0.0050535016, 0.012928388, -0.03851705, -0.00015459918, 0.025269968, 0.032420583, 0.020206723, -0.07359016, 0.024142927, 0.054363653, 0.029580249, 0.0061100232, 0.019871896, -0.03252059, -0.013629837, -0.020336436, -0.03718577, -0.06663355, -0.034908302, -0.0056922445, -0.024589175, 0.006364697, -0.011928592, -0.030351017, -0.017843714, 0.0062841903, 0.0112197, -0.026053095, 0.0031756095, -0.01454135, 0.023987748, -0.03604147, -0.053232316, 0.027283024, 0.016200325, 0.019664787, 0.062336598, -0.039731313, 0.031842887, 0.018031713, -0.004267903, -0.05008165, 0.011105375, 0.016665613, -0.06280302, -0.0014578467, -0.0067944173, 0.0038985228, -0.00984479, 0.017208898, -0.033241488, 0.038555633, 0.005558393, -0.006228329, -0.05767179, -0.018567154, -0.015935576, 0.0054997103, 0.068904534, -0.04622666, 0.039080784, -0.098008975, 0.007052169, -0.035656843, 0.027349666, -0.06073427, -0.014823749, 0.012953777, 0.012362789, 0.003981389, 0.04037023, -0.05975135, 0.034532104, -0.03826048, -0.0086982185, 0.07335354, -0.0032209111, 0.044319414, 0.04301705, 0.04979186, -0.0010569823, 0.048794348, 0.04683893, -0.018233698, -0.039261095, -0.032183707, 0.079551965, 0.03458161, 0.0037436169, -0.0672032, 0.012439959, -0.03740222, 0.07175562, 0.011020195, -0.03185087, -0.042800214, 0.05605604, 0.0045220447, 0.03900555, -0.04143884, -0.005698505, 0.011556341, -0.022254579, 0.018967835, -0.0255167, -0.036749583, 0.009650933, 0.029792158, -0.018501816, -0.043136388, -0.08036269, -0.012962046, 0.010887837, -0.06825895, 0.03896963, 0.021099163, -0.011836808, 0.036803287, -0.01923241, 0.014140895, -0.03255128, 0.052991718, 0.011943948, -0.019957153, 0.029754402, 0.003782933, 0.021922372, -0.068786256, 0.020732094, 0.065667115, -0.027572287 ] }, { "values": [ -0.002907295, -0.031462632, -0.03961904, -0.012919671, 0.008642252, 0.010391772, 0.004784487, 0.0039663273, 0.00874226, 0.007750968, 0.024736576, 0.031753637, 0.03264193, -0.03505037, -0.03525155, -0.059564605, 0.017591164, -0.0006978802, -0.09407561, -0.08937596, -0.0076514757, 0.00965117, 0.002272025, -0.049921267, -0.029005881, 0.03658743, 0.025421428, -0.06363953, 0.021368865, -0.04091611, -0.0015534038, 0.032341238, 0.0014478294, -0.018332751, 0.037302356, 0.04360155, -0.055846233, -0.015250917, 0.009007123, -0.052171163, -0.024038078, -0.005837442, -0.053332742, -0.00018651586, -0.044086706, 0.033649754, 0.025622534, 0.028738022, 0.0025107195, 0.0237175, 0.04707558, -0.0036982636, 0.026698465, -0.01610773, 0.026047839, -0.05133425, -0.1047268, -0.02181242, 0.024563268, -0.00808368, 0.001454389, 0.005441741, -0.041708365, -0.024820102, -0.009607776, -0.016580796, -0.016854908, -0.052168507, -0.03089751, 0.04452979, -0.044727076, 0.0028533046, -0.07499081, 0.0234299, -0.024271028, -0.0013736828, 0.015842311, 0.01642042, -0.053945888, 0.030031733, -0.003603856, 0.019230867, 0.056556545, 0.001344557, 0.016270973, -0.0006805865, 0.04263951, -0.033356234, -0.03437489, -0.0055074957, 0.075760886, -0.034288827, -0.061114617, 0.013060068, 0.025100185, -0.0037542952, 0.0028777844, -0.11046979, -0.022315424, 0.098520696, -0.034639977, -0.062302314, -0.0011077073, -0.040624846, 0.039810967, 0.047555063, -0.00824412, -0.03354212, -0.02819641, 0.03874494, -0.044327278, -0.04298321, 0.028933855, 0.018533573, -0.03247656, -0.034432624, 0.0092750015, -0.018867189, -0.009302399, -0.055274986, -0.010556121, 0.0021160464, -0.034336574, 0.06856605, 0.012485454, -0.008360453, -0.011911935, 0.0035803758, -0.02980762, -0.057885386, 0.0810405, -0.12763114, 0.015033044, -0.028637156, -0.026014192, -0.029574184, 0.07912133, 0.058853354, 0.023792662, 0.0045649274, -0.035890874, -0.0073475405, -0.016817788, 0.045082677, -0.008139349, -0.059115816, -0.03585473, -0.020238707, -0.012575954, 0.022330344, -0.034953445, 0.02140123, 0.046536252, -0.0017826469, -0.05300297, 0.01470615, 0.07264055, -0.013717221, 0.021255344, -0.053274225, 0.064504094, -0.014421828, -0.0061676465, 0.039948992, -0.021614963, -0.004235923, 0.03823197, -0.078678995, -0.025386594, -0.04157832, 0.031099586, -0.060513586, -0.07419028, -0.08507457, 0.002363581, 0.0035669585, -0.0021669527, 0.03988989, -0.015819075, 0.016241018, 0.058879964, 0.041999, -0.017511897, 0.007447859, -0.017519979, -0.009257491, -0.040275842, 0.058967873, 0.03847332, 0.017685294, -0.014864648, -0.0039940435, 0.0049992288, 0.09814669, 0.036259994, 0.0042106304, 0.06950991, -0.0026140974, 0.01466135, -0.046301447, 0.04528539, -0.007222217, -0.040863164, 0.021421956, -0.044692528, -0.008934883, -0.0152687095, -0.004149398, 0.04806601, -0.018555094, -0.0068451175, 0.009024445, 0.04093719, -0.029944606, -0.052182518, 0.023387149, 0.0921521, 0.060593158, 0.026457971, -0.013414507, -0.0363396, -0.015715756, 0.016248211, 0.013731494, 0.012380991, -0.05183067, -0.044229742, -0.06953754, 0.005230827, -0.009500561, -0.005132437, 0.016602915, 0.0090237865, -0.014973535, 0.0017686496, 0.009681117, -0.010569374, 0.037189934, 0.0077430755, -0.004866937, 0.004974729, -0.021146195, 0.011898935, 0.0015852, 0.012589099, 0.06614728, 0.06776604, 0.054444708, -0.012501546, -0.02394876, -0.014502257, -0.026138114, -0.08823674, 0.0015765902, -0.07819484, -0.021598293, 0.0461618, -0.071996644, -0.0022795289, -0.035079286, 0.0123059, 0.005095396, -0.027553575, -0.057394743, -0.008768748, -0.039880525, -0.044309936, -0.0050211786, 0.082168356, 0.022158286, 0.0064748987, 0.03334331, -0.055402614, -0.0530927, 0.049687542, 0.024241276, -0.019569928, -0.00042810044, -0.038079727, -0.048263263, 0.060022037, -0.03567235, -0.036758095, -0.053663347, 0.003766428, -0.006066271, 0.0022331157, 0.03497042, -0.04915746, -0.061994873, 0.053788666, 0.033965725, 0.03715203, -0.031694315, 0.006345529, -0.0030493373, 0.017709939, 0.017264836, -0.044952024, 0.00323659, 0.034778025, 0.061217673, -0.002061553, -0.012520416, -0.025892798, 0.07761095, -0.030088644, -0.03118678, -0.016043885, 0.0014348876, 0.0002993848, 0.045821648, -0.024113515, -0.033545893, 0.017619705, -0.002801196, -0.11615736, -0.0011479829, -0.01141593, -0.017567959, 0.0016061227, 0.0064668003, -0.0056196093, -0.022487713, 0.02744505, -0.023736952, 0.007892067, 0.024099, 0.0026072357, 0.020546803, -0.0064709755, 0.037417643, 0.036283314, 0.00059515116, -0.025636828, -0.00021765359, -0.009601778, -0.015842613, 0.062576056, -0.0073292977, 0.04786601, -0.0012552596, 0.059634555, 0.03547737, -0.003404562, -0.07031758, 0.02221615, -0.023300169, 0.04592269, -0.09340863, -0.0666894, 0.07258719, 0.0038877896, -0.030696321, 0.011804788, 0.029704431, 0.007217831, 0.025983062, 0.020995235, -0.011272858, 0.0012835762, 0.025675647, 0.020953052, 0.0134557355, 0.024362626, -0.01933898, 0.050254285, 0.013249065, -0.010588611, -0.016110452, 0.01818421, 0.05712916, 0.022115847, 0.03951934, -0.022230495, -0.08091893, -0.013257927, 0.005400759, -0.005447327, -0.04877251, -0.034054015, -0.047852837, 0.007431811, -0.030017179, 0.0012227108, 0.016687492, -0.042142507, -0.012797479, 0.029677711, 0.025077995, -0.029151853, 0.060874123, -0.00051829475, -0.032502946, 2.6156746e-05, 0.06421703, -0.006566977, 0.023610117, 0.03316894, -0.0315014, -0.023187986, -0.0010555522, 0.06252224, -0.025857627, 0.0099804, 0.0014597762, 0.05050342, 0.0064180577, 0.048383955, -0.007306876, 0.051225007, 0.023849126, 0.026731914, -0.0100008445, -0.021413164, -0.00034455047, 0.02919824, -0.022788892, -0.012767075, 0.014695386, 0.004670848, 0.02193128, 0.01906299, 0.008886759, 0.0015216436, -0.069707625, 0.015279336, -0.0089447815, 0.011963626, -0.019212073, -0.0103214225, 0.013001174, -0.03579684, 0.03817785, -0.05036443, -0.01992991, -0.03021718, 0.014731165, -0.02792974, -0.01859841, 0.028299065, 0.017501, 0.016289517, 0.026264654, -0.008375206, -0.014675862, 0.04422723, -0.0043760296, -0.049478345, -0.05791191, -0.003070743, 0.015736716, -0.02493032, -0.02312107, -0.023367038, 0.0015394209, 0.025472349, 0.015811365, -0.031918824, 0.045513976, -0.07386641, -0.0031850066, 0.032155983, 0.036925115, 0.005364669, -0.023461562, -0.05542407, 0.025764259, 0.019455926, 0.05993041, 0.02505161, -0.010385313, 0.0609717, -0.014147102, 0.022818703, 0.05053646, -0.007438032, 0.0068717403, 0.02441081, 0.006383734, -0.04721245, 0.035038058, 0.038552087, 0.024113655, 0.04811372, -0.05874515, -0.015107077, 0.0273346, 0.039179992, 0.01609083, 0.030580541, 0.066728726, -0.019715715, 0.05322234, -0.017010553, -0.0049591376, 0.07294102, -0.01240569, 0.037126545, -0.020173315, 0.042081818, -0.012654196, -0.042899366, -0.049333137, 0.010713516, 0.02634652, -0.059051845, -0.023571173, 0.02716791, -0.015795713, 0.011705829, -0.0108863, 0.016045578, 0.0075034127, -0.058647167, 0.07480554, -0.068690516, -0.015287341, -0.017528782, 0.06703698, 0.0075774295, -0.035720672, 0.043376274, -0.065379955, -0.08037443, -0.0018782933, 0.010642105, -0.013193931, 0.066656984, -0.014327247, -0.019323781, 0.011137608, -0.011234637, 0.040472355, 0.003289238, 0.022949627, 0.023104655, 0.0040733144, -0.035694726, 0.06450442, 0.031768207, 0.03603227, 0.070717834, 0.020847391, 0.06787168, -0.016113874, 0.027803663, -0.02372461, -0.018538557, 0.0639938, -0.04094154, -0.042317584, 0.027571794, -0.0051600747, -0.017736085, -0.038881715, -0.020744491, -0.026658794, -0.08236927, 0.02726622, 0.044206224, 0.006753999, 0.02123354, 0.0056398157, -0.0004147394, -0.016212845, -0.019314587, 0.061194185, -0.020420808, -0.0247148, 0.0069881016, 0.03150754, 0.0008605251, -0.030698253, 0.013548764, 0.0012750681, 0.0062341606, -0.0027236156, 0.027400743, -0.030750372, 0.041316807, 0.047976837, 0.07110803, -0.02928552, -0.024108289, 0.03811542, 0.012377402, -0.03402887, -0.0074087256, 0.035706006, 0.0067665824, 0.050589006, 0.005738397, -0.03162754, 0.060505547, -0.009555649, -0.0062291548, -0.03847394, 0.0051435633, 0.01812249, -0.034672428, -0.010542492, -0.01242997, 0.038132194, 0.0046127243, -0.00687912, -0.0067708776, -0.009819024, 0.047890402, -0.0145397885, -0.026802815, 0.013555953, 0.009593793, 0.025297476, -0.06647543, 0.022561936, -0.024617342, -0.017309558, 0.028300187, -0.041028053, 0.0091352295, 0.02246949, -0.067504026, 0.024173537, -0.08083357, 0.02669637, -0.016682599, 0.02356397, -0.038619034, 0.013097679, -0.019180644, -0.0011088311, 0.05220723, -0.032955125, -0.03242642, 0.043424416, 0.013325902, -0.013162193, 0.011961675, -0.05079004, -0.000985408, 0.013557121, 0.030559344, -0.010124707, -0.07345382, 0.04383012, 0.036712028, 0.034426197, 0.011780395, 0.03528778, -0.018407132, 0.017175088, -0.021380538, -0.034840338, -0.07023329, -0.039871972, 0.024444025, -0.023045387, 0.02301714, 0.0081335595, -0.028419342, -0.030793652, 0.0058952994, -0.0039479285, -0.038763195, -0.008439027, -0.0040946496, 0.010666188, -0.02534444, -0.03578041, 0.025037527, 0.017705256, 0.012555968, 0.04305222, -0.029882105, 0.018304035, 0.018546898, -0.009282605, -0.054485343, 0.0041925097, 0.018406933, -0.06271961, 0.018119892, -0.014967914, 0.014974605, -0.016030433, 0.024958061, -0.051114976, 0.050490577, -0.004093471, -0.009081104, -0.0827083, 0.005388983, -0.014205708, 0.011678631, 0.056488376, -0.05655627, 0.015371202, -0.11034444, 0.018811194, -0.04661005, 0.015100973, -0.043684807, -0.010634414, 0.014616223, -0.0030587935, 0.019188339, 0.043486655, -0.051617086, 0.036001153, -0.035759177, -0.0077692596, 0.05885092, -0.010817235, 0.04143203, 0.041645844, 0.04568683, 0.0017917533, 0.046480387, 0.034684785, -0.015880624, -0.044776045, -0.039941754, 0.080182485, 0.040999446, -0.0070147817, -0.057535566, 0.011328713, -0.042863704, 0.070939675, 0.01610744, -0.036048416, -0.030220084, 0.050537497, -0.0044048117, 0.02988685, -0.023208642, -0.004537993, -0.009297091, -0.027904501, 0.0039010232, -0.02381792, -0.042012475, -0.008970958, 0.039034933, -0.0140576465, -0.022099119, -0.07029935, -0.015108072, -0.004516889, -0.069165014, 0.0351388, 0.020634364, 0.0046246937, 0.04233804, 0.005727641, 0.029403752, -0.039277755, 0.060370006, 0.026674684, -0.029210951, 0.03240267, -0.009994753, 0.013905646, -0.08297836, 0.012224095, 0.06146322, -0.03486323 ] }, { "values": [ -0.0136203505, -0.046736494, -0.053371128, -0.0341517, 0.015476692, 0.01621047, 0.010950291, 0.0025412168, -0.0047660023, 0.028283523, 0.013208621, 0.050005805, 0.0217945, -0.010058086, -0.04270471, -0.050419565, -0.0033731489, -0.0027949184, -0.09968712, -0.10141379, -0.030644635, 0.015310549, 0.0104145985, -0.046182115, -0.019285388, 0.047517516, 0.019769248, -0.06505988, 0.017285235, -0.024323555, -5.7188954e-05, 0.036504436, 0.0038555174, 0.00890916, 0.07119344, 0.027749764, -0.03613213, -0.003416463, 0.012593009, -0.037957538, -0.0170986, 0.010463606, -0.04583483, -0.014616861, -0.0212965, 0.042806953, 0.022340497, 0.01054357, -0.015303553, 0.04439953, 0.032199502, -0.010647418, 0.0050588204, -0.018122688, 0.008258792, -0.036967546, -0.0677358, -0.055621978, 0.047624994, -0.018526204, -0.004950097, -0.022983335, 0.00088266615, -0.021878298, 0.026015235, -0.0096603045, -0.0069284467, -0.055874538, -0.03246964, 0.030625856, -0.024376951, 0.012479318, -0.057550076, 0.008705537, -0.033586796, 0.007571197, 0.00096541364, 0.04411045, -0.06234614, 0.010260655, -0.034418352, 0.0008369128, 0.0994659, -0.010728789, 0.01965434, -0.015016073, 0.021783473, -0.013124141, -0.026707401, 0.01091091, 0.1037331, -0.048696272, -0.019009707, 0.024006063, 0.013648205, -0.006134038, -0.0121413665, -0.11023686, -0.030697724, 0.10674365, -0.018634815, -0.03873574, -0.021199172, -0.030167565, 0.054278746, 0.02849904, 0.011048159, -0.053652942, -0.034717474, 0.043806374, -0.015286576, -0.049455438, 0.00844057, 0.016992548, 0.0038569074, -0.027602894, 0.0068561067, 0.0037030494, -0.014221773, -0.026077501, 0.0069496394, 0.004156592, -0.017271306, 0.06213277, -0.0053858836, -0.0053588157, 0.013836132, -0.00064089906, -0.031268593, -0.07960171, 0.08255039, -0.10437022, 0.009919083, -0.026734363, -0.039068893, -0.038600065, 0.034200586, 0.047275994, 0.03988002, 0.0076380093, -0.009616773, -0.018185642, 0.0048465305, 0.02259832, -0.017970372, -0.07126677, -0.0028561149, -0.009501971, -0.018885784, 0.019038176, -0.07857565, 0.03529447, 0.06747163, -0.011293111, -0.049616944, 0.009071081, 0.08370433, -0.025064759, 0.0382308, -0.045978416, 0.051986147, -0.009388476, -0.0060034115, 0.043923493, -0.05228699, -0.023193717, 0.02955862, -0.07962444, 0.009977981, -0.024609176, 0.045342427, -0.047512278, -0.036435246, -0.098339304, 0.033349555, 0.008527987, -0.0038182074, 0.06241701, -0.02575871, 0.013211709, 0.055694483, 0.022082213, -0.006099543, 0.009589972, -0.0035802198, -0.006238204, -0.042806864, 0.071349025, 0.043024145, 0.028949108, -0.015304955, -0.01709124, 0.011587463, 0.08009794, 0.034939338, 0.016402215, 0.072958276, 0.01308709, 0.03694832, -0.06793382, 0.05651326, -0.039085284, -0.0005798084, 0.0014640597, -0.04579204, -0.0264871, -0.042618368, 0.0077982456, 0.044305988, 0.01738408, -0.017421788, -0.006391967, 0.020015206, -0.03334431, -0.029330833, 0.0064771515, 0.07479345, 0.08689622, -0.0065866825, -0.004639224, -0.025804957, 0.0044413717, 0.017004607, 0.010087505, -0.006787441, -0.05726877, -0.049378153, -0.071389966, -0.0058698775, 0.00046339227, -0.017875731, 0.018823106, 0.023165379, -0.008076912, 0.013019153, 0.020570377, -0.013051303, 0.031492572, 0.029973634, -0.0065593487, 0.00017488882, -0.005917787, 0.017455185, 0.011353024, 0.027823174, 0.04138383, 0.047154196, 0.08608101, -0.035908706, -0.0133265555, -0.009595538, -0.006764637, -0.045811664, 0.0015888124, -0.06093283, -0.03033517, 0.0355031, -0.059848614, -0.021031968, -0.04839918, 0.0001313429, 0.0043511726, -0.021849152, -0.060356762, -0.021154542, -0.049803652, -0.019322895, -0.00040773803, 0.073066436, 0.038060103, 0.018771494, 0.020846035, -0.050439615, -0.08468239, 0.056762654, 0.018857002, -0.034402687, 0.013768047, -0.037187323, -0.052751407, 0.050889384, -0.030183898, -0.04857861, -0.028405223, 0.021040633, -0.014435413, 0.0044971947, 0.005206749, -0.05290381, -0.07483341, 0.06841795, 0.039588448, 0.02706444, -0.007279424, 0.026261149, -0.0115338955, 0.015422588, 0.0110592265, -0.0057005626, -0.00040711378, 0.026368903, 0.048996314, -0.013250815, -0.009469551, -0.030868847, 0.093106516, -0.03373784, -0.032081764, -0.02369985, 0.015897002, 0.0013904994, 0.056407247, -0.028350402, -0.03176588, 0.035771098, 0.012783769, -0.09246086, 0.007543479, -0.01917808, -0.05030868, 0.024858296, 0.019373601, -0.01940594, -0.012781791, 0.03610072, -0.02345934, -0.010898134, 2.3746396e-05, 0.00406404, 0.0048152255, 0.0059086927, 0.0150460545, 0.009247413, -0.024260387, -0.036925208, -0.009884165, -0.019543195, -0.019241605, 0.05595581, -0.029352508, 0.048341587, 0.019919883, 0.05201382, 0.001887514, -0.01703375, -0.06260404, 0.013268975, -0.018230712, 0.044505954, -0.06894623, -0.052672774, 0.052971452, 0.0036715472, -0.014159762, 0.04781928, 0.04405859, 0.020615248, 0.038836163, 0.036161028, -0.020633493, -0.0040316586, 0.036156166, 0.021862082, 0.00019011395, 0.013508504, -0.03156031, 0.05885897, -0.006332784, -0.016110053, -0.02299949, 0.0047771386, 0.078887776, 0.022707632, 0.002609514, -0.0096616205, -0.09122524, -0.005444856, 0.008199741, -0.0030301332, -0.0411273, -0.053697426, -0.03997318, 0.002987418, -0.030280586, 0.014359815, 0.033943653, -0.04091132, -0.02981743, 0.014314985, 0.02361498, -0.016883248, 0.07949948, 0.0040185982, -0.039423473, 0.013996618, 0.04844267, -0.014555509, 0.023571732, 0.02675516, -0.012804142, -0.0254937, 0.035417885, 0.052986916, -0.03377365, 0.004647292, 0.0041259294, 0.05525441, -0.016928507, 0.042377334, 0.014175737, 0.03714692, 0.0007562251, 0.033408977, -0.014107212, -0.022569587, 0.0032996691, 0.011235091, -0.023202004, -0.020769197, 0.021966334, -0.005973566, 0.029298438, 0.041663647, 0.037317656, 0.027595967, -0.078396484, 0.030404696, -0.0017564603, 0.022677239, -0.0073425714, 0.026414787, 0.019248664, -0.028585324, 0.043567363, -0.03259188, -0.034299992, 0.014853964, 0.030000933, -0.017134625, -0.01706772, 0.03346639, 0.03520656, 0.026815766, 0.0205446, -0.023460476, 0.014636602, 0.05615811, -0.022219704, -0.03210404, -0.0430247, 0.01161716, 0.041794263, -0.015009715, -0.03636633, -0.018136216, 0.014920087, 0.01755656, 0.027529636, -0.028666185, 0.025710246, -0.05103186, -0.0146497395, 0.023747055, 0.0339296, 0.005873546, -0.019955633, -0.055549435, 0.035112873, 0.04143597, 0.053959496, 0.039720904, -0.0002279379, 0.025949212, -0.0021615755, 0.032112423, 0.047838554, 0.0065721245, -0.025881808, 0.020607103, 0.0023169871, -0.033796046, 0.041250367, 0.02483408, 0.017962407, 0.045424327, -0.06862302, -0.021649566, 0.016058045, 0.026559379, 0.0057858652, 0.001584525, 0.069166936, -0.013441622, 0.030494478, -0.018730372, -0.012779111, 0.07651531, -0.010953143, 0.016525876, -0.05681571, 0.057842903, 0.0058429698, -0.037433162, -0.015408401, 0.005444794, 0.020759545, -0.032104358, -0.019809065, 0.030164078, -0.02097884, -0.012593395, -0.018027842, 0.033566233, -0.0059918812, -0.07254215, 0.09044975, -0.073271215, 0.0052865287, -0.038983025, 0.071254, -0.04511487, -0.025282146, 0.040179517, -0.07992873, -0.07007787, 0.002875132, 0.01261158, -0.0017306188, 0.035755165, -0.007098198, -0.020304963, 0.026114697, -0.013151086, 0.011773786, 0.005890521, 0.034772586, 0.010605429, -0.01795463, -0.023056498, 0.076920286, 0.030393358, -0.007830673, 0.07217635, 0.030005902, 0.063390195, -0.008912845, 0.03504588, -0.034007568, 0.00043252777, 0.083653845, -0.024529379, -0.062075894, 0.024900155, -0.0025773165, -0.013669552, -0.028315464, -0.03884361, -0.039931513, -0.05019876, 0.03719256, 0.03387579, -0.0056620883, 0.012284243, 0.021297704, -0.010909909, -0.008963371, -0.013057479, 0.0762935, -0.03808516, -0.018361935, 0.0029411477, 0.0065720477, -0.006004856, -0.047765, 0.01342824, 0.011642446, -0.0057256008, 0.009260709, 0.039601125, -0.023411872, 0.059461594, 0.056126613, 0.06112788, -0.043580484, -0.012640037, 0.026692132, 0.00985657, -0.0484406, -0.001442736, 0.030166216, -0.009890654, 0.026510105, 0.012182941, -0.041467406, 0.047531035, -0.00056569866, 0.0012099609, -0.05918373, 0.0039527924, 0.013397152, -0.0342999, -0.040829845, -0.013641807, 0.02892085, 0.024834473, 0.028295532, -0.0030419147, -0.0025437095, 0.06327686, -0.0026579294, -0.03612647, 0.0037299257, 0.029274885, 0.0028107176, -0.07058474, 0.012069735, -0.021638485, -0.032989055, 0.036284667, -0.035325456, 0.03774305, 0.04716531, -0.05112688, 0.024595521, -0.06672756, 0.0018531531, -0.020486832, 0.02232362, -0.043074068, 0.013573312, -0.040576074, -0.0042566922, 0.058804482, -0.021703755, -0.020852542, 0.04280216, 0.011277003, -0.009934297, 0.0021888707, -0.050000556, 0.0036681208, 0.026987407, 0.010788951, 0.02876497, -0.057694923, 0.046743963, 0.04337078, 0.042223077, -0.0058365925, 0.01864238, -0.03225044, -0.018843062, -0.017790841, -0.02280914, -0.06509556, -0.026741087, 0.0071901665, -0.01129939, 0.022404045, 0.01279669, -0.038993366, -0.030372445, 0.02144454, 0.034154646, -0.021469267, -0.011976331, -0.014964082, 0.025625823, -0.011525839, -0.04746204, 0.025583819, 0.033744495, 0.021999463, 0.04950161, -0.030569622, 0.016596435, 0.0033545322, -0.029730232, -0.06415255, 0.013150052, 0.0100649595, -0.045321833, 0.011194077, -0.009361373, 0.02761667, -0.028065477, 0.03225143, -0.04544767, 0.043358024, 0.0026834167, 0.032328345, -0.056876488, -0.015049563, -0.0057980963, 0.00047559952, 0.07188103, -0.046749234, 0.04784955, -0.11090799, 0.011901827, -0.034023628, 0.0051197377, -0.05728535, 0.008010089, 0.0034869842, -0.004054622, 0.0039763367, 0.017928781, -0.050868053, 0.024462897, -0.044851176, -0.011350967, 0.045088872, 0.0030521972, 0.031500056, 0.033170704, 0.032568038, 0.0039984244, 0.045637097, 0.05438099, -0.016927024, -0.025151763, -0.035707105, 0.060899716, 0.025250591, 0.001515716, -0.07445496, 0.01908829, -0.04328087, 0.07589972, -0.0086185, -0.014033374, -0.028557405, 0.05329539, -0.010862193, 0.025298147, -0.035866804, -0.006072619, -0.010298928, -0.029520929, 0.012989788, -0.012910789, -0.016590089, 0.024113363, 0.030758094, -0.018476786, -0.018252214, -0.07135275, -0.009473904, 0.00856863, -0.07650098, 0.037895035, 0.010826145, -0.009894496, 0.050262507, -0.0043144412, 0.015849378, -0.02936301, 0.04407228, 0.011699505, -0.013376791, 0.042875562, -0.020744344, 0.022446562, -0.078639396, 0.011745509, 0.059273094, -0.02607753 ] }, { "values": [ -0.029643757, -0.03174364, -0.03836377, -0.027231656, 0.0051817116, 0.030341454, 0.000158659, 0.020948693, 0.00095503393, -0.0046960167, 0.011999059, 0.03314955, 0.027203279, 0.014785213, -0.014388411, -0.05913702, -0.012353207, 0.0023061198, -0.10986381, -0.07094335, -0.0033919886, 0.012196662, -0.0012863686, -0.05135044, -0.024785327, 0.020542296, -0.005414991, -0.063627616, 0.034320883, -0.01918248, 0.0020598539, 0.029313242, 0.0052464944, 0.0121198, 0.028338984, 0.044608694, -0.03318715, -0.004372287, 0.022467587, -0.047637198, -0.0129608875, -0.020808194, -0.039109565, 0.008414568, -0.008497906, 0.03365278, 0.029696908, 0.025308974, 0.0068847374, 0.016707204, 0.055479586, -0.014224631, -0.0070467447, -0.034931924, -0.0034218857, -0.04882437, -0.08274706, -0.047727577, 0.03647171, 0.023102533, -0.013174983, -0.012514704, -0.035857234, -0.020546013, 0.009669818, 0.014763895, -0.0031166512, -0.048455145, -0.040716592, 0.04483574, -0.057045124, 0.008053061, -0.054224517, 0.024787841, -0.035238683, 0.0009931733, 0.010336847, 0.0130745275, -0.057500564, 0.020170044, -0.015597258, 0.02193497, 0.07543345, 0.0123192035, 0.01715062, -0.023286968, 0.0311782, -0.0007511897, -0.037647687, -0.0024754666, 0.09512105, -0.055891786, -0.025061024, -0.0070132753, 0.04189469, -0.0060996045, -0.0063259574, -0.08207948, -0.006223351, 0.077185914, -0.04177861, -0.022167746, 0.011033444, -0.026096001, 0.036567777, 0.048020218, -0.0039515756, -0.03825627, -0.035061866, 0.028814338, -0.025560487, -0.040469788, 0.011888354, 0.019308317, -0.005296964, -0.053483393, 0.009384139, -0.00078880216, -0.017804202, -0.05270991, -0.017630912, 0.002723224, -0.026670083, 0.082879305, 0.008566148, -0.011566401, -0.012044906, 0.016500823, -0.02525757, -0.059638623, 0.0923589, -0.10501214, 0.043164715, -0.030908298, -0.038604934, -0.0064726504, 0.087241136, 0.050544467, 0.023301866, 0.0021416591, -0.0340233, -0.015885694, -0.008762055, 0.041621268, -0.011466861, -0.061683033, -0.021990579, -0.03326522, -0.02082777, 0.02978989, -0.044672288, 0.03295541, 0.062212363, 0.012393921, -0.06794866, 0.007827278, 0.061671812, -0.014142608, 0.023704445, -0.078774564, 0.048087366, -0.021249501, -0.0014127168, 0.05693923, -0.054906286, -0.0044700443, 0.044184666, -0.062326424, 0.00080640276, -0.056327816, 0.015131059, -0.06428444, -0.06076495, -0.08376104, 0.0005041228, 0.021319477, -0.0034213245, 0.05020111, -0.044591583, 0.024371289, 0.049444262, 0.045044124, -0.02402273, 0.0033383274, 0.0034010964, -0.006119708, -0.019215977, 0.050611105, 0.041262887, 0.027950382, -0.020514082, 0.009371161, 0.011392404, 0.0774829, 0.021601463, 0.018848982, 0.068269424, -0.01623175, 0.018461818, -0.059721425, 0.027731916, -0.01066839, -0.019202137, 0.0023249483, -0.05255911, -0.022555264, -0.01553323, -0.008206473, 0.06864283, -0.0008997607, -0.027021276, 0.009117225, 0.024772186, -0.03064272, -0.037465174, 0.025582943, 0.0937998, 0.066946305, 0.030037183, -0.018690877, -0.047616776, 0.011669028, 0.02383247, 0.03356786, 0.0056870985, -0.06714811, -0.033609927, -0.054859456, -0.0013004347, -0.039583955, 0.009739083, 0.02572351, 0.0019470355, 0.0081801955, 0.021610718, 0.024106964, 0.006967035, 0.035085116, 0.0016614416, 0.013806633, 0.028196052, -0.011988998, -0.0053198272, 0.014976948, 0.02641819, 0.046682913, 0.06344829, 0.0513338, -0.015114577, -0.04719153, 0.0006261775, -0.038797528, -0.038949564, 0.0054633594, -0.04594266, -0.014202526, 0.021063222, -0.054647256, -0.007830469, -0.043344885, 0.018048085, 0.010487396, -0.015336789, -0.048143882, -0.022329047, -0.013588564, -0.03033918, 0.008938805, 0.067892626, 0.0030317511, -0.018970223, 0.030570747, -0.06698097, -0.0541678, 0.038965143, 0.013462289, -0.023773354, 0.0024279077, -0.035335075, -0.054990847, 0.05703293, -0.021267775, -0.030627105, -0.03342726, -0.00086132315, -0.0069627124, -0.008554848, 0.045063935, -0.049790636, -0.06422549, 0.05793068, 0.043839958, 0.03319105, -0.025192445, 0.032358542, -0.02069146, 0.017774649, 0.028914733, -0.036932107, 0.008896857, 0.046119157, 0.043198243, -0.02316612, -0.0049384655, -0.013517028, 0.099884555, -0.034010664, -0.016596993, -0.024211226, 0.013146319, -0.012132677, 0.04899883, -0.044960096, -0.03648815, 0.03292629, -0.0034629875, -0.10130725, -0.0058506257, -0.006663156, -0.045719292, -0.006081564, 0.009224389, -0.010273643, 0.007479905, 0.026983133, -0.007994708, 0.0005517657, 0.014602584, -0.0004498292, 0.008262415, 0.00802779, 0.0052048364, 0.01764685, -0.008166542, -0.0024985268, 0.01608503, -0.029206201, -0.0019427711, 0.06155431, -0.022001654, 0.0744205, -0.00010359563, 0.04004752, 0.034380477, -0.0013308888, -0.04658546, 0.01879538, -0.033773314, 0.031227792, -0.09779175, -0.04236487, 0.057410136, -0.0037170392, -0.029985536, 0.0126315905, 0.038366884, -0.00035846845, 0.03557874, 0.012872188, 0.008310456, -0.0002379132, 0.03813599, 0.018679813, 0.0039197793, 0.014575881, -0.014861824, 0.058601957, 0.009432401, -0.020377358, -0.009365273, 0.019217705, 0.06960385, 0.020586919, 0.008992145, 0.0020708388, -0.05387695, -0.0075085987, 0.0046977694, 0.019800697, -0.04002968, -0.049925197, -0.023531416, -0.004406985, -0.039721474, 0.014573624, 0.025922466, -0.039702162, -0.025909694, 0.007483257, 0.028081235, -0.016493207, 0.0810826, -0.00017180416, -0.026329488, 0.0053976374, 0.073666856, -0.011364952, 0.03732738, 0.042344134, 0.00603157, -0.02011043, 0.0166477, 0.06111376, -0.04175185, 0.0054451083, -0.016897006, 0.060935628, 0.007941163, 0.06309239, -0.015802339, 0.04690437, 0.0061975103, 0.020298077, -0.009172948, -0.03468981, 0.004385749, 0.02596183, -0.031838916, -0.019309575, 0.027494457, -0.013366609, 0.024765313, 0.020613365, 0.011538882, 0.0101818135, -0.0768139, 0.019382782, -0.015343707, 0.010080408, -0.0056077233, 0.0123126, 0.016905954, -0.034242734, 0.053746592, -0.0339558, -0.050570857, -0.0015535629, 0.022846771, -0.024080886, 0.002977505, 0.016182669, 0.021598548, 0.02617679, 0.032696307, -0.0064922203, -0.0033062235, 0.040539656, -0.009539891, -0.04296047, -0.06800392, -0.0129560735, 0.019875037, -0.00068584265, -0.0068713594, -0.033079416, 0.012701424, 0.017984195, 0.028404532, -0.018322064, 0.04512907, -0.07267128, -0.012879183, 0.029274091, 0.03187427, -0.009517679, -0.0274319, -0.046727676, 0.034850072, 0.016173948, 0.056857653, 0.038819015, -0.0014134473, 0.036166526, -0.009086553, 0.023752764, 0.03816097, 0.015145677, 0.005138062, 0.008199022, 0.0106811905, -0.056278724, 0.043349702, 0.029496385, 0.023045382, 0.051721077, -0.06282671, -0.0026859131, 0.051220603, 0.045305848, 0.021696638, 0.0310444, 0.07553615, -0.009665393, 0.025777401, -0.022739425, -0.021526335, 0.06260488, 0.0046587214, 0.032147836, -0.015456183, 0.05920907, 0.0015489637, -0.039951283, -0.04569216, 0.012913997, 0.04644706, -0.023622582, -0.02040728, 0.024255576, -0.022668505, 0.008881333, -0.012235005, 0.010181229, -0.00077157817, -0.060137168, 0.07529996, -0.09466979, 0.00011222, -0.008895148, 0.07558898, 0.002367672, -0.04078235, 0.024389608, -0.061704405, -0.060270723, 0.018396636, 0.016488437, -0.012060378, 0.05771645, -6.0824732e-05, -0.026034834, -0.00200214, -0.029329838, 0.021172544, 0.00047410233, 0.035413127, 0.014318108, -0.0043481197, -0.032092772, 0.081941195, 0.023121402, 0.035770535, 0.07232143, 0.042672943, 0.057395495, 0.015171374, 0.033899054, -0.021937717, -0.013991714, 0.08096999, -0.039924346, -0.034031715, 0.034392864, 0.009926918, -0.009550027, -0.03823282, -0.03076738, -0.045161366, -0.053162087, 0.014489993, 0.04988017, -0.0019077199, 0.017350864, -0.012737128, 0.025601864, -0.0074688853, -0.020487258, 0.043396592, -0.017783241, -0.012849933, -0.006164219, 0.024790846, 0.0013320254, -0.024911804, 0.0045212596, 0.024979703, 0.0029358484, 0.004753427, 0.021471992, -0.015541711, 0.045933332, 0.057228502, 0.07252856, -0.031245291, -0.0042084013, 0.023664732, 0.017682405, -0.02772064, 0.012381348, 0.043560173, -0.006013948, 0.030658435, 0.014957358, -0.03544464, 0.06965808, -0.015500793, -0.008350822, -0.048382457, 0.024983589, 0.017134544, -0.036270045, 7.166903e-05, -0.0076989387, 0.05787088, 0.016768837, 0.025871392, 0.0020740218, -0.002715773, 0.06263152, -0.008427359, -0.039400607, 0.016170729, -0.011617655, 0.038120035, -0.04191218, 0.026058141, -0.011458089, -0.019234646, 0.041270748, -0.03501253, 0.000331764, 0.024360305, -0.06933381, 0.029607031, -0.0911117, 0.018893292, -0.010263343, -0.00053160527, -0.03702966, 0.01052273, -0.03875835, 0.01388296, 0.059682995, -0.019683912, -0.026421422, 0.04308856, 0.025284244, -0.011777908, -0.021007495, -0.066658825, -0.008933496, 0.0070990343, 0.018951284, 0.010265359, -0.08017588, 0.044573262, 0.03758582, 0.053033818, 0.010375868, 0.038912266, -0.01584601, 0.028272985, -0.008296691, -0.018274784, -0.07863421, -0.030215498, 0.019807413, -0.016364355, 0.027650248, -0.0060324604, -0.04368086, -0.03620563, 0.012575607, 0.015516673, -0.040322, -0.00036673385, 0.012967621, -0.0033714527, -0.025302406, -0.033352025, 0.030833635, 0.012012847, -0.00808385, 0.04654981, -0.013858664, 0.025033208, 0.016937526, -0.011241051, -0.051266816, 0.021141846, 0.021665588, -0.06356669, 0.025630206, -0.01587654, 0.010542175, -0.015654221, 0.042643435, -0.030782001, 0.050372317, 0.017877769, 0.00084154523, -0.089264944, 0.0050291293, 0.006753017, 0.015113174, 0.08559258, -0.04233392, 0.011811802, -0.10683565, 0.026343275, -0.032362457, -0.007658858, -0.030805854, -0.020508304, -0.005224374, -0.028241593, 0.029344013, 0.024625527, -0.045294374, 0.046369642, -0.038749557, 0.0056387996, 0.07475857, -0.004577874, 0.013846888, 0.025106192, 0.048681267, -0.009227869, 0.04312004, 0.051094685, -0.01278848, -0.054096926, -0.057200193, 0.09042718, 0.047519214, -0.020126779, -0.045464933, 0.019361028, -0.034973945, 0.058254443, -0.0036890341, -0.026687302, -0.04199648, 0.04422178, 0.0032873044, 0.033525422, -0.025056016, -0.0073806187, -0.005808186, -0.051611423, 0.003938866, 0.0027047875, -0.06821323, 0.0059546917, 0.04115935, -0.024257947, -0.00587874, -0.061628588, -0.019470228, -0.0133721065, -0.06281487, 0.031115683, 0.036426477, 0.009674868, 0.05386974, 0.013857244, 0.0645693, -0.042982414, 0.056057103, -0.0039848685, -0.009379761, 0.036766607, -0.001953615, 0.01745615, -0.100859836, -0.0024986998, 0.07602668, -0.026797837 ] }, { "values": [ -0.0030332424, -0.03706125, -0.049530324, -0.082539015, 0.014917738, -0.008191446, -0.011879486, 0.03419755, -0.004203493, 0.02028673, 0.031791534, 0.038184185, 0.028258462, 0.019081991, -0.021461558, -0.03289945, -0.011066079, -0.03392738, -0.078411445, -0.03322732, 0.001243552, 0.0039788205, 0.007507401, -0.036670063, -0.025774661, 0.009433837, 0.021942182, -0.0505288, 0.028890306, -0.029912781, 0.0120323235, 0.044567026, 0.0018194496, -0.004657351, 0.057850722, 0.031929765, -0.048169635, 0.0062081474, 0.005284093, -0.044435397, -0.05430214, 0.014788304, -0.007764807, 0.026524624, -0.042896476, 0.040461436, 0.009689367, 0.0022401009, -0.012288392, 0.019431992, 0.029562984, 0.016874228, 0.0070044743, -0.0015389886, 0.024969107, -0.034914907, -0.0785716, -0.024021031, 0.07253716, 0.022279635, 0.023284208, -0.0033171794, -0.012788826, -0.010530264, 0.0051195715, -0.042687837, -0.018322218, -0.03926132, -0.021296522, 0.022165457, -0.07798736, 0.033198126, -0.05830137, 0.02827979, -0.0028104004, -0.036612872, 0.029202452, 0.014098183, -0.027982391, 0.024383985, 0.017077362, 0.033535194, 0.0755368, 0.026851906, 0.03561719, 0.0057122875, 0.036195792, -0.022459278, -0.043274295, 0.0091667725, 0.077358104, -0.06705537, -0.0047867238, 0.006747502, 0.037674125, -0.04541596, -0.03449323, -0.07378131, -0.008147466, 0.06911988, -0.02958434, -0.027792087, -0.020460047, -0.024800975, 0.050440844, 0.058784407, -0.021781292, -0.02716369, -0.022861557, 0.011013949, -0.055506296, -0.05060575, -0.008246565, 0.036054254, -0.030159585, -0.04387131, -0.024601215, 0.005562507, -0.027969241, -0.02149295, 0.0020261642, -0.02403743, -0.041886788, 0.070788175, 0.015939157, -0.011490974, 0.02363113, 0.013196551, -0.0469906, -0.043477986, 0.07725305, -0.11185095, 0.014773501, 0.018537035, -0.03726191, -0.01966115, 0.07518745, 0.04625137, -0.018642101, 0.004600724, -0.011999838, -0.028940933, -0.023967149, 0.011267453, 0.000286857, -0.029775964, 0.007493841, -0.022887787, -0.013541588, 0.025655998, -0.060101457, -0.010905116, 0.028598262, 0.014396474, -0.04733391, 0.044010237, 0.08221878, -0.03055096, 0.061148208, -0.06340031, -0.0008070973, -0.0019841988, 4.495262e-05, 0.039969467, -0.05997214, 0.024077395, 0.044482358, -0.06568905, -0.04157671, -0.061447125, -0.020941582, -0.05200793, -0.04178156, -0.06687327, -0.046072282, -0.016051343, -0.014947066, 0.023981215, -0.06671794, 0.022898758, 0.040808175, 0.04002878, -0.041331675, -0.010798351, 0.00789109, -0.030179815, -0.026968358, 0.08035344, 0.022849228, 0.037826415, -0.02632692, -9.350351e-05, 0.027990602, 0.05304174, 0.017031679, 0.039673366, 0.06022692, -0.0143906465, -0.01009542, -0.022045277, 0.028929925, -0.002323963, -0.028723396, 0.026478508, -0.053064205, -0.020910555, -0.050866313, -0.02690028, 0.057104766, -0.023342423, -0.010197719, 0.027762827, 0.018995784, -0.061103, -0.03779749, 0.019592892, 0.07917779, 0.05652556, 0.03524291, -0.030696984, -0.032982793, -0.021663822, 0.02704793, 0.01756888, 0.019216413, -0.049594473, -0.044651967, -0.029647691, -0.017902436, -0.028632134, -0.019559678, 0.011579576, 0.013723932, -0.00861782, 0.039537054, -0.0021553542, 0.036280368, 0.012986416, 0.0031991978, 0.039807104, 0.012077446, 0.028331215, -0.0017676931, 0.006913792, 0.018828198, 0.03125907, 0.070806995, 0.058814913, -0.022109658, -0.016887985, -0.020922916, -0.04515718, -0.05954381, 0.010314845, -0.049176756, -0.014601317, 0.027961588, -0.06937294, -0.018051017, -0.008823829, 0.032612894, 0.008530055, -0.00275635, -0.047078863, -0.029375562, -0.07085581, -0.033378553, -0.02389313, 0.04325752, 0.008110845, -0.016070569, 0.022017488, -0.09894486, -0.044123806, 0.013902627, 0.027227938, -0.04984599, 0.013979805, -0.02912959, -0.051715642, 0.0768676, -0.004678777, -0.028081905, -0.049846288, -0.02442885, -0.034989458, -0.016187236, 0.058763403, -0.05896146, -0.034081448, 0.063636154, 0.040176317, 0.026728632, -0.024105273, 0.04350041, -0.011703599, 0.030886842, 0.0033147202, -0.005065066, 0.01222643, 0.0008413968, 0.03567106, 0.00484275, 0.0015773618, -0.006076121, 0.042570964, -0.02143339, -0.013960546, -0.013861298, 0.0066927155, -0.0017875745, 0.034435987, -0.047530714, -0.0131330425, 0.0042317063, -0.0018520618, -0.107513696, -0.0075764237, -0.039582435, -0.037719674, -0.01601694, 0.021016505, -0.0137477005, -0.015243183, 0.022352647, -0.003391762, -0.0262448, 0.009068263, -0.015788844, -0.015318893, -0.00039210275, 0.026960889, 0.024225004, 0.008257353, 0.0250143, 0.013469854, -0.024920998, -0.03219396, 0.06500636, -0.017829413, 0.056779597, 0.00897004, 0.06224385, 0.044404212, 0.0061738375, -0.04990634, 0.021644166, -0.03456138, 0.019390395, -0.05155581, -0.044112954, 0.057129484, 0.016546786, -0.0039989143, 0.045387827, 0.014891793, 0.011768835, 0.02475753, 0.023490468, 0.0065194652, 0.0035710593, 0.019197829, 0.0036003026, -0.02941064, 0.036620244, -0.005388831, 0.036030844, 0.024320412, -0.0324083, -0.019459419, 0.029899294, 0.036676668, 0.030335804, 0.00073326466, 0.016550401, -0.025631959, 0.0007027963, 0.007574619, -0.004046415, -0.032468244, -0.038763512, -0.030382413, -0.037334193, -0.04247676, -0.021898208, 0.024936995, -0.03279195, -0.006012066, 0.031371415, 0.023877796, -0.010114602, 0.06703373, -0.019627476, -0.0040254123, -0.0003494276, 0.06203615, -0.019392, 0.0035119231, 0.014761285, -0.017348329, -0.033370577, -0.0008134791, 0.06618621, -0.044001088, 0.012353946, 0.004991445, 0.051272295, 0.019043403, 0.042183105, -0.019674724, 0.06420685, -0.0011887116, 0.0450426, 0.00396712, -0.014873597, 0.03313651, 0.059532236, -0.005816768, -0.023445776, 0.03510319, -0.0036345914, 0.043286167, -0.009204717, 0.02355758, 0.013543607, -0.072023004, -0.0029131526, -0.00076866325, 0.009235525, 0.024655592, 0.016514704, 0.017871866, -0.037404753, 0.026697628, -0.026604174, -0.037606616, 0.02124003, 0.01259153, -0.026225451, -0.0042863204, 0.025863731, 0.039402146, 0.016364245, 0.036284808, 0.020453768, 0.03265335, 0.03999233, -0.011546398, -0.054197907, -0.074937694, -0.022383811, 0.021996973, -0.0024016986, -0.009065994, 0.001066678, -0.003549552, 0.00013842051, 0.057737987, -0.018140703, 0.03466407, -0.10105652, -0.007889769, 0.019934783, 0.038148344, -0.0054404917, -0.024182145, -0.06150421, 0.022809993, 0.03956583, 0.058720987, 0.058589637, -0.0173309, 0.030712295, 0.0047435695, 0.05668992, 0.035552356, 0.0049960823, 0.029902056, 0.027378062, 0.017416367, -0.037660155, 0.05051975, 0.003225754, 0.019197587, 0.047761884, -0.101716764, -0.02215676, 0.023601051, 0.064804494, 0.052459713, 0.055396706, 0.07187497, 0.0006110758, 0.045407437, -0.028107187, -0.028235922, 0.06146418, 0.029945752, -0.012235696, -0.006390838, 0.072374456, 0.015639018, -0.023369428, -0.02831837, 0.005753807, 0.045736633, -0.044126023, -0.038050506, -0.005811031, -0.016372725, 0.013254927, -0.008967996, 0.03442166, -0.024087777, -0.027119618, 0.044483077, -0.0876266, 0.010304132, -0.026495013, 0.06848211, 0.0040889913, -0.020181807, 0.03910012, -0.038796857, -0.07276943, 0.019467827, 0.0039621373, 0.028410064, 0.021929242, 0.0047211866, -0.024662748, 0.009218951, 0.025062837, -0.0009209885, 0.03448207, 0.033166062, 0.004884988, 0.027662016, -0.032695446, 0.05654182, 0.014322193, 0.01070916, 0.079319686, 0.042057674, 0.04102321, 0.00014239486, 0.018025964, -0.005642917, -0.005082129, 0.07055518, -0.01974756, -0.03182171, 0.04855775, 0.024304356, -0.009046214, -0.06122657, -0.03232646, -0.04692796, -0.0635037, 0.029384404, 0.0732895, -0.014719421, 0.0063305735, -0.037041422, 0.022512946, -0.023342492, -0.026831185, 0.043338817, -0.02198397, -0.03545841, -0.021270359, 0.03206702, -0.013208989, -0.04648027, 0.01667292, -0.014829912, -0.008016681, -0.003059385, 0.04370649, -0.0015096184, 0.040829986, 0.010486632, 0.061304595, -0.0112959305, -0.01816883, 0.028903568, 0.043261107, -0.02302645, -0.019011758, 0.036993008, -0.0011389118, -0.010136282, -0.009802029, -0.012063697, 0.10812132, -0.0410601, -0.012570036, -0.04002248, 0.0135738, 0.026421556, -0.028819587, 0.028272104, -0.030829499, 0.03456197, 0.02209536, 0.017881656, -0.038991947, -0.017728837, 0.026848689, -0.013959344, -0.023963878, 0.039651297, -0.0129820295, 0.008639088, -0.054408204, 0.030980855, -0.043226443, -0.05565403, 0.016469367, -0.0047779693, 0.007886284, 0.029476529, -0.07465719, 0.018068966, -0.059123825, 0.043868296, -0.02582161, 0.026920924, -0.03418088, 0.0017463092, -0.025370369, 0.03376215, 0.033272944, -0.029094636, -0.041455295, 0.048396222, 0.006943463, -0.010944289, -0.029263943, -0.040092435, 0.018514987, 0.02197684, 0.01666867, 0.010196559, -0.06955246, 0.04619656, 0.016073082, 0.03975585, 0.0018506572, 0.03264457, 0.0134460805, 0.026911693, -0.036244992, -0.0035813951, -0.05268505, -0.030803282, 0.018724373, 0.010138663, 0.026679723, 0.021323457, -0.006309965, -0.07154536, 0.043542475, 0.027852613, -0.026310865, 0.017828705, 0.010024352, 0.002196812, -0.024712505, -0.040986437, 0.03507559, -0.011642136, -0.005287369, 0.026081286, -0.023116896, 0.037355587, 0.04160989, 0.024635933, -0.07183029, 0.040649056, 0.015304221, -0.06438665, 0.019817159, -0.043831658, 0.0050563053, 0.010520795, 0.026190512, -0.047078464, 0.05555358, 0.014041757, 0.007688393, -0.08417532, -0.025048582, 0.028020864, 0.005972521, 0.045742307, -0.03970498, -0.0009216828, -0.09466761, 0.043158405, -0.030315971, -0.023371648, -0.045886602, -0.04511001, 0.006733275, -0.011728385, 0.06579812, 0.013715838, -0.05107995, 0.005036419, -0.027477525, 0.017297037, 0.10306616, 0.013408393, 0.02125582, 0.03134471, 0.05717036, 0.027313225, 0.038524665, 0.02655659, -0.0069621536, -0.02051666, -0.071102954, 0.07136545, 0.026327828, -0.014286008, -0.05275818, 0.04798104, -0.059181068, 0.07268087, 0.010449887, -0.031606484, -0.009130568, 0.045452625, -0.01092413, 0.001274317, -0.04369303, -0.00031158284, -0.0011804743, -0.04436697, -0.019739835, -0.0081095, -0.05319261, 0.0060301116, 0.032388616, -0.02455825, -0.015107308, -0.0315701, -0.023670224, -0.03207607, -0.06638852, 0.03731983, 0.025410365, -0.023623027, 0.006235184, -0.037081394, 0.042752687, -0.053640544, 0.027582556, -0.0014137647, 0.019497165, 0.0084332125, -0.043559473, 0.022923179, -0.11136791, 0.012809185, 0.06438764, -0.04919968 ] }, { "values": [ -0.010642171, -0.023069289, -0.016644247, -0.07316968, 0.032264277, 0.014111854, -0.024567954, 0.014903796, -0.015357381, 0.05311104, 0.001000486, 0.03075604, 0.045325838, -0.006947536, -0.01515976, -0.007529782, 0.023477048, -0.008677261, -0.09671036, -0.021685978, 0.03329871, -0.003107192, -0.0051505263, -0.05163109, -0.02121537, -0.0046066297, 0.056905616, -0.031182583, 0.004615337, -0.026847076, 0.013783156, 0.045897476, -0.034665387, -0.01741665, 0.05756657, 0.045106594, -0.085521, -0.004271879, 0.01861629, -0.0640538, -0.056977168, 0.017162059, -0.013335819, 0.01875785, -0.062451206, 0.031077992, 0.022396952, 0.03168709, -0.014349055, 0.027296914, 0.013196034, -0.0031946532, 0.0016645162, 0.013066886, 0.027496133, -0.06059451, -0.10841985, -0.027178453, 0.05499071, 0.025104148, -0.005463469, -0.002960793, -0.002100641, -0.038513307, -0.027635755, -0.030127255, -0.022996884, -0.017758287, -0.01898398, 0.022067672, -0.0382482, 0.022719773, -0.0692408, 0.056268517, -0.007546811, -0.02703786, 0.023146413, -0.017003361, -0.019165847, 0.050285365, 0.012572957, 0.006799837, 0.0360384, 0.03371579, 0.029728374, 0.009584652, 0.042401582, -0.058079645, -0.032834455, 0.038581036, 0.061300367, -0.028376425, -0.019103805, 0.0061907084, 0.023852056, -0.054545306, -0.034321055, -0.059677154, 0.007636454, 0.06398135, -0.031197732, -0.036339656, 0.0043935087, -0.0317946, 0.0349585, 0.03885401, -0.022564217, -0.049682617, -0.0425865, -0.005403303, -0.06645002, -0.03616728, -0.011062796, 0.02566723, -0.021398345, -0.028553266, -0.026894799, 0.009803295, 0.012842289, -0.0440549, 0.022626763, -0.028010642, -0.04577198, 0.05897661, 0.028606009, -0.020842567, -0.03117256, 0.025041716, -0.061897874, -0.023926161, 0.117422156, -0.09036936, 0.023305446, -0.00085959776, -0.042568322, -0.013374998, 0.10186793, 0.034918524, 0.0070705465, 0.0134381065, -0.004843779, -0.0063533923, -0.05111433, 0.053486746, 0.0076675476, -0.01704163, -0.0062079723, -0.021729259, 0.0058152266, 0.033677805, -0.03453019, -0.026264142, 0.029020268, 0.019371467, -0.039183933, 0.08036895, 0.078883775, -0.030836994, 0.053817436, -0.07808372, -0.002065719, -0.0022574556, -0.01107436, 0.020353204, -0.035254106, 0.026349906, 0.024651784, -0.053098246, -0.031827793, -0.07128379, -0.032053597, -0.02241666, -0.05695803, -0.065530136, -0.047792356, -0.0007387424, -0.023162311, 0.01805369, -0.08010084, 0.006041662, 0.026637252, 0.0565593, -0.029555965, -0.016283376, -0.0021297862, -0.0076735104, -0.018155223, 0.040721513, 0.030548926, 0.03514674, -0.053802837, -0.008233188, 0.03910908, 0.05154524, 0.013614653, 0.050973848, 0.06442784, -0.040318504, -0.011210161, -0.025972798, 0.037710264, -0.0024331505, -0.04256914, 0.035571393, -0.03996131, -0.010581262, -0.029687349, -0.011246354, 0.044614643, -0.03887936, -0.014853196, -0.0011873954, 0.036989074, -0.07802018, -0.024066838, 0.03395777, 0.08580221, 0.053633276, 0.05496705, -0.017933682, -0.07393669, -0.03713989, 0.019021982, -0.006358397, 0.0034739568, -0.02160172, -0.03523977, -0.026127579, -0.031031873, -0.017055253, -0.0038866412, 0.022548623, 0.007607768, 0.011949765, 0.015195605, -0.0075094714, 0.042982206, 0.025916884, -0.009095314, 0.034224316, 0.030677509, 0.020065231, 0.012338192, -0.009276564, 0.0063128523, 0.04220625, 0.08246154, 0.05869577, -0.030410629, -0.040744025, -0.011690965, -0.02847163, -0.07176444, 0.018596675, -0.044590484, -0.010051282, 0.049043056, -0.06082, -0.0164872, -0.007585856, 0.025132973, 0.00011418189, -0.010964146, -0.023358166, -0.023561547, -0.045686483, -0.029680856, -0.018284142, 0.035387877, 0.0044768727, -0.020114558, 0.025851583, -0.085877575, -0.025909578, 0.025059955, 0.04593432, -0.047769412, -0.0011943867, -0.033582047, -0.0339886, 0.069485895, -0.0121098785, -0.039390553, -0.051843617, -0.00022964257, -0.048720066, -0.030454308, 0.04991016, -0.075375274, -0.025236474, 0.06010615, 0.027651444, 0.020941477, -0.04167538, 0.009177364, -0.0011385013, 0.026492782, -0.02418721, -0.029448146, 0.0020267263, -0.0019222604, 0.06219645, -0.016161764, -0.017949408, 0.0025048081, 0.01972275, -0.014873869, -0.0025143556, 0.016432285, -0.0033939732, 0.014166207, 0.019628715, -0.04018717, 0.013449982, 0.007848056, -0.0020798808, -0.12011855, 0.0017055236, -0.029947594, -0.0048678443, 0.01489015, -0.00857429, -0.015838856, -0.02129409, 0.04648397, -0.0046316665, -0.0315703, 0.0060377624, -0.0017782787, -0.026134662, 0.025285933, 0.04537314, 0.030042054, 0.04655896, 0.020567985, -0.0127449995, -0.024272127, -0.024560882, 0.06803038, -0.019568868, 0.05749443, 0.0051348507, 0.09091279, 0.059627924, 0.0015665517, -0.05773754, 0.03482624, -0.03433584, 0.023541901, -0.05514778, -0.04861349, 0.058796212, 0.022553103, -0.0019702534, 0.04334936, 0.0071849204, 0.010680239, 0.02294714, 0.03209435, 0.0019058009, 0.0068345782, 0.012899518, 0.0091417795, -0.01992333, 0.050058596, 0.0029114394, 0.021775352, 0.008955772, -0.022468356, -0.038256735, 0.04036177, 0.021989617, 0.0033928207, 0.017725162, 0.027338903, -0.026889665, 0.011817653, 0.0008365671, 0.00732768, -0.02926406, -0.0477655, -0.030432718, -0.012034764, -0.025700564, -0.041568756, 0.04150245, -0.046376325, -0.015263814, 0.03838039, 0.019111423, -0.012423655, 0.067808755, -0.004579996, -0.003120998, -0.007987155, 0.08184701, -0.024683477, -0.0063387994, 0.026757812, -0.031007616, -0.03696691, -0.01183741, 0.06711441, -0.010351015, 0.012967064, -0.0025435104, 0.043146107, 0.019500555, 0.032422896, -0.043378875, 0.07012055, 0.03170893, 0.016874114, -0.0029678994, -0.032345533, 0.015719451, 0.03991034, 0.006663434, 0.008445859, 0.016828153, -0.035476252, 0.037415102, -0.001065964, 0.0040006195, -0.00020828402, -0.06593125, -0.019783324, -0.009779095, 0.02300451, 0.007243281, -0.0028034854, 0.024049476, -0.030568672, 0.022175137, -0.0008111105, -0.013263762, 0.005864646, 0.024350747, -0.027908571, -0.01104652, 0.030293083, 0.010414663, 0.014809877, 0.04352768, 0.004800745, 0.037008017, 0.035356786, -0.0014966461, -0.0691649, -0.059598364, -0.012141981, 0.021227472, -0.0055826134, -0.02338551, -0.018614793, 0.0003648673, 0.035015803, 0.039993342, -0.021569626, 0.05960536, -0.100448124, -0.009022419, 0.03860055, 0.05491415, 0.0035946567, -0.014651099, -0.06894409, 0.029176427, 0.010442185, 0.081252396, 0.04034129, -0.026328886, 0.03953927, -0.013545828, 0.040834405, 0.051878396, -0.009473895, 0.040491603, 0.021125162, 0.010175154, -0.05030369, 0.032552883, 0.02594798, 0.031188628, 0.06302102, -0.09353014, -0.016096247, 0.041629326, 0.0817251, 0.042515833, 0.04812537, 0.060627095, -0.019525139, 0.031166535, -0.03047835, -0.033793934, 0.030167744, -0.0023774314, 0.008336262, -0.0030976858, 0.04461601, -0.002213233, -0.010962039, -0.04354708, 0.024624981, 0.016349206, -0.041076064, -0.029494008, -0.0021786727, -0.01901501, -0.004459771, 0.0052424064, 0.060071394, 0.015625495, -0.026101762, 0.04153633, -0.0911985, -0.014404932, -0.0060764533, 0.059497867, -0.0106251, -0.030325634, 0.02363611, -0.04541909, -0.05333378, 0.0026438686, 0.0017991815, 0.04821581, 0.04001843, 0.0077186096, -0.020534184, 0.011177123, 0.014013772, 0.008663281, 0.016245365, 0.026984602, 0.012759942, 0.022858204, -0.019698327, 0.026747786, 0.0065197144, 0.028916445, 0.06424494, 0.030036332, 0.04003477, -0.01254883, 0.034676652, -0.0057588476, -0.016905662, 0.055634968, -0.011582427, -0.03229627, 0.051153213, 0.03016718, -0.011213662, -0.058987252, -0.028008953, -0.044953506, -0.08684266, 0.040273827, 0.046892412, -0.0003227557, 0.011583761, -0.041600123, 0.013970894, -0.016774401, -0.026167357, 0.06369107, 0.00062186766, -0.050842043, -0.0010014892, 0.01898524, -0.024789738, -0.020867657, 0.022821069, -0.0061240178, -0.017625168, -0.010282124, 0.031796385, -0.007438736, 0.037456736, 0.009716525, 0.069960624, -0.025612526, -0.0027512207, 0.018935943, 0.025525166, -0.020974148, -0.007467985, 0.028089415, 0.021816287, 0.023943337, -0.0049168705, -0.014024323, 0.0918705, -0.039352246, -0.0122142965, -0.017227747, 0.029599689, 0.01243379, -0.034857083, 0.048722144, -0.024478845, 0.031571373, 0.0044846623, -0.022900134, -0.008771515, -0.020267932, 0.03409972, -0.030600285, -0.026724072, 0.052916873, -0.005442688, 0.01890889, -0.05874434, 0.028736375, -0.03968465, -0.054346338, 0.028945064, -0.013508708, -0.017325591, 0.033161875, -0.055391207, 0.0020438323, -0.047465768, 0.011627367, -0.05230434, 0.025630603, -0.031291015, 0.0031576678, -0.023928443, 0.020180568, 0.029333474, -0.025943175, -0.021197528, 0.040899068, 0.018438818, -0.016726831, -0.0079422165, -0.037893604, 0.026916591, 0.0044311713, 0.0016408638, 0.002644198, -0.09558618, 0.033643104, 0.010026434, 0.04526652, 0.012756306, 0.03504424, 0.036254656, 0.005865683, -0.023863385, -0.0075100716, -0.06296969, -0.025306126, 0.011205917, 0.0018624404, 0.042138547, 0.008121804, 0.008400465, -0.051300354, 0.026100572, 0.027406257, -0.017140144, 0.0021902611, 0.02022395, -0.0081247995, -0.017056767, -0.03335923, 0.011120953, -0.0149458125, -0.01830026, 0.03401667, -0.041061085, 0.026759887, 0.046966027, -0.009347278, -0.062648945, 0.010853405, 0.017891815, -0.071529336, 0.0074534905, -0.051470183, -0.015457023, 0.01943089, 0.03373918, -0.04433447, 0.058010086, -0.016156014, 0.008362908, -0.088934, 0.0031320152, 0.025433471, -0.00440358, 0.021283077, -0.047105078, 0.0069757802, -0.06280533, 0.034293994, -0.027350968, -0.028099282, -0.0586848, -0.047414664, 0.0066929953, 0.027924897, 0.056959145, 0.01924051, -0.0442248, 0.01549754, -0.02243483, 0.021541093, 0.11564559, -0.026364649, 0.023063915, 0.011270868, 0.039502952, 0.036224406, 0.03664182, 0.023390474, -0.019502843, -0.02014028, -0.036529817, 0.08105436, 0.00786852, -0.03541078, -0.030610459, 0.021834068, -0.060034085, 0.061785005, 0.02928947, -0.042692184, -0.01456134, 0.056686424, -0.002896713, 0.022211537, -0.031343423, 0.021461349, -0.00036272855, -0.028653191, -0.01383736, -0.02439557, -0.037297998, -0.011299719, 0.042957716, -0.003893396, -0.015471609, -0.0062626596, 0.0039726417, -0.03305929, -0.08005278, 0.029481158, 0.032687258, -0.0134971775, 0.008744779, -0.01762828, 0.036380563, -0.06318235, 0.025665184, 0.019989375, 6.402159e-05, 0.012735495, -0.033938803, 0.023628296, -0.10423714, 0.015412265, 0.06619966, -0.038720634 ] }, { "values": [ -0.015720744, -0.015176686, -0.020795433, -0.03908785, 0.015320373, 0.009364257, 0.005355793, 0.018150453, -0.020928038, 0.024291515, 0.004579789, 0.011534554, 0.038234856, -0.003813569, -0.036217056, -0.047774002, 0.027246898, -0.01045565, -0.09157996, -0.081494845, -0.002190346, 0.015279702, 0.004136584, -0.06654808, -0.030551601, 0.009170601, 0.0394954, -0.01507236, -0.007881021, -0.027848903, 0.0016722879, 0.049041357, -0.014212693, -0.014859855, 0.035080306, 0.041932754, -0.076112084, -0.0052923355, 0.052706152, -0.024832653, -0.041339885, 0.02204266, 0.0045279567, 0.011439288, -0.029129257, 0.031799726, 0.038024634, 0.014149011, -0.02492872, 0.058965176, 0.042845048, 0.010383573, 0.01762533, 0.007966756, 0.038871057, -0.03786428, -0.08844543, -0.05247981, 0.017296338, 0.008454512, -0.0091814585, 0.012332013, 0.00018197273, -0.021692695, -0.006560654, -0.02525754, -0.02923307, -0.048332714, -0.028421449, 0.04839926, -0.035603747, 0.021152884, -0.076089844, -0.0010238114, -0.0140235135, 0.0029095532, 0.018558895, 0.022325933, -0.03185264, 0.019054573, -0.017200997, 0.0021724196, 0.08982221, 0.03874597, 0.03447751, 0.01449768, 0.027371945, -0.05664583, -0.023991719, 0.023620157, 0.10346073, -0.05644818, -0.040035564, 0.022458049, 0.014472193, -0.025031375, -0.025824301, -0.09205709, 0.0077607934, 0.1060865, -0.010717071, -0.040477756, 0.009258628, 0.0025520853, 0.026059743, 0.029603848, -0.009598135, -0.05197529, -0.036316752, 0.013530001, -0.05295191, -0.040583547, 0.03333183, 0.03007099, -0.03115597, -0.05917418, 0.0053677456, 0.0011557115, 0.0021600248, -0.014375597, 0.021990942, -0.03660997, -0.02124065, 0.06616831, 0.011078038, -0.015661268, 0.027526366, 0.016118456, -0.03850954, -0.05294668, 0.106207564, -0.092019916, 0.018847974, -0.005117521, -0.036832258, -0.029900525, 0.0660379, 0.072590545, -0.001300168, -0.004421146, -0.010360816, -0.00073063583, -0.019506468, 0.046106994, -0.011215448, -0.037957057, -0.0021858441, -0.01718613, -0.014199324, 0.035405844, -0.057320427, -0.0025664852, 0.06989545, -0.007503444, -0.035694465, 0.039038584, 0.07318453, -0.0075148987, 0.053369608, -0.07053994, 0.027840624, -0.00040500073, -0.008253102, 0.028725775, -0.05115031, -0.012811788, 0.04720028, -0.07121513, -0.026453098, -0.056802753, -0.010266138, -0.025572369, -0.028918665, -0.07482807, -0.020379031, 0.0013773494, -0.040953647, 0.021204913, -0.07097207, -0.004449403, 0.025759518, 0.04338088, -0.032606, -0.011749536, -0.012676086, -0.019910438, -0.0430404, 0.07666405, 0.013280602, 0.015689539, -0.02118573, -0.024152527, 0.031121042, 0.072170824, 0.01499011, 0.023149254, 0.05989368, 0.011149761, 0.009283029, -0.040475447, 0.046847347, -0.019473506, -0.036786105, -0.00048430613, -0.053501893, -0.003955655, -0.045373864, -0.019648284, 0.036032367, -0.019268613, -0.01288122, 0.015071313, 0.029004226, -0.059783887, -0.016942644, 0.035698798, 0.069065236, 0.073282175, 0.034138374, -0.029185243, -0.049884696, -0.03729204, 0.021616025, -0.01751834, 0.0120608965, -0.06944295, -0.03489459, -0.06083099, -0.027319375, -0.012617897, 0.0020237307, 0.012015425, 0.0087862685, 0.010351494, 0.0058117104, -0.007140531, -0.010341769, 0.007829564, 0.016389895, 0.043789305, 0.011453777, 0.005451261, 0.012788844, 0.0032447919, 0.012651549, 0.06355411, 0.07837394, 0.078271486, 0.00436597, -0.017856272, -0.020063454, -0.031377465, -0.10482775, 0.002026097, -0.07177154, -0.022806337, 0.03150975, -0.056160513, -0.01898866, -0.020975403, 0.0059089093, -0.0011023866, -0.023497963, -0.030306982, -0.029235076, -0.079536915, -0.032112077, -0.01879234, 0.07915153, 0.024978144, -0.024377316, 0.03452463, -0.060025584, -0.04116429, 0.052771132, 0.022212714, -0.025549443, 0.028670968, -0.027800065, -0.025800586, 0.047407128, 0.0019517338, -0.02862869, -0.035779722, -0.004854707, -0.03488094, 0.0060385456, 0.055625446, -0.077122964, -0.060788535, 0.075539336, 0.040893067, 0.031871516, -0.021667067, 0.00046858928, 0.0016405721, 0.032978486, 0.011271903, -0.013253091, 0.013307022, 0.015951674, 0.068428576, -0.019117868, -0.0029688072, -0.048365805, 0.051507603, -0.0428536, 0.0026247643, -0.0052938755, -0.0022758928, 0.0059964834, 0.052638706, -0.041409995, -0.009340368, 0.012846766, -0.001938846, -0.101157255, -0.0011306887, -0.0128980065, -0.013116127, 0.006089902, 0.02175361, -0.019592479, 0.0023091559, 0.03659084, -0.0038759406, -0.023312321, -0.021313282, -0.010197193, 0.008732828, 0.018746553, 0.03487489, 0.022063255, 0.011830164, 0.0017941972, 0.004798681, -0.0142901065, -0.021270309, 0.06034827, -0.009888415, 0.04960663, 0.009918533, 0.06468815, 0.034667898, 0.003577421, -0.053645678, 0.036882903, -0.048748612, 0.072178595, -0.05081543, -0.06148905, 0.06264302, 0.0015696924, 0.0026486244, 0.040617466, 0.02220929, -0.00025741608, 0.03591538, 0.035727724, -0.0020970234, 0.027014716, 0.036618892, 0.003653299, 0.00024870838, 0.011556481, -0.027348828, 0.05595894, 0.0224826, -0.010292407, -0.052958317, 0.014988331, 0.03775456, 0.017035015, 0.007810814, -0.01605737, -0.05625113, -0.0031974548, 0.00020921741, 0.005976049, -0.05154675, -0.05111174, -0.020860305, -0.01249588, -0.03994536, -0.017513996, 0.030433916, -0.039937515, -0.018103287, 0.027731247, 0.02179891, -0.017813994, 0.07859955, 0.0006233313, 0.009275444, -0.021265304, 0.06041609, -0.009448084, 0.002268338, 0.03979811, -0.025340335, -0.023177689, 0.009719906, 0.031900637, -0.018581992, -0.0016192626, -0.021453116, 0.04020386, -0.002948332, 0.053631682, -0.023100782, 0.055175133, -0.023944028, 0.033505756, -0.013450616, -0.030588066, -0.00458909, 0.021052727, -0.020188661, -0.0426784, -0.011433264, -0.013684288, 0.0015561065, 0.0034451678, -0.007830021, -0.006104566, -0.08792235, 0.0017594793, -0.010310079, 0.022953147, 0.004511238, 0.007493419, 0.022606716, -0.04799304, 0.03983775, 0.010881273, -0.023102641, -0.013948069, 0.008664188, -0.016215483, -0.0005910731, 0.035870608, 0.021868879, 0.011788812, 0.037554067, 0.01993463, 0.023224048, 0.042532597, -0.03519858, -0.041975092, -0.07198744, -0.009934126, 0.024082074, -0.011875555, -0.016334362, -0.0017952244, -0.017765678, 0.021429617, 0.03823946, -0.02786621, 0.023996172, -0.075205185, -0.028473068, 0.034904353, 0.041842736, 0.009145821, -0.01706718, -0.05842559, 0.02658469, 0.022011226, 0.054844555, 0.037791383, -0.03429861, 0.06145, -0.0120373815, 0.049945027, 0.059956025, -0.0122060515, 0.03416216, 0.029684888, 0.008898486, -0.04596243, 0.039900187, 0.02269727, -0.002324946, 0.06591645, -0.08732833, 0.0012167845, 0.02086591, 0.07756417, 0.015055409, 0.04249478, 0.046462357, -0.013061555, 0.023847772, -0.031390026, -0.033525445, 0.050874867, -0.0044493196, 0.010670142, -0.0190013, 0.05029707, -0.002420971, -0.027601702, -0.045265585, 0.0071116276, 0.024387758, -0.027674263, -0.047066122, 0.030656723, -0.012865484, 0.010206938, -0.008800006, 0.036295976, -0.025828144, -0.064458214, 0.06690316, -0.078147545, -0.0040412606, -0.022313299, 0.06343751, -0.0047974307, -0.033454966, 0.031354256, -0.07976563, -0.08067282, -0.008473637, 0.025759235, 0.03633864, 0.03533716, 0.0058494005, 0.0068154535, -0.009860435, 0.009657794, 0.0033027441, 0.016599227, 0.038523216, 0.00887218, 0.01586461, -0.024769818, 0.049164258, 0.007972046, 0.014349877, 0.08071288, 0.03514951, 0.035338838, 0.01100952, 0.022565437, -0.01766067, 0.0038493415, 0.067179464, -0.024289856, -0.053940877, 0.048268963, 0.0059372755, -0.0299322, -0.05169814, 0.010964042, -0.02672475, -0.06048956, 0.04418559, 0.039716456, 0.00024996136, 0.027202439, -0.028278219, -0.022723349, -0.011927141, -0.0302326, 0.056469433, -0.020868655, -0.02309587, -8.6284716e-05, 0.017276509, -0.027071577, -0.050193872, 0.018883018, 0.0022184157, -0.003918572, -0.019940495, 0.03466051, 0.0037794823, 0.03216045, 0.056947663, 0.07694987, -0.0015303178, -0.022314884, 0.016969835, 0.026381198, -0.032182712, -0.0026247522, 0.020414654, 0.012261641, 0.042574413, -0.005526656, -0.035236787, 0.07359156, -0.0059164115, -0.0122001115, -0.043428127, 0.033287697, 0.034388706, -0.027873842, 0.020731162, -0.014239356, 0.013683015, 0.008818132, 0.030488102, -0.006321484, -0.013458371, 0.037059747, 0.0017341427, -0.030633338, 0.037460253, -0.014472464, 0.02535454, -0.05837104, 0.022592386, -0.038970288, -0.05354257, 0.008207601, -0.042832665, 0.0003314894, 0.01264664, -0.059918955, -0.005639518, -0.053441726, 0.004108375, -0.022577832, 0.015902381, -0.04373097, 0.009553699, -0.02677723, 0.009972658, 0.038577136, -0.01599791, -0.02998037, 0.044660963, 0.0068841507, -0.016439674, 0.016310962, -0.033565238, 0.012514625, 0.016373768, 0.017855147, 0.018372739, -0.06111589, 0.028499804, 0.034990873, 0.03817073, 0.01328148, 0.042571146, 0.010397667, 0.021603756, -0.0290842, -0.009432922, -0.04798104, -0.043630227, 0.012593651, -0.003047709, 0.018975304, 0.008645273, -0.017528377, -0.024930248, 0.018669711, 0.038437974, -0.019241188, -0.0030920815, 0.0052508935, -0.017577484, -0.049679097, -0.033903588, 0.00861969, 0.011048361, 0.0076157334, 0.05334415, -0.03154923, 0.038978066, 0.042310067, -0.0110841, -0.04657635, -0.0005731908, 0.030068811, -0.064162046, -0.00950531, -0.028720599, -0.0105582215, -0.012379914, 0.02252808, -0.034747295, 0.034514423, -0.003769831, -0.001083107, -0.06882215, -0.028030073, -0.0049096197, 0.0078112497, 0.074649826, -0.02626495, 0.0011348693, -0.1104104, 0.025426615, -0.025453586, -0.006443611, -0.07090459, -0.02671884, 0.015733777, 0.020100197, 0.038977902, 0.040712375, -0.053204075, 0.0075369477, -0.048119575, 0.0070437677, 0.09294326, -0.011579055, 0.03106611, 0.019761933, 0.043549526, 0.014816303, 0.036733463, 0.039129913, -0.004168223, -0.021437127, -0.033346854, 0.08400032, 0.027217792, -0.021788714, -0.052477952, 0.01160805, -0.06591235, 0.06699268, 0.0058419206, -0.026714178, -0.028030647, 0.045907404, -0.00045886837, 0.03246761, -0.013211372, 0.022123083, 0.013053533, -0.014045058, 0.027891556, -0.006676635, -0.053813647, 0.0018625963, 0.03777924, -0.021916505, -0.034531012, -0.042428102, -0.022587823, -0.004828917, -0.0961943, 0.04404939, 0.03465036, -0.008148136, 0.036253225, -0.031350143, 0.020245763, -0.036755707, 0.03560626, 0.008819135, -0.0050997594, 0.03679841, -0.02429881, 0.015409983, -0.090060614, 0.024612501, 0.07508966, -0.03534129 ] }, { "values": [ -0.00062091945, -0.0008160094, -0.020624826, -0.038611423, 0.051141463, 0.027276892, 0.009233877, 0.0416807, -0.016730884, 0.039649505, -0.0025833985, 0.025390022, 0.04444761, -0.011395897, -0.057920605, -0.02521212, 0.02874503, -0.006993649, -0.0778829, -0.022799669, 0.04961847, 0.023560954, 0.009375022, -0.07336507, -0.032196984, -0.00033441433, 0.066004135, -0.038119823, 0.009576315, -0.03913551, -0.0006680042, 0.053836375, -0.038766373, -0.030535417, 0.048123706, 0.044891298, -0.06395827, 0.016213426, 0.044525456, -0.05889316, -0.07676412, -0.006144227, -0.02865008, 0.03580514, -0.0613844, 0.015390073, 0.03409433, 0.0055266633, -0.04486906, 0.04331695, 0.021876952, 0.006477163, 0.004313747, 0.027865386, 0.015773606, -0.046201978, -0.08708119, -0.03623368, 0.031981878, 0.007468674, -0.016627204, 0.010237083, -0.023088338, -0.02982301, -0.04195564, -0.040403776, -0.021984791, -0.023542076, -0.0065911673, 0.016542373, -0.049249496, 0.01074723, -0.09616458, 0.013520365, 0.0006788074, -0.002720861, 0.02118797, -0.00814605, -0.019973831, 0.048721552, 0.02345171, 0.028905772, 0.043881282, 0.026979802, 0.019653013, 0.028663982, 0.07700263, -0.060462452, -0.0031856692, 0.013117302, 0.057978183, -0.017877577, -0.045168024, 0.006681672, -0.0031034893, -0.022767866, -0.019188888, -0.057354774, -0.0039956793, 0.08591534, -0.047407717, -0.046165977, -0.003118194, -0.031811044, 0.015262565, 0.028836217, -0.0034459846, -0.052958097, -0.056960143, 0.021769151, -0.052727412, -0.0237755, 0.0206503, 0.015847582, -0.022135155, -0.027355772, -0.017168306, -0.017830921, -0.027790524, -0.05129147, 0.025175296, -0.017761417, -0.048451297, 0.056622013, 0.04282306, -0.008522753, -0.023619514, 0.00907115, -0.061013333, -0.045025304, 0.10026868, -0.10869783, 0.024577232, -0.02848315, -0.044646956, -0.011865007, 0.07309407, 0.0111304475, 0.010002032, 0.012024469, -0.00839629, -0.009335307, -0.0836342, 0.020780649, -0.0018311664, 0.0044447817, -0.03839941, -0.042189024, -0.033233978, 0.042371076, -0.009357942, -0.004845266, 0.03788798, 0.013170708, -0.054329414, 0.046350483, 0.05859278, -0.02546563, 0.046513554, -0.040440362, 0.046309557, 0.0039308895, -0.009754602, 0.012429402, -0.045721795, 0.019341962, 0.044646192, -0.056924395, -0.015286062, -0.046194874, -0.040719323, -0.02936798, -0.0636343, -0.07676841, -0.024936585, 0.013797749, -0.04456653, 0.019018728, -0.07116171, -0.0059286784, 0.054570027, 0.052318342, -0.060696356, -0.021121625, -0.041407783, 0.00014410481, -0.005008808, 0.028755842, 0.0033837403, 0.026839823, -0.03776134, -0.024495436, 0.025754964, 0.06756579, -0.018559534, 0.027785104, 0.079153396, -0.0257798, -0.008087478, -0.034510113, 0.028705757, 0.010115245, -0.05747754, 0.039411966, -0.004764616, -0.0086316485, -0.025832513, -0.024753299, 0.015564161, -0.031036945, -0.018816616, 0.00707752, 0.024454422, -0.045781117, -0.016790291, 0.03228402, 0.08830027, 0.045582313, 0.052868225, -0.027814046, -0.07882776, -0.033387825, 0.00010395408, -0.034725983, 0.030952979, -0.030163802, -0.044288542, -0.024423964, -0.026951155, -0.0027656523, -0.012651298, 0.023204608, 0.0051271995, -0.009700592, -0.0011411665, -0.032834027, 0.013807281, 0.02780091, 0.009095153, 0.0208799, 0.024034252, -0.019214626, -0.0019996024, 0.0061492072, -0.004019017, 0.044038918, 0.08469107, 0.048393715, 0.0005956429, -0.00849277, -0.022387614, -0.038607206, -0.08225457, 0.021926021, -0.069751725, -0.0062574334, 0.042945582, -0.06190288, 0.0073179915, -0.017038275, 0.016765371, 0.020756392, -0.00798708, -0.045878507, -0.020017356, -0.060363594, -0.041767586, -0.03217035, 0.060266383, 0.010675576, -0.0123446165, 0.029554065, -0.064273156, -0.039306138, 0.013915982, 0.069218546, -0.039846275, -0.0041742865, -0.0086134635, -0.038309008, 0.05376959, 9.801905e-05, -0.030001968, -0.03752125, -0.023772053, -0.037225384, -0.013079459, 0.06300558, -0.054921705, -0.04671135, 0.040797565, 0.026105873, 0.036707573, -0.033112384, 0.011361929, -0.011874044, 0.024483165, 0.015876615, -0.04305549, 0.028987128, 0.007497874, 0.053415738, -0.027675092, -0.0035038048, -0.0007795837, 0.027140498, -0.020323003, 0.0056229755, -0.0016712233, 0.0011659226, 0.009807812, 0.027582584, -0.039531257, 0.022972347, 0.005754915, -0.017886622, -0.11960506, -0.014247639, -0.03500486, -0.010891144, -0.004729792, -0.0019215961, 0.0016077895, -0.02517201, 0.047652468, -0.0033817354, -0.02675518, 0.021254294, 0.014750166, -0.00049461704, -0.0014111581, 0.04620872, 0.033738635, 0.022004671, 0.022647366, -0.006665049, -0.0045716874, -0.03036886, 0.06955921, 0.00183187, 0.07580463, 0.024421945, 0.06624595, 0.04338814, 0.01022794, -0.058055755, 0.036156274, -0.026826248, 0.029582568, -0.07252877, -0.044594698, 0.09573094, 0.0122728, -0.006306708, 0.027425667, -0.0148463305, -0.0005060398, 0.0024828957, 0.039600946, -0.0015557854, 0.004151316, 0.00032269044, -0.0056208503, -0.015216823, 0.027346183, -0.012014746, 0.025851332, 0.0062265485, -0.025214152, -0.025123885, 0.046680767, 0.014288618, 0.008835206, 0.014182719, 0.009008265, -0.0139247095, 0.0129049625, 0.013934946, -0.014872702, -0.046778962, -0.03873192, -0.03383483, -0.025811791, -0.021438584, -0.030518169, 0.037042603, -0.044732403, -0.007678205, 0.03410699, 0.043419022, -0.022985838, 0.0751111, -0.00037672685, 0.00671121, -0.01901871, 0.0785449, -0.00041944088, -0.004020079, 0.04612426, -0.024643844, -0.027210088, 0.0031215516, 0.056606676, -0.02258176, 0.007332331, -0.02741257, 0.04059131, 0.038278557, 0.04289834, -0.025604986, 0.06306258, 0.009870663, 0.019020677, -0.020045262, -0.023325605, 0.018703025, 0.03628203, -0.007114974, -0.014213698, 0.0133555, -0.031942707, 0.020814542, -0.0012354008, 0.0075359764, 0.00079313683, -0.05495054, 0.000115302995, -0.014291207, 0.0032860076, 0.013145158, 0.008236233, 0.043941073, -0.029043743, 0.009453087, 0.021313656, -0.024502717, -0.024475316, -0.0014966193, -0.033151414, -0.012096625, 0.015488581, 0.017595602, 0.036149867, 0.054565214, -0.00020714753, 0.010288048, 0.032962106, -0.0010652753, -0.049548034, -0.06702369, -0.021150138, 0.020253995, 0.0019608603, -0.026821658, 0.0021357143, -0.0011830849, 0.019663643, 0.019581558, -0.025414577, 0.035345465, -0.07307151, 0.014060805, 0.049337935, 0.040793087, -0.018680058, 0.00502756, -0.039650653, 0.021253774, 0.02177982, 0.07389479, 0.0020670982, -0.019794613, 0.029806376, -0.0010390998, 0.03343263, 0.040180404, 0.03228382, 0.051470112, 0.0309946, 0.023278506, -0.029545253, 0.028510723, 0.022895548, 0.04169723, 0.037072543, -0.064252585, -0.012165706, 0.032806024, 0.07939394, 0.060842082, 0.04588084, 0.056698643, -0.012664644, 0.04876355, -0.029138993, -0.033169262, 0.03776615, -0.0015963917, 0.0035963985, 0.0071359193, 0.048711397, 0.0025549196, -0.03901355, -0.06355339, 0.009753604, 0.02501914, -0.04253331, -0.036131773, 0.029968003, -0.038996074, 0.017922118, -0.01811626, 0.042666726, 0.0024730687, -0.009167812, 0.059000228, -0.082480565, -0.02433855, -0.006023946, 0.06535476, 0.02766981, -0.03420643, 0.017136341, -0.060815413, -0.086513646, 0.004749724, 0.016157312, 0.044497136, 0.061777566, -0.0017723772, 0.005738513, 0.018189102, -0.013271887, 0.013570166, 0.011315423, 0.039127577, 0.024371484, 0.037212063, -0.037670534, 0.009644459, 0.008170671, 0.022380685, 0.07386626, 0.022311365, 0.04355052, 0.010570165, 0.04516776, 0.003467241, -0.020502828, 0.04150047, -0.042439673, -0.036681548, 0.0716698, -0.0058280053, -0.02048613, -0.05663428, -0.0017250804, -0.015043079, -0.086778186, 0.0267737, 0.046635628, -0.002904735, 0.022144513, -0.058283687, 0.02212701, -0.01333612, -0.026827794, 0.043631736, -0.017123867, -0.042408373, 0.002031261, 0.017436638, -0.007042426, -0.022096511, 0.012786314, 0.0066725127, -0.016697882, -0.024708675, 0.02461512, -0.004772942, 0.017135417, 0.025231235, 0.08747918, 0.010535349, -0.010748099, 0.018270599, 0.027378364, -0.031370107, 0.010034786, 0.024032814, 0.009881392, 0.03597922, -0.0055404385, -0.037770495, 0.08464394, -0.025554802, -0.015085146, -0.01848597, 0.015819004, 0.045697562, -0.0450159, 0.019980457, -0.010340147, 0.023678647, 0.007794024, -0.013299617, -0.021548616, -0.03370881, 0.032606617, -0.018466387, -0.025342213, 0.017101012, -0.019774947, -0.0070230346, -0.07153751, 0.039970722, -0.048777506, -0.050990425, 0.033803977, -0.016297542, -0.009985375, 0.006808364, -0.06419467, 0.016274948, -0.08492898, 0.0026977402, -0.014558442, 0.022041632, -0.02319448, 0.016532412, -0.045489542, 0.03512936, 0.01540028, -0.03521275, -0.026600944, 0.03662094, 0.020206334, -0.028473064, 0.019562354, -0.030585311, 0.021070044, 0.012959977, 0.011944517, -0.008676762, -0.08159392, 0.04489457, 0.02178793, 0.03427744, 0.003862504, 0.03413742, 0.03381427, 0.014763477, -0.028357407, -0.0060832007, -0.0748494, -0.046317235, 0.0059407298, 0.014896776, 0.040740225, 0.0039019445, -0.0020075506, -0.072808094, 0.022269083, 0.043515965, -0.0074699908, -0.004018764, -0.0009946424, -0.009084841, -0.034868486, -0.043625627, -0.0011537937, 0.014765804, -0.00016147422, 0.019283675, -0.012486061, 0.044476956, 0.023356367, -0.053607397, -0.06680745, 0.005509275, 0.016964847, -0.09884303, -0.0064968695, -0.014600597, -0.0019724746, -0.00892118, 0.00853094, -0.047972772, 0.032494325, 0.00032043445, -0.0055411654, -0.09216604, 0.0058187693, 0.017427055, 0.0107970815, 0.038047995, -0.07687252, -0.014820358, -0.07387749, 0.036418777, -0.02403625, -0.017277727, -0.05465314, -0.041820273, 0.032961518, 0.03290058, 0.046935543, 0.04312592, -0.031389225, 0.016818222, -0.02118027, -0.0026324186, 0.08651424, -0.011459048, 0.023978205, 0.023279373, 0.05210792, 0.030417662, 0.046737883, 0.023445655, -0.016160185, -0.008605731, -0.03791287, 0.07865527, 0.014320024, -0.03376001, -0.03713029, 0.019372497, -0.06313127, 0.07325596, 0.028320212, -0.048980292, -0.008250791, 0.012061462, -0.021020442, 0.028016416, -0.0044280863, 0.005073586, 0.0050019943, -0.026120925, 0.0031935377, -0.019712893, -0.06660123, -0.024429675, 0.062492426, -0.009211526, -0.018234583, -0.0096839, -0.021110972, -0.026853438, -0.08016032, 0.011031151, 0.017147467, -0.013691065, 0.031244423, -0.020616014, 0.028712068, -0.05292879, 0.024672544, 0.021144878, -0.014740677, 0.022917321, -0.014972134, 0.0102011375, -0.08270136, 0.009498697, 0.06810762, -0.039629173 ] }, { "values": [ 0.000610021, -0.021564133, -0.05252886, -0.04913243, -0.0051020435, 0.01901538, 0.0054528713, 0.037739124, -0.01304572, 0.03088383, 0.00033428008, 0.035535265, 0.02495981, -0.021096027, -0.042431153, -0.04758587, -0.011251501, -0.019903533, -0.08945677, -0.073814884, -0.011966587, 0.018140865, 0.022962814, -0.059596363, -0.0068076816, 0.010520484, 0.04756506, -0.007321879, 0.009316496, -0.031792633, -0.0016617512, 0.036385022, 0.005782813, -0.017593034, 0.031697314, 0.05280772, -0.07522858, -0.008752372, 0.024789914, -0.017114425, -0.058347166, 0.016699264, 0.0012507064, 0.017620703, -0.016738348, 0.032974888, 0.021061229, -0.0016559778, -0.029686565, 0.044608105, 0.0013455761, 0.003930196, -0.035149757, -0.014033263, 0.030783176, -0.036627483, -0.048396867, -0.04000532, 0.03186415, -0.0057769716, -0.006391614, -0.005880275, 0.036297765, -0.013250864, -0.012869009, -0.029266967, -0.03910084, -0.025206756, -0.012025232, 0.03807488, -0.045129336, 0.010729315, -0.06522046, 0.011995562, 0.012167795, -0.0019008521, 0.023141162, 0.023407856, -0.021772195, 0.045701273, -0.025737623, 0.0141946, 0.08699797, -0.00063725386, 0.016139662, 0.0066847797, 0.043259136, -0.053160526, -0.006421291, 0.02650212, 0.091648385, -0.03397927, -0.0076366896, 0.0376018, 0.02959424, -0.01679587, -0.038953476, -0.11558846, -0.0028477116, 0.094955765, -0.037537508, -0.0228997, 0.00063677336, -0.015569752, 0.029701516, 0.03977018, -0.005774927, -0.041722365, -0.059888072, 0.0090807425, -0.026161894, -0.055466216, 0.037733823, 0.026534798, -0.012454466, -0.062161718, -0.009827054, 0.00047270214, -0.02010554, -0.007989898, 0.01833914, -0.030531691, -0.005363101, 0.07506705, -0.018510917, 0.0056708273, 0.033925995, 0.012446437, -0.054942947, -0.062251326, 0.09135904, -0.10877171, 0.04023047, -0.024325024, -0.0518805, -0.021407545, 0.06075941, 0.07260051, 0.019771524, -0.019419016, -0.0032658288, -0.0044313064, -0.030510249, 0.026707944, -0.014135832, -0.021577045, 0.001811969, -0.031000867, 0.0018050832, -0.0001689363, -0.042108055, -0.03387085, 0.06572673, -0.015318546, -0.02974085, 0.030533655, 0.07633294, -0.02314749, 0.070441574, -0.06766686, 0.0038009314, -0.0033428855, 0.005440022, 0.014436484, -0.079682775, -0.0005747319, 0.03609558, -0.09161041, -0.0073617096, -0.041495536, -0.016482394, -0.025589343, -0.01619342, -0.07905009, -0.016643634, -0.02236011, -0.054206476, 0.043381877, -0.055467956, -0.027759083, 0.035409525, 0.06445683, -0.0039725783, -0.024732623, -0.0096505415, 0.0072748736, 0.0089606, 0.0663661, -0.005140888, 0.009726353, 0.005364514, -0.01781538, 0.055058766, 0.074057035, 0.004924947, 0.011749194, 0.0718439, 0.0038778884, -0.021929028, -0.048122276, 0.027324526, -0.034230318, -0.039845496, 0.026291115, -0.031276684, -0.027598577, -0.043648675, -0.017802639, 0.037291117, -0.011135726, -0.029279703, 0.010222729, 0.018930525, -0.046060752, -0.0020836766, 0.01154087, 0.088744916, 0.10798909, 0.08265165, -0.019905305, -0.031208253, -0.019968914, 0.01743451, -0.01878789, 0.020820923, -0.06775439, -0.043481216, -0.036622647, -0.023252055, -0.025843201, -0.011420754, 0.021876225, 0.0032958027, -0.018351732, 0.0062612374, -0.018687518, -0.0314646, 0.010419677, 0.031644575, 0.020461392, 0.0040144045, -6.7115114e-05, 0.002224411, 0.007225436, 0.028702745, 0.04006615, 0.054627385, 0.057558283, 0.009690406, -0.025811886, -0.0015219782, -0.01890499, -0.06907556, 0.01488607, -0.06999199, 0.0018439926, 0.04122398, -0.05638679, -0.025641335, -0.005657033, -0.01181751, -0.0005888713, -0.004121253, -0.032113273, -0.03069444, -0.07047159, -0.021190805, -0.031606525, 0.04392704, 0.009644786, -0.014014476, 0.03527205, -0.030560685, -0.056753602, 0.032187, 0.018649342, -0.027846593, 0.019203082, -0.01815962, -0.02122628, 0.05033518, -0.0006862067, -0.018465467, -0.02632685, 0.00044773333, -0.03874323, -0.008546626, 0.032908823, -0.07521847, -0.07078201, 0.060889393, 0.061558265, 0.017782168, 0.0071806926, 0.014586738, -0.00448268, 0.02613833, 0.00601275, -0.0059381016, 0.028123831, 0.02312267, 0.06550444, -0.04481524, 0.0151373325, -0.04955357, 0.05619535, -0.030367918, 0.009139785, -0.027121546, -0.014844494, 0.016177861, 0.070461445, -0.05184545, -0.018553969, 0.013871543, -0.00062597386, -0.089390315, -0.012089532, -0.020566778, -0.026045775, 0.004182215, 0.016640292, -0.016173044, 0.001668864, 0.07564686, 0.0045331684, -0.02672463, 0.0018493382, -0.00983478, 0.005629989, 0.015110951, 0.03178489, 0.0019208451, 0.006611197, 0.011734841, -0.014585103, -0.019967316, -0.028248023, 0.05488906, -0.013040405, 0.061791092, 0.023032282, 0.081728026, 0.03298345, -0.01732943, -0.045475513, 0.047570575, -0.034625094, 0.059132002, -0.070698954, -0.04595574, 0.08282321, -0.0047607506, 0.017785339, 0.045037728, 0.009599733, -0.0026764022, 0.01223095, 0.03373553, 0.011428357, 0.0082666585, 0.022764908, 0.015413538, -0.0015164512, 0.02253027, -0.02482733, 0.046245184, 0.012126972, -0.008049329, -0.02431518, -0.000112095266, 0.04601229, 0.008255746, -0.0022378277, -0.004328732, -0.05270996, 0.0009774389, -0.0054483768, 0.004527038, -0.052354947, -0.040175643, -0.030772073, -0.017294351, -0.034834754, -0.00036053118, 0.043982547, -0.03875052, -0.0006498575, 0.021960765, 0.014659915, -0.0074896067, 0.074076526, 0.010758472, 0.003546114, -0.015298448, 0.070149064, 0.0064062844, 0.0062305005, 0.02419706, -0.013750598, 0.0037803727, 0.038254276, 0.027443033, -0.030075252, -0.0069149816, 0.006159407, 0.038080066, -0.022379467, 0.046879206, -0.0047058207, 0.058450595, -0.025608538, 0.0595475, -0.021918992, -0.030825118, 0.0060757515, 0.031923823, -0.008250655, -0.04498203, 0.026261117, -0.021621201, 0.009653153, 0.021267792, 0.017553467, -0.010279911, -0.063878715, 0.01611853, 0.0003714187, 0.04888084, 0.010358253, 0.02447622, 0.017699432, -0.04040028, 0.04421679, 0.025008962, -0.020849872, 0.0162006, 0.00068089983, -0.026062252, 0.018556986, 0.02351855, 0.02519819, 0.026739553, 0.02825757, -0.005224605, 0.020743545, 0.033247374, -0.03415123, -0.03174418, -0.062425245, -0.049787607, 0.048476215, -0.031394728, -0.029340109, 0.014263666, -0.011963896, 0.0033323946, 0.038959138, -0.019524923, 0.045887444, -0.07041876, -0.03263464, 0.028500915, 0.040410094, 0.011657049, -0.03684832, -0.063426875, 0.032035425, 0.03559975, 0.061785262, 0.02570911, -0.014169382, 0.027980344, -0.018899549, 0.03287358, 0.05063964, 0.0068732225, 0.04211596, 0.005599224, 0.0014459465, -0.014386238, 0.013167751, 0.03090673, -0.0034351426, 0.06443343, -0.078169405, -0.0122649325, 0.033194102, 0.06339093, 0.012708659, 0.026979635, 0.032392457, -0.026824748, 0.011404825, -0.043110184, -0.018499853, 0.06085581, 0.016853714, -0.011642357, -0.014300923, 0.053060554, -0.01031046, -0.021757625, -0.048144408, 0.00662373, 0.012117985, -0.024813132, -0.03891061, 0.014603061, -0.033037644, 0.0050198752, -0.014960812, 0.015933685, 0.0023771776, -0.055825423, 0.07496994, -0.08513123, 0.012873853, -0.011638075, 0.05064004, -0.011847002, -0.03458853, 0.03400642, -0.06614877, -0.08194063, -0.003334074, 0.015499744, 0.046816245, 0.026149727, 0.014635175, 0.022129428, 0.011569991, -0.00085921603, 0.0031188093, 0.030444052, 0.0607132, 0.034213297, -0.009601448, -0.02842729, 0.054125413, 0.008927829, 0.01214559, 0.08257657, 0.05592396, 0.052221876, 0.015462087, 0.025305416, -0.048188407, 0.02551073, 0.0557096, -0.021880424, -0.059049744, 0.030462442, -0.009631806, -0.020547714, -0.054518152, -0.016360246, -0.010095813, -0.04392931, 0.054316435, 0.055837855, -0.023006346, 0.012684562, -0.034430888, -0.04571016, -0.0035621475, -0.02862136, 0.0571028, -0.013027518, -0.022421803, 0.009927288, 0.015566126, -0.016077777, -0.06943967, 0.012102558, 0.01202401, 0.0070050675, -0.01594326, 0.04307805, 0.0014122556, 0.033668704, 0.05460971, 0.061220367, 0.0060285083, 0.026654707, 0.0031208238, 0.023654113, -0.025899844, -0.0038338047, 0.026558453, -0.0040173414, 0.05658409, 0.014526747, -0.026400773, 0.0820661, -0.019982202, 0.0024549707, -0.035879787, 0.024721744, 0.009011408, -0.043692343, -0.0006457649, -0.011924454, 0.019759519, 0.006741806, 0.019559804, -0.008528834, -0.027654987, 0.02008294, -0.027382925, -0.06598325, 0.022949342, -0.013859901, 0.015050802, -0.054509435, 0.015222831, -0.040322527, -0.069393955, 0.017819475, -0.018143775, 0.009528847, 0.02089388, -0.049629826, 0.0039253514, -0.07049033, -0.0069952263, -0.011048359, 0.020651141, -0.041902486, -0.014265313, -0.038335685, 0.0019099027, 0.02679016, -0.01972517, -0.0361393, 0.05661083, -0.0084802415, -0.025138292, -0.0042852964, -0.037300564, 0.008367089, 0.023118364, 0.026890112, 0.014078591, -0.08774659, 0.05027633, 0.045924928, 0.063001096, -0.009110073, 0.05723245, 0.016803794, 0.0084387, -0.043275945, 0.014432496, -0.038838398, -0.033938233, 0.0073337546, -0.0044965884, 0.02982916, -0.005838154, -0.0015020984, -0.0089948345, 0.03427193, 0.03882734, -0.03304202, 0.013409799, -0.01995606, -0.006412122, -0.042212524, -0.042806923, 0.024528239, 0.0094607165, 0.03451768, 0.044345673, -0.023176199, 0.04450813, 0.010572149, -0.051971104, -0.04418288, -0.0009617342, 0.015528626, -0.06308692, -0.015793238, -0.02130738, -0.0005430375, -0.017568523, 0.049061216, -0.043785766, 0.044400055, -0.005617908, 0.026259428, -0.053734224, -0.01672236, -0.0072972905, 0.016988738, 0.083076164, -0.06462949, 0.004670113, -0.09988853, 0.00878054, -0.02032516, -0.010069562, -0.04182165, -0.03278382, 0.044668954, -0.0012529739, 0.018414427, 0.059226975, -0.039937425, 0.011910139, -0.044971313, 0.030002259, 0.06295214, 0.007115798, 0.025015792, 0.03394581, 0.032036837, 0.02624623, 0.055281617, 0.048945796, 0.0057081305, -0.006814898, -0.052712966, 0.09060173, 0.03045542, -0.029861575, -0.049697224, 0.026964683, -0.061715305, 0.057821304, -0.0044459896, -0.026482442, -0.014970541, 0.059816115, 0.0061131604, 0.028831035, 0.018497454, -0.004066931, -0.008614671, -0.025089642, 0.021374593, -0.0064204293, -0.031814642, 0.01664, 0.03602806, -0.022623703, -0.019675866, -0.05205504, -0.025268449, -0.024753895, -0.07512581, 0.028880393, 0.024846662, -0.02282793, 0.042181335, 0.010746874, 0.034276187, -0.03987241, 0.020534992, 0.009368566, 0.010196274, 0.046492822, -0.038291454, 0.01742757, -0.08067251, -0.011066534, 0.062210716, -0.030155674 ] }, { "values": [ 0.002061664, -0.025404613, -0.057459988, -0.060764242, -0.0076439925, 0.0075259893, -0.0333498, 0.038728613, -0.008638128, 0.022461671, 0.019355195, 0.028993716, 0.026641132, -0.009693426, -0.011581256, -0.018069131, 0.009597155, -0.046580248, -0.063666046, -0.0045401994, 0.014493616, 0.025273897, -0.008245833, -0.046955638, -0.0049521765, 0.019215615, 0.03413302, -0.04386988, 0.028354159, -0.06204675, 0.020776436, 0.030326711, -0.0146962255, 0.010070812, 0.016755445, 0.042840034, -0.049210057, 0.01879825, 0.02496882, -0.04537818, -0.064422965, 0.010949467, -0.007686883, 0.027641982, -0.06203235, 0.029304087, -0.010301539, 0.009826077, -0.029681161, 0.045201905, 0.003253824, 0.010608992, -0.0029398722, 0.033658024, 0.026112325, -0.038779557, -0.065233774, -0.032570023, 0.072125435, 0.010116336, 0.027731426, -0.011621426, 0.005789733, -0.041488793, 0.002205853, -0.062818915, -0.055692498, -0.0352544, -0.018577594, 0.012240891, -0.06372369, 0.022860743, -0.07429616, 0.017213851, 0.025087414, -0.042994734, 0.02299566, -0.012814956, -0.019614782, 0.04581756, 0.011035412, -0.016979836, 0.026975324, 0.027992819, 0.031604685, 0.0037567466, 0.02336925, -0.033066742, -0.04796564, 0.010861775, 0.06722932, -0.032579593, 0.0018285488, 0.012885898, 0.048572518, -0.050473653, -0.039862093, -0.07667047, -0.0030602885, 0.051391263, -0.039561555, -0.0024236706, 0.0014652086, -0.040281415, 0.03984792, 0.04780377, -0.0038526666, -0.038987007, -0.03171013, 0.016586607, -0.059590913, -0.049766917, -0.02145043, 0.029465716, -0.026043683, -0.037571903, 0.003877178, -0.019406606, -0.022612974, -0.029017003, 0.030751634, -0.03109026, -0.013161979, 0.075635016, 0.023930265, 0.0059321355, 0.013770262, 0.0010596581, -0.039222546, -0.031185586, 0.076201476, -0.099144936, 0.0310545, 0.010198805, -0.06102925, -0.01706485, 0.07574144, 0.053573, -0.034084022, -0.009331386, 0.0021235733, -0.0299769, -0.04346799, 0.05000879, 0.0069218636, -0.021833295, 0.008173456, -0.021310233, -0.0022009856, 0.0112023605, -0.040215254, -0.040386267, 0.016107172, 0.0017048686, -0.033599872, 0.038465373, 0.07207194, -0.06797836, 0.07116116, -0.068253644, -0.011854288, -0.016830143, -0.0022159677, 0.005047164, -0.029007792, 0.02553805, 0.017625414, -0.06730294, -0.031269524, -0.062315676, -0.025108727, -0.073175035, -0.052789934, -0.07681532, -0.051546577, 0.0065578227, -0.056601264, 0.020235503, -0.06422836, -0.025602533, 0.040950246, 0.06591968, -0.016407993, -0.029911565, -0.03452486, -0.019699382, 0.012581937, 0.07439425, -0.00826292, 0.024298208, -0.009512921, -0.0027764197, 0.029686362, 0.05038512, 0.012445812, 0.04587099, 0.05976862, -0.035155553, -0.034971878, -0.047461953, 0.012677756, 0.026531687, -0.020337338, 0.03739839, -0.02222242, -0.020420134, -0.041936107, -0.015180846, 0.06974072, -0.041617442, -0.005239704, 0.055475112, 0.031517226, -0.067760766, -0.008215788, 0.01278753, 0.073927246, 0.07209048, 0.049853314, -0.054424167, -0.022979893, -0.013373558, 0.040814444, 0.0026409617, 0.0448231, -0.018738715, -0.021949336, -0.012977232, 0.0070461226, -0.030698044, -0.011130183, 0.013410551, 0.0142803695, -0.021808727, 0.0127565, 0.0047879806, 0.050643537, 0.0091681555, -0.0037989235, 0.04167097, 0.0178573, 0.021358684, -0.008276034, -0.020431997, -0.0006398779, 0.04802602, 0.0939067, 0.062332828, -0.03125168, -0.03316647, -0.015349045, -0.060176823, -0.058306813, 0.005646903, -0.0789231, -0.007657016, 0.053117055, -0.059471123, -0.0039010157, 0.021085097, 0.023523245, -0.0049495623, -0.018757906, -0.04485814, -0.012161562, -0.04558014, -0.040131032, -0.026557839, 0.04470902, -0.004496283, -0.024637086, 0.019072631, -0.08737115, -0.035025056, 0.027043443, 0.057329547, -0.042904772, 0.017341632, -0.04344536, -0.042472597, 0.073985316, -0.008312465, -0.022352083, -0.036842022, -0.018428091, -0.045785364, -0.019057306, 0.044083472, -0.060513746, -0.04790336, 0.05613743, 0.037225477, 0.025620662, -0.016715627, 0.053438984, -0.009128889, 0.026130253, -0.013417553, -0.0129980445, 0.025040844, -0.011428952, 0.053411003, -0.013615, 0.007950142, -0.008587653, 0.030270545, -0.0222142, -0.029310793, -0.020389065, 0.0022177866, 0.018150594, 0.060291547, -0.05941313, -0.028383175, 0.0016722226, -8.839919e-05, -0.1030926, -0.0015180837, -0.031091105, -0.011530766, 0.0022891716, 0.00069510017, -0.023450853, -0.027919399, 0.031791754, -0.013747732, -0.025103722, 0.003744456, 0.010920491, -0.0032206774, 0.009286564, 0.040496785, 0.01839701, 0.0172243, 0.024459418, 0.017055398, -0.03487552, -0.010408338, 0.05781223, 0.0059751063, 0.03690307, 0.015309389, 0.074044295, 0.033863373, 0.016303727, -0.043696217, 0.01718515, -0.026724989, 0.037649196, -0.06190672, -0.06024969, 0.07967162, -0.021648133, -0.0065963212, 0.056013416, 0.025710756, 0.021170756, 0.03984136, 0.008716304, 0.010017345, -0.01771091, 0.014966206, 0.00468283, -0.001315579, 0.028483238, 0.008451603, 0.03130069, 0.025498895, -0.022366764, -0.01699222, 0.03389876, 0.033645473, 0.015777368, 0.016536655, -0.011267446, -0.04792694, -0.019488107, -0.011767011, 0.010577973, -0.027305646, -0.025385642, -0.049985614, -0.01738519, -0.018402323, -0.026111726, 0.02964886, -0.030730272, 0.003096038, 0.03950799, 0.0064586853, -0.01983013, 0.028226443, -0.004396559, -0.00049556943, -0.020387333, 0.07044758, 0.008965774, 0.004976498, 0.0013664438, -0.010655216, -0.02988681, 0.0009988163, 0.06372715, -0.04831355, 0.002832316, 0.016831465, 0.04334808, 0.026286462, 0.039071478, -0.027372187, 0.0706977, -0.013088563, 0.054160774, 0.019450214, -0.025059585, 0.0168844, 0.04105463, -0.036964983, -0.02730964, 0.032563504, 0.0053409664, 0.00920929, -0.0021722424, 0.049207915, -0.034335822, -0.06381602, 0.004496882, -0.0033492073, 0.03422099, 0.02318015, 0.0036729525, 0.017226918, -0.039730266, 0.007302372, -0.0053192065, -0.022517968, 0.030511638, -0.0041951737, -0.010853576, 0.0067505706, 0.01127239, 0.023586722, 0.03056808, 0.03822945, 0.010028903, 0.023549147, 0.020394858, -0.0063430914, -0.0579358, -0.06316187, -0.03613964, 0.0318657, -0.014622217, -0.031091308, 0.012099489, -0.0041254256, 0.021394107, 0.024196628, 0.0053152237, 0.038228698, -0.0914746, -0.013922043, 0.04199347, 0.04052309, -0.0025029029, -0.013467012, -0.06149189, 0.03807708, 0.021187708, 0.07910036, 0.032326985, -0.022405462, 0.025709266, -0.0057090186, 0.035312284, 0.03874959, 0.00055186014, 0.04461495, 0.01912643, 0.017366247, -0.011299126, 0.031233782, 0.0151795475, 0.007914142, 0.037903894, -0.07718103, -0.027504172, 0.04381688, 0.06200541, 0.052303296, 0.048007283, 0.052986164, -0.025245909, 0.04550188, -0.026088921, -0.020628093, 0.060922433, 0.009336565, -0.03435304, -0.033754032, 0.075225964, 0.0012774075, -0.012716108, -0.033222016, -0.010425871, 0.020206701, -0.05269723, -0.041802466, -0.004825294, -0.02004494, 0.0125295, -0.0031199248, 0.05591377, 0.0050954255, -0.0091811605, 0.058977213, -0.08030556, 0.0047788364, -0.0020314336, 0.06653091, -0.0005267175, -0.027350087, 0.02385918, -0.054784264, -0.09039012, 0.008651074, -0.0040445216, 0.042142414, 0.024444753, -0.003958078, -0.029653564, 0.023438796, 0.04021078, 0.004557007, 0.05836914, 0.007937988, 0.019704908, 0.032838754, -0.032504946, 0.03319953, 0.005650407, 0.044771455, 0.07437012, 0.03462228, 0.026448403, -0.0047830655, 0.03553436, -0.03227387, -0.0015287297, 0.077673614, -0.026788112, -0.028277386, 0.047838908, 0.04400498, 0.006836996, -0.06920519, -0.011294381, 0.0017918805, -0.077743426, 0.024257839, 0.07596149, -0.021445656, 0.0014982133, -0.024007132, -0.019965302, -0.005011614, -0.027508087, 0.03213079, 0.02000326, -0.029049918, 0.0043235803, 0.026079403, -0.034687325, -0.048419088, 0.04859626, -0.0064246994, -0.009119709, -0.011068982, 0.04984791, -0.003965764, 0.027319204, 0.0027702102, 0.04873035, -0.0265756, -0.00586816, 0.015060731, 0.051504266, -0.024016762, -0.014425784, 0.034330238, -0.0012892113, 0.011718114, -0.0034919963, -0.021726422, 0.09640312, -0.035722185, -0.020440042, -0.01504083, 0.026390053, 0.017255029, -0.03916754, 0.05136817, -0.035831213, 0.035375264, 0.00383932, 8.428213e-05, -0.044149376, -0.03693315, 0.0034040986, -0.022831991, -0.03640526, 0.032659113, -0.029474031, 0.013286719, -0.04794189, 0.039437223, -0.038877364, -0.031004947, 0.009168443, -0.0075447676, -0.0064279544, 0.014480537, -0.029992875, -0.011830593, -0.08458535, 0.027988492, -0.039077125, 0.03442381, -0.024421131, -0.0033039073, -0.030294124, 0.042721335, 0.011235808, -0.04440794, -0.022564538, 0.044168513, 0.00773628, -0.020650338, -0.013851382, -0.040492654, 0.035477724, 0.01307472, 0.018006474, -3.253854e-05, -0.09534943, 0.040395547, 0.0015541128, 0.06057906, -0.011513754, 0.045380827, 0.015801018, 0.0232694, -0.040370487, -0.004563451, -0.03160615, -0.02909069, 0.00024816548, -0.010304689, 0.025347028, -0.002696947, -0.002272597, -0.0305596, 0.05501517, 0.03981329, -0.031494685, 0.013863796, -0.0021146594, -0.016303813, -0.036278702, -0.045263395, 0.0152308205, 0.0109435385, -0.0009015968, 0.051140428, -0.03650204, 0.038755406, 0.028407853, -0.0017205598, -0.07887496, 0.043125052, 0.013285315, -0.063153416, 0.01077902, -0.025669217, -0.006441866, 0.009261705, 0.041329805, -0.07459812, 0.040268835, 0.004735074, -0.0062141623, -0.086373866, -0.011019944, 0.0016670349, 0.017477337, 0.041955333, -0.042359907, 0.040057413, -0.056217536, 0.045453288, -0.03908441, -0.020351205, -0.04681229, -0.06022981, 0.039622795, 0.030223252, 0.049126446, 0.030193191, -0.032429848, 0.018426523, -0.047898106, 0.030963857, 0.09089552, 0.023610301, 0.021222284, 0.026034558, 0.052023593, 0.013260995, 0.01349306, 1.7202065e-05, -0.0010416695, -0.02050861, -0.06363711, 0.09586925, 0.025307195, -0.018381711, -0.042098753, 0.008948194, -0.04577686, 0.057989627, 0.0039481195, -0.029756436, -0.033514515, 0.0661968, 0.014622101, 0.010635915, -0.0019574102, -0.010594481, -0.0021557477, -0.04429459, -0.011666487, -0.019719489, -0.04849111, -0.007134026, 0.017783456, -0.0017707259, -0.00015339442, -0.04123391, -0.0136930365, -0.02738919, -0.051539972, 0.0105617335, 0.036633518, -0.01882099, 0.0096332645, -0.031978372, 0.052213922, -0.05698255, 0.01003051, 0.030857071, 0.0116489185, 0.0029370908, -0.016150624, 0.024229622, -0.109713286, 0.022497648, 0.05270157, -0.030155929 ] }, { "values": [ 0.00063585734, -0.022506854, -0.021098576, -0.023057077, 0.0009819495, 0.012765498, 0.000810452, 0.010846353, -0.02440977, 0.027777862, 0.008137842, 0.039251305, 0.013350346, -0.024237558, -0.025724817, -0.012665007, 0.028518856, -0.0128244385, -0.086529605, -0.054916434, 0.007535167, 0.021091485, 0.0014838342, -0.0628896, -0.011257406, 0.011553599, 0.04272135, -0.030381609, 0.022823624, -0.04045411, 0.007008766, 0.03835686, -0.023656089, -0.006853299, 0.025772, 0.04647125, -0.068685316, -0.003068855, 0.051630132, -0.04551186, -0.041288864, 0.031579383, -0.0073928996, 0.0074689244, -0.026985241, 0.035895325, 0.020744191, 0.029247878, -0.013939518, 0.061450113, 0.01918316, 0.008627622, 0.023106951, 0.023026954, 0.049161855, -0.035481676, -0.08668, -0.052262418, 0.04523617, -0.004563803, 0.0007860646, -0.0018898272, 0.011202614, -0.044576596, 0.004760977, -0.02602285, -0.020233389, -0.052627433, -0.014340122, 0.033887494, -0.038796123, 0.023699401, -0.07531224, -0.004356373, 0.0018108852, -0.012276464, 0.0023068348, 0.009478508, -0.047586724, 0.032818023, -0.03278257, -0.014722084, 0.06364113, 0.02201446, 0.03612657, 0.01357206, 0.027199546, -0.076509535, -0.013916441, 0.017284619, 0.07937055, -0.026574144, -0.0075882417, 0.007583585, 0.024437867, -0.031202702, -0.027879633, -0.093471624, 0.0013055917, 0.08737833, 0.00031525316, -0.017273096, 0.023694944, -0.019530447, 0.03523784, 0.03159227, -0.0012851587, -0.070422985, -0.05232193, 0.031246837, -0.034694493, -0.05696885, 0.012427087, 0.034863017, -0.03239577, -0.043246776, 0.007174845, -0.0059330678, -0.0043139956, -0.03824798, 0.016383862, -0.03323441, -0.04128187, 0.06780953, 0.0067667086, 0.0026312808, 0.0048484053, 0.016322602, -0.03348942, -0.06590914, 0.09463195, -0.100902036, 0.02723424, -0.022155086, -0.054498028, -0.019878935, 0.0682394, 0.070681676, 0.016454456, -0.014002231, -0.0045399894, -0.007952941, -0.031859793, 0.053637788, -0.0070713307, -0.03875054, -0.014413202, -0.0003422117, -0.0030413202, 0.014732627, -0.041026954, -0.023238288, 0.0399468, -0.00035583772, -0.01318813, 0.02632775, 0.07320298, -0.041811846, 0.06360887, -0.056071155, 0.010302495, -0.0033171552, 0.0029358387, 0.0019200746, -0.036842935, -0.03107381, 0.020291444, -0.07876453, -0.009456239, -0.06846916, -0.0080667315, -0.034838863, -0.027723556, -0.096115455, -0.015279314, 0.0032238383, -0.0442476, 0.051376406, -0.033164736, -0.008067403, 0.046433367, 0.04915308, -0.008054187, -0.025232418, -0.033214793, -0.01998806, -0.008083808, 0.07084394, 0.012221522, 0.024556903, -0.017810278, -0.018802134, 0.011566252, 0.069121115, 0.027101161, 0.032033004, 0.06781793, -0.001066098, -7.589218e-05, -0.07712054, 0.0408491, -0.014413425, -0.02958207, 0.023141911, -0.03102719, -0.029390657, -0.020586627, -0.009201074, 0.03878764, -0.0057723145, -0.054496657, 0.010089746, 0.037093747, -0.06262245, -0.009347378, 0.031697627, 0.08006402, 0.078655005, 0.04550305, -0.031928115, -0.027345719, -0.015450418, 0.03952388, 0.0017159516, 0.029631488, -0.056633417, -0.031409748, -0.053665284, -0.0068510133, 0.0017129679, -0.016785407, 0.011634701, 0.0115199955, -0.00997054, -0.0018656293, -0.017967353, 0.0040873946, 0.008867, 0.009240528, 0.04293018, 0.0040829284, -0.0017509265, 0.007921439, 0.003959372, 0.014870782, 0.078540064, 0.08636136, 0.06901451, -0.020098008, -0.036598936, -0.0033539278, -0.03892346, -0.10527654, 0.019922154, -0.07101845, -0.024752164, 0.05528814, -0.06642078, -0.015288459, -0.016214054, 0.007339969, -0.013818662, -0.02498884, -0.03442659, -0.034403652, -0.03811232, -0.038417548, -0.018830515, 0.064625055, 0.019879607, -0.010341399, 0.03155677, -0.050332747, -0.057064444, 0.04605919, 0.043451115, -0.026637208, 0.010305094, -0.02110695, -0.023287201, 0.06953548, -0.00091003336, -0.028232476, -0.035456, 0.007904449, -0.037889928, -0.0076130363, 0.050111774, -0.073550284, -0.056369044, 0.07681454, 0.040047873, 0.026768679, -0.0023920073, 0.009408528, -0.008201004, 0.020317286, -0.0023812864, -0.011712706, 0.0100638, 0.009553794, 0.065284096, -0.03195045, -0.0051443456, -0.037042927, 0.05297348, -0.03891916, -0.028475715, -0.013420386, -0.0052633216, 0.013835249, 0.07519132, -0.04386853, -0.017511321, 0.018455178, 0.022479767, -0.10437026, -0.008063634, -0.015264907, -0.004016235, 0.012803368, 0.020889064, -0.026984166, 0.0042733327, 0.05062786, -0.014749572, -0.0297082, -0.019817162, 0.0032709213, 0.0015604768, 0.024441872, 0.05226904, 0.00077143335, 0.021382427, 0.0070438073, 0.01133806, -0.01974508, -0.016569853, 0.051298745, 0.01056329, 0.04141587, 0.01588432, 0.0789421, 0.019878669, -0.0089863995, -0.06397309, 0.01972064, -0.03704119, 0.068549454, -0.061046287, -0.0662855, 0.07137269, -0.0047724093, 0.002872869, 0.04382609, 0.032031722, 0.017354969, 0.03802037, 0.026527174, -0.0048557282, 0.014811436, 0.035182383, 0.025338678, 0.0062320544, 0.011116847, -0.022394134, 0.062126826, 0.014351443, -0.01400842, -0.03929976, 0.0066740145, 0.04765315, 0.019644711, 0.011528051, -0.0144660985, -0.07057198, -0.018884871, -0.0017068664, 0.005738572, -0.04371468, -0.05212363, -0.029632092, 0.013017796, -0.03613448, -0.025046723, 0.035372436, -0.038379293, -0.020835623, 0.02761231, 0.025941044, -0.024952991, 0.041571274, -0.008909501, -0.004287006, 0.006648326, 0.06361341, -0.009063905, -0.005378369, 0.016358616, -0.015744485, -0.0049188756, 0.009377307, 0.021697847, -0.027417704, -0.010273437, 0.009090447, 0.040779665, -0.006565881, 0.04813008, -0.03566111, 0.07120738, -0.026957551, 0.047549315, -0.011967888, -0.034863025, 0.004263125, 0.02045322, -0.0020817427, -0.038097084, 0.008799306, -0.005711203, 0.0014727048, 0.015533228, 0.02840365, -0.022987662, -0.09335824, 0.017641293, -0.0036252877, 0.02795906, 0.00041110703, 0.0045011584, 0.020406531, -0.039146524, 0.03672389, 0.00661745, -0.01722328, 0.0019281604, 0.02033236, -0.005075087, -0.0037302068, 0.0322424, 0.016164677, 0.02188353, 0.026247049, -0.0050547635, 0.044653237, 0.036411393, -0.034360543, -0.05552518, -0.07101668, -0.011754325, 0.033201385, -0.021294769, -0.028002445, -0.0022484951, -0.024849996, 0.031078089, 0.027578, -0.01586327, 0.035643965, -0.044158395, -0.03355678, 0.03682001, 0.040209834, 0.024139095, -0.02651498, -0.055152718, 0.05286434, 0.019971125, 0.0576043, 0.031641945, -0.039503366, 0.037354268, 0.00026579393, 0.040242597, 0.058206346, -0.0047724773, 0.022689728, 0.029059028, -0.005948996, -0.017000772, 0.03598446, 0.033672478, -0.00018974963, 0.061121203, -0.07180607, -0.01657166, 0.04661435, 0.058739834, 0.009848134, 0.02103094, 0.037847005, -0.029632507, 0.009749574, -0.016769102, -0.024291953, 0.05620612, -0.023187464, 0.0014272751, -0.04333866, 0.052067015, -0.0037920712, -0.015465779, -0.024593102, -0.0216364, 0.0029656733, -0.02419543, -0.029121175, 0.019139556, -0.017003553, -0.0009594872, 0.003965183, 0.0501222, 0.0022790327, -0.049485274, 0.08264817, -0.07427082, -0.012255817, -0.013390205, 0.06668371, -0.01697104, -0.041674968, 0.031554922, -0.08775501, -0.08904443, 0.009720418, 0.002173345, 0.036713842, 0.02328739, -0.011121919, -0.0043463893, 0.010014144, -0.0012036014, 0.017139941, 0.029577563, 0.028976914, 0.029438082, -0.011284334, -0.020515943, 0.044775177, 0.010036909, 0.030512197, 0.0782142, 0.035688102, 0.04010161, 0.00873871, 0.042839274, -0.04476822, -0.00030462362, 0.06282621, -0.049766243, -0.06135593, 0.040430967, 0.024825536, -0.017679086, -0.058041457, -0.012569857, -0.019011673, -0.07358418, 0.044587746, 0.047139354, -0.019676108, 0.020009972, -0.024324208, -0.021221811, -0.0025148226, -0.045881797, 0.06383687, -0.015330306, -0.026385037, 0.016628837, -0.0039752186, -0.028422313, -0.05668026, 0.037661016, 0.02581811, -0.0038233127, -0.013821203, 0.040541217, 0.003146502, 0.03544875, 0.046668943, 0.07314573, -0.018232157, -0.008377913, 0.0030106881, 0.026873568, -0.03867903, -0.013694851, 0.031087473, -0.0013192791, 0.04949341, 6.997991e-05, -0.008029572, 0.060130734, -0.0025060256, -0.022757642, -0.04820516, 0.010407483, 0.014232142, -0.033879362, 0.0018017839, -0.027911056, 0.03784883, 0.005870319, 0.00889719, -0.0034067847, -0.027492099, 0.03402657, -0.016491853, -0.04356725, 0.015726304, -0.012211582, 0.018976012, -0.05560231, 0.03690281, -0.017219717, -0.034776434, 0.019746471, -0.035339363, -0.014330338, 0.028546527, -0.03921232, -0.016648445, -0.06648671, -0.00095968886, -0.01958656, 0.034366783, -0.027437514, 0.016673716, -0.026631342, 0.00710874, 0.039089732, -0.025975987, -0.019574817, 0.04406272, 0.021470534, 0.001074382, 0.006686734, -0.046520602, 0.030129032, 0.012153913, 0.016611082, 0.011010428, -0.09323066, 0.046720702, 0.026212096, 0.041719444, -0.0031069538, 0.037061986, 0.009088991, -0.012963933, -0.026050596, -0.008313083, -0.034960736, -0.04150521, 0.013893039, -0.018409058, 0.02776354, -0.006370694, -0.034815893, -0.00027817258, 0.027037596, 0.052376434, -0.008561982, -0.01287931, -0.013817798, -0.011976545, -0.043581698, -0.051992647, 0.0020998179, 0.01416261, 0.018594103, 0.058740344, -0.0441273, 0.047012653, 0.018437987, -0.035285477, -0.059784234, -0.004698215, 0.030544778, -0.057647005, -0.0042185653, -0.021597505, -0.0028872632, -0.026183378, 0.03331304, -0.06420514, 0.037015114, -0.017829891, 0.0025540323, -0.06332101, -0.01508409, -0.014199771, 0.0010004448, 0.069859646, -0.03708712, 0.021987254, -0.089554735, 0.019208489, -0.031594396, -0.024652243, -0.07149188, -0.013715117, 0.030426491, 0.037039932, 0.019345049, 0.04025403, -0.045600124, 0.01707271, -0.05674603, 0.019309249, 0.06724983, -0.005437615, 0.03259647, 0.020952623, 0.04152912, 0.002965502, 0.04077915, 0.048593912, -0.011689467, -0.02614289, -0.0297855, 0.091239564, 0.013557776, -0.016175216, -0.049804613, -0.0007548673, -0.06365644, 0.06479561, 0.012998252, -0.027537536, -0.047115453, 0.05720916, 0.013347536, 0.03075261, -0.011353444, 0.0065864157, 0.020915192, -0.027848145, 0.020984527, -0.013744397, -0.04917976, 0.0006864212, 0.036267787, -0.0015863874, -0.023340812, -0.05150319, 0.002404931, -0.0011028104, -0.089069076, 0.02945017, 0.024371035, -0.028643416, 0.032720853, -0.024917083, 0.031687856, -0.032743342, 0.016202515, 0.018513173, -0.001559838, 0.051147263, -0.023030462, 0.019022463, -0.081762224, 0.02590554, 0.06683971, -0.02286462 ] }, { "values": [ -0.0023399196, -0.025713213, -0.012668291, -0.023238976, 0.0050765662, 0.026782569, -0.007304519, 0.01714777, -0.0022575872, 0.039547447, 0.001910163, 0.017975165, 0.0035643452, -0.0076487428, -0.034920137, -0.037321135, 0.021791833, -0.02555659, -0.09970769, -0.061425414, 0.023796339, 0.0224353, -0.0003403237, -0.042451814, -0.008798328, -0.0072468324, 0.047407627, -0.013242396, 0.022697333, -0.04306875, 0.010692017, 0.038483974, -0.01785626, -0.016821196, 0.0038413408, 0.052006457, -0.08939837, -0.016560076, 0.047591895, -0.03711253, -0.049370505, 0.033751197, -0.0038244177, 0.018918121, -0.048703168, 0.048927993, 0.03410265, 0.023391861, -0.015511349, 0.05372642, 0.0038025011, 0.00074849365, 0.038697153, 0.0111387335, 0.031045286, -0.035349414, -0.07223051, -0.020753901, 0.04369928, -0.013285555, 0.010357506, 0.0067360327, 0.00015815801, -0.027604615, -0.0053378455, -0.039617725, -0.03995779, -0.031889893, -0.0049905893, 0.032391503, -0.035268217, 0.0065394253, -0.07313362, 0.020256076, 0.0018713451, 0.000110327135, 0.020263122, -0.010948287, -0.048615698, 0.03787198, 0.012106521, 0.009263226, 0.042164158, 0.017998263, 0.015821101, 0.005307844, 0.054253295, -0.06449773, -0.021630937, 0.0032346651, 0.06568744, -0.016996581, -0.039737713, 0.015474792, 0.02500908, -0.016939385, -0.025444511, -0.10393748, 0.005960533, 0.06434276, -0.0017074536, -0.024848487, -0.0020998535, -0.028270971, 0.020205058, 0.010004802, 0.0010211441, -0.048589725, -0.06000981, -0.0050403457, -0.031962313, -0.047133278, -0.0048303436, 0.025612984, -0.040836696, -0.045762975, -0.012616309, -0.01454841, -0.015244821, -0.03330051, 0.023451075, -0.02555926, -0.03802016, 0.060985655, 0.021505669, 0.013696099, 0.011808139, 0.019032532, -0.044209555, -0.042085495, 0.09954718, -0.11611989, 0.026859164, -0.022477258, -0.038780168, -0.019689104, 0.074120745, 0.048558038, 0.010892777, -0.009109211, -0.0073061897, -0.0035270615, -0.03818051, 0.05017624, -0.003203122, -0.034640517, -0.013759863, -0.024562692, -0.0060649775, 0.034751583, -0.06000502, -0.033255503, 0.031910952, 0.0045428383, -0.020768538, 0.04735872, 0.07062502, -0.04332216, 0.07082483, -0.05868642, 0.018721428, -0.0044250498, 0.004055491, 0.01467663, -0.03716116, -0.0037105638, 0.024268566, -0.07995038, -0.024403749, -0.04874269, -0.011779923, -0.039687306, -0.054291498, -0.07154124, -0.03308792, -0.0059833704, -0.01450284, 0.019772623, -0.047945276, -0.0048777075, 0.061921548, 0.0748881, -0.029614907, -0.03135507, -0.042414065, -0.034846354, -0.00034328626, 0.06899303, 0.0065013305, 0.041182637, -0.02557876, -0.008620504, 0.02319462, 0.049474414, 0.024497202, 0.025601503, 0.059541386, 0.0071815117, -0.02878975, -0.063182764, 0.03246588, 0.010839838, -0.031197058, 0.053890333, -0.04562881, -0.001969702, -0.027065221, -0.014530934, 0.040621247, -0.013611417, -0.05068291, 0.016286332, 0.03464548, -0.08156483, -0.008869234, 0.022824997, 0.08215613, 0.08379825, 0.059357397, -0.024710685, -0.049448524, -0.031598292, 0.016970035, 0.016544992, 0.030494211, -0.0294073, -0.014808938, -0.041842677, -0.0151859, -0.0020855048, 0.004376412, 0.02437204, 0.008152369, -0.01243383, -0.000931125, 0.0031478088, -0.0015731832, 0.026708232, 0.0035236476, 0.050769676, -0.00070130674, -0.006386345, 0.0035555016, 0.015659152, -0.006690568, 0.07446686, 0.077129655, 0.07148915, 0.00055644056, -0.049400263, -0.03835518, -0.027720688, -0.10075638, 0.010515634, -0.063040316, -0.02169355, 0.054352287, -0.06111233, -0.000988466, -0.011261272, 0.017408906, -0.008778856, -0.011962549, -0.044326827, -0.014108104, -0.048675057, -0.03906578, -0.015449081, 0.06323372, 0.010022536, 0.002438921, 0.013643135, -0.06524785, -0.047805354, 0.021927975, 0.04515876, -0.04865102, -0.0017355657, -0.027061518, -0.040697627, 0.08209526, -0.005393338, -0.008388597, -0.03441122, 0.0009567729, -0.031251255, -0.0022137482, 0.04300599, -0.059039578, -0.054404385, 0.053192325, 0.051251333, 0.022889242, -0.014415401, 0.0123617835, -0.00030165416, 0.033497315, 0.0025692012, -0.033601504, 0.0038914196, 0.012818888, 0.06597846, -0.029613882, 0.0068589416, -0.024690982, 0.048167277, -0.028903292, -0.01031431, -0.0068170805, -0.01464258, 0.0020569025, 0.06072792, -0.045575652, -0.011312253, 0.005404344, 0.008671088, -0.12463059, -0.011908934, -0.041398354, 0.017956665, 0.0037099195, 0.015394533, -0.00246855, -0.01200654, 0.052728247, -0.0017003152, -0.020440873, 0.00014293296, 0.007630059, 0.002749159, 0.022148056, 0.06809962, 0.022990584, 0.011150047, 0.021724265, 0.0010990534, -0.005132779, -0.022696517, 0.07033753, 0.015797138, 0.04157317, 0.0038895344, 0.074458465, 0.03949037, -0.018174723, -0.064979486, 0.033524223, -0.030762816, 0.043293774, -0.06561433, -0.06682509, 0.08269609, 0.004441868, -0.005994815, 0.04246523, 0.011007183, -0.0013312561, 0.024287298, 0.013265523, -0.0063834474, 0.020122075, 0.028293166, 0.008117491, 0.004394227, 0.026945403, -0.0024129709, 0.050856493, 0.022085316, -0.005067066, -0.040709533, 0.02145947, 0.022892278, 0.009737008, 0.027308755, -0.01574811, -0.05917654, -0.01947483, 0.0104268845, 0.0009031758, -0.052629873, -0.02886546, -0.03993446, 0.0032397013, -0.028158287, -0.02913492, 0.040402364, -0.020855011, -0.0009603807, 0.024579972, 0.018703267, -0.033633344, 0.04214604, -0.0058498997, -0.0012711574, -0.010903979, 0.06859542, -0.016696163, -0.012034297, 0.018916795, -0.016735226, -0.015251202, -0.0073870625, 0.030835181, -0.039117005, -0.0017820491, 0.006034878, 0.05117576, -0.02416062, 0.030409904, -0.03326399, 0.05974734, -0.014373852, 0.044294115, -0.0040627723, -0.030278048, -0.00037516095, 0.04587464, -0.013412643, -0.038239468, -0.007271225, 0.010941743, 0.02165489, 0.009994284, 0.009231623, -0.027060363, -0.075413756, 0.00094259746, 0.007279595, 0.059907418, 0.012800805, 0.0023791073, 0.011626957, -0.05017373, 0.03699986, 0.008427781, -0.020054394, -8.426525e-05, 0.027240897, -0.0036911713, -0.0032249494, 0.028150618, 0.027660897, 0.0046352595, 0.044297505, 0.008558536, 0.021371992, 0.038837112, -0.026115088, -0.049623176, -0.084510304, -0.028304653, 0.007837655, -0.01881166, -0.00861933, 0.011982896, -0.023879357, 0.020109678, 0.028857756, -0.031983063, 0.038536265, -0.072269455, -0.013980954, 0.06193119, 0.038649753, -0.0014401681, -0.016234836, -0.055986714, 0.039067235, 0.041615397, 0.07745504, 0.016036447, -0.02334544, 0.04375611, -0.018902406, 0.030757885, 0.06424157, 0.008763674, 0.04627504, 0.034277502, 0.009125456, -0.026967565, 0.03663051, 0.03903069, 0.013111855, 0.06357909, -0.070224404, -0.0015930701, 0.03956807, 0.05609334, 0.033862446, 0.04740205, 0.054024592, -0.026928052, 0.024475986, -0.023395889, -0.019535534, 0.030239463, -0.009306445, -0.0015259413, -0.025281994, 0.043980066, -0.01183864, -0.01648716, -0.032735962, 0.007724624, 0.013989945, -0.058726568, -0.033926528, 0.0067685917, -0.030438777, 0.002694131, -0.00075885025, 0.045372084, 0.010002637, -0.02165277, 0.060993493, -0.07935616, -0.023708751, 0.0059912154, 0.058482826, 0.017687468, -0.022507448, 0.038266312, -0.06892832, -0.105627365, -0.0046845884, 0.001205797, 0.036439084, 0.03253752, -0.0059553995, -0.011363067, 0.0101223895, 0.0051757856, 0.019125752, 0.016223032, 0.008092668, 0.035615996, 0.0030418956, -0.0301628, 0.027848635, 0.040974345, 0.040688343, 0.057021227, 0.014613616, 0.05241, -0.0015533506, 0.02184984, -0.028450642, -0.009421778, 0.047711793, -0.016984703, -0.06340628, 0.05859101, 0.007386285, 0.0031443408, -0.06486345, -0.012346867, -0.030251091, -0.079292044, 0.03683544, 0.054758262, -0.007474972, 0.029130412, -0.038784202, -0.007628898, -0.034820307, -0.049147233, 0.052626017, -0.020048808, -0.03755223, 0.025572238, 0.016309619, -0.031586915, -0.043642737, 0.029055199, 0.0050937617, 0.014123867, -0.022822628, 0.036184307, 0.0023898277, 0.018157216, 0.014981276, 0.08600558, -0.018286774, 0.000112955124, 0.017069625, 0.034598723, -0.03742424, -0.022093473, 0.034569092, 0.010577893, 0.034822732, -0.023134522, 0.0060901223, 0.07789309, -0.012715726, -0.0042911675, -0.045007925, 0.01804352, 0.015350803, -0.036163807, 0.01149252, 0.013723792, 0.028500482, -0.005762572, -0.0019840328, -0.006183975, -0.033026524, 0.037645876, -0.002754299, -0.049895097, 0.030205458, -0.0015356012, 0.028041536, -0.06596444, 0.032038964, -0.019486861, -0.03812511, 0.035062775, -0.029608794, -0.012491236, 0.021410404, -0.039155442, 0.009070573, -0.07266634, 0.010363779, -0.026298188, 0.052336935, -0.026094573, 0.023353228, -0.031296644, 0.01095724, 0.040449847, -0.03596403, -0.019483555, 0.040904082, 0.013043388, -0.012793659, -0.0042816945, -0.056384612, 0.034590688, 0.0040048123, 0.018437007, 0.00047075405, -0.09004498, 0.06136033, 0.01391034, 0.04083763, 0.006612413, 0.052841138, 0.02617347, 0.017807446, -0.033064827, -0.019573366, -0.03657767, -0.045318533, 0.009696385, -0.014938681, 0.032171614, 0.009924593, -0.0390056, -0.01517986, 0.02876747, 0.050138965, -0.018268589, -0.0034057335, -0.014412956, -0.009615619, -0.033409227, -0.045409333, 0.011357285, 0.020148307, 0.032189075, 0.05335735, -0.04422446, 0.030346988, 0.02532454, -0.020250546, -0.058407295, 0.00092914584, 0.026200742, -0.062152132, -0.0039853468, -0.039485056, -0.00086499355, -0.023720874, 0.034354318, -0.06037596, 0.03650285, -0.0136505645, -0.0029280784, -0.08919077, 0.002875418, -0.015478741, 0.013332788, 0.04688213, -0.05370057, -0.0004263695, -0.06915099, 0.030934066, -0.031423993, -0.030408453, -0.05910655, -0.03471239, 0.038836576, 0.029178947, 0.032452088, 0.05262814, -0.052546337, 0.014590871, -0.05563155, 0.03487352, 0.0658056, 0.000556795, 0.024449775, 0.028752388, 0.026580622, 0.009270829, 0.03620738, 0.025351867, -0.012502037, -0.008547345, -0.025693225, 0.09650106, 0.008088248, -0.036017876, -0.039897796, 0.013764636, -0.05858593, 0.07215059, 0.018740777, -0.032511555, -0.016724586, 0.03842679, 0.010076472, 0.014239001, 0.0046890406, 0.006465405, -0.0021143, -0.020741725, 0.0147280395, -0.023590297, -0.049140442, -0.016271781, 0.04417995, -0.00062260026, -0.019153653, -0.013558437, -0.009287395, -0.01777429, -0.08977186, 0.004434351, 0.018595241, -0.016023956, 0.04021462, -0.017861005, 0.025940975, -0.056366738, 0.028652437, 0.037646968, -0.011957155, 0.03875825, -0.025037425, 0.010838306, -0.100361794, 0.011293053, 0.06289554, -0.039838083 ] }, { "values": [ -0.015441253, -0.031250738, -0.040298086, -0.040692545, 0.012743938, 0.019088363, -0.003630662, 0.022909813, -0.0020935105, 0.060805418, -0.0037047383, 0.028618678, -0.004132172, -0.006864213, -0.028291607, -0.040586166, 0.0034676597, -0.022168824, -0.079553805, -0.09053091, 0.008322927, 0.0056015295, -0.0017801288, -0.06258479, -0.015284845, 0.0075709643, 0.054704014, -0.016078383, 0.03148685, -0.04107544, 0.001163578, 0.034147747, -0.009177984, -0.008930128, 0.04224414, 0.047941994, -0.079620175, -0.005350788, 0.039464835, -0.02620935, -0.04723285, 0.05131743, -0.010605734, 0.0040794383, -0.048892114, 0.048198998, 0.03541423, 0.00743152, -0.03948199, 0.068762414, -0.0020107417, -0.003925772, 0.026523808, 0.013196319, 0.024458356, -0.032074932, -0.05978501, -0.053780846, 0.046292987, -0.027003424, 0.0010568015, -0.021805571, 0.017135851, -0.035412785, 0.011526912, -0.041813508, -0.02653058, -0.024164815, -0.008627413, 0.028518029, -0.04629709, 0.027541202, -0.047503352, 0.0018692664, -0.011764901, 0.004388042, 0.017707782, 0.0142358765, -0.053543072, 0.013418947, -0.011288355, 0.007709958, 0.084815755, 0.007429168, 0.02448309, -0.013052387, 0.025593115, -0.05144324, -0.0015407905, 0.040566634, 0.076726325, -0.035181224, -0.024138816, 0.03338909, 0.03254402, -0.003364352, -0.023047213, -0.084464766, 0.02131746, 0.082450554, 0.010413902, -0.0052281725, -0.0036002868, -0.018879108, 0.0113381725, -0.012279026, 0.006034212, -0.052966792, -0.067243494, 0.0051163486, -0.011963495, -0.04517417, -0.0020797884, -0.004027832, -0.019725416, -0.030585866, -0.017343756, 0.010498128, -0.013440581, -0.0262889, 0.037564237, -0.017834641, -0.024370586, 0.05649156, 0.017053658, 0.0035237928, 0.028400233, 0.01428803, -0.022512237, -0.048905693, 0.091119245, -0.10271917, 0.004039209, -0.012341851, -0.03813541, -0.031981453, 0.050414644, 0.059420068, 0.020763757, -0.0061430167, 0.008753391, 0.004112314, -0.007738559, 0.03374833, 0.0021177344, -0.0430519, -0.0017520211, -0.024470203, -0.0070974063, 0.019368928, -0.08434072, -0.0168405, 0.049381647, -0.011745168, -0.01905229, -0.004003455, 0.056800537, -0.032258082, 0.07359509, -0.056008026, -0.0023064266, -0.00079851085, 0.009778182, 0.014691387, -0.048869688, 0.0005809075, 0.036509167, -0.09998219, 0.005646096, -0.040683642, 0.010615143, -0.03123673, -0.034251302, -0.08954945, 0.0038750987, -0.023845505, -0.007449306, 0.05437125, -0.022250142, 0.0040182183, 0.060715403, 0.035360537, -0.025080686, -0.055219736, -0.029006854, -0.022665704, -0.01501364, 0.091629624, 0.011164404, 0.029538492, -0.020340843, -0.010173639, 0.029232416, 0.05655523, 0.017037258, 0.033494044, 0.057079323, 0.0056500747, -0.010276901, -0.06741584, 0.057369146, -0.02304235, -0.01937729, 0.038598713, -0.051053602, -0.0047216625, -0.044477355, -0.020598287, 0.028989555, 0.004114878, -0.025287604, -0.013646861, 0.010022167, -0.069886714, 0.007014416, 0.010465087, 0.07509267, 0.10332486, 0.026449947, -0.02005625, -0.036778152, -0.007846665, 0.019931696, 0.033185203, 0.008694124, -0.043553438, -0.014955724, -0.062087752, -0.014668027, 0.005386694, -0.014121111, 0.0038287824, 0.007111476, 0.0097959535, -0.013068172, 0.018747207, -0.019589527, 0.01872146, 0.023236608, 0.041301243, 0.008896662, 0.005591551, 0.024040112, 0.02808448, 0.012906223, 0.06194499, 0.06907041, 0.11013816, -0.004894379, -0.04732114, -0.046381313, -0.017766887, -0.09068466, 0.010147703, -0.06486302, -0.040653247, 0.043676827, -0.055515826, -0.03524536, -0.0378432, 0.0046271943, -0.020675473, -0.018021556, -0.04834404, -0.03390647, -0.063948184, -0.030157087, -0.01154912, 0.0729807, 0.026495967, 4.5597026e-05, -0.00049534347, -0.04258996, -0.07322349, 0.03321574, 0.023322156, -0.05272353, 0.015841272, -0.031711064, -0.04997929, 0.07493793, -0.0039719897, -0.01688902, -0.02570921, 0.020219093, -0.029167334, -0.001985289, 0.016406795, -0.07163547, -0.06877897, 0.06379369, 0.061449733, 0.043357402, 0.0054157036, 0.019202473, -0.006843033, 0.03380483, -0.0011394417, -0.018011346, -0.004839449, 0.03151432, 0.06403875, -0.040005933, 0.0068966006, -0.04234356, 0.059707183, -0.01933506, -0.0016096977, -0.018491756, 0.0022708476, 0.013845649, 0.061963208, -0.04046392, -0.013464085, 0.010553879, 0.013253305, -0.107118234, 0.0005373229, -0.04173352, -0.007369577, 0.02916764, 0.020458343, -0.024374966, -0.007286824, 0.061069347, -0.005544441, -0.035564244, -0.005017719, -0.010038631, -0.0044925385, 0.03933326, 0.050207242, -0.0006933437, -0.010760453, 0.015205001, -0.015206931, -0.020762214, -0.02869755, 0.076415084, 0.02405113, 0.026458856, 0.023598664, 0.07624643, 0.04300948, -0.029296234, -0.050991487, 0.02844319, -0.020927217, 0.06598805, -0.03804032, -0.08496151, 0.05796504, 0.013137922, 0.0105910925, 0.065070525, 0.015244701, 0.0069299233, 0.017080745, 0.029855557, -0.032021966, 0.008000201, 0.0339273, -0.008139846, -0.00647684, 0.0051868823, -0.014207399, 0.06041402, -0.0020215577, 0.0027045847, -0.051221322, 0.0039674477, 0.02832556, 0.0153283095, -0.0009639674, -0.010032562, -0.071218334, -0.01750742, 0.006652814, -0.0054342547, -0.02842558, -0.056402326, -0.034393344, 0.010093589, -0.03275596, -0.033579092, 0.050795447, -0.023865893, -0.020503143, 0.005090818, -0.0021108787, -0.037043665, 0.049799882, 0.011304019, -0.014023411, -0.014435909, 0.062424324, -0.011456759, -0.011573098, 0.026101455, -0.01152843, -0.01698797, 0.012381449, 0.012858393, -0.028711911, -0.0028587761, 0.0099685015, 0.060671575, -0.01956824, 0.029453425, -0.016380921, 0.059331007, -0.013350225, 0.04450308, -0.016430845, -0.027033716, 0.0015134965, 0.030575212, -0.004186749, -0.055063047, -0.0119071705, 0.0041318056, 0.017624054, 0.012951805, 0.03566662, -0.0022255038, -0.053582225, 0.016210778, -0.0009370677, 0.06894626, 0.005595916, 0.02514959, 0.02750097, -0.050652396, 0.045220062, 0.037598673, -0.0107498905, 0.014672177, 0.035665248, -0.008222433, 0.0017297799, 0.038631, 0.02164423, 0.023501541, 0.0320899, -0.013625288, 0.034585714, 0.037010718, -0.052299738, -0.031110983, -0.0844774, -0.0017130915, 0.011378489, -0.01907674, -0.028952278, 0.025705911, -0.0018527157, 0.02798126, 0.032545015, -0.04112562, 0.031522386, -0.063081816, -0.020396873, 0.055166796, 0.042195324, 0.020832563, -0.04146729, -0.040120892, 0.05471794, 0.045517355, 0.06018091, 0.029081028, -0.018095993, 0.025021171, -0.015875695, 0.03260373, 0.06856805, 0.031539902, 0.02262816, 0.030787742, 0.008944566, -0.019549485, 0.02627697, 0.028126948, 0.023934936, 0.052994277, -0.07000257, -0.009579984, 0.014706455, 0.031916842, 0.018625382, 0.020795843, 0.047966387, -0.014650475, 0.014446448, -0.035346117, -0.0110908495, 0.048064947, -0.02917708, -0.008344877, -0.024137096, 0.04953486, 0.018755982, -0.017765304, -0.010106887, 0.023082314, 0.010381821, -0.032837693, -0.038809735, 0.02346514, -0.011882611, -0.0227241, -0.009432387, 0.046448547, 0.0229985, -0.043355726, 0.08748907, -0.0704557, 0.00763452, -0.014974946, 0.067794055, -0.018175121, -0.031684875, 0.028494105, -0.068611115, -0.104971796, -0.005057229, -0.016085962, 0.031377308, 0.036661606, -0.004344558, 0.0029232998, 0.028700532, 0.0070145614, 0.002398903, -0.0025361406, 0.019813346, 0.015871461, -0.008757901, -0.01395958, 0.06267946, 0.043110173, 0.018481059, 0.075392485, 0.03761632, 0.048744805, 0.0059491596, 0.005913927, -0.01222956, 0.016567826, 0.06658672, -0.0077615576, -0.07669202, 0.04404732, -0.019312024, -0.009051787, -0.047345903, -0.026684452, -0.044307783, -0.07322766, 0.040025853, 0.060370255, -0.005296706, 0.019409627, -0.025792496, -0.03766364, -0.036486756, -0.041858934, 0.04694728, -0.049268063, -0.034426734, 0.011196088, -0.0179504, -0.023626938, -0.053472873, 0.016191587, -0.0015522916, 0.0020138505, -0.001821429, 0.044162776, -9.330311e-06, 0.042744428, 0.05318551, 0.06658852, -0.032780837, -0.008623832, 0.006192873, 0.032142203, -0.048105333, -0.006369195, 0.030439615, 0.021979783, 0.015704826, -0.009559913, -0.008406002, 0.055352297, 0.001747433, -0.0017058738, -0.060911745, 0.00955589, 0.006529348, -0.030088173, -0.018192988, 0.015771657, 0.020269804, 0.005514208, 0.015422782, -0.004765865, -0.02816208, 0.034576125, 0.009754546, -0.039882425, 0.017618256, 0.020327289, 0.013269946, -0.056394987, 0.035874806, -0.026829083, -0.036193583, 0.048376184, -0.018887725, -0.00698788, 0.026020259, -0.030764652, 0.009882775, -0.05264845, -0.010683549, -0.01858862, 0.046751708, -0.018624397, 0.03146501, -0.033954985, -0.0005067678, 0.06484311, -0.05390691, -0.0227548, 0.03748628, 0.004274243, -0.011634831, -0.003709284, -0.058992084, 0.019974738, 0.011609245, 0.012866182, 0.027863655, -0.0717364, 0.048229635, 0.0044195936, 0.057615377, -0.001946199, 0.036716938, -0.003980191, -0.019773649, -0.045359615, -0.011647155, -0.038390394, -0.05395888, -0.01077823, -0.02781769, 0.023489604, 0.02761227, -0.04223134, -0.020266397, 0.034481164, 0.060706962, -0.009951896, -0.01206838, -0.03666235, -0.0037808437, -0.040287778, -0.047599122, 0.00831993, 0.026281327, 0.02227735, 0.034697473, -0.05077756, 0.031090835, 0.01850479, -0.024679689, -0.06570876, -0.0058036386, 0.018618407, -0.05386074, -0.0015550159, -0.02349886, 0.011753995, -0.018256351, 0.026798947, -0.051508162, 0.035829194, 0.0012301959, 0.019665908, -0.054340675, 0.0012556681, -0.003309626, 0.01733032, 0.07733372, -0.040069185, 0.0075979605, -0.0691665, 0.0039888103, -0.023621991, -0.040407117, -0.036294516, -0.014655603, 0.031787105, 0.022674127, 0.017736403, 0.035612002, -0.045549676, 0.024770701, -0.053471487, 0.025237273, 0.045848362, -0.008949712, 0.017891364, 0.015624371, 0.016699053, 0.016447742, 0.03807092, 0.038018644, -0.0005196159, -0.010361216, -0.029637303, 0.06897827, 0.008483317, -0.014057798, -0.05564254, 0.021612646, -0.064458095, 0.057672963, 0.01941408, -0.006287374, -0.023655698, 0.046396997, 0.0140710175, 0.021912334, -0.013503816, 0.008349987, 0.00829246, -0.009713465, 0.03006744, -0.010100285, -0.025707176, -0.02270593, 0.046430197, -0.006637376, -0.01954461, -0.023866503, 0.0034959603, 0.009723663, -0.09408083, 0.050657235, 0.013033438, -0.032761008, 0.059789833, -0.026637655, 0.017627263, -0.029690264, 0.024861798, 0.029067788, 0.010503546, 0.044454087, -0.02453995, 0.02429868, -0.099013425, -0.0030627295, 0.067012325, -0.0403956 ] }, { "values": [ -0.01640813, -0.01782176, -0.034569032, -0.047662437, 0.0019264456, 0.017297206, -0.019470079, 0.033813473, -0.0061875675, 0.0581379, -0.0017726596, 0.0053958497, 0.016638186, 0.017936453, -0.014263203, -0.04096545, -0.009230445, -0.03461019, -0.094407216, -0.08266407, 0.013587786, 0.01762082, -0.022212008, -0.06185169, -0.012469437, 0.0021944041, 0.037048627, -0.018666439, 0.028621351, -0.019517587, 0.0038201052, 0.020340227, -0.018301593, -0.002517715, 0.0009569845, 0.057017386, -0.07893676, -0.0012360548, 0.047231592, -0.04117052, -0.041556235, 0.022213882, -0.0077683367, 0.013993472, -0.038155247, 0.050110754, 0.036191072, 0.006238115, -0.030533949, 0.040479627, -0.0013049103, 0.008784524, 0.016287426, 0.0048650485, -0.00833335, -0.036511037, -0.05273115, -0.019879762, 0.051776584, -0.007939294, -0.010290721, -0.021671912, 0.005775257, -0.036904376, 0.008349743, -0.01912347, -0.031685717, -0.018034829, -0.015097465, 0.035002306, -0.076782264, 0.016447295, -0.061322596, 0.0013328874, -0.008739609, -0.0051436215, 0.04208328, 0.004415679, -0.028406944, 0.022761876, 0.0075908327, 0.018854406, 0.07928655, 0.022671195, 0.021555314, -0.010619805, 0.03730069, -0.02438322, -0.015395678, 0.029765898, 0.06545745, -0.032987535, -0.032720428, 0.011389292, 0.046465464, 0.005570848, -0.021226836, -0.08268367, 0.030063646, 0.066011384, -0.014483901, -9.044695e-05, -0.004956534, -0.024997747, 0.010875962, 0.004085793, 0.0024860892, -0.037115026, -0.069997214, -0.005650459, -0.014852849, -0.04867853, 0.007573839, 0.012544884, -0.038154595, -0.03781212, -0.016288532, 0.0034061715, -0.011509708, -0.02638789, 0.01576551, -0.022074312, -0.013747533, 0.077481255, 0.018662112, -0.001565236, 0.018773714, 0.04153518, -0.033198386, -0.00911392, 0.09514513, -0.10693546, 0.0371909, -0.022039142, -0.039478112, -0.0048875366, 0.090339966, 0.04984439, 0.0070341784, -0.0051352154, -0.0012119241, -0.010684844, -0.027577242, 0.044825017, 0.0070663225, -0.017460924, -0.007967273, -0.03669047, -0.0020259726, 0.03562141, -0.06984438, -0.04497459, 0.052014258, -0.012567055, -0.03663438, 0.0075653484, 0.050408263, -0.024965534, 0.06928569, -0.08440659, 0.015079216, -0.015173787, 0.0012076395, 0.03400791, -0.049027916, 0.023670787, 0.048340928, -0.0837623, -0.011225576, -0.05300834, -0.006486733, -0.050259624, -0.051812824, -0.066489995, -0.024836272, -0.018151786, -0.013844756, 0.024452655, -0.03120511, 0.008123598, 0.063784406, 0.0688341, -0.031262897, -0.03601314, -0.023200106, -0.022762978, 0.0003045305, 0.07527596, 0.01619867, 0.032315228, -0.024735827, 0.002334283, 0.024128402, 0.064543106, 0.0046044737, 0.04115602, 0.06351231, -0.0036954363, -0.026693549, -0.059590895, 0.031462632, -0.0012095694, -0.021703482, 0.040667016, -0.04686304, 0.0086863255, -0.044972688, -0.02558558, 0.058773775, -0.019482989, -0.032890216, 0.0041269315, 0.0052249283, -0.068613015, -0.01158945, 0.012424806, 0.08774807, 0.089594424, 0.050811835, -0.036955938, -0.051014025, -0.012930589, 0.018784244, 0.030958468, 0.013678833, -0.024045669, -0.0039667496, -0.04262292, -0.025676824, -0.025704075, 0.0074879257, 0.018593043, 0.006001694, 0.017420422, -0.007104196, 0.034389738, 0.0044603287, 0.02424349, 0.0081727095, 0.051631004, 0.027868802, -0.0027746193, 0.0055136685, 0.024666235, 0.022240365, 0.053935003, 0.06276137, 0.07223987, 0.016341256, -0.049764726, -0.035480887, -0.02966485, -0.0825139, 0.011362003, -0.05396982, -0.02413077, 0.04541635, -0.056504205, -0.02927466, -0.0133841885, 0.007964989, -0.015958091, -0.009193767, -0.03265986, -0.026390048, -0.034146283, -0.021275768, -0.01400377, 0.038604572, 0.0062472275, 0.0029786548, 0.006412107, -0.06902715, -0.050597955, 0.026633874, 0.022680063, -0.03357892, 0.007661784, -0.040224943, -0.043142363, 0.0793456, 0.00091013353, 0.0011907206, -0.025990011, 0.004938679, -0.023430422, -0.023099737, 0.045317065, -0.05893742, -0.063037336, 0.04809586, 0.05910625, 0.034918483, -0.009409517, 0.02810616, -0.010311047, 0.034973256, -0.0011337064, -0.04304073, 0.016943917, 0.021559764, 0.06484674, -0.039732635, 0.0139594395, -0.03607739, 0.06954888, -0.022687035, 0.019189723, -0.01630545, -0.012474152, 0.0034307532, 0.055276368, -0.05889177, -0.024276163, 0.003329668, 0.0032936817, -0.12048216, -0.014720446, -0.03466372, -0.023274828, 0.0035125252, 0.008108117, -0.015528439, 0.0068100793, 0.041195735, -0.009012981, -0.02590519, 0.012290802, -0.013960937, 0.005841274, 0.02827368, 0.036533114, 0.006142191, -0.0013225442, 0.026969543, -0.0009433404, -0.023695575, -0.030875295, 0.06175466, 0.0077930433, 0.04705043, 0.017600745, 0.0707908, 0.052110024, -0.010196194, -0.0659405, 0.04145472, -0.0382324, 0.04764055, -0.059416518, -0.05990144, 0.061887596, -0.00518144, -0.007955543, 0.04965752, 0.011550216, -0.018044688, 0.014897019, 0.025074407, -0.0072362097, 0.014744904, 0.04005723, -0.014296516, -0.004054447, 0.02182786, -0.0052769105, 0.053582363, 0.0034415065, -0.0037118418, -0.039796595, 0.02046124, 0.027589334, 0.019535406, 0.008412923, 0.00048554465, -0.03427135, -0.007927415, 0.015619289, 0.007693268, -0.040819474, -0.044311523, -0.038960826, -0.0049780505, -0.031226242, -0.037179332, 0.04751703, -0.026777375, -0.00710618, 0.0008794907, 0.0060190326, -0.030829843, 0.06832747, 0.011088541, -0.009646695, -0.021484427, 0.08322584, -0.007063495, -0.009289197, 0.020296538, 0.0066916067, -0.016798148, -0.0025144855, 0.032125622, -0.041753188, -0.0065779556, -0.0030812784, 0.06464041, -0.022644486, 0.039810624, -0.032190714, 0.07156531, -0.015697509, 0.044045657, -0.0056808153, -0.037610877, 0.014337336, 0.039179504, -0.020545054, -0.06307408, -0.0017436852, -0.00050248276, 0.020885, -0.004903565, 0.026921352, 0.009930633, -0.04696164, 0.0006037655, -0.00782678, 0.07254414, 0.020642037, 0.027146883, 0.017649615, -0.050968494, 0.040392593, 0.033945784, -0.018836768, 0.012556316, 0.039539535, -0.013360531, 0.019582406, 0.030478267, 0.03067571, 0.0064425506, 0.0413705, -7.5946064e-06, 0.014975611, 0.0315146, -0.060128283, -0.046145122, -0.080868386, -0.022477167, 0.0025738329, -0.0010131516, -0.010425726, 0.02437697, 0.013114914, 0.02400596, 0.038380712, -0.037264485, 0.043882366, -0.080600955, -0.01588551, 0.039478645, 0.043621983, 0.00091759063, -0.041286934, -0.035830084, 0.03862033, 0.039675776, 0.0821445, 0.03843357, -0.02687255, 0.03282139, -0.031081315, 0.022176707, 0.061254494, 0.0319417, 0.043711293, 0.026645858, 0.015602046, -0.02484725, 0.013136969, 0.029013922, 0.02590709, 0.062090646, -0.08155587, 0.0018964774, 0.045249008, 0.048314415, 0.023552982, 0.052070033, 0.06596262, -0.0018732953, 0.0117290765, -0.03845209, -0.010139904, 0.048316583, -0.021974852, -0.0057512643, -0.00031131963, 0.058546085, 0.014727896, -0.022513207, -0.042400606, 0.022600949, 0.040013902, -0.034532785, -0.04689533, 0.009261118, -0.014824463, -0.015771005, -4.5535366e-05, 0.035651565, 0.0065374146, -0.04119227, 0.07084037, -0.08255406, -0.00010770115, 0.004103954, 0.061448995, 0.016146323, -0.02618806, 0.012455067, -0.04746601, -0.089729756, 0.005056585, -0.0026190092, 0.03197785, 0.05547681, -0.0006530833, -0.018107668, 0.008162556, -0.00014122193, 0.0057769283, 0.008883178, 0.027607674, 0.019362817, 0.0054026684, -0.021243397, 0.059870224, 0.039496373, 0.039617423, 0.07179771, 0.035018433, 0.06125, 0.010025669, 0.004014416, -0.00518884, 0.007123735, 0.062041394, -0.011317654, -0.058393825, 0.049270682, -0.008504698, -0.00034970423, -0.054926686, -0.03378519, -0.04431166, -0.07028913, 0.028580314, 0.05484118, -0.012267723, 0.019441886, -0.048263323, -0.005598467, -0.03357962, -0.04284594, 0.024031105, -0.02860001, -0.030862745, 0.0071833245, 0.0023023773, -0.028108694, -0.028633786, 0.0073458757, 0.002691878, 0.004591763, 0.0037061514, 0.03867443, -0.007446198, 0.03550316, 0.046650928, 0.07351026, -0.011068361, 0.009504701, 0.002208814, 0.026347797, -0.03732107, -0.018550524, 0.023195198, 0.023449983, 0.021844463, -0.0025487763, -0.011302734, 0.070385285, -0.030374348, -0.0013460546, -0.06787456, 0.025614707, 0.001725973, -0.036612347, 0.0033472877, 0.026080988, 0.03740807, -0.0114382105, 0.008211074, -0.0061974763, -0.029294118, 0.024417453, -0.0049100183, -0.04002569, 0.019479915, 0.0028770631, 0.032181293, -0.051611926, 0.018744254, -0.023755452, -0.031085266, 0.04759838, -0.012460453, -0.022783192, 0.019979242, -0.051624574, 0.026220892, -0.077385075, 0.012247906, -0.01711268, 0.034907505, -0.023273103, 0.0056001153, -0.049794517, 0.012348831, 0.0506589, -0.04321339, -0.01841815, 0.0429898, 0.0051471703, -0.029654184, -0.04156201, -0.05335902, 0.015608727, -0.0037962582, 0.020299258, 0.009098298, -0.07559995, 0.050963905, 0.015836852, 0.063766986, 0.010764123, 0.05724439, 0.018088609, 0.027491795, -0.03242961, -0.0065298313, -0.056206945, -0.03942446, -0.012455391, -0.00756548, 0.024897065, 0.010847663, -0.050679214, -0.021533206, 0.03311397, 0.05223248, -0.0354305, 0.008537127, -0.022644375, -0.014336034, -0.043818217, -0.02315092, 0.028983125, 0.021392494, -0.0042287884, 0.04580207, -0.027505316, 0.0268708, 0.014666809, -0.012228752, -0.063807435, 0.009875312, 0.024157332, -0.05412628, 0.022549137, -0.03440587, 0.010685687, -0.014065214, 0.035153516, -0.039824106, 0.049088635, -0.006950944, 0.005635123, -0.07984105, 0.010955574, 0.010866312, 0.03497945, 0.07681753, -0.046219833, -0.017799594, -0.06417997, 0.020021068, -0.034447446, -0.04172235, -0.03376939, -0.05389541, 0.019830465, -0.0062016323, 0.03747157, 0.033198874, -0.047706295, 0.025291882, -0.035553988, 0.043173183, 0.06102111, -0.00987125, 0.020247597, 0.020816721, 0.023122055, 0.014895339, 0.00928083, 0.021375442, -0.008234191, -0.011840118, -0.033004265, 0.088748656, 0.028552506, -0.041505087, -0.03347101, 0.03117588, -0.049647164, 0.05286632, 0.004186556, -0.005760735, -0.023343848, 0.04580297, 0.01624499, 0.03729651, -0.007862495, -0.009934617, -0.01251701, -0.021482188, 0.030376643, 0.009666854, -0.0558876, -0.031900365, 0.05717926, -0.0066366727, -0.022397919, -0.008830515, -0.015551993, -0.02172816, -0.074807055, 0.043861195, 0.039938897, -0.019946078, 0.05455128, -0.011368638, 0.041203838, -0.025583662, 0.03830844, 0.023158036, 0.012056085, 0.027567172, -0.019300655, 0.013789257, -0.11041607, -0.002178678, 0.07881766, -0.044127554 ] }, { "values": [ 0.0030635064, -0.03557211, -0.030105256, -0.05906282, 0.02435636, -0.020367403, -0.009688264, 0.00526553, 0.0075902753, 0.060725644, -0.0024718642, 0.038058504, -0.0021554981, 0.025017418, -0.03904081, -0.015460289, 0.020550104, -0.03750115, -0.04283154, -0.07439637, -0.007709119, 0.023549952, -0.0014741018, -0.057092577, 0.0039146617, 0.028964192, 0.050195187, -0.06876464, -0.0048074503, -0.017487984, 0.0074829445, 0.01672824, -0.03947763, 0.0008017486, 0.0332608, 0.03466512, -0.039365735, 0.009803944, 0.026800875, -0.00395765, -0.037476026, 0.0036364198, 0.0009647808, 0.0051846732, -0.047210462, 0.018255062, -0.006405294, -0.016982717, -0.04130975, 0.050375175, 0.011644705, 0.013704084, 0.016943648, 0.06388062, 0.014247414, -0.002488223, -0.03386472, -0.03788796, 0.08789187, -0.0056920797, 0.005155777, 0.0022454448, 0.012914108, -0.01624418, 0.017124714, -0.03607784, -0.009451028, -0.03694386, -0.034274805, -0.006239313, -0.06814152, 0.007381828, -0.026444718, -0.018165177, -0.00871236, -0.0322006, 0.017332155, 0.024894433, 0.0018894135, 0.019861491, 0.018845737, 0.0028541603, 0.106534, 0.038160246, 0.018010978, -0.0037918482, 0.004582649, -0.026528547, -0.003876974, 0.0029838632, 0.07719938, -0.052885376, -0.06368366, -0.016717527, 0.0072111883, -0.033620704, -0.047474276, -0.082434565, -0.012216466, 0.08133626, 0.007919152, -0.0016228345, -0.0554144, -0.019282047, 0.043699145, 0.0253201, 0.029533453, -0.04481233, -0.017739682, 0.038841106, -0.02703182, -0.07570221, -0.04676589, 0.04340925, -0.02258274, -0.041814025, -0.025399622, -0.002896089, -0.0047152103, 0.0043398333, 0.0070795305, -0.03884885, -0.0123825325, 0.06787673, -0.0047763702, 0.0115778865, 0.062956765, -0.012879965, -0.035249032, -0.05009626, 0.10116451, -0.09037774, -0.016589094, 0.011162433, -0.049223278, -0.017047862, 0.044040907, 0.019945053, -0.02677611, 0.011547305, 0.0126094045, -0.027211472, -0.018135738, 0.009528317, 0.01895655, -0.013134941, 0.0017660379, -0.0014813473, -0.013707282, 0.04096285, -0.0751497, -0.062913045, 0.03304449, -0.012551224, -0.011748634, 0.02319746, 0.086515516, -0.01996571, 0.057339076, -0.06165436, 0.045193583, -0.027508916, 0.004621348, 0.032136537, -0.026891971, -0.00071176037, 0.060562015, -0.075046286, -0.0246092, -0.035062496, 0.008049662, -0.014834071, -0.01432789, -0.086938664, 0.0009617419, 0.009172234, -0.038605276, 0.019871976, -0.030540692, -0.006466791, 0.055254675, 0.032072533, -0.045220703, -0.053777136, -0.03883817, -0.040540412, -0.034119565, 0.070049554, -0.018285412, 0.029586397, -0.054648157, -0.02771546, 0.056389518, 0.05509915, 0.019013122, 0.057575744, 0.06632723, -0.0031050679, -0.009714262, -0.033446662, 0.04295911, 0.012831714, -0.040602412, 0.018799406, -0.053765632, 0.0078062257, -0.057157252, -0.030296, 0.06149488, -0.0014679228, 0.006943472, 0.023878867, -0.020535825, -0.083560005, -0.013166278, 0.0017855847, 0.057883516, 0.051309247, 0.030749159, -0.031701468, -0.04135538, -0.04887855, 0.016912183, -0.0023616846, 0.020375656, 0.008081121, -0.012226825, -0.044099234, -0.01791992, -0.013419692, -0.015946764, 0.036655508, -0.012081917, 0.017082289, 0.017875923, 0.04291522, 0.013595587, 0.009671669, 0.010048926, 0.041193686, -0.007858253, -0.006248708, 0.029486567, 0.0037275606, 0.019108789, 0.037322536, 0.06796254, 0.07845604, -0.029245026, -0.005406913, -0.029572375, -0.024492733, -0.08872664, 0.0091451565, -0.045408923, -0.033604883, 0.06705542, -0.071247496, -0.0108347265, -0.004699217, -0.008977684, -0.017946158, -0.009673344, -0.053569358, -0.024221413, -0.08832332, -0.028082935, -0.02078888, 0.05920348, 0.026924618, -0.008668213, 0.03025092, -0.07653289, -0.03723169, 0.034815595, 0.027172793, -0.023960605, 0.042778067, -0.06384802, -0.065091595, 0.06686576, 0.013807142, -0.02334939, -0.02325947, -0.0003637988, -0.03483781, -0.003927941, 0.044043716, -0.043799885, -0.059642375, 0.055393133, 0.035149503, 0.040386513, 0.009366756, 0.04832685, -0.015500186, 0.017161556, -0.022007715, 0.011237967, -0.007325254, -0.015413889, 0.07089563, -0.007867114, 0.03516573, -0.03222814, 0.04479495, -0.0067843976, 0.0033405956, -0.011537927, -0.025069177, 0.0077253557, 0.036174677, -0.031084811, -0.023505678, -0.007972112, 0.026594577, -0.08901606, 0.0021928728, -0.04964611, -0.02177408, 0.011173468, 0.03195588, -0.017195705, 0.012212472, 0.028696416, 0.015226343, -0.026369167, -0.034222968, 0.008875759, -0.021052262, 0.033035833, 0.031976484, 0.0039986093, -0.0024648195, -0.0067104753, -0.0039063804, -0.028015044, -0.019830242, 0.05226228, 0.013164808, 0.022709124, 0.023522198, 0.03516291, 0.009080552, 0.017004147, -0.048763957, 0.013848489, -0.009404026, 0.029463036, -0.031204276, -0.0509651, 0.016397495, -0.020314557, -0.010371427, 0.058462, 0.06548731, 0.0046314276, 0.054997582, 0.022008954, 0.0008068116, -0.016022006, 0.024455046, -0.01711913, 0.0071906326, -0.0019456906, -0.009751924, 0.03675388, 0.01639389, -0.02042042, -0.043877035, 0.031693965, 0.04179897, 0.06291242, 0.009896298, 0.005584942, -0.050939295, -0.008017728, 0.033317532, -0.030095192, -0.02140948, -0.05722441, -0.067635834, -0.008507578, -0.037387647, -0.03972469, 0.061646674, -0.030567925, -0.02259203, 0.017584587, -0.0048655397, -0.044212054, 0.016518984, -0.00064531295, -0.018645387, 0.016059946, 0.051354494, -0.03365496, -0.02176906, -0.006260756, -0.03488347, -0.01235388, -0.011221557, 0.030629806, -0.024604887, -0.008076765, -0.021196632, 0.05815071, 0.0107126, 0.038246933, -0.06368536, 0.03953589, -0.020684125, 0.04161095, 0.012204255, -0.01281599, 0.03979589, 0.023851365, -0.025063979, -0.027438207, 0.008149416, 0.013393398, 0.0140949525, -0.03645162, 0.016515462, 0.031658594, -0.06130933, 0.011299975, -0.017597599, 0.044997755, 0.017391501, 0.01926141, 0.005925581, -0.027204504, 0.021326998, -0.013992117, 0.027476072, 0.031618603, 0.043377463, 0.020281881, -0.0028674877, 0.0343285, 0.036115248, 0.022808563, 0.058011685, -0.026642669, 0.027221387, 0.025962455, -0.07394239, -0.046479728, -0.059005726, 0.024297858, 0.032830272, -0.006256325, -0.042767618, 0.03764168, 0.0075671994, 0.02189416, 0.041048445, -0.027535127, 0.0029000877, -0.03466751, -0.02806782, 0.019897737, 0.04549884, 0.0053655165, -0.0033551448, -0.026373496, 0.04782642, 0.04818562, 0.060337413, 0.034445874, -0.039624345, 0.040659685, 0.0040687253, 0.0069824583, 0.01897351, -0.002051891, 0.013552224, 0.045839354, 0.028062237, -0.016330652, -0.0030268528, -0.0037233832, 0.034720924, 0.03853323, -0.083822824, -0.0332768, 0.020706948, 0.034918603, 0.021655148, 0.006071293, 0.056008663, 0.0075532217, 0.022465544, -0.03823434, -0.042719107, 0.07877078, -0.028428381, -0.007822032, -0.054857343, 0.092938714, 0.02416762, -0.014424856, -0.0067679696, -0.0032521759, 0.01896858, -0.054843355, -0.019248912, 0.0016621483, 0.0039988565, -0.00090988626, 0.012244325, 0.068165176, -0.03887349, -0.07953213, 0.0762015, -0.05018764, 0.017527735, -0.04887247, 0.056911677, -0.027634198, -0.0072370726, 0.0517441, -0.053279664, -0.07358238, 0.016065916, -0.021672178, 0.05700632, 0.035476804, -0.027243262, -0.0035663773, 0.05066241, 0.04527396, 0.002330833, 0.03246214, 0.01938155, -0.0044894507, 0.024378076, -0.03467844, 0.027301168, 0.009296595, -0.02642154, 0.07559663, 0.04179858, 0.0654125, -0.007931986, 0.04037968, -0.007583052, 0.0032194895, 0.08075119, -0.011695246, -0.06922282, 0.05756495, -0.022674587, -0.012973252, -0.038296454, -0.022023425, -0.06337775, -0.048070997, 0.030633926, 0.037185162, -0.01084894, 0.020037377, -0.012857753, -0.009655326, -0.022973174, -0.05216258, 0.047460217, -0.0112817995, -0.04052755, -0.008157995, -0.018258782, -0.032761324, -0.025216479, 0.013710688, -0.013001669, -0.032799598, 0.021937879, 0.045415837, 0.0046751285, 0.026244536, 0.012926461, 0.084976055, -0.02178557, -0.05367464, -0.0037507429, 0.019508984, -0.05218643, -0.029042842, 0.005571769, -0.0041278307, -0.03717155, -0.009848529, -0.009884555, 0.051274598, -0.017837077, -0.04880711, -0.037532814, 0.029337583, 0.037127845, -0.037711475, -0.009351956, 0.006167218, 0.004178364, 0.011189237, 0.009808059, -0.01278045, -0.037336748, -0.010273826, 0.0050146882, -0.015613316, 0.03330222, 0.0032399108, 0.007543688, -0.05625687, 0.03506794, -0.024192069, -0.036802083, 0.046589877, -0.035334524, -0.009139372, 0.07520293, 0.0050819353, 0.0075038043, -0.07089922, 0.02042955, -0.031681, 0.05740663, -0.01613893, 0.022471612, -0.06139355, 0.010530992, 0.05683794, -0.045494583, -0.018646548, 0.03769529, 0.037124693, -0.016411321, -0.032927077, -0.03949331, 0.05219073, -0.02755913, -0.001715466, 0.055770367, -0.056168802, 0.06838868, -0.019502549, 0.019271085, -0.0024599042, 0.031462234, -0.006770838, 0.024049686, -0.041324772, -0.01555192, -0.036773227, -0.02998323, -0.035277974, 0.017896337, 0.017880851, 0.0048375176, -0.040964693, -0.054334853, 0.06186254, 0.053641733, -0.024690092, 0.016488478, -0.029562883, 0.00085657125, -0.037702117, -0.037854876, 0.0029322936, 0.051026803, -0.013456513, 0.05654832, -0.029225629, 0.053694256, 0.01278216, -0.0059911273, -0.07286548, 0.026979392, 0.004837662, -0.069078915, 0.028695595, -0.035147514, 0.026843866, -0.02725395, 0.009109226, -0.07193646, 0.026096366, -0.005301244, 0.0106657185, -0.04865296, -0.018193943, 0.029434703, 0.011982961, 0.037060432, -0.043450475, -0.013820948, -0.043473195, 0.027805902, -0.05280912, 0.007394307, -0.06075436, -0.012127312, 0.022017168, 0.036205325, 0.016054519, 0.014469137, -0.059430536, 0.016523179, -0.048074037, 0.01694979, 0.06103447, 0.016647208, 0.02784388, 0.0016635469, 0.007951856, 0.045490827, 0.005150938, -0.004371822, 0.007001684, 0.005738915, -0.038675893, 0.056904927, 0.017809369, 0.0026471156, -0.088818945, 0.027555073, -0.06351007, 0.08532067, 0.041200034, -0.012693639, -0.01648045, 0.047443684, 0.021961097, 0.01933976, -0.060802113, -0.022729225, -0.01698713, -0.035805155, -0.0050424896, -0.016544398, -0.022014473, -0.01884382, 0.010520918, 0.02160955, -0.03526607, 0.0012620086, -0.0039905407, 0.007047874, -0.046042208, 0.026125975, 0.01854801, -0.031916846, 0.03478556, -0.022323491, -0.008130915, -0.018256435, 0.03791758, 0.026399098, 0.016961863, -0.016954884, -0.0054311138, 0.015989402, -0.10555748, 0.033440556, 0.05106986, -0.048993062 ] }, { "values": [ -0.024527721, -0.0053172987, -0.038130026, -0.082370594, 0.03337418, 0.009635434, -0.029413683, 0.020814711, -0.018029451, 0.08298016, -0.0058013117, 0.026186714, 0.04581974, 0.0040362696, -0.009739071, -0.022667814, 0.023468694, -0.018956067, -0.06784901, -0.00981865, 0.01794178, 0.004554903, -0.021220163, -0.07267145, -0.034136876, 0.004369325, 0.06882388, -0.045522027, 0.019833455, -0.03489011, 0.010077436, 0.038426574, -0.06011807, -0.02593915, 0.07363498, 0.04261326, -0.07527061, 0.0035659024, 0.013365962, -0.055557188, -0.061102808, 0.022502888, 0.0036898525, 0.03137989, -0.06960371, 0.017032929, 0.024958283, 0.028506111, -0.054097287, 0.05659671, -0.015282574, 0.014162579, -0.0026668056, 0.029817633, 0.004842534, -0.046933014, -0.08267375, -0.02870276, 0.07678144, -0.009717989, 0.007020464, -0.011589873, 0.0019704874, -0.040785506, -0.0076953033, -0.049967866, -0.023410825, -0.012357147, -0.012816009, -0.0002981925, -0.048914254, 0.034238975, -0.061616372, 0.03130543, 0.0075738286, -0.0294832, 0.03592841, 0.0037347784, -0.005316191, 0.035357993, 0.0054552555, -0.009364122, 0.0661303, 0.027466418, 0.0342251, 0.0047919154, 0.02460044, -0.037562687, -0.019247122, 0.04091911, 0.05088267, -0.033275165, -0.0327986, 0.0191617, 0.029719293, -0.05556854, -0.048006214, -0.06577401, 0.0061846403, 0.07062763, -0.010796964, -0.0004871244, -0.00760801, -0.026854489, 0.03440054, 0.010941583, -0.008024109, -0.05817865, -0.035339195, 0.0051405937, -0.05032334, -0.03774862, -0.035906, 0.025167117, -0.009924821, -0.013501969, -0.028879717, -0.005602404, 0.023284629, -0.040470086, 0.047176998, -0.031308316, -0.039692096, 0.051737614, 0.03538248, -0.008340186, -0.005406105, 0.026134202, -0.05367351, -0.02086541, 0.10962956, -0.095808655, 0.009523684, 0.0054575657, -0.05076998, -0.024792051, 0.06786781, 0.03435053, -0.014197264, 0.018516336, 0.017153088, 0.010206344, -0.045657307, 0.039536178, 0.013393652, -0.009646523, 0.013560648, -0.010927068, -0.0026047975, 0.022776209, -0.052725043, -0.04545786, 0.032507084, -0.0024357801, -0.041194923, 0.03830984, 0.08985821, -0.027250752, 0.054718524, -0.076593734, -0.011503045, -0.012616539, -0.0007485446, -0.0007022828, -0.038655497, 0.038518503, 0.042650294, -0.076131314, -0.0074705314, -0.061375022, -0.01206029, -0.002616312, -0.027472131, -0.084336035, -0.031378686, -0.009149596, -0.030811261, 0.02595923, -0.03901401, 0.0018380737, 0.041103203, 0.04319588, -0.021310173, -0.027249854, -0.0150664, -0.015381079, -0.020531362, 0.05897259, 0.032900482, 0.03711958, -0.06644684, -0.029199086, 0.028794754, 0.04718469, 0.00021792647, 0.07185304, 0.05731583, -0.033530306, -0.008847518, -0.038086507, 0.05267608, -0.010735152, -0.039876234, 0.023999328, -0.028744256, -0.0062402203, -0.0600695, -0.014801854, 0.02530931, -0.013579109, -0.010750059, -0.011092693, 0.03623546, -0.10239176, -0.00753831, 0.020906528, 0.06516979, 0.07211607, 0.033501577, -0.03323504, -0.04252183, -0.025712963, 0.033628445, 0.0025814513, 0.0098200375, -0.0018657297, 0.0055909194, -0.020804716, -0.029534968, 0.007393504, -0.02242847, 0.014359976, 0.01958731, 0.024438899, 0.010218364, 0.025971238, 0.033856384, 0.036383923, -0.0042697466, 0.021569043, 0.02399166, 0.024418268, 0.01695179, -0.021471843, 0.010401545, 0.018138306, 0.08314675, 0.094943486, -0.031918563, -0.02308918, -0.01738431, -0.01647071, -0.08498657, 0.027701367, -0.04169862, -0.027623422, 0.056372922, -0.057652157, -0.028300224, -0.016029214, 0.025176847, -0.0065865107, -0.028513541, -0.033914596, -0.021425826, -0.08170528, -0.027527599, -0.024723353, 0.04414651, 0.0051708464, -0.010975746, -0.0072327326, -0.0870171, -0.03816858, 0.03481019, 0.028475074, -0.039679706, 0.008921512, -0.044710677, -0.046021625, 0.05045964, 0.0099655865, -0.041840233, -0.04281877, 0.008400435, -0.0558668, -0.032655854, 0.031702366, -0.05603604, -0.04979807, 0.06285949, 0.04337353, 0.028274057, -0.022612805, 0.025675321, -0.020278646, 0.016609507, -0.029580228, 0.0055049025, -0.0041910065, 0.0009270559, 0.074081376, -0.028840132, -0.016713396, -0.032870997, 0.020547573, -0.010801668, -0.011422201, 0.0124242725, 0.0025987695, 0.022545783, 0.03137118, -0.042778056, 0.019255277, 0.0068046073, 0.008890146, -0.12176984, 0.0029851035, -0.037461124, 0.0036927392, 0.036884893, 0.0009723981, -0.03402236, -0.023644762, 0.045555416, -0.0056818025, -0.047502626, 0.010332235, -0.015294386, -0.04486476, 0.026157686, 0.03173269, 0.030138167, 0.034742583, 0.009959155, -0.018280327, -0.028624095, -0.013414803, 0.062003653, 0.0029618486, 0.0376627, 0.021015186, 0.07573229, 0.05458506, -0.0015315962, -0.06103015, 0.019000774, -0.006983827, 0.03406252, -0.027056916, -0.049157754, 0.04853621, 0.017348723, 0.0009480256, 0.079677716, 0.015984671, 0.0038770763, 0.025972262, 0.03842561, -0.021252582, 0.0017122829, 0.027625019, -0.01028047, -0.030975148, 0.037368912, 0.0027234233, 0.026740082, 0.00094925606, -0.015099565, -0.062373422, 0.025299093, 0.019255575, 0.01795458, 0.010418288, 0.009073873, -0.050352924, 0.0076624914, 0.017505737, -0.0035851477, -0.026075365, -0.052398693, -0.04784689, -0.000988389, -0.027116196, -0.058550633, 0.04685538, -0.043395493, -0.017486468, 0.024496617, -0.01180331, -0.026473593, 0.044004206, 0.002299529, -0.017014574, -0.013417083, 0.056990776, -0.029383887, -0.025324179, 0.022958277, -0.02757611, -0.024527216, -0.014902142, 0.05626327, -0.017334575, 0.0060385466, -0.004730866, 0.051216785, 0.018339936, 0.031882223, -0.029105091, 0.065843984, 0.018328827, 0.012333706, -0.0038291828, -0.016384088, 0.021192117, 0.04041795, -0.007827112, -0.0022791296, 0.017615253, -0.027515195, 0.02598092, -0.008206926, 0.04545288, 0.011990283, -0.056235764, 0.0016454486, -0.03193323, 0.05585732, 0.010243801, 0.011424982, 0.03252976, -0.039212506, 0.0022267282, 0.015382271, 0.00432792, 0.008570963, 0.027195763, -0.015594015, -0.004376924, 0.035540987, 0.0016517813, 0.03359377, 0.035470862, -0.025364058, 0.032220956, 0.017332988, -0.030667286, -0.07638303, -0.055616934, 0.0077176327, 0.027237037, -0.0028132414, -0.042083852, 0.02030882, 0.015229978, 0.0550415, 0.049208157, -0.02717636, 0.045541, -0.08221404, -0.017696084, 0.040832292, 0.058921184, 0.018230578, -0.028857905, -0.05075214, 0.032941632, 0.015565134, 0.07710968, 0.03862789, -0.053064488, 0.029802177, -0.0063769, 0.03595785, 0.045264132, -0.0029975567, 0.025728978, 0.019954234, 0.028058086, -0.04853743, 0.018912375, 0.011497595, 0.043138646, 0.05431578, -0.086438544, -0.03281179, 0.030517558, 0.060381155, 0.024047077, 0.03385166, 0.051522404, 0.0014122978, 0.028996387, -0.02534681, -0.022680635, 0.03760343, -0.011741924, -0.021852015, -0.0058538, 0.052756708, 0.023603665, -0.0074851457, -0.045345053, 0.027218208, 0.020733695, -0.026811697, -0.042752605, -0.00060223864, 0.0038564764, -0.015228255, 0.014667466, 0.07376798, 0.015330713, -0.03661533, 0.06568065, -0.07847085, -0.0062158867, -0.009620254, 0.041159347, -0.011493597, -0.030244226, 0.01758528, -0.045605462, -0.050835975, 0.005599275, -0.015545701, 0.046939865, 0.041806094, 0.0056767617, -0.021543548, 0.024265233, 0.027928408, -0.0021754373, 0.027351078, 0.028255949, 0.004318497, 0.029580826, -0.023554148, 0.040741593, 0.012143469, 0.012286441, 0.06550723, 0.036192324, 0.046169303, -0.005470057, 0.037414882, 0.0056735994, 0.004967616, 0.070480436, -0.01706835, -0.028074823, 0.038198967, 0.019275403, -0.018201469, -0.052546367, -0.040513624, -0.051524397, -0.08685094, 0.037761375, 0.03667854, 0.004961311, 0.0005531659, -0.036293957, -0.009924162, -0.01966904, -0.028517451, 0.057781745, -0.0023716993, -0.05683435, -0.00033563617, -0.02214333, -0.02984053, -0.030089412, 0.029320294, -0.011218831, -0.03077849, 0.015316619, 0.030211419, 0.00285739, 0.044977307, 0.014948165, 0.07422066, -0.04297771, -0.020308536, -0.016572256, 0.04485172, -0.028780755, -0.004915661, 0.0120236, 0.02020876, -0.0016159646, -0.0073053143, -0.012077728, 0.06859641, -0.03083473, -0.024400923, -0.024621082, 0.025482329, 0.0030212721, -0.042835288, 0.044462778, -0.028642993, 0.017681722, 0.0031529125, -0.026970789, -0.01332186, -0.0153372, 0.024907334, -0.023739625, -0.025432413, 0.037368845, 0.0131421, 0.0024657005, -0.048071582, 0.038177878, -0.03930753, -0.03784351, 0.04975559, -0.008935646, -0.025343088, 0.04905452, -0.043179695, 0.0035132403, -0.050975766, 0.0047253645, -0.055048812, 0.056116235, -0.025998143, -0.0054529426, -0.048244454, 0.0068393643, 0.04171041, -0.063435525, -0.0072803083, 0.027343696, 0.022809442, -0.037393708, -0.00042070218, -0.040781714, 0.046670802, -0.011111343, 0.009406094, 0.025662856, -0.082531676, 0.033059165, 0.0050741066, 0.04137921, 0.004284242, 0.019510387, 0.030844241, -0.0027763178, -0.0278439, -0.023258155, -0.050282504, -0.028621042, -0.027166765, -0.0014816448, 0.025762038, 0.0033762741, -0.012883232, -0.04717602, 0.030558545, 0.054690734, -0.019327015, -0.012044744, -0.012692616, -0.008758078, -0.025746226, -0.04395695, -0.009056746, -0.0068570916, -0.016117152, 0.034042157, -0.047879048, 0.023845052, 0.041757796, -0.004404625, -0.09138717, 0.0016736393, 0.021452934, -0.05134814, 0.02482366, -0.04138923, -0.0042742626, 0.010104386, 0.010338914, -0.053823207, 0.060014207, -0.0010112864, 0.008173714, -0.06645858, 0.0026204344, 0.032269366, 0.01329994, 0.029247645, -0.050952498, 0.013748215, -0.047027312, 0.02162535, -0.04256546, -0.04649856, -0.040664427, -0.042812783, 0.02182449, 0.03248017, 0.032268174, 0.00739186, -0.0445937, 0.025780179, -0.028415648, 0.018339576, 0.101475544, -0.029908545, 0.0238049, -0.014191835, 0.03390594, 0.0442128, 0.01712707, 0.002425616, -0.012965531, 0.0043958277, -0.03492785, 0.072690934, -0.008471585, -0.0011025185, -0.059858695, 0.00881268, -0.061459914, 0.037629757, 0.015241363, -0.026900709, -0.02082498, 0.060292054, 0.0042186505, 0.03832026, -0.04174904, 0.009979816, 0.006495705, -0.015888847, -0.013947613, -0.025875712, -0.02935963, -0.024714733, 0.04081926, -0.016526418, -0.021397753, 0.0037926077, 0.008817243, -0.015130963, -0.07613747, 0.0375557, 0.041638803, -0.027172469, 0.024463302, -0.022285106, 0.0004125984, -0.040785603, 0.012545223, 0.03604921, 0.00991086, 0.012308708, -0.022278251, 0.025236687, -0.11135858, 0.014834314, 0.07084529, -0.040936016 ] }, { "values": [ -0.039066684, -0.011782218, -0.029972982, -0.05699854, 0.03567554, 0.012773935, 0.0029155714, 0.02930535, -0.018230623, 0.0648558, -0.017346272, 0.03174571, 0.04165689, -0.0057636783, -0.02931269, -0.030373046, 0.034966227, -0.009195094, -0.04131603, -0.010923867, 0.01820881, 0.043265168, -0.007245331, -0.10278128, -0.044743314, 0.013713181, 0.050539453, -0.033686053, 0.0026548065, -0.05292602, 0.006847269, 0.042452134, -0.050861623, -0.014109128, 0.077853896, 0.034896776, -0.068834476, 0.0030057204, 0.047979027, -0.042668756, -0.07193444, 0.0048329798, 0.01966375, 0.03392294, -0.0744934, 0.01035083, 0.02050025, 0.02426135, -0.07868422, 0.08827842, 0.017450944, 0.025049064, 0.020154256, 0.038486492, 0.013440749, -0.02058851, -0.07543805, -0.057789367, 0.050488032, -0.016630668, -0.0024652635, -0.0019642375, -0.011719493, -0.03338282, -0.011676246, -0.05826765, -0.019788375, -0.021784363, -0.026988542, -0.0033554353, -0.04025481, 0.014797435, -0.081093416, -0.008538122, 0.004487774, -0.020578442, 0.01828565, 0.010151761, -0.00304922, 0.027428742, 0.0013817638, -0.011617132, 0.082705796, 0.043474052, 0.038274176, 0.006816289, 0.03511697, -0.03859209, 0.01921936, 0.043034647, 0.05762129, -0.027802885, -0.0462671, 0.027966581, 0.011618363, -0.050291985, -0.047798663, -0.059862815, 0.021239633, 0.06487685, -0.0051952098, 0.0030617265, 0.002094029, -0.000531729, 0.025716532, -0.017356835, -0.00010030897, -0.06789795, -0.058182452, 0.008525909, -0.035238843, -0.035164937, -0.027601937, 0.015548466, -0.0104293255, -0.034802172, -0.010644846, -0.0155541785, 0.018717328, -0.025252864, 0.06953236, -0.04793725, -0.050363507, 0.0434258, 0.053371556, 0.015855344, 0.027298048, 0.0008486794, -0.035503577, -0.041262116, 0.09559826, -0.10682509, 0.012511238, 0.017302211, -0.06079854, -0.043726243, 0.024334978, 0.024084724, -0.0077671795, 1.7391707e-05, 0.03259602, 0.007010941, -0.029521694, 0.015069123, 0.0013613858, -0.0073398016, -0.029574564, -0.010337358, -0.049954288, 0.031545226, -0.053439043, -0.019948106, 0.034993585, 0.008446253, -0.031672653, 0.0148726, 0.08026253, -0.020062458, 0.05730691, -0.060554076, 0.010007623, -0.0144483335, 0.006504698, 0.005070782, -0.022925312, 0.015444247, 0.046612255, -0.068381995, -0.029809428, -0.056565173, -0.007916106, 0.004241613, -0.019372176, -0.08709449, -0.021961434, 0.007484912, -0.044089135, 0.02185656, -0.019245392, 0.0031065205, 0.046250187, 0.026192846, -0.026662229, -0.029696962, -0.029143991, -0.021958645, -0.02478496, 0.0728185, 0.014418393, 0.04185511, -0.04249741, -0.019934833, 0.03671395, 0.063309595, -0.01525205, 0.06162218, 0.058723815, -0.013276211, -0.00013873707, -0.04919209, 0.07290546, -0.036093656, -0.036437254, 0.016732926, -0.03176256, -0.01888557, -0.056399748, -0.045848995, 0.0053140046, -0.0057207854, -0.010367916, -0.02540056, 0.00986165, -0.076981515, 0.00784492, 0.012443176, 0.050590392, 0.087068014, 0.030257301, -0.03880959, -0.018430563, -0.023116117, 0.035754044, -0.019601705, 0.026200175, -0.030506741, 0.013787285, -0.04239959, -0.041676775, 0.016193783, -0.034995712, -0.0057760016, 0.011102228, 0.024342827, -0.0059201014, 0.008423273, -0.008096885, 0.03068444, 0.00043390723, 0.023764558, 0.03149858, 0.0096624, 0.03411452, -0.0034234538, -0.0040271445, 0.033014078, 0.07101799, 0.12427805, -0.011000424, -0.013457301, -0.025501756, -0.0062568667, -0.07706334, 0.021181136, -0.040995292, -0.032885175, 0.055825185, -0.03686573, -0.032923315, -0.02300875, 0.020414177, -0.016798196, -0.030662356, -0.03971084, -0.024553034, -0.11747054, -0.015916815, -0.018748175, 0.061453104, 0.0080859205, -0.016695814, -0.0064565805, -0.07532388, -0.039337076, 0.026093388, 0.037785098, -0.028109942, 0.022148337, -0.03946005, -0.036230735, 0.030168545, 0.013987955, -0.03276008, -0.039231583, 0.008344642, -0.047449205, -0.005795882, 0.033274725, -0.042940136, -0.07165953, 0.06478665, 0.046558324, 0.03549978, -0.0047349837, 0.037328396, -0.040758483, 0.0057647307, -0.0023803676, 0.025392106, -0.0016485301, -0.0075151916, 0.08220148, -0.03201994, -0.011397397, -0.037923418, 0.02184103, -0.034191474, -0.009664837, 0.0084742205, 0.010800341, 0.026995912, 0.042095345, -0.031588007, 0.021351218, -0.0043560653, 0.007820729, -0.120455995, 0.012027999, -0.03417925, -0.006847323, 0.03819403, 0.006094186, -0.03035979, -0.014504704, 0.047375172, 0.008118595, -0.041440308, 0.0016659591, -0.0007624168, -0.023277717, 0.028001904, 0.016926806, 0.017699605, -0.01606068, 0.0020368851, 0.0007909849, -0.0109276725, -0.004635176, 0.061394054, 0.02374239, 0.03603013, 0.019255752, 0.041483443, 0.040760376, 0.0032756468, -0.057248216, 0.00041358802, 0.003535228, 0.062356405, -0.022072524, -0.061476637, 0.0634231, 0.020679617, 0.0073198266, 0.06501349, 0.019747674, -0.005937053, 0.0432541, 0.013264767, -0.028294548, -0.012788028, 0.030372681, -0.013454401, -0.02992066, 0.022386247, -0.008438424, 0.026924284, -0.003126775, 0.009103015, -0.063626535, 0.017716447, 0.022749903, 0.016143482, 0.0047567, 0.009157644, -0.04500947, 0.013472092, 0.003572311, -0.014147408, -0.020654153, -0.05989132, -0.052796602, 0.020060843, -0.027339982, -0.053057812, 0.048770104, -0.034810916, -0.03972276, 0.02157125, 0.0071590208, -0.03691561, 0.055661835, -0.0074499063, 0.0037207399, -0.026885374, 0.054840963, -0.028515754, -0.016830737, 0.046696648, -0.038085196, -0.026237419, -0.017104786, 0.038729895, -0.033497494, -0.012944541, -0.012232271, 0.04077042, 0.029768143, 0.037265155, -0.03459379, 0.040482257, -0.029294007, 0.011979878, -0.021375464, -0.011794349, 0.0033435072, 0.0317135, -0.022954557, -0.015467569, 0.008852926, -0.016084539, 0.015004875, -0.018817412, 0.04839381, -0.0018990115, -0.06855761, 0.018524688, -0.03836795, 0.062648945, -0.0016391402, 0.004219956, 0.050109737, -0.062762685, -0.004271551, 0.018894468, 0.010267397, -0.0109771155, 0.00927874, -0.009440607, -0.0043037757, 0.041034587, -0.003261747, 0.047779888, 0.04374059, -0.018587839, 0.040129755, 0.021289261, -0.038594373, -0.05750143, -0.07827246, 0.009753282, 0.029059818, -0.009367293, -0.050579768, 0.036727548, 0.005138565, 0.049802955, 0.040510967, -0.021978224, 0.02164654, -0.06296034, -0.016202943, 0.05167628, 0.04018434, 6.629982e-05, -0.003923074, -0.024414536, 0.026660463, 0.0025906132, 0.06845397, -0.007459247, -0.051911764, 0.020800527, 0.0057850573, 0.032562487, 0.036792815, 0.011121891, 0.008581276, 0.034063548, 0.02840229, -0.036626417, 0.028809106, 0.007217085, 0.0434552, 0.03209738, -0.07218886, -0.009082086, 0.012023396, 0.049178217, 0.0029190925, 0.030915108, 0.04616575, 0.002559629, 0.027520971, -0.031699255, -0.029217085, 0.04033582, -0.018296529, -0.02531308, -0.016577384, 0.053982787, 0.0288414, -0.016480792, -0.033441834, 0.015072224, 0.015785037, -0.019064253, -0.04390391, 0.038250275, -0.0033420282, 0.002555574, 0.0041498104, 0.060085334, 0.0014630845, -0.020342378, 0.07447058, -0.037686843, -0.007958041, -0.0327412, 0.044655606, 0.0010543043, -0.031236477, 0.0017414622, -0.05858772, -0.07141661, 0.0120561905, -0.015018817, 0.03643402, 0.047403507, -0.007933968, 0.0020672663, 0.031152567, 0.009471921, -0.01204938, 0.03472259, 0.028564151, 0.005686718, 0.02512144, -0.038012754, 0.049706947, 0.003632585, -0.012272497, 0.080446295, 0.023556277, 0.04270665, 0.009962831, 0.040716734, -0.0031399168, 0.0019375181, 0.080253825, -0.019596191, -0.02496636, 0.040708296, -0.005954401, -0.0347128, -0.05234067, -0.02393574, -0.036893994, -0.062319405, 0.031577714, 0.02572117, 0.011995487, -0.0048261606, -0.018788999, -0.040272728, -0.014593924, -0.0373876, 0.06614904, -0.019046824, -0.045567922, 0.0045166886, -0.026865691, -0.019658243, -0.029727023, 0.01496501, 0.012262681, -0.046027124, 0.01679503, 0.04017831, 0.01628096, 0.047341872, 0.029547803, 0.07373126, -0.042956315, -0.009243075, -0.021296773, 0.052527048, -0.058133565, 0.00036681298, 0.0029960829, 0.0296427, -0.0132190995, -0.0071204803, -0.0040468923, 0.059404872, -0.024172075, -0.011705259, -0.031814136, 0.04083101, 0.030661527, -0.03586876, 0.02231082, -0.020739513, -0.0003510256, 0.016287807, -0.014978504, -0.012824049, -0.027381215, 0.036374703, -0.0004837804, -0.040220656, 0.02401771, 0.006097215, -0.016050458, -0.042327065, 0.030915132, -0.040541083, -0.047569484, 0.05036455, -0.03089589, -0.024025623, 0.04538686, -0.034726065, -0.0011562485, -0.06250972, -0.010007616, -0.023269318, 0.050962016, -0.048771884, -0.011361674, -0.052170135, 0.011429838, 0.05195076, -0.049318876, -0.014330063, 0.031338837, 0.010503558, -0.06214972, 0.025115555, -0.04738955, 0.04514309, -0.0042854096, 0.0068238657, 0.06160076, -0.07912025, 0.047592286, 0.0032334924, 0.046887737, 0.0027538445, -0.0023426933, 0.011052395, 0.011005895, -0.025249077, -0.012323301, -0.04063823, -0.040178727, -0.050067514, -0.010585804, 0.029893158, -0.013290895, 0.0023214477, -0.04049226, 0.033935227, 0.070244595, 0.0077291317, -0.021120643, -0.030187093, -0.006891251, -0.034220424, -0.044633906, -0.029594777, 0.0110519575, -0.0014582522, 0.030827401, -0.03368993, 0.04503072, 0.024642872, -0.024206238, -0.07462326, -0.005784404, 0.031935647, -0.058161754, 0.0042327163, -0.011804007, 0.003619118, 0.0014580698, -0.00981461, -0.04088419, 0.048289865, 0.017252594, 0.0014843304, -0.08143844, -0.026400054, 0.028512489, 0.029070158, 0.048582036, -0.044216793, 0.012342889, -0.04743244, 0.023090765, -0.02017421, -0.03660432, -0.04158534, -0.023457827, 0.038529802, 0.046295974, 0.025661256, 0.015228766, -0.04585777, 0.020437142, -0.022569345, 0.0013105292, 0.08424443, -0.027649516, 0.026756192, -0.024941808, 0.02998417, 0.027952544, 0.01915056, 0.008157239, -0.005203068, 0.00630042, -0.027676346, 0.07223627, 0.0004585527, 0.0023313535, -0.072854996, 0.007968468, -0.054260217, 0.049340263, 0.013188659, -0.01413593, -0.009228101, 0.03395957, 0.0031373627, 0.04516263, -0.026797371, -0.0030438448, 0.010839349, -0.018261684, 0.0062638293, -0.031018121, -0.055090643, -0.025854325, 0.026532745, -0.020401938, -0.038701527, 0.008417507, 0.00081235, 0.006538218, -0.08870214, 0.02463898, 0.012777491, -0.02923713, 0.05484075, -0.037434947, -0.007396338, -0.0072762915, 0.0007025851, 0.035381436, 0.0091771325, 0.007850626, -0.006502421, 0.027650766, -0.10897922, 0.024567885, 0.07357947, -0.057961874 ] }, { "values": [ -0.01802426, -0.0015300777, -0.046573516, -0.041133985, 0.018220551, 0.019847497, -0.000618341, 0.04373472, -0.015263032, 0.059054296, -0.0067317407, 0.008615089, 0.030325038, 0.0018049966, -0.033407427, -0.051731728, 0.02528444, -0.017690651, -0.06409112, -0.052975286, 0.0030616443, 0.038884047, -0.0010235434, -0.0898896, -0.031172058, 0.008277229, 0.060777616, -0.032448143, 0.011487661, -0.03655394, 0.0018027945, 0.031408053, -0.04245909, -0.04055769, 0.019463936, 0.05930453, -0.07072794, 0.009283584, 0.03440595, -0.022480639, -0.059816733, -0.0072118314, 0.001545903, 0.038844164, -0.055573933, 0.01971841, 0.02956644, 0.008316303, -0.06496852, 0.056681212, -0.014848694, 0.018632935, 0.0005451731, 0.024965482, -0.0053610844, -0.026896678, -0.045053065, -0.016339414, 0.05717457, -0.03129042, -0.012364514, -0.0020172978, -0.013470264, -0.027959703, -0.018394226, -0.051051807, -0.038787562, -0.027489962, -0.018947426, 0.016680231, -0.07747971, 0.014721209, -0.074882075, -0.014739875, 0.006260769, 0.0012665173, 0.046469975, 0.012405134, -0.0034349174, 0.030509427, 0.0032975702, 0.011060384, 0.0749583, 0.025714101, 0.028513158, 0.0020199243, 0.045942347, -0.044183753, -0.01308236, 0.012230173, 0.071203224, -0.029374113, -0.0710546, 0.02238533, 0.029790947, 0.0032273333, -0.02159498, -0.08890266, 0.0013610099, 0.08830463, -0.013570132, -0.00654259, -0.028179305, -0.0063800737, 0.0074013495, 0.00805056, -0.0022938328, -0.056549966, -0.037712954, 0.020617435, -0.029685035, -0.041051757, 0.00799067, 0.024895161, -0.0070194937, -0.035961624, -0.013883592, -0.0361369, 0.0027934753, -0.024434863, 0.042585526, -0.04128736, -0.007264622, 0.06739818, 0.021634765, -0.0016949608, 0.038281452, 0.037549406, -0.04828154, -0.025610892, 0.100289196, -0.107876785, 0.029904068, -0.029897638, -0.036868706, -0.030948885, 0.05803025, 0.04877535, -0.011057989, 0.009283777, 0.017615587, 0.012434706, -0.06138317, 0.027557537, -0.012843482, -0.009166829, -0.0103499945, -0.021781372, -0.022792364, 0.025096742, -0.03584774, -0.05340065, 0.04248978, -0.023590198, -0.038000368, 0.0063163387, 0.06911627, -0.013474713, 0.056869145, -0.066053785, 0.041768383, -0.016079098, -0.014725861, -0.006656279, -0.04290895, 0.02406474, 0.06518811, -0.086358525, -0.0013386119, -0.024240974, -0.009953416, -0.039158415, -0.039020117, -0.081047736, -0.003952656, -0.0061133364, -0.031019593, 0.025554217, -0.021656888, -0.008308789, 0.049327392, 0.06591842, -0.027141575, -0.022237783, -0.05251659, -0.0022276095, -0.013764785, 0.06504459, 0.01010831, 0.017329104, -0.04344018, -0.03274813, 0.03097872, 0.08378711, 0.006166337, 0.034933105, 0.072950915, -0.0036814795, -0.025510548, -0.03381594, 0.049657747, -0.0021566926, -0.036095392, 0.04274337, -0.026321549, 0.020437997, -0.063165955, -0.023069052, 0.027860112, -0.008388056, -0.029688926, 0.013781223, 0.030373689, -0.0866368, -0.002818395, 0.006219738, 0.07259936, 0.08715644, 0.038709205, -0.04811219, -0.031109177, -0.039925583, 0.022402149, -0.015320266, 0.02863709, -0.017901892, 0.01645105, -0.03210168, -0.01870492, 0.00019272929, -0.007617508, 0.021158952, 0.009169421, 0.015396738, -0.016932163, 0.039806902, -0.008574828, 0.039841898, 0.0052817874, 0.01218194, 0.012185022, -0.01288373, 0.004704709, -0.0035182738, 0.00911425, 0.05052522, 0.063885085, 0.067508996, 0.0064244233, -0.008266274, -0.026184585, -0.031503793, -0.09829866, 0.017837323, -0.06492569, -0.022185309, 0.050671652, -0.046965554, -0.020098127, -0.019932985, -0.003213608, 0.0005716782, -0.031351507, -0.052542843, -0.011469957, -0.08910992, -0.030277036, -0.033683714, 0.05679769, -0.0011376078, -0.0007738502, -0.0018557551, -0.06650167, -0.047412846, 0.04436153, 0.018916458, -0.012936434, 0.007066495, -0.046289552, -0.028377634, 0.042887162, 0.012748616, -0.013781589, -0.040926635, -0.01693936, -0.035727657, -0.0037856612, 0.04875757, -0.049661398, -0.07703568, 0.034883913, 0.050465662, 0.038446672, -0.02247586, 0.030487902, -0.010256107, 0.02147186, 0.0024685247, -0.018801687, 0.022024639, 0.021083966, 0.07771161, -0.057502903, 0.009984471, -0.06539357, 0.053373814, -0.01700736, 0.0034933684, 0.0041682874, -0.00920884, 0.018168295, 0.06707093, -0.051190794, -0.0007266076, -0.009862233, -0.0025882255, -0.12468707, -0.01742235, -0.040106773, -0.004447481, 0.0020975068, 0.008094017, -0.025701359, -0.007313982, 0.04794976, -0.006821443, -0.036487933, 0.016624369, 0.0018603419, -0.006314544, 0.0014880709, 0.038518865, 0.025634333, 0.009301267, -0.0007057058, -0.013844897, -0.0022576256, -0.015909743, 0.047379594, 0.027600553, 0.034893453, 0.03200677, 0.05463565, 0.054071255, -0.0077586896, -0.05389825, 0.021685584, -0.0062000277, 0.055923764, -0.047837887, -0.058181696, 0.06679114, -0.012186458, -0.0073178187, 0.062060796, 0.014220765, -0.013615865, 0.026946506, 0.045822438, -0.012779952, 0.012908191, 0.0225301, -0.029453838, -0.0036768173, 0.015120106, -0.013294252, 0.04005046, 0.010464308, -0.0027503031, -0.06392835, 0.029850885, 0.018246243, 0.017509975, 0.025200803, -0.018269043, -0.04571991, 0.0026120914, 0.033306886, -0.02329652, -0.055035565, -0.04010978, -0.056139093, -0.0058836807, -0.040198654, -0.0391477, 0.03583283, -0.036004975, 0.006982927, 0.010478928, -0.010033726, -0.04891008, 0.04532873, 0.010843786, -0.032452606, -0.019022105, 0.04462703, -0.010565702, -0.025049653, 0.02230631, -0.005615005, -0.0040009087, -0.0131655885, 0.031368114, -0.04630784, 0.0027027442, -0.024436451, 0.052033115, 0.010124571, 0.052141454, -0.018169217, 0.05897209, -0.020208234, 0.04970691, -0.013226682, -0.013892177, 0.014069813, 0.04464814, -0.027637487, -0.03446241, 0.0038182235, -0.0064233565, -0.0038321186, -0.005974683, 0.040915143, 0.013025993, -0.05983919, 0.010893932, -0.03590227, 0.059768464, 0.019798191, 0.011570738, 0.025113806, -0.051209856, 0.0066250055, 0.028043726, 0.012501425, -0.020917501, 0.012259881, -0.015088595, 0.011510074, 0.027896095, 0.014931292, 0.028299231, 0.04174346, -0.014301476, 0.0023816167, 0.01236487, -0.060130227, -0.05651489, -0.06536056, -0.013819882, 0.011178153, -0.010858539, -0.034876015, 0.044392828, -0.0033134848, 0.034324676, 0.03586494, -0.046858087, 0.035006166, -0.061524916, -0.0044503403, 0.052142248, 0.044443376, 0.007467044, -0.026593689, -0.034904998, 0.0077997916, 0.010570057, 0.06644143, 0.022076337, -0.045929275, 0.04593159, -0.02159714, 0.022606725, 0.049279775, 0.022281835, 0.038631264, 0.018757416, 0.029264001, -0.029371567, 0.005721322, 0.021249557, 0.026073918, 0.053752985, -0.07023066, -0.02513124, 0.033769827, 0.045235142, 0.0022847857, 0.058759518, 0.06316874, 0.0036964703, 0.016916554, -0.023000307, -0.019946069, 0.052767158, -0.029077359, -0.02839061, -0.013481149, 0.04651597, 0.011393247, -0.034399692, -0.0728858, 0.008937118, 0.019482242, -0.027753863, -0.03992231, 0.011865517, -0.004511385, -0.0062595443, 0.011054926, 0.043061096, 0.0016783539, -0.05008023, 0.07982228, -0.06931063, -0.003403305, -0.0015430865, 0.030607814, 0.023864733, -0.016661253, 0.017326202, -0.052415065, -0.078944825, 0.0010411635, -0.0039280937, 0.050379876, 0.059124768, 0.005668172, 0.007832871, 0.026957162, 0.01664175, 0.0053140027, 0.025451701, 0.037334573, 0.012116241, 0.034884218, -0.053570364, 0.03789111, 0.020600123, 0.018491536, 0.07174162, 0.024907706, 0.045915067, 0.009590422, 0.011349101, -0.0012012945, 0.015072992, 0.046540868, -0.0486924, -0.039850496, 0.04494435, -0.01576601, -0.014356277, -0.045312434, -0.022038596, -0.0072149783, -0.06385404, 0.036751762, 0.03603786, 0.0071789417, 0.028609581, -0.042307608, -0.01825995, -0.028508607, -0.041196324, 0.040045515, -0.010415282, -0.033021178, 0.013404863, -0.009006471, -0.015628617, -0.038025267, 0.019888619, -0.0009980497, -0.019837473, 0.00776414, 0.043985687, -0.00087027275, 0.018322509, 0.03650488, 0.085758105, -0.012720353, -0.01608876, -0.02156702, 0.059127126, -0.037084106, -0.0148242675, 0.012133428, 0.005683596, 0.030175326, -0.00738545, -0.012980676, 0.06122528, -0.010854213, -0.015254068, -0.03811571, 0.026602602, 0.020088151, -0.06282482, 0.014659383, 0.0069821947, -0.0028526408, 0.0031834978, -0.007730814, -0.018766169, -0.016920548, 0.009276217, -0.0062239277, -0.042765826, 0.011078436, -0.0031242764, 0.008628887, -0.04671444, 0.02809932, -0.03428372, -0.042283528, 0.031851497, -0.030860249, -0.025650334, 0.031376358, -0.043428358, 0.027151497, -0.09937674, 0.0018707447, -0.022564093, 0.058385897, -0.019537434, -0.008175337, -0.056834433, 0.0061380705, 0.025246762, -0.045661412, -0.0020156223, 0.03473222, 0.007941189, -0.0636947, -0.0034987067, -0.040280856, 0.048532028, -0.021968905, 0.04302791, 0.013754663, -0.07627344, 0.04190992, 0.034331705, 0.03670229, 0.008497176, 0.0475644, 0.030066643, 0.033022624, -0.036242798, -0.023435738, -0.040891502, -0.050174024, -0.027725777, 0.0006016889, 0.016196728, -0.009491129, -0.031300094, -0.016841222, 0.031094825, 0.040527545, -0.027577458, 0.0034606492, -0.031758744, -0.007776429, -0.046890937, -0.033891965, -0.010409878, 0.029688662, 0.00035895174, 0.038299832, -0.022414403, 0.04037935, 0.023932403, -0.042382345, -0.07672118, -0.0066265385, 0.027476704, -0.06199237, 0.02364675, -0.0078034084, 0.0026260638, -0.036847364, 0.013589395, -0.048872642, 0.03536094, -4.0417035e-05, 0.0008054589, -0.07206523, 0.008963418, 0.01645944, 0.038224984, 0.07126826, -0.07365334, -0.0051655583, -0.06536812, 0.0043789498, -0.05263535, -0.010773621, -0.04063516, -0.039037123, 0.036708284, 0.016282113, 0.014019062, 0.044397667, -0.045598224, 0.027621284, -0.042617053, 0.017427696, 0.053025912, -0.010121177, 0.034869697, -0.0052237883, 0.03266526, 0.048297904, 0.015021351, -0.0008000825, 0.0111212935, 0.007820508, -0.04063763, 0.088450894, 0.011356694, -0.006319938, -0.05783021, 0.0042931265, -0.04939075, 0.055387985, 0.0015450979, -0.016045433, -0.023559997, 0.04837161, 0.0041911467, 0.044804472, -0.010311841, -0.011324722, -0.010232774, -0.022780057, 0.011561523, -0.009975007, -0.042946372, -0.024003724, 0.047549725, -0.022277335, -0.034358256, 0.0013711628, -0.018524159, -0.012133792, -0.07052146, 0.01867435, 0.054284427, -0.017132582, 0.047442723, -0.0056560724, -0.0070512746, -0.031378236, 0.01684791, 0.0370894, 0.001226088, 0.013948912, -0.008626726, 0.010486004, -0.111327514, 0.0027130696, 0.0864228, -0.0368912 ] }, { "values": [ -0.011747823, 0.003635038, -0.05884557, -0.052985985, 0.025683708, 0.018222664, -0.009074437, 0.03853389, -0.021633197, 0.057845786, -0.00608556, 0.015107916, 0.02442456, -0.0029732191, -0.042639524, -0.0418798, -0.003908668, -0.012117681, -0.05351485, -0.042674918, -0.018752342, 0.020909436, 0.01430817, -0.09778956, -0.021026723, 0.029407691, 0.0544467, -0.028215777, 0.016375408, -0.035844345, 0.00507283, 0.028277371, -0.027187763, -0.03847345, 0.059042495, 0.038527347, -0.056251492, 0.013885119, 0.019804578, -0.01074864, -0.061107147, 0.011479749, -0.0109028015, 0.034504637, -0.053721108, 0.023834879, 0.016298775, 0.0031623777, -0.055135485, 0.055043787, -0.02596666, 0.031523623, -0.027764158, 0.018821945, -0.0021348207, -0.022423469, -0.028879996, -0.03464633, 0.05603445, -0.023613598, -0.015089406, -0.017708467, 0.027866127, -0.0192346, 0.0024188254, -0.06954646, -0.027384555, -0.022713864, -0.020862283, 0.011554939, -0.061758175, 0.006704679, -0.053964708, -0.009976302, 0.023879593, -0.0001364956, 0.040473763, 0.042582482, -0.0057769804, 0.022277389, -0.023838276, -0.0055562346, 0.088874534, 0.012284285, 0.029183144, -0.012016648, 0.026048908, -0.04432542, -0.00991676, 0.028185468, 0.0808129, -0.04157134, -0.029341392, 0.03670699, 0.040928755, -0.010039451, -0.03943663, -0.09153485, -0.0075580333, 0.096641384, -0.005784489, 0.0043329834, -0.03141975, -0.0113385925, 0.03204412, 0.021294571, 0.011432765, -0.052395906, -0.04388464, 0.02385273, -0.015072415, -0.040280905, 0.006054198, 0.0048288307, 0.013586336, -0.037682652, -0.016667994, -0.029264988, 0.0019848726, -0.022038126, 0.04509261, -0.03472293, -0.0021918053, 0.07625879, 0.0020516322, 0.004690603, 0.04710421, 0.019841574, -0.04263491, -0.03831766, 0.08655777, -0.11412585, 0.008556982, -0.017338052, -0.02955001, -0.025856895, 0.0320591, 0.06734962, 0.00541485, 0.011121765, 0.02138612, 0.0055234814, -0.04383675, 0.013202134, -0.005811874, -0.002618887, 0.0020580355, -0.018592007, -0.01652937, 0.0063570333, -0.048272584, -0.04651627, 0.05230112, -0.024116013, -0.03377685, 0.00093846733, 0.085428834, -0.017063254, 0.07127367, -0.044349533, 0.016614141, -0.023689292, 0.019833222, -0.008182595, -0.056086127, 0.017572543, 0.05361792, -0.09653888, 0.013169629, -0.020792928, -0.0015321076, -0.024485424, -0.0070312973, -0.09275022, 0.015824946, -0.016381633, -0.0497607, 0.044849396, -0.023268288, -0.009432819, 0.06748116, 0.029689193, -0.0053418386, -0.03420991, -0.044534557, -0.0036802879, -0.008768012, 0.076025, -0.00052372145, 0.00781942, -0.029827535, -0.029608464, 0.027938036, 0.07704205, 0.006824839, 0.031171378, 0.06004057, 0.006427207, -0.020915324, -0.036934912, 0.050440736, -0.029341212, -0.028939733, 0.04362885, -0.01656445, -0.0050159977, -0.06455156, -0.035699263, 0.023857016, 0.0047076233, -0.024984628, -0.0059083425, 0.009438236, -0.077865176, 0.012372322, -0.00835633, 0.0812901, 0.11106646, 0.049949806, -0.0477936, -0.006817025, -0.027335035, 0.019746585, -0.01359832, 0.01941668, -0.03236547, -0.018265722, -0.030931154, -0.0153749725, 0.0049179937, -0.026215646, 0.011073727, 0.016117293, 0.0062695458, -0.012118234, 0.017586352, -0.038740095, 0.028645372, 0.01560274, -0.006612807, 0.0153404875, 0.0006149147, 0.011292402, -0.0053122947, 0.031095225, 0.029365381, 0.0722984, 0.08538678, -0.0024119955, -0.010897979, -0.014137689, -0.015952747, -0.095893584, 0.035368882, -0.069267, -0.012131502, 0.05949238, -0.045078244, -0.034136932, -0.026234351, -0.00955338, -0.014355177, -0.034919124, -0.055006914, -0.027097559, -0.09325589, -0.010286853, -0.03741088, 0.044607714, 0.005272522, 0.002034497, 0.0017665321, -0.046335723, -0.052807465, 0.027855743, 0.005399023, -0.012836467, 0.022429707, -0.040088926, -0.020099333, 0.03353453, 0.021313837, -0.028048325, -0.022801733, 0.003956354, -0.04483531, -0.008092949, 0.023173878, -0.06472279, -0.084695876, 0.047687925, 0.057435907, 0.02618448, 0.009162311, 0.015339709, -0.010813281, 0.027436968, 0.010466661, -0.0054268865, 0.0017456972, 0.029893873, 0.08132814, -0.047905367, 0.014780652, -0.07767179, 0.059407078, -0.02180979, -0.00045335462, -0.017008498, -0.0104976995, 0.031336468, 0.08449579, -0.05066111, 0.0027975668, -0.005097009, -0.00010791786, -0.098249055, -0.012739816, -0.05021212, -0.024150455, 0.019402938, 0.032576304, -0.034347303, -0.0030440567, 0.06348022, -0.020010736, -0.034315884, -0.0017578306, -0.015943585, -0.020292578, 0.01083203, 0.025578115, 0.009774891, 0.0010754709, -0.0009154932, -0.026128054, -0.014780209, -0.021826547, 0.047511116, 0.022197228, 0.033889744, 0.039219808, 0.07011342, 0.03634374, -0.043085154, -0.039361577, 0.03816772, -0.006187256, 0.06348147, -0.048725214, -0.05483194, 0.058425196, 0.0038021794, 0.008763955, 0.068578385, 0.0026255213, 0.0025985031, 0.019674836, 0.044175535, -0.02567379, -0.004171069, 0.018944677, -0.008522073, -0.014328238, 0.013943802, -0.023708679, 0.036149736, 0.01417281, 0.0022424283, -0.051534817, 0.0023402658, 0.033577483, 0.015337367, -0.006221607, -0.02845167, -0.07096506, 0.0015751536, 0.028367037, -0.017242964, -0.045253932, -0.052819815, -0.059476186, -0.011115713, -0.042134456, -0.023597589, 0.049316663, -0.044302315, -0.0033201452, -0.0027232813, -0.009576646, -0.04302429, 0.039521597, 0.018407086, -0.021920076, -0.021599133, 0.041208416, 0.002169951, -0.011064229, 0.03857073, -0.008061733, 0.0013681324, 0.021893304, 0.00026007835, -0.035634674, -0.011192196, -0.011191422, 0.03606524, -0.012884414, 0.038585458, -0.0013231388, 0.063701116, -0.037443567, 0.054849796, -0.016668838, -0.006862125, 0.016481036, 0.039250113, 0.00029866962, -0.038921524, 0.01607682, -0.008274368, 0.0026384846, -0.0046645203, 0.06363559, 0.023099395, -0.052887663, 0.028395548, -0.02930976, 0.0628528, 0.02224262, 0.023439372, 0.022617115, -0.043858014, 0.012011529, 0.03644995, 0.0046986705, -0.007657839, 0.0049625374, -0.02180013, 0.012275146, 0.031588465, 0.0043846318, 0.040101446, 0.03462365, -0.020702865, 0.013408815, 0.009109162, -0.0740547, -0.061670277, -0.06046378, -0.01449649, 0.03925163, -0.023440469, -0.056001466, 0.043383103, 0.0036061197, 0.03302522, 0.0412479, -0.05179154, 0.040145718, -0.069803074, -0.031362537, 0.03174002, 0.053381868, 0.02843192, -0.04302525, -0.05406586, 0.019779893, 0.015741149, 0.038701948, 0.03250671, -0.040901154, 0.022153683, -0.0051925154, 0.021032864, 0.037683602, 0.019888055, 0.031283803, 0.010737553, 0.021226801, -0.030067973, 0.0038346322, 0.016357014, 0.015895884, 0.05477996, -0.061665207, -0.033035137, 0.0185732, 0.026778385, 0.004362178, 0.026109803, 0.03372924, 0.01485807, 0.014023993, -0.03495709, -0.023457738, 0.070709355, -0.01341906, -0.025336107, -0.019400323, 0.046506505, 0.022237383, -0.008094904, -0.050540466, 0.018087044, 0.016203834, -0.019166946, -0.03054872, 0.0059541552, -0.015120179, -0.016470717, 0.012041846, 0.038462985, 0.020749783, -0.06527499, 0.083194524, -0.07093578, 0.014120097, -0.021281254, 0.034286328, -0.010739332, -0.02380334, 0.020301275, -0.060147274, -0.060179178, -0.008028043, -0.010126766, 0.049655482, 0.04439428, 0.0029598349, 0.01811863, 0.028644392, 0.02212541, -0.0036302984, 0.01497897, 0.047601633, 0.006253918, 0.014245225, -0.034607314, 0.062371258, 0.008854455, 0.008734141, 0.078566976, 0.037573833, 0.04358905, 0.0034254312, 0.0093653845, -0.012251926, 0.03258108, 0.05926063, -0.04427, -0.048374042, 0.020065498, -0.02955562, -0.026158597, -0.03664745, -0.025908062, -0.0086674355, -0.06319209, 0.053523663, 0.037463304, -0.005491237, 0.0227039, -0.036702253, -0.04522405, -0.019222882, -0.037792694, 0.051491197, -0.016831417, -0.032872282, 0.00902393, -0.023504956, -0.008942635, -0.053783853, 0.020691993, -0.00023773983, -0.008370642, 0.010750284, 0.0581155, 0.004959867, 0.03983746, 0.038093578, 0.07458536, -0.0066325683, -0.00030740967, -0.03652916, 0.047781937, -0.041077286, -0.022485217, 0.027315335, -0.0027568485, 0.020983422, 0.0076257614, -0.0077938857, 0.052493565, -0.010541973, -0.014067538, -0.029835904, 0.028343255, 0.009592686, -0.05010447, -0.0068979915, -0.007966823, 0.008796148, 0.012028879, -0.0035537023, -0.0064314003, -0.024008388, 0.0072970474, 0.009272243, -0.04530361, 0.012446609, -0.0014247381, -0.006861998, -0.05314843, 0.022303687, -0.039989304, -0.06678727, 0.02737197, -0.018965036, -0.0136849, 0.025347814, -0.02821858, 0.013253161, -0.07855177, -0.0068857386, -0.015271849, 0.062227637, -0.032158583, -0.0053337687, -0.05875249, -0.018543597, 0.03378223, -0.03801664, -0.026994234, 0.047282256, -0.0033595015, -0.048754342, -0.013141787, -0.048456796, 0.036083765, -0.0068841185, 0.041558113, 0.0299205, -0.08549707, 0.03784626, 0.0383029, 0.043176845, -0.00529526, 0.04140964, 0.0111053735, -0.0020326125, -0.035956345, -0.024175102, -0.021370905, -0.0479074, -0.029685998, -0.0068377475, 0.011729071, -0.00988355, -0.021931197, -0.009767238, 0.030201975, 0.04623788, -0.040302977, 0.0015675102, -0.03944379, -0.00022545164, -0.040185016, -0.05010293, -0.0032568634, 0.035851743, 0.016541926, 0.027478494, -0.030974755, 0.041326024, 0.022285977, -0.039336726, -0.07023899, -0.0052586384, 0.017681843, -0.059067223, -0.001213338, -0.002066163, 0.010981799, -0.023706185, 0.019970156, -0.029071003, 0.040712282, 0.018997526, 0.022736369, -0.038737815, -0.0047530504, 0.014417452, 0.037039805, 0.09287855, -0.07466819, 0.006858733, -0.077901974, -0.011965051, -0.035105046, -0.009015697, -0.032461755, -0.031480987, 0.052492306, 0.012220943, 0.008051683, 0.045416176, -0.029048292, 0.02678442, -0.048389774, 0.01653203, 0.0498069, -0.00060074707, 0.021450635, 0.004921378, 0.022740034, 0.043364663, 0.033675943, 0.014379251, 0.00505044, 0.0155424485, -0.05120399, 0.07563876, 0.02005692, 0.013048855, -0.06760616, 0.005897623, -0.0638664, 0.06370319, -0.0036330083, -0.007556039, -0.02316407, 0.07432938, -0.0017906075, 0.052049167, -0.007749207, -0.008090848, -0.007166598, -0.016389575, 0.0185516, -0.018173203, -0.027004384, -0.004001858, 0.03422802, -0.02799268, -0.042707928, -0.038637485, -0.015314558, -0.0059228158, -0.07773343, 0.031962164, 0.03565382, -0.039920878, 0.060836967, 0.00024331317, -0.00831093, -0.015032878, -0.004020064, 0.031332973, 0.016099017, 0.025860881, -0.02605462, 0.012381823, -0.08555207, 0.005535073, 0.08939803, -0.03156874 ] }, { "values": [ -0.010349338, -0.0053951386, -0.05267682, -0.042263083, 0.021577707, 0.014404387, -0.019074196, 0.05211308, -0.017950134, 0.042716455, -0.001106967, 0.017357836, 0.017048884, 0.011111041, -0.026832933, -0.040644366, 0.014034233, -0.039165456, -0.04760051, -0.026006471, -0.005432352, 0.041712545, -0.015959004, -0.10398085, -0.019545367, 0.033935327, 0.046915516, -0.04575113, 0.017982563, -0.04978958, 0.006557098, 0.010913633, -0.023675103, -0.017314805, 0.023204498, 0.057337936, -0.0472567, 0.002830657, 0.035585307, -0.027047357, -0.052669257, -0.0044684573, -0.017618295, 0.038227152, -0.07504911, 0.030677302, 0.003562885, 0.016473055, -0.04561426, 0.049406353, -0.020392682, 0.026089273, -0.011488669, 0.032033134, -0.00021385806, -0.022836497, -0.046537753, -0.026081324, 0.067862034, -0.021024289, 0.0035972758, -0.007115441, -0.0013385438, -0.025929347, 0.003006106, -0.05651112, -0.022446519, -0.032154597, -0.0321718, 0.0035939773, -0.077714086, -0.009573994, -0.07351206, -0.008948608, 0.018016942, -0.015042285, 0.047508832, 0.016296275, -0.011432879, 0.025131913, -0.006556519, -0.012621177, 0.0550237, 0.023550268, 0.032635707, -0.00087626325, 0.033810735, -0.04529992, -0.03464758, 0.022923822, 0.07048543, -0.03346577, -0.06331364, 0.028231792, 0.049564246, -0.020118475, -0.026656944, -0.08473113, -0.00837231, 0.0723947, -0.01940559, 0.0020543763, -0.017845716, -0.018448861, 0.03401928, 0.032587525, 0.017097881, -0.067414284, -0.02014751, 0.036597967, -0.008952233, -0.04773963, -0.019086536, 0.028250523, -0.006417701, -0.04012357, -0.0007302304, -0.04261863, -0.0033054047, -0.03996273, 0.03068052, -0.03455111, 0.0058174827, 0.074612014, 0.016941736, 0.008184105, 0.04081763, 0.01373277, -0.034060244, -0.024654038, 0.07051294, -0.10856146, 0.019561993, -0.008977346, -0.043285057, -0.030107342, 0.0533944, 0.05820965, -0.021361789, 0.004211, 0.010985943, -0.003805161, -0.05737107, 0.038652055, 0.0067649256, -0.032509454, -0.027535455, -0.026874218, -0.0027034536, 0.00064436725, -0.037061352, -0.05424216, 0.03273558, -0.030981949, -0.028179955, -0.0023318166, 0.08072444, -0.05307407, 0.059213676, -0.04772285, 0.018801646, -0.03881899, 0.022651792, -0.02401164, -0.01943296, 0.03736273, 0.04630701, -0.07762829, -0.020123802, -0.042334583, 0.001200848, -0.05352194, -0.03801646, -0.101492494, -0.011294444, -0.018341403, -0.050616916, 0.028374314, -0.026115527, -0.01653005, 0.07411024, 0.053621728, -0.0036869226, -0.027671777, -0.07440837, -0.0016359612, 0.008265538, 0.07289984, 0.0035209865, 0.019113785, -0.034105513, -0.027736343, 0.0322434, 0.077197246, 0.021333292, 0.033442907, 0.07477717, -0.0149125755, -0.044197515, -0.037000526, 0.040722262, 0.017810965, -0.0358361, 0.057729166, -0.009147839, -0.0030004533, -0.045963675, -0.021133693, 0.034858424, 0.0009810966, -0.024160763, 0.028666792, 0.015611757, -0.076414466, 0.012399663, -0.030478317, 0.07200026, 0.094665624, 0.05682455, -0.06327714, -0.006274874, -0.025952896, 0.026200464, 0.0019877611, 0.04006347, -0.0031599079, -0.0038858003, -0.025327763, 0.0020449264, 0.0027017028, -0.026727086, 0.0078178365, 0.008764815, -0.0010426968, -0.0017419216, 0.023467628, -0.0022965127, 0.029767677, 0.0017375745, 0.011906397, 0.024956249, -0.0037071873, 0.008619248, -0.022484068, 0.0069006886, 0.04079734, 0.07887496, 0.069156185, -0.022060273, -0.02197319, -0.008437083, -0.023522492, -0.10785077, 0.01663768, -0.073446706, -0.008276449, 0.06603957, -0.054549284, -0.022116005, -0.013896935, 0.008954681, -0.024645722, -0.039419282, -0.06869328, -0.010759097, -0.054801807, -0.024013285, -0.033476382, 0.026779618, -0.009690675, 0.0064841313, -0.0044096555, -0.075125955, -0.037022427, 0.037636057, 0.023922822, -0.005736948, 0.0077507645, -0.043273687, -0.03995489, 0.05433628, 0.013884128, -0.021745654, -0.02868431, -0.012611646, -0.03372538, -0.015060514, 0.05842103, -0.04272079, -0.06456683, 0.037727486, 0.041971363, 0.018491486, -0.0013835311, 0.034011107, -0.019550107, 0.018089583, 0.012048761, -0.031750374, 0.0074633053, 0.0037070694, 0.07844956, -0.043458704, 0.0013970766, -0.045823943, 0.06203715, -0.016609678, -0.013413073, -0.00766048, -0.022212837, 0.021343015, 0.078838274, -0.06986154, 0.005941693, -0.004263112, 0.001187848, -0.118636526, -0.0076023703, -0.0420946, -0.011249683, -0.011202794, 0.02555902, -0.028371667, -0.020169048, 0.03171163, -0.018437244, -0.029841075, 0.00022749869, 0.0026234204, -0.0093632955, -0.004436789, 0.037924122, 0.02132425, 0.011809075, -0.004257068, 0.005544738, -0.028142614, -0.017585333, 0.029621715, 0.030066304, 0.03349344, 0.02982305, 0.07235272, 0.035170723, -0.007837496, -0.042281967, 0.025251573, 0.0021537924, 0.05493469, -0.06388036, -0.064301915, 0.06341654, -0.01051923, -0.0018639364, 0.06327825, 0.020846158, -0.010304248, 0.036305536, 0.008106063, -0.0060070297, -0.004255639, 0.007565557, -0.009366024, -0.0026185664, 0.034157507, 0.0049475315, 0.04238, 0.028609162, -0.00489409, -0.043056156, 0.020090006, 0.040770516, 0.020973993, 0.026218418, -0.012828628, -0.07617207, -0.0157722, 0.017360033, -0.023128148, -0.03904587, -0.04334349, -0.05755614, 0.005731418, -0.046771377, -0.032521766, 0.039335035, -0.045745976, 0.009950845, 0.0025690657, 0.0013161694, -0.053488575, 0.020754443, 0.007917467, -0.021610178, -0.007589083, 0.049664214, 0.009779256, -0.012992081, 0.007651642, -0.012379765, -0.0029920437, -0.010469666, 0.014098439, -0.055552512, 0.0024289775, 0.0066667018, 0.040084645, 0.0026900845, 0.03392763, -0.021281958, 0.06326239, -0.03273202, 0.04498069, -0.010034537, -0.012983191, 0.029639248, 0.053939823, -0.011497988, -0.029446779, 0.010912993, 0.019682877, -0.006482559, -0.02374619, 0.0653561, 0.005178666, -0.051282957, 0.018702673, -0.019332618, 0.060149822, 0.028451592, 0.025929146, 0.01275792, -0.036485266, 0.005568445, -0.0038294285, 0.010116999, -0.01649847, 0.019435406, 0.003597069, 0.014762592, 0.025567846, 0.006076046, 0.03647493, 0.04288448, -0.021600604, 0.006020564, 0.0036654256, -0.09431438, -0.058385756, -0.06512907, -0.017761063, 0.016172389, -0.0074836705, -0.042300668, 0.038371578, 0.0033082056, 0.052837178, 0.030584663, -0.02294675, 0.05173836, -0.07166699, -0.016232934, 0.042064622, 0.04325112, 0.016015084, -0.02041898, -0.040430624, 0.021989489, -0.007410305, 0.053236775, 0.03361834, -0.044762433, 0.029637614, -0.0074636512, 0.014214016, 0.043903906, -0.0012246948, 0.046031058, 0.012523171, 0.016237386, -0.020654099, -0.00026162472, 0.01976669, 0.018343661, 0.05277379, -0.06433571, -0.04056606, 0.037103944, 0.027120395, 0.03586318, 0.048000284, 0.057835486, 0.0069238287, 0.028737806, -0.012478276, -0.008469227, 0.06029307, -0.0330329, -0.018811507, -0.026565963, 0.06398148, 0.011210375, -0.010831196, -0.048230875, -0.0063738953, 0.02874038, -0.04170475, -0.03319858, -0.0027577071, -0.0049486053, 0.0005642822, 0.012103391, 0.061160725, 0.023675214, -0.043552276, 0.076068275, -0.07032367, -0.005252388, -0.01144673, 0.04882869, 0.024244959, -0.014743192, 0.021026317, -0.054652147, -0.07114058, 0.011421903, -0.026905678, 0.043863676, 0.05520776, -0.004625273, -0.0076402472, 0.034361042, 0.029033639, 0.019172847, 0.03120647, 0.02529516, 0.010903879, 0.023614034, -0.03556165, 0.037620265, 0.0014989232, 0.03991988, 0.06426519, 0.022509247, 0.043757204, -0.0007819113, 0.014097849, -0.024292544, 0.013433514, 0.055776145, -0.04364719, -0.03839953, 0.0354779, 0.003530041, -0.007778688, -0.044521503, -0.010390894, -0.0019217976, -0.082629524, 0.036297355, 0.0512218, -0.0002258582, 0.020654473, -0.030886132, -0.017128067, -0.015470449, -0.046479125, 0.037263718, -0.0041316235, -0.044463653, 0.0076887966, -0.004776027, -0.017821614, -0.029832285, 0.051776342, -0.017797709, -0.011705907, 0.015360152, 0.04913137, 0.0054625357, 0.030830976, 0.01921566, 0.06392189, -0.014207128, -0.015388464, -0.03179669, 0.06292127, -0.05397204, -0.03244299, 0.034726385, -0.010018699, 0.0032702645, -0.006202364, 0.0005550031, 0.05207153, -0.017774886, -0.02073016, -0.017952725, 0.026043106, 0.018330632, -0.054831512, 0.007221337, -0.007148451, 0.012856364, -0.0067715314, -0.005375507, -0.014759757, -0.023921749, -0.008554835, 0.016221851, -0.039392218, 0.008023451, -0.014178304, -0.00036713452, -0.046337336, 0.03292296, -0.039503608, -0.029054742, 0.02214437, -0.015422792, -0.04240787, 0.024371224, -0.04528886, -0.0007114279, -0.09695658, 0.027552787, -0.025866996, 0.072088964, -0.022850394, -0.0093455305, -0.054056484, 0.009565815, 0.01894344, -0.034732524, -0.014826034, 0.037213713, 0.010864719, -0.04938541, -0.02809361, -0.056046635, 0.045230296, -0.014364728, 0.046668723, 0.01855719, -0.09668815, 0.046043586, 0.023559963, 0.02254523, 0.0053395606, 0.058835022, 0.027162565, 0.028904617, -0.043133598, -0.03067025, -0.022744033, -0.05462154, -0.037037548, -0.014781324, 0.012628068, -0.00576946, -0.035675995, -0.00899034, 0.025464896, 0.040409066, -0.035535973, 0.010795714, -0.021342352, -0.0104564605, -0.033505, -0.03560715, -0.010570944, 0.016478699, -0.0041646776, 0.04111131, -0.035927728, 0.044934757, 0.018753918, -0.012945399, -0.08917209, 0.011770752, 0.0126697095, -0.079364955, 0.016448192, -0.011240926, 0.003548995, -0.022731002, 0.018580616, -0.044901986, 0.057928156, 0.012202372, -0.017708756, -0.0687257, 0.011523497, 0.0024122412, 0.04428218, 0.057624508, -0.068430185, 0.008732514, -0.0514899, 0.015674612, -0.05526158, -0.0063645686, -0.02474914, -0.051827565, 0.05123248, 0.02508696, 0.015394568, 0.030945865, -0.02457255, 0.03172016, -0.044997316, 0.022255046, 0.061581407, 0.005093279, 0.0255877, 0.0066544753, 0.025050921, 0.025823837, 0.019281626, -0.018251283, -0.017749393, 0.0060804863, -0.042271145, 0.08676204, 0.016170014, 0.024830537, -0.055808045, 0.0069859866, -0.046474323, 0.071946114, 0.017600905, -0.014108236, -0.023778582, 0.06961601, 0.001601941, 0.048935845, -0.0064999145, -0.013871792, 0.0068864212, -0.03532525, 0.008443252, -0.03102559, -0.032716475, -0.02800164, 0.022684915, -0.004198477, -0.03895761, -0.029280122, -0.0028942367, -0.010054164, -0.06498397, 0.0012360835, 0.04492495, -0.031601932, 0.036167413, -0.01841784, 0.014501136, -0.024036648, 0.009549178, 0.04345637, 0.007360058, 0.004559623, -0.003877909, 0.005255959, -0.09674509, 0.014450565, 0.068184175, -0.022976773 ] }, { "values": [ 0.0018744495, -0.00515677, -0.026502118, -0.03397134, 0.023012992, 0.010251263, -0.0032888213, 0.013494457, -0.038195737, 0.045482915, 0.009609978, 0.021709932, 0.023683742, -0.0047481586, -0.048187338, -0.029408582, 0.030503476, -0.019595413, -0.06427447, -0.045213014, -0.011070952, 0.036119744, -0.0012926267, -0.09071698, -0.03203701, 0.038413007, 0.038297586, -0.04175565, 0.020474672, -0.043582257, 0.017876316, 0.03155624, -0.04637486, -0.034694314, 0.06199011, 0.03948562, -0.043083824, 0.0076609, 0.038570568, -0.024179827, -0.039856356, 0.012806345, -0.017564468, 0.018326838, -0.05208386, 0.026570013, 0.017052766, 0.024670543, -0.028940553, 0.06854108, -0.002476645, 0.021984225, 0.016826173, 0.028855834, 0.016511468, -0.020795401, -0.074837506, -0.044962913, 0.06155601, -0.028938342, -0.0028176818, -0.008936279, -0.006098509, -0.020419406, 0.030022766, -0.034490053, -0.02189213, -0.037698817, -0.027548242, 0.01740037, -0.04853301, 0.008228758, -0.06990457, -0.019182947, 0.008532576, 0.011614767, 0.011861649, 0.04392548, -0.04470299, 0.008017796, -0.03894646, -0.007590814, 0.07260397, 0.021540284, 0.045917783, 0.0028559924, 0.016040392, -0.058560673, -0.02114094, 0.0028707143, 0.057811104, -0.023890281, -0.041289885, 0.013175825, 0.025530927, -0.014941374, -0.028403508, -0.103387885, -0.009808175, 0.10449777, -0.0033424147, 0.00060582336, -0.014537996, -0.022828048, 0.053360447, 0.01050946, 0.011246709, -0.06761459, -0.027234543, 0.054724503, -0.025262265, -0.035968695, -0.012717509, 0.022079937, 0.0004333757, -0.027789677, -0.00094801595, -0.05401461, 0.017335678, -0.030381575, 0.03696559, -0.03877658, -0.029252771, 0.064677194, 0.016054641, 0.004967757, 0.01954393, 0.007168953, -0.02324501, -0.06909346, 0.083133385, -0.123898424, 0.0073322114, -0.018407596, -0.044733264, -0.032743506, 0.019112132, 0.06746889, -0.0020056933, 0.007848271, -0.004217918, -0.0069033056, -0.031461366, 0.026054507, -0.009417315, -0.021315815, -0.008854327, 0.0073612723, -0.00022059515, 0.021105949, -0.044844232, -0.03533984, 0.04273141, -0.014560147, -0.034447595, 0.024926256, 0.08508461, -0.035975754, 0.04407008, -0.033953283, 0.035195805, -0.030356202, 0.019280273, -0.0099578565, -0.039537456, -0.016028317, 0.032374553, -0.09083137, 0.008050474, -0.030617898, 0.02617901, -0.015542831, -0.010591033, -0.09814978, 0.022075843, 0.0057647494, -0.033960346, 0.021284027, 0.0015642527, -0.002247137, 0.06529572, 0.018049303, -0.008308198, -0.027158743, -0.059057325, -0.021421377, -0.03352403, 0.08078229, 0.026894279, 0.024799535, -0.037930425, -0.045351204, -0.011235638, 0.07049696, 0.022340609, 0.023352256, 0.052771978, 0.0019006849, -0.0040124347, -0.039946713, 0.059719015, -0.019689815, -0.011265407, 0.03811835, -0.02318741, -0.008069594, -0.052686095, -0.0079508405, 0.028873932, 0.024910819, -0.036192656, -0.003657957, 0.033415675, -0.08174106, -0.016148387, 0.0027236782, 0.056752168, 0.094908044, 0.026649125, -0.053916443, 0.0060361177, -0.03228041, 0.03828374, 0.00611755, 0.037247762, -0.03311986, -0.016832083, -0.06166997, -0.004850517, 0.041099284, -0.026774256, 0.02145874, 0.027127245, 0.002655445, -0.008485161, 0.021784173, -0.015928943, 0.018166313, 0.011846619, -0.0037632682, -0.0025653169, 0.0018467072, 0.015489179, -0.013974994, 0.011170093, 0.05938411, 0.078607745, 0.08862859, -0.028570663, 0.00082944654, -0.0063095745, -0.02368416, -0.10490038, 0.03547531, -0.06411082, -0.020357626, 0.0592113, -0.06937553, -0.00909984, -0.0396357, 0.013845373, -0.015265083, -0.037984814, -0.06342227, -0.012333169, -0.06669089, -0.022153422, -0.03179634, 0.07240771, 0.020721776, 0.027427534, -0.003696883, -0.055604067, -0.05400315, 0.03776031, 0.012449543, -0.015601403, 0.021691311, -0.035788976, -0.03241543, 0.050755166, -0.0007353305, -0.03534345, -0.022024764, 0.0021891093, -0.039517343, 0.004829932, 0.03746338, -0.060638577, -0.07139345, 0.062300783, 0.041622005, 0.03053767, -0.0013154953, 0.010035961, -0.016882474, 0.016358452, 0.0029660733, 0.0020493253, -0.0021753726, 0.012407506, 0.07794101, -0.034257155, -0.008530353, -0.06005869, 0.057352036, -0.016834078, -0.024963256, 0.008813268, 0.0035386563, 0.011649551, 0.080359444, -0.04560367, -0.0073748385, 0.012633663, 0.02259554, -0.12250234, -0.011185221, -0.0520598, 0.0021990924, 0.010764562, 0.039749473, -0.02397303, -0.0076420805, 0.02809109, -0.040696263, -0.028613, -0.009063185, -0.002176921, -0.014436916, 0.0030764095, 0.027036984, 0.01768236, 0.009825653, -3.4748875e-06, 0.0037593981, -0.008828822, -0.01997184, 0.0404372, 0.019244924, 0.011930303, 0.018624255, 0.06551536, 0.014765861, -0.016269812, -0.065757096, 0.016063161, -0.01981597, 0.07023602, -0.055807386, -0.06991643, 0.057614945, 0.012248253, 0.0088898875, 0.068317786, 0.01584234, 0.0055398187, 0.030383868, 0.046091612, -0.02233655, 0.002890891, 0.03472677, 0.004943438, -0.0026607555, 0.018073453, -0.03347959, 0.043441687, 0.011551762, -0.015590172, -0.05256031, 0.007391853, 0.051798467, 0.02918875, 0.0045644464, -0.036446184, -0.09890419, -0.016619466, 0.02507435, -0.018750843, -0.054832194, -0.04753683, -0.0484203, 0.009737439, -0.03425094, -0.023326084, 0.032030363, -0.050478287, -0.008087191, 0.009610407, 0.005820733, -0.031553414, 0.023683773, 0.00028858453, -0.036893465, -0.0074018245, 0.02135779, -0.011726612, -0.012476078, 0.030024368, -0.02661521, -0.012714407, 0.0054039275, 0.013777964, -0.011824397, 0.00935191, 0.0022912398, 0.04135788, -0.011759049, 0.046138562, -0.007864961, 0.063339405, -0.034347527, 0.027765676, -0.008147823, -0.0031015647, 0.0052714157, 0.029397247, 0.0008406601, -0.020807622, 0.01520061, 0.014613223, 0.0055195647, 0.002803439, 0.046614613, 0.0018382225, -0.083533585, 0.024444578, -0.021510297, 0.04402345, 0.0129621895, 0.011097627, 0.027025796, -0.04626772, 0.013011418, -0.024779253, -0.0024489388, -0.028765853, 0.019071642, 0.0011748837, -0.0037217773, 0.026219927, -0.002242971, 0.040657897, 0.021005858, -0.015711663, 0.024464032, 0.03202072, -0.07125866, -0.06643392, -0.052924555, 0.010078638, 0.027673243, -0.018545538, -0.046408944, 0.02797291, -0.013553817, 0.05076443, 0.027734349, -0.04191493, 0.04957126, -0.05273164, -0.026709607, 0.035565875, 0.047222942, 0.036390845, -0.030601451, -0.038042936, 0.01710132, -0.0073816576, 0.03619447, 0.018124174, -0.048194792, 0.031846955, 0.011232355, 0.024170088, 0.04259708, 0.0040106326, 0.008334602, 0.022401808, 0.020953799, -0.03967587, 0.034188002, 0.017657287, 0.01636724, 0.049924146, -0.069599524, -0.03668993, 0.009181498, 0.02467673, 0.0017709342, 0.026539717, 0.05221968, 0.009631967, 0.020893322, -0.0064115673, -0.01912014, 0.07015806, -0.024712078, -0.003939009, -0.02917941, 0.050605174, 0.016169215, -0.015844736, -0.03725113, -0.0073238104, 0.0064799692, -0.025968894, -0.030764325, 0.019825751, 0.0012815284, -0.012049793, 0.02757075, 0.06304836, 0.015148977, -0.056412973, 0.084820375, -0.062086817, -0.0020412896, -0.03795639, 0.054259304, -0.013059389, -0.019990137, 0.034330413, -0.0907852, -0.07674005, 0.003588626, -0.013595828, 0.038987525, 0.02930563, 0.001287006, -0.0029946829, 0.03431261, 0.025272932, 0.01102315, 0.032240205, 0.035517152, 0.011361481, 0.010778228, -0.035492472, 0.047923952, 0.009373275, 0.007750123, 0.069203176, 0.009131838, 0.04081631, 0.0032148194, 0.027166074, -0.015412695, -0.00013271504, 0.05230833, -0.05833922, -0.058581542, 0.033351958, -0.000853663, -0.028275872, -0.037277475, -0.015435228, -0.011611069, -0.08128529, 0.049248505, 0.025092958, 0.005595029, 0.034781326, 0.0014515256, -0.030944964, -0.011153596, -0.029511278, 0.05245304, -0.016297517, -0.039037574, 0.0154834455, -0.02250327, -0.013962143, -0.04053676, 0.045976605, 0.0027483532, 0.0007445697, 0.014525338, 0.049288724, -0.0052020084, 0.032424614, 0.037761245, 0.08557952, -0.023724182, -0.029581988, -0.028950155, 0.042143222, -0.053682674, -0.028399568, 0.028627252, -0.0075361785, 0.015842792, -0.012519135, -0.002257223, 0.036028743, -0.00078591227, -0.020489845, -0.029837828, 0.012805684, 0.01681028, -0.03736026, -0.0023020196, -0.031330753, 0.020177854, 0.0124672875, -0.00077615824, -0.010717424, -0.0107967, 0.030527074, 0.0062411875, -0.01766871, 0.015421196, 0.006977028, -0.009688326, -0.052665528, 0.051405832, -0.034820244, -0.04574767, 0.03960628, -0.047427, -0.013775406, 0.043866847, -0.042306032, -0.002620227, -0.08223643, 0.0036379925, -0.006848074, 0.06935286, -0.027443178, 0.008290614, -0.040031925, -0.012361251, 0.029926764, -0.030149538, -0.0051021664, 0.041389454, 0.018101396, -0.03776331, 0.00218363, -0.042516578, 0.038702186, 0.010498027, 0.038155194, 0.022490386, -0.07457912, 0.0420241, 0.032335, 0.014930818, 0.005431453, 0.0286804, 0.0072025284, -0.01364432, -0.0257899, -0.045273572, -0.027203348, -0.048838187, -0.0207386, -0.010364271, 0.010213532, -0.007664154, -0.0504424, -0.007331119, 0.015127512, 0.050083853, -0.026717134, -0.016670022, -0.032858286, 0.005828228, -0.042242266, -0.06729316, -0.014279629, 0.03138709, 0.01933411, 0.057721894, -0.055361107, 0.04532134, 0.0363696, -0.016161002, -0.070019305, -0.0004041158, 0.009931058, -0.06373571, 0.021411048, -0.008642579, -0.00023910227, -0.040680185, 0.011616972, -0.042996366, 0.030811267, 0.0062716953, 0.016595826, -0.048395038, -0.00972444, -0.014628542, 0.015316529, 0.07996268, -0.057642013, 0.01865429, -0.080432944, 0.0027394958, -0.05062441, -0.005462152, -0.052740924, -0.01978098, 0.04068008, 0.04758239, 0.007865932, 0.035112478, -0.039702475, 0.026253922, -0.05112116, -0.014691873, 0.05743579, -0.008390841, 0.034038655, 0.017311914, 0.032896765, 0.021560157, 0.03267535, 0.031370815, -0.009099349, -0.00566196, -0.030351542, 0.07851527, 0.015461547, 0.022982137, -0.0679355, -0.016720481, -0.060041517, 0.062649794, 0.0025408277, -0.016769255, -0.030920397, 0.067690454, 4.793896e-06, 0.02949177, -0.03996378, 0.004230085, 0.017591322, -0.015421547, 0.01741192, -0.02811039, -0.020891305, -0.0016112587, 0.03283579, -0.013798067, -0.047562722, -0.05631755, 0.0011424404, 0.00064882264, -0.08201176, 0.021295534, 0.04878106, -0.027302878, 0.03483579, -0.024359433, -0.013764036, -0.019119954, 0.0024164028, 0.041283347, -0.008405388, 0.025782939, -0.020446748, 0.024299765, -0.067538865, 0.033390697, 0.083805084, -0.025660288 ] }, { "values": [ -0.0109310355, -0.012030187, -0.027878739, -0.027306253, 0.012084135, 0.025648955, -0.021792812, 0.01216837, -0.010560683, 0.042140946, 0.0019345712, 0.013271303, 0.019367896, -0.0024445937, -0.042883363, -0.035213042, 0.026553037, -0.03464067, -0.07944874, -0.055811774, 0.009005553, 0.039987903, -0.004574493, -0.07314041, -0.039869513, 0.012733123, 0.06675992, -0.035360366, 0.0055854567, -0.041458678, 0.0050121984, 0.022146916, -0.033249397, -0.049816858, 0.01240044, 0.06943694, -0.068185635, 0.0044933823, 0.035482615, -0.026528878, -0.0518899, 0.009225444, -0.017703848, 0.028207285, -0.047805164, 0.035534915, 0.032900214, 0.027455453, -0.03946312, 0.052942943, -0.020224215, 0.0067235027, 0.0073072067, 0.03393988, 0.021242911, -0.023409428, -0.06063258, 0.0040510916, 0.045257706, -0.040923744, 0.005873978, 0.020954793, -0.00535932, -0.019846894, -0.010051756, -0.049306784, -0.02661339, -0.023338033, -0.00790716, 0.018480709, -0.062411524, -0.010760011, -0.079814784, -0.0045746844, 0.007843103, 0.0027769927, 0.03167332, 0.009224901, -0.02300673, 0.034975905, -0.004773332, 0.002823865, 0.051938668, 0.0014720601, 0.017580356, 0.003136315, 0.03428125, -0.056048457, -0.024109852, -0.0039633117, 0.040732406, -0.012626916, -0.077350564, 0.01653476, 0.0018251642, 0.0027172195, -0.024162957, -0.10544486, -0.0059074787, 0.07486376, -0.009632653, -0.01376624, -0.010378152, -0.031811938, 0.0355877, -0.0025762874, 0.010328689, -0.057634003, -0.04635176, 0.0387797, -0.019811194, -0.04952823, 0.00070197345, 0.03723721, -0.033154864, -0.028726645, -0.031230157, -0.05502033, 0.019287748, -0.030604698, 0.024522502, -0.03491663, -0.014164792, 0.07302791, 0.016818501, 0.008154698, 0.010638219, 0.01542344, -0.043381393, -0.047922257, 0.109646894, -0.11545074, 0.02097398, -0.033287253, -0.03559735, -0.03586386, 0.068706304, 0.05342632, -0.0038717715, 0.008273577, -0.007721394, -0.0029840008, -0.059327736, 0.031408496, -0.0068723834, -0.02868195, -0.033325013, 0.0024788252, -0.01909726, 0.034157157, -0.03285562, -0.060374245, 0.038132787, -0.017405448, -0.039610174, 0.030711086, 0.06898438, -0.034405824, 0.04505385, -0.0379166, 0.036021024, -0.0328472, -0.010726113, -0.023749461, -0.018679677, 0.018765219, 0.03153821, -0.092106484, -0.01576435, -0.037869286, 0.0064321426, -0.021240788, -0.037205897, -0.09167771, 0.00022940044, -0.0052659423, -0.030870937, 0.012917065, -0.0059306375, -0.01541157, 0.080647446, 0.060303047, -0.026624138, -0.024474759, -0.056778673, -0.019503819, -0.012268787, 0.07386555, 0.031878058, 0.031040026, -0.04543951, -0.031220263, -0.0005988141, 0.08401075, 0.015000289, 0.03064074, 0.047957893, 0.0055113616, -0.021350387, -0.025986614, 0.047445465, 0.0018378488, -0.03734387, 0.04984123, -0.028577156, 0.015374894, -0.05465527, -0.014613903, 0.023818217, -0.0076784114, -0.022578575, 0.01052876, 0.042285044, -0.09432051, -0.0181866, -0.00047305846, 0.06831095, 0.08165553, 0.032511864, -0.043942664, -0.03094568, -0.047178853, 0.023035178, -0.00035409984, 0.03438921, -0.0029691663, -0.0063500972, -0.043565366, -0.015905496, 0.018259997, 0.0035473416, 0.029377187, 0.02300222, 0.012668326, -0.0043698, 0.02120319, -0.017546467, 0.032571465, 0.019709382, 0.016269606, 0.0009837322, -0.023764018, 0.00090362714, -0.0064052376, -0.007408395, 0.05975103, 0.07390042, 0.09072106, -0.0149165075, -0.017343892, -0.03704426, -0.016544038, -0.09836286, 0.022800894, -0.061672304, -0.024319291, 0.06863102, -0.06454514, 0.003774778, -0.028423505, 0.0066210926, -0.019687094, -0.039378412, -0.054570332, 0.0026111202, -0.048522808, -0.03385906, -0.035662696, 0.06105675, 0.0074785952, 0.029246937, -0.0017684, -0.06778644, -0.054915085, 0.030287493, 0.028721342, -0.00993788, 0.0010813802, -0.015168795, -0.037031796, 0.038700145, -0.002315954, -0.007477527, -0.03252531, 0.002196911, -0.024718646, -0.0049520587, 0.044533446, -0.041627407, -0.05706196, 0.045488227, 0.042280767, 0.02143433, -0.02029238, 0.014593017, -0.0062524606, 0.00778131, 0.00020615546, -0.018847585, 0.019032558, 0.0012971731, 0.083290115, -0.04740586, -0.016378362, -0.049066123, 0.0444618, -0.010299997, -0.019416587, 0.0052321176, -0.01749812, 0.013793646, 0.0569247, -0.046336588, -0.007854233, 0.002890543, 0.0066091954, -0.13688302, -0.02164331, -0.051427696, 0.029808298, 0.01447516, 0.015623168, 0.007738829, -0.012237541, 0.046885177, -0.022598641, -0.021423912, 0.0033949406, 0.007475484, -0.0060186307, 0.0031013782, 0.049503334, 0.034943126, 0.017511977, -0.012453307, -0.009616171, -0.004547291, -0.026334006, 0.055234727, 0.029545251, 0.02792514, 0.02101743, 0.06710079, 0.025259996, -0.0017416304, -0.070532605, 0.029531714, -0.0035500282, 0.048318677, -0.08118779, -0.0630471, 0.06403989, 0.006373668, 0.0101258345, 0.055178232, 0.005760825, -0.0061567537, 0.018124944, 0.023911186, -0.008702138, 0.0058275517, 0.029931553, -0.0099194, 0.005473028, 0.031207655, -0.010601019, 0.045466788, 0.029857874, -0.008630159, -0.05119931, 0.014948424, 0.028085725, 0.019738836, 0.027377186, -0.03415488, -0.06795899, -0.015539864, 0.03458494, -0.014665354, -0.06970144, -0.03304994, -0.064498164, -0.00372515, -0.02817273, -0.03186245, 0.03222504, -0.03300082, 0.021095544, 0.0062685036, 0.0051875706, -0.042094417, 0.028819488, 0.009162355, -0.03138417, -0.016388396, 0.027961949, -0.012083814, -0.025457704, 0.016149247, -0.025154063, -0.0008979159, -0.010014815, 0.027025849, -0.028334703, 0.009010161, -0.0064920792, 0.044085238, -0.0177366, 0.04027703, -0.030110748, 0.07009906, -0.0140790325, 0.019811464, -0.01966922, -0.02386892, 0.00061527075, 0.050074857, -0.013465799, -0.008942751, 0.00676471, 0.016878594, 0.022304831, 0.004245038, 0.014140817, -0.01296544, -0.060568158, 0.006683133, -0.01214767, 0.04990723, 0.029470831, 0.009409834, 0.010466018, -0.04196591, 0.0072717015, -0.015761519, 0.020381497, -0.025955865, 0.03602313, 0.0069209007, 0.0049380003, 0.028979609, -0.0037772718, 0.018595655, 0.027146662, -0.01655308, -0.007096715, 0.019937335, -0.06774669, -0.07451185, -0.044539455, -0.007889543, -0.0023259963, -0.02371071, -0.02852272, 0.031167736, 0.0062902365, 0.039036218, 0.016613776, -0.054490093, 0.051125467, -0.07299554, -0.0122203585, 0.04127531, 0.04432717, 0.025339084, -0.022992859, -0.052556295, 0.02982941, 0.016706588, 0.0762047, -0.000558206, -0.06008282, 0.05753283, -0.012197443, 0.021542383, 0.058003884, 0.0075511667, 0.039480347, 0.037503384, 0.021016773, -0.026722623, 0.014464246, 0.030115917, 0.035757083, 0.069780074, -0.07041718, -0.012081254, 0.026164152, 0.028505161, 0.0040744003, 0.03676625, 0.065992445, 0.008176178, 0.02659854, -0.0032062973, -0.022517595, 0.04753534, -0.036719803, 0.0022085086, -0.015977554, 0.04079442, 0.008758374, -0.018364258, -0.06587539, 0.00484676, 0.008494426, -0.0602204, -0.045102295, 0.0032744296, 0.0020125378, 0.0051774676, 0.024670998, 0.047678214, 0.028877567, -0.04139908, 0.07168974, -0.07548444, -0.03335859, -0.010764483, 0.04314341, 0.022073941, -0.007978262, 0.03429743, -0.06853637, -0.0859728, -0.0008284176, 0.0027260892, 0.046325598, 0.05502403, 0.008045936, 0.0062314966, 0.027638976, 0.0043183425, 0.021530088, 0.027085522, 0.014118733, 0.027923472, 0.022951467, -0.039018493, 0.012157906, 0.025191784, 0.019915177, 0.06306246, 0.0022697828, 0.0521298, -0.00851381, 0.036096558, 0.00833598, -0.008542248, 0.043010022, -0.024538035, -0.047190778, 0.054111347, -0.006985219, -0.0042333333, -0.03418033, -0.031971674, -0.011991842, -0.082581945, 0.037809838, 0.021524163, -0.0051493966, 0.044746947, -0.027137209, -0.033069424, -0.036106937, -0.020675538, 0.040683687, -0.016923226, -0.05307465, 0.011436201, 0.004446622, -0.035372872, -0.029628819, 0.03316785, -0.0103596775, 0.005038743, -0.0014047459, 0.04598571, -0.006068467, 0.015443774, 0.017942412, 0.07285106, -0.03039154, -0.028360425, -0.009399955, 0.03213087, -0.05870872, -0.031177202, 0.018773569, -0.011427743, 0.016953241, -0.03580766, 0.0032072158, 0.044336807, -0.008818122, -0.0009514737, -0.019152848, 0.022178076, 0.0100751845, -0.033667695, 0.0033788888, 0.014016599, 0.0061502066, 0.003731801, -0.014627518, -0.0032974393, -0.034866016, 0.02847452, -0.001818177, -0.030176079, 0.017880453, 0.015612907, -0.013878336, -0.05766079, 0.036340676, -0.04703514, -0.032485943, 0.0517513, -0.027549388, -0.00880852, 0.038431745, -0.05106116, 0.0064155646, -0.09253575, 0.016575811, -0.024261681, 0.07073688, -0.020802869, 0.0069876667, -0.062182993, -0.005587067, 0.015600975, -0.043038707, 0.009808501, 0.028410831, 0.0088773845, -0.047976457, -0.013418227, -0.053166658, 0.06262271, -0.010365125, 0.019548288, -0.0032783225, -0.09388422, 0.055699263, 0.023247637, 0.014103729, 0.015662232, 0.05722407, 0.03703025, 0.035835095, -0.04734753, -0.043035805, -0.03632053, -0.049355563, -0.013362528, -0.0024988097, 0.019546952, -0.0053042322, -0.04741652, -0.006965623, 0.026962658, 0.057776593, -0.025178313, -0.011017086, -0.02609388, -0.013887601, -0.029235827, -0.04679992, -0.004030463, 0.033713404, 0.0026551494, 0.045092367, -0.04189976, 0.034809824, 0.026833056, -0.0201332, -0.07187067, -0.0032763155, 0.0097715175, -0.070479706, 0.03298779, -0.01806877, 0.01567384, -0.041625466, 0.007497015, -0.05034967, 0.042933024, -0.006442663, 0.016407268, -0.072079286, 0.028002393, -0.008436633, 0.0275419, 0.052394904, -0.063032605, -0.006402537, -0.080439314, 0.012199937, -0.0709018, -0.027001603, -0.03331663, -0.037953928, 0.04054098, 0.03652956, 0.016501362, 0.043363586, -0.025215892, 0.020176176, -0.033359397, 0.0017273051, 0.05317709, -0.014861416, 0.032222755, 0.021400241, 0.017904708, 0.019668302, 0.018578853, 0.00109478, -0.008780228, 7.566863e-05, -0.026115973, 0.08508214, 0.008975625, -0.00624812, -0.059673883, 0.0016809335, -0.06513471, 0.060494773, 0.029483343, -0.013066885, 0.005374298, 0.04301283, 0.014201765, 0.03573993, -0.0052966373, -0.002125294, -0.0042244657, -0.001154037, 0.0103937285, -0.01899332, -0.015465988, -0.027800733, 0.04255883, -0.00064679736, -0.04591681, -0.012594806, -0.00834163, -0.026752869, -0.069847934, 0.011491078, 0.032810163, -0.034802586, 0.060266476, -0.0009608273, -0.0052013113, -0.030231835, 0.023008574, 0.040559717, -0.013773103, 0.026312903, -0.026490582, 0.0132564595, -0.092033766, 0.030066399, 0.06358811, -0.023143083 ] }, { "values": [ -0.017991774, -0.017372172, -0.051979776, -0.046099134, 0.026685227, 0.017350111, -0.019497585, 0.014112028, -0.013189663, 0.047601722, -0.005777938, 0.017304443, 0.01616773, 0.009582877, -0.041307528, -0.05127592, 0.012171513, -0.023208367, -0.059991617, -0.07597586, -0.014875013, 0.02336624, -0.008837058, -0.0792253, -0.04450907, 0.04166877, 0.049360353, -0.041191828, 0.015087244, -0.04379956, 0.009658689, 0.022732807, -0.022579866, -0.031446356, 0.048137087, 0.03583646, -0.061245523, 0.014357396, 0.016188499, -0.030413413, -0.04245742, 0.028251685, -0.019441605, 0.026937233, -0.049787514, 0.03289585, 0.028344406, 0.009295604, -0.047414556, 0.05820179, -0.019710405, 0.009615147, -0.0055877483, 0.013641777, -0.0016518612, -0.020932615, -0.038735233, -0.034534063, 0.058326673, -0.0488715, -0.0049248384, -0.011152442, 0.026854249, -0.0114795985, 0.024934612, -0.0512395, -0.015326097, -0.022265784, -0.007581035, 0.014252786, -0.056539237, -0.0051954994, -0.06082384, -0.013349131, 0.002371044, 0.008970512, 0.025634734, 0.039718717, -0.0327293, 0.011953221, -0.02829972, -0.008477421, 0.08556315, -0.0026144602, 0.029354867, -0.0066492665, 0.013797743, -0.039698776, -0.023061875, 0.019435968, 0.0648199, -0.04036815, -0.044884786, 0.023741819, 0.02105997, -0.0011137986, -0.030821875, -0.08893282, -0.0044569327, 0.08831305, -0.006166722, 0.0016714174, -0.031797323, -0.02382031, 0.040828392, -0.011528785, 0.024018822, -0.065118074, -0.041026037, 0.04668701, -0.008884455, -0.04945159, -0.0112683335, 0.0136576, 0.00011403134, -0.022962054, -0.022518158, -0.017060999, 0.0115450425, -0.01879122, 0.046913665, -0.021591924, -0.0077777025, 0.073156044, 0.021964937, 0.003620813, 0.03023922, 0.005988822, -0.031588912, -0.052025963, 0.08740194, -0.111017704, 0.0005346804, -0.018220207, -0.029932074, -0.029992592, 0.024322588, 0.06502071, 0.006571638, 0.012808072, 0.009616872, -0.00092802016, -0.03124665, 0.015718998, -0.00011011096, -0.04252373, -0.012028244, 0.0005555688, -0.015350392, 0.026421838, -0.07540507, -0.042703703, 0.048442796, -0.027726954, -0.04836153, -0.0015566495, 0.07365077, -0.036060676, 0.056018196, -0.03647828, 0.030127734, -0.029547984, 0.012268147, -0.015017642, -0.037372984, 0.026381468, 0.049605787, -0.09990109, 0.007668944, -0.025322974, 0.027072528, -0.012467584, -0.012807001, -0.10527345, 0.033313822, -0.01506704, -0.030113876, 0.041153975, -7.608126e-05, -0.008266666, 0.08218046, 0.016544485, -0.005888352, -0.030070035, -0.04181368, -0.0077133053, -0.03256988, 0.08255763, 0.020075655, 0.025797348, -0.040849533, -0.036075983, 0.00064752315, 0.073004186, 0.0071213297, 0.0318, 0.05183985, -0.0022139961, -0.01286779, -0.050635315, 0.0630617, -0.02705031, -0.0112979505, 0.035021298, -0.03262966, 0.0013855178, -0.07046327, -0.023599908, 0.031751305, 0.026291098, -0.008860635, -0.013895407, 0.026776444, -0.07843707, 0.0021726813, -0.017559899, 0.06124082, 0.11180744, 0.010851029, -0.045529444, -0.006820335, -0.01694629, 0.021849047, 0.0122887585, 0.019643122, -0.017976165, -0.017609913, -0.051629957, -0.0072109667, 0.027231295, -0.020926137, 0.013736498, 0.024874423, 0.017806623, -0.0027619665, 0.036002737, -0.020246023, 0.026394537, 0.033812266, 0.0025840611, 0.0028650162, -0.0025129854, 0.0010893039, -0.012897409, 0.016972011, 0.03779215, 0.07255632, 0.11357109, -0.022288056, -0.010592634, -0.042945635, -0.0024693995, -0.07821594, 0.030010408, -0.061755016, -0.03617434, 0.06483459, -0.060873512, -0.015791517, -0.032517813, 0.008611989, -0.028190805, -0.034281515, -0.059292294, -0.0043707443, -0.060068768, -0.010966041, -0.03355205, 0.064599745, 0.007676532, 0.020273715, -0.0154392915, -0.059110373, -0.06976233, 0.03588149, 0.008381848, -0.016627433, 0.021203011, -0.028993767, -0.04529777, 0.03978782, 0.0049855034, -0.01740628, -0.019878833, 0.015808675, -0.027629456, -0.006973834, 0.0079215765, -0.042021442, -0.07095757, 0.056276344, 0.053338654, 0.023076823, -0.0009823871, 0.02414951, -0.018811028, 0.0095424345, 0.0083130505, 8.1812665e-05, 0.004584017, 0.015488856, 0.08093254, -0.039019287, -0.004717387, -0.062013514, 0.046074115, -0.009166122, -0.01068534, -0.009562872, -0.00096337224, 0.025570164, 0.068334125, -0.045639098, -0.012687387, 0.0056115803, 0.013429789, -0.12109073, -0.009660109, -0.056047503, 0.005477868, 0.03262511, 0.030956056, -0.02152075, -0.0150223905, 0.043420825, -0.02963816, -0.026624238, -0.0037444865, -0.0030674946, -0.015973348, 0.019807998, 0.02296103, 0.020173328, -0.015639948, -0.009936576, -0.019202847, -0.018133026, -0.026273727, 0.053925484, 0.023299037, 0.025196565, 0.041996848, 0.06173059, 0.012312232, -0.01775648, -0.05301437, 0.021386415, -0.0057390262, 0.06139606, -0.057621744, -0.064306356, 0.053011335, 0.01401815, 0.01267175, 0.07025672, 0.011959652, 0.0029033574, 0.023574136, 0.033389412, -0.03474385, -0.010445345, 0.03372435, -0.01371018, -0.011360926, 0.027450614, -0.028162353, 0.05085246, 0.011648086, -0.012953578, -0.05664253, 0.013697744, 0.041331828, 0.024528936, 0.003224517, -0.023464506, -0.08830786, -0.009852977, 0.032477666, -0.014577838, -0.04739222, -0.05003298, -0.06705708, -0.0036208779, -0.016701574, -0.021961471, 0.043724477, -0.040468633, 0.0019666788, -0.0073572644, -0.013782792, -0.03344054, 0.02711352, 0.015829127, -0.037331205, -0.013821145, 0.02941271, -0.0019459715, -0.0078802975, 0.03293747, -0.022970796, -0.011217958, 0.017997736, 0.00867056, -0.027921183, 0.0070211985, -0.005226141, 0.047287993, -0.02675882, 0.036683913, 0.0032061737, 0.06706897, -0.023780528, 0.032970052, -0.014733336, -0.0035455595, 0.014632302, 0.041442186, -0.004208066, -0.026812436, 0.016403785, 0.006264712, 0.025055118, -0.00021903054, 0.056889314, 0.0095429495, -0.06068646, 0.024016373, -0.013839451, 0.06311846, 0.025626019, 0.01895546, 0.025303105, -0.04065619, 0.012055596, 0.00681339, 0.0039339266, -0.0050888625, 0.03227649, 0.0061560646, 0.0009729427, 0.021515695, 0.0039141327, 0.04999312, 0.019114047, -0.03325005, 0.009026502, 0.028949901, -0.08087893, -0.054066118, -0.047335643, 0.0068549686, 0.014070813, -0.018299203, -0.05464909, 0.039378583, 0.0132076945, 0.047651786, 0.028025113, -0.06426763, 0.04110619, -0.057703044, -0.02660673, 0.024938285, 0.052382685, 0.030977791, -0.039672174, -0.041982614, 0.033553302, 0.023256885, 0.05939674, 0.0129278, -0.049909312, 0.02777228, -0.002327299, 0.016672334, 0.052714124, 0.022014363, 0.02239834, 0.028108463, 0.029593037, -0.04038761, 0.024626823, 0.022197142, 0.034218516, 0.056906026, -0.074163385, -0.015762163, 0.006448221, 0.003982966, 0.012193669, 0.020029861, 0.05826286, 0.013463382, 0.018489163, -0.012488034, -0.025370814, 0.07043985, -0.029799808, -0.0063580605, -0.028074963, 0.052800935, 0.015167699, -0.02023327, -0.044983275, 0.018786974, 0.012352246, -0.031434797, -0.036329757, 0.009155687, 0.00053618476, -0.008531579, 0.024474896, 0.05894816, 0.031513117, -0.054732606, 0.08887911, -0.081797756, -0.008430681, -0.03353175, 0.061634, -0.016504068, -0.012734141, 0.03191943, -0.08483769, -0.08118403, 0.006163887, -0.019271523, 0.03796117, 0.043938182, 0.0038203096, -0.0029272558, 0.045556657, 0.020970304, 0.004797534, 0.017484153, 0.02988818, 0.0059134285, 0.010675847, -0.018693294, 0.045340307, 0.023970002, 0.0033560914, 0.072084524, 0.01979222, 0.048681963, -0.005986061, 0.017516365, 0.0022677616, 0.00013443945, 0.07208433, -0.003605381, -0.047179792, 0.030616475, -0.014320048, -0.008310332, -0.028927214, -0.03719756, -0.02658285, -0.069997594, 0.047277417, 0.028992828, -0.002437911, 0.027602471, -0.011131928, -0.040927768, -0.031422623, -0.020674856, 0.040981278, -0.029242542, -0.04775192, 0.011993821, -0.029003989, -0.03613481, -0.03743985, 0.027632609, -0.0094976025, -0.0070564942, 0.009166597, 0.054707345, -0.011313117, 0.042710066, 0.047461305, 0.06679514, -0.03489218, -0.034120046, -0.024978362, 0.03419545, -0.07005244, -0.0161417, 0.027394492, -0.009876531, -0.0023204186, -0.016894067, -0.0023702383, 0.036748007, -0.003175608, -0.0074209548, -0.034809213, 0.026631664, 0.00016989697, -0.028649561, -0.024856627, -0.0057583675, 0.012294579, 0.006326175, 0.009437128, -0.00255007, -0.026014807, 0.029962238, 0.0040422706, -0.025066638, 0.01743109, 0.031268414, -0.021400133, -0.060586527, 0.032423716, -0.042012732, -0.039060786, 0.07089746, -0.02907568, -0.0019293508, 0.041084208, -0.034177393, 0.016273517, -0.072701745, 0.015608593, -0.023661966, 0.069295295, -0.029209815, 0.005776272, -0.06480775, -0.012587482, 0.039855603, -0.044733595, -0.0028414757, 0.03547151, 9.242988e-05, -0.040363368, -0.014323917, -0.058369335, 0.049653925, -0.008551514, 0.031283442, 0.03143312, -0.07281368, 0.043622755, 0.01624232, 0.019596342, -0.0035775925, 0.033778466, 0.0156161655, 0.004090868, -0.040293347, -0.039826527, -0.038236566, -0.047447685, -0.032949, -0.010660714, 0.0017038439, 0.013536555, -0.04343931, -0.015931256, 0.022497635, 0.072722934, -0.028634598, -0.015734984, -0.048463933, 0.0010881901, -0.024711238, -0.059836615, -0.004146437, 0.041776706, -0.00011355365, 0.043106325, -0.051071864, 0.037611995, 0.023927826, -0.023638701, -0.079518236, 0.0034293812, 0.012221392, -0.057385202, 0.026438195, -0.0060316795, 0.024494017, -0.03313195, 0.0057078428, -0.044555955, 0.0386826, 0.02185577, 0.027124044, -0.044289682, 0.007273772, 0.009970951, 0.020629933, 0.0751372, -0.06146932, 0.026446953, -0.078874156, 0.0025003676, -0.052578945, -0.021830251, -0.020712119, -0.02285922, 0.019032823, 0.03217802, 0.00549493, 0.020887565, -0.022059778, 0.020671982, -0.044746652, -0.011462382, 0.04853248, -0.0021565512, 0.01978902, 0.012805244, 0.018699342, 0.03240105, 0.02543597, 0.013264235, -0.008056391, 0.0125383, -0.03184836, 0.0649525, 0.011891743, 0.015099497, -0.08047258, 0.0033686464, -0.06840244, 0.057458345, 0.0035049103, 0.0054197446, -0.003127106, 0.0612525, 0.011717038, 0.040239364, -0.029316382, -0.013409079, -0.0007382409, -0.0012400647, 0.018160075, -0.009235335, -0.016147967, -0.017639529, 0.041060228, -0.014279834, -0.05265753, -0.03775328, -0.0043379082, -0.0026757733, -0.07898356, 0.030706296, 0.030516211, -0.029041339, 0.061293326, -0.010313239, -0.013713416, -0.010491317, 0.01144775, 0.034038965, 0.0005946011, 0.025488354, -0.023601636, 0.018021945, -0.081191756, 0.018814953, 0.06307053, -0.026835652 ] }, { "values": [ -0.024286743, 0.0013947929, -0.04796258, -0.046136938, 0.015543149, 0.025239747, -0.02879415, 0.031864434, -0.021078015, 0.03373069, 0.005296382, 0.0021449684, 0.024941307, 0.03504154, -0.011088656, -0.04721712, 0.0020572252, -0.02953498, -0.08071471, -0.059774708, 0.012334339, 0.025298374, -0.0231782, -0.077106506, -0.042705793, 0.014431038, 0.038227323, -0.047307625, 0.028056001, -0.029086173, 0.0012779572, 0.01704875, -0.025847873, -0.01855292, 0.025400786, 0.06748163, -0.039853383, 0.016846962, 0.027673109, -0.03999873, -0.024235716, -0.0015707164, -0.019880256, 0.04772137, -0.04911606, 0.040451642, 0.020058652, 0.02321613, -0.043883275, 0.04900912, -0.015567694, 0.00953399, -0.016814051, 0.002755498, -0.023524571, -0.03226862, -0.040836267, -0.015855543, 0.06521546, -0.02015442, -0.0138609605, -0.01115974, -0.0027409936, -0.030575322, 0.016554127, -0.024534853, -0.015832782, -0.024468627, -0.017974727, 0.02153493, -0.08277291, -0.004878953, -0.06654871, -0.0139424605, 0.011981573, -0.00200251, 0.04388877, 0.025746735, -0.011550745, 0.010472651, -0.021335682, 0.005368468, 0.060443647, 0.015076882, 0.026134621, -0.023714926, 0.023045788, -0.020986253, -0.032469224, 0.019515835, 0.06339083, -0.034334935, -0.051365055, 0.016473973, 0.032340426, 0.007051651, -0.026349965, -0.07116921, -0.0058053997, 0.06704293, -0.015774045, 0.0073833987, -0.008253566, -0.0134125445, 0.032641556, 0.014763116, 0.019501435, -0.053718988, -0.038157072, 0.043013997, -0.0063027563, -0.0570075, 4.745754e-05, 0.034598056, 0.0014653446, -0.021126503, -0.016020518, -0.020346835, 0.0141491555, -0.036218215, 0.032943357, -0.03055634, -0.0016437183, 0.084540844, 0.02891963, -0.00017927337, 0.007118667, 0.036743462, -0.047680195, -0.013187295, 0.10678943, -0.099404335, 0.031516675, -0.028701153, -0.03273411, -0.020312706, 0.06251418, 0.05059982, -0.0030049165, 0.023523642, 0.008004272, -0.001859281, -0.053098362, 0.022962054, 0.013027594, -0.032369263, -0.018651707, -0.01593896, -0.024552198, 0.02936037, -0.05713366, -0.052202735, 0.061540127, -0.018251035, -0.047938988, -0.0065010246, 0.062280223, -0.0247508, 0.05517842, -0.06797599, 0.029333448, -0.034445815, 0.0050809905, 0.0044208067, -0.033413913, 0.044802427, 0.05564205, -0.08233619, 0.0008734977, -0.032395586, 0.016426364, -0.031329997, -0.03531688, -0.09542472, 0.0057207425, 0.00026539958, -0.04662181, 0.03678539, -0.0132098235, 0.007591904, 0.083116874, 0.0478711, -0.020027619, -0.012374194, -0.03972498, -0.0037415808, -0.0014462703, 0.06398158, 0.031125108, 0.018772291, -0.055765323, -0.010666705, -0.011550931, 0.075696155, -0.001854032, 0.03765926, 0.054544482, -0.02368631, -0.017491192, -0.033033792, 0.04912645, -0.0069290684, -0.022898253, 0.032039434, -0.034456804, 0.006580183, -0.043001093, -0.022946982, 0.046463396, 0.008689649, -0.029502729, -0.017207064, 0.029666906, -0.08291315, 0.006625947, -0.023388939, 0.07424548, 0.1012367, 0.032594703, -0.06421004, -0.024450464, -0.020039776, 0.023333747, 0.017987883, 0.035092272, -0.023019802, -0.0023238342, -0.03941056, -0.022782275, 0.007884378, -0.012414977, 0.03372982, 0.013999704, 0.035714045, -0.007620499, 0.04280653, 0.0066430396, 0.046218436, 0.010870448, 0.010114236, 0.02899448, 0.0003279535, -0.006384853, -0.014059731, 0.016286198, 0.027621407, 0.06292318, 0.09067627, -0.016350862, -0.024610331, -0.026216537, -0.026150577, -0.06929667, 0.035148907, -0.04870477, -0.02420599, 0.055684727, -0.04602091, -0.019679166, -0.031064676, 0.014048893, -0.024793815, -0.039610647, -0.054382775, -0.0033978575, -0.038950846, -0.020554727, -0.01989782, 0.038778856, -0.008352287, 0.008602859, -0.014586775, -0.08095651, -0.04519801, 0.02815552, 0.012829412, -0.011447381, 0.010478861, -0.032595515, -0.035880547, 0.03955406, 0.014567832, -0.011804497, -0.02868832, -0.007646551, -0.030894438, -0.031560868, 0.042149976, -0.039530665, -0.070267245, 0.0380394, 0.061059713, 0.019526089, -0.008481255, 0.033863287, -0.030818406, -0.0021816797, 0.022061605, -0.023162523, 0.019086244, 0.020753907, 0.077286325, -0.041950863, -0.011361077, -0.05204585, 0.07086153, -0.0071203816, -0.011546947, -0.005899609, -0.011503918, 0.021541199, 0.051459625, -0.055876497, -0.028772112, 0.011756353, -0.0076452824, -0.12958534, -0.027206328, -0.048303694, -0.014586461, -0.0024985077, 0.014468181, -0.014347114, -0.014517017, 0.027989969, -0.026708564, -0.02180368, 0.019236932, -0.012171474, -0.0043838783, 0.0138676325, 0.015418596, 0.0134165315, -0.0018457515, 0.006666328, -0.0023030334, -0.024012337, -0.019929744, 0.0429556, 0.022525776, 0.056015484, 0.02997537, 0.054700382, 0.02961783, 0.00024348551, -0.0582414, 0.033923, -0.024399132, 0.040393777, -0.08542883, -0.05107646, 0.046276875, 0.0074332743, -0.0075885383, 0.059461683, 0.019195037, -0.02439918, 0.013584953, 0.017674217, -0.013213532, 0.00589891, 0.035006817, -0.016762352, -0.019190714, 0.032957975, -0.010646455, 0.044718247, 0.014762279, -0.016294463, -0.042968147, 0.028533904, 0.046330377, 0.02169452, 0.007251225, -0.009409737, -0.059012163, -0.005141888, 0.034149207, 0.01173532, -0.0489336, -0.05462411, -0.05914453, -0.003314572, -0.025677728, -0.023338633, 0.03330809, -0.039205045, 0.009132614, -0.0134436395, -0.006859411, -0.032945886, 0.034901556, 0.023537833, -0.039201595, -0.031646352, 0.042747717, -0.00072763354, -0.004165574, 0.027295405, 0.004574677, -0.0025993055, 0.0007426786, 0.035848714, -0.04958495, 0.0072601377, -0.011632027, 0.052670356, -0.012247016, 0.053896748, -0.012121039, 0.065337025, -0.0089500705, 0.023341719, -0.0254066, -0.024517125, 0.014308673, 0.049749486, -0.027274761, -0.025075715, 0.021490015, -0.0006605618, 0.013842659, -0.011236443, 0.046852853, 0.015175872, -0.05327496, 0.014812235, -0.023547556, 0.052203834, 0.03640083, 0.030597592, 0.017824262, -0.045707345, 0.024748815, 0.017686913, 0.0037015118, -0.0120220715, 0.03359856, 0.0044203247, 0.021258948, 0.024324818, 0.0064244675, 0.034576073, 0.026534332, -0.022442162, -0.012124622, 0.008298903, -0.09440252, -0.054225262, -0.053817585, 0.0012586014, 0.009555391, -0.0005635061, -0.03373185, 0.029660787, 0.023519209, 0.046901174, 0.029453784, -0.051365044, 0.05907198, -0.06670101, -0.020041438, 0.024813347, 0.047569513, 0.016537186, -0.0500001, -0.03186447, 0.025457533, 0.008451915, 0.06446835, 0.023382232, -0.05084589, 0.03394376, -0.010903275, 0.006075075, 0.052170165, 0.020633731, 0.03578084, 0.022301769, 0.026142363, -0.038182456, 0.007938732, 0.021204226, 0.037955068, 0.059069134, -0.07804617, -0.007676724, 0.036546487, 0.015452964, 0.01891281, 0.04414837, 0.07285964, 0.043542903, 0.013628214, -0.017658157, -0.026622448, 0.07563858, -0.027183607, 0.0005705078, -0.0036903243, 0.06314438, 0.026758978, -0.011016253, -0.06389753, 0.013662763, 0.040791783, -0.030547552, -0.043554135, -0.00469971, 0.009194292, 0.0010460963, 0.016405018, 0.047334675, 0.026640883, -0.046330914, 0.07976485, -0.09486616, -0.014767644, 0.0014274968, 0.055134624, 0.02817319, -0.019095767, 0.01856948, -0.06840179, -0.066375695, 0.012600653, -0.012352056, 0.027628051, 0.066168405, 0.0014855994, -0.015490007, 0.026115045, 0.0045190617, 0.011523672, 0.008603834, 0.029704133, 0.014654976, 0.019553743, -0.03878719, 0.05841776, 0.030512175, 0.03709481, 0.0667811, 0.018631129, 0.05852174, 0.012063681, 0.016071077, -0.0025499123, 0.0008219794, 0.063750155, -0.021928143, -0.03343357, 0.027268723, -0.0051051853, -0.015631864, -0.031459954, -0.043709498, -0.03695075, -0.0828993, 0.028622169, 0.034367837, -0.0013387688, 0.023435598, -0.036790397, -0.009971405, -0.018918948, -0.021713922, 0.027029287, -0.012640419, -0.043677043, -0.0024487935, -0.024603114, -0.036002293, -0.0069968593, 0.023158694, -0.007529365, -0.0010832689, 0.008383562, 0.036472466, -0.008114951, 0.044995487, 0.038375072, 0.07035977, -0.031844325, -0.018051064, -0.030853298, 0.048238836, -0.05477838, -0.013253705, 0.03408507, -0.012859654, 0.012986304, 0.004013415, -0.0024394658, 0.048716117, -0.027156634, -0.014687325, -0.044581447, 0.031223698, -0.009653462, -0.024464319, -0.00020023936, -0.016316554, 0.036410667, -0.0051603043, 0.000997431, -0.0034450213, -0.020961829, 0.026931457, 0.0036583266, -0.032055568, 0.01531597, 0.0007161579, -0.012827995, -0.043579955, 0.033201598, -0.026566895, -0.018261941, 0.07358695, -0.012403215, -0.026019558, 0.037324764, -0.058700625, 0.01766428, -0.0913218, 0.015664244, -0.012893987, 0.051902507, -0.019311272, -0.0017369782, -0.077433586, 0.0017540626, 0.027947733, -0.04632904, 0.0011450675, 0.025537759, 0.023370827, -0.05252661, -0.033424627, -0.06405814, 0.042394657, -0.026484482, 0.03405015, 0.017413478, -0.08503137, 0.042044107, 0.01652946, 0.028686931, 0.0070550903, 0.054873433, 0.0354002, 0.037858184, -0.024177445, -0.04123068, -0.05783817, -0.04281836, -0.021135464, -0.013823475, 0.015847648, -0.015329239, -0.06848095, -0.02060602, 0.017882388, 0.06815005, -0.03925059, 0.0026278682, -0.026816845, -0.01089916, -0.028086273, -0.04415529, -0.0044497834, 0.019420777, -0.030449819, 0.036229666, -0.0173951, 0.030880228, 0.019177496, -0.030527009, -0.07603492, 0.006336524, 0.021057593, -0.05893471, 0.041725114, -0.007157126, 0.015946237, -0.020393526, 0.009993055, -0.03675042, 0.044299114, 0.018760374, 0.004225588, -0.073578514, 0.02405188, 0.018389096, 0.0397558, 0.08727497, -0.061556973, 0.0015767431, -0.06232929, 0.01105243, -0.061929774, -0.035977885, -0.012209451, -0.049619354, 0.00970263, 0.018158114, 0.023186862, 0.012819951, -0.029482065, 0.03338306, -0.037316907, 0.016925542, 0.06748429, -0.014085413, 0.026222847, -0.0025702144, 0.030168053, 0.013662363, 0.0073901396, -0.0028132596, -0.014555244, -0.0054356293, -0.044434536, 0.09483261, 0.029324416, -0.0063953833, -0.05687396, 0.0130337365, -0.052758995, 0.036134806, 0.011245612, -0.0077830884, -0.027733851, 0.055578984, 0.014831427, 0.06511605, -0.011447759, -0.029025398, -0.016824234, -0.014851681, 0.0131795, 0.0007949273, -0.0430894, -0.031077987, 0.04917188, -0.02435779, -0.039147135, -0.024929726, -0.014748033, -0.027666206, -0.06450993, 0.03833361, 0.05188825, -0.0112284105, 0.069215104, -0.0033987537, 0.017417824, -0.014182814, 0.017242735, 0.02817505, 0.0064076, 0.018259482, -0.0036716661, 0.02173102, -0.09083283, 0.024508854, 0.07391013, -0.031391583 ] }, { "values": [ -0.037491754, -0.0018728756, -0.058170058, -0.060336664, 0.018340366, 0.007570558, -0.011297909, 0.04509677, -0.015487982, 0.03667641, -0.000724928, 0.015206669, 0.017466275, 0.05253827, -0.015564335, -0.06369159, -0.007881233, -0.03949795, -0.07527161, -0.06409086, -0.01967947, 0.04549796, -0.02859963, -0.079374224, -0.029875785, 0.015711103, 0.015784904, -0.06014514, 0.02495781, -0.024675205, 0.026355937, 0.021613715, -0.01645296, -0.027243461, 0.024035806, 0.054188326, -0.042259328, 0.01166499, 0.01767877, -0.033055328, -0.022364818, -0.019275138, 0.008182001, 0.05840735, -0.031196306, 0.03868808, 0.031476703, 0.01107412, -0.05211716, 0.057353433, -0.011942526, 0.03725786, -0.021306561, 0.006348753, -0.022690676, -0.020033302, -0.03381128, -0.0073292297, 0.050374273, -0.00579026, 0.0024867747, -0.0024815067, 0.0057706623, -0.009386657, 0.023977298, -0.03309026, -0.011539352, -0.034585312, -0.018681716, 0.013210276, -0.08830234, 0.011601032, -0.06859689, -0.013450829, 0.01582863, -0.013375025, 0.030263208, 0.03260872, -0.011653726, 0.0027154754, -0.021779139, 0.03995985, 0.09037733, 0.009073356, 0.02822056, 0.013769353, 0.031754, -0.008484526, -0.04402603, -0.0045145443, 0.06097414, -0.05888052, -0.057168055, 0.017298233, 0.047493525, -0.013149646, -0.019370181, -0.098603696, -0.009278426, 0.078489065, -0.021662468, -7.44518e-05, -0.0459498, -0.008913661, 0.0511722, 0.03216497, 0.015871126, -0.05121311, -0.0061792196, 0.036174726, -0.0053549367, -0.062029835, 0.010134282, 0.028292058, -0.009145758, -0.057814498, -0.0090286, -0.02559375, -0.0047365334, -0.0098557575, 0.026214113, -0.03468757, 0.015448861, 0.07819675, 0.0031975093, 0.001019816, 0.052441966, 0.023954188, -0.046279363, -0.03689163, 0.07692999, -0.0827328, 0.026536271, 0.00068636687, -0.031816434, -0.0030356993, 0.053691346, 0.052991036, -0.026813583, 0.03109294, 0.003996074, -0.018670766, -0.024014289, 0.019383786, 0.012507861, -0.03997824, 0.0023895323, -0.036073666, -0.015406431, 0.033409413, -0.09329059, -0.032010783, 0.06364796, -0.033320956, -0.06770292, -0.015814928, 0.07647633, -0.021471586, 0.0553577, -0.067210875, 0.029607203, -0.018963706, 0.004789487, 0.019203238, -0.056296248, 0.057489093, 0.07155276, -0.05126202, -0.009855021, -0.052822977, 8.796334e-05, -0.044352446, -0.011732112, -0.07400377, -0.013396952, -0.017437767, -0.046584867, 0.015383672, -0.03414154, 0.0028577233, 0.06912362, 0.042878006, -0.029513674, 0.0064984886, -0.01090226, -0.007662331, 0.003907214, 0.081917346, 0.022432689, 0.030671852, -0.048617065, -0.02038392, 0.006135586, 0.05889044, -0.003095045, 0.021212392, 0.066256866, -0.025612233, -0.019390773, -0.046132304, 0.021729307, 0.005255229, -0.011893758, 0.0203262, -0.038546436, -0.012902348, -0.05906663, -0.010941517, 0.05019824, 0.015131365, -0.028923959, -0.008504505, 0.016611157, -0.06554723, -0.008402331, -0.033010382, 0.07703505, 0.08436519, 0.031929232, -0.03454066, -0.010131327, -0.023334334, 0.029258747, 0.015011693, 0.031173665, -0.018686669, -0.028626744, -0.022505471, -0.026825903, -0.030876944, -0.023279928, 0.032837782, 0.011568641, 0.008510266, 0.0066930675, 0.0654395, 0.0074965153, 0.0071387026, 0.02503423, 0.024791468, -0.0032710033, 0.0037146339, -0.0049683787, -0.012949051, 0.013068368, 0.0055207475, 0.0618825, 0.08974903, -0.0019174768, 0.002016096, -0.03259378, -0.016940894, -0.07722231, 0.012199305, -0.05419646, -0.03349293, 0.035592236, -0.06978865, -0.031575855, -0.015683128, -0.0060077338, 0.0031497667, -0.04576862, -0.04967822, -0.0027988974, -0.06416498, -0.026698712, -0.023209438, 0.02161508, 0.0012927018, 0.005640768, 0.0054631843, -0.07915066, -0.05963105, 0.019949162, 0.0090404935, -0.008779649, 0.021129718, -0.040448792, -0.048412815, 0.053309143, 0.029336577, -0.0058105523, -0.032557953, -0.0026793992, -0.038622078, -0.009175734, 0.06332706, -0.018459601, -0.048598126, 0.044062916, 0.05393727, 0.0037332433, 0.010456414, 0.044058774, -0.029504962, 0.011364413, 0.011764206, -0.0013009222, 0.0076547307, -0.0031287442, 0.05093069, -0.03273434, 0.014483624, -0.054651923, 0.07539908, -0.018786602, 0.0103121335, -0.019074593, -0.0050290697, -0.015088719, 0.04220209, -0.056300282, -0.017735753, 0.013502258, -0.006928626, -0.122795075, -0.025081027, -0.043627888, -0.030181997, -0.0030067808, 0.027488984, -0.0214687, -0.020764671, 0.012359998, 0.0065511293, -0.027581954, 0.008746009, -0.012322667, -0.0077482467, 0.0057034995, 0.018864563, 0.023494186, -0.008160725, 0.01729117, -0.005563643, -0.031940147, -0.00991124, 0.03343963, 0.0025813086, 0.059079964, 0.02698485, 0.038704474, 0.01927165, 0.0039140563, -0.05892403, 0.037402343, -0.017466795, 0.023140693, -0.07251303, -0.04277699, 0.025995405, -0.006703348, -0.0021237407, 0.049080383, 0.031559195, -0.008218281, 0.01882525, 0.015097107, -0.010129238, 0.0027840713, 0.023715653, -0.030057903, -0.021019585, 0.030693786, -0.0014883886, 0.029436424, 0.0355542, -0.016041702, -0.04510944, 0.022973282, 0.039817885, 0.026866782, -0.007011941, -0.0056955204, -0.06347596, -0.012073234, 0.027007423, -0.014848645, -0.04318537, -0.045630563, -0.04993715, -0.027461624, -0.023103783, -0.032592103, 0.02304899, -0.03427963, 0.014742047, -0.0037591648, 0.007830307, -0.027829649, 0.04632192, -0.009651799, -0.030062156, -0.0098795155, 0.041926485, -0.0038939123, -0.002413745, 0.008995588, -0.0040947106, -0.02560706, -0.013836641, 0.035544563, -0.029265828, 0.009561801, -0.01999982, 0.05442146, -0.011042775, 0.0421526, -0.0042456742, 0.059324015, -0.03650116, 0.023604797, -0.0058112987, -0.00050276774, 0.028564781, 0.0522108, -0.02999747, -0.034169707, 0.025179338, 0.009832894, 0.026111234, -0.027347928, 0.03286989, 0.029470084, -0.06778768, 0.023072928, -0.011726225, 0.05235815, 0.04931231, 0.036513075, 0.015637053, -0.034641687, 0.02276138, 0.005196034, -0.011069522, -0.00369998, 0.015678177, -0.013084928, 0.018340832, 0.010664839, 0.025850466, 0.040295463, 0.025334667, -0.011742639, -0.012943466, 0.018786691, -0.08744379, -0.054039128, -0.084656835, -0.00937282, 0.027427342, 0.009200593, -0.03467467, 0.038848463, 0.027514732, 0.021689447, 0.0552549, -0.03631346, 0.026150301, -0.08197531, -0.021510668, 0.0214541, 0.03966399, -0.0056476262, -0.038868222, -0.058247823, 0.0077249357, 0.03492675, 0.058430105, 0.046292886, -0.056280587, 0.031062739, -0.01653114, 0.019412763, 0.04410288, 0.007451733, 0.0298272, 0.023022106, 0.045856178, -0.04277498, 0.022461753, 0.0077496874, 0.021900736, 0.059544705, -0.090940915, -0.016734067, 0.038192216, 0.019093668, 0.029516717, 0.058884583, 0.07512306, 0.02575395, 0.023771426, -0.011838967, -0.008641923, 0.07426552, 0.0041211527, -0.004348288, 0.005211062, 0.07315931, 0.02130448, -0.037813082, -0.061631773, -1.170812e-05, 0.06830599, -0.042257104, -0.041198928, -0.020322038, -0.009882761, 0.021325072, -0.0070381546, 0.033631027, 0.00079754984, -0.05209935, 0.06456338, -0.088479124, 0.0007852862, -0.012473631, 0.054776434, 0.029357977, -0.0060253716, 0.02824444, -0.066351816, -0.06163241, 0.0128807565, -0.015643548, 0.02991102, 0.039473936, 0.002963702, -0.027909506, 0.023141263, 0.021578157, 0.008088107, 0.018876998, 0.047379244, 0.002662336, 0.023574892, -0.043082427, 0.054475423, 0.022322275, 0.014659602, 0.074231304, 0.039588183, 0.059456944, 0.0022078468, 0.012611945, -0.0027019044, -0.0037324016, 0.064116396, -0.009149283, -0.040535435, 0.04345001, -0.004772348, -0.014252237, -0.03754839, -0.024347294, -0.03355559, -0.067434885, 0.022442052, 0.063267276, -0.0068676914, 0.024434792, -0.025621595, 0.010719649, -0.013764036, -0.031848352, 0.017080914, -0.022145418, -0.029429704, -0.008716249, -0.020731978, -0.02897775, -0.04200287, 0.015835695, -0.017379832, -0.0015745678, 0.0023734448, 0.03935383, 0.011463889, 0.040471554, 0.048042253, 0.08615396, -0.003752455, -0.019611785, -0.0074970447, 0.037550986, -0.053046063, 0.000360838, 0.030946683, -0.028926732, 0.0006546768, 0.010639955, -0.00075873965, 0.057759497, -0.023795731, -0.020168444, -0.04503271, 0.0387472, 0.0085883355, -0.047763817, -0.0042932075, -0.0106584495, 0.023433512, -0.009472156, 0.029192451, -0.02990374, -0.0153599875, 0.005572919, -0.00029980554, -0.026310736, 0.016162887, 0.0052197897, -0.0025257205, -0.052858252, 0.017939603, -0.055244055, -0.02194925, 0.043703523, -0.035202894, -0.014740372, 0.0256367, -0.07426723, 0.012651136, -0.08192999, 0.03821632, -0.01570983, 0.050448366, -0.03523831, -0.0072231744, -0.05941547, 0.008904509, 0.031833194, -0.030223776, -0.007813573, 0.031141607, 0.013205531, -0.03810637, -0.056374997, -0.049037606, 0.041727856, -0.01110517, 0.04287862, 0.027444758, -0.050861035, 0.05281528, 0.0049504014, 0.02202033, 0.0028161034, 0.052434836, 0.016923567, 0.039280716, -0.027459156, -0.03850147, -0.057484336, -0.040568992, -0.018831123, 0.022865461, 0.009840819, 0.00520584, -0.053608518, -0.04923719, 0.03284301, 0.06598539, -0.04165162, 0.011869658, -0.042906843, -0.002111489, -0.03443029, -0.030660542, 0.013879713, 0.02351113, -0.01114973, 0.038431976, -0.03166574, 0.046489857, 0.023680342, 0.0018443317, -0.07050462, 0.03316711, 0.0023147597, -0.061425526, 0.035471816, -0.016111791, 0.02617794, -0.022823274, 0.0066243624, -0.033165984, 0.042727888, 0.024557743, 0.0011448563, -0.067832686, -0.000556184, 0.02543135, 0.04157571, 0.08073055, -0.035628803, -0.007625922, -0.07762248, 0.032657634, -0.05473983, -0.010923891, -0.024028435, -0.036900945, 0.020324247, 0.007475247, 0.03872122, 0.01774178, -0.016663032, 0.020560786, -0.025532454, 0.018334722, 0.077960074, -0.004773368, 0.02392979, 0.027378412, 0.013664693, 0.015639303, 0.01266258, -0.013128501, -0.017930971, -0.00242213, -0.041441016, 0.07780068, 0.033516444, 0.0007936963, -0.05973963, 0.023748877, -0.04358414, 0.060114466, 0.0057774475, 0.009819354, -0.024653297, 0.061965562, 0.00826694, 0.041178375, -0.020526398, -0.031018876, -0.017375853, -0.015716897, -0.0016656483, 0.015657483, -0.05670343, -0.022463629, 0.039611034, -0.03266438, -0.04410836, -0.024345031, -0.027082669, -0.036918085, -0.067429364, 0.02179343, 0.04372905, -0.009586895, 0.04484961, -0.00320239, 0.0043259114, -0.010891652, 0.04394375, 0.0036067956, 0.023196168, 0.006456195, 0.0006655158, 0.007365804, -0.11111634, 0.0010100853, 0.07018185, -0.031695776 ] }, { "values": [ -0.059831824, 0.0058392184, -0.033995297, -0.07943818, 0.011298156, 0.025050012, -0.029189065, 0.024324797, -0.0066214497, 0.06971527, -0.011151151, 0.0151266195, 0.054122813, 0.030081257, -0.008127446, -0.04536928, 0.011030189, -0.017565824, -0.08622232, -0.029599527, 0.021590859, 0.014355468, -0.031886794, -0.06486439, -0.045153774, -0.01171339, 0.0423042, -0.055133916, 0.0114093, -0.023539605, 0.018045506, 0.035222456, -0.049888063, -0.05176989, 0.04613251, 0.059618667, -0.076811075, 0.008490205, 0.005043313, -0.05366134, -0.067535125, -0.012330211, 0.011523134, 0.052131865, -0.04586198, 0.020357924, 0.028557172, 0.030748192, -0.047319937, 0.042282604, -0.014571154, 0.017881112, -0.01947543, 0.0015284381, -0.020380266, -0.0652659, -0.067853436, -0.0143141635, 0.066164926, -0.0034784344, -0.009233738, -0.026897954, -0.004148194, -0.020397807, 0.0003655786, -0.0371205, -0.034243897, -0.0040410054, -0.01803188, 0.0051101814, -0.060627118, 0.033975303, -0.06443673, 0.04382509, 0.0077160695, -0.024510711, 0.03868824, -0.0031352348, -0.0013953203, 0.030639526, 0.005382238, 0.024393175, 0.06130424, 0.022610744, 0.02823829, 0.008719358, 0.02007933, -0.019001253, -0.028602062, 0.015118014, 0.044138227, -0.033964787, -0.028881928, 0.013904087, 0.04431376, -0.041250747, -0.037792448, -0.0835515, 0.015313242, 0.067628, -0.043795142, 0.0049813283, -0.020594515, -0.015676966, 0.041190982, 0.020877628, -0.021759974, -0.040595155, -0.032913785, -0.0026333292, -0.035104677, -0.04427148, -0.010220452, 0.0236635, -0.010333755, -0.025974652, -0.03605237, -0.01026911, 0.027831454, -0.019119337, 0.04220031, -0.031653658, -0.022775877, 0.06778088, 0.031329133, -0.004320761, -0.0010715054, 0.044883378, -0.052928045, -0.028074766, 0.10140762, -0.07019751, 0.032286618, 0.0045934687, -0.043890152, -0.0093615, 0.09911826, 0.035673834, -0.028565796, 0.028836811, 0.021880891, 0.003067515, -0.03105948, 0.03562816, 0.016894644, -0.0066094254, 0.012216849, -0.0404698, -0.008362427, 0.043429475, -0.08423179, -0.054809254, 0.055685345, -0.016334318, -0.07624776, 0.03573546, 0.07864788, -0.017667929, 0.04505381, -0.10294017, 0.0050655627, -0.0042822566, -0.010230257, 0.018548425, -0.047923427, 0.06933968, 0.044935763, -0.045596454, -0.009655184, -0.055626925, -0.020647699, -0.01540909, -0.035440378, -0.06730016, -0.038977563, -0.008267, -0.0380249, 0.0059148245, -0.0362742, 0.0018847325, 0.026726304, 0.050564487, -0.021094423, -0.0012128311, 0.00841971, 0.0069043096, 0.0076504573, 0.05394915, 0.034479935, 0.03331276, -0.066805445, -0.009484551, 0.026275346, 0.045693323, -0.0142825795, 0.043996874, 0.061633162, -0.058389585, -0.009925484, -0.032172423, 0.0449822, -0.0054179477, -0.016627347, 0.022585487, -0.04019014, -0.007829171, -0.06937812, 0.008051946, 0.03802741, -0.013417347, -0.015356758, -0.020268327, 0.040647306, -0.073199876, -0.0073697865, 0.01730617, 0.06870675, 0.06888013, 0.05369074, -0.024831768, -0.045550127, -0.017012099, 0.018066257, -0.0055227433, -0.004322712, -0.003305605, -0.015067313, -0.016424248, -0.04582822, -0.034083717, -0.014363141, 0.02490503, 0.0047306735, 0.023030128, 0.019351803, 0.05545432, 0.047532365, 0.02121341, 0.03123377, 0.023401571, 0.020253876, 0.010886583, -0.004289453, -0.02390585, 0.015272702, 0.0066947355, 0.06923532, 0.09513059, -0.026486121, -0.023921149, -0.02546503, -0.016058205, -0.040539328, 0.021275286, -0.03710964, -0.029274762, 0.03666938, -0.07440964, -0.016426468, -0.002151331, 0.0018415103, 0.007988135, -0.02581127, -0.02448172, -0.004446135, -0.057007927, -0.0067711105, -0.034467243, 0.013688921, -0.0049591837, -0.0055161533, -0.018451981, -0.075729914, -0.03442601, 0.023223309, 0.0155919185, -0.026379278, 0.012178369, -0.052722123, -0.051658418, 0.04407883, 0.0120348325, -0.016892632, -0.03951731, 0.010750838, -0.040153496, -0.033783738, 0.041425757, -0.038370747, -0.029453257, 0.050720885, 0.04663573, -0.006706888, -0.02320244, 0.033432107, -0.019322705, 0.014766625, -0.020559348, 0.0031623088, 0.017343046, 0.0056359805, 0.056662563, -0.029105702, -0.0015517409, -0.027987732, 0.033129387, -0.015357871, 0.006064396, -0.0036745374, 0.0042397263, 0.017485686, 0.017414603, -0.04336302, -0.0023209811, 0.0025867848, -0.0054843286, -0.1275805, -0.0077910465, -0.037475158, -0.018503858, 0.044944227, -0.009164327, -0.027065663, -0.04457222, 0.027442856, -0.003418116, -0.039020658, 0.02823497, -0.0049599325, -0.031734843, 0.019643314, 0.023701416, 0.032053143, 0.022888087, 0.023306241, -0.024614153, -0.029500479, -0.008019679, 0.059338063, -0.015351652, 0.06282959, 0.0074827126, 0.07285146, 0.052253097, -0.0009472006, -0.06622275, 0.03594897, -0.012199373, 0.022553213, -0.05151307, -0.04686226, 0.032448474, 0.013888181, -6.867203e-05, 0.062659346, 0.0109840045, 0.014780612, 0.016993295, 0.037319746, -0.024478948, -0.008759875, 0.02405336, -0.016069246, -0.030727915, 0.040488027, 0.0067065754, -0.004837113, 0.020108555, -0.021347906, -0.053709712, 0.02292775, 0.02413584, -0.0023302964, -0.0030243124, 0.0063819773, -0.03920624, 0.019306522, 0.019075634, -0.0077387732, -0.027080664, -0.036396116, -0.043316048, -0.015069637, -0.0025953555, -0.055314675, 0.035604343, -0.04163041, 0.0048006275, 0.027637381, -0.010205944, -0.016190637, 0.06842196, -0.007854342, -0.026152119, -0.035080407, 0.065123744, -0.023831142, -0.0010347146, 0.021587506, -0.027261127, -0.039589383, -0.023032352, 0.07988497, -0.007987487, 0.01849121, -0.004229676, 0.058750436, -0.012987065, 0.033660278, -0.021857856, 0.074021734, 0.012963689, 0.016016288, 0.00035609395, -0.015247426, 0.02559942, 0.031833593, -0.02424686, -0.0031524329, 0.025647737, -0.041660734, 0.046021633, -0.010009993, 0.027758379, 0.0139523735, -0.056232348, -0.0004697233, -0.034686457, 0.06521568, 0.024952084, 0.016491998, 0.032241873, -0.0380143, 0.003598278, 0.007626372, -0.014829451, 0.018982075, 0.012028107, -0.030874673, 0.010932062, 0.008584909, 0.0004141551, 0.041857187, 0.024421608, -0.0072542294, 0.007781707, 0.023072233, -0.021899547, -0.068382, -0.0618155, -0.01390579, 0.048188, 0.0032895815, -0.04648424, 0.019085538, 0.030267641, 0.04173687, 0.0496227, -0.032899626, 0.036791667, -0.09750822, -0.023214474, 0.037975978, 0.047803067, 0.0041981936, -0.034117527, -0.07332301, 0.010815084, 0.017287593, 0.07741883, 0.042164747, -0.044288676, 0.034171913, -0.027462384, 0.023866141, 0.03569406, -0.001038892, 0.036637336, 0.005636878, 0.048706904, -0.06296632, 0.027576432, 0.009005652, 0.04324047, 0.06607532, -0.097028956, -0.014850721, 0.049926486, 0.057189472, 0.02289219, 0.059390012, 0.07289454, -0.011581595, 0.028470425, -0.03474436, -0.018279092, 0.042938914, 0.015145868, -0.0128713995, 0.011370885, 0.05113301, 0.015342317, -0.025778832, -0.07488454, 0.034813825, 0.04016408, -0.026665734, -0.048811704, -0.011473945, -0.027737347, -0.0038650224, 0.01738172, 0.044382002, 0.0067001563, -0.031569917, 0.038259186, -0.090567276, -0.0061720083, -0.005852361, 0.045074962, -0.004321856, -0.02062358, 0.009543336, -0.049939748, -0.04802607, 0.008033802, -0.0073913937, 0.03848615, 0.03987053, 0.017144255, -0.04069101, 0.018775916, 0.019189958, 0.0047699506, 0.02537831, 0.05703897, 0.0011082151, 0.028060038, -0.020187696, 0.0275764, 0.011940757, 0.025675233, 0.061498225, 0.040723033, 0.06347433, -0.012298168, 0.033720713, 0.011751895, -0.0037690378, 0.06838334, 0.0018234827, -0.017938793, 0.047415264, 0.028806126, -0.00093393924, -0.035437252, -0.03921093, -0.04444419, -0.07500252, 0.027139477, 0.047425512, -0.0029855343, 0.014602054, -0.021481378, 0.0147316465, -0.011915145, -0.020148214, 0.035426643, 0.00010252367, -0.04041, -0.0028086673, -0.012667936, -0.029033853, -0.031143358, 0.0152776055, -0.006891841, -0.01552483, 0.017231323, 0.028972238, 0.00064755516, 0.047663257, 0.024019985, 0.073858224, -0.03900002, -0.0035844245, 0.002458029, 0.042962275, -0.027731063, 0.007768564, 0.009431097, 0.00065567956, -0.002781051, 0.0144543685, -0.011899601, 0.07003128, -0.047761932, -0.021648806, -0.024127444, 0.05008096, -0.010946521, -0.04384507, 0.049449783, -0.020943062, 0.03581282, -0.009234741, -0.007971764, -0.030393617, -0.0088002, 0.017717147, -0.047341194, -0.02911859, 0.040817976, 0.01906098, -0.00012946532, -0.033413026, 0.015101625, -0.056834538, -0.030972224, 0.047682278, -0.021945672, -0.019556444, 0.039214697, -0.05288225, 0.02223502, -0.0590068, 0.012253011, -0.044902142, 0.038521204, -0.036569905, -0.02057555, -0.043425746, 0.0039709667, 0.03199353, -0.046431333, 0.008038956, 0.030080268, 0.010171881, -0.030159853, -0.025005128, -0.030027056, 0.045265786, -0.022025643, 0.005445091, 0.013273382, -0.070815705, 0.043860644, -0.0014703565, 0.059019744, 0.014683525, 0.035006076, 0.02449006, 0.015057561, -0.024056053, -0.012324827, -0.07032898, -0.018054793, -0.010800642, 0.024951166, 0.016556675, -0.012180133, -0.009697969, -0.052480206, 0.025296535, 0.05643841, -0.028875804, 0.0060451985, -0.020223424, -0.0021406035, -0.021063786, -0.041735828, 0.003947884, -0.003812454, -0.046863347, 0.023918815, -0.053988714, 0.02685809, 0.03790918, -0.0022651777, -0.07279947, 0.014469277, 0.0060595283, -0.05431216, 0.026053943, -0.03827843, 0.012558124, 0.014091629, 0.016912915, -0.040406447, 0.051481996, 0.002017576, 0.0129467435, -0.080292135, 0.016179921, 0.037164416, 0.02566328, 0.048408087, -0.04228206, 0.0065322146, -0.04337102, 0.041277, -0.04749623, -0.040798612, -0.029563418, -0.05031272, 0.008824019, 0.009523813, 0.05012831, 0.0072615584, -0.03703279, 0.026831178, -0.012656874, 0.022504356, 0.09457846, -0.03249922, 0.018578615, 0.0109460885, 0.021386737, 0.043960437, 0.02172101, -0.0040637176, -0.009285784, -0.012426206, -0.036860403, 0.08022287, 0.013328388, -0.026130784, -0.05130048, 0.018351695, -0.044194352, 0.042410146, 0.0037213322, -0.0032173467, -0.024105445, 0.073134266, 0.0072800037, 0.02999789, -0.034602307, 0.0024370532, -0.016036702, -0.022043157, -0.017333867, -0.012455172, -0.04353688, -0.018128604, 0.046889324, -0.02721378, -0.018886, 0.003413631, -0.007262818, -0.05199548, -0.06684568, 0.026800917, 0.041682176, -0.0038612604, 0.012582079, 0.00088450534, 0.006401481, -0.04165825, 0.037233565, 0.029538304, 0.018292213, 0.002049561, -0.010699269, 0.011596828, -0.12980229, -0.011602928, 0.073894516, -0.02586067 ] }, { "values": [ -0.054653887, 0.003288661, -0.05004386, -0.048369933, 0.0068001715, 0.031914156, 0.0062110545, 0.029202947, -0.019610055, 0.028147837, -0.0063973665, 0.008362293, 0.028702209, 0.027692882, -0.027749587, -0.06333911, 0.013098009, -0.0099209, -0.07572449, -0.07763746, -0.014817434, 0.046592906, -0.00658686, -0.0625132, -0.051828686, 0.022216372, 0.022014145, -0.052670036, 0.0022962075, -0.033210192, 0.034665797, 0.0534138, -0.021310154, -0.04656417, 0.056051265, 0.0604277, -0.052431326, 0.0067211785, 0.03709875, -0.022769248, -0.049078126, -0.019031918, 0.018020535, 0.04382845, -0.00573779, 0.020565031, 0.046607655, 0.008317855, -0.04764624, 0.06390529, -0.013773745, 0.017543342, 0.0010932607, 0.009609687, 0.007673861, -0.025535133, -0.04902063, -0.044299964, 0.029040754, -0.017446266, -0.022914607, -0.0011028957, 0.008171487, -0.010547905, 0.0071094087, -0.03651755, -0.027243534, -0.045903996, -0.030260114, 0.030937135, -0.05273202, 0.02539132, -0.09277502, -0.009872404, 0.0063798535, 0.0014942965, 0.016523043, 0.041844584, -0.016914085, 0.0039042144, -0.037607197, 0.022267388, 0.10200443, 0.019470092, 0.03757689, 0.014713594, 0.02005226, -0.03723529, -0.01641413, -0.006351079, 0.07453331, -0.042071346, -0.035796434, 0.030041851, 0.030395584, -0.0052469536, -0.021162532, -0.106978565, 0.01902098, 0.10207572, -0.014968886, 0.008301583, -0.028322186, 0.016771374, 0.051948413, 0.011724668, -0.009490918, -0.06144514, -0.049494173, 0.030168435, -0.019199418, -0.042478003, 0.024143947, 0.01933767, 0.009460243, -0.072775856, -0.0013063356, -0.02058054, 0.017173536, 0.013823081, 0.055276286, -0.04536066, -0.008271209, 0.076607384, 0.0063664056, 0.013616169, 0.044242844, 0.023659173, -0.04475614, -0.07625293, 0.08928849, -0.07014764, 0.024078693, 0.0062515447, -0.047503073, -0.021646937, 0.037679687, 0.08673722, -0.029377885, 0.018410496, 0.022375282, 0.0005233727, -0.012537378, 0.015919788, -0.0068879593, -0.031152979, -0.0027632331, -0.020509116, -0.025252488, 0.05077192, -0.08096917, -0.013260047, 0.06953813, -0.029509243, -0.06422562, -0.005434942, 0.071403526, -0.009640243, 0.056277245, -0.06931307, 0.030421386, -0.026872274, 0.0005570156, 0.01058484, -0.056396887, 0.012052678, 0.05420013, -0.066114224, -0.0047626253, -0.01966583, 0.030803993, -0.0008003861, 0.010568801, -0.08598336, 0.010042089, 0.004089529, -0.053444766, 0.026024092, -0.024365975, -0.016284276, 0.046742693, 0.029426666, -0.014939533, 0.0031668434, -0.009665357, 0.0054387166, -0.02662549, 0.09550994, 0.014674554, 0.009106997, -0.042492345, -0.029721117, 0.013632412, 0.071130745, -0.010733457, 0.019667406, 0.04668791, -0.000783991, -0.00031448252, -0.040513307, 0.043112986, -0.03863521, 0.0035805309, 0.0050799237, -0.046977013, -0.009811294, -0.06745795, 0.003924085, 0.033622425, 0.02094481, -0.018189559, -0.017405787, 0.030711683, -0.07513954, -0.0005646862, 0.005530183, 0.061554138, 0.09415485, 0.02309002, -0.043821886, -0.017195597, -0.020756051, 0.018839454, -0.03333443, 0.011811698, -0.039215736, -0.031433586, -0.05634972, -0.030571742, -0.016240465, -0.015000974, 0.015795402, 0.004717248, 0.016013224, 0.0029573592, 0.033840388, -0.007962309, 0.011063308, 0.048422746, 0.026962737, 0.014478348, -0.007828633, -0.023125013, -0.015947042, 0.0018433045, 0.03258414, 0.06586606, 0.11761657, -0.008945544, -0.0013997669, -0.03622444, -0.00044725256, -0.04562555, 0.024476428, -0.06814226, -0.0144171575, 0.039242677, -0.047628157, -0.018633004, -0.023826428, -0.009753445, 0.0049373396, -0.05038925, -0.023713687, -0.0020433704, -0.08667387, 0.0061430368, -0.04601887, 0.049281936, 0.008376368, 0.0059318873, 0.0024841276, -0.042363033, -0.06746016, 0.041749585, 0.009724861, -0.01742538, 0.032803085, -0.024196142, -0.029214367, 0.024833454, 0.019431183, -0.010574365, -0.025811978, 0.011240846, -0.035401568, -0.0025313944, 0.04958614, -0.0439961, -0.064309716, 0.054376677, 0.048291218, 0.009590513, -0.0040548723, 0.025343738, -0.011849025, 0.015282927, -0.0033781521, 0.019734869, 0.02422332, 0.009658686, 0.073589586, -0.029908882, 0.017103486, -0.0637388, 0.054431543, -0.042744953, -0.0026652503, -0.024835935, 0.013420819, 0.016144361, 0.04687075, -0.044453707, -0.02623472, 0.013012748, -0.004352637, -0.1089953, -0.0030227206, -0.028346105, -0.017867194, 0.038383976, 0.025056895, -0.025477283, -0.038731527, 0.05257517, 0.0012366731, -0.022734081, -0.010988039, -0.009547874, -0.008435785, 0.024986338, 0.023016902, 0.014230285, -0.013080432, 0.016523968, -0.0013523909, -0.011187754, -0.009118136, 0.054555625, 0.004662552, 0.070365086, 0.0136449365, 0.04855214, 0.015794307, -0.013260354, -0.062903136, 0.037438717, -0.011349339, 0.06817353, -0.0581947, -0.06665007, 0.040541966, 0.0013993016, 0.0064203595, 0.048421215, 0.028326254, 0.020694938, 0.02765269, 0.03902663, -0.028537551, 0.005822942, 0.03665773, -0.009918936, -0.011937033, 0.009111056, -0.025754794, 0.021282852, 0.02307008, -0.004744167, -0.04675992, 0.002056116, 0.035000835, -0.001179694, -0.0057731876, -0.022658408, -0.068525605, -0.0059763445, 0.012260436, -0.0089165745, -0.04959306, -0.046187907, -0.054569367, -0.008176737, -0.014429659, -0.035482313, 0.019655744, -0.036045987, 0.0038738437, 0.0070402194, 0.005317119, -0.029972898, 0.052649837, -0.01399502, -0.032320086, -0.032638714, 0.027878184, -0.0009727117, 0.0027204377, 0.03649548, -0.009343326, -0.0310247, -0.006972811, 0.028637718, -0.018262008, 0.01358163, -0.014458531, 0.04315824, -0.010046757, 0.045836765, -0.00850789, 0.055395294, -0.040168136, 0.029311385, -0.014656078, -0.0038863209, 0.006127077, 0.019711498, -0.028130038, -0.032121606, 0.020778583, -0.016444081, 0.019929828, 0.009020831, 0.024019767, -0.007631505, -0.08165118, 0.032737605, -0.031082207, 0.05023935, 0.03846798, 0.02098366, 0.041896317, -0.049754363, 0.010065262, 0.007561971, -0.023677912, -0.003187588, -0.015381234, -0.029241545, 0.0185341, 0.01955538, 0.009006957, 0.058136947, 0.021955637, -0.0022996762, 0.0064456416, 0.031724643, -0.05611691, -0.04288198, -0.0697208, -0.0115894405, 0.048769757, -0.008781209, -0.049831327, 0.040061172, -0.0009029177, 0.018292127, 0.033078797, -0.037362285, 0.023791058, -0.052716337, -0.042701367, 0.044509996, 0.029572058, 0.0003448799, -0.036400177, -0.061447952, 0.0018705124, 0.020535095, 0.05324416, 0.018024303, -0.042645782, 0.03424578, -0.011721542, 0.029985694, 0.037044555, 0.010949256, 0.032256957, 0.01720821, 0.037789997, -0.04407848, 0.04460394, -0.0013256973, 0.021722516, 0.053123537, -0.1046885, 0.007192559, 0.022885293, 0.031388007, -0.0043466277, 0.054965507, 0.055402633, 0.009967576, 0.02174882, -0.019952565, -0.019761173, 0.07309311, -0.006153033, -0.0060842885, -0.015655173, 0.05204718, 0.005970942, -0.035197552, -0.08199951, 0.023080908, 0.029602906, -0.008228426, -0.051657405, 0.021648971, -0.044380706, 0.013676592, -0.00018394625, 0.02932101, -0.017155593, -0.06322412, 0.063495465, -0.069370076, -0.0026878437, -0.01530399, 0.048471786, 0.002326813, -0.022933288, 0.022744702, -0.08935132, -0.08408141, 0.013763182, 0.004035193, 0.039665, 0.031657137, 0.003417533, -0.0098635685, 0.015361282, 0.012032576, 0.012253314, 0.037384, 0.059236616, 0.009002433, 0.015488916, -0.02452229, 0.035667516, -4.946507e-05, -0.0075707333, 0.074541695, 0.031841237, 0.025505722, 0.01641262, 0.026501082, -0.0017465742, 0.007696182, 0.06964863, -0.013524116, -0.035693265, 0.05346225, -0.009655072, -0.016528782, -0.022159431, -0.0042060204, -0.023181224, -0.050720423, 0.017503202, 0.04104171, -0.0122251725, 0.046102077, -0.021363543, -0.032429677, -0.00037773923, -0.009911531, 0.037326887, -0.0027053617, -0.021050446, -0.007033274, -0.022283634, -0.03429013, -0.057300165, 0.008823329, -0.00090669305, -0.011332181, -0.0057506766, 0.04241102, 0.0074836016, 0.04902956, 0.06646513, 0.091819294, -0.01095639, -0.008808964, 0.011415923, 0.042863943, -0.05210349, 0.022526756, 0.012593266, -0.0022477135, 0.025708713, 0.00093482574, -0.0075674886, 0.056245297, -0.00039561384, -0.022615323, -0.05118577, 0.04487535, 0.0010591384, -0.036023524, 0.004348465, -0.016083883, 0.013806795, 0.012553238, 0.032628372, -0.035069305, -0.0067303367, 0.030042103, -0.023046397, -0.02346703, 0.022815466, 0.000107870655, -0.02174332, -0.04408624, 0.01335917, -0.0510179, -0.03506804, 0.03292555, -0.0435084, 0.016920885, 0.010735819, -0.04836958, 0.01701545, -0.06708893, 0.010034308, -0.016126165, 0.037146, -0.048451133, -0.008851437, -0.06240158, -0.0076171053, 0.03914543, -0.042821635, 0.006920352, 0.030156905, -0.004191268, -0.023111735, 0.0013139782, -0.048473474, 0.042205922, 0.010299081, 0.026025603, 0.033657134, -0.04832333, 0.052337896, 0.027045315, 0.032167923, -0.0077422364, 0.035030764, 0.010987203, 0.020657511, -0.011722571, -0.024243519, -0.057867985, -0.029217273, -0.004814825, 0.020402053, 0.006640057, -0.011480113, -0.026604906, -0.027875556, 0.026681973, 0.07837863, -0.029455429, -0.014430889, -0.0504636, -0.0008961293, -0.028939493, -0.0688527, -0.0008339205, 0.029505596, -0.0105026495, 0.04645995, -0.028782431, 0.04797338, 0.025453137, -0.032522775, -0.044547018, 0.019441891, 0.0010994951, -0.0558264, 0.0055943537, -0.008777184, 0.031258237, -0.024141166, 0.0012028111, -0.04130936, 0.024650082, 0.018953161, 0.025214493, -0.069852084, -0.0049679135, 0.00063621305, 0.026787875, 0.108543664, -0.037611663, 0.012248602, -0.08284793, 0.031787474, -0.051831808, -0.02123503, -0.02653336, 0.0002557666, 0.009291687, 0.025876136, 0.019419622, 0.030370656, -0.025226278, 0.003982062, -0.039367888, -0.00073165464, 0.058893766, -0.010389695, 0.030190947, 0.019106057, 0.02697598, 0.026784481, 0.035890907, 0.018432448, -0.005117698, -0.007664808, -0.043984268, 0.0812835, 0.029883744, -0.007183018, -0.06474981, 0.025729818, -0.063962825, 0.049398188, -0.0168178, 0.025499256, -0.016707473, 0.068516634, 0.019648517, 0.037174206, -0.02909168, -0.00899517, -0.0185788, -0.0015432019, 0.012516561, 0.0128883915, -0.043653574, -0.004349314, 0.033259224, -0.023207407, -0.053496156, -0.033974092, -0.034652602, -0.022464344, -0.07848983, 0.031691886, 0.025038797, -0.0024050784, 0.043679953, -0.0030054345, -0.0043555605, -0.0147349425, 0.025805881, 0.0037455466, 0.020496981, 0.034176197, -0.01380368, 0.003561284, -0.11087603, 0.011079694, 0.05362175, -0.035661243 ] }, { "values": [ -0.0481157, 0.02778568, -0.038452968, -0.040077638, 0.029765707, 0.033995394, 0.0052239583, 0.053946447, -0.0067160237, 0.04923656, -0.016151775, 0.014289696, 0.05247904, 0.023449806, -0.055960458, -0.06045016, 0.01667567, -0.011828508, -0.071643084, -0.033013385, 0.032536134, 0.04499923, -0.011120877, -0.08565871, -0.05307276, -0.004241243, 0.049217187, -0.061504878, 0.0162577, -0.03292918, 0.0006016361, 0.040112026, -0.053071994, -0.072000004, 0.034091078, 0.06124014, -0.04900956, 0.03289741, 0.027169906, -0.046189185, -0.08583389, -0.042712852, -0.005473055, 0.06857528, -0.04216139, 0.0062730196, 0.0391323, 0.0039380193, -0.08017056, 0.053438425, -0.008787391, 0.028131071, -0.021502499, 0.014797671, -0.034807377, -0.048524667, -0.042865124, -0.029083727, 0.036330387, -0.017659817, -0.027163472, -0.010240866, -0.025574313, -0.010087093, -0.017185817, -0.046153683, -0.032192044, -0.015043183, -0.0019255189, -0.001709607, -0.06660358, 0.022853263, -0.09062346, -0.0036821323, 0.011169905, -0.0028369054, 0.036921646, 0.010463987, -0.0017432942, 0.035387505, 0.010262385, 0.04708664, 0.069177546, 0.016227541, 0.015038269, 0.03131509, 0.05465838, -0.024880946, -0.00011528079, -0.014244806, 0.03989568, -0.02627218, -0.05018467, 0.016505992, 0.019220455, -0.004586669, -0.018200608, -0.07683342, 0.0011064837, 0.09006073, -0.05684537, -0.005534632, -0.033181895, -0.026371503, 0.017468927, 0.011515891, -0.006452237, -0.047847215, -0.04337924, 0.027873335, -0.022459105, -0.03261864, 0.026765458, 0.010888845, -0.0061676255, -0.025244335, -0.02421212, -0.039660726, -0.015818, -0.023050068, 0.039910488, -0.020235099, -0.019471118, 0.065741055, 0.043753315, 0.0024209293, 0.008457111, 0.021841405, -0.050751016, -0.050244786, 0.076137744, -0.09326072, 0.031980906, -0.020659052, -0.04868039, -0.011152968, 0.07019716, 0.010675846, -0.020489976, 0.027499447, 0.015483607, 0.00045565347, -0.062392402, -0.0036594418, 0.00095213996, 0.01291623, -0.025591327, -0.06504703, -0.049132254, 0.049134526, -0.049922008, -0.030606495, 0.059665788, -0.02512576, -0.08911166, -0.0021836178, 0.052762337, -0.013683174, 0.038274, -0.060971852, 0.057559628, -0.0020743483, -0.002351391, 0.01001528, -0.059301928, 0.061991133, 0.07280628, -0.049391802, 0.010218814, -0.019877411, -0.025288044, -0.022887435, -0.04020002, -0.081348285, -0.009422031, 0.0035296131, -0.057589654, 0.005808946, -0.020353325, -0.011675399, 0.052754045, 0.03932028, -0.05390992, -0.0012361734, -0.033882502, 0.030421766, 0.020994134, 0.045498017, 0.0047806287, 0.024771089, -0.045319386, -0.022449914, 0.013076534, 0.059328187, -0.044836443, 0.013042673, 0.074577376, -0.044981055, -0.016948825, -0.0370372, 0.029516831, 0.010089538, -0.030870026, 0.03189801, -0.0076176496, -0.0070183976, -0.06553509, -0.00993569, 0.012983457, -0.011020691, -0.022977939, -0.0053284285, 0.01955202, -0.03751137, -0.0016841477, 0.010262898, 0.074150294, 0.056315307, 0.048110217, -0.032922216, -0.051306427, -0.013705991, -0.005223113, -0.035284016, 0.022259783, -0.0112053715, -0.026603287, -0.013772207, -0.042061977, -0.0203511, -0.0239521, 0.019932665, 0.0040458585, -0.00067382236, 0.0045745084, 0.03381184, 0.018125787, 0.021717703, 0.044083692, 0.0024819816, 0.0160294, -0.03155114, -0.019306317, -0.002499879, 0.0036316176, 0.007674221, 0.06705789, 0.08094162, 0.004691733, 0.010881979, -0.035228375, -0.026780982, -0.04607136, 0.02140889, -0.06539282, -0.019169586, 0.031379823, -0.07100756, 0.008546055, -0.012313479, -0.011390124, 0.023094472, -0.025625095, -0.050711535, 3.9879647e-05, -0.07043911, -0.015196445, -0.05054113, 0.039727397, -0.005107072, 0.0005782477, -0.0135743935, -0.05093885, -0.051803753, 0.0109627545, 0.034938615, -0.011258144, 0.00923687, -0.021399157, -0.052388124, 0.027456475, 0.021887856, -0.008214619, -0.028645473, -0.014996568, -0.026781367, -0.009652259, 0.05223491, -0.019137984, -0.05442638, 0.028831156, 0.04014555, 0.010505172, -0.011570635, 0.039564528, -0.028129686, 0.009583266, 0.02444331, -0.012699061, 0.04186598, 0.014619627, 0.049787197, -0.04269859, 0.02013984, -0.03573862, 0.041268762, -0.022588996, 0.012457129, -0.02254358, 0.00688386, 0.0099732885, 0.024169022, -0.044440243, 0.006605774, -0.00020480403, -0.021329686, -0.12269751, -0.023442551, -0.045175813, -0.022127694, 0.026632851, -0.005892978, -0.009733884, -0.046592824, 0.026698628, -0.0040303296, -0.032710154, 0.04674266, 0.013405875, -0.008017728, -0.007089509, 0.023014046, 0.036156, -0.0049918843, 0.02632043, -0.016424641, -0.010940662, -0.017086329, 0.058592364, 0.006203334, 0.08118139, 0.025780976, 0.04138559, 0.034826413, 0.0068813073, -0.064453006, 0.03779002, -0.00015275642, 0.029614996, -0.067664646, -0.0415713, 0.070583716, -0.0003505043, -0.0014087338, 0.043115914, -0.011021024, 0.00546949, -0.0013315756, 0.046183083, -0.029554464, -0.017426183, 0.010278834, -0.034272797, -0.026730921, 0.013369344, -0.007909848, -0.006934927, 0.026812462, -0.022824971, -0.036250524, 0.026222847, 0.013119767, -0.00029043376, -0.0034197243, -0.014943901, -0.024509681, 0.015086486, 0.03063295, -0.028584074, -0.042412534, -0.024662692, -0.049897835, -0.031231381, 0.00033376509, -0.042784356, 0.028059695, -0.04077003, 0.01331858, 0.02230675, 0.010520345, -0.028971665, 0.071650304, -0.0022179224, -0.020118956, -0.043544702, 0.060981218, 0.0033544044, 0.006518097, 0.04084438, -0.0232666, -0.026191663, -0.005498491, 0.07153065, -0.021150613, 0.008603264, -0.029792672, 0.05681908, 0.0045186994, 0.04434182, -0.0026178022, 0.071098596, -0.0036758746, 0.030274205, -0.017564544, -0.0070411726, 0.026094731, 0.02860111, -0.039460756, -0.020651177, 0.019833922, -0.03916223, 0.028728131, -0.010992086, 0.031173535, 0.016319677, -0.04693782, 0.02566582, -0.039524715, 0.041750114, 0.032423317, 0.027975915, 0.053712223, -0.030898198, -0.015970781, 0.022369526, -0.029771267, -0.014150469, -0.01656166, -0.03688322, 0.0101912245, -0.0105864415, 0.0064363335, 0.07369032, 0.038130995, -0.013201752, -0.023275238, 0.018778922, -0.012492423, -0.042087153, -0.06946819, -0.030026278, 0.04668238, 0.009839228, -0.052125107, 0.0385801, 0.022068584, 0.025588093, 0.024484595, -0.039052304, 0.011077345, -0.065668285, 0.004935864, 0.05168114, 0.031125763, -0.017775113, -0.011251359, -0.046452023, -0.0014857558, 0.026083589, 0.0628909, 0.0033900023, -0.03204825, 0.021389607, -0.013828007, 0.013202046, 0.02010145, 0.03950436, 0.044365842, 0.013550945, 0.059956092, -0.041218054, 0.021893857, 0.006095062, 0.04936605, 0.038812503, -0.067578286, -0.012549719, 0.0423117, 0.050612777, 0.040666815, 0.059260346, 0.071505554, -0.0033430192, 0.053111777, -0.032726314, -0.017426416, 0.056160014, 0.017215041, -0.01798878, 0.02167313, 0.051352, 0.01598497, -0.052524757, -0.098106824, 0.016802961, 0.041351788, -0.023905618, -0.053446703, 0.023221442, -0.05150795, 0.019384103, -0.0042497907, 0.022444556, -0.008435899, -0.013939168, 0.057835486, -0.08482122, -0.016318087, -0.0061099627, 0.04662935, 0.033191934, -0.023803398, 0.0063634734, -0.063881464, -0.07604121, 0.008159373, 0.005674197, 0.035304293, 0.061759517, 0.011124864, -0.012085064, 0.0287835, -0.0048861424, 0.010546183, 0.019200662, 0.071024194, 0.013170674, 0.041008312, -0.039377607, 0.004867768, 0.014527767, 0.015932942, 0.06711361, 0.034974676, 0.059417583, 0.012356328, 0.044560246, 0.021738064, -0.0059162416, 0.05345102, -0.027760811, -0.015539887, 0.069485545, -0.005965086, -0.0057376553, -0.025000667, -0.017339012, -0.006655184, -0.067107834, 0.014597517, 0.040035564, -0.0046543693, 0.027396122, -0.03844174, 0.020395948, -0.0022043637, -0.017808706, 0.015582078, -0.016358329, -0.030239364, 0.0063580987, -0.0068184515, -0.006558637, -0.03410593, 0.0030158353, 0.0045936005, -0.013879187, 0.003036136, 0.025997752, 0.0017204165, 0.025831155, 0.03918486, 0.09296213, -0.0010914945, -0.01234767, 0.008716815, 0.046057384, -0.037617166, 0.027599696, 0.014588871, -0.012536968, 0.009851348, 0.014470378, -0.035272956, 0.06229272, -0.03142164, -0.021859864, -0.023867937, 0.03158121, 0.023216844, -0.0564635, 0.017668284, -0.0036062612, 0.02621885, -0.0026634862, -0.00033791637, -0.043974467, -0.024554517, 0.01591867, -0.03495391, -0.03228152, 0.00814786, 0.0025137225, -0.026866006, -0.045975406, 0.025252493, -0.061572857, -0.028162453, 0.048593406, -0.02945695, -0.006746192, 0.009888421, -0.055510532, 0.03973276, -0.09698693, 0.005983252, -0.008110344, 0.03096943, -0.024250349, -0.007389611, -0.059120644, 0.01756193, 0.015602062, -0.0546172, 0.00094164105, 0.027725201, 0.006316533, -0.045625467, 0.002209992, -0.0177023, 0.03407995, -0.011594161, 0.017262043, -0.00608186, -0.055529896, 0.05450356, 0.009871495, 0.043992173, 0.008382071, 0.030258436, 0.01794009, 0.026871977, -0.031534262, -0.01265217, -0.077126354, -0.03658704, -0.012467364, 0.036366772, 0.011773869, -0.017980846, -0.011318646, -0.07488516, 0.026731748, 0.06859825, -0.022758693, 0.005396055, -0.042647976, -0.0026332862, -0.035626225, -0.05456119, -0.004964419, 0.026376652, -0.026879814, 0.0055248803, -0.023624923, 0.04461958, 0.009769193, -0.05538347, -0.07634293, 0.011631511, 0.0019361603, -0.0827492, 0.0043967953, -0.0013582276, 0.025656587, -0.015607613, -0.007416276, -0.041593213, 0.02180602, 0.022236807, 0.0038292417, -0.08094997, 0.016669817, 0.031628124, 0.04207301, 0.07106915, -0.07258703, -0.008987048, -0.05585693, 0.033354066, -0.04744029, -0.019952651, -0.023742218, -0.04231798, 0.032829117, 0.010102749, 0.03939838, 0.037370816, -0.022758596, 0.027179679, -0.008894668, -0.00689511, 0.056704607, -0.013171624, 0.019263849, 0.026891295, 0.034951493, 0.03764794, 0.031853378, -0.0049736593, -0.010312546, -0.005838698, -0.04282234, 0.08212773, 0.023846809, -0.026825104, -0.05528176, 0.014323807, -0.047642082, 0.06142562, -0.0028443304, -0.009511304, -0.012779281, 0.027849441, -0.0153264, 0.035345737, -0.0001133128, -0.010714638, -0.011900583, -0.02104367, 0.003512931, -0.010875687, -0.06715016, -0.03295309, 0.06508029, -0.033773657, -0.02130572, 0.0019776665, -0.036498692, -0.045187507, -0.06437947, 0.0050455094, 0.02094782, -0.006442112, 0.034021355, 0.0036267112, -0.00711754, -0.03213866, 0.032956056, 0.03146443, 0.0047097416, 0.010599076, 0.010243947, -0.0029119637, -0.09680644, -0.025006605, 0.07466507, -0.025619699 ] }, { "values": [ -0.03169019, 0.015905809, -0.04940961, -0.041195534, 0.008509244, 0.0114542, 0.0014203222, 0.057667874, 0.00036008598, 0.044473693, -0.0112202, 0.04871316, 0.04446338, 0.00985907, -0.044426944, -0.04387168, -0.014970849, -0.029298313, -0.08402673, -0.031508002, 0.014397012, 0.03237251, 0.0075577777, -0.06412767, -0.04658054, 0.0048671486, 0.03263199, -0.03613772, 0.023758804, -0.01731963, 0.018235821, 0.031115526, -0.025384821, -0.053148855, 0.045901164, 0.05912353, -0.05626372, 0.0021449146, 0.0017196885, -0.023235766, -0.07448264, -0.0287334, -0.004460013, 0.057731926, -0.014945477, 0.019227218, 0.015612883, -0.00792096, -0.068810016, 0.06629106, -0.004065339, 0.030861016, -0.06472923, 0.015095918, -0.011770398, -0.0438169, -0.025229093, -0.03384032, 0.051916875, 0.014111344, -0.013964755, -0.029664412, 0.017295867, -0.0010135785, -0.002071611, -0.052731108, -0.029245265, -0.014926056, -0.01610814, 0.0055426746, -0.053912666, 0.03186269, -0.08555874, 0.009323546, 0.009813301, -0.011911201, 0.035077896, 0.009835734, 0.009785868, 0.03447111, -0.021987228, 0.027643174, 0.07794015, -0.0060835867, 0.0140419975, -0.0006207633, 0.04390315, -0.027922904, -0.0021462294, 0.009497283, 0.036783185, -0.03217454, -0.0127136335, 0.0396411, 0.04729789, -0.028642597, -0.047976032, -0.109382376, 0.009478366, 0.07526945, -0.06688922, -0.0040909066, -0.023655774, -0.00712922, 0.039356217, 0.01394802, 0.0073689846, -0.030925881, -0.027968742, 0.017964913, -0.01421447, -0.05454074, 0.028763095, -0.0053389915, -0.0016288512, -0.049712975, -0.038707927, -0.01564671, 6.994938e-05, -0.006180422, 0.035044413, -0.018230041, -0.016993994, 0.076545075, -0.0019500238, 0.036200225, 0.021931918, 0.025067152, -0.037753236, -0.059404626, 0.07052482, -0.08548862, 0.04212029, -0.001253389, -0.044195004, -0.0028138459, 0.053277567, 0.030906424, -0.014838808, 0.014492197, 0.019852996, -0.0064227083, -0.026226034, -0.008765548, -0.0061815972, 0.033311617, 0.0028671147, -0.035944745, -0.03165783, 0.030100308, -0.060604025, -0.045427766, 0.058159392, -0.010883847, -0.075973056, -0.01853738, 0.07673284, -0.030740257, 0.08346723, -0.07368179, 0.022950945, -0.014926105, 0.013694095, 0.031817235, -0.07977987, 0.049788382, 0.021922324, -0.05911006, -0.014535202, -0.034062654, -0.008453348, -0.020285945, -0.0080149565, -0.08668698, -0.02497073, -0.023490364, -0.065428816, 0.012951527, -0.007847708, -0.0241169, 0.06641707, 0.03496223, -0.02543893, -0.0064890566, -0.008661301, 0.009952559, 0.008609401, 0.07905973, -0.016755762, 0.03140658, -0.023557132, -0.0054726256, 0.042554375, 0.071269475, -0.040246632, 0.027161254, 0.08416534, -0.03225125, -0.0060945335, -0.05430689, 0.04178472, -0.03772687, -0.0150430845, 0.040577617, -0.014719278, -0.043451063, -0.07156787, -0.014182208, 0.02468103, -0.009472719, -0.02771077, -0.01511255, 0.011802412, -0.050777677, 0.015923385, 0.0035560795, 0.06297364, 0.09755992, 0.072361246, -0.028173055, -0.023157965, -0.014120034, 0.011552832, -0.02984494, 0.0097941775, -0.016603762, -0.04270656, -0.0018080226, -0.052816506, -0.014513082, -0.008423527, 0.02354529, 0.008967588, -0.029396553, 0.008645434, 0.016056491, 0.0022234982, 0.016394055, 0.042472336, -0.022453116, 0.01450359, -0.018542893, -0.012079824, -0.011344862, 0.03169692, -0.021686172, 0.05553892, 0.10495606, -0.012433152, -0.0054690246, -0.029415993, 0.0039448556, -0.024423439, 0.0406095, -0.044547975, 0.004692999, 0.022768056, -0.07335093, -0.021139937, -0.009007702, -0.01169244, -0.006718672, -0.01924612, -0.050685447, -0.0024906967, -0.08125521, 0.012212046, -0.043377906, 0.018164583, -0.001530155, 0.0022555168, -0.0064530675, -0.045743097, -0.05689358, 0.0067949747, 0.020355225, -0.027540585, 0.002873196, -0.040090144, -0.047533516, 0.025377084, 0.01062916, -0.041334264, -0.018365422, 0.0023879148, -0.041811056, -0.006154939, 0.011043127, -0.03007957, -0.053306315, 0.05717908, 0.057452366, -0.0142994365, 0.008595761, 0.029754234, -0.026437838, 0.008309133, 0.0137297595, 0.02314631, 0.03469528, 0.016932102, 0.0723619, -0.028929092, 0.0032727479, -0.046797827, 0.06306368, -0.04037998, 0.010383302, -0.061922323, 0.0015333141, 0.015381374, 0.043230694, -0.030848972, -0.017202066, -0.0039010237, -0.021512529, -0.083474845, -0.022991015, -0.047648594, -0.042868644, 0.037098926, 0.0003595272, -0.020930283, -0.03327794, 0.042899366, -0.0051967455, -0.012336189, 0.042253155, -0.0027599544, -0.006002536, 0.017688345, 0.014289969, 0.013619639, -0.036357656, 0.01763071, -0.03200855, -0.015326438, -0.018389024, 0.037096422, -0.0026867972, 0.07214313, -1.8333865e-05, 0.057671882, 0.026014764, -0.008593034, -0.04770448, 0.047086477, -0.021651646, 0.03299811, -0.058693394, -0.04819778, 0.0635434, 0.028851809, 0.025549894, 0.04696473, -0.018164542, 0.023024073, 0.009002436, 0.04076808, -0.017731512, -0.020006994, 0.002819006, -0.017683499, -0.024025073, 0.027896432, -0.0029280884, 0.018197043, 0.03814925, -0.016283482, -0.024421945, -0.0017200215, 0.03458669, -0.010895346, -0.031336557, -0.0186218, -0.04447198, 0.004095027, 0.01697721, -0.0069490434, -0.03141816, -0.03328297, -0.042747527, -0.03614656, -0.0027340974, -0.03305237, 0.04539249, -0.035600733, 0.014276334, 0.00975896, 0.014339334, -0.016943973, 0.07067367, -0.0072367466, -0.025458002, -0.04204421, 0.05645487, 0.0012760708, 0.012898202, 0.039532848, -0.02240265, -0.008680401, 0.012603113, 0.054918308, -0.023525782, -0.007069034, -0.008216995, 0.038714245, -0.023130862, 0.035597634, -0.017144572, 0.06353678, -0.017256225, 0.029983157, -0.014624682, 0.00877678, 0.0004580001, 0.025426293, -0.028065247, -0.048317168, 0.039221447, -0.03273764, 0.026443487, -0.0113678975, 0.040475793, 0.024880469, -0.047527306, 0.034527294, -0.033054177, 0.055924486, 0.037257433, 0.0448237, 0.03583648, -0.04473199, 0.0022251236, 0.02365379, 0.0005141493, -0.00076571084, -0.021827046, -0.034280602, 0.028523108, 0.0059889806, -0.010394534, 0.07009102, 0.017483491, -0.021142464, -0.005423341, 0.011516725, -0.011034941, -0.05354089, -0.05880948, -0.038945865, 0.08062751, -0.01842848, -0.060851734, 0.04611006, 0.022027243, 0.010671854, 0.048401598, -0.025093773, 0.028902514, -0.085999124, -0.038557038, 0.03859412, 0.051938582, 0.00062797393, -0.02516848, -0.06510367, 0.014650169, 0.026851626, 0.06611605, 0.013470505, -0.021680906, 0.008524365, -0.017284567, 0.011372878, 0.015039928, 0.03192616, 0.041305777, -0.0013529198, 0.04590222, -0.040035177, 0.032364946, 0.00077824434, 0.039872155, 0.031279236, -0.07981887, -0.015257887, 0.046628095, 0.057764016, 0.02041706, 0.039238896, 0.05105207, -0.0077681197, 0.031244347, -0.035747893, -0.012851408, 0.052080367, 0.040998008, -0.021165319, 0.012919263, 0.05909579, 0.03224429, -0.0318806, -0.06730705, 0.028696941, 0.038673066, -0.021156436, -0.047875218, 0.012232992, -0.035781346, 0.00924399, 0.00035973516, 0.010174066, 0.0053680157, -0.012092726, 0.050573178, -0.0733959, 0.017672822, -0.0174459, 0.05404739, -0.006383055, -0.054736286, 0.013256592, -0.05165138, -0.08053039, -0.013832019, 0.0033739593, 0.03420572, 0.03868717, 0.013998732, -0.006654863, 0.028758619, -0.01192286, 0.0034857206, 0.04204547, 0.073884666, 0.02247933, 0.013212832, -0.025604628, 0.0293255, 0.0009720129, 0.006341155, 0.068977885, 0.067797095, 0.059983626, 0.0024480568, 0.032485254, -0.015046841, 0.026445558, 0.060412154, -0.017094383, -0.051646665, 0.049524337, 0.0033317115, -0.025260633, -0.03207323, -0.0283269, -0.021831486, -0.055174455, 0.03427845, 0.046973843, -0.02654567, 0.007475573, -0.02762012, -0.017712062, 0.017136803, -0.027145939, 0.03260186, -0.007978636, -0.018795324, -0.004203952, 0.0005826896, -0.00086656894, -0.04285573, 0.0104993135, 0.012326281, -0.0157503, 0.005970049, 0.0434876, -0.014509165, 0.0476659, 0.021728573, 0.07219943, -0.014394057, 0.034961794, -0.010202145, 0.03792273, -0.031211736, 0.0069399416, -0.00025978667, -0.024189938, -0.012153022, 0.020685077, -0.013212478, 0.055357777, -0.03539633, -0.0075468644, -0.022728916, 0.037912216, 0.0075880433, -0.040527064, 0.008089019, -0.026288433, 0.0482019, 0.010805629, 0.0023496705, -0.011169113, -0.04382866, 0.0051607555, -0.046577822, -0.06181328, -0.0040784096, 0.016450917, -0.015306829, -0.05161793, 0.016573561, -0.055678297, -0.05692028, 0.05021647, -0.00028931833, 0.017037507, 0.03942023, -0.0375309, 0.016515665, -0.07095445, -0.017057557, -0.012906487, 0.03750666, -0.055457287, -0.009346422, -0.054352947, -0.011893639, 0.006715528, -0.03418819, -0.016961722, 0.034639835, -0.0034034413, -0.040512506, 0.010571325, -0.04556937, 0.022714717, 0.01166867, 1.4502716e-06, 0.027823916, -0.08459958, 0.060696512, 0.0027147601, 0.066223755, -0.010150771, 0.047838267, 0.006675719, 0.009845972, -0.035177164, -0.0061495397, -0.041361835, -0.038399924, -0.02088642, -0.002315449, 0.01685618, -0.0381856, -0.016187841, -0.03579536, 0.04762917, 0.07544119, -0.032944974, -0.0002632867, -0.047919333, -0.006582651, -0.034181394, -0.059439454, 0.012504372, 0.014789992, -0.010660086, 0.012447161, -0.04071029, 0.055046942, 0.021223342, -0.036008596, -0.06387157, 0.01697007, -0.0049204486, -0.06819073, -0.026176281, -0.0018398726, 0.008839487, 0.022710009, 0.029721528, -0.023005808, 0.04346617, 0.017862415, 0.020966606, -0.06714051, -0.014576538, 0.019174539, 0.04366396, 0.07613704, -0.083440565, 0.010626064, -0.051521156, 0.024292706, -0.021248328, -0.02734993, -0.015428608, -0.029403906, 0.043733556, -0.018530449, 0.047724634, 0.045300696, -0.025904097, 0.006381838, 0.00659137, -0.002199289, 0.064938135, -0.016715746, 0.01797658, 0.023168102, 0.029731939, 0.030432051, 0.033205472, 0.00012902264, -0.003162149, 0.002932885, -0.064424165, 0.07297809, 0.04495655, -0.007262838, -0.06992624, 0.039144155, -0.05506777, 0.05738579, -0.013188953, 0.0017350189, -0.000115646726, 0.050146755, -0.013262096, 0.041171312, 0.0011349901, -0.02525615, -0.029268553, -0.022721358, -0.011582346, -0.011525343, -0.05135523, 0.0038335235, 0.05029838, -0.03373869, -0.023739934, -0.024125, -0.01959333, -0.032426592, -0.07943807, 0.023979539, 0.0062056356, -0.027148755, 0.054305714, 0.019504856, -0.00075519097, -0.0058375336, 0.027946735, 0.034856863, 0.03800212, 0.020031624, -0.014747759, 0.010597168, -0.102991, -0.01178442, 0.062925905, -0.026352892 ] }, { "values": [ -0.044339806, 0.009195736, -0.04595998, -0.0337102, -0.020920675, 0.047227945, -0.018780336, 0.06623224, -0.03128729, 0.025850426, -0.0028697518, 0.012652342, 0.03910474, 0.032582767, -0.02303091, -0.061671574, 0.001996299, -0.04563933, -0.064782985, -0.035872567, -0.015818367, 0.06528553, -0.020254154, -0.070194736, -0.0237891, 0.01660863, 0.013902132, -0.0508055, 0.01158209, -0.03643405, 0.034666438, 0.02459422, -0.01775837, -0.025549982, 0.014948818, 0.06830619, -0.052732904, 0.014744521, 0.047966186, -0.037051484, -0.060560208, -0.0433152, 0.0074619288, 0.052054625, -0.011914843, 0.026439724, 0.010340111, 0.020262204, -0.04007772, 0.042306617, -0.02022611, 0.016414803, -0.037715375, -0.0039865193, -0.012350504, -0.023990026, -0.044338487, -0.024760392, 0.033242386, 5.3152497e-05, -0.0052754683, -0.0032238597, -0.0103029525, -0.0048127193, 0.013241532, -0.027011458, -0.036515076, -0.03532868, -0.030396925, 0.009796673, -0.059698265, 0.008693819, -0.09312097, -0.009974503, 0.0152174495, -0.007632487, 0.040553935, 0.017403033, -0.013042847, 0.03050013, -0.010335011, 0.0073151267, 0.07549442, 0.03520661, 0.023051381, 0.019583203, 0.03406401, -0.02259775, -0.042343125, -0.011943575, 0.043332886, -0.026843486, -0.040316135, 0.0131574385, 0.06325304, -0.014769663, -0.021470092, -0.112803854, 0.019617308, 0.07740286, -0.06766006, 0.02746567, -0.019633042, -0.0009232818, 0.05764867, 0.04181769, -0.010859123, -0.046064004, -0.015442892, 0.019561429, 0.009133082, -0.039305843, 0.011538153, 0.030419745, -0.015895149, -0.07782728, 0.008642749, -0.03682931, -0.0043492536, -0.00802141, 0.033416204, -0.033532698, 0.010398106, 0.08572264, -0.0005838539, 0.03029959, 0.049039282, 0.020069601, -0.021112137, -0.0678321, 0.051757343, -0.07694209, 0.04594165, -0.0059255883, -0.070504904, -0.00786343, 0.06965162, 0.058657486, -0.029248165, -0.0020546066, 0.009770662, -0.0051738373, -0.025233082, 0.045161504, 0.009699813, -0.031063909, -0.021242347, -0.049885366, 0.0036504413, 0.01877005, -0.061837394, -0.032310896, 0.06343724, -0.038094573, -0.05942888, -0.0015727167, 0.06866381, -0.03415301, 0.055975262, -0.07970748, 0.018774614, -0.03508453, 0.019027732, 0.01632679, -0.041305687, 0.03356862, 0.04099936, -0.053374793, -0.016914295, -0.05208582, -0.015080747, -0.053105555, -0.017575908, -0.08203961, -0.025737856, -0.022631088, -0.069113314, 0.00034177824, -0.026117615, -0.025067853, 0.049594488, 0.06034528, 0.0029645788, 0.004084977, -0.029530318, 0.020332664, 0.022269974, 0.09103668, 0.004105169, 0.034303103, -0.025172185, -0.005182529, 0.03443676, 0.055331618, -0.0066926884, 0.009636948, 0.07935791, -0.022359442, -0.054740366, -0.040096156, 0.012632632, 0.0045703766, -0.0019751335, 0.043686647, -0.015875056, -0.03816687, -0.051086616, 0.0010440628, 0.0395165, 0.012843938, -0.034099486, 0.021828035, 0.013453895, -0.054778412, 0.009620429, -0.012809253, 0.07780205, 0.090526715, 0.080614015, -0.045377303, -0.0035252385, -0.010613905, 0.037871785, -0.016094081, 0.034133665, -0.017997582, -0.01681141, -0.017416807, -0.013280024, -0.04604742, -0.0070313145, 0.02377438, 0.0072857514, -0.005245317, 0.019404808, 0.04107207, 0.0025771426, 0.013883496, 0.034163203, 0.026003843, 0.019003192, -0.016538, -0.026333991, -0.025798067, 0.007474629, 0.04710306, 0.065242626, 0.06499697, -0.009248524, -0.030461043, -0.0063199634, -0.017341923, -0.0643245, 0.000340887, -0.07493051, 0.0065197586, 0.043862004, -0.05191789, -0.01669337, -0.00559738, -0.012760575, -0.017257446, -0.031088132, -0.042014766, 0.003675366, -0.052028794, -0.0023810635, -0.04174975, 0.011703679, -0.028442813, 0.005103662, 0.0021987823, -0.060523275, -0.04242316, 0.033508964, 0.0032750932, 0.002506224, 0.015638363, -0.033998422, -0.04405331, 0.051316287, 0.00869768, 0.019878212, -0.022284849, -0.0010908775, -0.020546209, -0.007261657, 0.060240503, -0.023147624, -0.052565303, 0.037972882, 0.04162072, 0.0060799136, -0.0065890457, 0.051436357, -0.030511197, 0.018750396, 0.012776366, -0.016660552, 0.039804477, 0.003923117, 0.056752786, -0.05830473, 0.033377375, -0.043323483, 0.08773848, -0.04189437, 0.01175886, -0.039333194, -0.005956311, -0.0015049982, 0.07845268, -0.06340031, -0.030372705, 0.020101296, -0.0036017532, -0.12102042, -0.010719721, -0.028546093, -0.02539607, 0.012019283, 0.011478631, -0.025093561, -0.027540196, 0.04218999, -0.00044378007, -0.025933249, 0.021618502, 0.022212101, 0.010896302, 0.001771447, 0.03943276, 0.02123202, 0.0039544078, 0.017897116, 0.007988014, -0.045065884, -0.007699886, 0.021175697, -0.0154812485, 0.06572581, 0.009541848, 0.062872514, 0.019930376, 0.0047830855, -0.05253676, 0.034576345, 0.012190297, 0.05648769, -0.07772862, -0.05755911, 0.053896416, -0.01632682, -0.0102997385, 0.037586592, 0.009179054, -0.0004361032, 0.025006127, 0.009841052, -0.0079945335, -0.012264064, 0.015370171, -0.003616083, 0.0045004855, 0.010675576, 0.011276769, 0.0115407305, 0.034209564, -0.007541898, -0.02017683, 0.00042534378, 0.042128723, 0.004155211, -0.00012250735, -0.024097461, -0.066625014, 0.004126719, 0.009601039, -0.015996039, -0.046280697, -0.024133546, -0.04900861, -0.02129256, -0.027203305, -0.034150273, 0.021354608, -0.042341962, 0.025636552, 0.0017283118, 0.015524758, -0.028701892, 0.052506756, -0.012463844, -0.012088553, -0.008445288, 0.04610008, 0.034083724, 0.030083451, 0.01451447, -0.0031444984, -0.021281226, 0.00074732146, 0.027349655, -0.035073843, 0.0073627564, -0.0015493486, 0.060379148, -0.02686855, 0.037715666, -0.011043222, 0.054263465, -0.050947595, 0.038918294, -0.0044049285, -0.0052154902, 0.025046514, 0.031018328, -0.022045698, -0.030014906, 0.022317803, 0.00091033604, 0.008242084, -0.015524155, 0.04009013, -0.008966869, -0.061579417, 0.044468775, -0.03177935, 0.059770703, 0.043466896, 0.040962778, 0.026935045, -0.046239156, 0.014607342, -0.008152276, -0.016238991, 0.000518881, -0.016716296, -0.015259752, 0.031980988, -0.012602319, 0.0021751316, 0.05470797, 0.03231257, -0.0036082976, -0.008362956, -0.0031651563, -0.043873146, -0.03126032, -0.07987607, -0.041245997, 0.054065425, -0.0026350294, -0.05138335, 0.021051962, 0.0010856491, 0.030981451, 0.018719075, -0.004664819, 0.029712506, -0.06865843, -0.029742245, 0.027349213, 0.017949687, -0.014321576, -0.025657903, -0.04925576, 0.010515497, 0.007677363, 0.061505217, 0.019579805, -0.034642804, 0.026918089, -0.029307663, 0.008362324, 0.037237022, 0.00037693363, 0.054939523, -0.0064985226, 0.032268222, -0.036631633, 0.024549339, -0.00938189, 0.0075268783, 0.06316882, -0.06890975, -0.027296854, 0.055755064, 0.048692085, 0.030446922, 0.06872173, 0.07020253, -0.01442025, 0.031216228, -0.006509526, 0.0016214392, 0.06734014, 0.010506827, -0.0020238203, -0.009085382, 0.05755288, 0.004066485, -0.034129877, -0.07676876, -0.0062959474, 0.04014587, -0.02327063, -0.0522196, 0.010737253, -0.050772145, 0.032295164, -0.008213418, 0.027385624, 0.00683873, -0.04100602, 0.059665974, -0.07223366, -0.002116304, -0.0031725504, 0.05585805, 0.035112996, -0.025397321, 0.018729819, -0.067515254, -0.07281036, 0.018436857, 0.0070189494, 0.04213425, 0.036096897, 0.0027343784, -0.009131595, 0.019450149, 0.00074375776, 0.013751667, 0.054841332, 0.05297138, 0.014606579, 0.014667251, -0.044503566, 0.022802694, 0.009140628, 0.031038858, 0.056214094, 0.051404726, 0.03810763, 0.01822722, 0.01773638, -0.02237508, 0.022487788, 0.064590625, -0.03503541, -0.036632974, 0.051073376, 0.0033364436, 0.0004990606, -0.033144806, 0.009165853, 0.0010758966, -0.06565201, 0.02138813, 0.05902615, -0.018115994, 0.030979004, -0.035261005, -0.0019924466, 0.0042350506, -0.044277787, 0.022167234, 0.01541521, -0.01379756, -9.880569e-05, 0.00037757054, -0.011040819, -0.041207675, 0.035553873, 0.0067000235, 0.0072619095, 0.011086795, 0.042521376, 0.011380558, 0.045875326, 0.048561677, 0.07368562, 0.0012375012, 0.0151125, -0.011818201, 0.047594067, -0.036180843, -0.0063885422, 0.028990762, -0.02242573, 0.003597101, 0.0032949224, -0.010044416, 0.052098285, -0.02994525, -0.016237462, -0.02542426, 0.06610677, 0.010609854, -0.051499937, 0.0148427505, 0.00800273, 0.033980332, 0.008509845, 0.024330571, -0.03560371, -0.034584377, -0.008981776, -0.02460796, -0.046549685, 0.008359198, -0.03187365, 0.0146171395, -0.03134093, 0.019556724, -0.05027839, -0.019978834, 0.015844908, -0.046490733, -0.019328898, -0.0003853591, -0.061923977, 0.018919023, -0.0872733, 0.026133833, -0.012244599, 0.050707076, -0.04759518, -0.018702315, -0.04778726, 0.004776928, -0.003975493, -0.034220874, -0.0026175498, 0.04298439, -0.010387536, -0.023245826, -0.02664701, -0.05700017, 0.026488679, -0.0058308975, 0.038232807, 0.01909244, -0.08197758, 0.061564054, 0.019504787, 0.042565137, -0.0024490275, 0.06462677, 0.019023351, 0.04955181, -0.030747123, -0.017282061, -0.039150648, -0.037997603, -0.017740924, 0.018062394, -0.004653172, -0.02247334, -0.013559952, -0.019406173, 0.022677653, 0.04922258, -0.037457615, 0.0016386127, -0.03507497, -0.014823744, -0.04023041, -0.04873315, 0.00880386, 0.016559975, -0.008709893, 0.03578999, -0.030752739, 0.053355347, 0.010756649, -0.011828402, -0.054654773, 0.025537001, -0.01344442, -0.072679296, -0.0005161439, -0.02544687, 0.012322537, -0.0334593, 0.022934327, -0.033151224, 0.053619456, 0.019251963, 0.0056855273, -0.08348551, 0.016788073, -0.0019707663, 0.038261015, 0.08797238, -0.056240167, 0.00372891, -0.058023665, 0.035679772, -0.05100337, -0.015120593, -0.024859797, -0.05196837, 0.049918734, -0.0005566903, 0.026184853, 0.046528153, -0.0005570014, 0.03036317, -0.03199292, 0.015802294, 0.06089605, 0.009992506, 0.02846106, 0.036820743, 0.03124286, 0.015071866, 0.029453754, 0.003984545, -0.018653864, -0.0045843013, -0.047689937, 0.09818348, 0.03698084, -0.0017141191, -0.05906403, 0.01799993, -0.023217725, 0.05911787, -0.009330343, 0.011840105, -0.036429875, 0.07464949, 0.017493973, 0.028315553, -0.0005686214, -0.023720948, 0.012806875, -0.037137873, 0.0016122278, -0.013074647, -0.052193977, -0.025440305, 0.030141804, -0.013056649, -0.03307263, -0.04755611, -0.02747161, -0.0375482, -0.058741316, -0.0006053741, 0.03629638, -0.011134531, 0.035355646, 0.008148498, 0.03183046, -0.027104165, 0.040645134, 0.017651867, 0.022546409, 0.005148492, -0.0037547327, 0.0028659268, -0.10541001, -0.028731149, 0.04626729, -0.027135044 ] }, { "values": [ -0.042288367, 0.013170428, -0.030274993, -0.034308907, -0.018121585, 0.03203484, 0.0005942304, 0.03803118, -0.026293723, 0.023828948, 0.0039356244, 0.019811021, 0.052297864, 0.016919402, -0.019238705, -0.055808242, 0.0018226035, -0.026272919, -0.06762697, -0.076171674, -0.029632105, 0.057355735, -0.01450793, -0.064498626, -0.041619714, 0.0006070467, 0.006088327, -0.052358765, 0.019327302, -0.040219355, 0.04405952, 0.04212986, -0.03260169, -0.036256097, 0.04662717, 0.064476356, -0.03579626, 0.014603159, 0.046093505, -0.02606844, -0.05245692, -0.0298515, -0.008565187, 0.034068532, 0.004179184, 0.024870709, 0.034829352, 0.037514493, -0.026328027, 0.06883123, 0.0011773263, 0.015398824, -0.0052286275, -0.006979588, 0.0100666545, -0.03201755, -0.068469554, -0.053528953, 0.0124565, -0.0022594924, -0.0073536285, -0.005392076, -0.0119021265, -0.008471977, 0.033534467, -0.013638184, -0.0110867, -0.036558487, -0.031648982, 0.038554195, -0.03981734, 0.038639024, -0.080996215, -0.012842932, -0.009208554, -0.0017476792, 0.019798057, 0.04941124, -0.042702507, -4.147535e-05, -0.03088808, 0.0106632635, 0.11126678, 0.037409853, 0.033261348, 0.00798242, 0.011461455, -0.025000453, -0.024865942, -0.027521089, 0.059886344, -0.03476633, -0.03558256, 0.017072009, 0.037861004, -0.004933755, -0.016714461, -0.120013684, 0.0033871739, 0.09710633, -0.02636953, 0.012727746, -0.01552506, 0.0005001935, 0.05674099, 0.02873658, -0.017778149, -0.043616097, -0.029586297, 0.034357324, -0.0026667386, -0.040244423, 0.013387204, 0.016294993, -0.025293445, -0.07992063, 0.003914529, -0.029455315, 0.014089299, -0.014905038, 0.031910792, -0.028570468, -0.017952489, 0.07880442, -0.00771869, 0.010882953, 0.037729625, 0.024773683, -0.009123544, -0.08578143, 0.056771923, -0.08896633, 0.031241624, 0.0022545329, -0.064511575, -0.024160007, 0.05757434, 0.07811509, -0.011348968, 0.00034119122, -0.01305597, 0.0012389282, 0.009264717, 0.035264414, -0.0073885154, -0.041692242, -0.021301687, -0.025511015, -0.012162474, 0.030649548, -0.06769017, 0.0004566495, 0.07580885, -0.039094407, -0.056160193, -0.01027784, 0.08471203, -0.0009344595, 0.03812314, -0.08925623, 0.034181993, -0.020009847, 0.021193573, 0.019811891, -0.045206893, -0.009206678, 0.035898257, -0.061785255, -0.006530577, -0.039275393, 0.011001674, -0.018760707, -0.006267322, -0.092218034, 0.0020399287, -0.0012448946, -0.060829367, 0.013765582, -0.008162743, -0.0016966135, 0.04963812, 0.02133146, -0.01022337, 0.007304188, -0.014048547, 0.014583546, -0.024587952, 0.0989491, 0.017236488, 0.033220075, -0.02398069, -0.0057339477, 0.009441271, 0.06337332, 0.0034337225, -0.00012809993, 0.071137965, -0.00430816, -0.0010645788, -0.04373771, 0.038637277, -0.02481931, 0.007462858, 0.028424453, -0.035465486, -0.04859675, -0.046646405, 0.008944182, 0.039703634, 0.02925545, -0.053858753, -0.014289368, 0.03138757, -0.056681383, -0.005171686, 0.0067244056, 0.06290233, 0.093689606, 0.03464954, -0.03148165, 0.0027842852, -0.010595112, 0.033275872, -0.012512006, -0.0032582942, -0.05031014, -0.038626634, -0.06276143, -0.013681143, -0.023484765, -0.016614206, 0.02238224, 0.008209799, 0.010552032, 0.017256994, 0.026698254, -0.02256271, 0.019909378, 0.046498265, 0.029090084, 0.0033635122, -0.012362632, -0.02587207, -0.0055541685, 0.011852682, 0.057225857, 0.07055082, 0.10161561, -0.013819855, -0.024775172, 0.00057641306, -0.00455281, -0.072188534, 0.012927899, -0.0740408, -0.005975632, 0.046892762, -0.071084544, -0.018170455, -0.03417601, -0.00465945, -0.029404301, -0.03479886, -0.0477731, -0.003421196, -0.05776067, -0.014238568, -0.03402528, 0.04839312, 0.0024528774, 0.012286388, 0.012120938, -0.040579177, -0.060913734, 0.052259337, -0.009303446, -0.0027160556, 0.018797483, -0.01912982, -0.043578982, 0.05825449, 0.0031575395, -0.005851674, -0.033666518, 0.018226242, -0.024712732, 0.0074730916, 0.053366937, -0.03564021, -0.057052825, 0.06545678, 0.039007757, 0.01518054, 0.0052323416, 0.034057878, -0.025188796, 0.0039653876, 0.015487642, 0.0122547075, 0.023639675, 0.016130734, 0.058997452, -0.037554312, 0.023404948, -0.05234226, 0.0929411, -0.03998675, -0.010184758, -0.038823724, 0.008706364, -0.009954697, 0.05589817, -0.0412328, -0.033365607, 0.034826994, 0.010061073, -0.11919172, -0.015738813, -0.034537327, -0.020517386, 0.028865248, 0.0267963, -0.03686152, -0.011542202, 0.03539047, -0.014188837, -0.02782606, 0.014755378, 0.000785151, 0.01407298, 0.0101583535, 0.035433438, 0.0071887053, 0.004062231, 0.012327998, 0.0100229485, -0.03941821, -0.010522477, 0.03612711, -0.020417502, 0.058613155, 0.004679345, 0.06388005, 0.013721844, -0.008970982, -0.06344404, 0.015943736, 0.001509503, 0.06504246, -0.057425562, -0.06589397, 0.041890375, 0.015003473, -0.010038766, 0.032062788, 0.014097072, 0.012149955, 0.02839886, 0.034328025, -0.025679683, 0.00096368475, 0.037455488, -0.003850851, -0.005055059, 0.0014139565, -0.0070265355, 0.010175726, 0.024515359, 0.0013373783, -0.031080728, -0.016028637, 0.047500167, 0.013654117, -0.018883415, -0.03562225, -0.082694694, -0.013777673, 0.014643238, -0.025111934, -0.047706477, -0.03494101, -0.036537655, 0.0039918926, -0.03629048, -0.043048173, 0.02529002, -0.03951413, 0.0047427667, 0.015162938, 0.008800714, -0.012901076, 0.066012226, -0.02183254, -0.036232203, -0.014333432, 0.025867052, 0.008783933, 0.04592633, 0.03051905, -0.0100645125, -0.029641695, 0.004244196, 0.018610686, -0.0077655264, 0.00806275, -0.0079404, 0.047329105, -0.037047315, 0.031145446, -0.014548529, 0.048565302, -0.053080533, 0.018599758, -0.01613791, -0.005379594, 0.0140939, 0.016362464, -0.016444065, -0.03022439, 0.021348074, 0.0018259652, 0.014890653, 0.004650265, 0.020480262, -0.012351699, -0.07885369, 0.04032248, -0.033273004, 0.045538396, 0.017428001, 0.03527422, 0.03436512, -0.05039115, 0.014559915, -0.028851276, -0.021972988, -0.003044113, -0.015263553, -0.017716177, 0.00879197, 0.007905768, -0.0024241214, 0.059549943, 0.014892717, -0.011598974, -0.0067243422, 0.020483125, -0.03698284, -0.03668268, -0.06974823, -0.007875211, 0.05301966, -0.0047074617, -0.053626046, 0.018193986, -0.0048756422, 0.014378245, 0.03211797, -0.0053262776, 0.029877342, -0.058712468, -0.038876284, 0.033531193, 0.011793869, -0.0071333, -0.032638438, -0.031775903, 0.009583264, 0.015502002, 0.03803128, 0.014054111, -0.037507176, 0.034811046, -0.0076534054, 0.026158866, 0.039151058, -0.004265584, 0.017788058, 0.004727603, 0.026108539, -0.043453857, 0.048259385, -0.0029604207, 0.00033986574, 0.054840624, -0.0733595, -0.02760642, 0.017935343, 0.049583357, -0.00025916472, 0.046601336, 0.069115534, -0.019712387, 0.03736595, 0.0029747887, 0.0019096865, 0.06969334, 0.0018363983, 0.0150831565, -0.014210426, 0.051096022, 0.007633743, -0.038769074, -0.05668356, -0.007942395, 0.023728415, -0.0081933, -0.05554235, 0.026742226, -0.026453014, 0.017023414, -0.0060696374, 0.031407796, -0.011859727, -0.063098535, 0.06954679, -0.05406415, -0.0020552133, -0.021233715, 0.067241356, 0.015346844, -0.03989243, 0.030622475, -0.08948394, -0.09021468, 0.013462716, 0.020266833, 0.019876435, 0.03444813, 0.0005856582, -0.011764332, 0.011106291, 0.0037617746, 0.012554525, 0.04312728, 0.06576512, 0.005320332, 0.0049432125, -0.03700529, 0.04124435, 0.02058878, 0.009901117, 0.07199431, 0.052438725, 0.043267332, 0.024840327, 0.030098205, -0.014629541, 0.021044936, 0.061532144, -0.047185753, -0.047999643, 0.05220937, -0.005735994, -0.031826984, -0.021266067, 0.008723556, -0.029349068, -0.060286205, 0.026121883, 0.048570134, -0.011691668, 0.036603067, -0.02069515, -0.01870914, 0.007764972, -0.0378793, 0.04312648, -0.008872128, -0.017697299, -0.011613258, -0.011156907, -0.0015288003, -0.05112288, 0.01457145, 0.015529995, 0.016728573, 0.012687459, 0.033631008, 9.1661284e-05, 0.05854702, 0.07563883, 0.07247182, -0.0059884666, 2.1241665e-05, -7.868773e-05, 0.04252946, -0.036069788, -0.0031488915, 0.021152131, -0.0071768714, 0.01952141, 0.010466963, -0.013952224, 0.04005039, -0.007903247, -0.019397395, -0.0357437, 0.037590425, 0.021191359, -0.041969385, 0.004494811, -0.0049497397, 0.024403386, 0.014104721, 0.036089648, -0.024427023, -0.024274692, 0.017323745, -0.021469051, -0.033479445, 0.002959313, -0.019738121, 0.008474734, -0.05006178, 0.029904313, -0.04343515, -0.03400884, 0.024545817, -0.058063127, 0.010708771, 0.02629075, -0.07021676, 0.014770643, -0.07273156, 0.024322832, -0.0011696134, 0.047814116, -0.046134282, -0.0067252205, -0.0395548, -0.01710225, 0.025012322, -0.020996084, 0.004974301, 0.034519106, -0.0025400866, -0.0061402014, -0.0030909404, -0.056302648, 0.021724973, 0.019251414, 0.03496146, 0.026637007, -0.07019142, 0.054547574, 0.02342297, 0.041855723, -0.0016357594, 0.028658915, -0.0071433047, 0.017840615, -0.019603755, -0.024559718, -0.04351568, -0.035366148, -0.0059249233, 0.0154313855, 0.008448942, -0.022242686, -0.026371239, -0.036410052, -0.0008164553, 0.060730394, -0.01857819, -0.018954773, -0.0566426, -0.0033866465, -0.04891703, -0.073067755, 0.0032436172, 0.013089419, -0.0022491473, 0.029197551, -0.042610615, 0.058762874, 0.013538133, 0.00583898, -0.03594795, 0.009489574, -0.0013805459, -0.069361314, 0.012055559, -0.032048818, 0.014657648, -0.031500064, 0.0012109601, -0.02407171, 0.053983055, 0.014945454, 0.023693863, -0.06750317, -0.0005319526, -0.022790153, 0.014498911, 0.10064594, -0.037521858, 0.0020561176, -0.08352784, 0.021636337, -0.045790516, -0.021529794, -0.038448457, -0.015529137, 0.03695485, -0.008792823, 0.019479636, 0.04393764, -0.019511003, 0.013174434, -0.03151481, -0.021218825, 0.049074277, -0.0020049894, 0.028788479, 0.029040033, 0.0322357, 0.009391301, 0.044578355, 0.038174495, -0.018169675, -0.012069838, -0.050252657, 0.09233575, 0.028173994, 0.0066404683, -0.08259303, 0.017734949, -0.033784892, 0.06012131, -0.005511727, -0.0029669364, -0.03712924, 0.072637394, 0.015670208, 0.035328556, -0.033219915, -0.010473362, 0.03389559, -0.028532472, -0.0033956582, -0.009194958, -0.045843046, -0.008752072, 0.034113623, -0.021805966, -0.043817513, -0.06289971, -0.026355347, -0.031489443, -0.06502201, 0.012528363, 0.024794595, -0.020817727, 0.039592735, -0.014056821, 0.013463497, -0.010377439, 0.038619734, 0.011399905, 0.028085958, 0.020757271, -0.012466595, 0.010302709, -0.09695707, -0.010465856, 0.06290388, -0.031401332 ] }, { "values": [ -0.03507646, 0.0077848257, -0.023664938, -0.022044325, -0.016821487, 0.05567507, -0.01245851, 0.026111541, 0.007017933, 0.034944966, 0.002302947, 0.0070892437, 0.033412587, 0.016144868, -0.0136751635, -0.063426174, -0.008799086, -0.036303718, -0.08409842, -0.081492774, 0.0044832006, 0.03796601, -0.01630702, -0.045200992, -0.036275238, -0.014057826, 0.028521553, -0.026145034, 0.010581462, -0.03906538, 0.029817963, 0.04406594, -0.03274965, -0.049439866, 0.014963064, 0.067428745, -0.07096378, 0.0016453422, 0.032530546, -0.02439675, -0.07187045, -0.013241599, 0.012240583, 0.044632714, -0.0014865934, 0.034854386, 0.04329827, 0.03252096, -0.027635915, 0.060049187, -0.025051543, 0.0062288777, -0.0062217577, -0.010463462, 0.007239601, -0.04149163, -0.06632762, -0.00958068, 0.008928185, -0.018685414, 0.00061601907, -0.00047159754, -0.00012845066, 0.004114077, 0.026935736, -0.030911766, -0.03864237, -0.0074414997, -0.010308357, 0.047160164, -0.049257554, 0.02287342, -0.090544105, -0.004179753, 0.0072325324, 0.014318437, 0.041525457, 0.014914163, -0.05175733, 0.007952178, 0.0081553655, 0.028465947, 0.092916235, 0.012147325, 0.023779534, -5.0573704e-05, 0.03289651, -0.03198069, -0.02945322, -0.025988601, 0.044501487, -0.020944893, -0.043334182, 0.019966686, 0.042812567, 0.01443853, -0.031117432, -0.12615249, 0.016773349, 0.07800675, -0.03997609, -0.0022028612, -0.030909145, -0.0030534388, 0.057231557, 0.025087386, -0.023504412, -0.026395444, -0.044276588, -0.00088766724, 0.006107237, -0.053014908, 0.023728518, 0.014360118, -0.03325084, -0.07487439, -0.029317621, -0.028110955, 0.007899461, 0.009208231, 0.037299816, -0.03700925, -0.015741289, 0.0784597, 0.010718369, 0.022730999, 0.05146298, 0.036958475, -0.03652674, -0.0574984, 0.058428455, -0.07932908, 0.038887296, -0.012653048, -0.04781693, -0.029511873, 0.08543749, 0.06797089, -0.019626882, -0.004186856, -0.004778652, -0.001293236, -0.015213253, 0.042279292, -0.0032816967, -0.042737205, -0.0062622917, -0.026310226, -0.024794549, 0.040237702, -0.0849948, -0.023213584, 0.060061157, -0.03096066, -0.054603256, 0.013725085, 0.06912729, -0.012100605, 0.048152365, -0.07922885, 0.026797526, -0.0008614953, 0.009565862, 0.022378262, -0.05036843, 0.018019538, 0.033221997, -0.070404135, -0.013944268, -0.032152507, -0.009607427, -0.024637293, -0.019087043, -0.0761634, -0.02370112, -0.016857207, -0.035342876, -0.0023476987, -0.027771594, -0.009570909, 0.04880119, 0.04856098, -0.016346686, -0.0060231537, -0.014006799, -0.004641125, 0.0020090465, 0.09196162, 0.016799675, 0.040006936, -0.031355504, -0.002946499, 0.011016612, 0.05789149, -0.013464779, -0.0053905025, 0.05800253, 0.0046803826, -0.028631024, -0.042275008, 0.031675477, -0.014046524, -0.0026570063, 0.039673064, -0.04178335, -0.016230533, -0.051662218, 0.0010035766, 0.029945236, 0.010269134, -0.034957495, -0.013040873, 0.037109867, -0.044093706, 0.0009617413, 0.0062352037, 0.076637, 0.08742882, 0.059826914, -0.018979454, -0.027020583, -0.017598424, 0.016607948, -0.005254766, -0.0036412112, -0.041864518, -0.033228163, -0.041072186, -0.023931738, -0.03235183, 0.0015976378, 0.02741246, 0.007019908, -0.0038882834, 0.01306161, 0.04263897, -0.017439032, 0.021552386, 0.057905298, 0.042637274, -0.013737244, -0.018469112, -0.03226923, -0.0010372013, 0.0029591466, 0.061029065, 0.064025395, 0.09737773, 0.00838148, -0.03659824, -0.037375465, -0.0059001786, -0.0626636, -0.00093810627, -0.070877634, -0.008425708, 0.0437498, -0.064874105, -0.0020490095, -0.010359042, -0.0033585334, -0.00902547, -0.024309125, -0.031699687, 0.0059389477, -0.065152794, -0.022637459, -0.032918736, 0.046157304, -0.010209862, 0.018110048, -0.0031301742, -0.04628831, -0.06395533, 0.03309281, 0.003967444, -0.0151569545, 0.018879745, -0.015303286, -0.049073935, 0.06295949, -1.47832725e-05, 0.0074259923, -0.037240617, 0.012460038, -0.020778118, 0.005288644, 0.047749896, -0.028275613, -0.04119529, 0.04462136, 0.051929332, 0.011192577, -0.0068759704, 0.024079876, -0.005683378, 0.02218141, 0.0023221194, 0.0043326053, 0.03467343, 0.011179522, 0.049674135, -0.050913002, 0.036244534, -0.04642328, 0.06843425, -0.04023496, 0.002914544, -0.034092676, -0.006237758, 0.0037953528, 0.044556916, -0.03391881, -0.03061784, 0.021289596, -0.0028919938, -0.1314342, -0.033433724, -0.05606052, 0.0071739163, 0.026084859, 0.02179308, -0.016154252, -0.027537057, 0.045962367, 0.010371528, -0.013585386, 0.01765934, 0.009983997, 0.008325605, 0.019355752, 0.037230965, 0.027732318, -0.0016784917, 0.028190995, -0.0022588621, -0.017130068, -0.025625868, 0.07003322, -0.00787459, 0.05948315, 0.008865418, 0.0712402, 0.023581855, -0.021658977, -0.062983975, 0.03927375, 0.00097400177, 0.03956246, -0.067259945, -0.061428264, 0.049119566, 0.010548628, 0.006827708, 0.034005575, -0.004435171, -0.006983631, 0.0016296862, 0.026003996, -0.025745574, 0.012189346, 0.030189503, -0.01668919, 1.6680648e-05, 0.015077016, 0.0020765604, 0.0056445054, 0.04356698, 0.0028470503, -0.035231967, -0.007268921, 0.024895351, 0.005093659, -0.0051202327, -0.036904436, -0.06136224, -0.000592133, 0.017423507, -0.027609626, -0.056852248, -0.018099312, -0.03586577, -0.01007209, -0.011629549, -0.041011844, 0.04361111, -0.027275305, 0.014616992, 0.015103412, 0.0064200233, -0.026766436, 0.0643223, -0.026527233, -0.0056652245, -0.04274917, 0.033196043, 0.0031188386, 0.026034005, 0.026847495, -0.011840452, -0.02941139, -0.0010368837, 0.023022152, -0.01492766, 0.020448625, -0.008805859, 0.051596265, -0.054621585, 0.03170431, -0.02147123, 0.048839975, -0.044129647, 0.023776812, -0.0069370465, -0.011029911, 0.010773795, 0.028883738, -0.01604268, -0.03288561, 0.011138472, 0.0065950314, 0.03659529, 0.0012452898, -0.00011538832, -0.015783526, -0.08678168, 0.013440017, -0.019290557, 0.062802985, 0.042880867, 0.026195414, 0.025111213, -0.055888426, 0.025360597, -0.007269057, -0.016540134, -0.0029642247, 0.0026400834, -0.019271191, 0.0276307, -0.0077383243, 0.010991073, 0.033657752, 0.017038167, 0.0030387328, -0.015099373, 0.029639848, -0.02935593, -0.03495213, -0.07798542, -0.045577485, 0.032850474, -0.013386817, -0.02820037, 0.030221814, -0.0011131285, -0.0012650413, 0.037564024, -0.023523679, 0.028237782, -0.084824584, -0.030195026, 0.04718165, 0.010957027, -0.0031065568, -0.03874794, -0.048838463, 0.012870443, 0.031286195, 0.06304567, 0.006232704, -0.034228005, 0.050523017, -0.021950401, 0.021047981, 0.048744604, -0.0008952731, 0.047274653, 0.029477967, 0.029853798, -0.035610132, 0.043821435, 0.00015304257, 0.018494789, 0.06811874, -0.09004391, -0.0011842694, 0.026029104, 0.048685316, 0.017993707, 0.06309908, 0.07287328, -0.020797648, 0.040004272, -0.012685165, -0.010981738, 0.03301692, 0.02067915, 0.0015153721, 0.0067393235, 0.030192075, -0.005657518, -0.03206818, -0.06525851, 0.013036116, 0.016025955, -0.034890473, -0.0642834, 0.008766728, -0.03741182, 0.032617535, 0.00332127, 0.019716242, -0.005217731, -0.036246087, 0.04512636, -0.062360425, -0.0025014607, -0.015835034, 0.0693409, 0.03397967, -0.029509295, 0.036317598, -0.08304546, -0.09567361, 0.0015465512, 0.03950993, 0.033804454, 0.03328158, 0.016818728, -0.0059598936, 0.010288586, -0.0014917325, 0.020031115, 0.04212905, 0.057450157, 0.018991934, -0.004417162, -0.03306452, 0.031566802, 0.039761934, 0.024698457, 0.06196315, 0.031924266, 0.050760698, -0.005491843, 0.017656012, 0.002822229, 0.008596243, 0.055873703, 0.0027214647, -0.049921375, 0.05629448, -0.009524406, -0.0014826582, -0.03785119, 0.016112035, -0.03774646, -0.065064445, 0.026845079, 0.06300381, -0.01958391, 0.053526018, -0.031663544, -0.0031404623, -0.026151117, -0.038469218, 0.022093222, -0.018180674, -0.029783651, -0.0040061306, 0.01058775, -0.015011196, -0.057331014, 0.010081647, -0.0059635947, 0.027124153, -0.005203787, 0.03806001, 0.0023035118, 0.039102852, 0.04967807, 0.072437234, -0.0016633687, 0.014502771, 0.015477376, 0.03429985, -0.028180882, -0.00539921, 0.021209726, -0.0057070674, 0.014334534, 0.002538407, -0.006168653, 0.049406506, -0.025927542, -0.0061627086, -0.032892033, 0.043695748, 0.00844415, -0.036130093, 0.0034278932, 0.024350926, 0.033634454, -0.0028429846, 0.025881678, -0.027216384, -0.036037028, 0.019299544, -0.040928014, -0.04532423, 0.011895266, -0.0057771597, 0.021379825, -0.0472993, 0.014149524, -0.05578606, -0.027402556, 0.037652314, -0.047852747, 0.005745143, 0.009133349, -0.058586225, 0.028396469, -0.06578199, 0.030049743, -0.007507097, 0.054218072, -0.042258274, -0.013020265, -0.035211023, -0.0038904846, 0.020668928, -0.026119757, 0.008572205, 0.021195656, -0.020824395, -0.0113996025, -0.02081188, -0.04825991, 0.031967487, 0.0059579574, 0.014102454, 0.0069489083, -0.07526548, 0.06458646, 0.0106090065, 0.0463915, 0.009345357, 0.050751675, 0.011144637, 0.03334515, -0.03505653, -0.026534116, -0.05183619, -0.041492946, 0.0039341766, 0.023293074, 0.02030955, -0.0037704245, -0.033445008, -0.039517306, 0.0152157275, 0.061029427, -0.030017216, -0.015114346, -0.05806536, -0.0134534715, -0.040207155, -0.059186984, 0.019410247, 0.008075455, 0.011729983, 0.033427432, -0.03541161, 0.044708382, 0.025045289, -0.0119000515, -0.025581937, 0.011484455, 0.0022937884, -0.063721485, 0.008345243, -0.03986228, 0.013188627, -0.028179605, 0.00060044107, -0.045028333, 0.042352114, 0.0015114712, 0.027248625, -0.07428206, 0.02352617, -0.0150956595, 0.024061617, 0.08805665, -0.04819631, -0.020373086, -0.078312755, 0.0477825, -0.05687729, -0.03444374, -0.03824197, -0.02841926, 0.042344317, -0.00048511455, 0.041217793, 0.03681217, -0.019432861, 0.0026305558, -0.03462004, 0.010003254, 0.053862922, 0.0039670733, 0.02286832, 0.05713097, 0.019337384, 0.016439019, 0.048281394, 0.013043948, -0.01456449, -0.012175357, -0.04581105, 0.1027249, 0.027241113, -0.024624297, -0.05736355, 0.01761227, -0.04412281, 0.05528031, 0.0029740243, 0.011035014, 0.00027070014, 0.052274942, 0.029146781, 0.02614433, 0.0023107731, -0.009945494, 0.002661586, -0.009042636, -0.004135874, 0.0009787877, -0.047656637, -0.019939212, 0.04652437, -0.010700234, -0.032990433, -0.039918527, -0.03495407, -0.05177193, -0.07607035, 0.0025325727, 0.023731312, -0.009114832, 0.043849606, -0.013016544, 0.017993381, -0.035672892, 0.053783417, 0.014553008, 0.00628897, 0.022173392, -0.017285576, 0.004491399, -0.11987041, -0.022529207, 0.04761488, -0.042599656 ] }, { "values": [ -0.04529436, -0.0086803725, -0.04496178, -0.04386597, 0.0017581487, 0.044271868, -0.01219379, 0.051791593, 0.007976814, 0.040972535, -0.0048229964, 0.0284745, 0.025867034, 0.024813285, -0.021059386, -0.07514599, -0.0003756833, -0.021094197, -0.054813147, -0.083296135, 0.0068783807, 0.034254692, -0.032494254, -0.06950224, -0.059252094, 0.014737765, 0.024328863, -0.040955044, 0.009959745, -0.03144129, 0.014991644, 0.03133576, -0.031125879, -0.027025782, 0.05372184, 0.03546712, -0.06095354, 0.0010535379, 0.026875397, -0.015923139, -0.06689722, -0.011868707, -0.0022017558, 0.032256473, -0.018488465, 0.03882871, 0.04973728, 0.02324179, -0.059365686, 0.068771794, -0.011163696, 0.009810058, -0.011810486, -0.001074363, -0.004415328, -0.026957273, -0.046591494, -0.040305115, 0.01410758, -0.028968481, -0.011646357, -0.02733007, 0.015353116, -0.0063102758, 0.036640856, -0.04771966, -0.023468232, -0.009653308, -0.014814584, 0.027209198, -0.054888036, 0.02230561, -0.08051006, -0.0066437437, -0.0040092985, 0.0012865614, 0.027075997, 0.030312512, -0.041906197, 0.0046024458, -0.0099725975, 0.01801738, 0.10042673, 0.03007211, 0.026847487, -0.014908163, 0.012330152, -0.013453463, -0.0075398097, 0.004767625, 0.06121478, -0.03187102, -0.047392152, 0.023070792, 0.046248145, 0.011809598, -0.027436512, -0.092952855, 0.02055426, 0.069570735, -0.01740433, 0.007483829, -0.049423814, 0.004142755, 0.04696123, 0.0003255207, -0.021602618, -0.04057844, -0.04879896, 0.013471453, 0.012968284, -0.045035213, 0.005432146, -0.005609188, -0.022402907, -0.06807113, -0.025063826, -0.01611272, -0.0038428209, 0.00527433, 0.0540101, -0.019248432, -0.0037451664, 0.06329568, 0.014550723, 0.02926803, 0.07765581, 0.029658532, -0.022167908, -0.057714015, 0.065157846, -0.08208258, 0.035143115, 0.007781193, -0.05014567, -0.029420575, 0.056617264, 0.0752275, -0.007794271, -0.00029027712, 0.015609756, 0.0076441662, -0.001282812, 0.011247633, -0.001573049, -0.044109646, -0.01140559, -0.024066733, -0.028374573, 0.034501504, -0.101676896, -0.016791876, 0.06300701, -0.032876696, -0.053783398, -0.016374951, 0.0639832, -0.020090379, 0.060728516, -0.07600044, 0.03053869, -0.0092327455, 0.016179105, 0.024982855, -0.04088243, 0.029651135, 0.051028535, -0.083681636, 0.009908681, -0.010833511, 0.0074501457, -0.012677727, -0.020312348, -0.09794954, 0.0054825083, -0.018059636, -0.035318974, 0.013027931, -0.0042680325, -0.017210353, 0.06575155, 0.029687986, -0.008793067, -0.018987805, -0.008814872, 0.0063273655, -0.020502303, 0.10072251, 0.01818931, 0.03184398, -0.031078624, -0.0018992973, 0.0077803563, 0.065580726, -0.0074390755, 0.0093421135, 0.051473428, 0.002411206, -0.0070146644, -0.055478584, 0.049323026, -0.041790415, 0.015505707, 0.036973298, -0.038453907, -0.02048274, -0.07075896, -0.014728591, 0.02948709, 0.022929573, -0.02342175, -0.03411174, 0.016325576, -0.05822406, 0.012375235, -0.010144225, 0.056635194, 0.10872479, 0.020067625, -0.03277105, -0.008508435, -0.005879405, 0.013383635, 0.0015673132, -0.0076682833, -0.033367764, -0.012495832, -0.041294243, -0.026401257, -0.02521848, -0.0089277765, -0.0066873212, 0.0088472655, 0.007184371, -0.00013230993, 0.052791793, -0.03260218, 0.02365953, 0.058257174, 0.03731244, 0.013716114, -0.0052764807, -0.010124161, 0.0074728657, 0.000992572, 0.040426955, 0.05956603, 0.13440634, -0.015438073, -0.032978807, -0.051343396, -0.0042766896, -0.056544278, 0.00017658611, -0.06325539, -0.016142184, 0.033423346, -0.06793002, -0.020832503, -0.03754124, -0.01168308, -0.029000698, -0.04035977, -0.052386716, 4.774334e-05, -0.075414255, 0.002930806, -0.036981113, 0.0396236, 0.0056584203, 0.026004763, -0.023815174, -0.04874362, -0.07427507, 0.037063524, 0.0007350519, -0.027003506, 0.024063377, -0.03422382, -0.05985172, 0.047119975, 0.015918298, -0.007572931, -0.014118985, 0.016509637, -0.013915896, -0.0042409925, 0.024740238, -0.018511731, -0.070569, 0.047354095, 0.06401242, 0.012114744, 0.013867531, 0.028499845, -0.007132429, 0.014994235, 0.007638605, 0.014628261, 0.011831287, 0.012476004, 0.05871698, -0.03494088, 0.04177663, -0.048524246, 0.07767574, -0.033698514, -0.0027953496, -0.02644412, -0.0049301744, 0.017848048, 0.05217908, -0.04106206, -0.018492369, 0.008476369, -0.0017220989, -0.11575557, -0.01723694, -0.057089936, -0.015613044, 0.043488946, 0.037983492, -0.033450786, -0.027429929, 0.036909323, 0.008297951, -0.018301522, -0.00012688503, 0.0025373024, -0.0121977795, 0.032478217, 0.028021475, 0.023300633, -0.030093156, 0.017278014, -0.016186576, -0.026930429, -0.023204014, 0.0623907, 0.0020177711, 0.04882434, 0.01562592, 0.078604355, 0.022919592, -0.026651293, -0.039445765, 0.032330554, 0.019712996, 0.06293945, -0.05321941, -0.06327754, 0.04227642, 0.02894871, 0.014848047, 0.053197768, 0.0068747373, 0.0051072794, 0.021007124, 0.015328618, -0.04301064, -0.0014587246, 0.022971123, -0.02213821, -0.010026915, 0.008990583, -0.0022943143, 0.012875131, 0.03378058, 0.0069970833, -0.04662715, -0.0068791546, 0.039109085, 0.01031504, -0.017550606, -0.04054891, -0.07532787, 0.0040107714, 0.015097672, -0.017983276, -0.03858017, -0.041035093, -0.05206859, -0.005145203, -0.018324101, -0.035956476, 0.055828374, -0.04215589, 0.008044681, 0.003460724, -0.0074857604, -0.038673736, 0.059081815, -0.0024547859, -0.025940705, -0.04721138, 0.036148217, -0.00016896286, 0.026285745, 0.026939774, -0.010216936, -0.038389284, 0.008295376, 0.013324584, -0.022278307, 0.012775788, -0.012199668, 0.05214048, -0.052142825, 0.028167825, -0.010516142, 0.04871449, -0.05413034, 0.042218912, -0.031863794, -0.013318448, 0.006928324, 0.024598762, -0.020405704, -0.047207486, 0.004636191, 0.00048254896, 0.02817943, -0.0017196719, 0.042530432, 0.008008557, -0.07406908, 0.022433428, -0.020689286, 0.07555314, 0.03567043, 0.032825965, 0.032722823, -0.04558003, 0.022314092, 0.012114469, -0.023485862, 0.008017412, 0.01597834, -0.011118447, 0.018306976, -0.0027248098, 0.008954476, 0.05001946, 0.027018776, -0.018340327, -0.007834584, 0.02586613, -0.042920675, -0.027932465, -0.061355002, -0.019859025, 0.041835107, -0.012538655, -0.045415014, 0.042717874, 0.004229333, 0.020091884, 0.0409044, -0.049023207, 0.022002617, -0.066966735, -0.029759292, 0.04750783, 0.042344507, -0.008116044, -0.034303315, -0.04999984, 0.025190558, 0.022414844, 0.05236105, 0.02056949, -0.030964008, 0.027775425, -0.019002436, 0.013536948, 0.04293357, 0.020031212, 0.032200497, 0.026255062, 0.03202262, -0.038513277, 0.03128292, -0.014542807, 0.031696133, 0.059169877, -0.08153987, -0.0079066055, 0.017567324, 0.011439897, 0.028382136, 0.04809084, 0.07914537, -0.0037470846, 0.034979586, -0.011290712, -0.014938852, 0.04024772, -0.0050537135, -0.0073523037, -0.021758169, 0.05658697, -0.012415917, -0.011578778, -0.048103742, 0.02626282, 0.0073719644, -0.019411381, -0.053424474, 0.020008864, -0.034398936, 0.014887375, 0.008956072, 0.042346194, 0.0033830083, -0.047089368, 0.066077545, -0.057177406, 0.003751348, -0.03651007, 0.06429695, -0.006903626, -0.018363604, 0.040747657, -0.087328926, -0.0877201, -0.002888818, 0.0026801263, 0.03098286, 0.03767012, -0.00441304, -0.0029603746, 0.036643233, 0.0031170389, 0.0010267033, 0.036585663, 0.059973672, 0.0108946385, 0.00094645895, -0.021910487, 0.041384347, 0.030603841, 0.019786842, 0.07650013, 0.035323985, 0.047487736, -0.0047374996, 0.01165836, 0.00019609799, 0.019709092, 0.071913235, 0.00840032, -0.04742989, 0.036681194, -0.02447348, -0.00013812874, -0.023832077, -0.01725443, -0.040705454, -0.04916614, 0.02844198, 0.05038586, -0.014287948, 0.028024567, -0.0055532237, -0.025842303, -0.028757092, -0.039893456, 0.012815884, -0.03048598, -0.041368548, -0.005861001, -0.0036073632, -0.0056771575, -0.047684688, 0.012412681, 0.004667705, -0.00350551, 0.015437953, 0.055104546, -8.520451e-05, 0.049989138, 0.054804824, 0.07100069, -0.01688237, -0.0045351554, -0.00064114766, 0.059208613, -0.05424738, 0.0024721758, 0.019213658, -0.006924262, -0.020600922, 0.006403855, 0.0026147675, 0.037193265, -0.010922828, -0.009983707, -0.041174896, 0.048857, 0.013122664, -0.027872808, -0.015271444, 0.015163939, 0.009486927, 0.002209251, 0.03086405, -0.009926577, -0.036789972, 0.029005878, -0.011483904, -0.034660466, 0.016344272, 0.015998367, -0.0043227877, -0.04250193, 0.010735725, -0.042965803, -0.042512972, 0.048052333, -0.041807745, -0.0030852726, 0.024810966, -0.038627803, 0.02546755, -0.059866264, 0.009306214, -0.01926444, 0.06531257, -0.045012187, 0.0013932968, -0.046268966, -0.00978761, 0.050567962, -0.028491978, 0.008712627, 0.013691268, -0.03064242, -0.018655334, -0.016305948, -0.054615308, 0.045569416, -0.004285229, 0.015840035, 0.04776544, -0.06243396, 0.0492922, 0.0012444727, 0.04932017, -0.0054257433, 0.03242209, -0.01054506, 0.009404441, -0.031479243, -0.025859749, -0.04386172, -0.043909773, -0.019946694, 0.00092783873, 0.016635127, 0.017423995, -0.03507003, -0.031732887, 0.025377594, 0.06935087, -0.032588363, -0.009302879, -0.06511516, -0.004789337, -0.038811434, -0.057481863, 0.020784643, 0.02613386, 0.00050047145, 0.017077137, -0.03728971, 0.04421502, 0.01886839, -0.019411488, -0.04232702, 0.025917096, 0.0074234335, -0.067244455, -0.0064409105, -0.028114827, 0.020493824, -0.021564756, 0.0053076628, -0.023719287, 0.033211004, 0.027705979, 0.03794343, -0.048600342, 0.015894186, -0.0015948412, 0.022546459, 0.09790875, -0.04129341, 0.01258532, -0.06913117, 0.034354147, -0.045190338, -0.034743212, -0.02405022, -0.020000465, 0.026803762, 0.015473979, 0.035409264, 0.02614002, -0.02700122, 0.008586069, -0.040227674, -0.0010306668, 0.050035946, 0.0026142679, 0.019087506, 0.028930271, -0.0017443963, 0.016415939, 0.04699318, 0.00064211973, -0.00059482997, -0.0058191996, -0.042922847, 0.085401036, 0.019269947, -0.012820607, -0.0796039, 0.02783184, -0.053759847, 0.07256368, 0.0035642434, 0.032577053, 0.0038871844, 0.061756704, 0.016581275, 0.028171329, -0.014369925, -0.0056183725, -0.009275486, -0.0019668832, 0.0071847704, -0.0037045788, -0.044973955, -0.022108994, 0.04038263, -0.023152359, -0.03976346, -0.036712028, -0.018899327, -0.019092105, -0.063770585, 0.02738605, 0.015253616, -0.016134156, 0.059870813, -0.010857147, 0.00746832, -0.020314626, 0.03244412, 0.026657345, 0.02949003, 0.025885561, -0.009020301, 0.0074462625, -0.09478674, -0.008988435, 0.06160655, -0.03425222 ] }, { "values": [ -0.04110425, -0.008220703, -0.043105148, -0.04010713, -0.01572689, 0.038250666, -0.011877291, 0.05097267, 0.0002972672, 0.028443074, 0.0010941927, 0.009545362, 0.030934073, 0.04489861, -0.007307614, -0.055711363, -0.004477719, -0.028488917, -0.081136815, -0.069553226, 0.011885808, 0.0442953, -0.042030312, -0.041506004, -0.03694344, 0.0095499065, 0.0055691926, -0.05218351, 0.0001816946, -0.022029692, 0.034838963, 0.037674848, -0.045208275, -0.019964436, 0.020403728, 0.065696664, -0.048056066, 0.010224266, 0.032543037, -0.03915816, -0.057189204, -0.02536547, 0.021369427, 0.03028942, -0.006849585, 0.04534134, 0.05203037, 0.033335555, -0.04333628, 0.043845303, -0.011166851, 0.007809483, -0.017574284, -0.013006032, -0.027253732, -0.037507493, -0.05235195, -0.026478292, 0.016415296, -0.007685068, -0.016001834, -0.008621697, -0.00215013, -0.013321822, 0.03918923, -0.028759362, -0.01939161, -0.0039843926, -0.016354011, 0.039712694, -0.0770802, 0.0369774, -0.08265737, 0.004492921, 0.0032445113, -0.005471391, 0.035601184, 0.022158837, -0.025744107, 0.013210515, -0.013065742, 0.02715945, 0.095970914, 0.047872752, 0.028164873, -0.018645601, 0.025373617, -0.0037567208, -0.02370759, -0.00593903, 0.051295437, -0.03609077, -0.031802095, 0.001879778, 0.04436338, 0.004179157, -0.036102083, -0.0861685, 0.03436965, 0.06609823, -0.050017685, 0.01635018, -0.026342932, 0.011364642, 0.046709653, 0.025253952, -0.023504172, -0.036303002, -0.04554291, 0.018858265, -0.0025392766, -0.04649748, 0.010021359, 0.015367518, -0.031359572, -0.083471045, -0.026413297, -0.0053948313, 0.00026048778, -0.0027640283, 0.02758718, -0.022348944, -0.00808338, 0.083246, 0.016063102, 0.030146476, 0.040942598, 0.049204897, -0.033268496, -0.030673172, 0.076281905, -0.06529363, 0.061976235, -0.0005683485, -0.053146973, -0.011354659, 0.081250265, 0.08086989, -0.032008823, 0.00919838, 0.00057376537, -0.014181888, -0.020852413, 0.025684822, 0.011564434, -0.028721489, -0.0161696, -0.02671455, -0.030918347, 0.05363367, -0.084604934, -0.034744214, 0.07057394, -0.039979212, -0.062689304, -0.0065830685, 0.051459428, -0.026385795, 0.054239098, -0.09605369, 0.0374466, -0.0011740194, 0.016564572, 0.04185053, -0.03603553, 0.015408105, 0.048388872, -0.053373758, -0.01071573, -0.027732082, -0.0049422258, -0.016254287, -0.04332987, -0.07794329, -0.016640654, -0.0015352543, -0.062469088, -0.006943988, -0.009048748, -0.005578073, 0.05785313, 0.07049092, -0.0024934276, 0.0038526228, 0.001473623, 0.00012214093, -0.0026463966, 0.08712213, 0.021280712, 0.029612051, -0.038542718, 0.014444492, 0.0042663882, 0.06379307, -0.01990592, 0.027784593, 0.05247721, -0.020294188, -0.013302116, -0.040885866, 0.040943, -0.027969057, 0.008567218, 0.02704613, -0.04349429, -0.02928761, -0.05343197, -0.00984617, 0.045093596, 0.0107119, -0.02902803, -0.02316628, 0.018954122, -0.06478974, 0.006947765, -0.0066864523, 0.07250326, 0.0801123, 0.044683788, -0.04333434, -0.021503361, -0.0026391088, 0.009833655, 0.008153483, 0.015673257, -0.032659452, -0.019780029, -0.025263323, -0.038554274, -0.057278756, -0.012343721, -0.0023020748, -0.0016470532, 0.019637883, 0.014928876, 0.05252302, 0.012412078, 0.02382107, 0.040715326, 0.051403787, 0.028132925, -0.008079446, -0.02790102, -0.013910421, -0.005232715, 0.03746393, 0.04953393, 0.09935151, -0.008576428, -0.05322079, -0.021766374, -0.011439024, -0.041355535, 0.008115337, -0.05086056, 0.00072448316, 0.04060704, -0.06510041, -0.0072913226, -0.011591397, -0.0034848321, -0.015189859, -0.04518297, -0.021679956, 0.0005488809, -0.055023648, -0.004858478, -0.030791478, 0.01723291, -0.011763886, 0.0106991315, -0.002314507, -0.0667146, -0.04745716, 0.040459357, -0.003740971, -0.02331199, 0.010064347, -0.04967464, -0.043105993, 0.052726846, 0.014979247, 0.00961213, -0.024100805, -0.0022136192, -0.0062987255, -0.034452207, 0.053388316, -0.013315253, -0.060713574, 0.033639003, 0.06051882, 0.0013472134, 0.0021649068, 0.031744067, -0.015622081, 0.010828625, 0.008944851, 0.0035038916, 0.028935699, -0.001710747, 0.058132365, -0.03051965, 0.04484831, -0.036255606, 0.07815039, -0.03482404, -0.0015051065, -0.023955349, -0.019706078, 0.01129891, 0.038332142, -0.054872785, -0.036212016, 0.02856385, -0.012533917, -0.120949194, -0.022969276, -0.033521608, -0.0115551, 0.011494526, 0.023273222, -0.028948754, -0.0055555603, 0.034117304, -0.0017372603, -0.01747651, 0.014275307, 0.00025338208, -0.005116837, 0.027452122, 0.024530068, 0.020006299, -0.012028604, 0.037675112, 0.012474766, -0.031042537, -0.013802018, 0.042662762, -0.010581461, 0.07254619, 0.0029664047, 0.062757164, 0.030436378, -0.002446184, -0.05869038, 0.044462908, -0.0063528013, 0.05220716, -0.079549275, -0.043012314, 0.033319313, 0.011539574, 0.0010555675, 0.033666585, 0.011288697, -0.009460273, 0.022808643, 0.019217528, -0.027305689, 0.016909486, 0.026206072, -0.021338942, -0.014448181, 0.010542569, 0.0091263605, 0.008367892, 0.03416609, -0.006960239, -0.048389908, 0.00941717, 0.04408374, 0.0070083966, -0.019390551, -0.01895421, -0.05165151, 0.012658565, 0.010906868, -0.0056787417, -0.055072553, -0.035514247, -0.04420552, -0.007824994, -0.01094464, -0.03785688, 0.04257996, -0.03725969, 0.010935609, -0.0037287218, 0.003909806, -0.024957476, 0.07723757, -0.013089473, -0.021916078, -0.051690586, 0.050215337, 0.001569166, 0.03378829, 0.02955108, -0.0026666834, -0.043230087, -0.007325344, 0.033654433, -0.034381464, 0.020633677, -0.017767154, 0.061549548, -0.043686356, 0.038793948, -0.02297885, 0.060509123, -0.05058556, 0.031061199, -0.022142634, -0.027500302, 0.014608773, 0.0258602, -0.034246527, -0.03453806, 0.028417794, -0.017223421, 0.030368494, -0.0073523936, 0.035565827, 0.009769392, -0.07300723, 0.016758319, -0.03053143, 0.06592649, 0.037761353, 0.01814311, 0.0322311, -0.045635197, 0.032064717, 0.005750564, -0.028336642, 0.014004657, 0.010687299, -0.025111407, 0.034581896, 0.00062976114, 0.012225117, 0.030611306, 0.02634004, -0.00054886425, -0.014012376, 0.021310566, -0.046621956, -0.04062926, -0.06371787, -0.016822318, 0.05980702, 0.006970961, -0.04145424, 0.010047192, -0.0002935394, 0.019881565, 0.03773779, -0.034188848, 0.022690428, -0.07229104, -0.04458242, 0.030977685, 0.034591362, -0.019188622, -0.038225822, -0.04578117, 0.018749574, 0.012866158, 0.07306877, 0.03173826, -0.03851919, 0.03955279, -0.033091888, 0.006141488, 0.04230322, 0.010642964, 0.039043058, 0.011570457, 0.029167296, -0.030177219, 0.038951963, -0.0018650609, 0.021686876, 0.07688104, -0.09324856, 0.010383271, 0.04479078, 0.03134172, 0.018889485, 0.06219235, 0.09614162, 0.0057901847, 0.02227119, -0.014534396, -0.01582765, 0.047649454, 0.0034948136, 0.010343394, -0.0037230672, 0.054450125, -0.018234026, -0.024441864, -0.06142884, 0.013763003, 0.027469408, -0.01747437, -0.060016885, 0.017634362, -0.050330415, 0.036940813, 0.016155738, 0.027189082, -0.006524269, -0.041678995, 0.0508455, -0.06820413, -0.0030179908, -0.004374656, 0.06423879, 0.023045039, -0.022211097, 0.024036964, -0.08307006, -0.07881256, 0.008305986, 0.005877951, 0.034827657, 0.047629107, 0.0016554522, -0.02417578, 0.011941025, -0.0016284971, 0.0072701853, 0.042103227, 0.074300684, 0.026080772, 0.0051837303, -0.039857622, 0.024484092, 0.026191132, 0.025948316, 0.06510064, 0.03206269, 0.04733304, 0.020083088, 0.035486333, -0.007767935, 0.017251855, 0.08370608, -0.010559443, -0.035822622, 0.04272586, -0.0023140889, -0.0046023875, -0.027064487, -0.021745833, -0.04277574, -0.045753706, 0.015348281, 0.03691352, -0.020853521, 0.02329049, -0.016880741, -0.010105354, 0.0011060548, -0.0319016, 0.017069707, -0.008658495, -0.017404875, -0.010604747, -0.011550773, -0.03446453, -0.031855494, 0.012027433, 0.022569, -0.00017738676, -0.0008505048, 0.038637124, 0.008407739, 0.049763333, 0.050589953, 0.07777091, -0.014772476, 0.00019400821, 0.0007150609, 0.049964722, -0.047953833, -0.0021436568, 0.02764004, -0.012743087, 0.004643913, 0.0039905505, 0.00044370096, 0.041745637, -0.028491408, -0.019127691, -0.05619472, 0.060102597, 0.0148845045, -0.035214316, 0.011005405, 0.0030583723, 0.030658154, -0.0014106326, 0.041062612, -0.016690692, -0.031444877, 0.02218633, -0.038989622, -0.034868922, 0.03292344, -0.0012120785, 0.0012028172, -0.041391652, 0.0058869487, -0.034050953, -0.03379749, 0.045185305, -0.034885433, -0.015582741, 0.021779673, -0.054225024, 0.0100169405, -0.06640671, 0.024112562, -0.0128646, 0.03637945, -0.043016657, -0.026401676, -0.055626605, 0.007635031, 0.03594593, -0.027308717, 0.015548521, 0.030618917, -0.01762442, -0.024811698, -0.026361622, -0.047552124, 0.040038966, -0.008887883, 0.019128786, 0.04101018, -0.06466993, 0.049582202, 0.014715663, 0.05184721, 0.0038321875, 0.055370778, 0.010286235, 0.036687285, -0.013888988, -0.027383873, -0.07157747, -0.03570964, -0.013980913, 0.023764856, 0.006498576, -0.012476966, -0.039683707, -0.033112455, 0.017715113, 0.05499007, -0.03441379, 0.004902761, -0.050755307, -0.008291631, -0.04232499, -0.035632014, 0.02333426, 0.0028897957, -0.024591528, 0.030293526, -0.025159685, 0.029289953, 0.014510499, -0.012770459, -0.038705338, 0.02876102, 0.014464161, -0.0724578, 0.013365426, -0.026975634, 0.007980137, -0.009772163, 0.009381522, -0.026606007, 0.04092291, 0.009686886, 0.020494021, -0.06677709, 0.024890715, 0.017379193, 0.03717808, 0.102333136, -0.029863015, 0.0004197104, -0.06509058, 0.047542404, -0.056075446, -0.033243142, -0.02599925, -0.03759634, 0.015397404, 0.001287806, 0.05005461, 0.019851327, -0.042748082, 0.021307262, -0.026174374, 0.017904192, 0.084412485, -0.00017447087, 0.019602474, 0.016420849, 0.016445996, 0.00713839, 0.025299761, -0.0016317989, -0.016402, -0.017933162, -0.042161185, 0.10280921, 0.033252664, -0.031311557, -0.062942065, 0.03510313, -0.030746283, 0.053049993, -0.006151778, 0.02288081, -0.012880973, 0.073012024, 0.024597421, 0.04202816, -0.0058865873, -0.022115352, -0.017778495, -0.017553097, 0.0006264929, 0.006870481, -0.055545557, -0.026890643, 0.04244993, -0.027298925, -0.045190684, -0.024668716, -0.031747904, -0.04713048, -0.04686505, 0.040935744, 0.039192215, -0.0009065498, 0.047696684, 0.0057422486, 0.036497023, -0.02179836, 0.03804073, 0.010862158, 0.015789, 0.01677935, 0.0024495823, 0.0037706348, -0.10229876, 0.0023924683, 0.058400113, -0.024070285 ] } ] } 5123 839435 POST https://generativelanguage.googleapis.com/v1beta/models/text-embedding-004:batchEmbedContents?%24alt=json%3Benum-encoding%3Dint HTTP/1.1 Host: generativelanguage.googleapis.com User-Agent: Go-http-client/1.1 Content-Length: 4793 Content-Type: application/json x-goog-request-params: model=models%2Ftext-embedding-004 {"model":"models/text-embedding-004","requests":[{"model":"models/text-embedding-004","content":{"parts":[{"text":"word200"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word201"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word202"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word203"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word204"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word205"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word206"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word207"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word208"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word209"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word210"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word211"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word212"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word213"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word214"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word215"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word216"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word217"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word218"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word219"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word220"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word221"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word222"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word223"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word224"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word225"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word226"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word227"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word228"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word229"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word230"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word231"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word232"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word233"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word234"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word235"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word236"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word237"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word238"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word239"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word240"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word241"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word242"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word243"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word244"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word245"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word246"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word247"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word248"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word249"}],"role":"user"}},{"model":"models/text-embedding-004","content":{"parts":[{"text":"word250"}],"role":"user"}}]}HTTP/2.0 200 OK Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 Cache-Control: private Content-Type: application/json; charset=UTF-8 Date: Tue, 09 Jul 2024 20:22:29 GMT Server: scaffolding on HTTPServer2 Server-Timing: gfet4t7; dur=998 Vary: Origin Vary: X-Origin Vary: Referer X-Content-Type-Options: nosniff X-Frame-Options: SAMEORIGIN X-Xss-Protection: 0 { "embeddings": [ { "values": [ -0.008562331, -0.026893666, -0.042864047, -0.058533803, 0.022587264, 0.0117699355, 0.030200407, 0.04901852, 0.0241821, 0.041395765, 0.014677503, 0.03376726, -0.00955423, 0.029200811, -0.03483157, -0.026948148, 0.03053377, -0.03039498, -0.027500968, -0.034800507, -0.01500419, 0.0479097, -0.026403956, -0.02655516, -0.016206993, 0.026685996, 0.001176458, -0.054918796, -0.0006651368, -0.05427851, 0.018577114, 0.036245406, -0.05467022, -0.024340333, 0.04269548, 0.03353165, -0.023648167, 0.0014096289, 0.020894565, -0.010656792, -0.056606602, -0.036438905, 0.027696546, 0.015639264, -0.03351833, 0.012283047, 0.03458003, 0.0032169716, -0.046385434, 0.044363394, 0.029808793, 0.011086044, 0.0049029724, 0.020867048, 0.0054603852, -0.007344952, -0.04553753, -0.043391455, 0.02960865, 0.009502328, -0.00014270899, 0.0024726514, -0.00263084, 0.0011896503, 0.017177679, -0.057250056, -0.025415985, -0.033525318, -0.04547762, 0.025741637, -0.0640124, 0.031287882, -0.061431017, 0.006967426, 0.011601862, -0.013814678, 0.0066227806, 0.032408107, -0.019064512, 0.021097828, -0.01238685, 0.04014052, 0.11383483, 0.07163445, 0.051483415, 0.012154705, 0.019964915, -0.029205158, -0.02804554, -0.007826541, 0.043932892, -0.060237758, -0.051779304, 0.012298119, 0.026961833, -0.054768443, -0.028244814, -0.065406725, 0.0249751, 0.07630502, -0.013784415, -0.033932704, -0.057620708, 0.025750441, 0.051393438, 0.05600243, -0.031266157, -0.056281045, -0.009172586, 0.021817757, -0.036176536, -0.04407121, 0.008537511, 0.021930788, -0.015009244, -0.09182099, -0.01828201, -0.004054532, -0.02910054, 0.012692088, 0.05169969, -0.022556515, -0.008111467, 0.06159401, -0.009557453, 0.027075458, 0.07155796, -0.007132661, -0.038003907, -0.04716436, 0.03604174, -0.08423539, 0.001284578, 0.044571936, -0.055590898, -0.05112419, 0.025267601, 0.06282388, -0.055792484, 0.029410258, 0.0058322176, -0.03720298, -0.0035427408, -0.007997292, -0.015311583, -0.012536371, 0.010530555, -0.021974985, -0.060271066, 0.061540946, -0.08474628, -0.018686416, 0.03689555, -0.042443093, -0.043516982, -0.011851353, 0.056542598, -0.037622258, 0.05669626, -0.050425105, 0.036545828, -0.011822162, 0.019002603, 0.04541623, -0.026733108, 0.011921874, 0.07222085, -0.026029283, -0.041766483, -0.029617844, -0.028418045, 0.00897799, -0.02187727, -0.07326997, -0.016630411, 0.005089214, -0.086571574, -0.006236676, -0.040673956, -0.009785526, 0.04243203, 0.049941484, -0.01361594, 0.004634085, -0.0074156052, 0.0005105518, -0.023033366, 0.099024385, -0.0019626392, 0.050135944, -0.022488521, 0.0019589833, 0.03925862, 0.05059535, 0.0129549, 0.013125675, 0.047244858, 0.0007410117, -0.0041686143, -0.043271825, 0.028228648, 0.001589082, -0.030998599, 0.023916116, -0.0442339, -0.036307644, -0.05999274, -0.046493035, 0.042972952, 0.0055070645, -0.013023444, -0.0160555, 0.00028521026, -0.064968914, -0.004905419, -0.021913333, 0.07556669, 0.04990498, 0.041944522, -0.041092213, -0.009821043, -0.0148366485, 0.02870009, -0.033649907, 0.04498082, -0.018805068, -0.04207356, 0.0023875032, -0.03348579, -0.03361365, -0.041292623, -0.062042184, 0.000700978, -0.0041879914, 0.023176765, 0.038725927, 0.011086828, -0.007997077, 0.011793894, 0.048355486, 0.012588549, -0.0021823703, 0.0049781813, 0.002161965, -0.028782219, 0.007189981, 0.06436342, 0.089334704, -0.013474916, 0.002337015, -0.0101933, 0.009808671, -0.06453107, -0.01945312, -0.05650119, 0.0018482371, 0.039532915, -0.06469102, -0.015398936, 0.0072247703, -0.013290897, 0.008422863, -0.05693405, -0.033827517, -0.010146884, -0.120401405, -0.022687705, -0.04863405, 0.041983087, 0.011806338, -0.009081293, 0.0068103904, -0.06692211, -0.042244267, 0.03440472, 0.03122719, -0.023950174, 0.017441597, -0.083628125, -0.048725888, 0.04842608, 0.03178877, -0.023554469, -0.04119503, -0.03450595, 0.0058313827, -0.002091585, 0.060530625, -0.0076893102, -0.05699121, 0.053849697, 0.037287153, 0.013476304, 0.03566529, 0.042908143, 0.0029010111, -0.008216634, 0.018460253, 0.036375854, -0.010212138, -0.022110706, 0.0520999, 0.00018000591, 0.055242524, -0.022933519, 0.02471564, -0.046435077, -0.0036477207, -0.028623445, -0.01080509, -0.002837671, 0.009033199, -0.036702566, -0.023480922, 0.0053310706, -0.019185511, -0.09673967, -0.0028743534, -0.03167877, -0.012937622, 0.0050509097, 0.057128213, -0.050910927, -0.021438545, 0.027633466, 0.034292, -0.017815989, -0.0065876516, 0.0024637647, -0.022299075, 0.0363421, 0.036194667, 0.012710119, -0.021521395, 0.019887837, 0.012496062, -0.010074665, 0.007524008, 0.037096903, -0.005076375, 0.05731601, -0.003786151, 0.021158496, 0.028419834, -0.007112215, -0.0414564, 0.03175417, 0.011455445, 0.045093648, -0.033591148, -0.023704527, 0.031131074, -0.0076311585, 0.022954607, 0.032614246, 0.05296741, -0.0003266675, 0.065672405, 0.003760395, -0.023477582, -0.018409356, 0.0026704057, -0.012075924, -0.01335132, -0.009850952, 0.009427311, 0.0016994039, 0.047220666, -0.016450781, -0.057432055, -0.0007065961, 0.052669425, 0.006993733, 0.00925692, 0.019438047, -0.08120962, -0.010969657, 0.0009293514, -0.042962775, -0.03044939, -0.03422935, -0.03982515, -0.009143951, -0.01796922, -0.032576624, 0.030505704, -0.048640076, -0.011057974, 0.015303949, 0.03514938, -0.030039342, 0.056363273, -0.010121867, -0.0033903474, -0.050817918, 0.041026637, 0.003437835, 0.0148669295, -0.00011945935, -0.026844196, -0.049289856, -0.01564808, 0.021157365, -0.040990956, 0.016535003, -0.0011601716, 0.04142524, 0.02019526, 0.029179303, -0.032782815, 0.040527605, -0.050276354, 0.039300438, 0.0031408956, 0.0063725044, 0.04109465, 0.022832682, -0.07100407, -0.028805718, 0.02405792, 0.011036819, 0.016187599, -0.024077179, 0.036806796, 0.020180283, -0.09038915, 0.031299878, -0.016976878, 0.03365477, 0.021448474, -0.021265145, 0.0040568807, -0.038196914, 0.019426644, -0.011286525, -0.021272337, 0.014038512, -0.0024354202, -0.017196639, -0.0006974985, -0.0033847338, -0.0034003176, 0.031459447, 0.049820196, 0.004584667, 0.016435103, 0.020294722, -0.02789289, -0.04581539, -0.069039755, 0.0002971935, 0.071495034, 0.009872687, -0.06025698, 0.016991755, -0.0130396765, 0.011723396, 0.048544765, -0.031686433, -0.0071400744, -0.07282322, -0.03161772, 0.03338087, 0.044539005, -0.023645971, -0.006461498, -0.04444551, -0.017208809, 0.022023205, 0.06283688, 0.038914606, -0.037959218, 0.023433853, -0.016226886, 0.03346572, 0.027602736, -0.0028620844, 0.013092645, 0.015591791, 0.037399724, -0.017122004, 0.027636545, -0.0018403159, 0.013420155, 0.038394447, -0.08853651, -0.0005596255, 0.024875116, 0.015611674, 0.026229113, 0.040326983, 0.09587853, 0.010188689, 0.04730849, -0.03633756, -0.032591667, 0.059065595, 0.0017785522, -0.0025199354, -0.033314873, 0.058049127, -0.033224635, -0.02471853, -0.029549357, -0.019654788, 0.03716982, -0.03976428, -0.038927235, 0.022326287, -0.03115253, 0.043892223, 0.008575904, 0.0542155, -0.03416765, -0.05601195, 0.04833599, -0.042904537, 0.022886856, -0.035321645, 0.03142754, -0.015179995, 0.010930277, 0.052753773, -0.06370147, -0.087804906, 0.010723091, -0.019799335, 0.04689143, 0.04182707, -0.04119313, -0.002437459, 0.005294403, 0.03774361, 0.00834115, 0.05187964, 0.07353402, 0.021421082, 0.018614931, -0.06275138, 0.0020121704, -0.0051678955, -0.014833827, 0.057010785, 0.03156873, 0.030130783, 0.014834746, 0.06338832, -0.013864781, 0.008870936, 0.09034282, -0.022332076, -0.004197386, 0.04280638, -0.022186955, -0.023043504, -0.041006256, -0.015653046, -0.03935171, -0.0034049675, 0.0036889163, 0.054137576, 0.009001913, 0.024824226, -0.0065425294, -0.0049508866, 0.026511282, -0.03569691, 0.04074434, -0.023290101, -0.0072300397, -0.025300147, -0.010783769, -0.0290887, -0.048829775, 0.029080026, 0.0022065423, -0.02425964, 0.0047575906, 0.06632208, 0.04639605, 0.046974402, 0.03595274, 0.09077045, -0.01317338, -0.028265812, 0.005580198, 0.057621103, -0.06544312, -0.015247305, 0.025005968, -0.013415733, -0.04301296, -0.011287576, 0.004960112, 0.041057315, -0.017813738, -0.05713005, -0.027674383, 0.05268356, 0.054365717, -0.05080374, 0.018715864, 0.0015844872, -0.005307817, -0.01875307, 0.035682105, -0.03888876, -0.025740692, 0.0012895361, -0.009927028, -0.034400236, 0.04818141, -0.011833451, 0.0015333613, -0.06721602, 0.016560996, -0.036737155, -0.058172226, 0.0153715005, -0.049510464, -0.02852712, 0.0325618, -0.013851728, -0.03903101, -0.040003728, 0.0351932, -0.015832476, 0.022785846, -0.037317265, -0.028613176, -0.04303378, 0.02977759, 0.04901543, -0.011811547, 0.025342252, 0.016983695, -0.02775591, -0.027479693, -0.015059163, 0.0028540853, 0.04565344, 5.20602e-05, 0.025768304, 0.06284202, -0.035693254, 0.045356773, 0.02014265, 0.028673338, -0.004534046, 0.036835697, 0.0052198092, 0.042636864, -0.032186776, -0.035833277, -0.045234744, -0.023687193, -0.05504574, 0.04530684, 0.0003217662, 0.013708118, -0.008834939, -0.034868415, 0.05461852, 0.031905297, -0.025571302, 0.029652026, -0.035721537, 0.01761125, -0.027009226, -0.021122102, 0.035398733, 0.020287318, 0.023727495, -0.0064911754, -0.030831005, 0.051904503, 0.012340115, 0.004777605, -0.032989386, 0.05952996, 0.010775456, -0.07050298, -0.017421046, -0.029494878, -0.011242287, 0.008776777, -0.017393334, -0.026604068, 0.028603768, 0.008382324, -0.018429182, -0.04216167, -0.032451913, 0.022199746, 0.04640377, 0.08362597, -0.010056104, 0.01578715, -0.069238454, 0.047363713, -0.052895788, -0.0014108336, -0.03954584, -0.03166005, 0.023920411, 0.021336528, 0.05256767, 0.018897781, -0.06647745, -0.012329041, -0.046948206, -0.008499178, 0.08654972, 0.022869162, 0.003950602, 0.0058895885, 0.0018783783, 0.009778797, 0.021997936, -0.026928235, -0.016570646, -0.0055609653, -0.039573837, 0.07554936, 0.019086596, 0.007455615, -0.082020156, 0.039789837, -0.038348336, 0.09866867, 0.021075172, -0.0008546702, 0.01142693, 0.07385666, -0.00088264863, 0.017495975, -0.036252733, -0.025974087, -0.038603455, -0.0062977495, -0.013493913, -0.01251662, -0.06135482, 0.0033554088, 0.005151783, -0.022247942, -0.053672593, -0.015128665, -0.037662104, -0.012038639, -0.027649362, 0.0056701778, 0.004016217, -0.013736958, 0.028249165, -0.009112154, 0.0042696637, -0.015141799, 0.041030157, 0.0124460505, 0.013716811, -0.029596347, 0.029499155, 0.0029035385, -0.09985475, 0.025232065, 0.040219795, -0.05870772 ] }, { "values": [ -0.03024232, -0.024325378, -0.027803704, -0.069637656, 0.017199498, 0.016483577, 0.008088764, 0.047155235, 0.003304189, 0.0557545, 0.038699135, 0.009343825, 0.022209082, 0.02102613, 0.00856762, -0.012397932, 0.03593813, 0.001359548, -0.061558124, -0.022475436, 0.0103022, 0.028548982, -0.058425922, -0.041317742, -0.014725203, 0.02150855, 0.04177842, -0.041007064, 0.009575773, -0.04944549, 0.020411635, 0.030037781, -0.0673498, -0.03732408, 0.018894998, 0.060062096, -0.05262167, -0.01749176, 0.0062262407, -0.017546432, -0.049240507, -0.027993595, 0.028632026, 0.033863883, -0.052022003, 0.04089454, 0.04709147, 0.05450105, -0.056158755, 0.047050085, 0.008574228, -0.005954773, -0.018214013, 0.031835977, -0.0022583476, -0.05782719, -0.09082948, -0.012328061, 0.029870216, -0.015502496, -0.010685732, 0.004725008, -0.012627421, -0.019214144, -0.007538623, -0.022212546, -0.03695351, -0.013800834, -0.03842705, 0.0630508, -0.06665486, 0.038579218, -0.06415127, 0.020296339, -0.0019129624, -0.029956233, 0.04097031, 0.018326677, -0.013228744, -0.0011583666, -0.00442733, 0.024437336, 0.08101749, 0.07460032, 0.062107325, -0.009488047, 0.032918677, -0.038419075, -0.03827473, 0.016552333, 0.02706808, -0.039139416, -0.043165974, -0.0034230275, 0.03464507, -0.010179343, -0.054144975, -0.07583036, 0.023605127, 0.06958877, -0.03629784, -0.019512728, -0.02075007, -0.002950834, 0.020645121, 0.04046359, -0.044362977, -0.028972872, -0.020721585, 0.008762459, -0.035208736, -0.03861306, -0.0034115461, 0.01422846, -0.018913897, -0.07334365, -0.049415376, -0.009895507, 0.024064865, 0.0030506905, 0.05834163, -0.040092885, -0.0210031, 0.070139006, 0.03482787, -0.0032442098, 0.055411436, 0.037234467, -0.034041267, -0.036880255, 0.06378815, -0.06360104, 0.005915332, 0.0074339793, -0.04906304, -0.058102258, 0.064576186, 0.06541785, -0.06100868, 0.01765252, 0.0026307025, -0.01527629, -0.00906927, 0.049816366, -0.0037174125, -0.006087062, 0.017986082, 0.0034603514, -0.013136421, 0.049481582, -0.099034935, -0.041118164, 0.063159466, -0.010866411, -0.044882227, 0.02870718, 0.056541685, -0.049858466, 0.01668431, -0.07535468, 0.028752835, 0.005015783, -0.012138009, 0.036271922, -0.04549453, 0.009189422, 0.034995172, -0.046928573, -0.020369407, -0.059550185, -0.051235795, -0.009934066, -0.013637632, -0.059073698, -0.015249198, -0.018009918, -0.051708285, -0.010835031, -0.038409643, 0.014385403, 0.0063143666, 0.07776117, 0.012582348, 0.033069275, 0.01583891, -0.011942574, -0.008494042, 0.0578266, 0.0052180393, 0.055049267, -0.023346087, 0.00051008275, 0.026763286, 0.058268134, 0.012530311, 0.059253257, 0.054001503, -0.010509466, 0.004243432, -0.03300601, 0.039615523, -0.021582583, -0.015761677, 0.035727393, -0.051923435, -0.019179558, -0.06325217, -0.010350608, 0.039370835, -0.004434282, 0.00012261873, -0.011874453, 0.014839723, -0.064969525, 0.008598845, 0.010311839, 0.09703678, 0.043427385, 0.044674944, -0.018607026, -0.024418494, -0.020558715, 0.009220672, -0.008620812, 0.021960167, -0.0047000684, -0.011203349, -0.009102876, -0.046375267, -0.05368148, -0.039380666, -0.026220331, -0.004873626, -0.0060306224, 0.0004607253, 0.059358753, 0.005744033, -0.00058093853, 0.0072733904, 0.049736608, 0.0007424663, 0.022702504, 0.019525614, -0.0046578352, -0.023713361, 0.038344968, 0.05289497, 0.08313076, -0.007480333, -0.036185354, -0.030026508, 0.0015181823, -0.09425079, -0.025807204, -0.049167037, 0.013038919, 0.015601204, -0.06738598, -0.006176578, 0.012119839, 0.01894853, 0.01221108, -0.04510619, -0.029699823, -0.012432187, -0.08998545, -0.010540938, -0.028501915, 0.021934522, 0.00044963608, 0.032898873, -0.010877392, -0.09577269, -0.023968684, 0.048625838, 0.00221416, -0.03963477, 0.00881735, -0.06063179, -0.048674636, 0.035125915, 0.0073429663, -0.029851496, -0.034755006, -0.016842477, -0.017875237, -0.0017043276, 0.06414674, -0.019301342, -0.04693274, 0.039918527, 0.041166387, 0.008667478, 0.016996201, 0.007056742, 0.022658989, 0.015528275, -0.01014746, 0.04236173, -0.014154995, -0.00021751551, 0.037879433, -0.038256384, 0.044497024, -0.03236362, 0.045159355, -0.06331971, -0.0020780275, -0.006077741, -0.01735738, 0.0037967868, 0.002882888, -0.03977464, -0.0035408882, 0.021129293, -0.012369943, -0.13462147, -0.008514662, -0.04039373, 0.003153891, 0.014029384, 0.0394502, -0.03597195, -0.020199742, 0.027485736, 0.010163949, -0.03183292, -0.016465653, -0.013042531, -0.017571952, 0.0053805765, 0.025801986, 0.007677903, 0.008997675, 0.022916956, 0.0015322266, -0.008644939, 0.024286125, 0.038980283, -0.021429261, 0.033215698, 0.011939851, 0.060036182, 0.05233964, -0.013182813, -0.05590846, 0.026426366, 0.0028770175, 0.03722729, -0.03171613, -0.012356407, 0.023948282, 0.012038148, 0.017724194, 0.042882934, 0.03582949, 0.01429933, 0.038800225, 0.009193836, -0.009050229, -0.0034376874, -0.005259702, -0.031900756, -0.007908777, 0.026191417, 0.015127712, -0.00715686, 0.05137395, 0.0029786394, -0.052443698, 0.02232298, 0.025439564, 0.010710617, 0.009488551, -0.013675861, -0.07242427, 0.00908555, -0.0058501577, -0.027790895, -0.013594521, -0.040178217, -0.041876044, -0.008637318, -0.010755892, -0.055941425, 0.040688306, -0.05049767, 0.0061217546, 0.046451155, 0.008260114, -0.027350768, 0.06737924, -0.0031255286, -0.018301802, -0.052477412, 0.0629533, -0.023628362, 0.008186182, -0.007996552, -0.0015695142, -0.05286886, -0.038726073, 0.045069378, -0.023151236, 0.01624144, -0.0103699835, 0.0764138, -0.009258285, 0.04037295, -0.043341678, 0.048543844, -0.04343668, 0.014465118, 0.029120471, -0.000565445, 0.02881009, 0.04614047, -0.022618772, -0.0148374345, 0.014300701, 0.006123928, 0.02060005, -0.022128409, 0.018425182, 0.030798532, -0.0706362, 0.012192229, -0.022229867, 0.04459878, 0.020319294, -0.019575408, 0.011216755, -0.032952234, 0.039074477, -0.004895538, -0.023944655, 0.014134049, 0.017875472, -0.026631048, 0.012853398, 0.0037000962, 0.02433161, 0.0057107625, 0.038446736, 0.008594777, 0.0040270467, 0.021205628, 0.0014853205, -0.05739658, -0.061468467, -0.023863858, 0.04690016, 0.019467691, -0.047732223, -0.014212556, -0.0065378207, 0.030811943, 0.062532894, -0.02312579, 0.023961795, -0.09104819, -0.033144206, 0.034705292, 0.019602146, -0.0045368196, -0.0068067852, -0.053370208, -0.0038872517, -0.009906479, 0.050024822, 0.043057345, -0.04524614, 0.04536859, -0.02178105, 0.016539723, 0.030872481, -0.030509422, -7.939755e-05, 0.023280157, 0.03331182, -0.025895223, 0.029166933, 0.011660826, 0.033652615, 0.07230173, -0.09774586, -0.013997027, 0.01837052, 0.039827716, 0.019279087, 0.051312745, 0.10585893, 0.0017660784, 0.035016354, -0.03072215, -0.045264214, 0.023689497, -0.0012190763, -0.024977585, 0.0029342321, 0.038214333, -0.031544674, -0.032871597, -0.054227687, 0.0075296094, 0.009999889, -0.04571346, -0.0359767, -0.0066558737, -0.019787397, 0.026497053, 0.023046054, 0.06846169, -0.024622982, -0.04540222, 0.030857107, -0.059214063, 0.0019419176, -0.006961755, 0.022777624, -0.0074278847, 0.0054017236, 0.036244817, -0.06914506, -0.052331064, 0.0067772632, -0.0024790002, 0.050470375, 0.040219292, -0.012025017, -0.029177897, 0.013391187, 0.029001672, 0.009975973, 0.03981705, 0.07187322, 0.008505816, 0.01051378, -0.0658462, 0.002093021, -0.014859335, -0.0025327725, 0.049361546, 0.022224182, 0.04768493, -0.005230223, 0.04850668, -5.844653e-05, -0.0009684384, 0.07476415, 0.007362353, 0.0020597593, 0.025299825, -0.008431011, -0.005520628, -0.040284686, -0.017844798, -0.07212717, -0.026133003, 0.015151509, 0.05198421, -0.0024791688, 0.013505238, -0.017586175, 0.005511662, 0.0011355262, -0.044261493, 0.038615588, -0.025514204, -0.034179747, -0.0069003045, -0.018106638, -0.024119113, -0.06389427, 0.043324348, 0.004620538, -0.025107816, -0.00049576466, 0.052614614, 0.03135199, 0.05531731, 0.024648938, 0.07465905, -0.03039234, -0.019145666, -0.008134092, 0.05664333, -0.060914505, -0.027690625, 0.029043106, 0.0070689027, -0.019476159, -0.008403333, -0.011043132, 0.040483233, -0.034598794, -0.02227578, -0.041699845, 0.04881568, 0.039812226, -0.04578466, 0.036039244, -0.014892484, 0.0034597102, -0.016326629, 0.004125637, -0.030292256, -0.028888352, -0.0009360723, -0.04666814, -0.015585367, 0.040286634, 0.020453235, 0.022005739, -0.04703838, 0.0058653606, -0.023420338, -0.04154457, 0.017966252, -0.01476541, -0.0330446, 0.031258415, -0.040622223, -0.011785141, -0.045109738, 0.033168197, -0.015173607, 0.03279176, -0.041636042, -0.07607535, -0.0040037828, 0.022092195, 0.044854283, 0.0009826368, 0.014270406, 0.013236374, -0.018804006, -0.029271241, 0.008304702, -0.015599902, 0.04505679, -0.020070018, 0.019563844, 0.052464426, -0.0648626, 0.031560205, 0.025970472, 0.029947873, 0.029072326, 0.063389346, 0.011787563, 0.037129838, -0.030411473, -0.029913226, -0.05378712, -0.031627994, -0.030187953, 0.02453605, 0.027480224, 0.01580122, -0.020825978, -0.019931307, 0.032618184, 0.018032108, -0.036973264, 0.027532602, -0.038796704, -0.0044928384, -0.037769318, 0.011228481, 0.027028138, 0.011953417, 0.0019210775, 0.0315316, -0.051817037, 0.023617271, 0.033662386, 0.011242542, -0.043920405, 0.039467577, 0.019955931, -0.060692687, 0.025327899, -0.048135992, -0.034150302, 0.0075405114, 0.019204762, -0.03253688, 0.035103705, -0.007926918, 0.0030893153, -0.06227085, 0.013104001, 0.02558703, 0.042793866, 0.08471144, -0.016742202, 0.023811828, -0.06609981, 0.04991058, -0.072673894, -0.017126461, -0.06445135, -0.032052666, 0.016582033, 0.019426681, 0.04879375, 0.007154663, -0.07561687, -0.01731716, -0.044162508, 0.010459794, 0.08844288, 0.011085, 0.04200123, -0.000685366, 0.020476354, 0.03696428, 0.019771155, -0.021493983, -0.020681405, -0.030465612, -0.024434656, 0.07802347, -0.0007179584, -0.004973208, -0.062485147, 0.032309767, -0.033168826, 0.07231772, 0.021897167, -0.01458455, -0.00078152295, 0.080231585, 0.004255432, 0.0055423933, -0.0326311, -0.009535881, -0.030166088, -0.04824418, -0.007660577, -0.022222653, -0.043165814, -0.014669421, 0.023531634, -0.015902253, -0.03611648, -0.021733245, -0.040087394, -0.030453933, -0.07107499, 0.022949968, 0.038038164, -0.008000188, -0.0017893033, -0.022094345, 0.0120381825, -0.06107087, 0.04376223, 0.0117341615, -0.0182168, -0.01530168, -0.0102263745, 0.0057079024, -0.11174761, 1.0120383e-05, 0.06304655, -0.049216226 ] }, { "values": [ -0.02799189, -0.0091195265, -0.035412602, -0.045234933, 0.0384207, 0.01550926, 0.025992196, 0.0438731, 0.007962498, 0.035964314, 0.021625588, 0.01921127, 0.022877036, 0.032779146, -0.019953856, -0.036569312, 0.04325086, 0.0012675821, -0.039797764, -0.04108039, 0.00015288228, 0.0406552, -0.027922994, -0.06107294, -0.0425898, 0.01943228, 0.017535508, -0.033297777, -0.006635531, -0.051319685, 0.019212853, 0.038501065, -0.07162687, -0.050449267, 0.0322122, 0.04455431, -0.047263138, 0.003648148, 0.021923993, -0.020583363, -0.047379613, -0.032332394, 0.017744277, 0.02504448, -0.061117984, 0.029235668, 0.066300824, 0.024212724, -0.060517404, 0.07321298, 0.03347146, 0.0053026853, -0.011653358, 0.043612704, -0.011330243, -0.025871994, -0.071824275, -0.041972302, 0.021060167, -0.006021281, -0.025366765, 0.0023316594, -0.011175408, -0.017177017, 0.0020777117, -0.03530182, -0.036625642, -0.036917962, -0.062532745, 0.04931806, -0.04484412, 0.0036882504, -0.09376065, -0.016490743, -0.0025558532, -0.0054637273, 0.02763812, 0.032656506, -0.019727217, -0.0026029125, -0.012550248, -0.0042105988, 0.10269582, 0.07976786, 0.043737993, -0.0011690371, 0.02728903, -0.02031697, -0.024912527, 0.017962486, 0.056081805, -0.04289462, -0.06522521, 0.0098086735, 0.027778698, -0.0023216584, -0.049291816, -0.09683114, 0.003861278, 0.07680413, -0.028155455, -0.025667407, -0.026094774, 0.015886681, 0.020869074, 0.02815788, -0.030296566, -0.05870295, -0.017283494, 0.0012224786, -0.03642007, -0.023575833, -0.007670402, 0.014851243, -0.019904334, -0.068009, -0.030352734, -0.010077764, 0.005077418, 0.023622258, 0.07000139, -0.04308323, -0.014477152, 0.07025777, 0.03208852, 0.0021048733, 0.085917644, 0.008365564, -0.036468975, -0.052367445, 0.04617008, -0.06637991, 0.012480062, 0.028948482, -0.047645103, -0.075316, 0.013156196, 0.057170656, -0.046780575, 0.0056880387, 0.011868248, -0.017423376, -0.0048527666, 0.04264861, -0.00879184, -0.022512369, 0.0042589046, -0.008900658, -0.059790555, 0.07156469, -0.09962379, -0.033307265, 0.058374144, -0.02178255, -0.049021956, 0.020716762, 0.06333015, -0.012081925, 0.030028706, -0.052121222, 0.050781835, 0.01425617, 0.017334286, 0.02028724, -0.027121557, 0.0060600415, 0.053366814, -0.056007043, -0.026095252, -0.053262096, -0.02469157, 0.0041227085, -0.0031514652, -0.05891815, -0.004568608, -0.0036246558, -0.06356331, -0.013618295, -0.037791852, -0.0056963232, 0.019316845, 0.055670153, -0.006877182, 0.03495053, -0.009509604, -0.009324046, -0.030900022, 0.07258859, -0.0018714769, 0.05248939, -0.009372138, -0.026943974, 0.03768881, 0.06682398, -0.0030773894, 0.03578067, 0.05189513, 0.017124278, 0.0061530476, -0.048586432, 0.04194803, -0.027853234, -0.020456143, 0.013409045, -0.041744657, -0.005727038, -0.06552323, -0.0239945, 0.030010657, 0.011003434, 0.013606983, -0.021169592, 0.0052650957, -0.04561923, -0.0029123542, -0.00043834848, 0.069465294, 0.06115534, 0.042878166, -0.034120407, -0.0073507237, -0.011513621, 0.010220055, -0.038821787, 0.00038285766, -0.015456497, -0.015270097, -0.021817042, -0.045545474, -0.03138816, -0.03192909, -0.03659118, 0.0056947083, -0.013026346, 0.0042225486, 0.055531424, -0.023049979, -0.019373138, 0.025199395, 0.03682669, 0.01064867, 0.009859411, 0.021198178, 0.014691352, -0.033387102, 0.033332884, 0.046985187, 0.11211154, -0.0042603533, 0.0032632917, -0.027097074, 0.008370545, -0.090575516, -0.028023444, -0.062720425, -0.0128670335, 0.022979224, -0.0519172, -0.012059803, 0.015876254, 0.007254488, 0.0031324965, -0.034118276, -0.034325074, -0.0033285846, -0.11600966, -0.018452734, -0.031345807, 0.040268585, 0.011423363, 0.015351541, -0.009611145, -0.06806945, -0.038730256, 0.052505292, 0.025164323, -0.0057201292, 0.01317663, -0.052531805, -0.044149455, 0.011934483, 0.026566677, -0.018776972, -0.035034508, -0.02608438, -0.025141915, 0.010690698, 0.041436065, -0.015847152, -0.060143095, 0.05016864, 0.05357007, 0.022222137, 0.017132988, 0.0222461, 0.001249851, 0.014579652, 0.01191599, 0.050622758, -0.022743152, -0.006902975, 0.065629214, -0.034112036, 0.059176784, -0.03613183, 0.029964378, -0.059394915, -0.005922619, -0.011084804, -0.004859217, 0.010832036, 0.020415496, -0.023314776, 0.0061435825, -0.004806571, -0.006799656, -0.109154336, 0.0025247207, -0.03459886, 0.0020210892, 0.026751744, 0.04904054, -0.03476008, -0.02294005, 0.030666143, 0.0322562, -0.019610846, -0.016161557, 0.0076406347, -0.014372556, 0.018306669, 0.025902353, 0.012310369, -0.01925628, 0.004833815, 0.0010222149, 0.013676897, 0.015580411, 0.03646664, -0.009957681, 0.04424115, 0.021371929, 0.023606801, 0.030775249, -0.013653127, -0.05790708, 0.012343149, -2.114393e-06, 0.0578607, -0.019299269, -0.004535618, 0.02627334, -0.01234586, 0.022723436, 0.036545053, 0.034051422, 0.003920205, 0.06610756, 0.013928723, -0.020401636, -0.018700644, -0.0019819934, -0.026200008, -0.014571349, 0.00946973, 0.0077286107, 0.0055616796, 0.044606853, 0.00013282252, -0.06724409, 0.013825392, 0.032024335, 0.011124552, 0.008295752, -0.004150322, -0.085030966, -0.0022103055, -0.006826792, -0.037907604, -0.031611215, -0.050860785, -0.058131967, -5.322993e-05, -0.008220833, -0.047899503, 0.04689386, -0.05011846, -0.0067791687, 0.03649858, -0.0026217601, -0.03879884, 0.06432905, -0.001474759, -0.001504879, -0.051308785, 0.039606776, -0.021942083, 0.0043140114, 0.017540654, -0.0086842235, -0.055901874, -0.034462612, 0.02855752, -0.017181115, -0.008457933, -0.02860625, 0.031838562, 0.014195541, 0.039275948, -0.036268536, 0.020771407, -0.077529654, 0.017009111, 0.0022335097, 0.023588385, 0.02398656, 0.037197452, -0.055888034, -0.031343654, -0.011621722, -0.0026110546, 0.008323022, -0.02589877, 0.033592932, 0.011282906, -0.091952585, 0.011699516, -0.025740078, 0.055732943, 0.0268487, -0.014335823, 0.028155057, -0.055081673, 0.020774236, 0.008549916, -0.020943793, -0.006606058, -0.011553994, -0.01598801, 0.007296171, 0.009346145, 0.014163352, 0.030229434, 0.042417902, -0.0046189595, 0.01918331, 0.025392033, -0.021671996, -0.04321104, -0.079355575, -0.010191154, 0.05150493, -0.0049878536, -0.06761558, 0.010259128, -0.009920484, 0.030589676, 0.059700593, -0.03216675, 0.0011756112, -0.07713859, -0.023311483, 0.04133688, 0.029738251, -0.0052094315, -0.0076850755, -0.038649473, -0.013542592, -0.0068716574, 0.03298729, 0.009858365, -0.050396968, 0.038334697, -0.016232014, 0.039348707, 0.037297778, -0.02476541, 0.00031796342, 0.030212471, 0.03198087, -0.015253697, 0.03646091, 0.011208287, 0.01681556, 0.050388433, -0.0763379, -0.014113647, -0.01174245, 0.02394761, 0.00011146227, 0.048001923, 0.091779366, 0.010542969, 0.036098633, -0.027357636, -0.04877462, 0.034854807, -0.022829618, -0.02571983, -0.017745392, 0.039734315, -0.021319289, -0.04415265, -0.0524574, -0.0058029126, 0.021286065, -0.0362018, -0.039195735, 0.038240843, -0.011702222, 0.020052979, 0.011694828, 0.07014464, -0.038251076, -0.049390573, 0.04821849, -0.030187406, 0.010014789, -0.034209874, 0.04510091, -0.0060269334, -0.006134995, 0.045540545, -0.08574768, -0.06592258, -0.011556408, -0.00588372, 0.05434734, 0.05706193, -0.021604003, 0.0014083169, 0.02198481, 0.049181808, -0.0023437045, 0.054128014, 0.067069486, 0.00670703, 0.008233558, -0.04237835, 0.013585876, -0.02319508, -0.027935162, 0.05457218, 0.018587219, 0.052083272, 0.008381566, 0.0527111, -6.8659516e-05, 0.016336476, 0.08470623, -0.014377064, -0.011118173, 0.020917885, -0.018689325, -0.03547753, -0.030090736, 0.00057883654, -0.04220964, -0.013024821, 0.007037706, 0.040723473, 0.014146841, 0.025852105, -0.013874764, -0.034116004, 0.0011326816, -0.04398597, 0.034672935, -0.03081477, -0.032192245, -0.017301224, -0.023460109, -0.026439471, -0.059705734, 0.021861082, 0.0041192095, -0.0350729, -0.00010553117, 0.05245984, 0.03696652, 0.049198627, 0.04762664, 0.07033982, -0.006172692, -0.008754214, -0.012097284, 0.045616046, -0.070060976, -0.0074398196, -0.006131053, 0.014436412, 0.0017873064, -0.010482591, -4.0084797e-05, 0.033407982, -0.011952545, -0.026461644, -0.04164389, 0.06752574, 0.057899088, -0.035356585, 0.015780985, 0.01112973, -0.012045287, 0.0012538291, 0.015609875, -0.04015087, -0.033723675, -0.0034575006, -0.029739676, -0.043760743, 0.033665854, 0.010293063, 0.0024521134, -0.06287095, 0.0065045278, -0.029197147, -0.043631442, 0.012343839, -0.039233025, -0.027117018, 0.03187464, -0.032884173, -0.02248265, -0.0522557, 0.012552907, -0.0037826232, 0.03866724, -0.06761871, -0.06728467, -0.022883063, 0.011274442, 0.053969566, 0.005894746, 0.014834418, 0.0070439638, -0.022885092, -0.048628073, 0.012771982, -0.01497004, 0.054560773, -0.016173318, 0.0358774, 0.062006343, -0.04960012, 0.032531153, 0.01861205, 0.019021109, 0.006933045, 0.03171278, 0.016572285, 0.053047124, -0.024641937, -0.03465143, -0.05425379, -0.034236416, -0.053282093, 0.026544195, 0.01611512, -0.001826989, -0.021734748, -0.011838922, 0.027347622, 0.04648068, -0.010381585, 0.0019840286, -0.047573585, 0.00043800066, -0.04335536, -0.015771622, 0.0037741296, 0.014975311, 0.01141816, 0.01937109, -0.034762673, 0.026349682, 0.014063796, -0.0032887072, -0.033814438, 0.03426949, 0.02629347, -0.065704085, 0.00257588, -0.012154331, -0.025951048, -0.0059637744, -0.014696931, -0.03317023, 0.018101936, -6.295974e-05, 0.005810593, -0.04793122, -0.010588424, 0.0105755795, 0.05502788, 0.09974577, -0.007195985, 0.013045399, -0.08028822, 0.038998827, -0.06228817, -0.0050198445, -0.06917491, -0.018032854, 0.032765295, 0.020669973, 0.043489523, 0.014604682, -0.069476016, -0.024458237, -0.0398493, 0.0015323627, 0.072693884, 0.0021800438, 0.036899805, 0.00810288, 0.020964004, 0.03614198, 0.024488054, -0.013191302, -0.0108484365, -0.01640915, -0.016048016, 0.078728564, 0.007812505, 0.009549602, -0.0806974, 0.031534057, -0.0312775, 0.07889028, 0.010282433, 0.008518653, 0.008360777, 0.054539867, -0.0029172152, 0.027447734, -0.02192423, -0.010027747, -0.03959635, 0.0010683357, -0.005358224, -0.008227775, -0.06194899, 0.0069491602, 0.025376562, -0.003028013, -0.055366866, -0.024692796, -0.030812478, -0.007466304, -0.058199435, 0.012372652, 0.018967384, -0.0056992276, 0.016651921, -0.033348586, -0.028547823, -0.025714137, 0.039373316, 0.0029691802, -0.0109576695, -0.010665895, 0.019290838, 0.00988127, -0.116757855, 0.011639396, 0.047833327, -0.06369933 ] }, { "values": [ -0.018590713, 0.0025528925, -0.040146556, -0.04263835, 0.036339853, 0.024974715, 0.03274587, 0.053646963, 0.018179001, 0.040840425, 0.018763043, 0.004387009, 0.02831877, 0.031992823, -0.025504105, -0.036504958, 0.031007824, 0.0015473878, -0.057430137, -0.046730872, 0.0066674883, 0.039692126, -0.04369278, -0.06094133, -0.043563154, 0.0196495, 0.031634416, -0.035864536, -0.008626075, -0.04077381, 0.011736299, 0.03635329, -0.06813379, -0.057213273, 0.019885087, 0.06259106, -0.052311905, -0.0046008364, 0.013129644, -0.037682887, -0.057331134, -0.047093924, 0.012010763, 0.045645252, -0.059475873, 0.019568196, 0.06998002, 0.03339999, -0.067723855, 0.053210735, -0.0012648335, 0.0072770403, -0.016956797, 0.028705299, -0.028358795, -0.03817253, -0.06534521, -0.023503631, 0.007129997, -0.028778099, -0.029991833, 0.013372628, -0.017046683, -0.023284229, -0.018314982, -0.039188117, -0.03743346, -0.023878118, -0.045085024, 0.051846437, -0.061539292, 0.025839662, -0.08641282, -0.017311737, 0.0053205234, -0.018404022, 0.048409767, 0.031307615, -0.021141356, 0.017238615, -0.007845563, 0.01179461, 0.076913506, 0.06723927, 0.03556971, 0.021076133, 0.053927604, -0.024593089, -0.03498376, -0.01620604, 0.04230179, -0.046576504, -0.056404136, 0.011222545, 0.025425743, 0.0010817951, -0.045160186, -0.103563584, -0.008419213, 0.082602404, -0.045994487, -0.02750046, -0.034108225, -0.00051392947, 0.007060619, 0.046406504, -0.037567604, -0.048548505, -0.015378917, 0.009787952, -0.027653929, -0.02035502, 0.018019862, 0.019089064, -0.019771168, -0.059834696, -0.03625154, -0.028641896, -0.014111107, 0.0070406515, 0.05842836, -0.035134394, -0.01773239, 0.06845371, 0.03646865, -0.01119497, 0.05440072, 0.023248285, -0.029549588, -0.04162598, 0.04624133, -0.07913952, 0.030834075, -0.0007270582, -0.035327706, -0.05307829, 0.04693204, 0.04524025, -0.042962003, 0.0045584403, 0.010965113, -0.0078017334, -0.034625243, 0.034722302, -0.0028290458, -0.005120055, -0.009245999, -0.018095769, -0.04587182, 0.06492015, -0.07788827, -0.041896816, 0.06815645, -0.028765129, -0.061512034, 0.017931202, 0.062396616, -0.016772078, 0.022902902, -0.051981512, 0.06485727, 0.013920058, 0.007809902, 0.016346939, -0.048845064, 0.02867337, 0.055895027, -0.038165335, -0.004430324, -0.049440537, -0.034067985, -0.024838205, -0.020020342, -0.0568162, -0.005009222, -0.015388504, -0.07883419, -0.029668832, -0.050744276, -0.028206393, 0.029937778, 0.07354667, -0.01367785, 0.022639345, -0.026219618, 0.0054543046, -0.010742087, 0.069313005, 0.014137132, 0.049662963, -0.011746319, -0.015998993, 0.029176494, 0.082282394, -0.024221897, 0.028422695, 0.06669001, -0.000341236, -0.01285135, -0.038745273, 0.03591641, -0.016831996, -0.030871956, 0.035140976, -0.018102976, -0.008692714, -0.05255, -0.029769037, 0.03054784, -0.0011574831, 0.006340489, -0.015251808, 0.008248593, -0.038269326, 0.009070117, -0.00048737208, 0.08367693, 0.046596695, 0.05064698, -0.028895048, -0.023676155, -0.015888475, 0.005743854, -0.04085097, 0.021242125, -0.02138476, -0.022180358, -0.010733753, -0.056544226, -0.040995352, -0.032060135, -0.012405735, 0.00012782642, -0.022015806, -0.002617953, 0.05011229, -0.012277388, -0.010672586, 0.024837751, 0.029629538, 0.0067799, -0.0036793726, 0.017434718, 0.0027068206, -0.024899391, 0.03606641, 0.041841898, 0.074800886, 0.021331886, 0.010277812, -0.012807219, -0.0026488185, -0.09759721, -0.027564876, -0.065420575, 0.002884949, 0.015137109, -0.06777529, 0.007403475, 0.0111902235, 0.0048062764, 0.026261942, -0.03922102, -0.04717518, -0.008971875, -0.09906448, -0.027946886, -0.037235454, 0.021976713, -0.0059805624, 0.01837404, -0.0056274715, -0.06922205, -0.044360816, 0.052317858, 0.015610412, -0.010596299, 0.003697366, -0.055582825, -0.041186575, 0.01293403, 0.011812736, -0.0210404, -0.041842986, -0.042687863, -0.016509624, 0.0015685839, 0.053804938, 0.0020931715, -0.05963674, 0.02290001, 0.047756694, 0.014436838, 0.014578112, 0.011213017, 0.00033385892, 0.016151702, 0.023221597, 0.013906838, -0.0046862876, 0.013182087, 0.05281948, -0.045038372, 0.05057123, -0.030482924, 0.04931876, -0.052787766, -0.0020083648, -0.006906109, -0.026804652, 0.0037330976, 0.030253965, -0.046309795, 0.0078678755, -0.0013252336, -0.0072882315, -0.12717782, -0.017711751, -0.048045594, -0.0036533237, 0.009807388, 0.036803946, -0.03332823, -0.03192699, 0.023838613, 0.014123567, -0.025230283, 0.020466115, 0.0031882469, -0.010984347, -0.0012505675, 0.020676292, 0.015979525, -0.0009993645, 0.004314407, 0.0045090322, 0.005373987, 0.013873452, 0.028751222, -0.008065462, 0.064448014, 0.026048359, 0.042519532, 0.04290789, -0.013991008, -0.062096544, 0.036317877, 0.0026555296, 0.04751041, -0.04107238, 0.0036136769, 0.05372978, -0.009800519, 0.00917256, 0.025611188, 0.004151027, -0.0055312077, 0.04478191, 0.026042186, -0.013740493, -0.011049435, -0.012197036, -0.025301022, -0.016916726, 0.0065650763, 0.00740605, -0.0049957577, 0.052968834, -0.011689023, -0.036308177, 0.024448754, 0.021003122, 0.012117697, 0.018115232, -0.011526077, -0.074333124, 0.010488242, 0.007100192, -0.03699831, -0.049107693, -0.039776403, -0.0573379, -0.014647927, 0.0002056322, -0.04511928, 0.038888015, -0.037959572, 0.005940447, 0.027512059, 0.008683463, -0.040806845, 0.06562765, -0.0012963632, -0.005208797, -0.058380753, 0.058187347, -0.0104887765, 0.008898406, 0.01890696, -0.0073462683, -0.05331598, -0.036335167, 0.044878766, -0.013227844, 0.0025928363, -0.034839574, 0.05364466, 0.0075358357, 0.041588325, -0.018189222, 0.031182026, -0.060972176, 0.03609027, 0.008176032, 0.032118015, 0.032888997, 0.043121915, -0.045273393, -0.019845586, -0.0027141948, -0.0084825605, 0.01562709, -0.014603589, 0.033073973, 0.022544486, -0.08033338, 0.009164225, -0.025309905, 0.044582825, 0.032991573, -0.008816194, 0.025064548, -0.03415438, 0.012942303, 0.0073431716, -0.031797353, -0.032631032, 0.0011567257, -0.030116377, 0.013937415, -0.0014234115, 0.018714141, 0.0342837, 0.032786943, 0.0027192312, -0.0068233917, 0.020966861, -0.006534631, -0.03689683, -0.07942714, -0.029114624, 0.054393314, 0.01121017, -0.063213006, 0.013983352, 0.0012184167, 0.019584643, 0.055094767, -0.032345526, 0.006408597, -0.084949434, -0.016868249, 0.04074321, 0.03104682, -0.0038824265, -0.013458028, -0.040027592, -0.015264504, -0.00022188801, 0.042427693, 0.023806565, -0.054491036, 0.039926764, -0.02199147, 0.035612956, 0.030296184, -0.013146123, 0.013994619, 0.025055388, 0.038299877, -0.012869384, 0.03211853, -0.005839572, 0.034321975, 0.06519917, -0.07141858, -0.015480055, 0.015088186, 0.0338283, 0.02744756, 0.049363963, 0.08699622, 0.011042971, 0.042406604, -0.038779892, -0.042296037, 0.04110743, -0.013133524, -0.018777367, 0.0053108456, 0.026325349, -0.018911308, -0.063364066, -0.07501738, -0.01837277, 0.025424674, -0.0388327, -0.043513406, 0.029121252, -0.040929988, 0.02758328, 0.013260209, 0.055014826, -0.018356405, -0.040181104, 0.051447477, -0.062128324, -0.008797754, -0.017087964, 0.05116673, 0.017492354, -0.011555531, 0.03733802, -0.07925472, -0.073237814, -0.010847125, 0.010467374, 0.042021573, 0.059843227, -0.013546771, 0.0020309864, 0.010881066, 0.023008721, 0.015724534, 0.034036167, 0.07938228, 0.013508084, 0.0073869466, -0.055619653, -0.0073552434, 0.0011911163, -0.008592547, 0.052011296, 0.01656195, 0.066541865, 0.0009228865, 0.045257, 0.004819393, 0.012665045, 0.06563835, -0.026181338, -0.0050703455, 0.019129531, -0.023986114, -0.017483238, -0.021151762, 0.0032737348, -0.011556174, -0.018230757, 0.007925466, 0.04621339, 0.005747238, 0.02077767, -0.018535098, 0.0018572737, -0.007038585, -0.038664434, 0.025003849, -0.024077369, -0.025539342, -0.0096130455, -0.014326019, -0.0021555515, -0.046028715, 0.033735912, 0.0028337964, -0.012881287, -0.008372871, 0.054117844, 0.031751424, 0.042434234, 0.055756047, 0.08005113, 0.010203814, -0.0069857556, -0.013989148, 0.053369146, -0.061279517, 0.0023943519, 0.019877821, 0.002813343, 0.0132113425, 0.00052424666, -0.022476763, 0.043865442, -0.02760831, -0.014732649, -0.039736602, 0.049443923, 0.051844664, -0.05790435, 0.015393955, 0.008533849, -0.001089337, -0.006537436, 0.018285455, -0.048256043, -0.04119656, -0.0032513123, -0.049956188, -0.03847387, 0.016801434, 0.0027558336, 0.014897824, -0.05901703, 0.0069629387, -0.039462946, -0.033067994, 0.013255666, -0.046779845, -0.027177386, 0.0109600695, -0.054897543, -0.006289332, -0.06498721, 0.024133878, -0.0064224936, 0.042161763, -0.057333197, -0.07105026, -0.01866415, 0.020516722, 0.04175005, -0.011052241, 0.017437775, 0.005704099, -0.022130953, -0.048473984, 0.015025937, -0.010851336, 0.049682256, -0.023799833, 0.040175024, 0.027386853, -0.05051343, 0.03177102, 0.029346991, 0.01854849, 0.011718509, 0.05119439, 0.018900383, 0.04356995, -0.020373644, -0.03343184, -0.054670688, -0.039720584, -0.045158524, 0.02716971, 0.019798119, 0.00780874, -0.025632888, -0.029023318, 0.022960754, 0.03179902, -0.031482004, 0.016645705, -0.04083073, 0.0020578324, -0.04171912, -0.009651911, 0.016399104, 0.017481474, 0.0040970817, 0.021080628, -0.034045883, 0.03349904, 0.011589562, -0.024609119, -0.047900286, 0.035390683, 0.025035331, -0.076658465, 0.007826036, -0.011576142, -0.020642199, -0.01443298, -0.008392463, -0.035835285, 0.015650654, 0.008003158, -0.01072512, -0.05704844, 0.02195655, 0.02202944, 0.054684848, 0.10803952, -0.037253693, 0.019401737, -0.07848555, 0.041792903, -0.06844493, 0.0028690058, -0.06055784, -0.023467984, 0.040223625, 0.016569743, 0.042669818, 0.029459734, -0.044933375, -0.010910797, -0.031203043, -0.0019677375, 0.07056221, 0.010269097, 0.035243534, 0.023940103, 0.03085549, 0.03452827, 0.02733166, -0.030530404, -0.018581433, -0.025008572, -0.023682963, 0.083672255, 0.019449502, -0.0033041835, -0.06996421, 0.023878131, -0.034262333, 0.08159161, 0.003634462, -0.006564573, 0.010506065, 0.037493307, -0.011517769, 0.02509741, -0.006059451, -0.021895058, -0.02801674, -0.004465733, 0.0068951673, -0.014296941, -0.07412651, -0.00074003206, 0.040922858, -0.013557354, -0.050027587, -0.03459927, -0.042835012, -0.030310147, -0.05653889, 0.01642587, 0.029890161, -0.0031444232, 0.019179555, -0.019310933, -0.030214183, -0.046868946, 0.03695303, 0.01994602, -0.020588702, -0.005684169, 0.0126245525, -0.00013533096, -0.10638633, -0.010527587, 0.051551573, -0.04417634 ] }, { "values": [ -0.01067654, -0.0068653985, -0.053630307, -0.04510386, 0.030048376, 0.024986545, 0.021650104, 0.06622787, 0.0062157074, 0.04230054, 0.015506313, 0.025938705, 0.024764474, 0.025020093, -0.03890201, -0.04006242, 0.0061286106, 0.0021828904, -0.06539828, -0.034942534, -0.00677668, 0.026719611, -0.010606966, -0.069188304, -0.035515305, 0.017701358, 0.033803776, -0.030237727, 0.0076690363, -0.03698061, 0.019738492, 0.028797477, -0.047313064, -0.056957483, 0.053094536, 0.041202486, -0.051193975, -0.0038973812, -0.0011583793, -0.010764343, -0.060460653, -0.025216367, 0.009322147, 0.038958292, -0.042675912, 0.020811044, 0.050666053, 0.027057555, -0.052126974, 0.06617746, 0.0037489461, 0.011703476, -0.053246524, 0.020119682, -0.0173614, -0.028844355, -0.054450423, -0.02728665, 0.025787868, -0.013903832, -0.012586528, -0.00092229224, 0.028181868, -0.009861609, -0.003844574, -0.043005403, -0.03182861, -0.02180072, -0.04165648, 0.03159624, -0.04581493, 0.028254258, -0.07558312, -0.0054118754, 0.009097294, -0.0130206505, 0.034333702, 0.040167514, -0.025786048, 0.018551946, -0.02926209, -0.0026524595, 0.09020772, 0.043741822, 0.0325804, 0.0018435932, 0.041875374, -0.030431416, -0.022191884, 0.008530734, 0.066731036, -0.046938557, -0.029779442, 0.020616578, 0.044037517, -0.015603128, -0.057151012, -0.11544659, -0.011996156, 0.07633474, -0.05169033, -0.037249684, -0.034134444, 0.010625467, 0.03248788, 0.04488372, -0.03516635, -0.035569694, -0.011726655, 0.005726725, -0.024234917, -0.017483704, 0.01645532, 0.016433682, -0.0018053673, -0.08692543, -0.045906287, -0.007784064, -0.012376208, 0.018501567, 0.046370424, -0.03253067, -0.012858359, 0.079191, 0.0012565526, 0.0024542802, 0.06311649, 0.021428509, -0.027678674, -0.06989613, 0.038246643, -0.08590163, 0.020940928, 0.012560841, -0.041710723, -0.04665674, 0.017159352, 0.061606526, -0.021682974, 0.013329672, 0.008425802, -0.007079103, -0.015518239, 0.029798253, -0.009748641, 0.0011326884, -0.010136068, -0.0065644025, -0.043026917, 0.035459835, -0.08220629, -0.04105858, 0.063678086, -0.023358086, -0.06336931, 0.010133331, 0.081457466, -0.022448853, 0.051493783, -0.05009932, 0.035538003, -0.0020472594, 0.020483883, 0.028219998, -0.06629004, 0.013538174, 0.04441836, -0.056749705, -0.0025261792, -0.041231092, -0.031855453, -0.0074136457, 0.013177792, -0.05931348, -0.014810142, -0.021607665, -0.09454688, -0.00802886, -0.040599428, -0.021054234, 0.036161043, 0.054340318, 0.0131667545, 0.016101852, -0.0016866245, 0.014019118, -0.0052156327, 0.06797963, -0.0025762944, 0.050040156, 0.0042645815, -0.005863081, 0.0319152, 0.0765253, -0.021869155, 0.033248495, 0.06170195, 0.005339993, -0.0023185387, -0.049008433, 0.034121815, -0.053907506, -0.018140288, 0.03749575, -0.016834011, -0.04507793, -0.06211976, -0.03149438, 0.02233948, 0.014393722, -0.008033743, -0.026913686, -0.00592306, -0.057521515, 0.016926445, -0.0028365364, 0.0848645, 0.076001376, 0.06668307, -0.020469826, -0.009337727, -0.004082197, 0.00801116, -0.04767861, 0.005284834, -0.042357165, -0.025152914, -0.002706157, -0.05438915, -0.04650805, -0.03491906, -0.013993283, 0.007767314, -0.034801636, 0.009236044, 0.018571785, -0.036073454, -0.016817994, 0.03259782, 0.007866875, 0.010321013, 0.0066408226, 0.017487362, 0.0038415089, -0.0065090456, 0.015571542, 0.047979623, 0.0986312, 0.007336625, -0.005730948, 0.0014166362, 0.016600188, -0.08961268, -0.008127087, -0.056906536, 0.009970395, 0.021295127, -0.06179536, -0.01053986, 0.0026742239, -0.0037920615, -0.0024458359, -0.03373419, -0.04675703, -0.013960725, -0.10521103, 0.0018767415, -0.039886393, 0.005940034, -0.006929667, 0.026588101, 0.008158199, -0.048325196, -0.069057725, 0.029836494, 0.0067251204, -0.018397655, 0.011231427, -0.04736509, -0.042013045, 0.0075184507, 0.028375845, -0.030093184, -0.023656573, -0.02515481, -0.026600182, 0.006795521, 0.032811806, -0.013945994, -0.06400134, 0.044598904, 0.07358419, -0.015694058, 0.042433225, 0.0011211919, -0.0054655666, 0.003933687, 0.025968073, 0.0374246, -0.019588571, 0.010372257, 0.05967139, -0.040514085, 0.047657683, -0.038502388, 0.0587329, -0.061941046, 0.00052333216, -0.028151471, -0.018555462, 0.013028668, 0.0401964, -0.048996165, 0.009453489, 0.00489909, -0.0053954604, -0.09583868, -0.015837371, -0.054030158, -0.027939178, 0.014484733, 0.05109259, -0.044475753, -0.028433109, 0.048695266, 0.0029150597, -0.018036708, 0.00031399346, 0.0034801066, -0.008995171, 0.006690961, 0.008983514, 0.012595283, -0.018919464, 0.018093452, -0.010687241, -0.008274547, 0.006689574, 0.025149252, -0.017201733, 0.055466365, 0.022003246, 0.06185901, 0.03176345, -0.03428032, -0.061948642, 0.051603593, -0.00438633, 0.052199025, -0.031193765, -0.013798397, 0.047391143, 0.018838694, 0.030641332, 0.035483893, 0.0049399063, 0.0015443814, 0.039927483, 0.011953021, -0.011975956, -0.019573951, -0.0115605155, -0.009352536, -0.027815435, 0.008408798, 0.0034714863, -0.009530184, 0.059429526, -0.005889095, -0.030738309, -0.008295782, 0.029427297, 0.007807775, -0.013687361, -0.004976505, -0.08772675, 0.004458741, -0.002855803, -0.023353916, -0.055142567, -0.051220287, -0.0544684, -0.017537158, -0.003589409, -0.031965185, 0.04978176, -0.046367016, 0.0060528275, 0.026746016, 0.0011718281, -0.021013124, 0.08397595, -0.009516315, -0.0012363164, -0.043776236, 0.045027167, -0.00070051046, 0.018541059, 0.03147964, -0.008322932, -0.036938842, -0.009537487, 0.031355668, -0.007903348, -0.012980095, -0.019390155, 0.047125258, -0.0030089587, 0.03063412, -0.015016699, 0.027997576, -0.069568455, 0.047587592, -0.016874475, 0.031001221, 0.023263786, 0.047113337, -0.029734299, -0.034110453, 0.0250262, -0.013311914, 0.018794114, -0.020997863, 0.04676701, 0.032296244, -0.06832063, 0.023105439, -0.019261373, 0.049594283, 0.026684744, -0.0011642281, 0.020038527, -0.04057215, 0.029121555, 0.020954378, -0.018022615, -0.006986743, -0.0024868383, -0.028120175, 0.017294431, 0.010772705, 0.00716225, 0.03437953, 0.017680801, -0.009138144, 0.0055250246, 0.02380292, -0.008706817, -0.038582228, -0.06691743, -0.03324254, 0.0727595, -0.013616459, -0.07339762, 0.03191601, -0.00759897, -0.0019418935, 0.07504312, -0.031109149, 0.019456398, -0.09352287, -0.036459144, 0.024420036, 0.046372402, 0.01429776, -0.022043036, -0.060582668, 0.0050262045, 0.0003813408, 0.03452842, 0.027944177, -0.04274825, 0.025931248, -0.013212916, 0.027309861, 0.02745334, -0.01100234, 0.012287872, 0.01147568, 0.025698682, -0.013592623, 0.03941204, -0.0120668765, 0.031734437, 0.05740777, -0.06254071, -0.020435775, 0.014493092, 0.031700242, 0.013966252, 0.029210838, 0.08249668, 0.008996117, 0.0333838, -0.037629727, -0.03648216, 0.050353702, -0.0032786503, -0.013877965, -0.015402789, 0.04627757, -0.017368603, -0.03909638, -0.05862897, 0.0017834625, 0.015981067, -0.036283124, -0.03372184, 0.023922095, -0.038379878, 0.021167861, 0.008374106, 0.03939533, -0.00058401906, -0.048237912, 0.06454938, -0.05287073, 0.029554822, -0.039095588, 0.048987318, -0.0083387215, -0.025653053, 0.04142939, -0.074034095, -0.059609905, -0.013560367, 0.0021319804, 0.047151655, 0.045647245, -0.0063801366, 0.019132566, 0.024364252, 0.023900354, -0.008345361, 0.043619454, 0.07972843, 0.015829494, -0.026035475, -0.03710203, 0.011994572, -0.015711404, -0.020156438, 0.063546814, 0.0315849, 0.06399069, -0.0031192775, 0.043597233, -0.02275829, 0.03103842, 0.06860215, -0.021894358, -0.019255072, 0.00088926026, -0.03309686, -0.025832359, -0.016995238, -0.016457653, -0.029667376, -0.008520553, 0.035953667, 0.048563767, -0.010852546, 0.005584868, -0.013915392, -0.03452227, 0.010668029, -0.046654683, 0.043457985, -0.025481451, -0.02688591, -0.010750282, -0.019102996, -0.004313658, -0.06836752, 0.025539545, 0.0037607178, -0.009651533, -0.0054106414, 0.069070525, 0.024624044, 0.05694605, 0.044320546, 0.062964775, 0.012127898, 0.02493015, -0.026102109, 0.05178627, -0.066335686, 0.005556642, 0.014732141, -0.0042895228, -0.002472342, 0.007998516, -0.008561006, 0.041646507, -0.027193725, -0.0204645, -0.027756115, 0.061210662, 0.04230736, -0.036437795, 0.004810627, -0.01209008, 0.004404628, 0.0054639755, 0.014286261, -0.020499647, -0.043487515, 0.003317388, -0.03570978, -0.05335796, 0.016151363, 0.0015314348, 0.012357388, -0.042732168, -0.000511425, -0.04732885, -0.06506318, 0.014346, -0.038603988, -0.009231961, 0.02295071, -0.05021687, -0.0021640023, -0.052174956, 0.0059238863, -0.0011909476, 0.044107262, -0.07117204, -0.06336312, -0.019726101, -0.0039846296, 0.039464153, 0.0068952255, 0.0009953604, 0.017037569, -0.028603777, -0.044448186, 0.006507247, -0.02833065, 0.03619145, -0.007196189, 0.035771497, 0.04817031, -0.06980769, 0.031218488, 0.027485555, 0.026594875, 0.008809437, 0.041180693, 0.0030004957, 0.021565517, -0.03165681, -0.034210302, -0.041773252, -0.031746984, -0.040303927, 0.015755426, 0.024980934, 0.0050195735, -0.016342286, -0.01277393, 0.03024474, 0.027885588, -0.033057034, 0.0142449, -0.038978215, 0.0028429732, -0.033967096, -0.03140821, 0.019860689, 0.010270779, 0.022151858, 0.017296597, -0.024956377, 0.036414128, 0.019361865, -0.020806089, -0.036523197, 0.03132208, 0.015750889, -0.052793678, -0.009125474, -0.013065153, -0.02390246, -0.005215399, 0.005365513, -0.020714123, 0.028093427, 0.017513804, 0.025026051, -0.042590804, -0.0054815644, 0.014368838, 0.043066286, 0.11808488, -0.04837714, 0.02198036, -0.090627946, 0.03438242, -0.05448797, 0.0047562867, -0.053687673, -0.013517145, 0.054354217, 0.008513788, 0.043376293, 0.028399866, -0.050164297, -0.013873514, -0.042260483, 0.009886466, 0.07308374, 0.010191708, 0.03253698, 0.03459962, 0.022186879, 0.026463125, 0.05395648, -0.01992274, -0.009410176, -0.01735833, -0.039232217, 0.0755899, 0.018261895, 0.0048368964, -0.08836188, 0.041743975, -0.043339632, 0.075454675, 0.008058837, -0.001271202, 0.0072023254, 0.08225592, -0.0073719122, 0.036326207, -0.014024127, -0.023019737, -0.03416746, -0.018058887, 0.0011952115, -0.01499411, -0.05080222, 0.017678086, 0.025311206, -0.028680637, -0.04534337, -0.060074195, -0.038259685, -0.026125835, -0.054861117, 0.021180283, 0.0085983705, -0.02803662, 0.027987033, 0.002408951, -0.012686433, -0.035779014, 0.024984187, 0.019045716, 0.007764341, 0.0038493958, -0.007912177, 0.0017440729, -0.09695377, -0.0013526566, 0.04052013, -0.045130577 ] }, { "values": [ -0.017713048, -0.011487497, -0.022649929, -0.030155998, 0.018409368, 0.031471927, 0.0069787633, 0.060828928, 0.0033838712, 0.023090864, 0.030103303, -0.0001607516, 0.02192395, 0.02900103, -0.022335758, -0.030443275, 0.03542213, -0.016498769, -0.05424907, -0.015434641, -0.009860637, 0.045976233, -0.050732374, -0.07474329, -0.021638742, 0.022282373, 0.027556853, -0.044037007, -0.006978844, -0.053430773, 0.012941, 0.0056822374, -0.051948678, -0.037153877, 0.0071895756, 0.04992897, -0.051636346, -0.00391997, 0.018621888, -0.04106203, -0.040358428, -0.034401897, -0.0012818293, 0.029190158, -0.06838072, 0.031259406, 0.033079155, 0.052445237, -0.060937054, 0.03947903, 0.002057415, -0.011334428, -0.026947325, 0.03256302, -0.007965826, -0.03403393, -0.06806765, -0.040331997, 0.019160356, -0.017831717, -0.008488881, 0.01928159, -9.40252e-05, -0.021095546, -0.01582943, -0.031794306, -0.05092262, -0.04212446, -0.054724902, 0.029734088, -0.054007124, -0.0024414924, -0.07009725, -0.019208174, 0.0009048057, -0.034010455, 0.04979182, 0.009794825, -0.029919013, 0.015123176, -0.0003564947, -0.038726933, 0.05297665, 0.078248136, 0.033290602, 0.019396145, 0.04120083, -0.034433696, -0.052710045, 0.015683468, 0.05071069, -0.042486247, -0.058591343, -0.00015671014, 0.056448855, -0.020028835, -0.046131246, -0.1089502, 0.0034434753, 0.061493255, -0.0624973, -0.026809473, -0.026712727, -0.0057136356, 0.023788586, 0.05365184, -0.037798733, -0.03822483, 0.001052403, 0.0049400763, -0.017179202, -0.020934535, -0.014810479, 0.029154928, -0.017044777, -0.06656673, -0.015971884, -0.014313428, 0.000683976, 0.0024280297, 0.048204836, -0.03213529, -0.0071531804, 0.06734738, 0.016693808, -0.0004685756, 0.067309454, 0.0031647615, -0.0057516075, -0.04330007, 0.026318839, -0.086587384, 0.020244656, 0.014945109, -0.053694535, -0.05280795, 0.031291198, 0.05552672, -0.039837424, -0.0054960307, 0.018136952, -0.0058801803, -0.019073104, 0.0666503, 0.0006989273, -0.033409953, -0.030715656, -0.0022769403, -0.023343913, 0.023648918, -0.087713085, -0.038652007, 0.05220398, -0.025421385, -0.04878731, 0.013494671, 0.08095301, -0.047540054, 0.021042453, -0.03905959, 0.03384061, -0.03240695, 0.010083926, 0.01368661, -0.03535873, 0.037170343, 0.042245004, -0.05361664, -0.028597819, -0.07549517, -0.033923037, -0.047604866, -0.013752041, -0.055022955, -0.027235474, -0.031893384, -0.08832767, -0.015588297, -0.038551327, -0.019158505, 0.03366156, 0.07499147, 0.015669934, 0.0070348014, -0.04434502, 0.0106889745, 0.025724027, 0.07074197, 0.0027362825, 0.066228524, -0.006739497, -0.0014350595, 0.041730594, 0.060173787, -0.008677346, 0.040757846, 0.082230575, 0.012183566, -0.03207097, -0.04921062, 0.022504235, 0.0019282413, -0.044859853, 0.045594264, -0.018219788, -0.021284325, -0.054014917, -0.036974803, 0.043551847, 0.009397858, 0.0038606783, 0.009585196, 0.0074671065, -0.0449227, 0.02186546, -0.014477522, 0.073336236, 0.048487913, 0.06930045, -0.036930263, -0.009130423, 0.00092825777, 0.007011967, -0.0384471, 0.016120166, 0.002462297, -0.0065517346, 0.009965269, -0.03735903, -0.051164106, -0.028766647, -0.019223385, -0.01702058, -0.021757541, 0.012706522, 0.03981016, -0.0020261172, -0.017134039, 0.004666765, 0.03289828, 0.020920236, -0.004431661, 0.03426155, -0.0020518436, -0.026562244, 0.054734014, 0.059389785, 0.08103151, -0.021801513, -0.017687637, -0.0099008, 0.0031879833, -0.11595771, -0.043848276, -0.06150329, 0.00679319, 0.01659268, -0.05357132, -0.0031199642, 0.020375986, 0.025482845, -0.011901834, -0.032748796, -0.04997381, -0.0071938615, -0.082484394, -0.0147843715, -0.03171989, 0.0021848117, -0.02295052, 0.026759466, -0.004340123, -0.077970415, -0.041705485, 0.0422853, 0.011500279, -0.006347606, 0.0065002907, -0.0505772, -0.060374394, 0.027177723, 0.0017509074, -0.02097313, -0.04484969, -0.03281428, -0.005171197, 0.00021220215, 0.06156219, -0.0103332335, -0.049081296, 0.041037526, 0.05144339, -0.006619648, 0.023358306, 0.029964674, -0.0042174025, 0.0018112136, 0.030645821, 0.005243618, -0.0025171717, -0.0015262337, 0.05717443, -0.046385128, 0.050090395, -0.017310273, 0.054489493, -0.046892595, -0.009848178, -0.0037829452, -0.018981002, 0.0069434685, 0.049354486, -0.06071485, 0.008359487, -0.0014348103, 0.006795507, -0.12375549, 0.0015941066, -0.040295333, -0.011256603, 0.012300697, 0.035853665, -0.03873954, -0.03504892, 0.018063968, 0.0063551967, -0.027963016, -0.0038529653, 0.017347883, -0.003037185, -0.009628459, 0.03600484, 0.01779949, 0.0027981338, -0.014211042, 0.020083532, -0.024586897, 0.031261384, 0.004845531, -0.0024599824, 0.038997985, 0.02006679, 0.054248385, 0.03545451, -0.013474513, -0.062450718, 0.015653357, 0.017790835, 0.051611047, -0.047174916, -0.022050656, 0.045425527, -0.016938347, 0.01590076, 0.03147551, 0.013545203, 0.0039022148, 0.05518838, -0.014851177, -0.0044037, -0.034988582, -0.020201795, -0.0058580935, -0.0029360119, 0.010145074, 0.022017129, -0.001049555, 0.06687679, -0.017662557, -0.024967406, 0.002542554, 0.034331027, 0.025650674, 0.028876744, -0.007101142, -0.09937834, 0.006043331, -0.005122559, -0.027736066, -0.025236305, -0.04999973, -0.05749189, -0.009593322, -0.011914212, -0.043702815, 0.042723686, -0.043726496, 0.011228668, 0.04015292, 0.008198123, -0.05007704, 0.049318004, -0.013925249, 0.00029453888, -0.035618715, 0.052793205, 0.013524886, 0.017703442, -0.009954698, -0.009661819, -0.04809717, -0.044593, 0.033287592, -0.01595427, 0.012348961, -0.006521776, 0.054909118, 0.016656728, 0.03457385, -0.03912187, 0.029921718, -0.057357844, 0.049446434, 0.018710874, 0.031593937, 0.043989006, 0.049967565, -0.03779604, -0.01611837, 0.0065873954, 0.02017822, -0.0009498633, -0.03852248, 0.053382266, -0.0033714075, -0.05973262, 0.017351119, -0.0050478284, 0.052306596, 0.024206692, -0.009574771, 0.016145274, -0.041880388, 0.022982333, -0.026876474, -0.016076326, -0.013012769, 0.00067782047, 0.0011438323, 0.013929424, 0.0010184223, 0.0094792005, 0.03138059, 0.03168081, -0.0012187982, 0.004514788, 0.018314138, -0.015259502, -0.03188689, -0.08204879, -0.039921623, 0.033648964, -0.003978992, -0.07013204, 0.0065081134, -0.0036546797, 0.029507305, 0.05392462, -0.006994807, 0.017564764, -0.09240979, -0.023788977, 0.028917989, 0.035368793, 0.008849958, -0.00873079, -0.06292406, -0.0021109565, -0.011863707, 0.04056204, 0.024813367, -0.04511516, 0.03337376, -0.015286582, 0.02162909, 0.037865452, -0.029320246, 0.024585312, 0.021269087, 0.015909953, -0.024243481, 0.032095242, 0.008313586, 0.030476728, 0.07168188, -0.047738142, -0.032324545, 0.023906931, 0.03563442, 0.034844875, 0.050784178, 0.08569811, -0.0033788562, 0.040542636, -0.024094908, -0.032813847, 0.041376896, -0.024973493, -0.010316462, -0.025679553, 0.0490465, -0.016659066, -0.03797366, -0.058133867, -0.026578886, 0.009563979, -0.05861993, -0.04111597, 0.019579569, -0.024259409, 0.0281818, 0.016472701, 0.059921384, -0.0035582723, -0.03125241, 0.05899822, -0.05537275, -0.0051544555, -0.019509839, 0.049193464, 0.019620694, 0.005172294, 0.032449007, -0.062467925, -0.05633413, -0.0050908662, -0.011260293, 0.04345533, 0.054130577, -0.026922667, -0.007323106, 0.024540924, 0.022154698, 0.0055219396, 0.037697084, 0.046437178, 0.0036977746, -0.015672041, -0.038200352, -0.00094651873, -0.02231783, 0.016865565, 0.048851214, 0.011729233, 0.06660024, -0.003354258, 0.038463667, -0.022839116, 0.015344703, 0.07888168, -0.018033637, -0.006437551, 0.019917326, -0.015378925, 0.006597053, -0.027518846, 0.0028817751, -0.00600609, -0.029656852, 0.013843723, 0.051387962, 0.001559046, 0.0045063384, -0.00600764, -0.016395075, 0.009641567, -0.06574518, 0.019886497, -0.018278707, -0.035367686, -0.0027700257, -0.0024031098, -0.0029548034, -0.052192807, 0.04535798, 0.0027059591, -0.01966388, 0.0067550587, 0.059073545, 0.033839464, 0.05676249, 0.030825356, 0.047943905, -0.004413906, 0.011025394, -0.021979153, 0.056779515, -0.066567056, -0.011836273, 0.038292337, 0.0012348333, -0.020600291, -0.010474173, -0.011223548, 0.021890013, -0.024857312, -0.011827514, -0.00829573, 0.07431376, 0.062031355, -0.04633865, 0.0033827557, 0.0036038887, -0.0010193373, -0.007938759, 0.00051126437, -0.032302108, -0.0595134, -0.021085856, -0.018942812, -0.0476399, 0.019832995, -0.008850763, 0.017152589, -0.03006042, 0.014135977, -0.05795309, -0.028002307, -0.0043214005, -0.046435557, -0.034053534, 0.0143875275, -0.044414125, -0.005020408, -0.059067942, 0.031027969, -0.015238962, 0.047987517, -0.050538726, -0.0719494, -0.0019488401, 0.027732369, 0.035767093, 0.0027027326, 0.005749127, 0.020294452, -0.015577262, -0.0329868, -0.0020991813, -0.03431087, 0.043833658, -0.02760751, 0.051263634, 0.036826957, -0.08279004, 0.02467313, 0.011112024, 0.008986156, 0.0141141275, 0.057585083, 0.005697206, 0.052373778, -0.04439015, -0.03906447, -0.036744818, -0.040640905, -0.056883093, 0.011320191, 0.0071581057, 0.01671614, -0.018078478, -0.0059343544, 0.022247056, 0.018736761, -0.02552748, 0.026447417, -0.026388397, -0.008062696, -0.031499293, -0.0130614, 0.0065497058, 0.0128656505, 0.017242525, 0.020556081, -0.031555947, 0.024064401, 0.010341009, 0.0098549975, -0.057494957, 0.037290424, 0.015569356, -0.065876946, 0.016135402, -0.03754056, -0.03468711, -0.007466282, 0.0143222455, -0.043080762, 0.030580185, 0.0106622605, -0.026705502, -0.05927205, 0.027629152, 0.003705108, 0.041528434, 0.09230525, -0.035121106, 0.02864932, -0.08633073, 0.039616436, -0.07002896, 0.012909275, -0.05766972, -0.03757155, 0.057996273, 0.029232679, 0.032639466, 0.009834296, -0.04148428, -0.0034494416, -0.058681965, 0.012857403, 0.080625914, 0.01599436, 0.03845303, 0.024801359, 0.026933141, 0.017435538, 0.045172665, -0.038935356, -0.029192895, -0.030307172, -0.014510731, 0.09374954, 0.009456461, 0.026655674, -0.08183348, 0.018750714, -0.01786845, 0.0751498, 0.025451925, -0.009385761, -0.0075659207, 0.06765326, -0.004404421, 0.022531508, -0.0109424265, -0.017338395, -0.0036318589, -0.030461032, 0.009599762, -0.029807817, -0.041575406, -0.005732979, 0.019242821, 0.005197477, -0.0500656, -0.056192137, -0.018619148, -0.009606735, -0.05447245, 0.0062634647, 0.034789335, -0.010827234, -0.001099961, -0.018955197, 0.0039560082, -0.054361757, 0.040903218, 0.022015426, -0.009478193, -0.015019697, 0.016922835, 0.0050330106, -0.1080884, 0.0025382251, 0.024972126, -0.043947205 ] }, { "values": [ -0.011114954, -0.004757702, -0.019197844, -0.020225143, 0.030816754, 0.00738796, 0.032463685, 0.020682855, -0.009302416, 0.016899036, 0.029910615, 0.011080068, 0.028610598, 0.0015354566, -0.039447118, -0.01245531, 0.037918612, -0.0089472, -0.077903904, -0.052241243, -0.020967796, 0.03418827, -0.024344893, -0.070605926, -0.027797673, 0.004045886, 0.031906422, -0.04632894, -0.0027214712, -0.051342968, 0.02286294, 0.04134289, -0.05383502, -0.049597267, 0.041619733, 0.040453475, -0.04785178, 0.006590026, 0.017672634, -0.029422084, -0.04556999, -0.023797838, -0.005245784, 0.022325808, -0.04515207, 0.018458376, 0.045615636, 0.047504764, -0.017991886, 0.06957662, 0.020695461, 0.0091167055, 0.0032261412, 0.036369093, 0.009106063, -0.035415076, -0.078642495, -0.046349738, 0.025167346, -0.016194776, -0.015225237, 0.024289992, 0.0010168467, -0.031844158, -0.0029514248, -0.036108498, -0.023062918, -0.039329205, -0.048106376, 0.048376493, -0.023109319, 0.027962856, -0.08308315, -0.018576795, 0.0030270384, -0.022225978, 0.01486033, 0.050808545, -0.05804939, 0.0035095417, -0.026246859, -0.0150342025, 0.07298952, 0.06810551, 0.03007614, 0.013658623, 0.025138374, -0.038779903, -0.035577185, 0.011810312, 0.0535119, -0.038222, -0.04110611, 0.008595007, 0.0332506, -0.017049933, -0.054216146, -0.119406, -0.013084566, 0.0861982, -0.024755245, -0.03828589, -0.016549893, -0.0011877108, 0.03284529, 0.04097351, -0.049085718, -0.053334586, -0.016624926, 0.030955046, -0.034239154, -0.010895671, 0.020782193, 0.026721094, -0.023263447, -0.07705617, -0.02739282, -0.018747913, 0.0074299728, 0.010364233, 0.04658869, -0.03978427, -0.039972026, 0.06485405, 0.009015962, -0.021816801, 0.033525962, 0.019380623, -0.008181083, -0.060342763, 0.039013393, -0.09526094, 0.011008573, 0.009573226, -0.040481523, -0.05928101, 0.014219815, 0.055229057, -0.012642874, 0.0049086707, -0.010398951, -0.0067451173, -0.0080783535, 0.0514075, -0.011794837, -0.012926427, -0.037688103, 0.013004019, -0.05657015, 0.03745788, -0.0869137, -0.026803665, 0.058547687, -0.016887337, -0.05164431, 0.035946436, 0.08558662, -0.015459363, 0.024280248, -0.030979814, 0.047997564, 0.0037145326, 0.010848265, 0.012992571, -0.03924101, -0.0058453404, 0.041492116, -0.044207413, -0.016645305, -0.06718871, -0.020266857, -0.0031974018, 0.007123336, -0.06406792, 0.001012628, -0.019193808, -0.08083267, -0.005488279, -0.021407245, -0.0137611935, 0.048065014, 0.034061756, -0.0044609634, 0.016114587, -0.018390423, -0.00057369325, -0.02147971, 0.09723048, 0.021103181, 0.05609367, -0.003823537, -0.011069241, -0.0057659554, 0.08348175, 0.005030722, 0.026218802, 0.054353323, 0.026330445, 0.020352786, -0.040575366, 0.048728123, -0.032131582, -0.029797269, 0.029981479, -0.03178114, -0.023220483, -0.04757277, -0.020602547, 0.026892342, 0.0044657034, -0.023958223, -0.024849826, 0.0077044354, -0.05032706, 0.012829905, 0.024999984, 0.075857736, 0.059048306, 0.043585863, -0.017314428, -0.009955192, -0.011976856, 0.022355143, -0.042202245, -0.00078597193, -0.04839009, -0.035190627, -0.027743775, -0.047002293, -0.010700908, -0.03425792, -0.006137491, 0.019588115, -0.016576525, 0.00234309, 0.0118569825, -0.03578078, -0.01398357, 0.020878855, 0.025144378, -0.0047456603, 0.0016499108, 0.03790772, 0.003995174, -0.013083008, 0.06486071, 0.06746832, 0.087733336, -0.01253802, -0.007538666, -0.0073365127, 0.013374999, -0.12231637, -0.022372497, -0.058456544, -0.013081007, 0.033892725, -0.077851474, -0.0042452733, -0.01718168, 0.028311536, -0.002089132, -0.02863938, -0.047879346, -0.010879869, -0.07374783, -0.027314939, -0.02809918, 0.03818488, 0.0051050396, 0.040660206, 0.001109956, -0.055294782, -0.05793907, 0.0345447, 0.0030488141, 0.0110887755, 0.012673006, -0.04843959, -0.04580017, 0.018841594, 0.0011725161, -0.021540055, -0.039858967, -0.026445448, -0.024910884, 0.020740252, 0.0440747, -0.023194475, -0.04063938, 0.059711125, 0.050149463, 0.011547443, 0.028503131, 0.010132171, -0.008162846, -0.0075986483, 0.036229093, 0.022784935, -0.017072208, 0.006449131, 0.06629297, -0.021026505, 0.029544398, -0.024019362, 0.048036687, -0.050492007, -0.020318858, -0.0025779393, -0.020990262, -0.0028977802, 0.057440076, -0.042021487, -0.001652995, 0.017025998, 0.015122002, -0.11583623, -0.01686157, -0.052671384, -0.0025095749, 0.013865552, 0.05012525, -0.034846403, -0.026169874, 0.02904847, -0.009708137, -0.023784824, -0.0031763685, -0.012092306, -0.0049558375, 0.004921106, 0.03312555, 0.013279983, 0.01061691, -0.0035164927, 0.016365467, -0.016111903, 0.003958786, 0.026082728, 0.0064068963, 0.03610433, 0.015392043, 0.054227322, 0.032530986, -0.022745972, -0.08372168, 0.022672603, -0.0107267285, 0.057049494, -0.026371013, -0.030798739, 0.044385403, 0.013633738, 0.0062228255, 0.020983402, 0.010442546, 0.012846287, 0.06000399, 0.007872219, -0.012980834, -0.018832633, 0.01746121, 0.0077139987, -0.022557383, 0.006362518, 0.0010494282, 0.000987521, 0.04484883, -0.0084972875, -0.036201444, -0.010619572, 0.02603439, 0.008414277, 0.008289307, 0.0014341404, -0.10872033, -0.014630524, -0.0027873726, -0.032140188, -0.053289924, -0.060663484, -0.051207457, 0.0016540745, -0.014911635, -0.052140027, 0.023344478, -0.05498955, -0.012889403, 0.0426586, 0.002529308, -0.038981836, 0.07498779, -0.013410343, 0.00082816934, -0.023966847, 0.031228064, -0.0058374875, 0.017603233, 0.020518173, -0.021854516, -0.046869874, -0.033922732, 0.02692699, 0.016284415, -0.0018946572, -0.013866034, 0.03949087, 0.015426941, 0.043727543, -0.04273313, 0.028785568, -0.055020828, 0.03661385, 0.0018658398, 0.027532239, 0.022116216, 0.037327733, -0.024645656, -0.029284138, 0.004229278, 0.0057366905, 0.005370421, -0.019119306, 0.033572745, 0.0033208386, -0.08775808, 0.02051291, -0.009496846, 0.015666723, 0.0077116103, -0.012733748, 0.016526956, -0.04467273, 0.013865303, -0.02571324, -0.015237837, -0.027097784, 0.0016964322, 0.003205577, -0.0014041133, 0.023257226, 0.010377899, 0.036541894, 0.01127373, -0.000703183, 0.016285248, 0.0360496, -0.0149620315, -0.055315547, -0.08909107, 0.010468834, 0.042962264, 0.00035481947, -0.06606053, 0.0051204967, -0.027278176, 0.018407192, 0.061275486, -0.029944701, 0.032145407, -0.07276948, -0.033572022, 0.037771992, 0.03718021, 0.020761069, -0.021437658, -0.049966317, -0.004572299, -0.008861015, 0.028931623, 0.0147637995, -0.061399005, 0.045021098, 0.015838658, 0.04832435, 0.045543358, -0.028255232, 0.001799713, 0.038779717, 0.0063437056, -0.023976533, 0.037158873, 0.0045607584, 0.011990693, 0.055486333, -0.06295098, -0.014937712, -0.010841885, 0.032657236, -0.00271797, 0.036277127, 0.09100648, 0.010676056, 0.04739064, -0.02853441, -0.033290017, 0.06851378, -0.03369454, 0.013283946, -0.030601082, 0.027682865, -0.008962529, -0.043410048, -0.036894687, -0.018421918, 0.016721327, -0.037468947, -0.04195663, 0.029936027, -0.009221441, 0.014868446, 0.018071821, 0.056768894, -0.022559, -0.047359213, 0.066067256, -0.039722014, 0.0018864486, -0.03254936, 0.058572352, -0.0069048256, -0.019027201, 0.048667442, -0.09791374, -0.07268437, -0.009474854, -0.009822609, 0.029877845, 0.048574265, -0.019924765, 0.0025954035, 0.0030328808, 0.025751648, 0.004833106, 0.024299126, 0.0652202, 0.0014764057, -0.040915947, -0.03214008, 0.00915725, 0.0032627804, -0.00382322, 0.058180664, 0.0065122694, 0.060396936, 0.0001343787, 0.05413413, -0.0069587273, 0.019907447, 0.07829119, -0.043961976, -0.023236388, 0.020259935, -0.018443229, -0.040972147, -0.03516382, -0.00684587, -0.02658786, -0.02530709, 0.023503589, 0.035054136, 0.0036463998, 0.019146351, 0.008296323, -0.032473855, 0.007302267, -0.041087504, 0.056383815, -0.024358174, -0.030735182, -0.009925539, -0.04004418, -0.01496404, -0.057707794, 0.033996236, 0.011598059, -0.015096757, -0.00013279622, 0.06554234, 0.030982768, 0.05609801, 0.06777546, 0.06410281, 0.00048856507, -0.0115493145, -0.013161898, 0.032318987, -0.06802348, -0.003934062, 0.018068345, -0.0012228781, 0.00811589, -0.016232096, -0.0017683689, 0.033567607, -0.001568261, -0.010947563, -0.037368346, 0.048076008, 0.064365044, -0.04061603, -0.003995812, -0.009685614, 0.0044695367, 0.0023870475, 0.0039037494, -0.02925352, -0.045536865, 0.014581873, -0.028771952, -0.045421343, 0.01659086, -0.02100404, 0.008942821, -0.06590924, 0.021093264, -0.056549244, -0.042744856, 0.016546229, -0.06518416, -0.010511599, 0.026382552, -0.058081057, -0.018855052, -0.04318578, 0.022629105, 0.0035259253, 0.04733667, -0.049079023, -0.055206046, -0.010367228, -0.003193918, 0.04813192, -0.00811599, 0.0043819705, 0.03300641, -0.0021308395, -0.024473341, 0.016267186, -0.03586397, 0.042837206, -0.00376645, 0.03220862, 0.04330658, -0.07809052, 0.029529138, 0.016921354, -0.0019777159, 0.014466556, 0.018136706, -0.003461787, 0.017727867, -0.027658433, -0.049429696, -0.036054973, -0.029885722, -0.04640068, 0.014105962, 0.018044362, 0.006388202, -0.03517722, -0.016876878, 0.0097945845, 0.028949073, -0.0038894364, -0.0053808624, -0.028574845, 0.00477581, -0.03957426, -0.029812602, 0.0045638294, 0.01575244, 0.04398506, 0.016365688, -0.038574703, 0.03367742, 0.020953672, -0.00033530858, -0.045029793, 0.027706632, 0.019799642, -0.05068682, 0.017305018, -0.01975652, -0.035479564, -0.020708388, -0.0027571067, -0.027044643, 0.03153007, 0.014353612, -0.0032743441, -0.048217356, -0.0027151157, 0.0026669663, 0.02538571, 0.11190476, -0.027043693, 0.028848276, -0.11627923, 0.012632866, -0.057419322, 0.008626072, -0.0748647, 0.0032473165, 0.025677446, 0.034066245, 0.046691038, 0.025520584, -0.04192512, -0.0015538109, -0.051052462, -0.016410524, 0.070035726, 0.0058072405, 0.04376782, 0.026778042, 0.027508404, -0.006317543, 0.057057638, 0.003639763, -0.025661858, -0.02923831, -0.020014178, 0.08482466, 0.006533281, 0.023103675, -0.09290779, 0.016272949, -0.037568547, 0.06968416, 0.020827506, -0.02462048, 0.0039062705, 0.062165514, -0.0027082793, 0.036765575, -0.059882652, -0.005939049, -0.0025816988, -0.015061207, 0.008664086, -0.021621194, -0.031218281, 0.023147512, 0.034454063, -0.007734139, -0.06447046, -0.0680502, -0.018411186, -0.0143447425, -0.06556224, 0.0176934, 0.014174533, -0.023876065, 0.01234437, -0.023955496, -0.018614514, -0.023655271, 0.027831089, 0.022249509, -0.018330656, -0.0004361998, 0.009709763, -0.00023444217, -0.076573394, 0.025175089, 0.050182898, -0.045529544 ] }, { "values": [ -0.009981018, -0.019018078, -0.013282638, -0.02633167, 0.02851001, 0.032896843, 0.012307218, 0.01927261, 0.024673142, 0.047087293, 0.027180757, -0.008724793, 0.008886623, 0.020975772, -0.012297348, -0.036514495, 0.021930909, -0.015332875, -0.08208214, -0.060146242, 0.0031017829, 0.017328445, -0.02021938, -0.058067877, -0.030378848, -0.0048407507, 0.038569048, -0.032483906, 0.0058636907, -0.04986642, 0.016996866, 0.035939492, -0.0363826, -0.06081053, 0.017210152, 0.05625238, -0.08028304, 0.0028145157, -0.0035251032, -0.032775156, -0.058864955, -0.017432062, -0.001264251, 0.031255197, -0.05359993, 0.0359664, 0.050931875, 0.03972733, -0.02979663, 0.042663224, -0.0019786186, -0.012210632, -0.0028343336, 0.026792444, 0.0036250046, -0.051821135, -0.084533, -0.0037135012, 0.02892207, -0.016988002, -0.0032366454, 0.03177151, -0.007091911, -0.017769612, -0.015676387, -0.03187699, -0.040554114, -0.019878065, -0.04112412, 0.06077194, -0.05206529, 0.016492387, -0.077507325, 0.008503388, 0.0021289778, -0.023517959, 0.046966255, 0.024115708, -0.054408267, 0.0078096455, 0.010342741, 0.0068582734, 0.04976556, 0.048908114, 0.035119247, 0.012201305, 0.049568538, -0.017481055, -0.047442794, 0.0033353462, 0.056052472, -0.026655255, -0.051762335, 0.016766863, 0.03924732, -0.0014326834, -0.040213373, -0.12076691, -0.010316913, 0.05953654, -0.044834383, -0.045868393, -0.03106914, -0.0069021927, 0.020428704, 0.02999814, -0.0495028, -0.038024705, -0.031945847, -0.0033812246, -0.021536276, -0.01694951, 0.024758661, 0.023894837, -0.026347147, -0.057418652, -0.059843592, -0.020061381, -0.00627527, 0.021342544, 0.05385028, -0.04127025, -0.039232064, 0.07439057, 0.031177841, -0.017393995, 0.030456657, 0.021971045, -0.01823043, -0.047425352, 0.043823954, -0.09104687, 0.029749924, -0.006731132, -0.02977119, -0.058070056, 0.04551255, 0.057395976, -0.02232366, 0.0070876577, 0.007306579, -0.004165275, -0.017478371, 0.060083475, -0.007454624, -0.034406263, -0.025355868, 0.0020336278, -0.052651495, 0.04225327, -0.08948644, -0.038087532, 0.06600796, -0.004724479, -0.06537735, 0.04003407, 0.06741067, -0.018034857, 0.0205628, -0.038487796, 0.036911115, -0.006485936, -0.0023042778, 0.008733521, -0.045906402, 0.04101754, 0.03570163, -0.045313373, -0.021549523, -0.06496953, -0.02882241, -0.024171108, -0.006888966, -0.049772833, -0.020104285, -0.02731202, -0.056812037, -0.023716817, -0.04567048, -0.023977594, 0.04020417, 0.062081452, -0.014231777, 0.0061187334, -0.0077930684, 0.00027791108, 0.008727927, 0.070851624, 0.030635819, 0.057747573, 0.0040164497, -0.003434472, 0.0015170341, 0.07322085, -0.0034378618, 0.017407594, 0.053366728, 0.03225692, -0.013797521, -0.045799956, 0.04610522, -0.023464933, -0.047288977, 0.042630553, -0.029453086, 0.01695429, -0.062767684, -0.030839996, 0.03733983, -0.00090958877, -0.008256268, -0.02684418, 0.031853925, -0.041390963, 0.020065693, 0.013011218, 0.08697717, 0.051541016, 0.068318024, -0.005661594, -0.030739537, -0.018845292, 0.00011175474, -0.014799018, 0.0069494145, -0.038794108, -0.018919013, -0.011675836, -0.048763476, -0.030797416, -0.008943337, -0.009446398, -0.0029925245, -0.021626579, 0.0012365066, 0.038474433, -0.014956456, -0.02632465, 0.030125173, 0.052346326, -0.007263478, -0.0038057046, 0.023310836, 0.013998723, -0.023048833, 0.04722559, 0.05051784, 0.088077895, 0.011569698, -0.008428727, -0.031084286, 0.008230965, -0.11524588, -0.029955901, -0.06455779, -0.0039153807, 0.014037771, -0.08013149, 0.009167907, 0.007902752, 0.030213203, 0.0068951757, -0.029009318, -0.034564294, -0.016686138, -0.07292032, -0.03973872, -0.027209012, 0.014783292, -0.0065283473, 0.041848693, -0.006796127, -0.07447507, -0.059694592, 0.015227992, 0.024026502, -0.018398937, 0.0021946812, -0.04145587, -0.068400025, 0.03466125, -0.00014921464, -0.0140527785, -0.028764458, -0.030524949, -0.009950936, 0.006964571, 0.04606924, -0.0115701575, -0.02357445, 0.035652224, 0.05475012, 0.0028866197, 0.02258468, 0.011678451, 0.0129737, 0.012091357, 0.039144713, -0.0016520838, -0.0127747515, 0.019783847, 0.058914702, -0.025374798, 0.037056748, -0.010167653, 0.04096493, -0.05145947, -0.013454247, -0.020329664, -0.034852747, 0.0034878068, 0.030831613, -0.037001304, 0.0107460795, -0.010212277, 0.00074723957, -0.13859637, -0.0135563975, -0.06458437, -0.00017036739, 0.0073363995, 0.038101774, -0.017898284, -0.04593984, 0.038103547, 0.0068574934, -0.009744467, 0.004875074, -0.008382204, -0.0073098456, 0.0015721575, 0.026343785, 0.018732112, 0.005963227, 0.013662113, -0.005873099, -0.004879057, 0.0064527793, 0.04845736, -0.0012840529, 0.04603399, 0.022564566, 0.052963, 0.027265145, -0.031552475, -0.066602014, 0.036685027, -0.002036192, 0.04284211, -0.042433742, -0.020194523, 0.050330535, 0.012903867, 0.025118189, 0.021233452, -0.010520717, -0.004997898, 0.0362273, -0.0010469228, -0.014722746, -0.00907289, 0.00571242, -0.014066968, -0.021691613, 0.02651968, 0.0068319514, 0.0073884204, 0.05253803, -0.018519064, -0.028317794, -0.00012358843, 0.015265486, 0.013256738, 0.021422103, 0.0046908967, -0.075224675, 0.003118359, 0.009422695, -0.02232557, -0.03657365, -0.04721391, -0.05451665, -0.0062676207, 0.0131099615, -0.048176654, 0.04329856, -0.041793525, 0.017148526, 0.03986485, 0.009561488, -0.0541237, 0.06343183, -0.019014819, 0.010629398, -0.056959208, 0.051514804, -0.009562671, 0.008357625, 0.016988918, -0.02119353, -0.05519843, -0.04517036, 0.040079873, 0.012810397, 0.014276161, -0.007420132, 0.05194391, -0.0030935174, 0.042980913, -0.042092856, 0.018606367, -0.043925025, 0.023894604, 0.003729336, 0.029428752, 0.032546602, 0.052935317, -0.023778388, -0.029404026, -0.010621569, 0.01357581, 0.027438555, -0.022803044, 0.016429126, 0.0036668556, -0.07883687, -0.0012866891, 0.006226921, 0.033911742, 0.036753997, -0.011724407, 0.016615655, -0.04565961, 0.026697364, -0.005548653, -0.021315679, -0.01469346, 0.012234391, -0.005799196, 0.016302627, 0.004863104, 0.033586036, 0.027094204, 0.013194312, 0.010773961, -0.0033395, 0.03616887, 0.00086061243, -0.04603686, -0.08888404, -0.029500932, 0.02334969, -0.005821117, -0.041157596, 0.008427738, -0.0072974763, 0.013339279, 0.048353832, -0.042402435, 0.01965487, -0.11081899, -0.024965143, 0.032038935, 0.042752508, 0.018311879, -0.018936286, -0.063781194, -0.0052232663, 0.0012617817, 0.04754225, 0.021998275, -0.054075472, 0.05653653, -0.0043079667, 0.029338421, 0.05617319, -0.019703658, 0.024654184, 0.053628273, 0.03142288, -0.025293214, 0.03549864, 0.0022562582, 0.03986869, 0.069022566, -0.061468627, -0.00800188, 0.010453492, 0.027266977, 0.03463903, 0.04845356, 0.08471602, 0.013639269, 0.047180682, -0.037101403, -0.046324667, 0.023647517, -0.011573984, -0.0057842173, -0.0024379932, 0.022731418, -0.0191925, -0.041883495, -0.057143223, 0.011637697, 0.017495627, -0.05409022, -0.046823803, -0.0026872568, -0.026321216, 0.027432188, 0.02051949, 0.05360127, -0.005428253, -0.032156058, 0.050171915, -0.06263417, 0.005426202, -0.02524756, 0.0633992, 0.02645392, 0.0006203088, 0.04027916, -0.07453107, -0.0696399, -0.01172133, 0.0140883345, 0.03458419, 0.041192293, -0.00814713, 0.008761998, 0.009227344, 0.010558495, 0.028487254, 0.018564241, 0.050636217, -0.0014293167, -0.011065279, -0.03622254, 0.0073175333, 0.009795274, 0.017621968, 0.053880308, 0.00552894, 0.079635754, -0.030073104, 0.049546726, -0.0057308227, 0.006419757, 0.071781084, 0.004252351, -0.027989695, 0.02788308, -0.01319936, -0.0061217076, -0.045098033, -0.0025852616, -0.028099537, -0.03395663, 0.0070222914, 0.055386234, 0.002037387, 0.021310385, -0.010338383, -0.011206084, -0.030779444, -0.037482977, 0.030293532, -0.040486358, -0.050677963, 0.00544976, -0.011356248, -0.0070626796, -0.04921798, 0.03449253, -0.012739134, -0.0066988873, -0.007983634, 0.0670606, 0.029884933, 0.04457407, 0.03482151, 0.052636653, 0.011766452, 0.021990951, -0.0036658465, 0.03563485, -0.062771685, -0.005669292, 0.017631784, 0.011639513, -0.0021672412, -0.012773116, 0.0028462263, 0.048202444, -0.026072579, 0.006785845, -0.027691158, 0.040296737, 0.04718848, -0.028031873, -0.0004069264, 0.016094843, 0.018539088, -0.0062220315, -0.0053972052, -0.03571819, -0.051243994, 0.018854981, -0.042259805, -0.04039079, 0.018057492, 0.008389425, 0.015856063, -0.049253233, 0.012351887, -0.06238925, -0.027818268, 0.027446993, -0.042551767, -0.014094849, 0.0132038975, -0.063084275, 0.0117955245, -0.046213266, 0.039601322, -0.009808041, 0.042300776, -0.04595988, -0.050424945, -0.0044024494, 0.016629558, 0.04263074, -0.01113491, -0.0022537948, 0.010757119, -0.018555036, -0.03226849, -0.0024476948, -0.0361149, 0.04976981, -0.02384736, 0.03580548, 0.015175306, -0.07062752, 0.040034868, 0.008771574, 0.015946958, 0.021678342, 0.050075155, 0.00899436, 0.03633947, -0.031486154, -0.046771266, -0.039369244, -0.04166703, -0.024557438, 0.010754767, 0.030719385, 0.04476319, -0.044092137, -0.026831493, 0.023387106, 0.017283851, -0.026419668, 0.009385485, -0.023342365, -0.0154215945, -0.022185555, -0.019756263, 0.04254852, 0.009616179, 0.033539575, 0.012177569, -0.046481945, 0.020640252, 0.024374072, 0.008046956, -0.03535356, 0.04068339, 0.019529432, -0.058851678, 0.03149404, -0.026478983, -0.033837162, 0.0017821075, -0.009540376, -0.032252166, 0.025361286, 0.011703062, -0.0102295615, -0.06937382, 0.027031662, 0.001177991, 0.038968936, 0.09260284, -0.056766726, 0.013492535, -0.09378905, 0.04851004, -0.070365, -0.015108412, -0.07383233, -0.023553122, 0.039259166, 0.029408434, 0.05986395, 0.017184889, -0.048416268, -0.021919152, -0.057524487, 0.016058005, 0.08051083, 0.0005612261, 0.037319478, 0.04587985, 0.013718055, 0.014824167, 0.04622063, -0.028399557, -0.023260314, -0.034599323, -0.023693202, 0.0874089, 0.0064983973, -0.009943463, -0.07370076, 0.028655412, -0.028810222, 0.06973765, 0.03218303, -0.015449644, 0.03150967, 0.030857133, -0.0012417334, 0.040887002, -0.0174016, -0.0038984078, -0.030294234, -0.005113887, 0.012620737, -0.022966648, -0.046151362, 0.0052154465, 0.048178997, -0.0076014725, -0.039440315, -0.03581939, -0.015676638, -0.044098612, -0.07705001, 0.013641375, 0.01117734, -0.0031319808, 0.012039854, -0.019815814, -0.0019588263, -0.04808528, 0.0587777, 0.031467892, -0.022885643, 0.00051293004, 0.0014599003, -0.009639716, -0.11113592, -0.015074053, 0.04572546, -0.049836632 ] }, { "values": [ -0.023373326, -0.01823017, -0.046790913, -0.03493385, 0.037900887, 0.035657126, 0.018094426, 0.03212495, 0.010868241, 0.043978725, 0.014379435, 0.014471351, 0.006038916, 0.026853258, -0.026803361, -0.052087795, 0.016084868, -0.0009127146, -0.036243815, -0.06599202, -0.007903768, 0.01672661, -0.013186166, -0.07756219, -0.055930063, 0.027073137, 0.039425634, -0.05967071, 0.01253383, -0.050938986, 0.02522581, 0.031614095, -0.01807012, -0.038169663, 0.06328021, 0.016914764, -0.06290013, 0.013228502, -0.010840634, -0.022678405, -0.04627026, -0.019340811, -0.021235436, 0.017165644, -0.057906024, 0.027046122, 0.032041382, 0.015216198, -0.04889574, 0.049822334, 0.008805102, -0.025198905, -0.0025300377, 0.02273688, -0.007315737, -0.036609013, -0.056607757, -0.045527827, 0.02745492, -0.02008083, -0.014467967, 0.004506307, 0.019949343, -0.020611396, 0.0072324118, -0.038035292, -0.030270029, -0.0140954, -0.050914414, 0.038203526, -0.04582518, 0.016483095, -0.07107186, -0.011499537, -0.01777248, -0.01216171, 0.023540365, 0.050029125, -0.053362105, 0.0012614791, -0.032423995, -0.015010217, 0.07210123, 0.0570653, 0.034743786, 0.0022761854, 0.03356684, -0.01136944, -0.029195799, 0.02633212, 0.08953576, -0.040028147, -0.042154573, 0.021420011, 0.041446872, 0.010721285, -0.048080858, -0.09625466, -0.013203666, 0.06399494, -0.026865786, -0.032817185, -0.045500804, -0.0031272392, 0.030319871, 0.012656037, -0.034473788, -0.049220845, -0.031026749, 0.015884127, -0.00019595011, -0.0052786306, 0.004407715, 0.005181846, 0.004172327, -0.05770855, -0.046703793, -0.0066856234, -7.603683e-05, 0.029577492, 0.05991252, -0.029561233, -0.030122958, 0.06747652, 0.024905473, -0.014669317, 0.06078515, 0.00997069, -0.007921884, -0.057974912, 0.055611067, -0.08146619, 0.019632183, 0.0093876915, -0.039110534, -0.055779133, -0.00063737977, 0.06643898, -0.020779384, 0.0013919763, 0.015140654, 0.0033389672, -0.0049521904, 0.040448833, -0.011019977, -0.058445394, -0.036589608, 0.014672405, -0.056558944, 0.025961347, -0.10275249, -0.012888238, 0.0652835, -0.010163289, -0.06673011, 0.010571461, 0.06713808, -0.016439056, 0.030949743, -0.031168044, 0.046937704, -0.011603904, 0.0064881644, 0.009597787, -0.04279539, 0.029388132, 0.041326974, -0.05765962, 0.0083535975, -0.04638561, -0.008225957, -0.014638028, 0.012495496, -0.074910514, 0.019900778, -0.012156561, -0.055805247, 0.017144196, -0.034649286, -0.020663124, 0.045091737, 0.03176843, -0.016913617, -0.00604948, 0.0029073923, 0.013533145, -0.0065143863, 0.0843286, 0.023799231, 0.04664072, 0.0060274866, -0.02642068, -0.009019056, 0.08068133, 0.002814837, 0.036904357, 0.049639367, 0.022204416, -0.0069149868, -0.06459975, 0.057706755, -0.032686573, -0.02112263, 0.029419996, -0.029434562, 0.0044613313, -0.08364306, -0.033183694, 0.028068647, 0.029761968, 0.0010422154, -0.043415137, 0.009036789, -0.058924012, 0.02567688, -0.010097938, 0.06716548, 0.07894604, 0.03895389, -0.015858356, -0.0055790655, 0.0038403624, 0.002408086, -0.015939014, 0.0004454208, -0.055618163, -0.027459916, -0.024662487, -0.02844252, -0.024566382, -0.016100798, -0.022048958, 0.011207779, -0.013769433, 0.0014464792, 0.052204717, -0.031868506, -0.017851576, 0.051660974, 0.041252624, 0.011871679, 0.012912023, 0.026162468, 0.0068609025, -0.0076830643, 0.04352217, 0.056229856, 0.12731293, -0.007588326, -0.010270789, -0.03046058, 0.013769668, -0.09333299, -0.011773536, -0.059408765, -0.010528026, 0.012409261, -0.07409004, -0.010366518, -0.014230817, 0.03137898, -0.012934568, -0.041911416, -0.046204258, -0.012142348, -0.08194855, -0.0058889766, -0.02761641, 0.027672406, -0.00019192562, 0.038091816, -0.019360915, -0.04793309, -0.07060343, 0.022201404, 0.010528833, -0.020524457, 0.011013204, -0.048344795, -0.07471013, 0.019884499, 0.005982295, -0.0137589155, -0.005857799, -0.018198686, -0.009616035, 0.0013857163, 0.015586466, -0.015640054, -0.047436386, 0.050413933, 0.073143005, 0.0093353195, 0.03547669, 0.018615562, 0.0060971617, -0.00012208184, 0.045100126, 0.011634579, -0.038529348, 0.02020358, 0.05714471, -0.03289338, 0.05345481, -0.029678686, 0.049245466, -0.03532548, -0.013665895, -0.020885123, -0.013029466, 0.024841176, 0.04251277, -0.04166732, 0.011428582, -0.012097584, -0.00030215483, -0.105359614, -0.004415195, -0.063002914, -0.02174172, 0.02610429, 0.05777736, -0.040038455, -0.04440713, 0.039459575, -0.004919736, -0.019400697, -0.016795088, -0.0069108238, -0.015292557, 0.013045355, 0.015955357, 0.020674191, -0.032653242, 0.0056105447, -0.018942514, -0.020482808, 0.0024995294, 0.05585388, 0.008723049, 0.028885448, 0.04078506, 0.06223098, 0.01888183, -0.035361372, -0.040551435, 0.01376011, 0.0007194314, 0.054404814, -0.023359677, -0.035187352, 0.036763016, 0.022346841, 0.02420757, 0.039264742, 0.018785844, 0.0027894923, 0.052732192, -0.002362818, -0.03312818, -0.025375145, 0.022833468, -0.014051505, -0.030988216, 0.01461176, -0.013932589, 0.01082157, 0.028822709, -0.012088807, -0.042794637, -0.016591249, 0.026110383, 0.01443144, 0.012140504, 0.0090726195, -0.0907861, 0.0014530894, 0.008435466, -0.01829618, -0.019206805, -0.06834395, -0.07678884, -0.001396502, 0.00025688388, -0.032159466, 0.04605194, -0.048323676, -0.010806464, 0.030568892, -0.013945243, -0.055433806, 0.063042894, -0.005846491, -0.0046447343, -0.044055425, 0.03532887, -0.009626026, 0.02483817, 0.022951767, -0.019636197, -0.06260815, -0.014231097, 0.022124821, 3.2611297e-05, 0.0066361125, -0.009746525, 0.045940746, 0.0038757268, 0.036633767, -0.026652263, 0.014031469, -0.058761604, 0.034397136, -0.012649171, 0.029742561, 0.03216704, 0.04370137, -0.010259883, -0.035775103, -0.010683869, 0.004324942, 0.026523678, -0.019199276, 0.045563452, 0.022085385, -0.07456532, 0.018254772, -0.007464156, 0.051198035, 0.030071931, -0.010742044, 0.030470932, -0.03605077, 0.027084032, 0.016885258, -0.021346567, 0.0037562803, 0.02039559, 0.0013976325, 0.002703665, 0.014699221, 0.016061572, 0.055437483, 0.01599878, -0.009427728, 0.007879035, 0.033725265, -0.036464103, -0.024785552, -0.074374124, -0.00834525, 0.02520327, -0.015258273, -0.061219703, 0.025408259, -0.009872589, 0.025636176, 0.045850575, -0.051289763, 0.026691828, -0.07727423, -0.029698897, 0.028112518, 0.066954136, 0.024091136, -0.023614882, -0.061962545, 0.0057806564, 0.0023869174, 0.030305719, 0.020761253, -0.042039365, 0.025748221, 0.020508932, 0.023679575, 0.05419123, 0.0021347497, 0.011416959, 0.025973303, 0.031117575, -0.016397959, 0.03552769, -0.005701024, 0.039592884, 0.04720325, -0.053981654, -0.022925584, -0.006356644, -0.0058114505, 0.024287159, 0.03801424, 0.09443185, 0.0144025795, 0.03341136, -0.032062486, -0.05406309, 0.052439317, -0.028259732, -0.0090789, -0.02607876, 0.048772227, -0.01252691, -0.024347804, -0.042583883, 0.0312922, 0.01233529, -0.032540847, -0.03272109, 0.004038554, -0.024190353, 0.01139272, 0.021780709, 0.05744081, 0.012069963, -0.052760795, 0.070384726, -0.059949752, 0.024289032, -0.046417415, 0.06903858, -0.02604412, 0.015228887, 0.054671355, -0.09106802, -0.0731481, -0.01688395, -0.005328203, 0.045597628, 0.039101075, -0.021399966, 0.019985273, 0.04344428, 0.016273098, 0.0075422702, 0.019856242, 0.05067307, -0.018241892, -0.015332932, -0.01591196, 0.034686964, 0.009781497, -0.0035353475, 0.06448843, 0.015178718, 0.055642467, -0.0243648, 0.029172918, -0.0019220724, 0.024086138, 0.08637654, -0.007178406, -0.032883484, 0.01257769, -0.044869743, -0.013602271, -0.024156358, -0.015142865, -0.019161081, -0.03757946, 0.020973437, 0.04743801, 0.0023749773, 0.013801501, 0.0048591713, -0.039458726, -0.026230175, -0.027839363, 0.038288612, -0.04455247, -0.052583817, 0.006957815, -0.033850376, -0.0055130976, -0.05239536, 0.030497486, 0.00030434402, -0.03042795, 0.012002603, 0.077222496, 0.022733206, 0.058888093, 0.050045405, 0.043221064, 0.005969125, 0.0060702907, -0.020893676, 0.046611916, -0.08656982, 0.0058578667, 0.0076916176, 0.009645368, -0.010666087, -0.0067152437, 0.005396934, 0.03309406, -0.007245143, -0.008930071, -0.034917492, 0.051495373, 0.04035868, -0.024785722, -0.026732493, 0.0121210655, 0.0077894987, 0.010170611, 0.015093373, -0.01911027, -0.043748938, 0.02118249, -0.019958947, -0.039760657, 0.035685185, 0.018289348, -0.010439766, -0.048149407, 0.009412541, -0.06512935, -0.042630587, 0.032887947, -0.038290933, -0.0075853174, 0.020763813, -0.04763639, 0.009722801, -0.034450933, 0.009273291, -0.0052463426, 0.047879256, -0.05039272, -0.042666335, -0.030444713, -0.0005095132, 0.060625143, -0.006886001, -0.00074899464, 0.010878386, -0.02108284, -0.028282303, -0.0014233523, -0.060727682, 0.05227169, -0.02129381, 0.04304617, 0.05590978, -0.06153528, 0.037777137, 0.009870554, 0.011797442, -0.007518053, 0.021116793, -0.02024776, 0.00047097186, -0.027968323, -0.031180644, -0.035878416, -0.04237108, -0.047435783, -0.0051306114, 0.022045119, 0.04747348, -0.03329913, -0.015290247, 0.02841985, 0.02803598, -0.023176812, -0.0041833757, -0.04303351, -0.005153642, -0.022370176, -0.03718151, 0.02951565, 0.027395602, 0.02350078, 0.0019867497, -0.032263678, 0.025369564, 0.023089038, -0.007434217, -0.04352823, 0.039991353, 0.020166514, -0.05341384, 0.020575553, -0.010283996, -0.020063916, -0.0016959029, 0.00013120302, -0.024382988, 0.016351102, 0.0324094, 0.012083869, -0.04722475, 0.011504785, 0.009880866, 0.027628753, 0.123552844, -0.046314817, 0.03264641, -0.09851093, 0.024511486, -0.05608964, -0.008361442, -0.050011914, -0.0011391983, 0.032178897, 0.039230254, 0.047116656, 0.009329134, -0.04341972, -0.007417188, -0.060391225, -0.012896965, 0.0656179, 0.0073090103, 0.028684137, 0.034020387, 0.003236596, 0.014887275, 0.06349264, -0.014932347, -0.010353729, -0.023771573, -0.02977379, 0.07111332, 0.006408631, 0.002710482, -0.094338365, 0.031013085, -0.048442714, 0.07329749, 0.020221068, 0.0077117854, 0.013354933, 0.047703642, 0.0044155275, 0.045511253, -0.036071643, -0.0001934584, -0.01842448, 0.0016368348, 0.026491728, -0.012808544, -0.034292895, 0.008908764, 0.035165288, -0.015659917, -0.054008897, -0.054067496, -0.0051273606, -0.007565002, -0.06498384, 0.03341765, 0.015453874, -0.0027735578, 0.031997308, -0.017260514, -3.6003534e-05, -0.026568618, 0.03671972, 0.030528102, -0.012195813, 0.00078976824, -3.7536756e-05, -0.009553569, -0.09463302, -0.0015541391, 0.04011007, -0.028697534 ] }, { "values": [ -0.035145443, 0.009511502, -0.012773209, -0.04210786, 0.029045701, 0.0415442, 0.031859774, 0.07048086, 0.0047301506, 0.009744247, 0.04332941, 0.005815978, 0.011778983, 0.061106216, -0.008850428, -0.03248383, 0.02076423, 0.01379385, -0.07336156, -0.006235101, 0.022238942, 0.03002683, -0.0120544555, -0.077403106, -0.05503763, -0.010266187, 0.024493963, -0.0715099, 0.017702753, -0.07283953, 0.0053606215, 0.04571582, -0.03672952, -0.05338579, 0.031667687, 0.06123288, -0.033525415, 0.0070689656, 0.010661555, -0.04568403, -0.054111354, -0.070362926, 0.00048239622, 0.060018342, -0.047138184, 0.027195765, 0.023572607, 0.04148335, -0.033072475, 0.03215774, 0.0500499, -0.043133855, -0.016824787, 0.03370776, -0.020105792, -0.06208803, -0.071966164, -0.0464675, 0.07323508, -0.0046583973, -0.0075678406, 0.031033807, -0.020041006, -0.04117495, 0.0022577099, -0.016845196, -0.0389813, 0.0036085183, -0.0497326, 0.028580433, -0.04429008, 0.012183517, -0.06886467, -0.019721214, 0.007086998, -0.038601328, 0.021955647, 0.013189968, -0.013237593, 0.008827533, -0.020707916, 0.003288049, 0.018819397, 0.0506178, 0.023786753, -0.00893283, 0.037686594, -0.010869637, -0.025878094, 0.03622925, 0.053750314, -0.013856156, -0.017040083, 0.0012565142, 0.047890384, -0.0064580375, -0.051567513, -0.06680334, -0.017941875, 0.04280861, -0.044446502, -0.0058412803, 0.0082574105, 0.027250487, 0.038910154, 0.055394538, -0.04746487, -0.020379005, -0.041340884, 0.020265646, 0.0007815684, -0.011155544, 0.016690942, 0.029647868, -0.005346969, -0.057009306, -0.028129397, 0.00492605, -0.02283352, -0.009233761, 0.036383312, -0.036463656, -0.060650967, 0.047568534, 0.04607089, -0.003900075, 0.0065244315, 0.014763844, -0.032712534, -0.02790548, 0.03660684, -0.10422316, 0.027656632, -0.0021573505, -0.051764265, -0.049610063, 0.044560887, 0.01172674, -0.02040481, 0.007841441, 0.015904602, 0.012693102, -0.0034900664, 0.009698273, -0.00029222993, -0.0012344705, -0.027804088, 0.015349022, -0.10602814, 0.034450542, -0.066820376, -0.012317524, 0.05170739, 0.012952943, -0.072938874, 0.03228687, 0.04782471, -0.014517937, 0.047963418, -0.048352435, 0.039069787, -0.018607622, -0.008442778, 0.07473554, -0.033550467, 0.025129667, 0.055881362, -0.03891328, -0.0016045738, -0.048737273, -0.027418815, -0.0033535347, 0.009543324, -0.06973735, 1.7996446e-05, -0.0035010318, -0.051802944, 0.02835643, -0.05354264, -0.0030857038, 0.016120324, 0.03944238, -0.02664436, 0.014983557, -0.0161574, 0.017749043, -0.010029948, 0.07465525, 0.042639825, 0.0643605, -0.005862433, 0.03848725, 0.0039499593, 0.07696041, -0.03649758, 0.051132113, 0.015828677, -0.018556401, 0.039669078, -0.045751225, 0.043642603, -0.018346544, -0.041906636, 0.016360922, -0.02338321, -0.012526493, -0.027222069, -0.03604144, 0.0284397, 0.030654654, -0.0010095623, -0.0153273875, 0.022753669, -0.037775286, 0.016291717, 0.019869229, 0.10441928, 0.036146034, 0.07854013, -0.00906236, -0.008569459, -0.0016971683, 0.03050011, -0.015363781, 0.0034984252, -0.056552775, 0.0014966778, -0.0023061524, -0.036313843, -0.02888721, -0.0026516954, -0.019550059, 0.014283472, 0.0029713619, -0.0062045055, 0.04741306, -0.011566961, -0.013037439, 0.024296496, 0.041906852, 0.020900398, 0.005409986, 0.025948888, 0.009547358, 0.0049384735, 0.029385144, 0.05855467, 0.09438934, -0.004232325, -0.04972571, 0.0062894677, 0.018344045, -0.06677768, -0.012444023, -0.018432012, -0.010561269, 0.010201181, -0.050986204, -0.005351596, -0.027311513, 0.043887284, 0.0094394395, -0.032217335, -0.035155717, -0.0067345533, -0.09354315, -0.01048872, -0.023934804, 0.0387189, -0.012168165, -0.017269112, -0.01119142, -0.059343446, -0.044626486, -0.025936926, 0.029634845, -0.017952219, -0.00082046003, -0.03687855, -0.057089686, 0.018240755, 0.0100417705, -0.021928197, -0.011887671, -0.034653172, -0.009240578, 0.008043782, 0.059935015, -0.018252635, -0.045304265, 0.06802901, 0.05150298, 0.008194323, 0.0005002558, 0.045256805, -0.017586773, -0.017605705, 0.040395465, 0.013935828, -0.02321242, 0.01540118, 0.036382906, -0.017264495, 0.018352209, 0.00026100696, 0.02525862, -0.049009975, -0.021661274, -0.015246222, -0.017627524, 0.016861688, -0.0052437, -0.025726052, 0.0057249293, -0.016620733, -0.00046210535, -0.12419391, 0.006483849, -0.061223235, -0.02428861, 0.03157224, 0.014227336, -0.03725879, -0.04096685, 0.043758463, 0.014745088, -0.0025032503, -0.00605403, -0.007983745, -0.039697934, 0.016867995, -1.2498656e-05, 0.006737385, -0.017797403, 0.015333686, 0.0059710606, -0.025576891, 0.040200476, 0.06377296, 0.014768933, 0.06692562, 0.008964336, 0.023452034, 0.0588423, -0.01770384, -0.058400314, 0.0070868363, -0.027225148, 0.038067523, -0.037011303, -0.032363575, 0.03390346, 0.015857808, 0.022422196, 0.031342845, -0.007835462, -0.011097172, 0.0547086, 0.009311908, -0.01454247, -0.030619603, 0.031491634, 0.015465486, -0.037650775, 0.008230901, -0.0058638887, 0.00093531905, 0.030701667, -0.030427871, -0.01761708, -0.025137158, 0.04339302, 0.01784865, -0.00589356, 0.03315432, -0.0692686, 0.018074352, 0.002437475, 0.024964992, -0.03660404, -0.06528893, -0.0581607, -0.009447594, -0.0019596973, -0.029726297, 0.017502757, -0.049593102, -0.021206526, 0.03928982, -0.00080198445, -0.03354608, 0.067176774, -0.018314043, 0.022814378, -0.053324193, 0.065480694, -0.008066933, 0.032382004, 0.043075353, -0.0002759893, -0.04550892, 0.0014098028, 0.05007697, 0.009131621, 0.011936921, 0.007841057, 0.037359335, 0.042803388, 0.04986669, -0.047020487, 0.027888076, -0.031894222, -0.003929223, -0.01698559, 0.0063442206, 0.014918162, 0.034415964, -0.039807905, -0.024840657, 0.01940398, -0.026696263, 0.013013632, -0.0255352, 0.05374927, -0.005125876, -0.08055102, 0.023732992, -0.028834043, 0.016459502, 0.020318545, -0.02845693, 0.043004695, -0.047873974, 0.006577295, 0.0115351, -0.03423852, -0.015187362, 0.009101191, -0.016436394, 0.0146397855, -0.008059449, -0.010077125, 0.06867774, 0.01718101, 0.019061523, -0.0029368578, 0.023197431, 0.026990024, -0.064891934, -0.07878308, -0.010593025, 0.04018085, -0.001454256, -0.040847357, 0.03173217, 0.0045622652, 0.008608181, 0.040786732, -0.033270992, 0.011790896, -0.08067834, -0.0099632135, 0.038694657, 0.057493, -0.0062682894, -0.020433191, -0.06401246, -0.0016655609, -0.004125931, 0.045725968, -0.00985537, -0.056809835, 0.028833626, 0.04048714, 0.034686923, 0.017844079, 0.0022322943, 0.011278678, 0.020373046, 0.043082446, -0.039343446, 0.028798455, -0.03378462, 0.030116098, 0.037884578, -0.06239726, 0.007792178, 0.039080452, -0.0062631355, 0.0013314155, 0.0315322, 0.0871991, 0.025285093, 0.045748625, -0.05220515, -0.08807658, 0.055328958, -0.0038439152, 0.017799072, 0.031222567, 0.05553571, -0.020864617, -0.03890071, -0.051251706, 0.013825657, 0.031392638, -0.015620368, -0.03276711, 0.029124424, -0.015327764, 0.04547983, 0.02846272, 0.057485335, 0.015763788, -0.014110468, 0.035425752, -0.058067884, 0.014410671, -0.00822941, 0.07175711, 0.008807504, -0.033475783, 0.025700998, -0.06609162, -0.032943662, 0.001481245, 0.007392777, 0.01583248, 0.047082532, -0.03560357, -0.014892841, 0.021738999, -0.02333502, 0.009117081, 0.014641032, 0.04726474, -0.009013004, -0.009470476, -0.047119882, 0.037632667, -0.0052644857, 0.02216879, 0.055055436, -0.015804088, 0.04159278, 0.022045124, 0.079276234, -0.0062639606, 0.011330552, 0.11490365, -0.03335968, 0.007904961, 0.017963223, 0.008158333, -0.007822405, -0.009741852, -0.027625777, -0.054656, -0.022816041, -0.0034703552, 0.04599293, -0.00076801423, 0.007856104, 0.008371236, -0.011709937, -0.0037084527, -0.027802357, 0.021527715, -0.015759213, -0.05582353, -0.018899415, -0.025646219, -0.013762563, -0.038024403, 0.021609798, 0.0047138305, -0.029743211, -0.007877967, 0.065667234, -0.009960943, 0.07587805, 0.020406205, 0.05909134, -0.048967723, -0.00013267927, -0.027159106, 0.05904646, -0.057289127, 0.017367914, 0.029154995, -0.00021921999, -0.008329203, 0.015907103, 0.0017729539, 0.047791395, -0.024562491, -0.0210662, -0.016244493, 0.054832153, 0.061649173, 0.004668169, 0.0054645846, -0.011881768, 0.060288396, 0.01030288, -0.005483341, -0.0488241, -0.036958575, 0.04857682, -0.03139681, -0.03648206, 0.018955966, -0.005894517, -0.0036472648, -0.016408725, 0.026818093, -0.06544304, -0.032741215, 0.05212075, -0.04865221, -0.023542177, 0.013126735, -0.048543006, 0.0116375135, -0.027763395, 0.012417315, 0.026234543, 0.013227924, -0.038581878, -0.05164069, -0.014542859, 0.025448283, 0.07234187, -0.010458377, 0.0005120929, 0.014344596, 0.0067727594, -0.037945762, 0.0024465278, -0.055814, 0.024724137, -0.04410436, 0.032966446, 0.06291288, -0.057882786, 0.03172098, 0.007602514, 0.020662833, 0.01734855, 0.026996994, 0.009815401, 0.046550713, -0.009700577, -0.027037553, -0.043801498, -0.006091456, -0.04947293, 0.020595998, 0.032845538, -0.002200832, -0.027596219, -0.02409333, 0.041311424, 0.04881777, -0.012381011, 0.0057470356, -0.010540397, -0.005510878, -0.016137851, -0.03417159, 0.022648573, 0.0053260266, -0.0027926243, 0.0055561764, 0.004906577, 0.0323894, 0.016777191, -0.009903227, -0.043982595, 0.020331305, 0.015600357, -0.020910187, 0.0016066624, 0.0072049135, -0.021726038, 0.048628274, 0.0006741669, -0.030267881, 0.0062298, 0.045756366, 0.010938131, -0.08109386, 0.016921204, 0.01431855, 0.034602292, 0.12665862, -0.023934672, 0.0057954434, -0.06213265, 0.039650388, -0.057253364, -0.053549405, -0.04745349, -0.0300265, 0.028531041, 0.021516772, 0.06722314, 0.009993103, -0.05747434, 0.0035934655, -0.030175874, 0.0016212547, 0.06907712, -0.015682604, 0.029603645, 0.013380215, 0.033782493, -0.0014723787, 0.024295427, -0.017034931, -0.008963221, -0.06422793, -0.03777156, 0.09509106, 0.011226903, -0.009841034, -0.08511338, 0.038005553, -0.043593775, 0.05177847, 0.046574946, -0.017279603, -0.009286224, 0.05561546, 0.032616515, 0.029529212, -0.009841034, -0.009324607, -0.045418654, -0.041263953, 0.00985423, -0.003476657, -0.05833095, -0.005394617, 0.032724984, -0.010144516, -0.03710546, -0.024762573, -0.011184077, -0.041482497, -0.07123504, 0.03920806, 0.027250884, 0.010603249, 0.01905473, -0.01591786, 0.034127474, -0.03188625, 0.028023137, -0.003927603, -0.011567469, 0.010591159, -2.347257e-06, 0.011241068, -0.12813821, 0.0013655967, 0.058445934, -0.06579124 ] }, { "values": [ -0.014602983, -0.043263122, -0.03804822, -0.036870588, 0.018073628, 0.034863584, 0.045346744, 0.044484977, 0.0012278523, 0.032254994, 0.026899884, 0.020744376, 0.011256611, 0.038664658, -0.009642604, -0.02455439, 0.031832673, 0.0043805665, -0.05021396, -0.049158406, 0.010068839, 0.03329626, -0.04818688, -0.05223152, -0.028800588, 0.018031767, 0.01259252, -0.06954592, 0.019600183, -0.05208009, 0.011628707, 0.01225853, -0.034324605, -0.013645696, 0.030100556, 0.04450966, -0.046147346, -0.010106597, 0.009828373, -0.02670678, -0.018388253, -0.029201152, 0.010997956, 0.031740062, -0.061930243, 0.046616744, 0.025728961, 0.04515161, -0.05310962, 0.034980316, 0.023627859, 0.0092486, -0.003956686, 0.005105856, -0.024975022, -0.05729168, -0.08936385, -0.022662425, 0.044561885, 0.0071610645, -0.0053409627, 0.024026781, -0.014160203, -0.03391414, 0.00886997, -0.02935255, -0.016008403, -0.042891856, -0.03957637, 0.03981771, -0.0653586, 0.017133268, -0.05325755, 0.013997487, -0.026557442, -0.026301146, 0.0026994445, 0.02780857, -0.022842353, 0.017379474, -0.0045862477, -0.0001302608, 0.08489566, 0.08451749, 0.053473055, 0.006590801, 0.041997436, -0.015154588, -0.044433482, 0.024648828, 0.09212074, -0.040442895, -0.039971218, -0.00235501, 0.03270177, -0.013104769, -0.043584514, -0.09730844, -0.018001324, 0.061250005, -0.033312064, -0.04260432, -0.027764251, 0.0031510037, 0.021380695, 0.05832653, -0.0184739, -0.04109921, -0.004814542, 0.028670574, -0.012806864, -0.036662184, -0.025679113, 0.0415292, 0.004045302, -0.06159313, -0.029710231, 0.020579292, -0.007571952, 0.0071891686, 0.023583619, -0.030398814, -0.038065482, 0.07814792, 0.01553475, -0.013489704, 0.047749918, 0.02201314, -0.026468325, -0.028616922, 0.06203329, -0.07579525, 0.018567948, 0.020421194, -0.05163925, -0.018064717, 0.035203256, 0.051757257, -0.06045629, 0.007827269, -0.0062141498, -0.0049649775, 0.0018184056, 0.047158476, 0.0055095083, -0.034009773, -0.014737018, 0.01212666, -0.052530825, 0.043479383, -0.10827337, -0.021875164, 0.05342594, -0.018374579, -0.062671505, 0.052229464, 0.058981042, -0.011434283, 0.027732112, -0.06606195, 0.061037533, 0.0023728658, -0.0053582774, 0.026107494, -0.04348995, 0.039207373, 0.05639938, -0.025518285, -0.0124114035, -0.093906, -0.016093688, -0.015304971, -0.024750121, -0.047718894, 0.0034550435, 0.0007496038, -0.04999905, -0.0033553897, -0.056303095, 0.0131022455, 0.02164017, 0.050677724, -0.006386106, 0.0012472245, 0.009400739, -0.0045644525, -0.014727233, 0.06678355, 0.027730864, 0.05269493, -0.009873467, -0.013093743, 0.00048267853, 0.09242149, 0.0053046155, 0.062441945, 0.047945987, 0.014468093, 0.0047060484, -0.050841533, 0.036304906, -0.0029340882, -0.038059026, 0.020122757, -0.038366273, -0.01169575, -0.054076828, -0.039185744, 0.03370394, 0.0042640795, -0.0043069925, -0.027430117, 0.0022936475, -0.040646173, 0.009058607, -0.00722809, 0.074628614, 0.055591572, 0.03545345, -0.02915377, -0.020252984, -0.010354858, 0.012862987, -0.012898136, 0.015465581, -0.046950743, -0.01385653, -0.019227022, -0.039573982, -0.06255922, -0.037076604, 0.00047866913, -0.0033475896, 0.014730348, -0.00010210065, 0.049823947, 0.011135413, -0.0045895907, 0.012608829, 0.035396744, 0.007888951, 0.015348118, 0.028148176, -0.015196598, -0.014892217, 0.040472053, 0.054666795, 0.065130055, 0.0010900298, -0.014118815, -0.0030872382, 0.004227332, -0.090312645, -0.020173848, -0.04832365, -0.013062926, 0.016369503, -0.063150324, -0.007685314, -0.004611054, 0.036043435, 0.004255739, -0.023747392, -0.018251827, -0.019528005, -0.07303091, -0.015200005, -0.009949538, 0.026383288, -0.016373035, 0.017797235, -0.0023212775, -0.10087164, -0.05285996, 0.038913134, 0.02238191, -0.008196501, 0.018577058, -0.0764717, -0.07693532, 0.05277128, 0.01655694, -0.045460362, -0.017448336, -0.035336334, -0.009668278, -0.018262314, 0.06309705, -0.004698406, -0.04199788, 0.051352818, 0.050335642, -0.0064120875, 0.019120641, 0.03373714, -0.016891515, -0.016590098, 0.017239382, 0.025890762, -0.027924273, 0.0070523378, 0.05436927, -0.019438973, 0.035663094, -0.034149364, 0.044836625, -0.033207655, -0.0012925955, -0.0052063614, -0.017309038, -0.00044464454, 0.014918369, -0.061620053, -0.014714081, -0.0011284531, 0.007793036, -0.13179293, -0.0045896005, -0.042369843, -0.041099265, -0.019497031, 0.041592903, -0.04267609, -0.02779101, 0.0030700543, 0.010447736, -0.0058621834, -0.016057681, -0.010025219, -0.005833753, -0.0024530573, -0.0070885993, -0.00043913754, -0.020344347, -0.015671246, 0.023517251, -0.020851389, 0.01928002, 0.024156412, -0.016738165, 0.038817484, 0.017328843, 0.033084165, 0.040283598, -0.0044057528, -0.05512906, 0.032218847, -0.03088862, 0.019705616, -0.048527256, -0.023532126, 0.024288315, -0.0013584044, 0.0019822423, 0.028952675, 0.05052064, -0.0076110014, 0.06260936, -0.0075627808, 0.012943449, -0.0143747, 0.00093294634, -0.00592289, -0.023561941, 0.054714072, 0.011499519, 0.01948411, 0.05151259, -0.016271992, -0.034921903, 0.013868659, 0.03910216, 0.04361848, 0.007878165, 0.032274783, -0.065463014, -0.006773801, 0.017821712, -0.0007892681, -0.033117097, -0.06403766, -0.06544641, 0.0025291012, -0.021894231, -0.018333483, 0.027520197, -0.04384464, -0.015979657, 0.012891312, 0.024327539, -0.030846976, 0.06908066, -0.0085139, -0.0037749046, -0.033706263, 0.059463058, -0.013377995, 0.0045575555, 0.0019307819, 0.008702368, -0.053671833, -0.036826998, 0.041894205, -0.013982779, -0.0068554147, -0.021361627, 0.05073278, 0.024701156, 0.035734314, -0.049562532, 0.022179304, -0.04117526, 0.009161754, 0.0023608233, -0.0029371516, 0.030852148, 0.04999179, -0.05240176, -0.03560406, 0.00893502, -0.0002021992, 0.016246468, -0.036504183, 0.036477033, 0.021806212, -0.069178954, 0.0009095721, -0.013530169, 0.04260374, 0.009067323, 0.0024046437, 0.0020549376, -0.030766083, 0.04284689, -0.008642638, -0.022263125, -0.017278655, 0.026322732, -0.0132597815, 0.016466355, -0.009951881, 0.039964862, 0.012690876, 0.015176847, 0.0072468854, 0.019860877, 0.03427113, -0.03356588, -0.044614036, -0.07041825, 0.012382815, 0.030917522, 0.0015172553, -0.051657896, -0.0070133386, 0.002085923, 0.009840747, 0.054879285, -0.030639898, 0.009267642, -0.088362575, -0.012128267, 0.016121062, 0.050789174, 0.01408484, -0.016553918, -0.0644061, 0.016311554, -0.0113438945, 0.029736543, 0.020165216, -0.04090757, 0.035021327, 0.002102055, 0.014680356, 0.040460598, -0.02797053, -0.010767702, 0.028833793, 0.017752217, -0.018017344, 0.01903163, -0.006643131, 0.045566086, 0.054449264, -0.071029566, -0.019660404, 0.027758218, 0.013222593, 0.02887171, 0.044123914, 0.08920454, 0.017939866, 0.01793411, -0.031009639, -0.054267116, 0.046925798, -0.039202634, -0.0040983446, -0.00226245, 0.07498469, -0.030060222, -0.04545168, -0.05025886, 0.013683933, 0.038987346, -0.049545083, -0.011066051, 0.00554433, -0.026477322, 0.024860404, 0.015079613, 0.045388717, -0.030444061, -0.066133454, 0.06320864, -0.051303852, 0.013134794, -0.026948815, 0.06822591, 0.015807478, 0.017839368, 0.053334154, -0.08024611, -0.059511892, -0.01450515, -0.031544827, 0.038042203, 0.04390667, -0.031844985, -0.038266912, 0.0025908474, 0.02753745, 0.010726948, 0.02718804, 0.04397184, -0.010149537, -0.014079855, -0.044125244, 0.04139181, -0.024470817, 0.009003469, 0.059545368, -0.002585601, 0.071696065, -0.003027924, 0.016896473, -0.020057091, 0.005116442, 0.088046856, -0.003064296, 0.011721478, 0.0045916196, -0.01440058, -0.0131044835, -0.034874223, -0.035662744, -0.04651709, -0.017281068, 0.0099651255, 0.05244964, 0.011195615, -0.00061711774, 0.01620221, -0.010252734, -0.0077881385, -0.042575937, 0.051354505, -0.038400758, -0.049852896, -0.01959681, -0.02845714, -0.029279966, -0.03804407, 0.029082809, -0.006397401, -0.031947292, 0.0047283415, 0.047227006, 0.01457312, 0.054695927, 0.036180336, 0.05515971, 0.0025430294, -0.014014376, -0.025694784, 0.03694578, -0.08773079, 0.010511422, 0.016020982, -0.008134333, -0.03314582, -0.016519388, -0.0056174807, 0.03217687, -0.028791333, -0.025621843, -0.03448317, 0.064981855, 0.046155557, -0.037653573, 0.009981881, -0.0009466801, 0.023293057, -0.012087111, 0.020921774, -0.010472561, -0.008984398, 0.015718801, -0.015791418, -0.029492667, 0.03705025, 0.024770707, 0.007263705, -0.03193423, 0.0112779, -0.045800712, -0.04324766, 0.023563612, -0.03603833, -0.035425987, 0.044736244, -0.047273178, -0.031444486, -0.06566464, 0.019897597, -0.015467133, 0.021208642, -0.053385507, -0.058573157, -0.008748783, 0.016052794, 0.06384805, -0.0014401828, -0.0033976256, 0.013200891, 0.011723066, -0.023992226, -0.015892321, -0.04702437, 0.031014562, -0.03268835, 0.043777686, 0.0683451, -0.045826428, 0.02956387, 0.019455785, 0.012327127, 0.023281693, 0.037215944, -0.0054926383, 0.034183126, -0.026523951, -0.05107017, -0.055922847, -0.03894051, -0.0445115, 0.018968152, 0.025028532, 0.022413338, -0.041996956, -0.039911203, 0.011406045, 0.011305165, -0.035737634, 0.03268373, -0.0042402945, 0.006717481, -0.023391604, -0.00783133, 0.0433422, -0.002185156, 0.017194493, 0.030732565, -0.01608337, 0.025380509, 0.024612235, 0.041254945, -0.043724045, 0.04055611, 0.003308846, -0.04747059, 0.021297283, -0.03817781, -0.031589456, 0.0229985, 0.024216566, -0.030504502, 0.031589318, 0.0038659822, -0.030395832, -0.06034847, -0.009147619, 0.024773914, 0.05205876, 0.100692876, -0.013965519, 0.02641994, -0.08036086, 0.058480278, -0.05797513, -0.0041969176, -0.0708136, -0.02225808, 0.015943604, 0.034755986, 0.040695094, -0.010013954, -0.07395931, 0.007555058, -0.073276676, 0.0073724845, 0.10456026, 0.005877811, 0.045562416, 0.025028063, 0.00279945, -0.00361125, 0.024681276, -0.014381749, -0.026870456, -0.0328936, -0.027622342, 0.07196575, 0.019502947, 0.008934665, -0.070210494, 0.022524305, -0.02313843, 0.073338024, 0.03964009, -0.0038100511, -0.005595755, 0.055909242, 0.009970382, 0.029008774, -0.043819442, -0.030087437, -0.046839193, -0.027661143, 0.012789056, -0.0076711527, -0.051057186, 0.012022185, 0.02038392, -0.022617787, -0.05035728, -0.043276023, -0.017019618, -0.01322274, -0.060353637, 0.03238504, 0.03296165, 0.0101420935, 0.009415523, -2.8166234e-05, 0.033658642, -0.04233673, 0.048025567, 0.00032441487, 0.0053548715, -0.002101495, 0.025496015, 0.0008120705, -0.10212362, 0.03362011, 0.055191178, -0.032041483 ] }, { "values": [ -0.016950807, -0.039717797, -0.022346199, -0.030294998, 0.026932921, 0.0389865, 0.019530978, 0.027150381, 0.010672976, 0.04304972, 0.027223222, 0.009476369, 0.028548727, 0.022036988, -0.00893018, -0.022152912, 0.04537238, 0.010072068, -0.06434803, -0.05328071, 0.008667316, 0.025856122, -0.020197418, -0.028252592, -0.027896604, 0.01955387, 0.041656796, -0.068601884, -0.003611675, -0.050990093, 0.019952344, 0.038649928, -0.036676794, -0.042283587, 0.040770188, 0.07010153, -0.06169626, -0.010853133, 0.008873147, -0.0543723, -0.03347782, -0.019977173, 0.020057885, 0.031944085, -0.0643471, 0.02369569, 0.0062942887, 0.067912936, -0.03859197, 0.014398607, 0.003093843, -0.016286291, -0.008078702, 0.005301086, -0.01535409, -0.07242421, -0.09745175, -0.018987544, 0.062342178, 0.0063278712, -0.012691004, 0.02411507, -0.021004355, -0.02967297, -0.016068567, -0.032346237, -0.023038877, -0.02432851, -0.041647196, 0.04741929, -0.05044299, 0.014641742, -0.04939977, 0.029817656, -0.011436596, -0.026211046, 0.008819845, 0.002978058, -0.0244395, 0.0020635428, 0.004441613, 0.017195458, 0.063377626, 0.053114083, 0.06086981, 0.006259564, 0.062397294, -0.052663114, -0.04722909, 0.034604847, 0.07825627, -0.025269454, -0.038341835, 0.0038315924, 0.026517084, -0.013069954, -0.03876154, -0.09424586, 0.025706543, 0.050952867, -0.05248211, -0.040533215, 0.00875967, -0.0041389554, 0.017601725, 0.026407382, -0.02421096, -0.034849755, -0.03097387, 0.025316792, -0.04239111, -0.02010859, -0.014016446, 0.037728295, -0.0008112676, -0.0737404, -0.054456312, 0.020840615, 0.019559884, 0.003456268, 0.024730712, -0.047487505, -0.032269925, 0.07077219, 0.032491, -0.029281499, 0.008928901, 0.023464352, -0.03117922, -0.015810065, 0.10072201, -0.0619122, 0.015352468, -0.020618038, -0.037834913, -0.031281143, 0.06543699, 0.05234978, -0.06043411, -0.0014781544, -0.0059704925, -0.00070087094, -0.025737077, 0.064102046, 0.006212598, -0.026068628, -0.023967834, 0.006037065, -0.02805822, 0.062378757, -0.08759977, -0.025782352, 0.03799478, -0.030221306, -0.06112242, 0.07487096, 0.041172646, -0.027689392, 0.010422981, -0.060573384, 0.058269467, -0.013614549, -0.03887686, 0.005801095, -0.055414304, 0.021135263, 0.018298741, -0.05846392, -0.041728638, -0.059043325, -0.016162964, 0.013576716, -0.0064942823, -0.05077712, 0.0021909156, -0.014206209, -0.032042257, 0.0071194675, -0.045717224, -0.00566537, 0.024540007, 0.06991271, 0.010897858, 0.00056461565, 0.013957658, 0.0049474644, -0.00830169, 0.05753119, 0.024105301, 0.027768523, -0.018386008, -0.02461536, -0.012704417, 0.09494384, 0.002121108, 0.07067398, 0.028233806, 0.0002859157, 0.0016986042, -0.01881207, 0.03847742, -0.0053680316, -0.047165815, 0.028332258, -0.034420595, 0.023246802, -0.056878913, -0.019499935, 0.029374996, -0.012292892, 0.01795972, -0.037150845, 0.031263694, -0.07291724, 0.011373476, 0.009734677, 0.09841987, 0.052594636, 0.026728313, -0.034845464, -0.030543035, -0.037643928, -0.0024832794, -0.030072516, 0.007036887, -0.035165954, -0.014508254, -0.03806161, -0.032596026, -0.045200028, -0.023354646, 0.0023518824, -0.021840358, 0.025537789, -0.021300428, 0.035419807, 0.015162606, 0.01638701, 0.0045576026, 0.022536822, 0.020481303, 0.031011244, 0.028828813, -0.031859558, -0.022968864, 0.061459444, 0.04994439, 0.08450844, 0.0017247788, -0.0256256, -0.019096686, -0.015430663, -0.08131069, -0.005163196, -0.056320805, -0.014017178, 0.025218165, -0.051666435, -0.008646752, -0.0049258596, 0.04146973, 0.019719167, -0.04677602, -0.016800795, -0.020677222, -0.0655577, 0.0036992324, -0.025013186, 0.026824199, -0.012246694, 0.024826054, -0.012204198, -0.09408986, -0.040163014, 0.03068342, 0.020222556, -0.022842234, 0.012182026, -0.05575275, -0.056794226, 0.024710909, 0.011080621, -0.04292495, -0.037798103, -0.0031022795, -0.021849142, -0.03270397, 0.046613958, -0.021952609, -0.027675861, 0.049766988, 0.051748108, -0.011306368, -0.010897356, 0.034144383, 0.003824298, -0.019477043, -0.021304913, 0.0022097868, 0.0004943317, 0.011891994, 0.06371781, -0.02389478, 0.0043108496, -0.030014347, 0.017650845, -0.038209043, 0.011411864, 0.008692575, -0.0020508054, 0.007779025, 0.00883513, -0.05191857, -0.019860653, 0.0013832955, 0.002547522, -0.12408991, -0.013383267, -0.025455238, -0.01557941, 0.0108494535, 0.032937218, -0.030670095, -0.056824658, 0.050801132, 0.0069867936, -0.019579925, -0.012899744, -0.014995452, -0.0049422495, -0.017268904, 0.01224328, 0.021498458, 0.0055088447, -0.0078020627, -0.014706099, -0.017848358, 0.019832596, 0.042903744, -0.02074236, 0.027502116, 0.020521969, 0.03655519, 0.05366721, -0.0027929116, -0.06426002, 0.03566192, -0.03038754, 0.018707646, -0.05456351, -0.048734896, 0.024318628, 0.0049039763, -0.0068702404, 0.04243573, 0.035555046, 0.020909412, 0.02942396, 0.0010033331, -0.0018374732, -0.0022638382, -0.0011777971, -0.004998761, -0.015248449, 0.05673191, -0.013494628, 0.014802616, 0.03905188, -0.0004890084, -0.06530591, 0.025480203, 0.02532362, 0.014743595, 0.029516926, 0.027256098, -0.05205437, 0.0004522905, 0.01877144, 0.018602895, -0.02804541, -0.05866477, -0.069257565, 0.007963774, 0.0050364276, -0.058089525, 0.03058791, -0.04319577, -0.012802222, 0.0359595, 0.014483741, -0.008531062, 0.061089378, -0.011659851, -0.04039078, -0.038922925, 0.042496808, -0.026756926, 0.006216322, 0.016676668, 0.0005675712, -0.043637138, -0.056725875, 0.06558885, -0.021004055, 0.017586628, 0.0035746347, 0.058260947, 0.0037185496, 0.04402287, -0.045201566, 0.04908764, 0.010337053, 0.0053146756, 0.008248895, -0.014816009, 0.024072906, 0.057044268, -0.027838716, 0.0072035687, 0.01563849, -0.008234332, 0.04080361, -0.019600088, 0.0064845243, 0.0027939659, -0.04800649, -0.006103492, -0.02431512, 0.039048664, -0.0072167334, -0.008798137, 0.0118943015, -0.045678187, 0.041841637, -0.015016683, -0.012441051, -0.0024100433, 0.011728488, -0.034277365, 0.02566005, 0.0023912014, 0.015547895, 0.0063797333, 0.002090983, 0.021868013, 0.032115165, 0.026894212, -0.032393817, -0.047435977, -0.05335407, -0.007980306, 0.018782413, -0.009760688, -0.046236534, -0.010548404, 0.002821866, 0.035229076, 0.039961204, -0.04724625, 0.040863838, -0.08518841, -0.03631238, 0.037701473, 0.04932848, 0.03880236, -0.037176654, -0.07257225, 0.009896339, -0.018029138, 0.048883732, 0.009895995, -0.042968813, 0.060186394, -0.016899617, 0.022678932, 0.04468446, -0.035372708, -0.0017448233, 0.024891263, 0.014919877, -0.032224905, 0.0190997, 0.029022593, 0.056881703, 0.0665851, -0.07382116, -0.0005776292, 0.03224722, 0.026368085, -0.005611176, 0.051735263, 0.084305614, -0.0014760536, 0.027029838, -0.04320825, -0.059007473, 0.037289806, -0.04170354, 0.006459344, 0.022351107, 0.05987302, -0.03899605, -0.043167956, -0.08109561, 0.044308573, 0.017132355, -0.037317734, -0.019205725, -0.0127246585, -0.027022786, 0.0046772608, 0.02550532, 0.040575176, -0.00088905665, -0.0745266, 0.031967506, -0.083611675, 0.0053475457, -0.0019197294, 0.047058314, 0.013258465, 0.007207578, 0.0335042, -0.07521626, -0.04737367, -0.009338814, -7.564651e-06, 0.07004385, 0.030421995, -0.0185506, -0.01580376, 0.009556729, 0.024564255, 0.020715766, 0.010804717, 0.03941099, -0.0015088352, 0.008616487, -0.04885951, 0.01993744, -0.031226547, 0.021920076, 0.058174197, -0.020280862, 0.0613337, -0.0005213186, 0.013284887, -0.008569094, -0.008132499, 0.06771054, 0.0035367485, 0.016404424, 0.015775155, -0.011462097, -0.0017229796, -0.037733987, -0.041888364, -0.06656639, -0.034760434, 0.028365523, 0.04504911, 0.005802648, 0.009444933, 0.0063222037, -0.010384612, 0.00145231, -0.020671275, 0.06221148, -0.013923566, -0.052973773, 0.00031650704, -0.02565712, -0.035529636, -0.032529708, 0.033014003, -0.015896596, -0.046082824, -0.019111186, 0.03418814, -0.0013530051, 0.06318391, 0.0172406, 0.076867305, -0.024796188, -0.01491113, 0.00050854444, 0.0065415655, -0.08720348, -0.0074987127, 0.022153022, -0.005883331, 0.005298622, -0.01239609, -0.011783054, 0.055939075, -0.018819815, -0.026792185, -0.024378767, 0.04567872, 0.030294614, -0.0179046, 0.021307074, -0.017770512, 0.012636407, -0.010101858, -0.0024906574, -0.022407532, 0.0010219879, 0.02524325, -0.050480023, -0.02168073, 0.038631026, 0.044557832, -0.011458493, -0.027326072, -0.005139565, -0.054289352, -0.042941734, 0.03784466, -0.04231023, -0.027590707, 0.03563133, -0.05957353, -0.0016366825, -0.060211446, 0.018860409, -0.024287809, 0.03109563, -0.063173994, -0.039470714, -0.017337585, 0.01598615, 0.0498953, -0.023917144, 0.0044677122, 0.018013556, 0.0071748267, -0.021774657, 0.014098821, -0.041135, 0.044514228, -0.036971446, 0.034364734, 0.03897648, -0.04388321, 0.053430915, 0.026453286, 0.02778945, 0.022831153, 0.042065583, 0.007918609, 0.03946417, -0.02033353, -0.03757164, -0.07010586, -0.051266182, -0.02588244, 0.013749287, 0.032246962, 0.0034650234, -0.023696113, -0.022696516, 0.017430691, -0.0058649005, -0.015026906, 0.034573276, -0.010469778, -0.0028631394, -0.009893086, -0.0019075775, 0.029272346, 0.0037201638, -0.008939132, 0.04877386, -0.036822982, 0.0023206542, 0.039795037, -0.0020734032, -0.037970535, 0.021212569, 0.008575297, -0.03416563, 0.036282312, -0.03903666, -0.031793587, 0.030765329, 0.031694934, -0.047694556, 0.023571672, -0.012012193, -0.024314174, -0.07826557, 0.020236466, 0.02132565, 0.04374448, 0.09482283, -0.033048656, 0.016238488, -0.070425175, 0.04734009, -0.074525625, -0.026719583, -0.056559186, -0.019873647, -0.009669879, 0.033965494, 0.0361987, -0.009517026, -0.059240777, 0.021473186, -0.067538165, 0.012380952, 0.09605982, -0.019274775, 0.05775229, 0.0072803022, 0.00030492633, 0.029486455, 0.027393784, -0.0058026407, -0.028176222, -0.039604504, -0.012539191, 0.07211462, 0.010619459, -0.019146537, -0.059929408, 0.0070593967, -0.03308826, 0.05600259, 0.033908464, -0.01079582, -0.007864611, 0.049146418, 0.008951021, 0.010990034, -0.038021628, -0.00263259, -0.048601247, -0.018826036, 0.004266696, -0.015015701, -0.0139770275, -0.001633675, 0.025268784, -0.008577766, -0.040549666, -0.010546498, -0.008665821, -0.023018831, -0.08460557, 0.054819982, 0.04076749, 0.021118516, 0.010942234, 0.012250717, 0.03312047, -0.07399622, 0.02917462, 0.0066755004, -0.007928171, 0.018700162, -0.0050405334, 0.0037659656, -0.11760649, 0.014922675, 0.059010208, -0.02524883 ] }, { "values": [ -0.03573469, -0.057973627, -0.038156524, -0.030977935, 0.0366259, 0.03466797, 0.036703132, 0.019446582, 0.005319864, 0.014801214, 0.026602117, 0.02711375, 0.019090746, 0.010571822, -0.04250999, -0.022855347, 0.046035714, 0.016434083, -0.05343868, -0.06658927, 0.02223785, 0.028721841, -0.008640262, -0.042217124, -0.046018377, 0.03289825, 0.04188004, -0.060141098, -0.006727753, -0.0639255, 0.028385924, 0.043858692, -0.040752728, -0.035153415, 0.06570013, 0.05511942, -0.045154233, -0.002615348, 0.0183026, -0.029786402, -0.030181836, -0.014245805, 0.023834754, 0.023953397, -0.06761436, 0.035625152, 0.009055612, 0.038081285, -0.05548019, 0.057976533, 0.012184605, 0.0019253694, 0.00989191, 0.016790282, 0.022773042, -0.041960854, -0.08461022, -0.039035305, 0.05594828, -0.00837507, -0.009886223, 0.00048400223, -0.016048895, -0.0364047, 0.00017682373, -0.033705734, -0.029503234, -0.042335033, -0.0511356, 0.051790275, -0.024078397, 0.017537242, -0.07021505, 0.001441488, -0.013409308, -0.00745433, 0.0016291105, 0.023327664, -0.020598223, -0.004732015, -0.013320203, -0.00094536773, 0.090484895, 0.050490253, 0.052761402, -0.00026271713, 0.026996506, -0.062342703, -0.036111943, 0.023898955, 0.10250135, -0.032808654, -0.031263184, 0.0122159645, 0.005774451, -0.0010034189, -0.04283422, -0.097446844, 0.0047467295, 0.071703285, -0.017694497, -0.044135224, -0.0059724185, 0.007939339, 0.03919381, 0.009500168, -0.012861435, -0.050236743, -0.027296206, 0.035282142, -0.052051403, -0.019534342, -0.007990494, 0.026201224, 0.02713229, -0.059183087, -0.039147675, 0.01068476, 0.01286568, 0.023696613, 0.06602974, -0.059607066, -0.029261867, 0.080441564, 0.034676686, -0.014066094, 0.04455001, 0.01405173, -0.03045963, -0.045869004, 0.08980417, -0.051068928, 0.0104058795, -0.0021634498, -0.04588396, -0.060278572, 0.012964424, 0.042395808, -0.046320513, 0.007843638, -0.00655463, -0.010938897, -0.006389788, 0.043671023, -0.007557221, -0.029034795, -0.0064737606, 4.055211e-05, -0.058696996, 0.0666873, -0.1091749, -0.012729765, 0.053787686, -0.01962923, -0.049826123, 0.06599227, 0.046594914, -0.026295453, 0.045038447, -0.04210656, 0.06835542, 0.002832645, -0.025486285, 0.012946367, -0.03742782, -0.00933027, 0.032367602, -0.04560119, -0.01767949, -0.04084811, -0.008700871, 0.011685353, 0.0015971842, -0.052777506, 0.016606616, 0.0064134197, -0.03906497, 0.015710786, -0.057708006, 0.00059603207, 0.024057217, 0.053627636, -0.0055146543, 0.014575753, 0.0032238828, 7.765987e-07, -0.04180867, 0.06859731, 0.011312754, 0.02064737, -0.026638003, -0.019296775, -0.006954379, 0.08771786, -0.022940135, 0.0605234, 0.018975869, 0.00872255, 0.023988778, -0.0229747, 0.05241138, -0.04556096, -0.021750094, -0.004687112, -0.055431448, 0.0036130978, -0.04930886, -0.03131152, 0.008197249, -0.0035922222, 0.014543171, -0.03592337, 0.012529778, -0.057779096, 0.006773984, 0.011447524, 0.09160965, 0.06438032, -0.0066362163, -0.046668604, -0.023768798, -0.03326761, 0.00013473856, -0.038655363, -0.0017617119, -0.035994224, -0.031241162, -0.059667643, -0.041894007, -0.011386048, -0.045445547, 0.0015764572, 0.0053236093, 0.016416287, -0.020305581, 0.02367418, -0.008081976, -0.0012838279, 0.025916494, 0.01574931, 0.011877573, 0.039760858, 0.02293871, -0.017961392, -0.026205653, 0.06403913, 0.047939558, 0.113545045, -0.008346811, -0.013272164, -0.036600985, -0.006248595, -0.050513066, 0.005878531, -0.06564966, -0.011454607, 0.028491069, -0.047300074, -0.017121047, -0.009749645, 0.0169731, 0.028851809, -0.049377296, -0.026477316, -0.022417968, -0.10000868, -0.0072681424, -0.0126144895, 0.040973905, 0.0058724848, 0.019529294, 0.00401673, -0.07715887, -0.054625522, 0.02923408, 0.022554314, -0.015141857, 0.03905537, -0.056087323, -0.050012976, 0.02144398, -0.0034020548, -0.054556023, -0.033049468, 0.00020762064, -0.03416798, 0.003545462, 0.019782897, -0.027008979, -0.054603126, 0.040955275, 0.042889066, 0.018660067, -0.0029673844, 0.011054755, -0.0029783759, -0.01442777, -0.0040708296, 0.051923312, -0.007219019, 0.0035138289, 0.058237724, -0.014165697, 0.028691534, -0.044888515, 0.013749553, -0.048952755, -0.022237174, 0.011898158, 0.0012579537, 0.015268389, 0.015314181, -0.027452983, -0.020045506, 0.0066734883, 0.00052652776, -0.1070345, -0.0072442982, -0.020670071, -0.023160867, 0.014526718, 0.036061637, -0.028690487, -0.042327154, 0.05764233, 0.02138141, -0.022363985, -0.03986144, 0.00092814665, 0.015814558, 0.0020801104, -0.00419663, 0.01463282, -0.016467815, -0.010553623, -0.01107045, 0.0062912237, 0.012668255, 0.051406946, 0.0018403393, 0.03460683, 0.032302614, 0.01808348, 0.018701361, -0.013758507, -0.06910492, 0.029120503, -0.036509514, 0.05344221, -0.04631077, -0.051735222, 0.024912313, 0.0027739084, 0.013637913, 0.042314034, 0.043764524, 0.013570992, 0.052520704, 0.016839126, -0.018824182, -0.0124579305, 0.021003399, -0.0046542576, -0.009699953, 0.008311073, -0.013722515, 0.005180498, 0.03409961, 0.006113222, -0.06285879, 0.017590422, 0.025852973, 0.020516409, 0.015490568, 0.00838265, -0.061257165, 0.0006094531, 0.0085846195, 0.022789083, -0.036807634, -0.05741461, -0.057978142, 0.009165856, -0.0037960696, -0.038861193, 0.020058705, -0.05164575, -0.036904093, 0.0319479, 0.022066556, -0.012286718, 0.08229838, 0.0023690383, -0.0033246102, -0.03162962, 0.019307295, -0.0329093, 0.0077233133, 0.027143572, -0.0069679194, -0.04440957, -0.03752161, 0.05947623, -0.03172281, 0.014148313, -0.01947817, 0.059090003, 0.025378926, 0.035593323, -0.030986803, 0.03859235, -0.027477238, 0.007704814, -0.0053426004, -0.016985333, -0.00012710565, 0.04233766, -0.05507537, -0.011258061, 0.0084390445, -0.009267979, 0.018579192, -0.011289183, 0.01946079, -0.006210711, -0.085391104, 0.011787045, -0.020579461, 0.031017246, -0.0011257731, -0.0037106122, 0.020745484, -0.054025162, 0.024410235, -0.0032814697, -0.0068024434, -0.0005273972, 0.0015580459, -0.016664071, 0.016221194, -0.0017138295, 0.018403925, 0.037957557, 0.011481314, 0.018294262, 0.047065977, 0.03615174, -0.03447815, -0.03844291, -0.06560459, 0.006602271, 0.029931044, -0.020432914, -0.067911044, -0.011063715, -0.0070642447, 0.020115739, 0.04360278, -0.040297374, 0.025091127, -0.06407482, -0.017912935, 0.054551255, 0.03748773, 0.012888502, -0.031088915, -0.058430817, 0.01107628, -0.019425765, 0.03324318, -0.017153725, -0.028809754, 0.03586655, 0.004461492, 0.037230734, 0.031789105, -0.009306253, -0.028802702, 0.026405979, 0.013957427, -0.014201033, 0.048338678, 0.010948181, 0.04698337, 0.053523105, -0.088302806, 0.019937342, 0.0069663706, 0.017282397, -0.010782897, 0.029707896, 0.08586591, 0.027830271, 0.025741054, -0.04584693, -0.05909985, 0.048063066, -0.048769627, -0.012896937, -0.010834897, 0.062036224, -0.019274237, -0.03299679, -0.040909737, 0.021292496, 0.037593517, -0.041650232, -0.014051497, 0.026059171, -0.030456943, 0.0076596052, -0.0033426383, 0.058528043, -0.025547247, -0.07146778, 0.045659844, -0.056736223, 0.016494682, -0.032146197, 0.03794628, -0.017399436, -0.011110357, 0.045014028, -0.1142494, -0.061301216, -0.026262194, 0.006485657, 0.053704944, 0.03802666, -0.025245003, -0.013771198, 0.033647727, 0.04293929, 0.0040093353, 0.012383096, 0.03244658, 0.013607752, 0.0037863182, -0.04548742, 0.029955378, -0.024649654, -0.014046335, 0.08045795, -0.023902405, 0.052505787, -0.0023022424, 0.021200346, -0.015401666, -0.010178341, 0.07487067, -0.017786901, 0.00059867353, -0.0005549625, -0.026735017, -0.018057402, -0.027501661, -0.024646025, -0.059603505, -0.01725546, 0.025618374, 0.032718148, -0.0013082746, 0.02074102, 0.028854575, -0.033594962, 0.004260899, -0.0222428, 0.076627344, -0.029502528, -0.047720507, -0.022091612, -0.033343483, -0.04326625, -0.05034015, 0.02868555, -0.0049899635, -0.04526928, -0.009320304, 0.04262246, 0.017107017, 0.06802063, 0.028684296, 0.07038119, -0.034149934, -0.03106677, 0.006313376, 0.022449953, -0.08604341, 0.011301747, -0.0033078264, 0.00185415, 0.0030578587, -0.005291584, -0.013714421, 0.041385215, -0.0042132083, -0.03589864, -0.040453907, 0.04840172, 0.03584936, -0.013685, -0.0014445204, -0.014140036, -0.00014857594, -0.005844609, 0.013281775, -0.030323593, -0.0030431051, 0.033509426, -0.022518214, -0.034959953, 0.046319805, 0.02637198, -0.022821689, -0.05113038, 0.001413322, -0.048419923, -0.046809874, 0.025912357, -0.053744595, 0.0054142396, 0.03898819, -0.037561387, 0.003003206, -0.051630378, -0.0129125165, -0.001430665, 0.030916978, -0.059477072, -0.044112574, -0.029339153, 0.00457379, 0.06730027, -0.0171032, 0.011179947, 0.021086423, 0.00025399856, -0.032573767, 0.04243827, -0.033123195, 0.047448058, -0.008668552, 0.014556484, 0.056816302, -0.047153022, 0.036938835, 0.02171088, 0.015433294, 0.0050097397, 0.012357975, -0.007944754, 0.041186087, -0.008364063, -0.042716734, -0.07410371, -0.036427032, -0.03213314, 0.01645322, 0.0315362, -0.008675229, -0.017712986, -0.017776856, 0.023998791, 0.028993042, -0.008721427, 0.0111670075, -0.014357451, 0.0133948, -0.0194993, -0.022168182, 0.015430748, 0.026510853, 0.015253616, 0.050157502, -0.019106166, 0.015029477, 0.032761727, -0.031577017, -0.029225755, 0.023283305, 0.006319856, -0.032213666, 0.017065592, -0.012582429, -0.030580895, 0.006497184, 0.016892895, -0.055503823, 0.0015595371, -0.019738566, 0.0114765735, -0.06628062, -0.017149184, 0.016409952, 0.03660841, 0.11430361, -0.02386233, 0.034670733, -0.07955278, 0.035494532, -0.055561364, -0.010888397, -0.07172136, 0.009260002, -0.009381811, 0.05845692, 0.031681933, -0.0010468602, -0.072611, 0.020065483, -0.065414466, -0.007807003, 0.09469796, 0.0005963028, 0.03751819, 0.007114602, 0.008622519, 0.012290768, 0.040228497, 0.015724959, -0.017802041, -0.03282992, -0.010787962, 0.06773105, 0.01920857, -0.0015656278, -0.074394844, -0.0010542411, -0.055195067, 0.045581993, 0.018034663, -0.0034309588, 5.1100982e-05, 0.048561808, 0.009207926, 0.033151027, -0.039154753, -0.0103277555, -0.057400472, -0.016092874, 0.0051365346, -0.014374705, -0.018866707, 0.037627377, 0.01738662, -0.016436368, -0.055067647, -0.037170123, -0.03015696, -0.008690795, -0.07165704, 0.044271007, 0.02267265, 0.014431069, 0.024969308, -0.0055997353, -0.00081735215, -0.031528387, 0.010963393, 0.012202022, -0.024914986, 0.012230885, 0.0013924787, 0.010327896, -0.08751976, 0.053822294, 0.039676566, -0.036555823 ] }, { "values": [ -0.05770467, -0.016368689, -0.053043753, -0.031287245, 0.06532762, 0.03394737, 0.045257628, 0.063123085, 0.0014055433, 0.016140928, 0.027102774, 0.0469662, 0.028713867, 0.006573602, -0.02024574, -0.057639338, 0.03491194, 0.015879022, -0.045138527, -0.042417113, 0.06757366, 0.021434944, -0.015713643, -0.050775412, -0.050175704, -0.010895915, 0.039872527, -0.06334191, 0.012784487, -0.0665678, 0.01613609, 0.07238427, -0.031738617, -0.044263788, 0.048008185, 0.040268783, -0.052401308, -0.012598114, 0.018075502, -0.044613738, -0.08605653, -0.032600395, -0.00025494496, 0.06892053, -0.08154983, 0.03150738, 0.020273516, 0.02005139, -0.049688958, 0.048024327, 0.036680825, -0.026021887, 0.0025673262, 0.028753057, -0.0002343541, -0.054749917, -0.08401471, -0.06480794, 0.059620406, 0.0023028238, 0.010046475, 0.016686406, -0.016573964, -0.04563215, -0.03397416, -0.060603194, -0.03574536, -0.005456716, -0.03096008, 0.025112746, -0.022739518, 0.035934903, -0.09387534, -0.010101764, 0.0022706005, -0.039222997, 0.024032358, 0.0002443495, -0.031341195, 0.01394023, 0.015740814, 0.020198582, 0.042662274, 0.0628186, 0.009127533, 0.009466558, 0.06418416, -0.024944821, -0.019870529, 0.0316545, 0.071748465, 0.009268859, -0.033894986, 0.019345319, 0.00423647, 0.004346391, -0.062631235, -0.04910009, -0.015672052, 0.07425732, -0.06386344, -0.02896856, -0.0034908878, 0.029968966, 0.020429552, 0.013814513, -0.035354156, -0.030633898, -0.032819252, 6.180062e-05, -0.063453175, -0.014799953, 0.00579611, 0.012908121, 0.010891676, -0.031270627, -0.0131226545, -0.009753038, -0.034660134, -0.011580567, 0.047852736, 9.3566836e-05, -0.053648908, 0.02818408, 0.04759789, 0.011737425, 0.02426379, 0.015524576, -0.06789341, -0.03570247, 0.07081146, -0.092736326, 0.01980689, -0.004576916, -0.042178635, -0.0464011, 0.045071267, -0.01722492, -0.029319067, -0.007249147, 0.026071163, 0.008997607, -0.041386284, -0.011749423, -0.0076961988, 0.00046228681, -0.01627558, -0.018665262, -0.06783227, 0.054493584, -0.0761958, 0.0065841246, 0.030547136, -0.0058334083, -0.07784818, 0.035861183, 0.047908578, -0.017377136, 0.063780636, -0.046339083, 0.08455265, 0.013374286, -0.03238329, 0.046960495, -0.04701103, 4.0381346e-05, 0.05056682, -0.045170214, -0.010482112, -0.015756827, -0.015739776, -0.0070899683, -0.017222062, -0.07276586, -0.009647184, -0.011204467, -0.024236947, 0.024545629, -0.059494637, 0.012791425, 0.0047140014, 0.0557453, -0.042154673, 0.0024202552, -0.042041898, 0.05073929, -0.02362002, 0.07277951, 0.00844834, 0.018778453, -0.026299948, -0.028380632, 0.02187765, 0.102967374, -0.031676784, 0.07304836, 0.01346679, -0.022196189, 0.028644139, -0.040271685, 0.045576066, -0.017555963, -0.033205196, 0.031257104, -0.014216508, -0.027868612, -0.02206264, -0.02241632, -0.0067060147, -0.0055708187, -0.015208318, -0.014763689, 0.014130719, -0.048949465, -0.005000185, 0.027117318, 0.07763962, 0.028621137, 0.010545821, -0.0049327863, -0.05300799, -0.0069071827, 0.032641623, -0.03759237, -0.00958208, -0.019202724, 0.004073284, -0.011970417, -0.03984732, -0.024357183, -0.03496346, -0.019778823, 0.008648711, -0.023891937, -0.028127505, 0.02315042, -0.020220637, 0.021186132, 0.019562459, 0.013795988, 0.015585186, 0.008100377, 0.021927707, 0.020581026, -0.030259605, 0.025963176, 0.031783707, 0.09478635, 0.04704131, -0.037756927, -0.018527545, -0.030229118, -0.031640854, -0.025318867, -0.04488081, -0.0101751145, 0.01868888, -0.04253069, -0.006496586, -0.017188996, 0.024541302, 0.038545955, -0.02945942, -0.035322275, -0.024916394, -0.10852097, 0.01502994, -0.0319836, 0.04370412, -0.03607893, -0.007526433, -0.008820933, -0.059105285, -0.050459497, -0.012425251, 0.042752646, -0.040191785, 0.006777682, -0.033323422, -0.059861302, 0.027676335, 0.00964449, -0.021854421, -0.028472463, -0.0273721, -0.023552408, 0.005594762, 0.04141835, -0.02029757, -0.06296266, 0.027906617, 0.048154693, 0.023233017, -0.038944915, 0.05386684, 0.010082472, 0.0074300915, 0.024608359, -0.017092275, 0.005097714, 0.023957307, 0.05133, -0.012728981, 0.036387954, 0.005009816, 0.018456385, -0.03355935, 0.0075470093, 0.013285049, 0.016311847, 0.012623816, -0.012257107, -0.021536756, 0.012719982, -0.017297225, -0.01644443, -0.104795046, -0.0071553057, -0.035921603, -0.0029030796, 0.034010794, 0.013549802, -0.021063732, -0.046997882, 0.061964314, 0.04554069, -0.018430794, 0.0031550452, 0.013577311, -0.0050643384, -0.012263683, 0.032910414, 0.029718151, -0.003599284, 0.017462738, -0.017705845, 0.013025414, 0.012353674, 0.086952165, 0.027402112, 0.050286558, 0.03203423, 0.023458896, 0.0645721, -0.016629113, -0.0519606, 0.01226463, 0.010559344, 0.029911704, -0.027794784, -0.067095324, 0.06584372, 0.0024936788, 0.0020311421, 0.035129335, -0.0074290144, 0.015929345, 0.025885707, 0.025438787, -0.008271706, -0.030379884, 0.024689713, -0.01291009, -0.018127557, 0.008769474, -0.008593101, -0.020513823, 0.019079292, -0.0053127008, -0.020305287, 0.04192626, 0.020046327, 0.014722543, 0.027282177, 0.01885421, -0.027017424, 0.020866722, 0.010096778, -0.0032414806, -0.039538983, -0.021282207, -0.049322307, 0.00075388874, -0.0066329907, -0.03484824, 0.026727388, -0.05838599, -0.024831763, 0.03595325, 0.030732183, -0.03530825, 0.07264267, -0.015585113, 0.017376645, -0.056178913, 0.049582124, -0.021424677, 0.009365664, 0.021519989, -0.0065606358, -0.06999364, 0.003564257, 0.061583005, -0.016813396, 0.024647787, -0.008435946, 0.058584005, 0.055045795, 0.007410519, -0.024826236, 0.039445043, -0.0013627679, 0.0008891313, -0.013384771, -0.04483806, 0.001121964, 0.037139893, -0.06486639, -0.0034984562, -0.0011922447, -0.037802473, 0.028995987, -0.0020391112, 0.03135582, -0.0053854403, -0.07683743, 0.029869566, -0.021988707, 0.012367737, 0.008730015, 0.0032740594, 0.057576235, -0.058649518, -0.0051433253, 0.010554109, -0.032687698, -0.008594258, -0.016702242, -0.052798655, 0.0034867441, -0.014414374, 0.00918034, 0.05549435, 0.039771743, 0.005132795, 0.027059853, 0.024670634, 0.050641198, -0.026572572, -0.076856926, -0.026398381, 0.023934774, -0.018263096, -0.062421527, -0.0004509002, -0.026692176, 0.016355583, 0.050230056, -0.03328921, 0.031743646, -0.079114944, 0.01647048, 0.0834882, 0.044938065, -0.02240394, -0.012930549, -0.02765058, 0.0059379824, 0.018602302, 0.05915605, -0.0072112298, -0.010647339, 0.020300502, 0.0025108135, 0.022428984, 0.025232496, 0.009585353, 0.008468009, 0.030564725, 0.030632205, -0.022923399, 0.018101294, -0.009431617, 0.05527599, 0.013877542, -0.05048005, 0.012850756, 0.022106193, 0.028262474, 0.014417884, 0.057379417, 0.082915254, 0.004069855, 0.048084438, -0.07310972, -0.055980064, 0.0316522, -0.0116963675, -0.03537315, 0.025174972, 0.061448235, -0.042963833, -0.043675575, -0.06899113, 0.0081073465, 0.023716755, -0.05571057, -0.027788552, 0.047959212, -0.037747044, 0.015502447, 0.010359479, 0.031513993, -0.0013678813, -0.0037790327, 0.056201797, -0.052673187, -0.0032233484, -0.0046585943, 0.04277304, 0.027879944, -0.05069554, 0.04946216, -0.07139007, -0.06546187, -0.014006689, -0.0008292623, 0.028936936, 0.035322767, -0.027139822, -0.013318595, 0.028376449, -0.0070250286, 0.012489055, 0.010520973, 0.035690907, 0.010949761, 0.0044253888, -0.040940017, 0.012675162, -0.0032142277, 0.0004361381, 0.059769128, -0.015466002, 0.029172838, 0.0088316, 0.031313237, 0.0064567006, 0.0065927347, 0.06508552, -0.05216765, -0.007689631, 0.010027731, -0.032523327, -0.006240199, -0.021326957, -0.01915486, -0.042628873, -0.014591278, -0.008074072, 0.04796308, -0.00049384264, 0.01420363, -0.0019854642, 0.01750637, -0.01706425, -0.033087354, 0.044535395, -0.025494961, -0.043741465, -0.00126292, -0.0034614487, -0.00090767955, -0.04333659, 0.020967608, -0.016336035, -0.074667625, -0.017412275, 0.061064992, 0.0026556363, 0.06786308, 0.030143844, 0.10392444, -0.044864908, -0.014204523, 0.041063, 0.05215658, -0.05553454, 0.04423996, 0.018046092, 0.0078069353, 0.020992445, -0.012343732, -0.027157329, 0.06486869, 0.00772708, -0.013544169, -0.02035358, 0.04769051, 0.04719543, -0.021053242, 0.023352664, -0.001072101, 0.015665255, 0.012728493, -0.014989741, -0.049080618, -0.0241187, 0.049552474, -0.028435607, -0.056570213, 0.021890169, -0.002693465, -0.0134680895, -0.045700897, 0.0060027745, -0.04246232, -0.047020685, 0.03346955, -0.047146328, 0.009795022, -0.005806976, -0.024475921, 0.022465007, -0.06917436, -0.017117701, 0.009398219, 0.031461496, -0.037695773, -0.014706455, -0.009727348, 0.042600583, 0.045063373, -0.04507904, 0.001491653, 0.027583078, 0.0034442886, -0.009910378, 0.04723817, -0.026609153, 0.0032690393, -0.039511073, 0.029130388, 0.05718972, -0.03184158, 0.043701917, 0.019294795, 0.017596649, -0.018918226, 0.0024396798, 0.004621088, 0.01297134, -0.012789987, -0.021150844, -0.08174472, -0.028175099, -0.013836367, 0.021665119, 0.036920726, -0.021960903, 0.009637825, -0.0685891, 0.031243403, 0.022378052, -0.013901727, 0.010256749, -0.01814625, 0.018591458, -0.024646383, -0.038623516, 0.005445812, 0.014606343, 0.039140113, 0.003374851, -0.00537802, 0.051497687, 0.02033237, -0.040638957, -0.04190557, 0.034493327, 0.0006772423, -0.02940082, -0.011769485, -0.00018738044, -0.020707143, 0.020232826, 0.02801747, -0.056256924, -0.0022318864, 0.0113880765, -0.005925777, -0.08552905, 0.0033102597, 0.028340973, 0.03200813, 0.06591587, -0.04302354, 0.025807183, -0.034647316, 0.026390998, -0.038679026, -0.02625076, -0.047988497, -0.027466947, 0.015166338, 0.031022953, 0.049743034, 0.027675053, -0.05444675, 0.017889624, -0.03939766, 0.0064282287, 0.054622687, 0.008346844, 0.020152168, 0.0002396126, 0.032996275, 0.017643759, 0.042439297, -0.013763571, -0.001996964, -0.055740144, -0.04156102, 0.06500036, 0.019602185, -0.016804608, -0.072985165, 0.02385441, -0.05275553, 0.041185785, 0.033845153, -0.031052748, -0.007964962, 0.030782534, 0.024962489, 0.0021922572, -0.029717347, -0.004802021, -0.06156931, -0.035373345, -0.039472185, -0.0099247815, -0.051127065, -0.0023094744, 0.03654765, -0.01399675, -0.030294338, -0.008059095, -0.023997003, -0.008094744, -0.07480494, 0.0247083, 0.009863075, 0.008664868, 0.02413926, -0.008467754, 0.03247186, -0.06584129, 0.031240359, 0.0026161685, 0.0020569118, 0.0032440992, 0.00830925, 0.017275948, -0.1332448, -0.00736529, 0.054948095, -0.07190513 ] }, { "values": [ -0.026972065, -0.04167819, -0.037947312, -0.051614642, 0.022224491, 0.05713597, 0.032246735, 0.043342374, 0.005024085, 0.026627492, 0.021496877, 0.042090118, 0.0129570635, 0.020383246, -0.035364922, -0.02472041, 0.024521502, 0.01066632, -0.047276624, -0.071486644, 0.02941154, 0.02348116, -0.0068990244, -0.027722195, -0.031072663, 0.025171204, 0.039178815, -0.032976963, 0.009416332, -0.06936022, 0.002018743, 0.052375965, -0.035777833, -0.0575241, 0.05928853, 0.07295843, -0.044554047, -0.012041084, -0.00037853527, -0.01738961, -0.042378217, -0.009957467, 0.011142043, 0.03626346, -0.047309864, 0.0437964, 0.025317833, 0.044949114, -0.050378364, 0.05426337, -0.005672174, -0.00015828163, -0.036715917, -0.006315781, 0.020246876, -0.055492874, -0.067565724, -0.029244764, 0.053699266, 0.005172373, 0.0050844806, 0.0065103215, 0.030400718, -0.019417576, -0.015207458, -0.041120127, -0.039407, -0.037479326, -0.04080994, 0.06739187, -0.015775647, 0.013602324, -0.07189991, 0.011561263, 0.0111539615, 0.00021060802, 0.032033216, 0.025465058, -0.029457206, 0.021947421, -0.009556423, -0.009562993, 0.09765995, 0.027112162, 0.035545375, -0.016754445, 0.04357148, -0.03600594, -0.018643765, 0.03692873, 0.08084634, -0.019223265, -0.024396015, 0.012508555, 0.038273808, 0.011705061, -0.050371207, -0.11763568, -0.005192681, 0.07305139, -0.055945627, -0.03921503, -0.031018121, 0.007479134, 0.045808647, 0.037371647, -0.020740246, -0.024670692, -0.013458613, 0.023326589, -0.031240746, -0.024725815, 0.004366548, 0.013942622, 0.0325536, -0.05095579, -0.027107839, 0.0014602629, 0.00020606289, 0.0048488826, 0.052703045, -0.02965562, -0.011504099, 0.09667089, 0.012606663, -0.0084880255, 0.048256624, 0.037758652, -0.03787542, -0.05718449, 0.060452618, -0.058235068, 0.014273884, -0.016216105, -0.060487922, -0.046331152, 0.03563993, 0.051009927, -0.019057373, -0.0013082264, -0.01877906, 0.0144755235, -0.005359186, 0.035869226, -0.0054232776, -0.03321963, 0.0065063513, -0.015947022, -0.040236942, 0.04714776, -0.121020176, -0.015898466, 0.06397164, -0.025651548, -0.05417444, 0.04776469, 0.081101865, -0.025476899, 0.051764883, -0.06411316, 0.05393519, 0.0009808829, -0.018266361, 0.011252635, -0.07100005, 0.013210983, 0.02125077, -0.058682073, -0.00034227793, -0.04084238, -0.0007082898, -0.005827104, 0.0086833155, -0.05200376, -0.016114011, -0.0036005937, -0.04901245, 0.0073080137, -0.07963794, 0.0101301735, 0.025523355, 0.061864257, 0.0042330343, 0.021968001, 0.008285058, 0.021771295, -0.016801951, 0.053643398, -0.009576256, 0.03430924, -0.0049956674, -0.0073492904, 0.004585541, 0.086359985, -0.019460578, 0.041359764, 0.039345317, 0.0065320316, 0.007504074, -0.045248948, 0.03863052, -0.045967743, -0.029264078, 0.016969623, -0.03907452, -0.033853035, -0.045047525, -0.02479925, 0.0046052546, 0.02163519, -0.005761944, -0.033683226, 0.020915285, -0.061571773, 0.0029910747, 0.013651995, 0.094954416, 0.09991724, 0.028159305, -0.030449824, -0.022641944, -0.01755101, 0.008722146, -0.031559296, -0.0069929324, -0.04413097, -0.03729818, -0.020600649, -0.05340865, -0.019132182, -0.05189169, 0.0249024, -0.0031854836, -0.0072871856, -0.013786659, 0.009150055, -0.044103455, 0.01579286, 0.04617098, -0.0033617006, -0.0106127225, 0.04293014, 0.01133003, -0.00211612, -0.0012098519, 0.02011151, 0.038860496, 0.09577862, 0.022150569, -0.02927714, -0.027039582, 0.009656483, -0.047847338, 0.007108845, -0.046013266, -0.016398245, 0.02852201, -0.059228092, -0.006636869, -0.0041866773, 0.0072176526, 0.017485444, -0.030231707, -0.034386005, -0.037483025, -0.07310568, 0.00980751, -0.0011153852, 0.016995639, -0.013635144, 0.032112796, 0.028787633, -0.07077814, -0.07373578, 0.027944418, 0.018347362, -0.020921646, 0.030961595, -0.039008588, -0.05912896, 0.025992172, 0.0007633641, -0.049711175, -0.020749126, -0.010600034, -0.03130138, 0.0059155533, 0.01715151, -0.021646671, -0.07991496, 0.054507963, 0.050187986, -0.00024965077, 0.0014413492, 0.011418885, -0.00716371, 0.005856975, 0.00927193, 0.05379511, -0.0114241205, 0.012144434, 0.058998648, -0.03920046, 0.023853643, -0.057134338, 0.051596977, -0.039539754, -0.0051861117, -0.013176878, -0.005156399, 0.015367781, 0.02825271, -0.021498218, -0.009645511, 0.0051611303, -0.0073913387, -0.11574506, -0.02106635, -0.0414864, -0.028684264, 0.014437761, 0.044814378, -0.03767248, -0.034426033, 0.065695085, 0.011876295, -0.023507621, -0.019304622, 0.0143757565, 0.02101526, -0.0045430665, -0.0023788617, -0.017125782, -0.019383531, -0.007391179, -0.026058298, -0.009332738, 0.015050668, 0.05492547, -0.0380887, 0.046006467, 0.04572409, 0.03970754, 0.021980803, -0.026929066, -0.06504028, 0.036256522, -0.021526694, 0.052766915, -0.057275575, -0.039518893, 0.038749382, 0.0075489725, 0.022278426, 0.036405344, 0.02308356, 0.004577891, 0.03274007, 0.02059273, -0.003208859, -0.016641008, -0.003492595, -0.017165529, -0.020320563, 0.036909375, -0.009080213, 0.023359638, 0.03572903, 0.0045216135, -0.025804536, 0.01778848, 0.02888535, 0.016451515, 0.0026563648, 0.01830228, -0.06786136, 0.012116447, -0.013634836, 0.013909017, -0.040796306, -0.04431404, -0.04721871, -0.013664244, -0.007139422, -0.043199874, 0.041537035, -0.04370602, -0.022676976, 0.025618663, 0.0011726861, -0.00447259, 0.073407724, -0.014064797, 0.005930476, -0.040973525, 0.04512577, -0.009663392, 0.0070927334, 0.022054888, -0.0059871613, -0.040642086, -0.004123329, 0.044199888, -0.029141223, -0.0045854496, -0.031781033, 0.06161466, 0.006501468, 0.0402082, -0.027002046, 0.04128947, -0.031634226, 0.00011315284, -0.01532211, -0.025158586, -0.0066547287, 0.04915946, -0.033582557, -0.027029818, 0.0143285, -0.029424502, 0.030223783, -0.011718582, 0.01397261, -0.0013672186, -0.06387721, 0.010287617, -0.041039247, 0.03866983, 0.024672322, 0.036283784, 0.02063384, -0.038590517, 0.03619248, 0.027279455, -0.015449111, 0.00308383, 0.0056181294, -0.031185959, 0.02420698, -0.013474039, 0.023801738, 0.03854493, 0.0054357406, -0.016228452, 0.02573885, 0.03584161, -0.014915876, -0.03683177, -0.056845795, -0.020432504, 0.05157099, -0.023456829, -0.079161234, -0.0025161912, -0.002161138, 0.0053867716, 0.06329144, -0.033580367, 0.043944478, -0.0892859, -0.017181715, 0.042805213, 0.026474025, 0.008113374, -0.029436883, -0.057634432, 0.019326348, -0.01147571, 0.02945901, -0.0015946192, -0.01616346, 0.044105154, -0.0058697546, 0.024180697, 0.039988518, -0.007774475, -0.014268653, 0.010746059, 0.011135658, -0.0038138137, 0.0329008, -0.0026384005, 0.053927638, 0.05382908, -0.056289047, -0.0030166002, 0.018380843, 0.029125737, 0.0048197554, 0.011734464, 0.06463856, -0.0047465614, 0.030711584, -0.050680764, -0.048080374, 0.0493336, -0.042401046, -0.020745283, -0.012098699, 0.04278856, -0.0227804, -0.04502947, -0.051715907, 0.034487914, 0.032451313, -0.05061217, -0.017071119, 0.03291156, -0.035118755, -0.010685884, 0.009805094, 0.045284975, -0.010727041, -0.074349895, 0.06818204, -0.06902276, 0.017576126, -0.03192031, 0.049726304, -0.012517289, -0.020013088, 0.052948352, -0.099935636, -0.067226574, -0.014610962, 0.007041202, 0.034265704, 0.027751468, -0.014887005, -0.003160735, 0.03123404, 0.013759547, -0.0076393993, 0.023279043, 0.04587403, 0.0128582595, -0.013336502, -0.04917664, 0.035297886, -0.00961722, -0.013757812, 0.06830823, 0.0068833795, 0.068839766, -0.013392867, 0.022778247, -0.033626307, -0.0010466054, 0.045654014, -0.009323994, -0.021367008, -0.018581036, -0.034795012, 0.00968343, -0.01611536, -0.026770398, -0.05027172, -0.0102912625, 0.045851056, 0.049828086, -0.017738951, 0.008661983, 0.018439004, -0.023429783, -0.011864547, -0.05385402, 0.07448633, -0.019352477, -0.04404798, -0.02043089, -0.02053139, -0.015467859, -0.07557872, 0.015155269, -0.013993444, -0.02773695, -0.010196297, 0.04656626, 0.005787776, 0.070820205, 0.03935539, 0.057236165, -0.00230987, 0.020232355, -0.009935711, 0.027164321, -0.067253344, 0.016904496, 0.0018547695, 0.00974412, -0.00021164025, 0.0051728524, -0.016292436, 0.042487882, -0.0020410747, -0.023473486, -0.022412702, 0.049571734, 0.011162029, -0.01555777, 0.008619579, -0.017556839, 0.017992208, -0.008071592, 0.0018386884, -0.0076558893, -0.023322644, 0.013236327, -0.044844527, -0.060583323, 0.036979623, 0.020220378, 0.009334412, -0.04758959, 0.0012563529, -0.049382407, -0.050991938, 0.041373488, -0.021514732, 0.0015051947, 0.04294663, -0.05432695, 0.018589215, -0.066560484, -0.021676581, 0.010141481, 0.023020409, -0.07670729, -0.040924057, -0.027974088, -0.009835078, 0.05803497, -0.006744562, -0.014019581, 0.019206753, -0.0031529218, -0.020729037, 0.02876966, -0.03270359, 0.029843567, -0.0010861903, 0.024478672, 0.027265338, -0.074897, 0.037676975, 0.031454008, 0.028133266, 0.015097359, 0.02519674, -0.0038495432, 0.022609392, -0.02319755, -0.047547877, -0.06487539, -0.029729864, -0.017579664, 0.017603824, 0.0413152, -0.0032276947, -0.00088409765, -0.021012396, 0.024947554, 0.031683363, -0.02673056, 0.009005214, -0.012721334, -0.0037208875, -0.026387488, -0.028709486, 0.023517165, 0.01812131, 0.03293121, 0.023406269, -0.022093546, 0.037632402, 0.03965007, -0.018735386, -0.02760447, 0.014719593, 0.00843718, -0.02368322, 0.018112222, -0.030377535, -0.036502436, 0.0028021946, 0.04938414, -0.042539794, 0.026405485, -0.023758873, 0.017716689, -0.048402533, -0.015013242, 0.009995422, 0.044372123, 0.121469855, -0.052092962, 0.02405097, -0.077164896, 0.03389434, -0.05174438, -0.005269849, -0.03702356, 2.149121e-05, 0.014864211, 0.011416848, 0.029479008, -0.0005118206, -0.073191434, 0.026297301, -0.06551585, 0.017066028, 0.08184474, 0.010645619, 0.04794659, 0.019584041, -7.539251e-05, 0.011411916, 0.05175949, 0.011768509, -0.007893501, -0.01914424, -0.036892988, 0.07769682, 0.021707628, 0.009092538, -0.08656028, 0.0027027158, -0.05071089, 0.049568407, 0.022570938, -0.008212206, -0.004083705, 0.056912407, -0.004842206, 0.020980129, -0.027036747, -0.016044771, -0.062129278, -0.036121752, -0.0059486777, -0.012875932, -0.04284785, 0.043783873, 0.023719955, -0.02973575, -0.035265747, -0.07520916, -0.034287494, -0.017395753, -0.06299871, 0.01640931, 0.008775652, -0.0018232731, 0.017702369, 0.013329576, 0.03072026, -0.045953512, 0.027319713, -0.003996849, -0.004111499, 0.016117414, -0.006751835, -0.009367533, -0.08889925, 0.027052432, 0.048391543, -0.036550406 ] }, { "values": [ -0.035416733, -0.03445085, -0.03808949, -0.050086904, 0.029408429, 0.042467114, 0.025461944, 0.05577631, -0.002270802, 0.018507956, 0.035498995, 0.034989394, 0.025889453, 0.031007921, -0.011231507, -0.03328152, 0.043575164, 0.00096296263, -0.031340055, -0.04280657, 0.03308804, 0.024139622, -0.043366067, -0.06645646, -0.04183666, 0.009131007, 0.01418385, -0.059666272, 0.0044773966, -0.07419273, -0.0036696987, 0.017995227, -0.026981564, -0.042202786, 0.02948114, 0.059684485, -0.005975303, -0.018329218, 0.03594938, -0.043455478, -0.06200712, -0.026526121, -0.036540944, 0.05112392, -0.09054922, 0.049435753, -0.0019276267, 0.010476823, -0.038348466, 0.047247548, 0.03760551, -0.007775498, -0.03738143, 0.040566415, -0.0008574679, -0.027911207, -0.06739794, -0.07970518, 0.06020721, 0.009488365, -0.015170129, 0.017939847, 0.004652113, -0.040369593, -0.040882703, -0.035907917, -0.03366662, -0.03441226, -0.07588889, 0.012938133, -0.032030202, -0.0022818977, -0.12596068, 0.00031771162, 0.042681508, -0.052084595, 0.027132021, -0.017233782, -0.008193045, -0.0004596167, -0.0046147835, -0.024042374, 0.04173906, 0.023549093, 0.0027638092, 0.004581142, 0.0421571, -0.026408372, -0.03560839, 0.05052413, 0.07412887, 0.006076852, -0.037737716, 0.027692417, 0.053006817, -0.019525098, -0.019636478, -0.06374689, -0.020412032, 0.07393275, -0.06870228, -0.027440587, -0.009262481, -0.0030544105, 0.045090962, 0.052098777, -0.010176493, -0.039104193, -0.017283434, 0.018219996, -0.050948244, -0.03590007, -0.022180017, 0.038692016, 0.012248626, -0.04698088, 0.008122962, -0.008183528, -0.030820193, -0.041139815, 0.04742173, -0.0067635593, -0.011878648, 0.048394676, 0.04289524, 0.008029775, 0.042355414, 0.0033847075, -0.04247943, -0.0248595, 0.03395734, -0.11122283, 0.021396551, 0.0021971934, -0.044753447, -0.05017449, 0.04601461, 0.019567987, -0.05410596, -0.024138078, 0.0016839505, -0.019354898, -0.03426699, 0.02274613, 0.0006371713, -0.023298796, -0.03546618, -0.021010926, -0.0579905, 0.0019155676, -0.081326514, 0.015598751, 0.017857574, 0.008228896, -0.049426757, 0.025445899, 0.08656829, -0.06879927, 0.054464463, -0.061474305, 0.0344223, -0.017909413, 0.0057314658, 0.028595086, 0.0039944304, 0.02904127, 0.04521066, -0.054108668, -0.045241546, -0.043532, -0.012087861, -0.041257787, -0.021785194, -0.06442148, -0.05060714, -0.013935844, -0.048224993, 0.015671987, -0.04382162, 0.012842503, 0.023953926, 0.072400406, -0.0051183, 0.026663093, -0.045005508, 0.04611077, -0.0021891731, 0.06386953, 0.019708449, 0.025092062, -0.029084174, -0.003181434, 0.019695831, 0.06435349, -0.0015711811, 0.050379317, 0.057601795, -0.044542342, 0.014279456, -0.066140674, 0.03056197, 0.013961375, -0.032059737, 0.0064722183, -0.024990007, -0.021237753, -0.016030721, -0.016683677, 0.045792095, -0.015668407, 0.00758235, 0.027487816, 0.015462497, -0.032140307, -0.012197041, -0.021967122, 0.096101835, 0.03501453, 0.038222842, -0.034751724, -0.026800917, 0.016556798, 0.020404853, -0.03066256, 0.012115365, 0.0012405039, -0.0071031833, -0.008725854, -0.04233435, -0.027162895, -0.042120263, -0.0104701435, -0.016261758, -0.03249856, -0.021006783, 0.014492394, -0.015738083, 0.0018049506, -0.0006148019, -0.0009478647, 0.02561163, 0.025647849, 0.045643426, -0.005110844, -0.031109428, 0.02549041, 0.054677777, 0.07850914, -0.006720639, -0.022851884, -0.0014979482, -0.038123522, -0.057815697, -0.026771137, -0.04509797, -0.035725664, 0.021200063, -0.076159075, -0.02975401, 0.01751046, 0.028011514, 0.0052949395, -0.024665881, -0.032217328, -0.011753659, -0.055819213, -0.0036142843, -0.0022197121, 0.024731718, -0.019312108, 0.005277387, 0.009789807, -0.09275156, -0.04176318, -0.0265188, 0.050554413, -0.03524358, 0.021559479, -0.043059643, -0.05127375, 0.019675573, -0.009839941, -0.045309283, -0.047051977, -0.022606302, -0.02283026, -0.020082047, 0.03752563, -0.03026354, -0.051182266, 0.04836439, 0.04033344, 0.017844897, -0.01196203, 0.04670379, -0.0131459525, -0.0014875651, 0.017486976, 0.01598177, -0.010569666, -0.012505951, 0.04818704, -0.00091674, 0.011525682, -0.0073109213, 0.021240015, -0.044320896, -0.016051758, 0.00025171516, -0.0042995154, 0.016041895, 0.011356749, -0.035039376, 0.004596084, -0.014306229, -0.0007506168, -0.1237068, 0.029894937, -0.033992056, -0.0058340193, 0.007049602, 0.012526199, -0.03004995, -0.043053433, 0.014601553, 0.018965067, -0.009884749, 0.015650226, 0.018482702, -0.01688202, -0.008328434, 0.024860974, 0.023463292, -0.0016823438, -0.0025950335, 0.007086135, -0.02640511, 0.024943199, 0.046526656, -0.0031670853, 0.053453974, 0.019156495, 0.051224805, 0.039699078, 0.011635436, -0.047261298, 0.010064282, -0.011310229, 0.027460655, -0.039576862, -0.05504696, 0.052045483, -0.018914627, 0.0032000123, 0.037619162, 0.03524863, 0.017914528, 0.05257775, -0.025214063, 0.017916597, -0.05356064, 0.0016970979, 0.0047027217, -0.024686195, 0.04388745, 0.004190402, 0.023280287, 0.03843928, -0.020973835, -0.0020302455, 0.035727896, 0.0333325, 0.021757491, 0.04457728, 0.041712426, -0.081485, -0.02414698, -0.03413368, 0.006726086, -0.026045913, -0.043328572, -0.03971243, -0.005177364, -0.009809156, -0.047983848, 0.026567541, -0.07156616, -0.018492626, 0.039552014, 0.011786751, -0.024601933, 0.027747758, -0.015213251, 0.02046317, -0.021457732, 0.07298703, -0.0001286099, 0.001165504, 0.0002917927, -0.0050399792, -0.062770516, -0.011845377, 0.06494546, -0.036336754, 0.0112920115, -0.0046276064, 0.04049567, 0.0543778, 0.035571877, -0.038968384, 0.057612907, -0.0034452311, 0.018915782, 0.0042400933, -0.018480552, 0.021700382, 0.046367932, -0.05336677, -0.011808808, -0.012441651, -0.007241577, 0.004034992, -0.006888915, 0.05167335, -0.04245216, -0.07862434, 0.015718678, 0.006652017, 0.03765709, 0.008660048, -0.00061331055, 0.030389285, -0.032517537, -0.016263142, -0.032473557, -0.010100135, -0.013755426, -0.0125647765, -0.026481185, 0.011419692, 0.0022088445, 0.018958941, 0.05967353, 0.05416798, -0.0054349434, 0.03127421, 0.023281597, -0.011020349, -0.05693553, -0.07885989, -0.021697601, 0.014658256, -0.014492774, -0.07646223, -0.005243894, -0.00039778295, 0.04332735, 0.05452562, -0.0037051647, 0.019712972, -0.08437783, 0.0100718, 0.05588617, 0.03128554, -0.028544357, 0.016216278, -0.05369811, 0.020207768, 0.0022779955, 0.05047934, 0.009873017, -0.015638644, 0.018309427, 0.008117992, 0.02215228, 0.015032428, -0.036828175, 0.002302579, 0.031854056, 0.02404512, -0.01058577, 0.01496326, -0.0008276238, 0.016528709, 0.02131462, -0.075064704, -0.018896708, 0.024017679, 0.029287487, 0.014785241, 0.041046165, 0.052850503, 0.003800542, 0.060549088, -0.06287877, -0.039338145, 0.057691507, -0.036072347, -0.021349864, -0.0018649567, 0.07699101, -0.0035196808, -0.037943725, -0.03584623, 0.005309516, 0.026464822, -0.062105604, -0.0068940967, 0.036108103, -0.013222124, 0.01569059, 0.024736036, 0.060932733, -0.0008439002, -0.0036995327, 0.05060245, -0.053845234, 0.019149996, 0.0065779244, 0.046671487, 0.01258052, -0.023791986, 0.035496578, -0.057752565, -0.05916495, -0.001291313, -0.0300976, 0.012043975, 0.046446778, -0.05420014, -0.028020937, 0.035618067, 0.022665605, 0.0082392385, 0.051919315, 0.012644553, 0.0024732323, 0.008738902, -0.015345184, 0.04556272, -0.028073255, 0.015737675, 0.051167995, -0.00785726, 0.056072153, -0.008766652, 0.04411388, -0.033513814, 0.01595503, 0.069413535, -0.027503513, 0.002985204, 0.011612184, 0.013262128, -0.0021762156, -0.044175025, -0.0134043675, -0.0015964067, -0.03887444, 0.004379452, 0.06685872, 0.0014937075, -0.010903422, 0.012081582, 0.0035554906, -0.0038683768, -0.05211366, 0.04284706, 0.020007841, -0.048248056, 0.0011638786, -0.00058629265, -0.032931298, -0.04324409, 0.04765928, -0.0388196, -0.049494587, -0.008749795, 0.04926725, 0.014647461, 0.06268496, 0.0041474192, 0.07084348, -0.044106018, -0.0012082369, 0.008740554, 0.06533064, -0.05790588, 0.01673005, 0.052799184, -0.013859483, 0.00401058, 0.003201465, -0.016569829, 0.059333522, -0.037704002, -0.024817891, -0.01688564, 0.06892725, 0.042120926, -0.032782663, 0.014900906, -0.028192447, 0.019620987, -0.020380354, -0.02921317, -0.04109784, -0.03132325, 0.008098454, -0.017016342, -0.08101774, 0.033333763, -0.013616877, -0.01787972, -0.048342768, 0.02811547, -0.03017547, -0.015205568, 0.017849168, -0.024512634, -0.0064863176, 0.020251557, -0.025180012, -0.0040625217, -0.067414455, 0.005990456, 0.004939182, 0.031586744, -0.055332806, -0.03548023, -0.0066343336, 0.05260753, 0.059821513, -0.030108165, -0.023570953, 0.018667271, 0.008456972, -0.02719833, -0.00053528615, -0.048253868, 0.02056916, -0.01817584, 0.05531472, 0.040982384, -0.077492386, 0.027173921, 0.008229318, 0.03099069, 0.010619885, 0.026919765, 0.014559912, 0.06367712, -0.026199628, -0.026987405, -0.075605616, -0.012531486, -0.039554775, 0.020074481, 0.027128702, -0.00877505, 0.009740648, -0.02337993, 0.0374908, 0.036072224, -0.011556287, 0.033757154, 0.017600406, 0.00769838, -0.0035391129, -0.026164336, -0.00723122, -0.008416636, 0.0013166075, 0.0047103358, -0.017472874, 0.03866286, 0.023478247, -0.015673582, -0.04467443, 0.028392944, 0.013918953, -0.06014626, 0.020487752, -0.006727296, -0.032708418, 0.01668233, 0.03436644, -0.045339152, 0.026605783, 0.015749369, -0.01777468, -0.08493058, -0.010360284, 0.0067057735, 0.032625295, 0.03861417, -0.019483337, 0.06287193, -0.05264409, 0.031190734, -0.04361484, -0.013982333, -0.044031523, -0.050294444, 0.045706064, 0.020716738, 0.05237203, -0.0010372171, -0.05360527, 0.001448359, -0.04634027, 0.015411378, 0.06491778, 0.00024908656, -0.0032018425, 0.01652136, 0.02559608, 0.012006333, 0.039127927, -0.027411846, -0.010377602, -0.051088344, -0.03992209, 0.09234029, 0.03677359, 0.02298773, -0.066516794, 0.019354358, -0.058821715, 0.04259353, 0.045562435, -0.0104884235, -0.020473333, 0.06274364, 0.03406829, 0.0005497639, -0.02874854, -0.01729059, -0.071739614, -0.07004232, -0.029405737, -0.012818381, -0.0468111, -0.011748945, 0.010678918, 0.003017668, -0.023226403, -0.08034975, -0.010521234, -0.0047641923, -0.06305677, -0.007043186, 0.019121232, 0.0072186096, 0.02280217, -0.03941988, 0.048818234, -0.032534614, 0.027036576, 0.00029737077, -0.006147708, 0.0013536245, 3.7448963e-06, 9.832598e-05, -0.11309716, 0.013111072, 0.047908384, -0.046351995 ] }, { "values": [ -0.026658097, -0.045374308, 0.0041523436, -0.022586396, 0.013150398, 0.038526706, 0.050152298, 0.007925321, -0.028954167, 0.011806759, 0.02360086, 0.036552906, 0.019849805, 0.012188895, -0.020071903, -0.0034703976, 0.05255156, 0.0010628612, -0.072412126, -0.078793004, 0.02239745, 0.025529701, -0.016234756, -0.029829316, -0.045611482, 0.026540188, 0.011547344, -0.06642557, 0.011197399, -0.06634842, 0.01420874, 0.048399176, -0.0516161, -0.035068203, 0.06350196, 0.06355439, -0.04973557, -0.013946279, 0.018214464, -0.03462512, -0.02868982, -0.008054075, -0.009895252, 0.0054821353, -0.024196282, 0.04095292, 0.018047936, 0.055324737, -0.027486783, 0.050191846, 0.031015955, -0.014089179, 0.004343277, 0.01354514, 0.027933408, -0.04549451, -0.107163236, -0.063474, 0.044723436, 0.005030045, -0.018716473, 0.022477012, 0.0016831836, -0.03775123, 0.0032399157, -0.017334212, -0.0018913068, -0.05882806, -0.048386455, 0.06498099, -0.022436963, 0.01114171, -0.098488495, 0.0019571385, -0.025333555, -0.010786663, -0.0026585893, 0.022850905, -0.057037465, 0.005321638, -0.038382642, -0.02005608, 0.07867691, 0.03984785, 0.04105729, 0.013282281, 0.026366236, -0.058652673, -0.032464445, 0.022673216, 0.10217496, -0.0113680065, -0.030939218, 0.00509422, 0.013438098, 0.005265831, -0.049959123, -0.11202277, -0.011943978, 0.0925075, -0.035834696, -0.038864166, -0.0012459151, -0.004569805, 0.055771254, 0.040455796, -0.0061038216, -0.06609335, -0.020812348, 0.061231054, -0.01801207, -0.036802568, -0.013903732, 0.044715505, 0.01697213, -0.04196065, -0.0035942912, 0.0029700084, 0.014180259, -0.0089855585, 0.040235948, -0.03529747, -0.043282427, 0.082855515, 0.013249908, 0.004318486, 0.018131012, 0.016143406, -0.030102793, -0.07533943, 0.08062341, -0.06334293, 0.026583139, -0.010280784, -0.069543086, -0.042766888, 0.031552136, 0.080665015, -0.020197341, -0.014813152, -0.016982185, -0.009225182, -0.0019744528, 0.04957229, -0.012302584, -0.061776437, -0.027930534, 0.011807186, -0.041875906, 0.048256125, -0.0943738, -0.004472997, 0.0608308, 0.0025720333, -0.04189752, 0.06454681, 0.07766359, -0.027672293, 0.03235789, -0.054828238, 0.06339142, -0.0036759593, -0.012808119, 0.018181786, -0.022449752, -0.0134288585, 0.013379515, -0.03298217, -0.0025110864, -0.05669456, 0.017852826, -0.0122501, 0.00013501557, -0.071653046, 0.0065451856, 0.017378569, -0.036790565, 0.03358736, -0.035320908, 0.008143245, 0.033243097, 0.03634239, 0.0049579768, 0.020433975, -0.010740303, 0.008814058, -0.030070787, 0.06076997, 0.025197078, 0.037586257, -0.012983736, -0.028815756, -0.018856646, 0.094142854, 0.0055407463, 0.037418164, 0.048496757, 0.021944476, 0.031913593, -0.04662925, 0.057331223, -0.0314969, -0.03424839, 0.009392826, -0.045099918, -0.029347459, -0.03788283, -0.0036709115, 0.017450001, 0.032456256, -0.022552202, -0.022974009, 0.03639353, -0.04956763, -0.014762393, 0.017254135, 0.06972498, 0.06821043, 0.027900342, -0.026395192, -0.0015188999, -0.009641073, 0.033288892, -0.032967355, 0.00023957668, -0.050531134, -0.03156457, -0.05668591, -0.041987866, -0.013442413, -0.03968144, 0.011529912, 0.00043893114, -0.0026215296, -0.0107373055, 0.015985426, -0.013653982, 0.0050374027, 0.0349626, 0.016008692, -0.008668496, 0.004103487, 0.002450027, -0.019589644, -0.009032408, 0.06810911, 0.056888014, 0.081660025, -0.007209425, -0.014904973, -0.0058181686, -0.008991685, -0.06732199, 0.007869147, -0.040467553, -0.019231226, 0.030496242, -0.06969252, 0.0018658114, -0.027645431, 0.02814747, -0.0004369666, -0.044690065, -0.02118131, -0.025164625, -0.045170423, -0.010856721, -0.013561671, 0.05518349, 0.009091069, 0.023205118, 0.026229618, -0.059636705, -0.06832635, 0.044623233, 0.027258182, -0.013717885, 0.018514382, -0.037505638, -0.055511627, 0.030700592, -0.017860582, -0.051861037, -0.025481045, -0.0077090845, -0.019727733, -0.0016962549, 0.049084708, -0.034642965, -0.06572733, 0.0724218, 0.025335658, -0.008785688, -0.0019236334, 0.017529208, -0.009299215, -0.004377913, 0.014945517, 0.047953982, 0.0025948922, 0.0047822623, 0.058913995, -0.01668787, 0.0032625166, -0.039250128, 0.0558012, -0.046021257, -0.020583106, -0.0055758194, 0.0019580142, 0.0064526233, 0.03568963, -0.025276965, -0.017697077, 0.027332779, 0.013981182, -0.118472666, -0.010048004, -0.026185924, -0.018634459, 0.011709238, 0.0401975, -0.02850113, -0.033013694, 0.045495704, -0.007617013, -0.015403172, -0.030318571, 0.015967071, 0.013863197, 0.0072302776, 0.008968955, -0.0075348285, -0.0011604674, -0.01660164, 0.020881016, -0.0010466623, 0.014905843, 0.049713407, -0.025880942, 0.044802584, 0.024571404, 0.04646971, 0.006988711, -0.00847133, -0.07102811, 0.012074812, -0.027537763, 0.064232364, -0.049737934, -0.048164625, 0.03422187, 0.0016257188, 0.017027177, 0.03565024, 0.044653397, 0.02654818, 0.055418532, 0.01561279, -0.0031877146, -0.02224923, 0.0054751206, 0.011698636, -0.013392756, 0.03471218, -0.021966875, 0.04414298, 0.027778337, -0.004705268, -0.022137638, 0.012204045, 0.052205544, 0.025804205, 0.0179885, -0.0049037375, -0.082894966, -0.012323264, 0.00048745525, 0.007968715, -0.04467222, -0.05731458, -0.050175447, 0.010122737, -0.0087657925, -0.032188967, 0.018236218, -0.053002883, -0.02204613, 0.02627386, 0.027656283, -0.021279745, 0.055564463, -0.017156903, -0.0048737447, -0.018688506, 0.030857893, -0.012059944, 0.015099245, 0.02716529, -0.013064324, -0.047691517, -0.020200532, 0.04071286, -0.015211644, 0.0090935435, -0.01132428, 0.053065855, 0.019382676, 0.055373125, -0.040413607, 0.049039934, -0.030333584, 0.009698707, -0.007867844, -0.030244835, -0.006484128, 0.011248683, -0.020096436, -0.010876366, 0.010638469, -0.006209423, 0.022926074, 0.013790345, 0.015174144, -0.018902674, -0.11371593, 0.022305574, -0.02718327, 0.0048341746, 0.017613752, 0.0017503826, 0.014984429, -0.043780625, 0.030256297, -0.010238292, -0.024243511, -0.019065535, 0.028856806, -0.019291101, 0.0067184204, 0.009899534, 0.0017592123, 0.03811813, 0.006942358, -0.007018897, 0.03956456, 0.038326774, -0.016406763, -0.04744688, -0.05149677, 0.023272904, 0.053519912, -0.025056329, -0.06684451, -0.018331882, -0.019731317, 0.029602973, 0.028433815, -0.018378569, 0.04034379, -0.056208413, -0.021657098, 0.03538129, 0.03645286, 0.02486976, -0.015162336, -0.057176832, 0.017268274, -0.019640485, 0.030310351, -0.0008467217, -0.032561865, 0.042856142, 0.008288213, 0.035834394, 0.045685112, -0.036052424, -0.032930247, 0.030296015, 0.008715873, -0.02135006, 0.049548518, 0.012745064, 0.040695895, 0.056508683, -0.06754671, -0.008387673, 0.022871219, 0.031036312, -0.012223317, 0.0099854, 0.07079226, -0.015636884, 0.027982237, -0.0038703454, -0.04747491, 0.06100904, -0.058031037, 0.011114673, -0.0388477, 0.04410942, -0.031504553, -0.04441314, -0.03660281, -0.010852135, 0.017081706, -0.021804778, -0.019081177, 0.035069723, -0.009748332, 0.01286843, 0.018199656, 0.061151214, -0.015002999, -0.077706344, 0.068708695, -0.055894565, 0.0103663495, -0.044265125, 0.060552806, -0.0030369726, -0.019652557, 0.054418765, -0.12706077, -0.064261675, 0.0018212884, 0.011543446, 0.02996602, 0.01780438, -0.011003595, -0.022578582, 0.025832573, 0.0010891621, 0.0062069977, 0.03594702, 0.03662554, 0.002873946, -0.019592818, -0.027120152, 0.03963877, -0.01866549, -0.0006186987, 0.05871299, -0.00053823745, 0.05625486, 0.0063380697, 0.040129215, -0.026341138, -0.006370845, 0.06535509, -0.038999416, -0.019178415, 0.020031082, 0.0038867057, -0.024183173, -0.028252335, -0.009790091, -0.03511421, -0.031637445, 0.014193363, 0.030942256, -0.0020240485, 0.017977435, 0.015036932, -0.02095548, -0.0055220397, -0.024806142, 0.07621924, -0.0154055245, -0.045213394, -0.012611637, -0.034166478, -0.02707605, -0.046618294, 0.02960421, -0.00337992, -0.03620816, -0.010175081, 0.047370702, 0.005745056, 0.06493067, 0.047947805, 0.06970749, -0.01725536, -0.011713581, -0.009922666, 0.011262062, -0.067748204, 0.005712143, 0.009543078, 0.014473716, 0.019816516, -0.0061337776, -0.011016088, 0.033909652, 0.009922374, -0.023476705, -0.03821796, 0.034770112, 0.027875923, -0.01661297, 0.004415224, -0.02038749, 0.041406427, 0.0009788804, 0.0019694602, -0.0026459415, -0.009632842, 0.042458624, -0.039253965, -0.033744372, 0.035364084, 0.011734023, 0.013048537, -0.05371319, 0.024833303, -0.034131106, -0.03672052, 0.029245386, -0.0582332, -0.0029426084, 0.03149773, -0.066696495, -0.0009796874, -0.04968708, -0.015472407, 0.0014045297, 0.032188416, -0.064576834, -0.01741086, -0.013235394, -0.00737235, 0.04576849, -0.0046493392, 0.005362822, 0.023412641, 0.016740844, -0.005478048, 0.018234646, -0.03365118, 0.029615797, -0.006185904, 0.020008516, 0.03403435, -0.075114064, 0.05189587, 0.035377555, 0.005707213, 0.011699015, 0.011971536, -0.0040971204, 0.01797137, -0.010700339, -0.05234876, -0.07075676, -0.023946872, 0.0028225067, 0.0027253584, 0.031895198, -0.008712974, -0.022807557, -0.008131576, -0.0063469233, 0.030433344, -0.00916817, -0.013197886, -0.010912476, 0.00011915752, -0.015525041, -0.055152975, 0.0010848688, 0.027559595, 0.016805565, 0.034392606, -0.041939437, 0.044635084, 0.029162912, -0.013104583, -0.029157666, 0.008756, 0.011559654, -0.042035777, 0.025365734, -0.018724479, -0.027460566, -0.0032637247, 0.027535109, -0.054891806, 0.028363219, -0.021075383, -0.007231647, -0.065614894, -0.016665326, -0.01609467, 0.037416976, 0.095366925, -0.030218357, 0.042361088, -0.09895685, 0.032142807, -0.05030873, -0.02053445, -0.07578675, 0.0053968495, 0.016537346, 0.029724063, 0.035312627, 0.011204663, -0.06891213, 0.01817478, -0.06879102, -0.009149462, 0.0648631, -0.00023492222, 0.060909968, 0.022870902, 0.020706484, -0.008401336, 0.05144306, 0.031766035, -0.02755836, -0.033446904, -0.019520495, 0.082358055, 0.025991196, 0.008102802, -0.078676134, -0.0035575223, -0.048716016, 0.061213173, 0.010490967, -0.0038333645, -0.032998882, 0.05663371, 0.0010031235, 0.025149157, -0.049203884, 0.0031640616, -0.025238093, -0.025663128, 0.0053099357, -0.021442253, -0.040182814, 0.029272847, 0.029683592, -0.0001513033, -0.03639076, -0.06914101, -0.010437629, 0.010644134, -0.07802633, 0.021180378, 0.008651119, 0.0142475935, 0.006603627, 0.0023710732, 0.023297077, -0.024456508, 0.031280775, -0.002629761, -0.01569999, 0.025522066, -0.0040329164, 0.0120173255, -0.07653243, 0.05053326, 0.04491847, -0.03067339 ] }, { "values": [ -0.010378237, -0.0379064, -0.0074680005, -0.034965843, 0.039268304, 0.018837659, 0.0389409, 0.034202993, -0.0096103, 0.020940788, 0.019183632, 0.03434044, 0.018047238, 0.027799383, -0.017691279, -0.0031665075, 0.026817178, 0.008185893, -0.07935899, -0.047601834, 0.05522649, 0.017404398, -0.014177387, -0.049472302, -0.03779666, -0.013015217, 0.025190838, -0.036312286, 0.002492707, -0.053049896, -0.008493634, 0.0568906, -0.016896572, -0.045154642, 0.043673426, 0.08226798, -0.06002337, -0.014968248, 0.046011403, -0.052768502, -0.08002969, -0.009771682, -0.017422926, 0.026182458, -0.076859035, 0.06010323, 0.041355822, 0.02884545, -0.017110199, 0.043026928, 0.06776231, -0.021472987, -0.0103573315, 0.04761275, 0.008765324, -0.041981596, -0.096370846, -0.06617106, 0.030335175, 0.01802046, -0.019557668, 0.02147966, -0.0004890327, -0.04775748, -0.012315514, -0.052802164, -0.004077282, -0.023522979, -0.032668777, 0.040214885, -0.025431875, -0.0044166553, -0.12691237, 0.018289572, -0.00017676612, -0.041422937, 0.031969905, -0.009314537, -0.02866849, 0.00358413, 0.01715223, 0.0049282024, 0.042424172, 0.041593302, 0.0037174448, 0.0028629077, 0.06610186, -0.04829612, -0.01885183, 0.048955396, 0.08313843, -0.010362651, -0.035589118, 0.027549418, 0.016855095, -0.018496485, -0.038422924, -0.062969215, -0.0042414195, 0.045440793, -0.05261763, -0.04417882, 0.009051783, -0.0030187545, 0.016811932, 0.02382538, -0.016832221, -0.05778337, -0.050688215, 0.024781892, -0.049003117, -0.026063805, -0.008771082, 0.018326722, -0.039803486, -0.039331194, -0.035747647, 0.008883009, -0.019298425, -0.040146668, 0.025492698, -0.020642936, -0.07171199, 0.05938201, 0.030127352, 0.001021267, 0.009057941, 0.0064060767, -0.050120827, -0.028671045, 0.06913601, -0.10760335, 0.04119507, -0.0065794336, -0.053786535, -0.03334012, 0.07959156, 0.030211177, 0.014597203, -0.026389439, -0.0057341424, -0.022385031, -0.04444572, 0.02067189, -0.012522768, -0.03301953, -0.034854557, -0.021560667, -0.055935938, 0.035529792, -0.045672476, -0.015848393, 0.02201711, 0.036325235, -0.046730816, 0.06115904, 0.052059706, -0.03716434, 0.061290514, -0.047605358, 0.04016709, 0.011814569, 0.0023069, 0.051171903, 0.0016515205, -0.004425165, 0.02343742, -0.040943414, -0.036340024, -0.06739861, -0.011151788, -0.024815587, -0.042804573, -0.063289106, -0.038976368, -0.013322925, -0.023796342, 0.019812638, -0.07089976, 0.0021586346, 0.030285094, 0.07161642, -0.037918735, -0.004518321, -0.033746254, 0.014931039, -0.02544431, 0.07398818, 0.034389753, 0.038817633, -0.017081482, -0.0086447075, 0.024063896, 0.07445508, 0.005704595, 0.04890561, 0.04920642, 0.0037845226, 0.031560827, -0.05354385, 0.047023978, -0.03014989, -0.04061731, 0.01731587, -0.044064242, 0.0026449622, -0.011829647, -0.054757122, 0.027968487, -0.018881408, -0.018725963, 0.0076224757, 0.023268525, -0.05830127, -0.007973859, 0.020663243, 0.08267273, 0.056306887, 0.04761806, -0.011580887, -0.05427898, -0.024237998, 0.018370904, -0.028792905, -0.010574903, -0.043067962, -0.021026816, -0.040134095, -0.041371424, -0.010762918, -0.01278608, -0.01113555, 0.0030005695, -0.010375149, -0.005031206, -0.020590764, -0.018892866, 0.019820346, 0.0066493647, 0.040352628, 0.029953368, 0.00037931223, 0.023264803, 0.025393771, -0.013044354, 0.048396017, 0.054426923, 0.0915494, 0.014356753, -0.0332844, -0.009840281, -0.01863608, -0.09555783, -0.0071002436, -0.022691177, -0.023667516, 0.02753181, -0.059076518, -0.023710638, -0.021238975, 0.05081313, -0.013794684, -0.021307148, -0.029169148, -0.014783598, -0.06567684, -0.016518258, -0.013768524, 0.05635813, -0.0084048165, -0.02162785, 0.02194877, -0.07983011, -0.02940569, -0.011125991, 0.059007514, -0.05695802, -0.017249681, -0.021876851, -0.05231969, 0.04961995, 0.0013807575, -0.039771836, -0.03990065, -0.019567853, -0.030273518, -0.026278816, 0.051170267, -0.048388097, -0.041244507, 0.08166608, 0.028987769, 0.013394099, -0.024924746, 0.02437705, 0.010157294, 0.009653948, 0.015465262, -0.021034334, 0.015450197, -0.014887076, 0.0528946, -0.011072003, -0.009462652, 0.0048986506, 0.017423613, -0.02866507, 0.0030161696, 0.006999502, -0.011943811, 0.014055062, 0.008785419, -0.014765696, 0.025701476, -0.016846899, -0.0017750388, -0.13056028, 0.010159025, -0.039175324, 0.013690902, 0.014976283, 0.008417353, -0.0063691856, -0.016552443, 0.042926095, 0.012270502, -0.011855238, -0.0061138673, 0.0117677795, -0.033393692, 0.018670347, 0.034262877, 0.037344262, -0.0077345823, 0.014025126, 0.013716023, -0.00532691, 0.00526744, 0.073186845, 0.0032703385, 0.0645918, 0.008882965, 0.07133212, 0.029065795, 0.005843213, -0.06731923, 0.030762991, -0.027163388, 0.06151696, -0.03497577, -0.05064241, 0.058761235, 0.01491344, 0.013181486, 0.022029838, 0.0067186547, 0.008992997, 0.033517975, -0.0055767195, -0.009880837, -0.010513486, 0.015796019, 0.010914931, -0.03951325, 0.049054164, -0.0010852708, 0.05408076, 0.027613258, -0.024654845, -0.02125712, 0.036119726, 0.03572307, 0.011691546, 0.027230218, 0.031722277, -0.04185745, -0.016157491, -0.012379696, 0.011177983, -0.04550954, -0.045471013, -0.026176374, -0.00262573, -0.03457835, -0.045132104, 0.038024522, -0.05527434, -0.026544673, 0.037373908, 0.020009857, -0.02645294, 0.056400165, -0.013482155, 0.03839012, -0.03480859, 0.068024606, -0.031251773, -0.007905661, 0.04026379, -0.02364286, -0.045791086, -0.008512352, 0.039584935, -0.03050959, 0.00876145, -0.009041658, 0.026509095, 0.046508733, 0.023776175, -0.050622165, 0.049085055, -0.013141305, 0.0053362604, -0.02837008, -0.03817012, -0.003313048, 0.039267223, -0.014521578, -0.008510403, -0.006349634, -0.0099238865, 0.021415506, -0.0018877718, 0.02046452, -0.026325628, -0.10418992, 0.010862483, -0.0054000234, 0.019832846, 0.00884523, -0.018766638, 0.03394157, -0.054407574, 0.0040757437, 0.0060464297, -0.01915493, -0.01736848, -0.008661298, -0.017611464, 0.0014578751, 0.027946651, 0.009692764, 0.029374883, 0.038426913, 0.0025766338, 0.034849383, 0.028147245, 0.0032328048, -0.05958187, -0.072690345, -0.0017272895, 0.019258264, -0.014434275, -0.041840952, -0.0011425436, -0.010828088, 0.011642834, 0.048479132, -0.02344074, 0.045058362, -0.1072022, -0.0061460854, 0.055982694, 0.053635087, -0.0072497134, 0.000112497044, -0.044758487, 0.023253787, 0.010186749, 0.06467186, -0.017067544, -0.028311623, 0.020109875, 0.0008136918, 0.043665357, 0.026992451, -0.016150696, 0.025282687, 0.054423053, 0.00738909, -0.03223553, 0.037127566, 0.02042983, 0.028298065, 0.038430482, -0.057315342, 0.0051399837, 0.040026065, 0.05469715, 0.03501568, 0.026495561, 0.060181744, -0.0129683595, 0.034828406, -0.03279071, -0.052939773, 0.02989159, -0.022696117, 0.006423661, 0.006447322, 0.04552039, -0.025710125, -0.034117192, -0.026228063, -0.0010442485, 0.01219733, -0.04688477, -0.034661315, 0.040092614, -0.016234443, 0.027904, 0.014838081, 0.06371204, 0.015745008, -0.013923905, 0.03912518, -0.04006227, -0.015115725, -0.009910848, 0.06576832, 0.027067764, -0.045935374, 0.024216007, -0.06443537, -0.06979488, -0.028978664, 0.018666299, 0.021212231, 0.03224642, -0.012404835, -0.012280819, 0.016476395, 0.013276802, -0.009154523, 0.026072599, 0.0150951445, 0.008951547, 0.0072106603, -0.022272889, 0.021346457, -0.0066112834, -0.0027133941, 0.055698175, 0.012662897, 0.05041124, 0.005721581, 0.039324597, -0.0023757494, -0.007324304, 0.055487324, -0.023841253, -0.030279081, 0.038532864, 0.019452162, -0.024106469, -0.056025025, 0.00235387, -0.039142445, -0.051958002, 0.01662209, 0.02733951, 0.0042706206, 0.018407805, -0.036629677, -0.021509636, -0.018948209, -0.040504564, 0.06270635, -0.017473513, -0.050097797, -0.000529538, -0.0008780746, -0.032828193, -0.023342423, 0.032565195, -0.0147781065, -0.038106047, -0.026085395, 0.05178201, 0.0064713717, 0.050616335, 0.0013314481, 0.08926529, -0.021986483, 0.012827903, 0.020246726, 0.038191594, -0.049296074, -0.010070728, 0.01711442, 0.022857944, 0.019991053, -0.022302737, -0.0011030654, 0.07640252, -0.025114499, 0.0046511823, -0.021581924, 0.0545318, 0.04393822, -0.012034141, 0.025485901, 0.0067457203, 0.042368226, 0.019017918, -0.029074656, -0.024691947, -0.035527606, 0.045712527, -0.0075777844, -0.044972673, 0.04486543, 0.0036924116, 0.002702034, -0.056165177, 0.014581924, -0.021937087, -0.05893015, 0.043512672, -0.03032595, -0.013967171, 0.002820537, -0.048654415, -0.0027349812, -0.052343566, 0.014548876, -0.00015796762, 0.024712462, -0.06034283, -0.010926551, -0.0042634867, 0.018071447, 0.04232066, -0.020246428, -0.03308297, 0.025435826, 0.006960168, -0.019534778, 0.0086933505, -0.037148908, 0.030660577, -0.0155067565, 0.022547135, 0.019926298, -0.08165737, 0.05507023, 0.012023606, 0.026170751, 0.01722456, 0.029036114, 0.03780035, 0.041564614, -0.016094847, -0.003185667, -0.07509783, -0.023760222, 0.0041820034, -0.0099986475, 0.039918445, 0.00026490804, -0.0043983688, -0.03193222, 0.01302644, 0.039878998, 0.0018536084, 0.0017531863, 0.01633457, -0.012652643, -0.0119740935, -0.049258184, -0.0013063195, -0.008258609, 0.006065183, 0.0068210904, -0.028241105, 0.041377835, 0.034581456, 0.00033505185, -0.038467325, 0.009680664, 0.026113782, -0.07313661, -0.01109879, -0.015083258, -0.02175712, 0.02172074, 0.005780147, -0.031246046, 0.02635336, -0.002299239, -0.009963249, -0.09839081, -0.016479168, 0.004918052, 0.02890602, 0.041173864, -0.019272998, 0.0076786913, -0.06430055, 0.04832239, -0.026445478, -0.054023333, -0.05786224, -0.04218774, 0.021983678, 0.014352737, 0.069185436, 0.04067326, -0.050179336, -0.016972521, -0.030873267, 0.00423317, 0.07102015, -0.010707967, 0.008478112, 0.011678751, 0.02903531, 0.020093711, 0.04579536, 0.010111858, -0.020578641, -0.037783924, -0.019172197, 0.07699871, 0.021486761, -0.021564223, -0.059103105, 0.03232326, -0.06564427, 0.07252675, 0.050452232, -0.036787696, 0.0068861768, 0.025648925, 0.01183327, 0.018253319, -0.01190129, 0.01163403, -0.030488826, -0.0341184, -0.014936354, -0.02126088, -0.07203973, -0.00964606, 0.034352873, 0.018219281, -0.03275517, -0.030142535, 0.004529639, -0.005991512, -0.1057172, 0.020929465, -0.0073439283, -0.009893462, 0.023496136, -0.025491895, 0.03664634, -0.03609745, 0.02307493, 0.003734657, 0.00026478837, 0.022974638, -0.025131503, 0.009328333, -0.1123722, 0.038333457, 0.049747065, -0.06282644 ] }, { "values": [ -0.033348292, -0.01628713, -0.02471391, -0.04274334, 0.03371202, 0.007953109, 0.03437148, 0.035818268, -0.026567463, 0.04899169, 0.0070523336, 0.0355837, 0.013449734, 0.03747494, -0.011892337, -0.019932656, 0.029259525, -0.0009897514, -0.061362922, -0.047841772, 0.0389956, 0.03802451, -0.01304365, -0.06670676, -0.042554382, -0.00197034, 0.03354208, -0.043620303, 0.017325725, -0.06359096, 0.00026151253, 0.04938096, -0.0406183, -0.05154693, 0.066845134, 0.06487114, -0.0426307, 0.0036023888, 0.030839529, -0.044071358, -0.07700489, -0.0006023454, 0.0015673051, 0.027547758, -0.06094822, 0.04826287, 0.04707746, 0.014383328, -0.0568348, 0.079452366, 0.029363899, -0.0012052795, -0.013954261, 0.04820304, 0.007959423, -0.022166342, -0.07109175, -0.077625446, 0.051494464, -0.015558335, -0.00895244, 0.009226475, 0.018168923, -0.056723908, 0.00626504, -0.053785924, -0.020818044, -0.0123584885, -0.031077744, 0.016135758, -0.029861394, 0.015986724, -0.11555831, -0.012368786, 0.004709714, -0.02013684, 0.02921471, 0.014770146, -0.018071884, -5.1376126e-05, -0.0075989305, -0.005543446, 0.06861188, 0.030515332, -0.0018322527, 0.004019853, 0.046870835, -0.035126243, 0.006641362, 0.053887174, 0.058587797, -0.014652956, -0.04153468, 0.04216078, 0.022482134, -0.01997376, -0.053166717, -0.052044105, 0.0054886583, 0.06421054, -0.027296793, 0.008482618, -0.0008505894, 0.0029912235, 0.023074947, -0.016899597, 0.0031797462, -0.07033005, -0.057269182, 0.040761854, -0.037810527, -0.035780568, -0.03505308, 0.01739869, -0.027947402, -0.0304431, -0.034200832, 0.0028857202, -0.0043003424, -0.029531915, 0.05585051, -0.036748108, -0.070079945, 0.048816178, 0.017849263, 0.015976489, 0.02077489, -0.005148688, -0.047844056, -0.042726174, 0.078624494, -0.100399725, 0.02183929, -0.0019914461, -0.06074184, -0.04941804, 0.041276023, 0.032222264, -0.006439866, -0.029260369, 0.019904057, -0.01713945, -0.032391492, 0.0018617571, -0.0023978234, -0.032713924, -0.011309733, -0.014233281, -0.055587173, 0.037384156, -0.071446285, -0.03087406, 0.036545034, 0.01430637, -0.03874586, 0.028292116, 0.068872906, -0.017734775, 0.06530706, -0.038669325, 0.023058528, -0.005563797, 0.008642433, 0.033683993, -0.00054646254, 0.0002812045, 0.032663822, -0.07047592, -0.019367423, -0.054215737, 0.019147903, 0.011418724, -0.013268384, -0.092614256, -0.0034897695, -0.0119329225, -0.025828514, 0.047527265, -0.016960964, -0.0073839417, 0.03963221, 0.04614171, -0.027915204, -0.0146714365, -0.049808823, 0.0013792992, -0.03321678, 0.09713884, 0.04710635, 0.04260178, -0.036265466, -0.023959145, 0.0074110646, 0.060304113, -0.0123910755, 0.050433535, 0.045755517, -0.005248208, 0.03471891, -0.0672379, 0.059401486, -0.035454772, -0.026054282, 0.009174714, -0.03240334, -0.021341296, -0.042104214, -0.04874748, 0.020455807, 0.009865839, -0.02341788, -0.0029525808, 0.014254029, -0.066544406, -0.00054521096, 0.017940698, 0.07165776, 0.07239366, 0.024251662, -0.030587133, -0.029431434, -0.0073938877, 0.04804453, -0.021644987, -0.005464333, -0.02557614, 0.020642916, -0.03762939, -0.04676783, 0.013239353, -0.012845416, -0.018310755, 0.010146681, -0.00084991305, -0.011605908, -0.0024196235, -0.025660373, 0.026202615, 0.019464215, 0.023540474, 0.013277956, 0.014423454, 0.025050832, 0.0058753183, -0.0026139773, 0.030673858, 0.04174332, 0.13034733, -0.002097394, -0.027714062, -0.018791523, -0.0022052387, -0.076970726, 0.0052278326, -0.029845051, -0.040483784, 0.042369872, -0.05024047, -0.031398166, -0.04093329, 0.034026317, -0.008790412, -0.037652932, -0.039840832, -0.011607681, -0.09389251, -0.0060003577, -0.028923959, 0.067369655, -0.0009998, -0.010700892, -0.012479627, -0.06520014, -0.055661693, -0.0060609053, 0.04096321, -0.048202146, -0.006444741, -0.01934276, -0.05286835, 0.027794126, 0.013354616, -0.03239015, -0.023491032, -0.00031295008, -0.032702945, -0.023003671, 0.013011213, -0.04276493, -0.057046205, 0.0835504, 0.040881418, 0.028505018, -0.017135452, 0.0384561, -0.01745526, -0.0016494998, 0.0013188893, 0.017607408, 0.01279861, -0.0121009685, 0.067550056, -0.0221578, -0.00814904, -0.027323034, 0.01801091, -0.031047145, -0.001347656, -0.0018168545, -0.0062864698, 0.01865134, 0.026329555, -0.022694087, 0.018634345, -0.005918253, 0.017675944, -0.117952414, 0.023416243, -0.040790234, 0.020872183, 0.040687513, 0.012569513, -0.021480963, -0.010554765, 0.055593044, 0.012452587, -0.029802576, 0.00034516634, 0.0042613004, -0.043252368, 0.01661036, 0.029191943, 0.02407205, -0.017028853, 0.0072810967, 0.0014359613, -0.0064222487, 0.0015134109, 0.06884421, 0.033937674, 0.053988013, 0.022844415, 0.054067396, 0.028177088, 0.0036016626, -0.06180204, 0.01842916, -0.0018281996, 0.06557162, -0.019225353, -0.048899297, 0.05370271, 0.0076667457, 0.015787026, 0.06420173, 0.021143941, 0.013221966, 0.04488698, 0.011312268, -0.027179694, -0.022578124, 0.03714261, -0.0049595786, -0.04660779, 0.017511772, -0.008671398, 0.050914068, 0.016973501, -0.015518413, -0.038773946, 0.010940576, 0.038291324, 0.020028707, 0.012425336, 0.0059504043, -0.06935033, -0.017275654, -0.0015363429, -0.0005770263, -0.040286243, -0.045991912, -0.03294841, 0.0043974984, -0.021746682, -0.04518218, 0.0348696, -0.05853224, -0.033497274, 0.030377291, -0.014728112, -0.03051604, 0.046114888, -0.007132017, 0.015481947, -0.035028614, 0.04392009, -0.034612313, -0.01958798, 0.035917114, -0.029301833, -0.03364339, -0.00095007505, 0.035824172, -0.024014786, -0.0023280869, -0.005508799, 0.033761285, 0.043341085, 0.035947617, -0.02963358, 0.054696556, -0.024504583, -0.00019477912, -0.026805483, -0.029248407, -0.0029526541, 0.026819296, -0.022881666, -0.016690642, 0.0012556788, -0.010114766, 0.011462258, 0.003967295, 0.067224465, -0.014834152, -0.08929693, 0.030150697, -0.02129656, 0.049200457, 0.012835954, -0.007360122, 0.05781875, -0.06355599, -0.013187266, 0.030664291, -0.009750646, -0.015927996, 0.00019841133, -0.011694508, 0.012239689, 0.028010419, -0.007621297, 0.055822786, 0.026890324, -0.028608678, 0.037133593, 0.024013901, -0.017257867, -0.056742195, -0.06032936, 0.024205469, 0.030344019, -0.015360619, -0.06593677, 0.037088398, -0.0023375533, 0.0450319, 0.04488502, -0.035524044, 0.029972214, -0.07938183, -0.009009144, 0.055028714, 0.060110994, -0.001972272, -0.01556425, -0.01776335, 0.028294738, 0.022208689, 0.06405644, -0.019971408, -0.0465413, 0.012737557, 0.00017123923, 0.041865345, 0.03338506, -0.0039352276, 0.01175456, 0.050447594, 0.023682471, -0.024770217, 0.02595533, 0.008106582, 0.042402375, 0.03256986, -0.058413953, -0.013582906, 0.011093567, 0.033311103, 0.011064224, 0.009044909, 0.061767254, 0.0010407632, 0.017360214, -0.03003739, -0.04816547, 0.0460038, -0.041915312, -0.015206284, -0.009939578, 0.061712574, 0.0029125493, -0.016851794, -0.016864225, 0.0035689035, 0.009248935, -0.021550657, -0.050015632, 0.06212487, 0.009021977, 0.018603615, 0.011216116, 0.08472962, 0.012718925, -0.02199434, 0.07165301, -0.03409447, -0.008342514, -0.018335374, 0.06329749, 0.011090365, -0.058995277, 0.031828348, -0.06745709, -0.07549148, -0.016456947, -0.011308577, 0.04094623, 0.040124364, -0.019300727, -0.007084002, 0.03990013, 0.012238043, -0.021025859, 0.044977188, 0.0134055, 0.007937678, 0.0139576085, -0.028119111, 0.039910737, -0.005160766, -0.025082698, 0.06068441, 0.018370971, 0.037512887, 0.017439052, 0.044469852, 0.016646985, 0.013706564, 0.08130435, -0.022393448, -0.03144527, 0.035838038, 0.009155624, -0.038699392, -0.040449183, -0.013716574, -0.0337563, -0.051534783, 0.016345816, 0.018155795, 0.0026747098, -0.004103127, -0.019951753, -0.04690119, -0.026644355, -0.036725868, 0.057318576, -0.01824817, -0.05300212, 0.00796828, -0.04265557, -0.044445463, -0.031660024, 0.02983508, -0.0025377718, -0.04467786, 0.006672544, 0.050586414, 0.0014479356, 0.052673195, 0.018422635, 0.09329059, -0.042240065, -0.0037395735, -0.009647478, 0.04778695, -0.056323715, 0.0016174413, 0.011199564, 0.017962623, -0.0063079013, -0.026836412, -0.009180047, 0.057047907, -0.008033397, -0.0021829417, -0.038114395, 0.04713624, 0.023052271, -0.018896924, 0.015122724, 0.0005731152, 0.032151867, 0.031262387, -0.022763103, -0.023019813, -0.030370206, 0.05595886, -0.015059036, -0.047907896, 0.018863074, 0.018249549, -0.009195826, -0.04413438, 0.038126253, -0.024726689, -0.042310916, 0.060817327, -0.029529544, -0.011301796, 0.016440544, -0.03719274, -0.0040357634, -0.055208318, -0.0053945077, 0.00016683743, 0.048523948, -0.047518395, -0.009727608, -0.041910067, 0.011481381, 0.041669335, -0.045628723, -0.0022835988, 0.007931373, 0.0028457618, -0.04723506, 0.0155892465, -0.037643194, 0.04251411, -0.01617343, 0.013899922, 0.05314304, -0.07005217, 0.051074423, 0.004276506, 0.034925338, -0.006267885, 0.014441057, 0.03165832, 0.019052073, -0.014045286, -0.020620618, -0.06142354, -0.027991775, -0.04057869, -0.004752, 0.023776924, -0.0062610325, -0.027797632, -0.025469618, 0.023505367, 0.07632798, 0.014885388, -0.025737178, -0.025606323, -0.0053048795, -0.019835286, -0.070266664, -0.026762702, 0.013956592, 0.0041475897, 0.023057766, -0.033439912, 0.039589725, 0.017074604, -0.01494288, -0.06351049, -0.0070972648, 0.021380657, -0.05492534, -0.0071292026, 0.0021609075, -0.0033401258, 0.012391458, -0.010350805, -0.043552417, 0.019425346, 0.014913873, 0.011247697, -0.07861832, -0.016565498, -0.0004749286, 0.034736775, 0.054577313, -0.028951192, 0.021413479, -0.056633968, 0.026781078, -0.033931144, -0.05792883, -0.044020824, -0.023642763, 0.031371202, 0.019975632, 0.037628114, 0.028702319, -0.047766753, 0.005509306, -0.030425927, -0.009551433, 0.045577165, -0.019587543, 0.017430767, -0.011679558, 0.021463836, 0.017929016, 0.020825747, 0.008381306, -0.010006991, -0.019761473, -0.01574245, 0.07451631, 0.0030088709, 0.0064318134, -0.07845525, 0.031088289, -0.0588768, 0.040991846, 0.03224407, -0.009372021, 0.006702705, 0.038151614, 0.027520489, 0.033426374, -0.030102279, 0.002290219, -0.022885066, -0.019002706, -0.0057200985, -0.014132108, -0.045869667, -0.020132093, 0.045647997, 0.004848787, -0.046490215, -0.013705335, 0.014848286, 0.017410511, -0.094921, 0.024176218, 0.002775107, -0.02595579, 0.038281474, -0.034497328, 0.00011403805, 0.007770969, 0.0037810318, 0.018224992, 0.014199661, 0.023864055, -0.0046408284, 0.021383103, -0.11229756, 0.03842161, 0.048403665, -0.072709925 ] }, { "values": [ -0.071714334, 0.0031683852, -0.026874702, -0.05099889, 0.011707114, 0.035698686, 0.023754155, 0.050435714, -0.0026423319, 0.046478305, 0.0071054962, 0.019156903, 0.020149939, 0.059246086, -0.0017425433, -0.05458822, 0.006349178, 0.0020905815, -0.07335671, -0.057499923, 0.040378887, 0.03848573, -0.040466804, -0.07123585, -0.06219585, -0.022196129, 0.011347848, -0.055175465, 0.027601065, -0.039234266, 0.011972944, 0.054226592, -0.02859337, -0.06777785, 0.022236887, 0.07626111, -0.04709976, 0.0009969445, 0.025358673, -0.05462301, -0.08302202, -0.0309095, 0.0045901285, 0.05106611, -0.05458329, 0.056446016, 0.040094957, 0.021154199, -0.05672161, 0.06782103, 0.028852874, 0.006787911, -0.03712219, 0.018821808, -0.02960278, -0.036397625, -0.058789115, -0.05262511, 0.047762603, -0.011605702, -0.0069433562, -0.0027929065, 0.010699753, -0.03699442, 0.017798305, -0.042164735, -0.025694259, 0.003805897, -0.029957619, 0.023266591, -0.05773385, 0.017033424, -0.12676267, -0.0037050373, 0.014099085, -0.015113785, 0.042093612, 0.008215631, -0.007934815, -0.013103396, 0.00057395507, 0.034529015, 0.06827096, 0.032447502, -0.0034645267, 0.0013240415, 0.03767102, -0.0010041677, -0.008048996, 0.03719011, 0.06604232, -0.0057273214, -0.057340115, 0.034711372, 0.038260404, -0.005930227, -0.033329464, -0.06368112, -0.00087701686, 0.06198755, -0.059470743, 0.010716671, -0.015489522, 0.017254474, 0.029940428, 0.009891077, -0.010964013, -0.051605027, -0.050640896, 0.030881373, -0.0124616055, -0.044988547, -0.0052802255, 0.021681394, -0.039225083, -0.04896676, -0.037319735, -0.01750658, -0.006669637, -0.026042027, 0.040398408, -0.022846201, -0.036399495, 0.057554908, 0.016831541, 0.020852368, 0.03450832, 0.01883555, -0.051009957, -0.027210284, 0.058027383, -0.07216787, 0.044969104, -0.00330794, -0.0458345, -0.035189908, 0.06821865, 0.039906956, -0.023437548, -0.0137014985, 0.027685955, -0.008741962, -0.036139697, 0.0034087864, 0.013649998, -0.027812678, -0.010400453, -0.04099371, -0.078308925, 0.055538062, -0.103757985, -0.03353831, 0.05382213, -0.008597266, -0.07494248, 0.013681264, 0.06504572, -0.014850665, 0.06457159, -0.06651636, 0.034399297, 0.0091162855, 0.007966783, 0.051104587, 0.0042112013, 0.03923475, 0.047113895, -0.039734993, -0.010733854, -0.05197716, -0.0023136993, -0.009279623, -0.030822745, -0.06979201, -0.02018943, -0.010806835, -0.045561936, 0.015616045, -0.010527535, 0.0025218092, 0.03260688, 0.056997474, -0.03152563, 0.0015781554, -0.033947863, 0.029740624, 0.0021412836, 0.090504855, 0.050819065, 0.036341406, -0.02624438, -0.0048824497, 0.010755257, 0.05972549, -0.025958098, 0.042762958, 0.06324058, -0.03366509, 0.037423998, -0.058115922, 0.052573662, -0.02274566, -0.010858555, 0.0012815574, -0.03246102, -0.009099821, -0.04696503, -0.023581456, 0.02844851, 0.014119368, -0.011486086, -0.01852999, 0.035811525, -0.0380371, -0.00013091162, -0.002756119, 0.075169824, 0.071774974, 0.056424182, -0.019371863, -0.035551123, 0.006545951, 0.02100758, -0.020274855, -0.027892388, -0.024156503, 0.00051047036, -0.016840527, -0.048376296, -0.035734434, -0.018278932, -0.017019147, -0.0029062307, -0.0017961247, 0.0046649314, 0.017851667, -0.01067182, 0.008823817, 0.052168645, 0.034031812, 0.017701712, -0.0026157019, 0.0009260318, -0.0016805882, -0.0004162116, 0.012457944, 0.030480586, 0.1271791, 0.0039992426, -0.025267253, -0.020361371, -0.009445109, -0.039750937, -0.008018744, -0.025892483, -0.050228246, 0.018703261, -0.07465561, -0.021125702, -0.02662496, 0.011881005, 0.0070890915, -0.03621194, -0.028262703, -0.0024062388, -0.07873038, -0.00034018513, -0.033373307, 0.030333966, -0.013370884, -0.003331528, -0.008503508, -0.053954195, -0.049953368, -0.018316377, 0.0275902, -0.039107997, -0.0008638412, -0.03464564, -0.056472607, 0.023075351, 0.018856179, -0.011140489, -0.028150635, -0.0065053757, -0.019730007, -0.031489648, 0.039412625, -0.010647306, -0.038155373, 0.062857576, 0.05988453, 0.0024907927, -0.0128014395, 0.057317503, -0.021819144, -0.0027690534, 0.023741223, 0.01252426, 0.025402676, -0.0055887364, 0.048974346, -0.024602516, 0.010296197, -0.019265, 0.040962193, -0.039154116, 0.015620852, -0.009673677, -0.010351497, 0.01639436, 0.009771829, -0.026285088, 0.0035352455, 0.00032223362, -0.007838175, -0.14420845, 0.012266927, -0.037531637, -0.0044407384, 0.03444296, -0.002325019, -0.020206366, -0.031757433, 0.026743952, 0.02223714, -0.017608995, 0.014137598, 0.012215214, -0.03260203, 0.015209707, 0.02031816, 0.040285308, -0.026902694, 0.02771746, -0.0047082794, -0.018252734, 0.015655302, 0.077121034, 0.015064825, 0.07626582, 0.020486565, 0.048024498, 0.03209609, 0.012190996, -0.06953873, 0.03325586, -0.0068258606, 0.056329567, -0.03944174, -0.04305452, 0.028131401, -0.0024752857, 0.012798791, 0.039866224, 0.006363551, 0.000519792, 0.026201934, 0.0023090842, -0.038980767, -0.02674624, 0.033255477, -0.009142364, -0.044426184, 0.020056278, 0.0041658045, 0.024180364, 0.0265476, -0.02068644, -0.045405228, 0.008895441, 0.04052324, 0.003937419, -0.00034434392, 0.0060270927, -0.050934486, 0.0039937384, 0.003977397, 0.0017372185, -0.050032265, -0.03895555, -0.045512177, -0.018909633, -0.0053082523, -0.039247867, 0.029932214, -0.053553607, -0.010740588, 0.024270248, -0.00831805, -0.02459867, 0.06305366, -0.010037824, 0.005190235, -0.051472932, 0.057943333, -0.023268072, 0.002037751, 0.024820529, -0.021396875, -0.052336518, -0.012816098, 0.04303623, -0.020294828, 0.017809067, -0.008543953, 0.03515004, 0.021708729, 0.027281018, -0.018239012, 0.05471504, -0.02515808, -0.0009696927, -0.028645575, -0.029311774, 0.008418437, 0.019035745, -0.04072494, -0.015311294, 0.005194185, -0.029218942, 0.024421249, -0.010193677, 0.051856462, 0.0026432357, -0.0819654, 0.037450865, -0.030898556, 0.05551134, 0.03485137, 0.0037218535, 0.054838896, -0.05695206, -0.009663288, 0.041818984, -0.019509865, -0.009611931, -0.0041181473, -0.024865154, 0.037561465, -0.00011620286, -0.0080102235, 0.06391995, 0.020029584, -0.0031646204, 0.003901248, 0.03236061, -0.018455327, -0.05371285, -0.0717796, 0.0008065679, 0.046685643, -0.0058025015, -0.051744103, 0.03309837, 0.031822838, 0.034991886, 0.04562017, -0.032422714, 0.03173232, -0.10398829, -0.012777951, 0.045495052, 0.041384686, -0.017326353, -0.03970739, -0.040247966, 0.0063030035, 0.018772777, 0.06815793, -0.0045018694, -0.042024545, 0.020235728, -0.030103657, 0.02853807, 0.025137635, -0.007520119, 0.022662304, 0.029235119, 0.04152415, -0.032728985, 0.018532768, -0.0056625544, 0.051821064, 0.03491939, -0.057465337, -0.00031151858, 0.04979622, 0.035171792, 0.011587386, 0.037680615, 0.08110692, -0.0021215512, 0.018280374, -0.035969313, -0.03410031, 0.03940911, -0.009581198, -0.005520463, 0.027580708, 0.059387475, 0.0033890058, -0.050929762, -0.040288296, 0.008211088, 0.035608664, -0.02688569, -0.04709491, 0.033621494, -0.021119624, 0.035834227, 0.012365765, 0.046290714, 0.00632704, -0.008150891, 0.046082243, -0.040192224, 0.0033511983, -0.013733119, 0.06590238, 0.02794063, -0.0425252, 0.029617453, -0.06561653, -0.067870006, -0.015036969, 0.004983122, 0.025669677, 0.04114424, -0.01699398, -0.021423122, 0.031299345, -0.00034858368, -0.016609006, 0.04674878, 0.04529373, 0.00570704, 0.017270148, -0.018352691, 0.030314028, -0.004317069, 0.0060367356, 0.051432963, 0.020796737, 0.060513943, -0.001116751, 0.033130083, 0.018469289, 0.016630504, 0.081945114, -0.01131921, -0.020183451, 0.039428703, 0.004767454, -0.019663904, -0.0247397, -0.010328467, -0.032461263, -0.037503038, -0.009271877, 0.024824282, -0.0056262175, 0.017967978, -0.004461621, -0.0097599225, -0.009488677, -0.025954109, 0.016276678, -0.015682647, -0.0425076, 0.00085196923, -0.028545415, -0.028596168, -0.039376464, 0.00892376, -0.012068267, -0.04046438, 0.017746983, 0.04064609, 0.012678655, 0.06426912, 0.03178758, 0.0782673, -0.03257782, 0.023390934, -0.0035339242, 0.052525297, -0.04531328, 0.016244968, 0.00633041, 0.00044051543, -0.008141158, -0.0024163653, -0.009210471, 0.067149825, -0.033008, -0.0029942668, -0.04121899, 0.07905229, 0.016359324, -0.020580638, 0.02540876, 0.012760303, 0.056063298, 0.009934536, -0.011719626, -0.050128013, -0.026777986, 0.037314825, -0.040223517, -0.057502188, 0.024613403, 0.022937618, -0.012935571, -0.036835782, 0.02099497, -0.0480565, -0.027044045, 0.04443885, -0.034501534, -0.021342518, 0.007905919, -0.05061758, 0.011374015, -0.051522654, 0.00023893261, 0.002843187, 0.036629863, -0.051385634, -0.030521693, -0.03158062, 0.0053678853, 0.032467663, -0.04389206, 0.013431709, 0.0031592415, -0.010586133, -0.045348156, -0.015829323, -0.031779, 0.03584133, -0.025954956, 0.020042218, 0.042958003, -0.0659723, 0.05391217, 0.0035687692, 0.041749474, 0.00421663, 0.026202269, 0.026957542, 0.03992684, -0.009181006, -0.020349512, -0.08474768, -0.018989122, -0.028847214, 0.02316394, -0.0008233294, -0.0099340435, -0.02663626, -0.029012036, 0.020601405, 0.06730628, -0.0071220323, -0.0037879231, -0.034644008, -0.008728986, -0.025660865, -0.06097944, -0.019008612, 0.007018075, -0.016440514, -0.0049302205, -0.03128866, 0.033935934, 0.017912958, -0.008627725, -0.059239637, 0.0005278088, 0.0050270865, -0.056562874, 0.0042214594, 0.0027926199, -0.0023950634, 0.008686578, -0.013203129, -0.018664822, 0.01919656, 0.009445404, 0.005796989, -0.09380326, 0.0072305133, 0.013542539, 0.05284575, 0.06717151, -0.021296872, 0.002921861, -0.049180623, 0.045696754, -0.04163423, -0.05742974, -0.030348921, -0.037468955, 0.021870863, -0.0032609976, 0.06597047, 0.02064292, -0.047611974, 0.010561681, -0.00043145247, 0.014345146, 0.05469299, -0.029221747, 0.01089534, 0.012353509, 0.010145628, 0.020356145, 0.024414213, -0.009086484, -0.002388088, -0.0263975, -0.027997078, 0.07993561, 0.01740932, -0.01389373, -0.068681985, 0.037846934, -0.04797864, 0.050881967, 0.030760061, 0.014883422, 0.0012446952, 0.04718871, 0.025185538, 0.04038566, -0.014710666, -0.00038996057, -0.045219067, -0.018656984, -0.025317902, -0.0027217285, -0.07184655, -0.027115854, 0.042260442, -0.01940916, -0.03995109, -0.019100502, -0.003884275, -0.025266979, -0.088999845, 0.030467823, 0.010762051, 0.004923865, 0.0376974, -0.023859136, 0.01665762, -0.00951169, 0.025052637, 0.00400222, 0.02183009, 0.008843658, 0.011248115, 0.008845205, -0.13676383, 0.00289873, 0.05520533, -0.059025526 ] }, { "values": [ -0.032669127, -0.031074539, -0.046029523, -0.06692243, 0.03310394, 0.011799552, 0.027922168, 0.055221613, 0.01292216, 0.046440072, 0.017299274, 0.03496333, 0.011821064, 0.059846614, -0.018797558, -0.041437026, 0.03638373, -0.0072156815, -0.037042394, -0.03677009, 0.0069309124, 0.043112755, -0.039570678, -0.0554386, -0.032289255, 0.025378786, 0.0060122684, -0.062008563, 0.012493605, -0.069559105, 0.00069629727, 0.039461933, -0.014711787, -0.04202794, 0.03500864, 0.0356283, -0.03772305, -0.0014994199, 0.015580854, -0.03837559, -0.058313563, -0.046574056, 0.012580776, 0.039823238, -0.0664461, 0.028908005, 0.029335482, 0.0132850455, -0.069365256, 0.053716525, 0.046460588, 0.009347642, -0.0229277, 0.02781187, -0.011794401, -0.026596338, -0.0653191, -0.056138888, 0.057227224, 0.0005976177, -0.00142334, 0.009293366, 0.008163818, -0.015863795, 0.007984619, -0.05171747, -0.01556289, -0.02842449, -0.043558475, 0.018222803, -0.048405584, 0.016096897, -0.09853907, -0.009926146, 0.007207807, -0.029712101, 0.012833148, 0.029475754, -0.0072379885, 0.006925346, -0.00395939, 0.012302203, 0.093445435, 0.06833901, 0.034284536, 0.011912249, 0.03230462, -0.015550288, -0.020806992, 0.0046801073, 0.07342694, -0.03453866, -0.046313427, 0.019519567, 0.024077313, -0.028168257, -0.038684, -0.06516662, -0.006583668, 0.07705103, -0.05364971, -0.042924557, -0.031740356, 0.013770744, 0.04357353, 0.03755911, -0.01890168, -0.050949875, -0.023610847, 0.03285769, -0.04070954, -0.043895677, -0.020379994, 0.031396765, -0.019962024, -0.06682544, -0.050405152, 0.0073842173, -0.027447505, 0.008598185, 0.046203263, -0.025105907, -0.029874662, 0.06483209, 0.024286196, 0.0067861206, 0.068761565, -0.0147117255, -0.040006183, -0.040282648, 0.0395694, -0.07373805, 0.0045702653, 0.047284883, -0.048371844, -0.066249624, 0.016843695, 0.05315946, -0.04476512, -0.003361916, 0.007859638, -0.027414137, 0.0049773715, 0.008547499, -0.008511857, -0.02835526, 0.016274685, -0.0141513, -0.06429455, 0.059059527, -0.09946418, -0.01017418, 0.032795258, -0.014414813, -0.06548744, 0.031150915, 0.055585723, -0.025131173, 0.034237895, -0.046623424, 0.046012037, 0.030124648, 0.012239721, 0.049145076, -0.012059672, 0.025454437, 0.056468517, -0.036115743, -0.031112451, -0.06792071, -0.030293196, -0.00435684, 0.0044432716, -0.04845474, -0.009895269, -0.006418856, -0.066676244, 0.0020362954, -0.04219332, 0.017068375, 0.014200873, 0.060395036, -0.030144451, 0.020742431, -0.0036809759, 0.0080784, -0.017605515, 0.085643925, 0.023236925, 0.043616924, -0.0036941126, -0.030880103, 0.026655616, 0.04787585, -0.005771165, 0.055214144, 0.044295546, 0.015315018, 0.008047019, -0.0675677, 0.026988452, -0.0004788328, -0.04051468, -0.009375953, -0.032726858, -0.014289702, -0.06452484, -0.040745806, 0.028537806, 0.00094885996, 0.015080106, -0.0027769, 0.0036537554, -0.043151382, 0.0043135104, -0.017822215, 0.0702413, 0.03933177, 0.046370387, -0.03081967, -0.0032734822, -0.007477047, 0.027049316, -0.03828507, -0.02133101, -0.03013895, -0.0018094444, 0.00035019184, -0.03962711, -0.035197075, -0.041011896, -0.039836843, 0.0073701916, -0.014688856, 0.024006452, 0.040186957, -0.004505175, -0.008659857, 0.025525741, 0.041247472, 0.016642777, 0.014715038, 0.02553044, 0.0028640702, -0.025960006, -0.0005665645, 0.042057075, 0.10013857, -0.003672767, -0.013994675, -0.022639127, 0.012780956, -0.052018534, -0.02512092, -0.027869899, -0.021533139, 0.0072159455, -0.05478116, -0.019068774, -0.00589612, 0.024796491, 0.029114645, -0.041054808, -0.042281434, -0.013530683, -0.11524026, -0.014876413, -0.028304206, 0.03578518, -0.013033886, -0.0003118319, -0.0016450209, -0.085390784, -0.055664316, -0.0037285532, 0.04564302, -0.031944025, 0.012630808, -0.05707085, -0.06525059, 0.020973746, 0.027760731, -0.030702176, -0.034066826, -0.03183026, -0.0072463197, -0.014148622, 0.043920316, 0.0031116938, -0.040619966, 0.06378422, 0.05030317, 0.0016006243, 0.0046289475, 0.055388734, -0.013213992, -0.024775736, 0.01920551, 0.050408844, -0.013086724, -0.023169316, 0.043739475, -0.00065624097, 0.04380101, -0.01777977, 0.01612743, -0.06732667, -0.00046570023, -0.009470601, -0.0040940354, 0.008932727, -0.0017513001, -0.015579764, 0.0022495762, -0.0124633005, -0.0014014516, -0.116696075, 0.017404051, -0.0364811, -0.018963518, 0.008632405, 0.02902279, -0.035440374, -0.026763534, 0.01498792, 0.035022013, -0.017964708, -0.009848207, 0.02002244, -0.02328896, 0.004787963, 0.016652392, 0.026714638, -0.035159647, 0.0074162795, 0.012258942, 0.008611821, 0.03350416, 0.050710075, -0.0021903873, 0.046631455, 0.02052075, 0.021116745, 0.01980432, 0.0029104797, -0.04415182, 0.014453543, -0.0060669575, 0.04260924, -0.009672162, -0.016137246, 0.02594178, -0.015489317, 0.027307888, 0.043398317, 0.053704202, 0.0012346632, 0.072564825, -0.0025856069, -0.012902289, -0.027840523, 0.0044851624, -0.024538964, -0.03538375, 0.014663777, 0.016570771, 0.017013164, 0.046623576, -0.015827818, -0.040880293, 0.0008468503, 0.041207556, 0.012534094, 0.0043933517, 0.03123936, -0.07134547, 0.0013891807, -0.005167865, -0.022859843, -0.032382887, -0.044984907, -0.050348, -0.018769303, -0.016705189, -0.026661506, 0.027049515, -0.056911077, -0.022282371, 0.035973452, 0.003414589, -0.03102374, 0.0514777, -0.0060131554, 0.012585436, -0.041918833, 0.03483891, -0.019133573, -0.0017944, 0.0011353374, -0.0104345055, -0.06942636, -0.018886305, 0.04037466, -0.033833135, -0.0010866389, -0.011239634, 0.037940063, 0.06781408, 0.042895306, -0.03452788, 0.03128564, -0.05050648, 0.007632771, 0.006712591, 0.0029251585, 0.042983226, 0.0359831, -0.05716377, -0.016817804, 0.0112703005, -0.007898735, 0.01751032, -0.026205983, 0.041110154, 0.012922969, -0.09297095, 0.028716039, -0.0093818735, 0.049467284, 0.014811927, -0.0052579334, 0.044820298, -0.03377175, 0.010877866, 0.011104813, -0.028361363, 0.0050803986, -0.010280927, -0.021152787, 0.013321107, 0.006616735, 0.008820312, 0.052739535, 0.028135221, 0.009367266, 0.030778417, 0.04176859, -0.008382768, -0.04879831, -0.07636421, 0.011265339, 0.051644184, -0.0072503295, -0.0532596, 0.016877113, -0.0049541094, 0.024670133, 0.05993637, -0.021996034, -0.0074228393, -0.09038177, -0.015837818, 0.048529472, 0.04016719, -0.012287628, -0.005788112, -0.04050706, 0.0045240214, 0.031268466, 0.047740526, 0.010443299, -0.02689719, 0.021298911, 0.0029037518, 0.039005205, 0.004546147, -0.02865437, -0.01876984, 0.03426228, 0.035390742, -0.016650464, 0.030027362, -0.008040794, 0.04387137, 0.029572157, -0.06888051, -0.021240268, 0.016379923, 0.018295998, 0.022835886, 0.04025192, 0.08366341, -0.0027840633, 0.034692984, -0.039005674, -0.047879804, 0.039832626, 0.004557998, -0.033224843, 0.0012168, 0.07242925, -0.012985374, -0.06385405, -0.024408601, -0.010450297, 0.043648247, -0.0431709, -0.021428294, 0.03135537, -0.01221895, 0.03801611, 0.0114169335, 0.0695424, -0.042050794, -0.02338476, 0.044254903, -0.023545083, 0.030590165, -0.028950462, 0.047852106, 0.006866649, -0.0062765586, 0.04504275, -0.070521444, -0.07065384, 0.0032391818, -0.015358209, 0.025265148, 0.046725973, -0.038219295, -0.024659734, 0.031190805, 0.03525548, -0.016698658, 0.065122925, 0.051827252, -0.0060355905, 0.017648004, -0.03003791, 0.019100016, -0.04154965, -0.03927075, 0.07708622, 0.020028103, 0.051984224, 0.0060207695, 0.04702721, 0.0024823826, 0.011744991, 0.085897535, -0.016046446, 0.0013716896, 0.025061255, -0.009628863, -0.022109974, -0.037088767, -0.0068353135, -0.033035792, 0.008310553, 0.0047598304, 0.050271552, 0.005891754, 0.015365357, 0.0011162718, -0.015181578, 0.020194173, -0.031899974, 0.034538325, -0.035583273, -0.043957606, -0.015953464, -0.02326714, -0.02319084, -0.05897656, 0.016746508, -0.017818408, -0.05165645, 0.015295484, 0.045793384, 0.035519462, 0.06713033, 0.035607077, 0.06732158, -0.013734534, -0.001482468, -0.004487038, 0.05891998, -0.0703168, 0.0045126243, 0.0015957216, 0.0035150433, -0.04314058, -0.025645219, 0.0026371104, 0.07024171, -0.024681458, -0.037746772, -0.024492446, 0.0673264, 0.06693156, -0.025688274, 0.020188358, 0.00091470324, 0.029110005, 0.012533437, 0.009603509, -0.045132972, -0.02436535, 0.011163628, -0.04349048, -0.055376917, 0.05488573, 0.024027567, -0.0070132306, -0.057190806, 0.007314437, -0.039081447, -0.054636203, 0.011617425, -0.029173668, -0.026355118, 0.028618576, -0.040730443, -0.010611693, -0.046869222, 0.027888324, -0.007376779, 0.020314878, -0.059963252, -0.052492484, -0.0035813025, 0.030412382, 0.059037216, -0.005006203, 0.011223585, 0.009998071, -0.00453106, -0.042883065, -0.0042012865, -0.010571381, 0.04164584, -0.014618301, 0.018839896, 0.07108868, -0.038680635, 0.038803525, 0.025536412, 0.025156105, 0.011533732, 0.023153504, 0.0075138933, 0.03818725, -0.028257426, -0.037828997, -0.06561811, -0.012311007, -0.048892573, 0.042860277, 0.0071926927, 0.031327106, -0.014748634, -0.05334839, 0.048941348, 0.03171564, 0.0016936533, 0.015168242, -0.023848658, -0.0013094959, -0.02412021, -0.03571509, 0.0018714168, 0.009395723, 0.01903654, -0.0011678353, -0.028776538, 0.04044717, 0.020837342, 0.029821018, -0.05016362, 0.040264826, 0.01039988, -0.04674111, -0.0037257732, -0.0039021147, -0.018479899, 0.020512361, -0.009833627, -0.022058714, 0.018616086, 0.0003249797, -0.002424758, -0.070902646, -0.03918403, 0.024489881, 0.037114352, 0.06708377, -0.010250005, 0.022515958, -0.0705387, 0.05070428, -0.042543553, -0.023560317, -0.05287448, -0.021816364, 0.016015386, 0.023329511, 0.07219602, 0.008150806, -0.06678892, -0.01546736, -0.023804529, -0.0054936493, 0.091836005, 0.00870498, 0.009032188, 0.0048850025, 0.007935956, 0.03153355, 0.01355102, -0.0050991, -0.009404662, 0.00206847, -0.031919993, 0.075625926, 0.011209616, 0.01999968, -0.07807291, 0.05672316, -0.033256125, 0.081025384, 0.03435688, 0.009475223, 0.005722286, 0.053712185, 0.0074421186, -0.0045071063, -0.0210723, -0.019103969, -0.057144865, -0.03681077, -0.039906323, -0.016609361, -0.06766296, 0.0055327183, 0.009590425, -0.016476505, -0.050304245, -0.03248513, -0.021714995, -0.0011702942, -0.07018615, 0.0053403834, 0.003819394, -0.0016485876, 0.01683828, -0.025678584, 0.008392647, -0.027323147, 0.03148761, -0.007212243, 0.00020517866, -0.020686634, 0.014709678, -0.0024323491, -0.11868226, 0.00054576393, 0.034949392, -0.07523173 ] }, { "values": [ -0.052183308, -0.03167839, -0.022821588, -0.05631324, 0.04045933, 0.050645564, 0.026916588, 0.029721979, 0.0031941887, 0.040989473, 0.018809047, 0.020058066, 0.03136184, 0.03991656, -0.0016777079, -0.012455174, 0.042522047, 0.010335765, -0.039014913, -0.028337194, 0.050481204, 0.017817521, -0.04289724, -0.028634308, -0.04305632, 0.009647479, 0.022581033, -0.04678349, 0.0015040612, -0.07750608, 0.0062174033, 0.05232496, -0.05134016, -0.057661187, 0.064041846, 0.07823473, -0.048858814, -0.02611083, 0.021304158, -0.057874586, -0.06858398, -0.016877523, 0.010663131, 0.043829028, -0.077039905, 0.02772326, 0.022660917, 0.051213946, -0.039386764, 0.036406405, 0.036896702, -0.01950571, -0.025009695, 0.028212454, -0.020036967, -0.056376364, -0.102716535, -0.04205621, 0.064383626, 0.018094506, -0.009934623, 0.010169481, 0.002344109, -0.032174353, 0.0016625421, -0.04556416, -0.027730238, -0.021135695, -0.04221485, 0.034207582, -0.0248801, 0.008437879, -0.1032408, 0.015791204, -0.0004821303, -0.040391617, 0.012373529, -0.001988687, -0.018141424, 0.021223526, 0.013726847, -0.002147536, 0.06335799, 0.061811555, 0.030069977, -0.0072001847, 0.03307291, -0.043510538, -0.029218934, 0.03270077, 0.09877741, 0.00050043483, -0.046086647, 0.0018504241, 0.026639843, -0.018956264, -0.054123215, -0.07806297, -0.0010713753, 0.05180324, -0.063216, -0.043495256, -0.008137783, 0.0010594466, 0.041140337, 0.020294663, -0.02678427, -0.054297116, -0.017854368, 0.011744907, -0.050078463, -0.020013934, -0.034659043, 0.031237839, 0.007319534, -0.054259192, -0.047386937, 0.006446891, -0.0032976053, -0.0007517326, 0.04761819, -0.023743158, -0.048073173, 0.06423422, 0.050900977, -0.0005672856, 0.03606726, 0.015655525, -0.049797256, -0.031513914, 0.072637446, -0.054046206, 0.023014268, 0.0062261363, -0.059504986, -0.04361288, 0.05523366, 0.039679755, -0.047666814, -0.016295282, -2.1847054e-05, -0.008606232, -0.010519664, 0.037005037, 0.0076942854, -0.021955961, 0.0070828362, -0.01692361, -0.049749307, 0.06764229, -0.105328396, -0.019827751, 0.044785384, -0.002297165, -0.046161093, 0.08572394, 0.056711495, -0.030207954, 0.039911218, -0.059155576, 0.055031642, 0.029148033, -0.01562604, 0.03438493, -0.007940468, 0.014995927, 0.028071595, -0.025547594, -0.024112387, -0.065220594, -0.019872593, 0.010164229, -0.0129709495, -0.04644886, -0.026515199, 0.018989854, -0.04220364, -0.016605014, -0.08024867, 0.015130803, 0.0015618856, 0.083627366, -0.021103371, 0.016460622, 0.0049800766, 0.018728474, -0.02168299, 0.04871056, 0.022743324, 0.026449338, -0.022355204, -0.019623764, 0.017799212, 0.05873331, -0.014590631, 0.068063915, 0.03296143, -0.0027759974, 0.028269917, -0.03641396, 0.038726863, -0.0151074855, -0.032346386, -0.012546871, -0.047950745, 0.01105663, -0.03174308, -0.027093004, 0.029118963, 0.0027545276, 0.030568665, -0.013844203, 0.02033353, -0.05038477, -0.005875726, 0.018764116, 0.08531611, 0.045852944, 0.058229692, -0.029762598, -0.027680626, -0.008963497, 0.014505069, -0.043146275, -0.036014892, -0.02338058, -0.0039873025, -0.015414148, -0.05639372, -0.02725532, -0.0303273, -0.022303812, -0.0008107578, 0.010252713, 0.0037385514, 0.03528291, 0.0031422926, -0.004486128, 0.02541272, 0.026454879, 0.029335367, 0.023975717, 0.022992112, -0.031110492, -0.028078755, 0.024279213, 0.03265747, 0.08912547, 0.0021951755, -0.031642396, -0.0135271195, -0.004550516, -0.033239193, -0.00026190723, -0.009920485, -0.025015663, 0.023211813, -0.059863612, -0.0117440475, 0.009249603, 0.04271754, 0.03095335, -0.03322587, -0.010623422, -0.02571592, -0.08970631, 0.0007472261, -0.022596976, 0.039666962, -0.011085843, -0.00030612145, -0.0020251719, -0.096637696, -0.030327573, 0.013381889, 0.04703604, -0.03904747, 0.005795555, -0.056082632, -0.07004661, 0.020411849, 0.016831411, -0.045292262, -0.029932963, -0.022691077, -0.021171838, -0.01710244, 0.037504148, -0.016744038, -0.040639434, 0.061157025, 0.042497735, -0.0024492978, -0.011906213, 0.03677271, -0.011106872, 0.00076673576, -0.011492065, 0.037531335, 0.003927543, -0.013258227, 0.058558688, -0.017137647, 0.018274548, -0.010769559, -0.0075028185, -0.05072137, 0.0031612865, 0.017476857, 0.010943509, 0.023082592, -0.012968578, -0.00969936, 0.018845964, -0.0037968871, 0.0069316584, -0.1343195, 0.0057198843, -0.020842467, -0.004708408, 0.033232555, 0.019091062, -0.028582571, -0.046549313, 0.03746591, 0.019473447, -0.013727714, -0.020554818, 0.024592862, -0.021975452, 0.019894963, 0.0027902287, 0.015930165, 0.00023364645, -0.0009342834, 0.009792518, 0.01122745, 0.047777265, 0.06418445, -0.019175656, 0.06225325, 0.020538105, 0.033494044, 0.043280695, -0.008321273, -0.067442186, 0.03333111, -0.016599137, 0.03398001, -0.024200836, -0.024735738, 0.016885623, -0.017316809, 0.009448217, 0.046693407, 0.035138514, 0.008324564, 0.053726, -0.003399234, -0.0131500885, -0.021197673, 0.008584334, -0.0018257367, -0.033965558, 0.051529802, 0.003284683, 0.0020507379, 0.03564689, -0.0088728, -0.033466183, 0.029111028, 0.03886293, -0.0018550968, 0.014493898, 0.035076216, -0.051123098, 0.0075421734, -0.014644317, 0.010503427, -0.038108718, -0.046315107, -0.049422897, 0.0012704199, 0.014679341, -0.046500962, 0.035942666, -0.053732242, -0.019628229, 0.029071877, 0.021122647, -0.015319294, 0.06574866, -0.01664988, 0.022607137, -0.04806932, 0.056921065, -0.031562794, -0.0010047838, 0.035057478, -0.014650294, -0.071303874, -0.025086967, 0.06810934, -0.021465508, 0.0028342581, -0.0067027537, 0.04956085, 0.05162277, 0.027069042, -0.05446667, 0.030610153, -0.010028436, -0.012901914, 0.0017772095, -0.023179358, 0.0037238456, 0.028390918, -0.05447049, 0.0065573514, 0.008500143, -0.019484429, 0.035603274, -0.004127387, 0.020302286, -0.01878027, -0.08958438, 0.0048721167, -0.025829248, 0.03642659, 0.0054433886, -0.021045754, 0.0488294, -0.04169871, 0.0011115574, 0.022112133, -0.018208556, -0.00702225, 0.0002361126, -0.04578593, 0.01299403, -0.0021633904, 0.0036840457, 0.039081387, 0.021165745, 0.017091082, 0.047974493, 0.034908015, 0.017296983, -0.058726948, -0.05584608, -0.006321783, 0.05009197, -0.015457785, -0.056770835, -0.013469827, -0.0011851017, 0.046705507, 0.05332575, -0.031298567, 0.030165495, -0.0978386, -0.012125211, 0.052260984, 0.042404573, 0.0015909178, -0.017693404, -0.0541324, 0.011071551, 0.003718273, 0.042482443, -0.0061002113, -0.03376656, 0.032146655, -0.009484406, 0.023555161, 0.007545633, -0.03820178, -0.026758105, 0.026901428, 0.026951203, -0.027575867, 0.031174103, -0.0005914612, 0.039728247, 0.043938205, -0.07847971, 0.0052581136, 0.02629947, 0.028893903, 0.016787436, 0.0441375, 0.06837557, 0.004756243, 0.024944982, -0.057425205, -0.068189524, 0.019079808, -0.025779424, -0.026451152, 0.015857091, 0.05468455, -0.03751702, -0.05064422, -0.04194588, 0.019958688, 0.021011265, -0.039355572, -0.0077254055, 0.029338125, -0.026880436, 0.016153099, 0.024054576, 0.065930516, -0.018850813, -0.041222464, 0.029711507, -0.045841876, 0.024334343, -0.013082339, 0.049117412, 0.009216253, -0.02195285, 0.035094272, -0.09178511, -0.048395704, -0.020986117, -0.00015276938, 0.047765613, 0.04247386, -0.012743805, -0.029073786, 0.034215044, 0.03873914, -0.006219912, 0.04395939, 0.03268302, -0.01353716, 0.007923756, -0.023277821, 0.018757287, -0.047589734, -0.0063448516, 0.05424817, -0.009442408, 0.04711266, -0.012117213, 0.040284894, 0.0076355846, -0.00017611684, 0.07232114, 0.0027919258, 0.014199506, 0.004903896, 0.0142581845, 0.00090246164, -0.03649356, -0.0001146934, -0.05872242, -0.019178882, 0.009684433, 0.039169647, 0.00045157704, 0.008021074, 0.003911458, -0.023474362, 0.005323144, -0.024603834, 0.046980456, -0.018623596, -0.061577894, -0.001689268, -0.01700905, -0.038547393, -0.04620189, 0.00498611, -0.031677835, -0.049419396, -0.005382916, 0.034163103, 0.01677118, 0.07341568, 0.010709843, 0.060956914, -0.029452333, -0.010944233, -0.0064373496, 0.033206545, -0.0691784, 0.014718208, 0.0034726635, 0.01762859, -0.0007723874, -0.008482775, -0.010586367, 0.050188012, -0.032601554, -0.037353884, -0.027757308, 0.063062005, 0.03436883, -0.009869451, 0.05047736, -0.0053111855, 0.03415136, -0.010767672, -0.014724074, -0.034347363, -0.010338311, 0.03027478, -0.055582672, -0.031528313, 0.06441178, 0.04404301, -0.00014870983, -0.05090476, 0.01432848, -0.045192692, -0.048152637, 0.025628423, -0.024476264, -0.040010612, 0.025570985, -0.032073077, 0.0015654365, -0.040444072, 0.0011638959, -0.008863523, 0.024371881, -0.081783555, -0.062594496, 0.0049943128, 0.010974484, 0.054577485, -0.020260548, -0.0014954321, 0.009590323, 0.010479962, -0.028148819, 0.020176774, -0.028839191, 0.03460426, -0.037785124, 0.013528073, 0.04210084, -0.060127735, 0.044949066, 0.018638372, 0.02412793, 0.022389779, -0.0015444843, 0.021256749, 0.05404064, -0.005528543, -0.032525912, -0.0911177, -0.0123802405, -0.027048573, 0.026664112, 0.030809257, -0.005815912, 0.0024100966, -0.034615178, 0.023122987, 0.020474609, 0.0013195586, 0.02165387, -0.000976493, 0.0022661053, -0.00087033305, -0.030803679, -0.005258006, 0.0039617266, 0.0054773907, 0.023659738, -0.045075826, 0.011178081, 0.03234992, -0.0040384033, -0.03677514, 0.007356843, 0.0058841123, -0.03688326, 0.013428133, -0.021716718, -0.03690541, 0.038584262, 0.028841006, -0.04624273, 0.017966654, -0.029621024, -0.0024267342, -0.07464837, -0.018689957, 0.013289074, 0.04905075, 0.058833793, -0.011630707, 0.032786608, -0.038118884, 0.06184341, -0.04966552, -0.03799556, -0.057278488, -0.02089038, 0.017399736, 0.028436987, 0.06106027, -0.0018047567, -0.08053028, 0.0029619578, -0.03837458, 0.011786198, 0.11287327, 0.0023167266, 0.024058567, 0.0031825567, 0.009746313, 0.03555989, 0.018700225, -0.004568174, -0.02041742, -0.029729085, -0.016596708, 0.07659314, 0.020477029, -0.0010125928, -0.059894968, 0.019484429, -0.04526095, 0.057118002, 0.03930238, 0.011257456, -0.01617533, 0.05707303, 0.012506422, 0.0064338446, -0.01726196, 0.005443734, -0.06056992, -0.042605724, -0.016905801, -0.03157441, -0.05935791, 0.009924641, 0.009454347, -0.00585312, -0.034701582, -0.018672789, -0.0052017826, -0.028776707, -0.0798146, 0.005541222, 0.009320098, 0.034314293, 0.002284594, -0.00062752905, 0.02473445, -0.061914455, 0.020293389, 0.004696601, -0.0071849767, 0.002520612, -0.0076079955, 0.008539081, -0.12312954, 0.018805718, 0.041692365, -0.050386976 ] }, { "values": [ -0.026617179, -0.02163661, -0.031035643, -0.01766349, 0.027657473, 0.044833582, 0.04426192, 0.026708635, 0.0034054872, 0.015254091, 0.00040393753, 0.007365182, 0.042295836, 0.005782449, -0.022401705, -0.044835422, 0.04178153, 0.017458832, -0.050612193, -0.07408546, 0.0030356518, 0.04597001, -0.021532128, -0.03702017, -0.05153722, 0.026513185, 0.012827071, -0.028961984, -0.0051907357, -0.07753655, 0.005444359, 0.06684052, -0.03762767, -0.04791583, 0.028921748, 0.04485026, -0.045229923, -0.01750048, 0.028159855, -0.038767908, -0.06692407, -0.033065557, 0.020437397, 0.018578907, -0.03881446, 0.017408011, 0.04265553, 0.030349271, -0.032469913, 0.058225546, 0.028677488, -0.0067510274, 0.017249085, -0.00034609105, -0.005507271, -0.04742523, -0.08474907, -0.04808246, 0.025023289, -0.0033162802, -0.040849216, 0.011626838, 0.0022319856, -0.029996738, -0.0038718772, -0.050701275, -0.03192975, -0.027769456, -0.04836314, 0.07269949, -0.03339246, 0.01943063, -0.08589163, -0.016892783, -0.0117259845, 0.0029884228, 0.01761521, 0.02328951, -0.03136323, 0.024415273, -0.008073764, -0.022776209, 0.078495115, 0.074089944, 0.028191615, 0.0064991745, 0.02570245, -0.0594969, -0.020310521, 0.023347983, 0.10030382, -0.019988224, -0.03745858, 0.019865371, 0.009378869, -0.0034188903, -0.04445215, -0.09069337, 0.026515923, 0.0945699, -0.03614008, -0.039580006, -0.0037720574, 0.033100218, 0.031991635, 0.031490304, -0.029048666, -0.055819515, -0.03629829, 0.013007082, -0.04886005, -0.024092644, 0.015013929, 0.018174656, -0.004408871, -0.08974292, -0.013450684, 0.021778319, 0.0072481064, 0.01588001, 0.06288549, -0.051573258, -0.023590488, 0.071393736, 0.016675405, 0.006827192, 0.0629389, 0.0048297234, -0.032745276, -0.048101373, 0.087165385, -0.082585275, 0.01916655, 0.002993103, -0.051073227, -0.053663306, 0.028126255, 0.065287314, -0.031044817, -0.017002176, 0.0034514312, -0.0050641242, -0.0070134634, 0.034963246, -0.014872139, -0.0321156, -0.017675146, -0.0064394423, -0.06711838, 0.072774455, -0.090263225, -0.009381541, 0.0507466, -0.02003743, -0.038292192, 0.043952007, 0.057171337, 0.0034144917, 0.040259786, -0.04086548, 0.05285181, 0.009602423, -0.00032185865, 0.022665069, -0.026520886, -0.0037492646, 0.0468858, -0.039655145, -0.036676258, -0.028286044, -0.0021812622, -0.005970433, -0.0038835392, -0.049219627, 0.008816992, 0.01346651, -0.057748925, 0.004933681, -0.05663607, -0.019866595, 0.009841671, 0.06377339, -0.0064122286, 0.008906736, -0.005353018, 0.021419592, -0.04018868, 0.08075559, -0.0012627825, 0.02619383, 0.0015615855, -0.019551938, 0.01260315, 0.09773475, -0.016545026, 0.02832719, 0.050782483, 0.02716685, 0.0142824305, -0.037807763, 0.04865357, -0.039422713, -0.041980553, 0.0065832343, -0.05976206, 0.0020927128, -0.04148718, -0.03329129, 0.020788196, 0.00636287, 0.023116224, -0.018687895, 0.0029473903, -0.04669544, 0.0114024915, 0.005935194, 0.07756858, 0.06539839, 0.05206417, -0.026024815, -0.025145749, -0.005286131, 0.030797468, -0.055395205, -0.014897945, -0.063261054, -0.016574163, -0.04106445, -0.035944812, -0.013187891, -0.014660268, -0.032175224, 0.007584004, 0.010128996, -0.006512529, 0.020537592, -0.04077121, -0.011378035, 0.017421242, 0.022648351, 0.011323252, 0.005778458, 0.0078020478, -0.011473367, -0.016925339, 0.04742679, 0.040893137, 0.09645745, 0.02887222, -0.026020112, -0.009593756, -0.0023396534, -0.056339465, -0.035401564, -0.054616306, -0.018721769, 0.045877803, -0.046397742, 0.004689958, -0.001516821, 0.024888322, 0.008213068, -0.04296286, -0.010671387, -0.021950463, -0.09249386, -0.011108187, -0.023731388, 0.05768884, -0.015838075, 0.0022138138, 0.0046260525, -0.05199411, -0.037068248, 0.04517923, 0.028425146, -0.0153337885, 0.017730312, -0.05283933, -0.052227814, 0.015448353, 0.019821966, -0.018373523, -0.026402492, -0.03256785, -0.008482305, 0.0076154936, 0.0388841, -0.030859461, -0.067831054, 0.041193377, 0.06170094, 0.0043722466, 0.0005776016, 0.028714238, 0.0026071728, 0.01286531, 0.026536535, 0.028748885, 0.0022928563, 0.014607338, 0.083619915, -0.024733238, 0.035804402, -0.040201332, 0.032394867, -0.042551663, 0.016548537, 0.009118495, -0.002245146, 0.025443094, 0.02157246, -0.021553123, -0.007732202, -0.00042427314, -0.0016121877, -0.09898286, 0.0048303017, -0.019744031, -0.014375337, 0.029555928, 0.05073711, -0.028186858, -0.028005086, 0.05075444, 0.02002036, -0.013099349, -0.016476765, 0.008896428, -0.0055350843, 0.017998321, 0.025774218, 0.0067729917, -0.018959066, -0.0063478975, 0.013698431, 0.023670366, 0.018910905, 0.051956426, 0.00022303955, 0.058223736, 0.013429426, 0.029986136, 0.028614974, -0.0154225975, -0.064426295, 0.031012392, -0.005135112, 0.0786661, -0.04075944, -0.046816166, 0.04769218, -0.017328523, 0.0070526106, 0.028846143, 0.03007097, 0.0052885907, 0.054737173, 0.009239804, -0.017405886, -0.010003706, 0.007975436, -0.0016423347, -0.019405263, 0.008670618, -0.0098139895, 0.022391602, 0.049895518, 0.015261198, -0.059152275, 0.0044393744, 0.035544757, -0.0007574826, 0.02140952, 0.010425079, -0.07177238, 0.011580315, -0.012423108, 0.0021386703, -0.05450371, -0.05144905, -0.054677192, 0.0063336524, -0.008050917, -0.033060364, 0.030275753, -0.049326096, -0.018968247, 0.01781968, 0.014177524, -0.031619377, 0.07842285, 0.00510201, 0.0126868645, -0.04876219, 0.047336224, 0.0056312163, 0.013468927, 0.042217165, -0.015356264, -0.055871647, -0.0009613025, 0.029086089, -0.02551057, -0.009887275, -0.006524929, 0.03723948, 0.022322582, 0.045942605, -0.04424294, 0.030925894, -0.052646548, 0.028490871, -0.0060456786, -0.019260325, -0.0039624344, 0.020114645, -0.062252134, -0.018646693, -0.0038351768, -0.025193928, 0.023488143, 0.00027403925, 0.02248044, -0.0089972885, -0.08736506, -0.00084857794, -0.020317905, 0.037619967, -0.021130994, -0.03819247, 0.025898363, -0.061042905, 0.029283937, 0.016576901, -0.011109022, -0.019028977, -0.0017594616, -0.028366426, 0.016853262, 0.014918558, -0.0034058283, 0.028158756, 0.025896946, 0.008708427, 0.018481374, 0.04400483, -0.020201111, -0.018002026, -0.0639511, -0.023940796, 0.05477166, -0.014418142, -0.073720984, -0.019508043, -0.015883718, 0.013826179, 0.024169061, -0.044470705, 0.010306684, -0.06871542, -0.04242446, 0.061930582, 0.04486538, 0.01656328, -0.019877613, -0.052938495, -0.0024619019, -0.0012364718, 0.051401902, -0.0050500915, -0.03383815, 0.057362538, -0.0120344795, 0.024637265, 0.030187933, -0.036468394, -0.003099524, 0.014547513, 0.02846354, -0.022086484, 0.030587042, 0.00458122, 0.024033438, 0.06568023, -0.06263117, 0.017081598, 0.008375605, 0.019774834, -0.020956868, 0.02413224, 0.06412017, 0.0026109442, 0.02084588, -0.051763803, -0.05720679, 0.037694827, -0.05226437, -0.008223015, -0.0026294955, 0.034885805, -0.043075517, -0.053094663, -0.0523871, 0.009530738, 0.014435782, -0.015295124, -0.02336421, 0.05398782, -0.035014983, 0.024015807, 0.026932675, 0.0390517, -0.03699411, -0.06587907, 0.057117816, -0.04495628, 0.017098617, -0.013794285, 0.04870242, 0.013213245, -0.015496925, 0.040672503, -0.102481686, -0.08052427, -0.026966166, 0.012358855, 0.056476355, 0.063254625, -0.022624198, 0.004077441, 0.0074648107, 0.019946355, -0.00074475555, 0.036006868, 0.06198196, -0.0065188017, -0.011797331, -0.033270437, 0.008527338, -0.025645783, -0.024002438, 0.04712644, -0.009574097, 0.030179724, 0.01308405, 0.043062318, -0.022822104, 0.014013088, 0.091559626, -0.034308344, 0.00469582, 0.005223872, -0.033851624, -0.015980765, -0.025160614, 0.010695196, -0.02418935, -0.009925399, 0.014928373, 0.038049106, 0.0042759376, 0.030205145, 0.004416583, -0.07079891, 0.0057522347, -0.017290136, 0.062125534, -0.020983174, -0.033497524, -0.0017198087, -0.013294135, -0.040513806, -0.052621003, 0.013246392, -0.0012678927, -0.03973638, -0.016613008, 0.054527037, 0.01772119, 0.05492341, 0.058173794, 0.06586271, 0.0028675115, -0.0036326775, -0.005175444, 0.03530519, -0.07819052, 0.022696493, -0.00092336885, 0.012258392, 0.02951477, -0.015555238, -0.01631707, 0.054651346, 0.013306414, -0.020553488, -0.052465808, 0.06883012, 0.042132936, -0.020040354, 0.01800146, 0.017104289, 0.017292188, -0.0054411683, 0.022295196, -0.035943378, -0.013314401, 0.042041622, -0.03154949, -0.048518736, 0.055728573, -0.0009462349, -0.0017056183, -0.06201239, -0.0006147297, -0.053193223, -0.05606831, 0.023306428, -0.059232153, -0.011831587, 0.0071528605, -0.026557919, -0.0060360776, -0.054083604, 0.0035867852, 0.008628009, 0.012134903, -0.07939613, -0.042524252, -0.033095688, 0.0025809053, 0.049471624, -0.016932545, 0.011250923, 0.026164118, -0.013681037, -0.023129363, 0.026383042, -0.02305397, 0.034703847, -0.027379012, 0.02057492, 0.044968296, -0.03288906, 0.03759988, 0.036148433, 0.027014386, 0.016889945, 0.0118932165, 0.0061003594, 0.047046266, -0.020308558, -0.042751573, -0.06171945, -0.026008194, -0.033887047, 0.013426044, 0.014519617, -0.018276362, -0.0061803707, -0.009994309, 0.014822914, 0.020561874, -0.002302602, 0.011841491, -0.0241573, -0.004014028, -0.03577222, -0.02164779, 0.014858746, 0.021872565, 0.006582091, 0.038701974, -0.026043367, 0.039674167, 0.02226437, -0.030556055, -0.013034152, 0.013827305, 0.03688773, -0.04902968, -0.00980006, 0.0024676346, -0.019434499, 0.0033032994, 0.011127535, -0.021756012, 0.022847718, 0.0018304003, -0.015023713, -0.055638783, -0.015539219, -0.0031026339, 0.048653923, 0.116727024, -0.014030685, 0.023420932, -0.078807175, 0.031300426, -0.04821257, -0.010682334, -0.057279762, 0.00081056316, 0.019682866, 0.020167334, 0.03346501, 0.02186188, -0.07362837, 0.015092757, -0.05812436, 0.004889544, 0.08294952, 0.011888906, 0.046781223, 0.018034196, 0.018957892, 0.016839009, 0.015907066, 0.01946733, -0.014703033, -0.02702441, -0.014710347, 0.08433582, 0.024578342, 0.0005900235, -0.07908859, 0.014032379, -0.04551265, 0.059034005, 0.0052566254, 0.018787468, -0.010746506, 0.062948816, 0.005422575, 0.016823683, -0.013176378, -0.0054209926, -0.045198563, -0.019258473, 0.013147865, -0.028702253, -0.057231862, 0.014077523, 0.015575123, -0.008632721, -0.08287354, -0.026499791, -0.014960949, -0.01421235, -0.060264494, 0.019166334, 0.015962297, 0.024947802, 0.019066313, 0.010963416, 0.0028808604, -0.03965155, 0.015148686, -0.00035918143, -0.012398672, 0.018181812, 0.0036869869, 0.0068573244, -0.09434923, 0.019812217, 0.04657457, -0.059302103 ] }, { "values": [ -0.020143908, -0.009370657, -0.029473815, -0.021563334, 0.056942765, 0.04608166, 0.042823553, 0.032953307, -0.021675453, 0.0101783415, 0.0014577535, 0.0149061205, 0.028098887, 0.022642408, -0.030422136, -0.028073674, 0.03605249, -0.0076216585, -0.051402755, -0.017997714, 0.04124308, 0.03610743, -0.013920906, -0.0453856, -0.04458664, -0.0025868218, 0.027132595, -0.03622194, 0.018411769, -0.08467526, -0.003616356, 0.0677234, -0.038757093, -0.07971516, 0.029235289, 0.09029942, -0.033582065, 0.0060126944, 0.028152185, -0.039841916, -0.095906414, -0.058505554, 0.005471798, 0.045609467, -0.06885884, 0.026552338, 0.04112859, 0.017994847, -0.05124239, 0.05781395, 0.0120319165, -0.021549065, -0.016327428, 0.041637108, -0.020614859, -0.044676315, -0.06792891, -0.060966283, 0.0442479, 0.0027477734, -0.024074519, 0.034615178, -0.0055489754, -0.034634624, -0.021805035, -0.06532754, -0.040794887, -0.020499352, -0.06354556, 0.042410307, -0.033103943, 0.016112398, -0.11654745, -0.014782628, 0.019866094, -0.032316606, 0.017514708, 0.01713986, -0.01777866, 0.033815477, -0.008912594, -0.0028002756, 0.04921154, 0.067929365, 0.016797533, 0.030045219, 0.043402947, -0.04622703, -0.023060868, 0.017599462, 0.07905807, 0.007982758, -0.04125183, 0.01797077, 0.0022125037, 0.010163351, -0.06024709, -0.07365735, -0.0037163477, 0.083315246, -0.06656414, -0.021323407, 0.0055602468, 0.010425113, 0.02262992, 0.02098858, -0.023778275, -0.06592192, -0.026957996, 0.039566718, -0.043267537, -0.0019256899, 0.008226621, 0.03016403, 0.011745278, -0.054137275, -0.037183393, -0.023745747, -0.04367462, -0.012930051, 0.06081802, -0.035724025, -0.048769705, 0.05303738, 0.03630178, 0.016629118, 0.03186772, 0.0019625132, -0.06399848, -0.06544748, 0.07180492, -0.108244754, 0.03362748, -0.015626004, -0.046939284, -0.0425595, 0.035873763, 0.023724306, -0.025652222, -0.021972254, 0.023308389, -0.016914403, -0.048216864, 0.017476669, -0.006545577, -0.015409449, -0.010194945, -0.014718854, -0.088881664, 0.0635681, -0.065243006, -0.015026765, 0.034035806, -0.006309133, -0.049093425, 0.044033557, 0.039595768, -0.0066445447, 0.03344578, -0.013208885, 0.04751829, 1.9481544e-05, -0.0015695627, 0.026790442, -0.018498937, 0.007725556, 0.051890664, -0.04049136, -0.020506736, -0.032610364, 0.010137649, -0.008155581, -0.0023934206, -0.061251994, -0.004919309, 0.02738231, -0.07326424, -0.013305394, -0.07125458, -0.012376107, -0.0004402399, 0.061199773, -0.036062323, 0.02805688, -0.034684446, 0.02082179, -0.010977441, 0.062006555, 0.009726641, 0.02347993, -0.005284182, -0.028077058, 0.009796442, 0.086387485, -0.03268163, 0.046098422, 0.046882167, 0.023983225, 0.0220729, -0.02638823, 0.03450233, -0.023470115, -0.036980346, 0.019539457, -0.020540021, 0.020221587, -0.03075126, -0.048392706, 0.011887921, -0.004797632, 0.014851894, 0.009768234, 0.011926639, -0.042060178, 0.012616507, 0.03227822, 0.09344983, 0.043708418, 0.06705552, -0.0242107, -0.03126806, -0.015069334, 0.021796588, -0.06244772, -0.0085946275, -0.03456754, -0.0016400455, 0.005371462, -0.06597423, -0.0077666184, -0.016216524, -0.02880356, 0.008430526, -0.014691287, -0.01028238, 0.013933839, -0.024737466, -0.009978239, 0.009862672, 0.0146437185, 0.014676263, -0.006097159, 0.011113456, -0.0038198382, -0.027173692, 0.01390754, 0.045786127, 0.07062861, 0.018185614, -0.008142157, 0.0027490135, -0.02377468, -0.05593194, -0.005326462, -0.02853194, -0.030010503, 0.039762355, -0.052967973, 0.010311214, -0.003456814, 0.035003975, 0.035104606, -0.032196324, -0.014606763, -0.015585258, -0.0995819, 0.0044402382, -0.04208464, 0.05788131, -0.025187071, -0.01989666, -0.0016505313, -0.058732055, -0.04304606, -0.0027151431, 0.05945499, -0.020748401, -0.0055503203, -0.046548292, -0.06176636, -0.0030809091, 0.01857746, -0.025183948, -0.026311755, -0.060438123, -0.01787473, -0.004580614, 0.043898232, -0.024140568, -0.050680105, 0.03775221, 0.04616891, 0.0009166132, -0.0004104309, 0.041801013, -0.010243101, 0.0052358373, 0.019066136, 0.010234727, 0.03087507, 0.0024372584, 0.069601536, -0.021564873, 0.046738822, 0.0016051809, 0.015911236, -0.043375716, 0.01488813, -0.0070769573, 0.003958921, 0.010738807, 0.004307544, -0.0165228, 0.0145997545, 0.0007681125, 0.0023712383, -0.12624054, -0.022122322, -0.02740124, -0.004305663, 0.022809265, 0.018014599, -0.0033781203, -0.051299047, 0.054759093, 0.02741871, -0.009765478, -0.004659474, 0.03714231, -0.028056197, -0.004267549, 0.0267371, 0.0175852, -0.002177707, 0.011835388, 0.008012865, 0.009005642, 0.019988729, 0.07114498, 0.020991055, 0.07289466, 0.015852852, 0.032635085, 0.033215657, -0.0039636325, -0.06330606, 0.036107246, 0.0011762138, 0.05094826, -0.04026884, -0.03628893, 0.06768509, -0.016105628, 0.020638961, 0.027063368, -0.0017041008, 0.0027630497, 0.034891892, 0.0234299, -0.009113963, -0.022588793, -0.008020974, -0.00616754, -0.05180996, 0.014733815, -0.0152542265, 0.009851625, 0.037352026, -0.01415552, -0.011247825, 0.020924082, 0.029694615, -0.0013665548, 0.01715148, 0.026055915, -0.044270847, 0.004424353, -0.0050399555, 0.008064435, -0.0653723, -0.04215137, -0.045051027, -0.010667386, 0.0018110207, -0.03539341, 0.029697511, -0.05160364, -0.0037832246, 0.026786419, 0.015460284, -0.041504618, 0.05523881, -0.017374964, 0.017111914, -0.050852537, 0.050371278, 0.0051580663, 0.00056640996, 0.038106363, -0.022818353, -0.053099476, -0.005381306, 0.060006168, -0.029605517, 0.0052075726, -0.0096239075, 0.051872756, 0.05372277, 0.048442487, -0.0494382, 0.041232303, -0.02457063, 0.020761915, 0.0057868585, -0.026986688, -0.0042922157, 0.041442584, -0.056662925, -0.0039600697, 0.023443937, -0.026392685, 0.017344309, 0.0016996987, 0.02805772, -0.010024945, -0.08407029, 0.0005687113, -0.015381289, 0.016695103, 0.0020036728, -0.012735213, 0.053646866, -0.055556107, -0.0056183906, 0.024185404, -0.017346812, -0.01991421, -0.009226829, -0.03445795, 0.018905194, 0.0042910394, -0.002578877, 0.054350853, 0.038397465, 0.009747044, 0.018141806, 0.026747627, 0.023010409, -0.030291848, -0.08988127, -0.026334105, 0.05807972, -0.00031844206, -0.07439223, -0.0022898724, -0.01551702, 0.011759451, 0.021733686, -0.05525568, 0.018193178, -0.08181308, -0.0052172816, 0.0655946, 0.045140926, 0.018427595, -0.00309927, -0.051051334, -0.0070774825, 0.00085654086, 0.060674954, -0.00235001, -0.019033322, 0.025109986, 0.006814341, 0.020696059, 0.01630227, -0.005840068, 0.009676773, 0.03933734, 0.035977986, -0.023664158, 0.032598313, -0.006035908, 0.0444928, 0.02669066, -0.044098623, -0.012706539, 0.014050074, 0.02722626, 0.0142570175, 0.02693569, 0.05550137, 0.025276734, 0.037145227, -0.043331992, -0.07514368, 0.034815863, -0.04149869, -0.03254481, 0.015034706, 0.044829745, -0.037500765, -0.048722632, -0.066723876, -0.0025044978, 0.016873453, -0.024546698, -0.024837917, 0.051581535, -0.04968265, 0.022757564, 0.019783178, 0.056886338, -0.02475531, -0.032772504, 0.045838296, -0.046724822, 0.007970633, 0.012311161, 0.04322307, 0.038298488, -0.037777655, 0.035272144, -0.10061249, -0.075761385, -0.030409278, 0.010348352, 0.06057022, 0.046326265, -0.008119748, 0.0049784873, 0.026412498, 0.020180086, -0.0011522768, 0.04256579, 0.04547907, -0.008338416, 0.014171895, -0.0299477, -0.01564031, -0.01111862, -0.019181775, 0.042724844, 0.0003367139, 0.027589705, 0.013799872, 0.067374766, -0.014306361, 0.015184703, 0.08271401, -0.04029703, 0.011681008, 0.021859339, -0.028606582, -0.0010193668, -0.032819413, 0.004627853, 0.006225723, -0.030354653, -0.0026118, 0.040401924, 0.004411816, 0.03318489, -0.022141073, -0.022202821, 0.0022251904, -0.017632604, 0.0567265, -0.0063406196, -0.038427874, 5.7170793e-05, -0.026723977, -0.027466444, -0.04783227, 0.027096007, -0.024028761, -0.055129837, -0.019102613, 0.05901533, 0.00949122, 0.04474186, 0.02217472, 0.08622753, -0.01449954, 0.024066372, 0.0045612655, 0.040920023, -0.07617741, 0.0348069, 0.009110596, 0.009220964, 0.026225517, -0.018923817, -0.020442553, 0.071823776, -0.014262137, -0.024704995, -0.030915365, 0.04950827, 0.04297659, -0.02217628, 0.018602656, -0.004492814, 0.030236209, 0.019718146, -0.021075696, -0.05839664, -0.027981263, 0.02583491, -0.0395694, -0.04856027, 0.043667547, -0.002815894, -0.017178997, -0.051735733, 0.019684613, -0.05933715, -0.0535256, 0.020208618, -0.044793814, -0.015415722, -0.021043267, -0.037589904, 0.004289008, -0.06577868, 0.012737429, 0.010287191, 0.0178393, -0.054262962, -0.026589895, -0.0259237, 0.018356835, 0.037873518, -0.03931531, -0.006951123, 0.034083858, 0.0023589511, -0.04060435, 0.035786647, -0.030579355, 0.033128664, -0.025087053, 0.03241714, 0.024882777, -0.05375797, 0.05239023, 0.03952464, 0.035414398, 0.0065542646, 0.011299748, 0.022822104, 0.03806082, -0.020687548, -0.046024192, -0.078348756, -0.0103248535, -0.011509061, 0.01798923, 0.02281056, -0.014058296, 0.00026978337, -0.026902728, 0.03902599, 0.026785465, 0.0033502914, 0.016443057, -0.015293247, -0.011266846, -0.010452407, -0.048543595, 0.0043963683, 0.01729535, 0.025984816, 0.017237391, -0.010851312, 0.044378556, 0.0068553826, -0.048423357, -0.03980752, 0.0024998924, 0.014569334, -0.047719374, -0.014590193, 0.0066530704, -0.02499467, 0.013529152, -0.005221449, -0.040590987, 0.008172586, 0.0092337215, -0.015219879, -0.06589972, -0.013317972, 0.0062419176, 0.056088425, 0.0889102, -0.036048938, 0.033984415, -0.061590515, 0.041994475, -0.042447325, -0.039658967, -0.04950813, -0.030538542, 0.04029692, 0.020987444, 0.05007554, 0.036996227, -0.06226858, 0.010098502, -0.052979834, 0.011696673, 0.07308306, 0.008351498, 0.007595993, 0.010612811, 0.026643835, 0.027445547, 0.030055968, -0.005746133, -0.031954248, -0.032108538, -0.012430455, 0.070293814, 0.015821356, 0.0031001607, -0.07446647, 0.02682677, -0.048914485, 0.057493865, 0.013766173, -0.0051316526, 0.0044212937, 0.035692245, -0.0017032775, 0.0033947825, -0.00035763383, 0.0017981703, -0.043120418, -0.023281788, -0.01232336, -0.03339997, -0.060615703, 0.009119047, 0.037674863, -0.0025799472, -0.047645427, -0.0057317736, -0.01798891, -0.020666052, -0.06869214, 0.0038148384, 0.0033365032, 0.011285158, 0.013555441, -0.001788208, 0.011883604, -0.03400059, -0.007835163, -0.00067877583, -0.0073220613, 0.018150678, -0.007969103, -0.010585627, -0.096023925, 0.00253344, 0.03758392, -0.06497868 ] }, { "values": [ -0.011344901, -0.04748377, -0.04928996, -0.018513812, 0.04124717, 0.030906288, 0.036054257, 0.032072287, 0.002644099, 0.013320028, -0.0049012867, 0.03354958, 0.018720979, 0.013063842, -0.021973988, -0.037586972, 0.028485103, 0.010117363, -0.05842059, -0.074043676, 0.001746156, 0.043983873, -0.0093757445, -0.044524524, -0.031598683, 0.038459595, 0.015096171, -0.03148807, 0.011445099, -0.07230128, 0.0026411451, 0.055553705, -0.022057636, -0.044593114, 0.058980387, 0.058394443, -0.05583737, -0.014069074, 0.02328034, -0.033630602, -0.06263171, -0.022301031, 0.005219738, 0.026263842, -0.036633026, 0.03082597, 0.028971676, 0.010417523, -0.031438496, 0.06509587, -0.0040978137, -0.011138132, -0.022035299, 0.010784748, 0.0019569914, -0.030337349, -0.061579578, -0.057380818, 0.042457912, -0.0063434187, -0.022497369, 0.0017573773, 0.03894057, -0.026900472, -0.0010697204, -0.06312073, -0.025340656, -0.031954356, -0.050393816, 0.05535999, -0.02963505, 0.011498326, -0.080668196, -0.0021316446, 0.003725524, 0.0028362519, 1.3059617e-05, 0.037635542, -0.033584528, 0.026756935, -0.027916426, -0.020499805, 0.0811205, 0.031933364, 0.035356876, 0.0066138934, 0.017374339, -0.06645704, -0.015987819, 0.023066705, 0.105217226, -0.008131789, -0.010352842, 0.020273617, 0.029833317, 0.00948279, -0.048187837, -0.09690493, 0.005680595, 0.0867186, -0.03710714, -0.0290913, 0.0030414595, 0.0037145212, 0.037538487, 0.026289634, 0.0025175384, -0.06787429, -0.035592254, 0.04437333, -0.03655341, -0.03243617, 0.004544882, 0.018018588, 0.029341653, -0.07388359, -0.02762655, 0.032805055, -0.020545546, 0.01836119, 0.07284888, -0.035342664, -0.0037344894, 0.08579352, 0.0045523667, -0.00015701314, 0.057145905, -0.0032580183, -0.03176168, -0.06862342, 0.08193203, -0.0625836, 0.022497877, -0.007305497, -0.041372374, -0.045354635, 0.0070586163, 0.0704345, -0.009338263, -0.02173076, 0.010360448, -0.005617532, -0.0008575459, 0.02672382, -0.0022669875, -0.04318954, 0.0050140517, -0.0053567677, -0.03248905, 0.05209736, -0.09114165, -0.023878569, 0.048479427, -0.027971648, -0.03919747, 0.033447806, 0.053612344, -0.025022943, 0.053623475, -0.029961556, 0.032452486, 0.0038907789, 0.016933504, 0.0015426053, -0.041617427, 0.00728526, 0.028274106, -0.049201895, -0.01683454, -0.035592128, 0.0068632923, -0.021700216, 0.019196132, -0.06642534, 0.01590735, 0.006485924, -0.06812746, 0.027448148, -0.068934195, -0.01946604, 0.025755595, 0.062591426, 0.0042911265, 0.0113602355, -0.009551899, 0.025086923, -0.020803919, 0.07162231, -0.01649086, 0.013321932, 0.010014296, -0.022292396, 0.018519247, 0.092942655, -0.029121751, 0.039750546, 0.052241683, 0.032288887, -0.0020126172, -0.053666547, 0.043270864, -0.05893595, -0.03371719, 0.015302062, -0.04616569, -0.015282005, -0.03967173, -0.044175792, 0.013605459, 0.023359489, 0.00045696725, -0.0073732613, -0.0029760317, -0.060534816, 0.026061201, -0.008600291, 0.07704666, 0.085980006, 0.06539851, -0.0364135, -0.0068583586, -0.003759608, 0.028443534, -0.054998945, -0.02350731, -0.055063315, -0.024600018, -0.02403214, -0.028923925, -0.005573472, -0.02696401, -0.005109256, -0.0010022133, 0.0046084384, 0.0030419605, 0.008707297, -0.04007049, -0.002767251, 0.02271111, 0.010188374, 0.0149979815, 0.014473604, -0.009040267, -0.015815867, -0.015088026, 0.036596224, 0.04287183, 0.09799959, 0.012096587, -0.018401027, -0.017632067, 0.01150154, -0.061724793, 0.007239592, -0.058557086, -0.0060862275, 0.036383487, -0.04270283, -0.0088846795, -0.00857992, 0.002958867, 0.0050169104, -0.045022514, -0.01760532, -0.036265053, -0.078700475, 0.010313325, -0.03570956, 0.033188697, -0.010781072, -0.0026716709, 0.007884281, -0.039057285, -0.06634211, 0.037213333, 0.03248472, -0.013686519, 0.015358395, -0.047782518, -0.060491737, 0.015179447, 0.023282578, -0.031847563, -0.017115617, -0.015286911, -0.027098328, -0.008256198, 0.025593588, -0.02147223, -0.07026627, 0.04864823, 0.05916704, -0.0035965045, 0.0169629, 0.025415765, -0.008390609, -0.0061461204, 0.020419665, 0.037781022, 0.020356353, 0.0018178999, 0.08883191, -0.03009061, 0.047739845, -0.04309387, 0.04110376, -0.04822485, -0.0055007827, -0.01193779, 0.004366916, 0.031553205, 0.039206978, -0.030665185, -0.00034919544, 0.011893087, 0.0025204096, -0.08215609, 0.006587002, -0.013162802, -0.017699473, 0.04109364, 0.044083536, -0.021391127, -0.047947407, 0.080751136, 0.016169269, -0.024463544, -0.027202634, 0.023090666, 0.0021254302, 0.010866885, 0.007923034, 0.0019698895, -0.027441643, -0.003777248, -0.0010310033, 0.009472153, 0.016194161, 0.06949288, 0.0044808406, 0.05024281, 0.04064997, 0.041942477, 0.010128717, -0.021446418, -0.059141077, 0.018835567, -0.018416988, 0.0706115, -0.045143414, -0.059416737, 0.04541818, -0.01126681, 0.024298163, 0.036290247, 0.028018316, 0.016747735, 0.03987191, 0.010505806, -0.019658577, -0.015161706, -0.0022824944, 0.006438121, -0.036832392, -0.0032937352, -0.022784824, 0.034256082, 0.048415594, 0.011753496, -0.038775306, 0.0043184576, 0.032468293, -0.0035566606, 0.010329684, 0.013538533, -0.07442905, 0.006345822, -0.0013928338, 0.013820534, -0.054041784, -0.048829764, -0.053884562, -0.01534051, -0.009545681, -0.021785274, 0.03160271, -0.05385886, -0.009000757, 0.018024411, 0.0014492123, -0.034539435, 0.06482496, 0.015778493, 0.01213441, -0.040514126, 0.030781392, 0.00779145, 0.0047972836, 0.04496844, -0.005742752, -0.04313056, 0.0022904812, 0.023805477, -0.037125632, -0.0025443695, 0.012837806, 0.042164274, 0.02430543, 0.03455572, -0.029749269, 0.058312606, -0.037766047, 0.03378924, -0.020212503, -0.029572055, -0.008146214, 0.03294824, -0.04901451, -0.014111182, 0.023533143, -0.019377124, 0.021982439, 0.0027268357, 0.051141467, -0.002238253, -0.074276045, 0.010562384, -0.012065622, 0.04024631, -0.0042909095, -0.0012181136, 0.036938317, -0.05096088, 0.027226036, 0.045027845, -0.016196983, 0.0041099037, 0.0036800709, -0.029657567, 0.014613263, 0.011464368, -0.00583637, 0.04171117, 0.00833301, -0.0045560785, 0.05345265, 0.026341429, -0.03397062, -0.012742405, -0.06351222, -0.031466965, 0.07288417, -0.02815964, -0.07475724, 0.0055673015, -0.013381118, 0.023347337, 0.022316009, -0.051776826, 0.022308826, -0.06991169, -0.04886692, 0.049555626, 0.060385097, 0.033594776, -0.03113715, -0.053611584, 0.012174537, 0.0016501327, 0.055551324, -0.0040018708, -0.018518075, 0.023404554, -0.0037393267, 0.014648788, 0.031380456, -0.002908241, -0.010290219, 0.020295331, 0.0037365938, -0.0016935855, 0.032751653, 0.00849174, 0.030404687, 0.06856037, -0.05055376, -0.0087021, 0.022498695, 0.013489267, -0.010714999, 0.0074806116, 0.04973957, 0.005555997, 0.019942788, -0.042709842, -0.048356254, 0.051841684, -0.058462083, -0.01705803, -0.028018868, 0.049009945, -0.039517995, -0.031422038, -0.05595315, 0.012697867, 0.016700873, -0.025777351, -0.0066345306, 0.03298613, -0.037019704, 0.0024267945, 0.016731055, 0.062300056, -0.01674482, -0.0684188, 0.07576092, -0.041313577, 0.019661762, -0.027569868, 0.042141013, -0.008296923, -0.024452409, 0.04237587, -0.115925424, -0.08409706, -0.02272957, -0.0013412982, 0.056505177, 0.042807233, -0.01776197, 0.010295381, 0.036748365, 0.015823161, -0.0058959564, 0.032529417, 0.052849855, 0.009351671, -0.027796105, -0.016415676, 0.016404359, -0.020069392, -0.029833574, 0.07041756, 0.0060200226, 0.03511083, 0.004592053, 0.030136356, -0.029148666, 0.022281626, 0.079999976, -0.035921153, -0.0131602045, 0.0059339143, -0.029085785, -0.009903228, -0.024732111, -0.01020362, -0.00036721077, -0.016298583, 0.016956028, 0.04258217, -0.012257632, 0.034772936, 0.008682766, -0.06621146, 0.01069995, -0.024544092, 0.06788776, -0.017006071, -0.028641252, -0.007673354, -0.022463182, -0.032253943, -0.06381701, 0.011389022, -0.014310232, -0.0444641, -0.016236523, 0.05832538, 0.011714816, 0.06187826, 0.062347624, 0.061405316, 0.005121845, 0.016935233, -0.002708419, 0.025031624, -0.08790508, 0.015487961, -0.0021284733, -0.0006856273, 0.030904273, -0.015024697, -0.013418074, 0.07000578, 0.01405333, -0.02343099, -0.05359258, 0.038649496, 0.022419287, -0.016166547, -0.00033175797, -0.008136128, 0.02242178, -0.0018753574, 0.020065177, -0.02483277, -0.02524096, 0.022228694, -0.039126735, -0.06905685, 0.045430295, 0.016969886, -0.011709235, -0.06006144, 0.0011924506, -0.05472338, -0.06448439, 0.022801884, -0.037243906, -0.0023954646, -0.00192216, -0.02685114, 0.0044661206, -0.06657144, 0.0019259551, -0.014723694, 0.035622716, -0.060716055, -0.031533293, -0.03909621, -0.0031958309, 0.046143334, -0.025409061, 0.0011545755, 0.031782124, -0.01023186, -0.018565971, 0.02641093, -0.043971527, 0.036361206, -0.0177698, 0.016847719, 0.029649477, -0.058633406, 0.043157227, 0.04871244, 0.04400895, -0.00063066627, 0.03391782, 0.007279772, 0.030679435, -0.034018688, -0.039747693, -0.058023553, -0.03330632, -0.039110288, 0.0054086735, 0.020905703, -0.005038065, -0.01585928, -8.8478555e-05, 0.018236814, 0.025361909, -0.0027546654, 0.0069980714, -0.03258721, 0.004229637, -0.031494893, -0.04977934, 0.018148016, 0.031898063, 0.023899846, 0.041319266, -0.021413486, 0.036164973, 0.017280651, -0.049717344, -0.027480694, 0.012980005, 0.01354978, -0.029420713, -0.0042345687, 0.00078600773, -0.014156006, -0.0050756494, 0.022166796, -0.039157864, 0.010292252, -0.014645927, -0.0061960276, -0.046121005, -0.018796561, -0.008666201, 0.04238493, 0.11598574, -0.045548465, 0.03728803, -0.07115082, 0.020372525, -0.04266165, -0.011042647, -0.0488287, 0.007173449, 0.020854276, 0.015931033, 0.015945777, 0.024154443, -0.054458875, 0.02094931, -0.07751173, 0.023329886, 0.068855874, 0.020126553, 0.033135477, 0.018770047, 0.01194645, 0.0281357, 0.032796614, 0.02932676, -0.020742929, -0.020505141, -0.013449782, 0.08237194, 0.025456771, 0.008995219, -0.08180256, 0.0215954, -0.049781162, 0.060451988, -0.008444798, 0.01726358, -0.011297615, 0.074636586, 0.0042423503, 0.02039559, -0.014550795, -0.015843904, -0.0404406, -0.010242348, 0.011872259, -0.027696116, -0.057664294, 0.037107263, 0.02789504, -0.0023144018, -0.07150789, -0.041277383, -0.007799715, -0.007935654, -0.06394971, 0.028820025, -0.004100946, 0.00063052773, 0.028052421, 0.015599749, 0.006016235, -0.021084057, -0.006506894, 0.00041594254, 0.0131351, 0.025717814, 0.002577208, -0.017889006, -0.0864236, 0.018611137, 0.038853083, -0.05092448 ] }, { "values": [ -0.007814429, -0.04685052, -0.030773547, -0.020717492, 0.023591608, 0.03692096, 0.010204231, 0.057486, -0.014366805, -0.014453265, 0.011501494, 0.017383177, 0.02758093, 0.024706356, -0.025663467, -0.0149316145, 0.034376744, 0.008870182, -0.04995258, -0.03415046, 0.022383487, 0.05484846, -0.040591273, -0.049730383, -0.03010228, 0.037374217, 0.014435885, -0.03567747, 0.019648151, -0.07652464, -0.013443403, 0.018423364, -0.033773746, -0.026212027, -0.0036002742, 0.06959067, -0.04912124, -0.012042405, 0.042073224, -0.059297442, -0.050788403, -0.035607412, -0.006098103, 0.03617894, -0.055420216, 0.028481035, 0.028679669, 0.032891784, -0.03140028, 0.038375083, 0.013615114, -0.009272775, -0.010464167, 0.015438323, -0.018341385, -0.025922041, -0.08552838, -0.049410783, 0.042098455, 0.01560445, -0.011914414, 0.02415048, 0.02109544, -0.039471723, -0.00017410748, -0.056393176, -0.041006844, -0.05788491, -0.04584574, 0.047257666, -0.03126504, -0.0018957115, -0.092667915, -0.011340776, 0.02128419, -0.016871354, 0.017659986, -0.007496552, -0.026915336, 0.050133754, -0.012140763, -0.04578746, 0.045301978, 0.06306039, 0.03825574, 0.011807694, 0.021670204, -0.05773515, -0.04574379, 0.0125941085, 0.07585387, -0.0047606337, -0.049159374, -0.015705999, 0.031740636, -0.0070383064, -0.041772883, -0.086500354, 0.030409507, 0.06080953, -0.05686125, -0.033593737, 0.013669133, -0.015660297, 0.037056815, 0.05220694, -0.008832265, -0.06295372, 0.00030443937, 0.033293616, -0.054726556, -0.02913389, -0.02297587, 0.03405476, 0.0041608033, -0.06286668, -0.0030548472, 0.0154235745, -0.03222799, -0.011258113, 0.051203433, -0.029548172, 0.016118437, 0.0885721, 0.01035647, 0.0043884674, 0.05036578, -0.005533987, -0.02740209, -0.049541768, 0.065925986, -0.07586983, 0.035350956, -0.0013236497, -0.05944198, -0.03368881, 0.043427486, 0.07846625, -0.032793764, -0.028570173, 0.0032834401, 0.0016974573, -0.02240004, 0.05839342, 0.013216582, -0.051751647, 0.0015419065, -0.005715332, -0.029491449, 0.050750434, -0.08033909, -0.03572037, 0.037841253, -0.037595514, -0.030511426, 0.039135806, 0.04346389, -0.034591325, 0.041367892, -0.037801385, 0.04178991, -0.007243979, 0.0075455643, 0.0030387465, -0.024141792, 0.024681054, 0.031122362, -0.03970937, -0.031395894, -0.06133646, -0.016865727, -0.052118115, -0.017480168, -0.06961188, -0.015949843, 0.0062520183, -0.07731193, 0.0030467904, -0.066129036, -0.015484198, 0.03558874, 0.07817351, -0.0014794493, -0.006180304, -0.047275983, 0.012355526, 0.0009190412, 0.07580287, -0.017340012, 0.03473897, -0.0030155757, 0.00055537437, 0.0325039, 0.08043024, -0.019822, 0.052387323, 0.06099505, 0.017788475, -0.027583556, -0.053237926, 0.019140879, -0.0017187934, -0.050262578, 0.021821434, -0.029815964, -0.015838826, -0.028499719, -0.0417659, 0.029288694, 0.010353005, 0.0030782402, 0.040912192, 0.0042658853, -0.05480902, 0.018994585, -0.011028038, 0.07983493, 0.05882182, 0.07219623, -0.056685846, -0.011656931, -0.0031134663, 0.05601628, -0.03976787, 0.00266567, -0.022232462, -0.003642914, 0.0024375324, -0.017228773, -0.019969271, -0.025504572, -0.014548809, -0.010870365, 0.009345617, 0.021407407, 0.030884216, -0.0076254136, -0.0019979486, -0.015352749, 0.025101125, 0.014030831, -0.00029398623, -0.0002431461, -0.017768057, -0.034830265, 0.057293236, 0.049727563, 0.05614651, -0.0012416851, -0.03891546, -0.018185653, -0.01838996, -0.079656646, -0.025311597, -0.053553283, -0.0049765487, 0.049055375, -0.03618723, 0.0103388755, 0.020220216, 0.022758005, 0.005764254, -0.03644438, -0.020891618, -0.028966479, -0.052914884, -0.014321622, -0.03683689, 0.04503424, -0.043253236, -0.0144981565, 0.009343184, -0.08889185, -0.0327822, 0.04455827, 0.038497206, -0.002837774, 0.00861819, -0.057111446, -0.060079284, 0.04193533, 0.010886381, -0.016414765, -0.027499737, -0.036301013, -0.009640447, -0.006955878, 0.0501931, -0.0053584226, -0.060342584, 0.0474162, 0.03512614, 0.006305174, 0.008294891, 0.052513856, -0.008949617, -0.0014814426, 0.027168022, -0.0020570962, 0.042342786, -0.016829582, 0.08649029, -0.03377029, 0.032960966, -0.027939277, 0.059304748, -0.042578224, -0.011961839, -0.008299287, 0.0006644635, 0.022716207, 0.05347649, -0.042331085, -0.013756708, 0.004928433, 0.0026294931, -0.09718936, -0.004705716, -0.0070719854, -0.013223368, 0.019335998, 0.03130336, -0.023771193, -0.03419649, 0.04212911, 0.009381412, -0.023018777, -0.021854116, 0.0347781, -0.0012546297, -0.009040729, 0.026707882, 0.001955095, 0.00018084714, -0.00939262, 0.027633576, 0.00296215, 0.034626048, 0.032230355, 0.0055478294, 0.04969532, 0.026797008, 0.027711052, 0.030291328, 0.0042638443, -0.06273594, 0.020092752, 0.004624571, 0.06266081, -0.063674755, -0.050527185, 0.06356453, -0.039641462, 0.008872931, 0.028398264, 0.049720034, 0.0018328449, 0.06091816, -0.014702213, 0.008497339, -0.0226836, -0.011629874, 0.00045217227, -0.007298207, 0.0052965065, 0.00017019031, 0.049860053, 0.057394214, 0.010563143, -0.028825972, 0.028448192, 0.047293097, 0.00018490537, 0.031543713, 0.0042591505, -0.08425708, -0.005213246, -0.0075827837, 0.0125324065, -0.05401367, -0.038398195, -0.048041772, -0.014819507, -0.02386669, -0.032319013, 0.034041435, -0.045500882, -0.0042607123, 0.009848437, 0.01901741, -0.05043911, 0.039790824, 0.011769834, 0.0069292854, -0.021250851, 0.040728334, 0.03184178, 0.006336791, 0.02436268, -0.008788062, -0.04590481, -0.0070035164, 0.033366077, -0.05430575, -0.0073496266, 0.008670586, 0.051380787, 0.042334937, 0.039701562, -0.049783044, 0.047943786, -0.03374213, 0.041805845, 0.0076378863, -0.030576698, -0.0014960469, 0.028010167, -0.062681615, -0.013745009, 0.012980868, 0.0109511325, 0.0072491025, -0.010686771, 0.046401344, -0.014014352, -0.07029769, 0.022393337, -0.019181954, 0.030989962, 0.0059015104, -0.011945751, 0.013818788, -0.049001504, 0.030884827, 0.025607567, -0.011862582, -0.010867796, 0.011994953, -0.013975913, 0.027377447, -0.007190176, -0.00817058, 0.030015588, 0.021731133, 0.0026137691, 0.031422187, 0.012832625, -0.026669126, -0.03025473, -0.073136285, -0.034993656, 0.042252008, -0.00603737, -0.07417636, -0.018560324, -0.018679302, 0.050717816, 0.023442378, -0.022693142, 0.023884263, -0.08070511, -0.026199063, 0.04714456, 0.055111296, 0.01991477, -0.033485364, -0.04956898, 0.018633842, -0.027212214, 0.0581071, 0.0030930103, -0.028272923, 0.032570828, -0.020586412, 0.013641613, 0.032188926, -0.023518275, 0.006135478, 0.02713773, 0.010050657, -0.009102023, 0.02642184, 0.015541494, 0.027691253, 0.06954928, -0.0414838, -0.008919757, 0.05075901, 0.019810222, 0.02137526, 0.033212867, 0.061594263, 0.0034622948, 0.025104966, -0.037700772, -0.038677, 0.04135288, -0.06937444, -0.020786084, -0.033136517, 0.056918606, -0.055316783, -0.039634794, -0.061562467, -0.02347246, 0.019503621, -0.048858583, -0.0055662356, 0.03401976, -0.023351433, 0.025163298, 0.023154631, 0.060659472, -0.018934777, -0.04818865, 0.067913234, -0.053321432, -0.0018245638, -0.011139325, 0.06241306, 0.021455409, -0.0067957873, 0.038774867, -0.09555787, -0.0760617, -0.0044809263, -0.016062701, 0.064214885, 0.060238756, -0.0212146, -0.004493569, 0.038789127, 0.009435088, 0.0034464006, 0.036020998, 0.031353436, 0.00976072, -0.012200558, -0.045452803, -0.008843891, -0.031871792, 0.014208627, 0.05172842, -0.0006791254, 0.038122844, 0.0150063215, 0.025811167, -0.040284753, 0.0017496033, 0.080935374, -0.047754563, -0.00035816827, 0.02119154, -0.0023150789, 0.018626682, -0.04423461, 0.004832509, 0.010218795, -0.021647707, 0.0102097485, 0.050186977, -0.009518974, 0.02207372, 0.0025056805, -0.026716411, 0.012378395, -0.04600453, 0.03808437, -0.011451537, -0.037714336, 0.00090238324, 0.003158684, -0.03368087, -0.05162622, 0.04182685, -0.009731173, -0.04377139, -0.009580836, 0.054452907, 0.010279899, 0.057101887, 0.048260946, 0.056616504, -0.003803374, 0.006086418, -0.016015014, 0.0399618, -0.07947234, -0.005691356, 0.012129104, -0.0078060734, 0.008212272, -0.014552512, -0.022004064, 0.051295407, -0.0033030196, -0.03381407, -0.036230348, 0.04693858, 0.030140273, -0.025788622, 0.024880366, -0.006135153, 0.04144698, -0.012424596, 0.018374957, -0.018578308, -0.019569365, 0.0041627814, -0.02618036, -0.05706024, 0.032429203, -0.006341997, 0.00824666, -0.044831917, 0.02292868, -0.045708828, -0.03608285, 0.012171262, -0.034652367, -0.03831048, 0.0029308922, -0.015139482, -0.018861467, -0.07463477, 0.0071540726, -0.028511759, 0.027438436, -0.04553761, -0.031237105, -0.01704469, 0.011185873, 0.01995871, -0.017364712, 0.0125734415, 0.033513915, 0.0071399906, -0.028184231, 0.0110974945, -0.027689742, 0.039059933, -0.035307415, 0.024575403, 0.017373277, -0.07285646, 0.029436318, 0.029899051, 0.03433708, 0.010168611, 0.039784964, 0.0056386585, 0.055664606, -0.040854607, -0.048168838, -0.060393877, -0.026019566, -0.03211709, 0.008584459, 0.001249548, -0.008583022, -0.036006007, 0.010489311, 0.028140249, 0.011958418, -0.017178623, 0.01943963, -0.0031200503, -0.009362186, -0.038913798, -0.013373633, 0.010567742, 0.02908498, 0.010835255, 0.0421799, -0.036665358, 0.03736886, 0.02074701, -0.0065752324, -0.055227686, 0.021789381, 0.014126022, -0.05010657, 5.0684164e-05, -0.017866412, -0.03823054, 0.0019266022, 0.028110111, -0.04464798, 0.026119951, -0.011222127, -0.051410224, -0.06921882, 0.00020790946, -0.006958698, 0.063612476, 0.090143695, -0.03322851, 0.038030807, -0.06802638, 0.040973213, -0.06272374, -0.009714862, -0.045258686, -0.019849554, 0.032089207, 0.022896463, 0.026200997, 0.030780923, -0.052364465, 0.027565358, -0.07276919, 0.036851253, 0.09400586, 0.032049533, 0.04400705, 0.0145070935, 0.020414775, 0.005527953, 0.012926792, 0.010309975, -0.03121219, -0.03250303, -0.008458603, 0.10548906, 0.03318737, 0.010866371, -0.070455775, 0.0040094485, -0.018096313, 0.069379434, -0.001995075, 0.002921665, -0.027696934, 0.06877599, -0.0044963625, 0.0024893284, 0.0010443542, -0.020337734, -0.015900306, -0.037404384, 0.0055132685, -0.030916492, -0.07029768, 0.006087748, 0.016252588, 0.0061005643, -0.05184627, -0.03131666, -0.00182529, 0.0009727343, -0.043794252, 0.0044595464, 0.029436568, 0.0023949342, 0.015581884, 0.009261199, 0.032615382, -0.036558583, 0.0031444747, 0.016086996, 0.019227186, -0.00012575915, 0.028718656, -0.008088098, -0.09816469, 0.01935915, 0.044529885, -0.05474646 ] }, { "values": [ -0.018399008, -0.022428937, 0.0017378889, -0.020969294, 0.046275314, 0.030391049, 0.054647647, 0.012472631, -0.017336072, -0.000535438, 0.019731734, 0.03108855, 0.01567339, 0.009923618, -0.007887704, -0.007420258, 0.0359803, 0.00844331, -0.052596644, -0.03736303, 0.06363941, 0.018232523, -0.027036792, -0.04249751, -0.036457576, -0.016033696, 0.011104203, -0.039219033, 0.027423056, -0.08748044, 0.012549146, 0.073903665, -0.036496114, -0.058994904, 0.05621564, 0.061236445, -0.019064039, -0.017658954, 0.057375014, -0.04894639, -0.07820941, -0.03398628, -0.01594497, 0.03862999, -0.06257334, 0.050808065, 0.037782893, 0.03374233, -0.010671855, 0.06297075, 0.054152627, -0.0087569235, 0.015486589, 0.021204056, 0.0028075206, -0.035913073, -0.0822224, -0.082968794, 0.038845375, 0.011030267, -0.007968647, 0.009349171, 0.011415921, -0.04793431, 0.020605568, -0.058098506, -0.0057942374, -0.03929229, -0.05186023, 0.043333128, 0.0067697396, 0.0318023, -0.09374844, -0.0047435663, 0.013651472, -0.037240293, -0.007317259, 0.017305335, -0.05398017, 0.010206198, -0.029557357, -0.019135784, 0.03712699, 0.05968454, 0.017180398, 0.019319141, 0.007697652, -0.054287195, -0.0153542785, 0.02895579, 0.078893185, 0.009699077, -0.0074124197, 0.013103532, 0.018513964, -0.034790616, -0.06950304, -0.0653905, 0.0036727567, 0.07068137, -0.0437433, -0.017613344, 0.017938236, 0.001537834, 0.06397385, 0.001071778, -0.017843507, -0.06403967, -0.017703159, 0.025948204, -0.058849055, -0.025768252, -0.030013163, 0.009713859, -0.0096137645, -0.04359524, -0.033058435, 0.005364784, -0.03590408, -0.009872324, 0.060041502, -0.028720677, -0.0731769, 0.053546015, 0.03212595, 0.026276685, 0.02834714, -0.003268844, -0.018400569, -0.06834212, 0.057102468, -0.11182064, 0.021327568, 0.014374962, -0.04862667, -0.042290807, 0.030363953, 0.029768348, -0.012691004, -0.022109132, 0.0014114077, -0.022960102, 0.0012869436, 0.0071945754, -0.010170416, -0.02943779, -0.0048903744, 0.013241357, -0.08575996, 0.0361356, -0.08656873, 0.008811058, 0.032978438, 0.012744557, -0.020031564, 0.047893878, 0.06801173, -0.0315343, 0.049471628, -0.02042289, 0.035803102, 0.013110687, 0.021514628, 0.041018456, -0.008073329, -0.028080847, 0.023559868, -0.025901876, -0.021265889, -0.056895446, 0.033492565, -0.011103202, -0.003690217, -0.08640604, 7.739284e-05, 0.023350421, -0.042009585, 0.016095944, -0.06536218, -0.003467387, 0.01691804, 0.055838328, -0.034678243, 0.0062426864, -0.03598189, 0.0085934475, -0.015459579, 0.089525804, 0.027410842, 0.035521034, -0.0075206985, 0.011010471, 0.0075857, 0.06532675, -0.0039668093, 0.06304834, 0.041650966, 0.023486631, 0.051726636, -0.05334305, 0.055056095, -0.022069445, -0.021284172, 0.007966419, -0.02060634, -0.015074096, 0.0027718127, -0.05482132, 0.028169712, 0.01100212, -0.030621892, -0.013899158, -0.006458743, -0.046396915, 0.0019449644, 0.025475238, 0.076785065, 0.034152888, 0.047042515, -0.018899094, -0.020954803, 0.0062725195, 0.028190795, -0.04478746, 0.000296563, -0.040692937, -0.011341542, -0.024559421, -0.049398415, 0.022148615, -0.04098482, -0.016233644, 0.015122664, -0.019498628, -0.0090844, 0.013847227, -0.020065343, -0.010146845, -0.0036645012, 0.0062519303, -0.020640368, 0.015037029, 0.024471626, -0.0069619357, -0.020479871, 0.051169023, 0.04033014, 0.08208888, 0.003641517, -0.042600024, -0.016793156, -0.0326182, -0.07737382, 0.010988047, -0.0029315504, -0.032435063, 0.028025413, -0.061549176, 0.006989222, -0.017279945, 0.054599166, 0.009142409, -0.032122932, -0.02810067, -0.033747997, -0.0763636, -0.005494773, -0.0045593083, 0.06900297, -0.013257587, -0.0011577005, -0.0020275412, -0.05754863, -0.04258769, 0.00045092494, 0.04668641, -0.03989994, 0.0030154404, -0.036825407, -0.07402278, 0.036229063, 0.0061737704, -0.027031787, -0.022708781, -0.014794838, -0.02518932, -0.014923716, 0.035337582, -0.029738553, -0.04405836, 0.07692933, 0.04203018, 0.011442841, 0.0067128143, 0.05600545, -0.0037916552, -0.0092991665, 0.020909678, 0.015576283, 0.0060812575, 0.0031609999, 0.057077978, 0.0037366194, 0.02845997, 0.00038928696, 0.020016974, -0.065903336, -0.020208992, -0.0017908071, 0.020276612, 0.009954597, 0.016315918, -0.017170759, 0.02159331, -0.0113955885, 0.018231966, -0.10882277, -0.0022717232, -0.023026042, -0.020626554, 0.027606862, 0.04024374, -0.021480596, -0.031494968, 0.030569607, 0.0010799053, -0.011320846, -0.015910126, 0.042694837, -0.010389951, 0.026290784, 0.020060292, 0.006909965, 0.0020783998, 0.0038865944, 0.026299985, 0.0038974464, 0.034389917, 0.058726177, 0.016170673, 0.06375259, -0.0030956655, 0.046373304, 0.028160404, -0.013082059, -0.07408301, 0.020526914, -0.008356251, 0.062418535, -0.032627948, -0.053124174, 0.050035354, 0.013240178, 0.0106354505, 0.02447019, 0.023686701, 0.03867235, 0.05128542, 0.00080695515, -0.02581204, -0.031176548, 0.047939956, 0.006659212, -0.03965998, 0.006323596, -0.0005579126, 0.026156265, 0.043144092, -0.01382171, -0.013410773, 0.012148315, 0.04629101, -0.0013941299, -0.003960136, 0.017539695, -0.087465994, -0.012348866, -0.0032490592, 0.010980152, -0.06294694, -0.051204696, -0.03598286, 0.010130957, -0.005807862, -0.052312255, 0.015914638, -0.049437474, -0.039519485, 0.031455573, 0.028494064, -0.041127954, 0.044578776, -0.024089305, 0.0500893, -0.03198067, 0.035934817, -0.01780829, -0.0067795245, 0.036940265, -0.014498368, -0.053519186, 0.0063521974, 0.04083574, -0.025209334, -0.00019770865, -0.007646593, 0.04298318, 0.03066225, 0.02120552, -0.06746901, 0.034329075, -0.026728572, 0.008419994, 0.008137224, -0.037887238, -0.024437124, 0.01898376, -0.045943134, 0.0053108833, 0.010476364, -0.0120019205, 0.023857225, -0.0024463958, 0.043842852, -0.029134305, -0.1193952, 0.029604305, 0.0025219573, 0.0062153297, -0.0107320845, -0.019948067, 0.025660504, -0.056988697, -0.031082535, 0.011766627, -0.03428418, -0.017818764, -0.0061428077, -0.030430363, 0.0008308079, 0.012118446, -0.011239602, 0.06520639, 0.017933447, 0.002634327, 0.06558538, 0.029921474, 0.01395, -0.0550896, -0.074791685, -0.013466124, 0.05710863, -0.0150596835, -0.082128584, -0.0060139955, -0.03771293, 0.0271435, 0.03319782, -0.027739936, 0.038876224, -0.07933202, -0.02310569, 0.08522622, 0.058329046, 0.018192455, -0.017160581, -0.02952044, 0.012188488, 0.014776493, 0.02958885, 0.0005447504, -0.029377664, -0.00195898, 0.027781283, 0.0315663, 0.008823977, 0.004022486, -0.014909929, 0.059178032, 0.016310155, -0.023143098, 0.048494704, -0.018421924, 0.019332139, 0.021667501, -0.05853073, -0.0134431925, 0.0134283425, 0.01862324, 0.0062810555, 0.017469827, 0.041343257, -0.0011460927, 0.021718103, -0.041599218, -0.06463278, 0.044790782, -0.03737586, -0.015516164, -0.022494327, 0.050096974, -0.029760122, -0.023551797, -0.010256426, -0.028672494, 0.007110057, -0.028210042, -0.0056624445, 0.050283495, -0.034037706, 0.020665966, 0.020035712, 0.07130274, -0.0072304816, -0.020872986, 0.05199042, -0.018020574, 0.0050624264, -0.017791372, 0.051531196, -0.0043814867, -0.06050418, 0.03515132, -0.09677131, -0.081825174, -0.0030211448, -0.027458262, 0.020703208, 0.036769863, -0.025196394, -0.02252027, 0.0416434, -0.001623401, -0.008020743, 0.024847081, 0.025780605, -0.0012563331, -0.018993702, -0.019968223, 0.010707808, -0.0013213622, 0.0066122687, 0.044012394, 0.0102788, 0.032828625, 0.010696078, 0.04304089, -0.022417616, 0.005287922, 0.095666856, -0.047617976, -0.01998667, 0.02697424, -0.0025839857, -0.0033451652, -0.040336546, -0.008792179, -0.008238495, -0.03843047, 0.003427311, 0.03405075, 0.008154047, 0.02322252, 0.03343763, -0.028785504, 0.008621495, -0.03793804, 0.06652663, -0.011890852, -0.053955317, -0.006602129, -0.022432644, -0.03500402, -0.053996522, 0.030274693, -0.0059184176, -0.050296184, -0.00012859656, 0.06618631, -0.0042797723, 0.07134867, 0.028158525, 0.07438267, -0.039931145, 0.015176485, 0.013914025, 0.052559096, -0.06874609, 0.024315523, 0.023929216, 0.0072496966, 0.007413893, -0.022649627, -0.0142705655, 0.051796637, -0.018100651, -0.031627588, -0.05229807, 0.04771797, 0.03355783, -0.0021008244, 0.007883977, -0.029550416, 0.062296726, 0.008526511, -0.020687953, -0.03328325, -0.029950347, 0.040682625, -0.027402744, -0.045075346, 0.025112726, -0.0044440124, -0.007568591, -0.04728866, 0.03816391, -0.039819583, -0.047722377, 0.0088741835, -0.057008944, -0.015511239, 0.008446492, -0.021205693, 0.0010570193, -0.05053692, 0.010126367, 0.021884201, 0.033930164, -0.04992715, -0.0035103785, 0.00053097354, 0.0042269626, 0.057169154, -0.037885323, -0.008882761, 0.028998287, 0.023108646, -0.013385621, 0.04341123, -0.03327852, 0.035605006, -0.018553805, 0.024619367, 0.053745236, -0.06196653, 0.055885173, 0.006164914, 0.042507496, 0.0069207684, -0.0049424167, -0.0027620625, 0.018261453, -0.0032935156, -0.04042493, -0.05860475, -0.00035224482, -0.010845959, -0.0017229149, 0.021970922, -0.033329394, -0.024990378, -0.026954262, 0.023393407, 0.038029935, 0.0036338142, 0.0030875653, 0.0060725412, 0.01620862, -0.016244186, -0.06619936, -0.005820452, 0.018283824, 0.025173264, 0.01616342, -0.039698604, 0.035595912, 0.015990963, -0.029888388, -0.030136587, 0.014091066, 0.038874242, -0.022939393, -0.022774339, 0.0046176603, -0.020423481, 0.012462966, 0.0200957, -0.04188145, 0.0017861393, 0.006469298, -0.025110783, -0.06471305, -0.025089964, -0.008801014, 0.024108887, 0.07802659, -0.010984236, 0.04559515, -0.05856627, 0.03380939, -0.033790912, -0.031635813, -0.060269948, -0.007913223, 0.029085035, 0.036331676, 0.0408519, 0.017213423, -0.06886542, 0.01823856, -0.055260718, 0.0039976244, 0.06991837, -0.0014721266, 0.016187206, 0.02039377, 0.022532213, 0.001443223, 0.029868143, 0.020465575, -0.024448967, -0.040012963, 0.001952841, 0.081560254, 0.012827704, 0.013961155, -0.07934548, -0.003268048, -0.0533334, 0.064674824, 0.039646134, -0.0026713016, -0.011698625, 0.052130077, 0.0160007, -0.016945453, -0.029389795, 0.003888156, -0.044031113, -0.054210782, -0.014668833, -0.03909953, -0.06577587, 0.022025112, 0.045871034, 0.0014500023, -0.051205862, -0.05844152, 0.01643395, -0.012255768, -0.078305386, 0.010561808, 0.007664637, -0.013515688, 0.01228612, -0.018386096, 0.023311589, -0.0243292, -0.011602452, 0.0053571, 0.0109275235, 0.034319222, -0.008486582, 0.003478298, -0.07638311, 0.03454962, 0.038051482, -0.083560206 ] }, { "values": [ -0.02476529, -0.014922469, 0.0042428034, -0.010345631, 0.049012326, 0.055597655, 0.041848775, 0.012268418, -0.00093140214, 0.0052651544, 0.020368384, 0.019182809, 0.014456649, 0.01408686, -0.0058492986, -0.01567505, 0.0150066065, -0.003253044, -0.07647229, -0.046159994, 0.05655475, 0.02266364, -0.020371173, -0.024427487, -0.03983631, -0.017841503, 0.009668987, -0.029747605, 0.035239667, -0.08010608, 0.00053917564, 0.08235249, -0.019563759, -0.0687015, 0.022003414, 0.07960638, -0.029217772, -0.003361264, 0.045384236, -0.034712724, -0.090603575, -0.041406807, -0.018157763, 0.043147996, -0.05364531, 0.053151295, 0.054344073, 0.027958622, -0.0048847212, 0.059621878, 0.032516632, -0.014973512, 0.020429833, 0.015664019, 4.184902e-05, -0.045245815, -0.07130904, -0.06238226, 0.034896344, 0.013460539, -0.0144604035, 0.0052111764, 0.00040554337, -0.036362708, 0.021411223, -0.06737697, -0.019911993, -0.023496896, -0.046896365, 0.049274262, -0.008129681, 0.021971012, -0.10898392, -0.0037715998, 0.021886824, -0.03352827, 0.013017049, 0.008361564, -0.055634413, 0.021006169, 0.0021205354, 0.0019412056, 0.033895757, 0.053043436, 0.0013717624, 0.0049797213, 0.024822371, -0.04225656, -0.0131955985, 0.016307127, 0.06962447, 0.01519107, -0.0220446, 0.023191258, 0.01754623, -0.0041268147, -0.06858476, -0.06565819, 0.005985213, 0.045166872, -0.04463816, -0.017133858, 0.005293132, 0.015102902, 0.053980656, 0.00010774083, -0.01521942, -0.055471096, -0.03321442, 0.020358503, -0.04084131, -0.02350785, -0.017238267, 0.007927499, -0.009970338, -0.037895475, -0.04869636, -0.0081077805, -0.04564789, -0.0006877062, 0.06351157, -0.03214528, -0.06727935, 0.05343759, 0.04230399, 0.03116053, 0.03371609, -0.005303455, -0.039272092, -0.05706688, 0.061592884, -0.11055633, 0.032177914, 0.010218092, -0.0431155, -0.040060785, 0.05612143, 0.015504479, -0.0033078054, -0.021415517, 0.0071701836, -0.020091895, -0.022031931, 0.0060543935, -0.016607296, -0.03336197, 0.003567749, 0.0008787163, -0.10025449, 0.051933605, -0.08046233, -0.0016271074, 0.037748735, 0.009903343, -0.017029002, 0.050334953, 0.06252591, -0.026383564, 0.060977787, -0.022388313, 0.031847134, 0.008272748, 0.008352571, 0.04865582, -0.0127882715, -0.0045155417, 0.03176134, -0.031449523, -0.03687207, -0.043228596, 0.030001955, -0.030894514, -0.020375257, -0.06610051, -0.017404381, 0.022968888, -0.03941617, 0.0011760017, -0.07976692, -0.01785065, 0.016817326, 0.07435463, -0.04998857, 0.0008248324, -0.028287001, 0.0125882365, 0.004827336, 0.089579955, 0.031238632, 0.033482168, -0.010712475, 0.008978303, 0.0077253976, 0.05428294, -0.023934396, 0.051352274, 0.040959813, 0.043018397, 0.03123105, -0.037072796, 0.040911864, -0.021601975, -0.014619552, 0.021123603, -0.034115996, 0.01855294, 0.0020488962, -0.062099434, 0.029994657, 0.0083223395, -0.025561541, 0.0047210916, 0.0039349007, -0.03937924, 0.0067699165, 0.024157142, 0.0895567, 0.0323589, 0.06344344, 0.004890176, -0.049231406, -0.010227545, 0.0097742295, -0.040330406, -0.014624726, -0.026800677, -0.02082739, -0.008506528, -0.060003016, 0.016746046, -0.0142497895, -0.010032324, 0.019021844, -0.008497393, 0.00013834392, 0.03369852, -0.032076683, -0.006988045, 0.0028137455, 0.02252562, -0.02217889, -0.0015947046, 0.01722605, 0.009596301, -0.024383355, 0.053458944, 0.030240176, 0.08479368, 0.03246917, -0.047786865, -0.033396784, -0.034939107, -0.08000308, -0.0008489955, -0.0038237905, -0.027007772, 0.039790396, -0.05275114, 0.008021656, -0.0155576505, 0.050301936, 0.013783209, -0.025887119, -0.025296493, -0.01787794, -0.08888875, -0.010628571, 0.005485601, 0.061982952, -0.022992522, -0.006864757, -0.013199777, -0.06051072, -0.054993562, -0.027064648, 0.050738003, -0.048428148, -0.0027675638, -0.025760997, -0.09042695, 0.04153302, -0.0056286836, -0.007264592, -0.010412166, -0.026718713, -0.022921624, -0.0006552397, 0.027225988, -0.02925949, -0.04240755, 0.056395937, 0.05663238, 0.008281708, -0.004360661, 0.05351693, -0.00096931274, 0.0035367436, 0.016023988, -0.0071280673, 0.0059654536, 0.009040631, 0.05202338, -0.013421213, 0.0421803, 0.013636702, 0.0174032, -0.06258481, 0.004580948, -0.014949833, 0.019289805, 0.0059725246, 0.0016569126, 0.0010004196, 0.028035445, -0.00785171, 0.012055606, -0.123671025, -0.015743924, -0.04472163, -0.018454554, 0.038338166, 0.016119946, -0.005845656, -0.037664182, 0.040441066, 0.01833458, -8.01579e-05, -0.017134175, 0.042482436, -0.013315474, 0.02061862, 0.027567826, 0.009891928, -0.0005203928, 0.019607088, 0.015826575, 0.008506987, 0.02813222, 0.082787804, 0.030632444, 0.075308695, -0.0006128909, 0.05004795, 0.03081802, -0.01529903, -0.06583453, 0.03414337, -0.001864225, 0.051927026, -0.040515676, -0.046553414, 0.04982086, 0.005109798, 0.014781897, 0.014960763, 0.00515862, 0.010329493, 0.035006247, 0.007030956, -0.035628576, -0.031449664, 0.05339771, -0.007408775, -0.049171273, 0.011708963, -0.0034187739, 0.020440022, 0.043230616, -0.0106102405, -0.0022078226, 0.012667458, 0.035567444, -0.0054985695, 0.005897154, 0.021360807, -0.06238695, -0.01290312, 0.0008416898, 0.02828558, -0.07388959, -0.0386071, -0.027496206, 0.0018847546, 0.004985408, -0.051795755, 0.02510008, -0.04363581, -0.017992467, 0.026549986, 0.024537688, -0.049072817, 0.054506235, -0.029693726, 0.0494794, -0.04913253, 0.04617785, -0.017867522, -0.004442616, 0.032012373, -0.018077265, -0.0574342, 0.01174561, 0.05290136, -0.029593252, 0.008244417, -0.0060187555, 0.04037052, 0.028490406, 0.015266795, -0.05917791, 0.028928054, -0.007951537, 0.009256398, 0.0050026723, -0.041777857, -0.020828607, 0.029995764, -0.046208695, 0.001830363, -0.0051824516, -0.008870212, 0.026510755, 0.007345679, 0.029980961, -0.020885441, -0.09849141, 0.01032564, 0.008682663, 0.017261073, 0.011537019, -0.012189198, 0.032606076, -0.06085499, -0.025805617, 0.016568324, -0.020223893, -0.014767326, -0.0010361605, -0.0377134, 0.018802388, 0.014275225, 0.002617671, 0.04878852, 0.026778042, -0.0025729071, 0.037630197, 0.03045373, 0.019940423, -0.03969365, -0.09359425, -0.03604125, 0.039699644, -0.009351024, -0.06010246, -0.0061473586, -0.026604775, -0.004957727, 0.029716812, -0.0545659, 0.035781857, -0.099284, -0.01609182, 0.08768476, 0.050499715, 0.006141372, -0.01955311, -0.047783144, 0.0012625793, 0.039628565, 0.04736061, -0.0017595605, -0.007908431, 0.010795407, 0.017200686, 0.028934857, 0.0038339454, 0.01289939, 0.016637078, 0.06284955, 0.017433379, -0.03168612, 0.033067323, -0.021266485, 0.032781664, 0.017449494, -0.04380489, 0.002373533, 0.021025265, 0.01909579, 0.03326001, 0.018843088, 0.029751934, 0.012540269, 0.032471143, -0.039144896, -0.06600455, 0.025590552, -0.033513255, -0.020671425, -0.006669048, 0.03255851, -0.03425395, -0.030783974, -0.031835116, -0.009883133, 0.017332291, -0.038624212, -0.023419302, 0.041378923, -0.057671282, 0.029312696, 0.019768765, 0.06843363, -0.0021062894, -0.00844205, 0.019762387, -0.03353597, 0.001567652, 0.005013608, 0.052200664, 0.036825456, -0.053127483, 0.05086327, -0.09482647, -0.08573281, -0.018399274, -0.0020301258, 0.025771245, 0.037626274, -0.015862482, -0.003902154, 0.043193992, -0.008210501, -0.00085004536, 0.019630156, 0.012626379, 0.00047330133, -0.0109119965, -0.023776919, 0.0011205114, 0.016380675, 0.017686287, 0.038117956, 0.0010899425, 0.023187902, -0.000658481, 0.046746865, -0.019198386, -0.0029216206, 0.09395912, -0.016312493, -0.024841607, 0.034377612, -0.019800859, 0.012064754, -0.032709464, 0.014076227, -0.008145968, -0.04808187, 0.0011732886, 0.04038716, 0.004316872, 0.021914441, 0.0060367887, -0.01831225, -0.014651981, -0.027112607, 0.04392008, -0.0072616353, -0.054159645, 0.0020457315, -0.015771275, -0.029928353, -0.04969516, 0.028479362, -0.023136927, -0.05015536, -0.018768359, 0.07794097, -0.008826777, 0.060540147, 0.0068728253, 0.07906581, -0.028822253, 0.034516905, 0.023065077, 0.04622452, -0.05604323, 0.026184995, 0.015368218, 0.0156251, 0.023922708, -0.017535886, -0.0041497843, 0.062681176, -0.01522885, -0.021880139, -0.047201663, 0.05110716, 0.020244032, 0.0025399993, 0.009182278, 0.01642905, 0.07015638, 0.010376021, -0.025939971, -0.055933367, -0.03528362, 0.036976244, -0.033793908, -0.05342653, 0.03628696, 0.005039892, 0.0012493243, -0.04689035, 0.03134396, -0.04486251, -0.041223884, 0.019619355, -0.044567842, 0.008792896, -0.009887655, -0.026178492, 0.017111862, -0.055741277, 0.016697794, 0.026134936, 0.024832034, -0.053210452, -0.0005718802, -0.01881034, 0.0075590666, 0.060622964, -0.042567987, -0.010112869, 0.023757873, 0.008436263, -0.012907756, 0.035000674, -0.042169515, 0.038755424, -0.02330805, 0.024836645, 0.039522447, -0.06704669, 0.07798845, 0.008479046, 0.05260834, 0.0043875575, 0.002618388, 0.019018482, 0.050651964, 0.0067227194, -0.04811296, -0.064899385, 2.3245315e-05, 0.0009784783, 0.014679735, 0.02237062, -0.019795787, -0.030133931, -0.04061145, 0.03827452, 0.03489539, -0.0033592295, 0.016330862, 0.003020705, -0.002850233, -0.012483917, -0.06118532, 0.012201066, 0.016063353, 0.040765487, 0.010289922, -0.026236955, 0.0359879, 0.014113979, -0.04203798, -0.016574403, 0.010070937, 0.038364023, -0.033983316, -0.025429212, -0.008331142, -0.013747343, 0.009079822, 0.007259941, -0.041154798, -0.0016465252, 0.010515364, -0.021949073, -0.078013375, 0.0014969538, -0.010247399, 0.03318348, 0.08199568, -0.017071389, 0.03243036, -0.04811197, 0.049473543, -0.034853306, -0.0418756, -0.054793607, -0.032177053, 0.041238964, 0.024585841, 0.05008074, 0.030222768, -0.057592243, 0.01646342, -0.053095885, 0.0152684525, 0.06256323, 0.015486264, -0.0034962627, 0.04163857, 0.0035664788, 0.0069215563, 0.022489725, 0.00012239983, -0.020740319, -0.03950866, -0.0052870484, 0.07624205, 0.0055957027, -0.007623744, -0.074255295, 0.0071410066, -0.060408663, 0.05656336, 0.043671414, 0.010248524, 0.0041526016, 0.035360906, 0.014723404, -0.020576159, 0.0105176335, 0.007031862, -0.045900952, -0.028669085, -0.0194748, -0.039496012, -0.07415518, 0.007613886, 0.044966757, 0.0023333656, -0.041827388, -0.033301227, 0.00837224, -0.024943452, -0.08167512, -0.0008942172, 0.0017566861, 0.0033330957, 0.024394888, -0.016635444, 0.022562027, -0.034911186, 0.0037086299, 0.016019028, 0.0009490499, 0.0368279, -0.01951805, 0.0046703042, -0.09564374, 0.009777448, 0.030489178, -0.079124205 ] }, { "values": [ -0.03613889, -0.026696956, -0.027438331, -0.027151454, 0.05089902, 0.035271175, 0.044226725, 0.03424287, 0.014536721, 0.023519715, 0.023475733, 0.029004762, 0.007504755, 0.018291527, 0.010476631, -0.037144955, 0.0044051637, 0.011587601, -0.036771063, -0.061832566, 0.044350617, -0.0011367574, -0.024790397, -0.034098607, -0.04605586, 0.018281246, 0.012695761, -0.045129918, 0.05225367, -0.076114334, 0.011612088, 0.06712942, -0.024235375, -0.038129356, 0.069894575, 0.035803568, -0.01941225, -0.0051937643, 0.037777822, -0.036986403, -0.096669376, -0.029316183, -0.016140565, 0.038738273, -0.047486614, 0.04643721, 0.035371527, 0.009537685, -0.028124476, 0.058714077, 0.022899132, -0.01878975, 0.008365944, 0.014546457, -0.00187243, -0.03764499, -0.062103983, -0.09049653, 0.047225524, -0.00580037, -0.011968102, -0.021309277, 0.014336834, -0.03705548, 0.030816067, -0.068314165, -0.0048527415, -0.020726139, -0.054422557, 0.034395963, -0.0048302757, 0.025524298, -0.091475375, -0.0128209395, 0.0049445513, -0.028425254, 0.018164547, 0.01866673, -0.05935585, 0.0035277978, -0.018559702, -0.006274452, 0.06646993, 0.0564054, 0.0068603307, -0.0004928389, 0.0021231745, -0.019535592, -0.0021020707, 0.035419133, 0.081010215, -0.006986516, 0.006358413, 0.03289827, 0.043160804, -0.010668168, -0.05976819, -0.048292544, 0.013565019, 0.05418973, -0.03712811, -0.0048477114, -0.019369679, 0.016881296, 0.05203005, 0.00059174653, -0.019627213, -0.060042206, -0.051590983, 0.016028278, -0.022490047, -0.027065065, -0.030614335, -0.009177891, 0.006626666, -0.033533257, -0.03907559, 0.008258471, -0.041676614, 0.010636582, 0.080106765, -0.011779986, -0.046067085, 0.044300232, 0.05014733, 0.029990142, 0.057897843, -0.0075115664, -0.021847451, -0.055266198, 0.04838229, -0.08457019, 0.03260092, 0.030422697, -0.03174663, -0.0442336, 0.029252246, 0.023980437, -0.009249136, -0.025678132, 0.022737954, -0.007873797, 0.0030698578, -0.012083308, -0.014816957, -0.04426729, 0.0139984535, -0.011116061, -0.08199852, 0.042446285, -0.09244704, 0.00813439, 0.043573584, 0.0064987266, -0.02754859, 0.014177092, 0.06183482, -0.037597187, 0.06984521, -0.021460446, 0.032533906, 0.011854384, 0.026056198, 0.05909389, -0.021935895, 0.000424055, 0.032174215, -0.04785972, -0.008030671, -0.026546178, 0.031247325, -0.038758025, -0.0056701675, -0.08927594, 0.010886002, 0.009234917, -0.026177224, 0.026262067, -0.054622293, -0.01185264, 0.021211686, 0.04285935, -0.034888398, -0.007219786, -0.0189855, 0.02421041, -0.0215783, 0.10727065, 0.019882489, 0.016250238, 0.0023810002, 0.0028268695, 0.021031879, 0.06361678, -0.02598199, 0.053310048, 0.039410442, 0.020605741, 0.031368125, -0.05249351, 0.05397469, -0.034651574, -0.0030299644, 0.023820074, -0.027950179, -0.0067502153, -0.024961887, -0.07436387, 0.029113058, 0.025626235, -0.015289694, -0.012639157, -0.008704437, -0.030441886, 0.031524394, 0.0068553984, 0.086318634, 0.0503887, 0.028914563, -0.011572028, -0.045271482, 0.018596062, 0.022790017, -0.036969345, -0.032115124, -0.043849014, -0.016766924, -0.010919459, -0.04259687, 0.0144332005, -0.03399826, -0.025767148, 0.012614051, -5.2351872e-05, -0.011595976, 0.025710138, -0.032050896, 0.004021863, 0.027857274, 0.025147451, -0.011600364, 0.012029818, 0.007788043, -0.0010635728, -0.012452319, 0.03218242, 0.039796777, 0.111882955, 0.0057303878, -0.054845005, -0.037620373, -0.018274227, -0.048122335, -0.007367638, -0.02379001, -0.016861703, 0.027092814, -0.06427446, -0.0010532943, -0.017278131, 0.036040027, -0.0002483929, -0.021116514, -0.027683584, -0.02102865, -0.10269576, -0.0034231876, -0.0059020296, 0.051214624, -0.011592732, 0.0039072507, -0.026654132, -0.058756765, -0.05778117, -0.0066502723, 0.041785587, -0.060927015, 0.0007590787, -0.03541105, -0.08939303, 0.037532978, 0.0025120964, -0.02599189, 0.0064606857, -0.0044607767, -0.012074213, -0.020131046, 0.0064571365, -0.03332651, -0.054478567, 0.057031933, 0.050778497, 0.029723352, 0.0045499755, 0.05971322, -0.009703129, -0.0048361574, 0.025816945, 0.013059173, 0.005020332, 0.020869818, 0.04893495, -0.009614179, 0.044839058, 0.0034912392, 0.036835168, -0.061130226, -0.0065287077, -0.018039146, 0.025680529, 0.022744779, 0.016895495, -0.0067656673, 0.031955853, -0.010177561, 0.0056471727, -0.09958714, 0.008020766, -0.049801383, -0.029023482, 0.039758783, 0.042685762, -0.033566028, -0.063200265, 0.046888396, 0.01699278, -0.0084182, -0.013917003, 0.03511409, -0.023403196, 0.031050503, 0.009923787, -0.0013330356, -0.041621014, 0.015726322, -0.0003540265, 0.0026415188, 0.023923554, 0.084292054, 0.020832237, 0.065697946, 0.013386116, 0.05168521, 0.03266121, -0.035007194, -0.052737307, 0.012304791, 0.0065149986, 0.052837912, -0.020583985, -0.041953947, 0.049422987, 0.0118414285, 0.025273763, 0.036411323, 0.010556154, 0.011334783, 0.039647616, 0.015095969, -0.037964676, -0.040722363, 0.040906362, 0.0014368586, -0.0422277, -0.009795736, -0.013421765, 0.028875804, 0.0325489, -0.0013828416, -0.01716262, 0.0032395206, 0.05202796, 0.007320587, 0.0029005373, 0.017692175, -0.0765707, -0.009465815, -0.011036335, 0.018640535, -0.034767468, -0.051220354, -0.04004255, 0.0049982076, 0.0071571665, -0.041511513, 0.04137674, -0.050641425, -0.03498782, 0.019026645, 0.008315065, -0.0545506, 0.06483596, -0.0096251955, 0.02566078, -0.06140721, 0.050310977, -0.0055229496, 0.0018621451, 0.037071135, -0.01366926, -0.062219646, 0.025386602, 0.04664385, -0.0275025, 0.006698584, 0.005860453, 0.029476445, 0.020607179, 0.019480929, -0.03908118, 0.038996845, -0.027115446, 0.016530793, 0.0046563367, -0.020321397, -0.01360276, 0.02832083, -0.035817537, -0.026109166, -0.005050515, -0.013693435, 0.033305325, 0.0034392735, 0.062148474, -0.009689943, -0.09425659, 0.02997609, 0.0015585056, 0.038436726, 0.016905647, -0.011408801, 0.052536514, -0.056490425, -0.015815541, 0.040827896, -0.034473073, 0.006601019, 0.013818694, -0.03210976, 0.015973385, 0.014471296, -0.0069508767, 0.060394015, 0.030504487, -0.008195191, 0.05661171, 0.024131766, 0.009154463, -0.030482901, -0.07514347, -0.020438965, 0.043943394, -0.01952936, -0.06765408, 0.020677384, -0.0049911966, 0.016038, 0.025461169, -0.049488023, 0.03111369, -0.08186681, -0.02660685, 0.09250248, 0.06984061, 0.0024071326, -0.016779067, -0.03055436, 0.008707971, 0.04199842, 0.034370534, 0.014107183, -0.012881661, -0.0009075804, 0.026093252, 0.03413308, 0.012815929, 0.038727388, -0.0015752893, 0.047432944, 0.025641128, -0.02430633, 0.042767085, -0.027024593, 0.043660276, 0.017848242, -0.048190236, -0.0044735256, 0.013514623, -0.010457201, 0.018964944, 0.006967443, 0.042039074, 0.005293147, 0.039429046, -0.054164432, -0.06664635, 0.028956942, -0.031957857, -0.042110197, -0.005238889, 0.048343804, -0.012903215, -0.031378772, -0.0043147774, 0.008872375, 0.013667013, -0.01955692, -0.015147125, 0.030450359, -0.038835797, -0.000670429, 0.02068958, 0.074552, -0.00014243185, -0.013863772, 0.042673036, -0.047528096, 0.028732168, -0.020117598, 0.06390032, -0.013143426, -0.049995054, 0.02962045, -0.10003785, -0.09471703, -0.0067489836, -0.016613724, 0.01784221, 0.037721638, -0.035105925, -0.00559462, 0.057800133, -0.009802243, 0.001061204, 0.0202979, 0.017720569, -0.00392077, -0.013652247, -0.010769681, 0.021188073, -0.0056366827, 0.015000199, 0.066798456, 0.01961889, 0.01668516, 0.009543903, 0.040273815, -0.012303412, 0.013994215, 0.10801466, -0.023950588, -0.024055447, 0.037869122, -0.02310323, 0.0146737, -0.024007045, 0.009069617, -0.0140149165, -0.026612826, -0.0048121335, 0.05573332, 0.0066209566, 0.012893623, 0.02230019, -0.027310118, -0.017616402, -0.025482215, 0.037502427, -0.022310957, -0.057816736, -0.0011228088, -0.017072294, -0.014690118, -0.050346725, 0.024194371, -0.008041138, -0.055215083, 0.0059417305, 0.07877826, -0.0040897722, 0.06767711, 0.033421487, 0.059814073, -0.027281867, 0.024211146, 0.001245145, 0.06017111, -0.07242107, 0.02472391, 0.021996228, 0.010778222, -0.011715191, -0.0048272703, -0.013982042, 0.067124635, -0.00461615, -0.018711038, -0.049079567, 0.049854193, 0.013570228, -0.0016312988, -0.010860893, 0.007394587, 0.048413135, 0.023703447, -0.005141722, -0.02947271, -0.038968265, 0.049342003, -0.029002476, -0.059731234, 0.023320273, 0.012340629, -0.017970443, -0.055281237, 0.030030714, -0.04879187, -0.052468423, 0.026656158, -0.033496544, 9.857349e-05, -0.0020409094, -0.003619169, 0.025206469, -0.03938663, -0.007069081, 0.011012522, 0.03256101, -0.04822473, -0.0045350306, -0.021607947, 0.00174453, 0.074997135, -0.042429265, -0.0037974117, 0.01079063, -0.013654657, -0.013083812, 0.03698952, -0.050438557, 0.030519504, -0.00063435716, 0.024159985, 0.069318175, -0.05065153, 0.064500354, 0.0012263254, 0.06667181, -0.011452447, -0.00043670423, -0.007017245, 0.024148036, 0.00055946305, -0.024775969, -0.048557647, -0.01142624, -0.032275084, 0.0045954855, 0.031509943, 0.002965835, -0.028835153, -0.043994278, 0.047345378, 0.044086378, -0.0056368094, 0.0028920257, -0.017632216, 0.00889988, -0.020430205, -0.06831261, 0.00531693, 0.015278467, 0.011477773, 0.010037855, -0.025457446, 0.041787907, 0.011752895, -0.029659847, -0.022258343, 0.015314367, 0.029036079, -0.032459173, -0.02895004, 0.008599119, -0.0056587677, 0.018302443, 0.016724816, -0.04112226, -0.0013340751, 0.029154021, 0.0019284463, -0.07187306, -0.009311473, 0.009582945, 0.03513315, 0.09180788, -0.020676637, 0.044776645, -0.050878238, 0.036033925, -0.027871387, -0.042650655, -0.046863876, -0.017348453, 0.026659649, 0.0100434, 0.048939183, 0.014315768, -0.06575778, 0.007122853, -0.051777545, -0.0066148126, 0.045819387, 0.025579067, -0.004327536, 0.034737185, 0.006777584, 0.012188347, 0.03578066, 0.008143002, -0.007554801, -0.026824158, -0.01625848, 0.07064555, 0.010724007, -0.0005450517, -0.0814008, 0.025359707, -0.060897574, 0.05937232, 0.023978032, 0.025715295, 0.010322374, 0.0427647, 0.017560193, -0.011885532, -0.016091833, -0.0005483856, -0.043278974, -0.033133898, -0.015559086, -0.03352985, -0.057703774, 0.01360574, 0.04638593, -0.0019394036, -0.039726328, -0.05030427, 0.008523839, -0.0006893645, -0.07863596, 0.028082717, 0.007857811, -0.0073636477, 0.034047075, -0.027450476, 0.01435182, -0.027427765, -0.005027019, 0.012196662, 0.020640802, 0.013116974, -0.017527973, 0.024733573, -0.10297175, 0.005087061, 0.026314795, -0.08311421 ] }, { "values": [ -0.03852962, -0.021228354, -0.013804536, -0.02775908, 0.04490021, 0.04677708, 0.044696573, 0.038118247, -0.000218717, 0.0069060978, 0.02322188, 0.005961932, -0.0029627795, 0.027044186, 0.007219039, -0.030344447, -0.0013639695, 0.010328174, -0.061615273, -0.0521895, 0.048013166, 0.016321817, -0.047712766, -0.053153932, -0.04602261, 0.0002519926, -0.0072125625, -0.043856435, 0.053341385, -0.061299026, 0.012052066, 0.06465203, -0.013052967, -0.04496373, 0.02599826, 0.06512772, -0.017173868, 0.00388767, 0.04637957, -0.053190615, -0.09375334, -0.054472804, -0.010225463, 0.05566891, -0.05237919, 0.043108013, 0.045121916, 0.019693866, -0.03496217, 0.038504824, 0.042203005, -0.017608762, 0.0014031703, 0.0065925396, -0.020610042, -0.055811413, -0.0693364, -0.05973506, 0.05040647, 0.0181285, -0.008863469, -0.017847281, -0.007911951, -0.03768068, 0.020930877, -0.054398224, -0.017847829, -0.032287892, -0.058966547, 0.039221488, -0.029187892, 0.014434636, -0.097782135, -0.0048716576, 0.0105820745, -0.031024775, 0.026049457, 0.016194277, -0.02822468, 0.003123644, -0.008054672, 0.01098315, 0.053212967, 0.073927455, 0.010251512, -0.0005461741, 0.014042055, -0.0048443484, -0.028869566, 0.040028866, 0.07898229, 0.0037215564, -0.003915095, 0.024570925, 0.041094534, -0.016937448, -0.04953583, -0.05053608, 0.016052783, 0.036836933, -0.05990662, 0.006233517, 0.004212875, 0.026505122, 0.04937929, 0.027167846, -0.023602026, -0.05742135, -0.037267823, 0.0274213, -0.036062468, -0.029699013, -0.011774924, 0.0017491443, -0.013234718, -0.029787773, -0.044967122, 0.0031376786, -0.029139947, -0.007430207, 0.047510054, -0.010073428, -0.049946815, 0.06019306, 0.04258836, 0.028676115, 0.035039507, 0.0047446336, -0.027279513, -0.024879323, 0.049342584, -0.10227482, 0.03934994, 0.032147735, -0.04998666, -0.018072145, 0.059838943, 0.028984528, -0.012515736, -0.019139353, 0.025137845, -0.024137743, -0.01150182, 0.010808316, 0.0067121815, -0.009028026, -0.007958802, -0.01772139, -0.10866591, 0.054973584, -0.08279895, 0.010062942, 0.04332161, 0.0023399442, -0.029474491, 0.026152186, 0.051008347, -0.03827401, 0.060605213, -0.03179474, 0.04330469, -0.011919564, 0.026796188, 0.07787381, -0.003975097, 0.01572893, 0.044839688, -0.0209732, -0.03248386, -0.02444297, 0.022938963, -0.032805137, -0.024227448, -0.07356519, -0.009579797, 0.010875255, -0.043782663, 0.009319534, -0.0501421, 0.0063675414, 0.01050656, 0.07152947, -0.028165892, 0.0066620926, -0.015160971, 0.02251054, -0.0011976055, 0.0995127, 0.022213647, 0.019734288, -0.003260519, 0.039847367, 0.005923007, 0.07696972, -0.037738506, 0.059848946, 0.04882564, -0.0010697045, 0.02648973, -0.034406066, 0.048215047, -0.02572572, -0.0063703214, 0.025253067, -0.025798818, 0.002759719, -0.010893398, -0.07040186, 0.042554453, 0.008901283, -0.005104166, -0.017765053, -0.015526342, -0.01953993, 0.023085244, 0.0052534444, 0.10151265, 0.03763632, 0.052207954, -0.018914169, -0.04829691, 0.010430126, 0.014763876, -0.013007737, -0.009295708, -0.036230817, -0.007141189, -0.006494432, -0.06732655, -0.0027223886, -0.026118707, -0.030366909, -0.00527432, 0.011260005, -0.016709436, 0.036127582, -0.01036286, 0.0050279093, 0.008059269, 0.034810424, 0.014085032, 0.006521985, 0.011681099, -0.010146892, -0.016068988, 0.02835968, 0.032551676, 0.096728995, 0.016187016, -0.051286817, -0.028282456, -0.039874587, -0.046610393, 0.0071322224, 0.0005052233, -0.017554143, 0.03458668, -0.054433092, -0.009222881, -0.022296676, 0.036195684, 0.0076732873, -0.02851481, -0.027153803, -0.011216091, -0.08956802, -0.0072468133, -0.0015567921, 0.045500655, -0.021947091, -0.01236355, -0.023184344, -0.07261019, -0.03508674, -0.025974177, 0.035072695, -0.045758124, 0.0071215094, -0.045780584, -0.0660255, 0.0317233, -0.005952569, -0.016624449, -0.0038263437, -0.022969952, 0.0071192174, -0.027164478, 0.016683811, -0.024204658, -0.04664761, 0.047474425, 0.055636678, 0.020652967, 0.00068363623, 0.083309345, -0.025747526, 0.001999201, 0.03782407, -0.0045937914, 0.018277097, 0.02178567, 0.056358334, -0.008140238, 0.04169265, 0.009225301, 0.023815239, -0.073664635, 0.009117894, -0.012664355, 0.0122768795, 0.018127179, 0.0045066183, -0.019917741, 0.009632973, -0.0096396, -0.0071254596, -0.12743218, 0.005115392, -0.030656114, -0.044352543, 0.00689061, 0.019835446, -0.018919764, -0.052074697, 0.040769644, 0.0173683, 0.008800708, -0.000936373, 0.013273467, -0.02128976, 0.030231036, 0.0021019767, -0.0002455888, -0.019497368, 0.026363121, 0.02722055, -0.0016046844, 0.018310415, 0.070933305, 0.0037904775, 0.072424114, 0.0017732197, 0.040932, 0.042437293, -0.0039448915, -0.07418898, 0.029619731, -0.014936382, 0.041871753, -0.0383942, -0.034102254, 0.03775469, -0.0043757223, 0.011434221, 0.013780148, -0.0006387938, -0.011529469, 0.0307558, -0.004267438, -0.029052718, -0.017936392, 0.036615115, 0.004524156, -0.046242833, 0.017465556, -0.006346561, 0.018808275, 0.027979553, 0.0038062816, -0.012066582, 0.021059524, 0.059072025, 0.015543675, 0.016419616, 0.028189126, -0.050198387, -0.0014429725, -0.010769041, 0.047901724, -0.047939915, -0.056582782, -0.049853332, -0.017926725, 0.002533908, -0.038583092, 0.032896396, -0.034109868, -0.025920043, 0.0072576157, 0.008583895, -0.053596556, 0.05730022, -0.004760687, 0.031127749, -0.06960618, 0.06069373, -0.004737052, 0.0010325914, 0.03574663, 0.004137795, -0.04915362, 0.0028304916, 0.046229728, -0.017712677, -0.00031884012, 0.012899654, 0.029410683, 0.043135963, 0.028386882, -0.05557352, 0.045751706, -0.022555584, 0.012659363, 0.0055408897, -0.03554124, -0.00836391, 0.012155722, -0.04081967, -0.0173209, 5.1036688e-05, -0.020922827, 0.03867575, -0.010933597, 0.05237383, 0.0030588526, -0.07409686, 0.023323473, -0.006875568, 0.038307454, 0.023679584, -0.007474633, 0.03959397, -0.06482788, -0.018083641, 0.04364473, -0.038811598, -0.013156057, 0.01322777, -0.042641472, 0.03734193, 0.016105486, -0.0077054426, 0.05181441, 0.03202595, 0.0020613542, 0.04043044, 0.027461788, -0.006595143, -0.038360875, -0.09277996, -0.03425974, 0.02713545, -0.019443845, -0.051655408, -0.0019199036, 8.207041e-06, 0.020881154, 0.0113558015, -0.043011595, 0.030559488, -0.09541948, -0.0137435105, 0.07194415, 0.05733664, -0.013728523, -0.03869106, -0.020134967, -0.0133665055, 0.03130489, 0.04731886, 0.019876717, -0.026017316, 0.0005070883, 0.0030315353, 0.03498212, 0.0036047758, 0.013468675, 0.010937653, 0.046237707, 0.02191878, -0.029537514, 0.025055667, -0.026896853, 0.034682687, 0.01664577, -0.046892315, 0.00773239, 0.03316402, 0.0051751416, 0.028433487, 0.022888739, 0.03339479, 0.029465022, 0.029677061, -0.049147666, -0.06621954, 0.02730444, -0.038316216, -0.014852147, 0.034066517, 0.052846536, -0.0051609697, -0.029256063, -0.025081228, -0.0033593744, 0.044282924, -0.017724024, -0.0052260784, 0.020110881, -0.03917357, 0.018233115, 0.014443953, 0.060560845, 0.003189289, -0.009990658, 0.020399572, -0.05859558, 0.02597739, 0.0011366383, 0.05883091, 0.031165665, -0.054509148, 0.024124084, -0.08669852, -0.09015309, -0.010154651, -0.029127434, 0.022305202, 0.0502676, -0.03131632, -0.025444755, 0.03852673, -0.01750041, 0.0009623292, 0.017109506, 0.015390667, -0.006538838, -0.0050580846, -0.014000184, 0.029159246, -0.011309711, 0.030540666, 0.058723196, 0.0049329535, 0.02118296, 0.024532588, 0.05032071, -0.016578825, 0.009317952, 0.11431061, -0.030816913, -0.007054831, 0.035574302, -0.033154324, 0.01144678, -0.0328208, 0.0022195475, -0.015209254, -0.03613435, -0.010299354, 0.049490586, -0.0018138789, 0.0145603055, 0.016755635, -0.016236844, -0.0116757, -0.023999834, 0.017448116, -0.0046022367, -0.047525942, -0.004217472, -0.024033159, -0.016280143, -0.032183077, 0.020559685, -0.006913724, -0.06808469, 0.0047878223, 0.07641071, -0.008792178, 0.06999651, 0.03433809, 0.08297711, -0.028500695, 0.03551025, -0.00855453, 0.049690656, -0.073073484, 0.036643542, 0.028055882, 0.019325927, 0.0014274757, 0.0051869266, -0.013363995, 0.073603354, -0.0326118, -0.016657889, -0.06857995, 0.067141265, 0.020442607, 0.001782727, 0.008554622, 0.004925865, 0.06776334, 0.017473489, -0.007293685, -0.049931567, -0.0327119, 0.045250125, -0.03827446, -0.057006434, 0.03688491, 0.015106876, -0.019732883, -0.031363603, 0.021029668, -0.04855378, -0.04681346, 0.022281632, -0.037569553, -0.022750435, -0.012938506, -0.021022562, 0.020253353, -0.0526477, 0.0048082843, 0.031303257, 0.013773571, -0.03825098, -0.0069273673, -0.010785596, 0.002658484, 0.07465045, -0.040906344, -0.015585192, 0.030732306, -0.0075338846, -0.017685268, 0.013989738, -0.04981859, 0.012359556, -0.013505386, 0.04381977, 0.0620689, -0.049318846, 0.0729533, 0.02100586, 0.0596666, 0.00517572, 0.0036076808, 0.0012070908, 0.043266702, 0.015953898, -0.024487466, -0.065730676, -0.0044523096, -0.022786818, 0.012405919, 0.013417206, -0.01274511, -0.038227484, -0.054502208, 0.039883375, 0.036926836, -0.02202501, 0.02454501, -0.0024835907, -0.009491792, -0.017889235, -0.034869444, 0.0053648953, 0.0005416485, 0.003183758, 0.008233311, -0.008209958, 0.034577686, 0.003800937, -0.028876258, -0.018094646, 0.009078183, 0.01803438, -0.03973667, -0.019106565, 0.0067762374, 0.0036640512, 0.027837647, 0.019782865, -0.014144003, 0.008658113, 0.032961585, -0.0159138, -0.08636515, -0.008063951, 0.024302896, 0.0634782, 0.09975006, -0.0035340092, 0.031731743, -0.04591732, 0.033810187, -0.03180031, -0.04717301, -0.051585246, -0.038964506, 0.030208766, -0.002814949, 0.05973215, 0.0113722095, -0.053997613, 0.034671064, -0.03443665, -0.0033638014, 0.06831904, 0.007717618, -0.00090001366, 0.033414602, 0.015785238, 0.0035131495, 0.031081686, 0.0010397675, -0.011239665, -0.042210247, -0.021447632, 0.06432356, 0.030083818, -0.0088164685, -0.063772395, 0.025314687, -0.060652357, 0.055837855, 0.014271425, 0.025853444, -0.0037284375, 0.043381136, 0.017800221, 0.0012691244, 0.005582432, -0.001660238, -0.047152687, -0.021497611, -0.016130758, -0.024742454, -0.07767662, -0.0034578487, 0.03649207, -0.004352785, -0.045679547, -0.04230482, -0.002748904, -0.036078457, -0.073956154, 0.04462003, 0.022244867, 0.019412668, 0.036341682, -0.018482605, 0.0410075, -0.0389061, 0.0009867807, 0.009862524, 0.005727571, 0.015783971, -0.0015261343, 0.037097007, -0.09425851, 0.004850096, 0.041561935, -0.07326158 ] }, { "values": [ -0.0059701796, -0.024384202, -0.05803894, -0.029733207, 0.05383611, 0.029878456, 0.05437135, 0.047838427, -0.013963024, 0.0059341844, 0.0067940424, 0.01361724, 0.0074810483, 0.033010945, -0.034631856, -0.030489901, 0.033226274, 0.0023864415, -0.0541471, -0.044610463, -0.0015264818, 0.04810046, -0.035789374, -0.041632403, -0.010689721, 0.010546222, 0.00738684, -0.032870665, 0.02569573, -0.055695385, 0.0016910915, 0.045065578, -0.020259969, -0.033775322, 0.01814272, 0.05822342, -0.028096877, -0.0039367382, 0.019301957, -0.04044135, -0.0525985, -0.053049847, 0.01015512, 0.05318166, -0.051300094, 0.038705345, 0.053153, 0.012396929, -0.046737567, 0.047244173, 0.013578133, 0.0071500856, -0.012613139, 0.0103097875, -0.015816541, -0.025736235, -0.039182562, -0.046455808, 0.048231345, 0.022251558, -0.012917377, 0.015183589, 0.01971438, -0.02474041, -0.010077035, -0.063713156, -0.027526256, -0.062340036, -0.060852, 0.039108694, -0.034665164, 0.010388942, -0.06800702, -0.017195035, 0.021844486, -0.03818813, 0.019075679, 0.04689188, -0.019527888, 0.01370259, -0.013489966, 0.014818682, 0.087914445, 0.06470226, 0.034010235, 0.036198564, 0.031910397, -0.03173522, -0.03937362, -0.0016471974, 0.08868646, -0.032971144, -0.0441512, 0.022544125, 0.033213202, -0.0035381995, -0.03505848, -0.07496744, 0.00047960196, 0.08784843, -0.037633725, -0.026004437, -0.035611086, 0.012887823, 0.04694843, 0.04192742, -0.00232803, -0.06706426, 0.006982819, 0.051711142, -0.05115092, -0.03571716, -0.0003957534, 0.033583503, 0.0077759027, -0.067838475, -0.030880166, -0.0004148303, -0.03297061, 0.012592433, 0.07677407, -0.037016347, 0.009591768, 0.06568856, -0.0013698834, 0.011402546, 0.06485157, -0.0005273343, -0.047459383, -0.04951805, 0.05792369, -0.08885975, 0.025313515, 0.016357066, -0.047758773, -0.027036617, 0.023923803, 0.035725303, -0.03196637, -0.0063762646, 0.006471877, -0.01590956, -0.012897324, 0.022577196, -0.010787104, -0.028905375, 0.015064482, -0.032460853, -0.06036261, 0.05494737, -0.08654382, -0.0065522054, 0.040576838, -0.033279408, -0.034370746, 0.020295741, 0.05502374, -0.014973671, 0.024727134, -0.024619067, 0.063154414, -0.0009012754, 0.0067674955, 0.044709735, -0.045740496, 0.019496575, 0.06914309, -0.01774232, -0.017892001, -0.046566255, -0.00347193, -0.03174223, -0.0073534003, -0.06828858, -0.0036694128, 0.009021297, -0.0721947, 0.0140619865, -0.0633779, 0.013142603, 0.005033919, 0.05986691, -0.04543295, 0.030545399, -0.030877179, 0.004758815, -0.0013280364, 0.081146, -0.0025077437, 0.01817483, -0.009813727, -0.011196511, 0.014759362, 0.07664372, -0.030681027, 0.032441232, 0.06120126, 0.014450267, -0.007963329, -0.032291714, 0.027761215, 0.0011251165, -0.047150873, 0.028792072, -0.044591766, -0.013606972, -0.045164514, -0.058993973, 0.038237765, 0.0022523014, -0.016044851, -0.0007105279, -0.013206467, -0.04373608, 0.015306449, -0.013046273, 0.09175007, 0.054218102, 0.07038704, -0.026100663, -0.032109365, -0.024702452, 0.02085944, -0.0419864, 0.01913044, -0.028263165, -0.02201523, 0.012294853, -0.062158875, -0.018126635, -0.03793238, -0.022992123, -0.0062344535, 0.0024508499, -0.0053909086, 0.050522592, -0.010189108, -0.01111791, -0.0003500604, 0.01974072, -0.0075068506, -0.0015224062, 0.0063568912, -0.011990128, -0.027384294, 0.0018964364, 0.032712888, 0.058523092, 0.031847388, -0.00070066337, -0.022656359, -0.016143724, -0.060381986, -0.007815087, -0.031959284, -0.0027796805, 0.018384995, -0.05348021, -0.0018863672, 0.011541135, 0.007829939, 0.03943255, -0.02941676, -0.042070694, -0.009728446, -0.10388135, -0.014132098, -0.025430737, 0.044668164, -0.023229698, -0.0031877856, 0.0006064238, -0.06936056, -0.051794387, 0.014328414, 0.024349945, -0.0004101065, 0.0033204528, -0.06851235, -0.052258838, 0.0263819, 0.014620921, -0.016965754, -0.02617465, -0.051936552, -0.0044478895, 0.0047150934, 0.041813787, -0.016178714, -0.063559115, 0.022873415, 0.05243208, 0.019656867, 0.023977121, 0.05248777, -0.020438824, -0.0031123594, 0.04164074, 0.01869413, 0.018146403, 0.0019471698, 0.0632809, -0.020544948, 0.069758795, -0.024190728, 0.055207912, -0.042589597, 0.0066561927, -0.017151155, 0.0040952894, -0.0142944, 0.03087289, -0.020428833, 0.006102012, 0.014765223, 0.0009743778, -0.10339036, -0.01405905, -0.022055235, -0.03524038, -0.01898, 0.036144316, -0.024943277, -0.030277269, 0.040053524, 0.041367196, -0.027216358, -0.008647507, 0.017530382, -0.010419088, -0.00975833, 0.014227729, -0.002717564, -0.00607132, 0.0070824977, 0.021488534, 0.011080277, 0.020823743, 0.040547732, 0.015824057, 0.059032906, 0.025978094, 0.015452344, 0.027062437, -0.014124775, -0.052495822, 0.041864686, 0.0009350015, 0.022658702, -0.054295525, -0.022586618, 0.045815438, -0.023355003, 0.013988404, 0.01142809, 0.04437597, -0.01818047, 0.047467712, 0.02409171, -0.0013795127, -0.0010299305, 0.0039446675, -0.003973087, -0.035517104, 2.0129413e-05, -0.0038300585, 0.030598203, 0.049802586, 0.0115217995, -0.030801414, 0.02524644, 0.046224184, 0.025142457, 0.023955634, 0.0340382, -0.06179539, -0.0003265705, -0.006102521, -0.004012419, -0.06607198, -0.054591063, -0.045169763, -0.033484846, -0.018277371, -0.032339547, 0.014700741, -0.03681273, -0.0077567906, 0.009337396, 0.03042121, -0.059048973, 0.056597486, 0.00012922855, 0.015521659, -0.040226087, 0.047661856, 0.004310508, -0.01958396, 0.011737788, 0.0066733607, -0.035089117, -0.003687411, 0.04033501, -0.032756895, -0.01578601, -0.007828007, 0.06571313, 0.04638335, 0.035137158, -0.03244639, 0.0475793, -0.052202765, 0.03719726, 0.013000906, -0.007757493, 0.017002333, 0.03181379, -0.057587434, -0.00805412, 0.039180122, -0.012185938, 0.027339742, -0.01583275, 0.026781145, 0.028219646, -0.07440056, 0.026864542, -0.0035313054, 0.024307987, 0.01479579, 0.0005825953, 0.018651176, -0.054260246, 0.018289583, 0.042906206, -0.030777866, -0.019642329, 2.7155556e-05, -0.027676547, 0.021541713, 0.005451418, 0.008467954, 0.041909076, 0.057969637, -0.004942202, 0.027178278, 0.030516695, -0.037421923, -0.030593375, -0.09173845, -0.03828886, 0.05720767, 0.0020478463, -0.06711963, -0.00078774634, -0.02235957, 0.031508934, 0.016793989, -0.04627401, 0.0052657477, -0.080752976, -0.012361842, 0.05933323, 0.053737074, -0.004045689, -0.020526713, -0.032544054, -0.016722225, 0.01766892, 0.039139185, 0.03544407, -0.027697612, 0.022964414, -0.005129307, 0.033377785, 0.012896129, -0.009380713, 0.010826675, 0.034251105, 0.03871917, -0.018106787, 0.028170368, -0.0060423217, 0.031785384, 0.061863206, -0.05742309, -0.017998781, 0.009539964, 0.0072586443, 0.022823198, 0.04452754, 0.05700552, 0.03716545, 0.026962431, -0.047708184, -0.045640726, 0.052307796, -0.03259414, -0.03194903, -0.0060566636, 0.056190763, -0.020940067, -0.04282561, -0.06483604, -0.011524293, 0.043454356, -0.038573716, -0.0026013071, 0.019855121, -0.03673486, 0.011137742, 0.0045133485, 0.055965718, -0.040299434, -0.055943772, 0.072839744, -0.063958354, 0.024083082, -0.0025958729, 0.034643747, 0.02791788, -0.012082619, 0.0409045, -0.091852374, -0.08827725, -0.009003924, -0.007800929, 0.04448568, 0.061495245, -0.02644328, -0.0071804672, 0.022398736, 0.033833977, -0.0049083275, 0.0252607, 0.04938504, -0.004353821, -0.0037910922, -0.037565302, 0.0120397955, -0.00908923, -0.021128347, 0.061644074, 0.017897932, 0.050246876, 0.014367462, 0.052584916, -0.016853966, 0.005205158, 0.08403654, -0.052710116, 0.00659364, 0.016326232, -0.04898584, -0.0011099456, -0.048900247, 0.009343307, 0.009853176, -0.012485073, 0.0037735943, 0.08108196, 0.0019349694, 0.02032946, -0.009443476, 0.011790602, 0.0019029635, -0.040606707, 0.044045575, -0.02453405, -0.029010681, -0.008306022, -0.021902943, -0.023989117, -0.06463379, 0.008915187, -0.02576635, -0.03032479, -0.0021100962, 0.07116219, 0.024306757, 0.057119206, 0.044052143, 0.089222714, 0.008428558, 0.010024353, -0.011270903, 0.03583663, -0.083050676, 0.02060608, 0.017247556, -0.013906958, 0.013282826, -0.0056047756, -0.009903686, 0.077450216, -0.009437424, -0.043560732, -0.079174414, 0.052131932, 0.024347065, -0.05493025, -0.0028997483, 0.0019558626, 0.027397467, 0.004097542, 0.03069376, -0.047418326, -0.023850868, 0.017418606, -0.017242206, -0.06812332, 0.041743193, -0.0053394297, 0.0022655085, -0.056894705, 0.02323904, -0.04614181, -0.055281978, 0.0059859985, -0.050297897, -0.02439938, -0.011387655, -0.012075718, 0.009250143, -0.0709278, 0.021120565, 0.008258599, 0.021606093, -0.041711323, -0.018777063, -0.018212685, 0.012841444, 0.049248576, -0.024860552, 7.27968e-05, 0.03848925, 0.0038507776, -0.030023485, 0.012208299, -0.029167863, 0.034337096, -0.01207819, 0.03372107, 0.028249541, -0.04800469, 0.05584716, 0.03593264, 0.01681125, 0.005773959, 0.018446978, 0.008398159, 0.04990655, -0.024158102, -0.042885855, -0.061669044, -0.02458047, -0.026390554, 0.05564854, 0.02018177, 0.009007097, -0.02240797, -0.035772577, 0.03360278, 0.015026176, -0.021268068, 0.03467906, -0.0029259592, 0.005174676, -0.033817336, -0.019953432, 0.027807243, 0.014821581, 0.03541859, 0.014321443, -0.004736741, 0.051310457, 0.0024429802, -0.018295329, -0.026789885, 0.024437968, 0.00038277425, -0.045071375, -0.0026542975, -0.01008605, -0.018070614, 0.009548613, 0.022215366, -0.029186085, 0.031345155, 0.015232136, -0.034066547, -0.06366014, -0.027963037, 0.0298027, 0.06949873, 0.098454684, -0.027531756, 0.035942774, -0.08861207, 0.019191083, -0.055515833, 0.0001337202, -0.061147366, -0.01472338, 0.025328215, 0.0041390886, 0.03918183, 0.029707592, -0.03820398, 0.02438026, -0.070706405, 0.013827686, 0.06310107, 0.02844303, 0.031800583, 0.025966324, 0.010021901, 0.025541518, 0.02673991, -0.017714953, -0.028309127, -0.018481877, -0.019461107, 0.07647301, 0.022090757, 0.013571858, -0.06288505, 0.025826761, -0.03616, 0.06332641, 0.0026213187, 0.010600544, -0.021105822, 0.061016224, -0.0025418506, 0.008215103, -0.01678231, -0.021184046, -0.043808542, -0.03172666, -0.014986078, -0.012640022, -0.067949645, 0.0050049997, 0.02594963, -0.010841901, -0.06630898, -0.018268934, -0.032040883, -0.022253629, -0.045086604, 0.012222118, 0.018615201, 0.0041194316, 0.017267361, 0.009849561, -0.008453896, -0.029817333, 0.021786569, -0.0051077255, 0.0042799506, -0.011676937, 0.026055433, -0.00041179478, -0.08811808, -0.0065012556, 0.048490323, -0.079354 ] }, { "values": [ -0.043121908, -0.021963352, 0.010263988, -0.05371809, 0.030165477, 0.029546756, 0.04103145, 0.020384291, 0.002230858, 0.054352287, 0.03195567, 0.016436204, 0.029413885, -0.0035700032, -0.0127669, -0.03177825, 0.030675089, 0.02480604, -0.038031824, -0.022424461, 0.05804555, 0.002943541, -0.040274955, -0.039153416, -0.051964294, 0.0051569063, 0.015214143, -0.07198615, 0.023498526, -0.049136575, 0.0141221285, 0.04855234, -0.051545076, -0.08393535, 0.049776055, 0.05151313, -0.028374512, -0.0003466983, 0.028367333, -0.044973038, -0.07507389, -0.044416476, -0.00495707, 0.059531588, -0.06581949, 0.022617476, 0.03394106, 0.019556846, -0.031157061, 0.033295836, 0.021463614, -0.01881798, 0.028024761, -0.001483175, 0.00045716754, -0.06334194, -0.082158454, -0.045013756, 0.07581825, -0.0023190523, -0.013381119, -0.0033221694, -0.012418735, -0.016742084, -0.01821913, -0.059083447, -0.0184067, -0.036827467, -0.05972871, 0.03986676, -0.020178704, 0.012761162, -0.09661815, -0.0024717443, 0.011156575, -0.047371667, 0.042649593, 0.0045934147, -0.010057403, 0.012489741, 0.011280587, 0.006997944, 0.07934736, 0.06763542, 0.0147869615, 0.021089252, 0.033046216, -0.042278904, -0.041439183, 0.013107276, 0.08738965, -0.023438448, -0.0106732035, 0.023145784, 0.026162717, -0.032255154, -0.03786595, -0.07109375, -0.0005726385, 0.062760144, -0.05401146, -0.006111513, -0.013034917, 0.0022344438, 0.047965016, 0.028923946, -0.04011568, -0.039766956, -0.034762453, 0.028409272, -0.059074122, -0.035266273, -0.022893628, 0.0007110986, -0.0056500947, -0.032628816, -0.03258454, 0.0012812339, -0.017705105, -0.001054685, 0.06800187, -0.024132049, -0.052344274, 0.049461946, 0.048792098, 0.016975401, 0.006606289, 0.010845257, -0.058215167, -0.03577617, 0.044481594, -0.1053369, 0.0037112986, 0.016875565, -0.03529102, -0.028549429, 0.06346768, 0.015027059, -0.05736424, -0.011681016, 0.027831731, -0.024476482, -0.042742122, 0.02254911, -0.009234952, 0.010290331, 0.0044647665, -0.009253415, -0.070565954, 0.056705475, -0.07544026, 0.0113524515, 0.036347486, 0.00076093554, -0.03507905, 0.053723987, 0.050792065, -0.034578532, 0.04339661, -0.040337358, 0.06119055, -0.009405205, -0.009326534, 0.042290013, -0.035109103, 0.018907191, 0.049881734, -0.026206702, -0.03591375, -0.03374857, -0.00025944662, -0.023453059, -0.013009349, -0.07061112, -0.019112201, 0.0058546416, -0.02576724, 0.011036671, -0.06864729, 0.005969708, -0.009334452, 0.050611123, -0.030424789, 0.022177512, -0.0069077727, -0.0074347514, -0.032327306, 0.05284786, 0.030265164, 0.021882376, -0.0330973, -0.005734445, 0.005231822, 0.07399913, -0.017904451, 0.07516217, 0.03310029, -0.01173129, 0.022118999, -0.042933095, 0.037591293, -0.0038862478, -0.019005511, -0.0014998958, -0.019770196, 0.0028339215, -0.021633254, -0.04373799, 0.030336333, -0.0046520475, -0.00051132543, -0.01242633, -0.0040783733, -0.029723413, -0.02228257, 0.032336786, 0.10677307, 0.008446538, 0.052197233, -0.0022711651, -0.062603846, -0.008899038, 0.004688784, -0.029842926, -0.015496907, -0.012734983, -0.022723963, -0.014413442, -0.06869729, -0.0028290327, -0.046984166, -0.014192214, 0.010830117, 0.009224474, -0.013761533, 0.042594925, 0.013156645, 0.00074601383, 0.008249477, 0.012681308, -0.012371173, 0.012708053, -0.0048410622, -0.02720405, -0.03686907, 0.010915206, 0.06420981, 0.08081265, 0.01688033, -0.013443907, -0.015801715, -0.04645147, -0.049369425, 0.018312996, -0.013104557, -0.021866497, 0.031522308, -0.07881598, 0.0051677767, 0.014394086, 0.034351286, 0.04155875, -0.02742724, -0.03620702, 0.0035439047, -0.10540406, -0.010284404, -0.0023157068, 0.06716427, -0.014083849, -0.0050639007, -0.019916635, -0.08619012, -0.014562857, 0.007297175, 0.024649413, -0.0522463, 0.024809284, -0.038725574, -0.054358326, 0.037853163, -0.007116704, -0.032055557, -0.028650353, -0.020976633, -0.008277913, -0.01588589, 0.04654689, -0.03510099, -0.04452892, 0.048839934, 0.03368916, 0.018650355, -0.024801116, 0.05861023, -0.0027916161, 0.01306548, 0.0007937177, 0.03033021, 0.013738741, 0.014901032, 0.031062953, -0.012847994, 0.03732353, -0.016619567, -0.0012441408, -0.0602756, 0.02025451, -0.00031320364, 0.021261591, 0.01411096, -0.029245786, -0.019634062, 0.016027266, -0.01523214, 0.005194299, -0.12730488, -0.00011034849, -0.026574744, -0.034484584, 0.009994835, 0.022943536, -0.039830435, -0.06250421, 0.04548971, 0.0263218, -0.0051216846, -0.0023961125, 0.0042035193, -0.029042047, 0.011758922, -0.0015496693, 5.190029e-05, 0.016631091, 0.014639875, 0.013320364, 0.01365866, 0.026073007, 0.06792984, -0.026264004, 0.056610208, 0.007454489, 0.038424958, 0.045473695, -0.020278336, -0.09306324, 0.03490487, -0.018427202, 0.0121449735, -0.02652965, -0.022518428, 0.042894714, -0.0040374673, 0.0056620887, 0.032873444, 0.0017630623, 0.004189919, 0.020919215, 0.036236737, -0.017208435, -0.014648976, 0.040099405, 0.0045735817, -0.043342017, 0.03641331, -0.024576573, 0.009493165, 0.017751655, 0.007136123, -0.030602764, 0.04449417, 0.037932172, -0.00034092282, 0.03666707, 0.035381656, -0.047806807, 0.006403867, 0.00034566573, 0.014789697, -0.036033988, -0.039906457, -0.054636586, -0.009190853, 0.016282309, -0.06621153, 0.02223431, -0.044865493, -0.023264814, 0.03401726, 0.019884096, -0.026659977, 0.06703593, -0.024922865, 0.019500758, -0.047998756, 0.07174192, -0.018857935, -0.009013957, 0.02129745, -0.0018536428, -0.06364246, -0.012453017, 0.06520916, -0.024444684, 0.010466352, 0.006002994, 0.04491536, 0.040723134, 0.029168734, -0.05313951, 0.046569847, -0.0027731275, -0.0011755803, 0.035500865, -0.0246694, 0.0075328546, 0.02473885, -0.03525923, 0.0014732984, 0.015469135, -0.03173129, 0.050192647, -0.014219629, 0.03339418, 0.016243335, -0.07392193, -0.004493136, -0.027979776, 0.016910257, 0.011225024, -0.019249588, 0.056652594, -0.058238316, -0.010997975, 0.021822602, -0.02979386, -0.013616425, -0.00061133644, -0.061125416, 0.013075142, 0.017411238, 0.0077461475, 0.03984971, 0.038348693, 0.010311547, 0.054930884, 0.035588987, -0.0012962474, -0.05381129, -0.0706388, -0.026423343, 0.013996755, -0.009712867, -0.062761225, -0.018955035, -0.007881949, 0.033012997, 0.034543455, -0.035591617, 0.015314951, -0.06768097, -0.014680741, 0.0784761, 0.03675753, -0.0034088048, -0.004861403, -0.036338624, -0.013253361, 0.026876042, 0.04694287, 0.00769388, -0.030845955, 0.026622042, 0.0017658263, 0.05211653, -0.0045795315, -0.0021052458, 0.0073361956, 0.027841354, 0.0648545, -0.030158948, 0.036032792, -0.01962662, 0.043299716, 0.023053244, -0.08231135, -0.0064490205, 0.02158794, 0.026596526, 0.019132745, 0.03236329, 0.045080535, -0.0011397856, 0.046475615, -0.0533517, -0.052310374, 0.016348481, -0.044215575, -0.03330661, 0.025530826, 0.045463763, -0.013261061, -0.048303224, -0.052630104, 0.0072778403, 0.02590978, -0.024736697, 0.00511326, 0.011150814, -0.042539384, -0.0069083357, 0.019273492, 0.06862534, -0.012228053, -0.015953349, 0.021511799, -0.08409228, 0.020449854, 0.0053205364, 0.03544532, 0.012108678, -0.02907085, 0.023458058, -0.068398334, -0.07962743, -0.008321935, -0.022656653, 0.0397168, 0.03424687, -0.022979597, -0.032667145, 0.027722146, 0.0068658376, 0.023075864, 0.030759484, 0.01656908, -0.016120842, 0.018658048, -0.018866008, 0.011007559, -0.020759871, 0.017842669, 0.045992985, 0.0103304945, 0.018355485, 0.016573226, 0.049620934, -0.016893627, -0.018637562, 0.073073745, -0.0065565333, 0.015110035, 0.036445625, -0.02870113, 0.016490424, -0.046581317, 0.00023409356, -0.040695753, -0.03405562, -0.004261023, 0.05369029, 0.007539531, 0.006003949, -0.00045562536, 0.0145799145, -0.010398035, -0.026604721, 0.033824727, -0.0014227092, -0.06779431, 0.011489628, -0.028290939, -0.021607276, -0.044229064, 0.027244816, -0.023169233, -0.0586487, -0.0018465231, 0.050557148, 0.0033625504, 0.066767044, 0.022120483, 0.08755468, -0.028176945, 0.008987554, 0.0033680275, 0.030023761, -0.051069766, 0.03012705, 0.020459421, 0.0048617925, 0.0037312275, 0.0075343675, -0.022400731, 0.068156965, -0.0435906, -0.039580908, -0.03920758, 0.041014332, 0.016894983, -0.015029822, 0.02691232, -0.010343622, 0.050432563, 7.047693e-05, -0.029382227, -0.064459726, -0.015333588, 0.051603135, -0.05059274, -0.037573088, 0.04594421, 0.029633336, -0.022212382, -0.050562445, 0.034144368, -0.043160543, -0.045388166, 0.027047688, -0.041854605, -0.015745318, -0.00010143978, -0.021668313, 0.027400142, -0.06210348, 0.020474697, 0.01872907, 0.010789174, -0.060195133, -0.0293935, -0.004261456, 0.010798545, 0.085181765, -0.041842166, -0.019863594, 0.012945429, 0.021090884, -0.009204812, 0.03262559, -0.02058801, 0.019908478, -0.029377824, 0.052310746, 0.043848433, -0.023721993, 0.059829075, 0.014188412, 0.027259773, 0.027253058, -0.010586962, 0.0027592573, 0.029390123, 0.014673575, -0.004148849, -0.07822115, -0.016578835, -0.011769565, 0.034193482, 0.037498765, -0.020637264, 0.006658192, -0.035933245, 0.034293424, 0.04221704, -0.0325651, 0.02945782, 0.015628112, 0.0022968662, 0.0034438595, -0.031255238, 0.005299462, 0.0019743205, -0.0010020318, 0.032930706, -0.044684265, 0.042096343, 0.032337807, -0.024696032, -0.03544721, -0.00048400732, 0.019899093, -0.039375495, 0.017258657, 0.00037402907, -0.00193579, 0.026085073, 0.036475305, -0.05625502, 0.009560366, -0.0036955057, -0.013486483, -0.085788816, 0.0039873365, 0.020636067, 0.046240974, 0.07167116, -0.021377174, 0.034940783, -0.039578717, 0.04701449, -0.052991815, -0.046314634, -0.06787871, -0.037675794, 0.012682736, 0.011514278, 0.03620977, -0.0056237644, -0.06181782, 0.0133329695, -0.052182235, 0.007875581, 0.06603191, 0.013513348, 0.0042614234, 0.05500935, 0.035416182, 0.060149256, 0.034624163, -0.020368373, -0.010328408, -0.044878244, -0.0019092867, 0.04741925, 0.012962469, -0.009082144, -0.06690861, -0.011669676, -0.059265375, 0.07036364, 0.015863618, -0.005906444, -0.0104558, 0.037977654, 0.01808187, 0.0034640061, -0.03396448, 0.00030446053, -0.047565598, -0.048045672, -0.009313815, -0.019260434, -0.06704122, -0.006707243, 0.033941556, 0.0045570056, -0.025159437, -0.03191394, -0.016971957, -0.04229795, -0.07925611, 0.028517636, 0.027173992, 0.023071455, -0.0030028094, -0.028935261, 0.016037827, -0.06225973, 0.024632696, 0.01283736, -0.011468625, 0.008583136, -0.017442197, 0.02190159, -0.10945259, 0.003745513, 0.053470396, -0.060278945 ] }, { "values": [ -0.02413956, -0.015067679, -0.026126372, -0.028149037, 0.030112328, 0.041101538, 0.068693735, 0.031066759, -0.022017507, 0.016867107, 0.0069115027, 0.0062280204, 0.032326646, 0.011743458, -0.025756866, -0.03682421, 0.04067526, 0.014295166, -0.05170293, -0.04772543, 0.009630747, 0.03181718, -0.023561686, -0.040700804, -0.040026493, 0.019044055, -0.0016737381, -0.042754583, 0.016122974, -0.06029661, -0.0019121204, 0.05872346, -0.04540816, -0.060562078, 0.039760537, 0.056038532, -0.044635482, -0.018092878, 0.02907763, -0.0255979, -0.06866117, -0.05153892, 0.019535402, 0.048275486, -0.03999506, 0.031505726, 0.04345947, 0.029580502, -0.043383647, 0.05394217, 0.01482578, -0.01799077, 0.0026399628, 0.0009463827, 0.0033413984, -0.035892036, -0.053405024, -0.07466884, 0.045863148, -0.010306567, -0.03921537, 0.019733185, 0.013029956, -0.013888956, -0.017391894, -0.056944493, -0.028811384, -0.051282723, -0.059572466, 0.045156002, -0.017188579, 0.0076097893, -0.07731338, -0.026558558, 0.0065722708, -0.020989249, 0.030113118, 0.029742237, -0.027164428, 0.016061334, -0.021958012, 0.0062359055, 0.09077518, 0.059131708, 0.02213777, 0.035331424, 0.03563696, -0.044333275, -0.0049399007, 0.001125939, 0.09870246, -0.017299356, -0.029580502, 0.03701098, 0.023498382, -0.005519322, -0.034567095, -0.08237375, 0.0105382865, 0.10117841, -0.032161023, -0.012504545, -0.013426859, 0.02184428, 0.04934193, 0.01701268, -0.026635358, -0.060837258, -0.014110277, 0.047308195, -0.03803439, -0.031096479, -0.0052527487, 0.008191409, -0.0006983138, -0.06376377, -0.016993798, -0.011561305, -0.0270459, 0.031222729, 0.100863054, -0.0420039, -0.019376554, 0.05340212, 0.022686293, 0.025180195, 0.065192156, -0.0012813121, -0.045161005, -0.06155001, 0.05905173, -0.103097774, 0.018252965, 0.00410825, -0.050182883, -0.05397747, 0.0252999, 0.051332485, -0.028664319, -0.03729594, 0.031555023, -0.0042561055, -0.014750175, 0.019804545, -0.021385713, -0.028330503, 0.0033703542, -0.023898786, -0.061326146, 0.050186973, -0.07383813, -0.002433162, 0.04413606, -0.006374625, -0.04152129, 0.030182453, 0.056281306, -0.013599722, 0.035337076, -0.03275693, 0.04855514, -0.007016294, -0.0075439624, 0.026878443, -0.045844458, 0.0055308533, 0.064359106, -0.04245852, -0.019948404, -0.008078849, 0.009530076, -0.010134988, 0.008587319, -0.07175696, 0.0036158164, 0.014781983, -0.04774023, 0.018419474, -0.045939952, -0.013784974, -0.0021124163, 0.044737544, -0.024547355, 0.028820349, -0.025769059, -0.0001264105, -0.032805063, 0.07351316, 0.002251711, 0.018741194, -0.0130700115, -0.0016852684, 0.026399778, 0.07675604, -0.016287908, 0.031124907, 0.04888642, 0.023917835, 0.009924228, -0.038946137, 0.04876942, -0.024648635, -0.035167895, 0.009683247, -0.026037617, -0.006561843, -0.04740503, -0.03791611, 0.01600655, 0.026248977, -0.0038243814, -0.01091279, -0.0052795704, -0.04910978, 0.0050580986, 0.00520959, 0.09022464, 0.06222215, 0.05822603, -0.020328509, -0.028787065, -0.017682714, 0.015732745, -0.05962444, 0.003499685, -0.044467814, -0.008768611, -0.015632873, -0.052187264, 0.00037829136, -0.03177269, -0.023833457, -0.0052128634, -0.0047060004, -0.015121676, 0.05161187, -0.03261119, -0.019163603, 0.020971952, 0.017500779, -0.0025171344, -0.0044591487, 0.0034300222, -0.021480376, -0.024367077, 0.023040636, 0.047661774, 0.092371956, 0.029798757, -0.003937664, -0.014360053, -0.009710921, -0.057056278, -0.0136583345, -0.0474172, -0.016700422, 0.0382021, -0.050168023, -0.0024639084, 0.0006598864, 0.003989765, 0.0250138, -0.027056681, -0.040110942, -0.0071845693, -0.11311467, 0.003916091, -0.027106734, 0.064699896, -0.0011041794, -0.0055458443, 0.0027806037, -0.05651956, -0.057563283, 0.018723771, 0.034079943, -0.017149005, 0.022648772, -0.053351924, -0.04306486, 0.016289582, -9.482323e-05, -0.015248608, -0.026434686, -0.030799087, -0.0074812244, 0.009824889, 0.049081996, -0.04369667, -0.08318976, 0.03849346, 0.046371236, 0.010513744, 0.009864116, 0.033603128, -0.0058011743, 0.018244745, 0.034351893, 0.046961993, 0.014153484, 0.017410588, 0.049086917, -0.035521585, 0.05576895, -0.03441294, 0.040784545, -0.060387526, 0.012749975, -0.014234541, 0.012605798, 0.0049546, 0.027357211, -0.012603235, 0.00275707, 0.0045868764, 0.0025179775, -0.107304774, 0.0002605202, -0.022215746, -0.01997909, 0.011788774, 0.039344672, -0.03260246, -0.044054825, 0.05996166, 0.04461765, -0.014297876, -0.0122391265, 0.022533314, -0.018079247, 0.016643422, 0.019154035, -0.0041200775, -0.014690872, 0.004819172, 0.004042896, 0.026240574, 0.024520397, 0.05138502, 0.0017590016, 0.050847296, 0.021487912, 0.03721605, 0.035105135, -0.030311149, -0.05859718, 0.017652094, 0.00066615484, 0.05280292, -0.043602157, -0.030878954, 0.058470257, -0.011634957, 0.018851092, 0.02093997, 0.021836093, 0.0053857537, 0.032304, 0.043973196, -0.016259868, -0.019255515, 0.012761396, 0.0021981164, -0.03183041, 0.008088239, -0.02244577, 0.019114645, 0.036274645, 0.009603923, -0.028443776, 0.016935742, 0.04966451, 0.019220758, 0.0324418, 0.01380683, -0.066422604, -0.0022989695, -0.01140072, -0.00012510539, -0.05990205, -0.051761243, -0.050216787, -0.004973402, -0.014389603, -0.042014316, 0.0142198885, -0.040257465, -0.017128376, 0.033864345, 0.01895053, -0.04846581, 0.06192966, -0.016409168, 0.019622946, -0.05951434, 0.057617996, 0.0033093537, -0.0021318512, 0.029949205, -0.0061770133, -0.03585765, 0.00067429943, 0.041694522, -0.02786974, 0.0014340659, 0.0061264825, 0.05019966, 0.028381832, 0.04439294, -0.033541586, 0.042674955, -0.055883132, 0.038232036, 0.0011477125, -0.008637384, 0.0018692354, 0.026404236, -0.041245315, -0.017436402, 0.028562019, -0.025567027, 0.023280153, -0.006896305, 0.03369073, 0.00023874178, -0.09725337, 0.021800669, -0.019944524, 0.036407474, 0.0067976145, -0.015831621, 0.04112016, -0.07002226, 0.009669025, 0.021071, -0.020224785, -0.01997239, -0.0013448178, -0.041343626, 0.011749485, 0.006446508, 0.004764487, 0.04719031, 0.052697204, 0.010614748, 0.028732296, 0.030535685, -0.017897213, -0.01717198, -0.082359955, -0.04096039, 0.06349464, -0.01854201, -0.07819504, 0.0063748527, -0.024158882, 0.020566212, 0.016422594, -0.04085904, 0.0018969419, -0.05647026, -0.020776005, 0.07221035, 0.03784238, 0.00494257, -0.008712319, -0.030541494, -0.018678421, 0.006692669, 0.043480657, 0.0060861157, -0.020346105, 0.025571631, -0.0005505243, 0.038628027, 0.013923029, -0.019077584, 0.0011704295, 0.012791372, 0.052265026, -0.0313338, 0.045443226, -0.01526603, 0.02864145, 0.060001142, -0.07861772, 0.00036590797, -0.0014832211, 0.005581291, -0.0046107783, 0.027000312, 0.04950603, -0.0030087777, 0.03648733, -0.05166898, -0.036952026, 0.0353383, -0.041489087, -0.031518396, -0.012584011, 0.043777134, -0.029289152, -0.05039535, -0.06306677, 0.004891389, 0.012837081, -0.0047458713, -0.014121627, 0.04177871, -0.03298417, 0.012160056, 0.012257979, 0.05680154, -0.025476387, -0.05733138, 0.06375066, -0.059208203, 0.01601378, -0.0044523734, 0.03816416, 0.0036020994, -0.026133804, 0.035678994, -0.10362029, -0.08612234, -0.013839007, 0.011531153, 0.041669197, 0.043850552, -0.016371252, 0.006635723, 0.032114223, 0.009049507, 0.010107779, 0.032055493, 0.051956806, -0.021700902, 0.0027490614, -0.03716439, 0.017657796, -0.01435291, -0.017040005, 0.049082916, 0.019791743, 0.027073273, 0.030854244, 0.03721472, -0.035155885, 0.010314085, 0.09253002, -0.034834214, 0.005843175, 0.024165168, -0.053042043, -0.00033292564, -0.030736532, 0.0148736965, -0.0011443307, -0.022495816, 0.002301969, 0.068485625, 0.007062819, 0.01858484, -0.0075964998, -0.016902601, -0.0019327336, -0.02885428, 0.05264767, -0.015992472, -0.045452647, 0.0062977024, -0.022386227, -0.015054898, -0.06741277, 0.020574884, -0.011337327, -0.038533513, -0.0038332932, 0.07268627, 0.017547471, 0.06256745, 0.036939416, 0.096745946, -0.020874107, 0.0133589385, -0.0057975473, 0.030062879, -0.07153643, 0.026408406, 0.013006804, -0.00029566558, 0.023668643, -0.0019014705, -0.018129315, 0.07833336, -0.0077821547, -0.035851985, -0.06289859, 0.055668928, 0.029522697, -0.033152234, -0.005292459, -0.008957816, 0.022531448, 0.016681429, 0.008380991, -0.047982384, -0.021355249, 0.024924437, -0.017661005, -0.062450215, 0.041691188, 0.001664649, -0.0005837816, -0.05302575, 0.015908452, -0.040625777, -0.05250858, 0.00781312, -0.060154762, -0.011054966, -0.008600802, -0.019548772, 0.01656713, -0.062247515, 0.006118355, 0.018191112, 0.028564863, -0.0648384, -0.029139059, -0.007106094, 0.0052785496, 0.054221056, -0.02224887, -0.0037166395, 0.012938995, 0.0028855521, -0.026162582, 0.04484679, -0.031582527, 0.04290557, -0.015206397, 0.040547848, 0.038001504, -0.04836599, 0.060344283, 0.039856177, 0.021953415, 0.009407518, 0.008846777, 0.0006330938, 0.040537477, -0.0073301424, -0.030690845, -0.049471166, -0.029457038, -0.0059116445, 0.023843747, 0.03352699, -0.012452344, 0.005015404, -0.010614102, 0.02548141, 0.042559307, -0.02624805, 0.025210645, -0.022135267, -0.0056410087, -0.02619403, -0.037088238, 0.011221218, 0.025430908, 0.00586477, 0.03305518, -0.0231705, 0.06221378, 0.012425744, -0.034371637, -0.0028555735, 0.006568987, 0.02174392, -0.03973513, -0.015710318, 0.011755384, -0.006006285, 0.011711563, 0.020693613, -0.039452955, 0.0322066, 0.005191456, -0.01780558, -0.059660275, -0.014344973, 0.009725673, 0.060717538, 0.11668277, -0.03312469, 0.043633156, -0.080171555, 0.019875899, -0.043539967, -0.016695764, -0.055439085, -0.011267416, 0.040178373, 0.011458071, 0.020818908, 0.02002491, -0.06077439, 0.0026149296, -0.07500159, 0.015455187, 0.039938685, 0.021966783, 0.03570924, 0.036293503, 0.03365647, 0.04508979, 0.034078326, 0.006267732, -0.021203492, -0.025447967, -0.013011647, 0.07060567, 0.019381277, 0.008823808, -0.072664276, 0.014691159, -0.050682258, 0.06198163, -0.006030504, 0.012992226, -0.012047787, 0.049828764, 0.013556831, 0.0006771622, -0.03069707, -0.012649648, -0.03859061, -0.0359056, -0.00774135, -0.021478442, -0.058385585, 0.0069556623, 0.028291322, -0.006880078, -0.053529892, -0.03163719, -0.03339172, -0.011288661, -0.0753735, 0.011132371, 0.0033245285, 0.018167343, 0.0008115608, 0.012407349, -0.0066059493, -0.0295518, 0.013082938, 0.012958219, 0.0049798284, 0.008309442, -0.010272874, 0.0014090331, -0.08452694, -0.011588319, 0.04786913, -0.074868985 ] }, { "values": [ -0.011778074, -0.0027455038, -0.028286947, -0.017676765, 0.03193914, 0.04875041, 0.050678376, 0.032470442, -0.0064130225, 0.00067944144, 0.020532727, 0.020563988, 0.028176865, 0.0048267595, -0.046245117, -0.028324049, 0.05382689, 0.014516119, -0.06887778, -0.039875153, 0.030822081, 0.039300527, -0.020096226, -0.026503501, -0.046643365, 0.025724817, 0.022854045, -0.03785611, 0.007862895, -0.06197365, -0.007803732, 0.04989572, -0.05553044, -0.05615138, 0.029251417, 0.06589822, -0.041895326, -0.0032796485, 0.034922294, -0.047448047, -0.08047492, -0.06179908, 0.0026832467, 0.046506666, -0.042535838, 0.01625492, 0.053447623, 0.031309932, -0.03291221, 0.038455516, -0.0036792962, -0.0029201263, 0.016682597, -0.0040176217, -0.0101403855, -0.039131425, -0.060520507, -0.03501967, 0.026933584, -0.012360155, -0.03860308, 0.026030852, -0.0116342455, -0.016641708, -0.013046291, -0.057183884, -0.029714756, -0.037500963, -0.050045576, 0.058849826, -0.028988307, 0.021328095, -0.08158339, -0.019008327, 0.0173587, -0.0063770413, 0.035721775, 0.024101436, -0.020770252, 0.04576478, -0.0145664215, -0.0059440243, 0.064470805, 0.06895869, 0.01097172, 0.027423639, 0.043255724, -0.05932813, -0.021790568, -0.0034409508, 0.075806044, -0.018399172, -0.031939637, 0.007865488, 0.012129743, 0.0087842075, -0.047113057, -0.09045847, -0.010015925, 0.105575226, -0.035762984, -0.017978638, -0.014132154, -0.009839827, 0.032586176, 0.04351942, -0.03198525, -0.05754864, -0.03738683, 0.046970036, -0.035677277, -0.01745897, 0.021072485, 0.01431726, 0.006918522, -0.05200886, -0.008454837, -0.01945826, -0.010883203, 0.0024837554, 0.060293555, -0.03527892, -0.019206412, 0.07089253, 0.024036795, 0.00922604, 0.035903513, 0.010651309, -0.044545095, -0.060724914, 0.07464077, -0.11172422, 0.032464173, -0.008856004, -0.032656066, -0.030729387, 0.048973978, 0.04703619, -0.021730797, -0.023995493, 0.009523119, 0.00595312, -0.05913976, 0.021707714, -0.021406744, 0.004241022, -0.018400833, -0.022507574, -0.06543651, 0.07471906, -0.051655497, -0.008632452, 0.0441981, -0.020640329, -0.033358004, 0.05965914, 0.054310985, -0.0034713072, 0.02104738, -0.01888269, 0.077062316, -0.0032164082, -0.012026984, 0.014875693, -0.046424538, 0.013295071, 0.055786874, -0.0328618, -0.008293496, -0.0036306523, 0.008737923, -0.04010297, -0.015104146, -0.08445462, 0.010330629, 0.02055266, -0.06829182, 0.0033021143, -0.06480488, -0.024906563, 0.024801962, 0.07363036, -0.031488575, 0.029164096, -0.029857714, 0.0070833103, -0.02678323, 0.06430894, 0.006069516, 0.01693405, -0.010942202, -0.009909361, 0.0024552683, 0.09846971, -0.022829026, 0.026414443, 0.053993005, 0.015481776, -0.012692386, -0.026844095, 0.041944224, -0.0023657177, -0.04333688, 0.034379892, -0.016342659, -0.010778133, -0.043087836, -0.03289347, 0.019299524, 0.008971274, -0.012205455, 0.003945728, 0.0063521396, -0.036269527, -0.011167068, 0.01572226, 0.08869947, 0.035356145, 0.065523125, -0.02698856, -0.045023594, -0.018316166, -0.0010708371, -0.05651747, 0.020617248, -0.02086795, -0.015152812, -0.014885287, -0.0508471, -0.0031689503, -0.02608115, 0.0052643544, 0.015398183, -0.004896638, -0.020846972, 0.036612168, -0.024849286, -0.0063548703, 0.020140262, 0.00094706874, -0.012393177, -0.024545794, -0.014700998, -0.024319112, -0.029291717, 0.04507199, 0.051738847, 0.04542335, 0.03792866, -0.0028824029, -0.010766603, -0.02107582, -0.06506278, -0.013745843, -0.053666726, 0.007928414, 0.05711675, -0.053761538, 0.040918488, 0.008205824, 0.00789519, 0.04236009, -0.038080312, -0.039545137, -0.011471372, -0.08194384, -0.01245937, -0.035327446, 0.06350929, -0.011566551, -0.006754476, 0.006277077, -0.051592793, -0.053387593, 0.034236167, 0.01821093, -0.0100004515, 0.011187686, -0.045488488, -0.03367578, 0.031106994, -0.014011011, 0.00080840674, -0.019148123, -0.047325395, -0.0066869305, 0.0045203557, 0.05732086, -0.025688594, -0.08943035, 0.012564524, 0.037015684, 0.013940341, -0.0117430035, 0.026430182, -0.0082270475, 0.02372344, 0.032772005, 0.0023617637, 0.033678498, 0.019173354, 0.066535525, -0.046698015, 0.048271175, -0.039072614, 0.058744688, -0.058181543, 0.0108374795, -0.008579198, 0.0030323311, 0.0054044984, 0.030777747, -0.026065573, -0.011061323, 0.00904298, -0.0008276902, -0.11185536, -0.02268937, -0.033553813, -0.0112815285, 0.0014129772, 0.041436072, -0.018243661, -0.04211689, 0.0567113, 0.014712313, -0.008115911, 0.015037456, 0.020975241, -0.013038682, -0.00023647306, 0.032495737, -0.0012444508, 0.00756409, 0.0059875357, 0.015904246, 0.022721073, 0.01875214, 0.057423208, -0.0010346584, 0.07292662, 0.019592326, 0.051065754, 0.04008807, -0.023010561, -0.078029916, 0.039686356, 0.008229001, 0.05494873, -0.06628228, -0.009822116, 0.0699299, -0.014621143, 0.0005149527, 0.014107626, 0.0025598248, 0.0004724112, 0.024835944, 0.039825916, -0.0040539284, -0.005613661, -0.0007523112, 0.008792825, -0.02007234, 0.013347959, -0.02264596, 0.0102645485, 0.03494958, 0.0041539227, -0.016320895, 0.03664859, 0.030287469, 0.0067178537, 0.037062407, -0.001244377, -0.06080135, 0.017582677, 0.0058612465, -0.006032956, -0.06628052, -0.028152496, -0.063775055, -0.024321342, -0.0062222583, -0.030238759, 0.022749124, -0.034859534, 0.0050585116, 0.028238792, 0.033595767, -0.04352192, 0.069755174, 0.0010988336, 0.009511014, -0.046494376, 0.05302462, 0.017815925, -0.014395833, 0.032223135, -0.017308053, -0.047342185, 0.009890528, 0.056189008, -0.037435498, -0.013395158, -0.018578406, 0.058751136, 0.018213008, 0.044710457, -0.021274513, 0.052164864, -0.049577467, 0.041736815, 0.011776104, -0.01603432, 0.0044707097, 0.030333923, -0.03640169, -0.007280244, 0.022555776, -0.023213103, 0.02849576, 0.020294769, 0.019749928, -0.0024220382, -0.08157972, 0.005653202, -0.03053413, 0.013978725, 0.017212955, -0.02046564, 0.027936203, -0.039720234, 0.004840314, 0.032662753, -0.026055824, -0.04735041, 0.0018036262, -0.044395838, 0.023170512, 0.0019532044, -9.273724e-05, 0.034555763, 0.03558441, 0.000116026175, 0.00054027024, 0.030008556, -0.0118909525, -0.026173854, -0.059701663, -0.04062378, 0.04907137, -0.0072401855, -0.06092983, -0.0043635145, -0.024007145, 0.013068849, 0.0035598439, -0.054821443, 0.034075446, -0.0430308, -0.014456443, 0.07427903, 0.041002173, 0.0019419016, -0.009768051, -0.033072703, -0.0077592363, -0.0035197942, 0.0544848, 0.0033900049, -0.021081254, 0.044795606, -0.0032666672, 0.032764852, 0.0077410457, 0.0038656322, 0.013749786, 0.007862368, 0.04229509, -0.016098514, 0.03205333, -0.0072936527, 0.037003957, 0.052721687, -0.059369832, 0.0017646066, 0.027450742, 0.010040931, 0.013610063, 0.03093674, 0.043636706, 0.0067766183, 0.030778615, -0.046055544, -0.046139758, 0.04414186, -0.049807943, -0.025656434, -0.008737002, 0.020705674, -0.044376593, -0.045474395, -0.08473784, -0.00015062682, 0.014641845, -0.013995032, -0.012238225, 0.045679085, -0.061526243, 0.013441505, 0.03192883, 0.04000659, -0.021966528, -0.062835485, 0.05112598, -0.09440518, -0.0033605557, -0.0011789585, 0.03784383, 0.02090972, -0.016813911, 0.0430875, -0.10076464, -0.1031495, -0.009954403, 0.007750481, 0.047643665, 0.06243867, -0.0072332527, 0.011708622, 0.020894455, 0.0010102894, 0.023634145, 0.029983569, 0.04771059, 0.0024239237, 0.008665425, -0.03959852, -0.011746928, 0.0051624416, -0.00965145, 0.04185907, -0.0028466687, 0.025576621, 0.0215998, 0.04334144, -0.01976946, -0.0039164047, 0.0549613, -0.039758828, 0.009917493, 0.021462549, -0.042955324, 0.014902492, -0.017886618, 0.021424811, 0.022674317, -0.028514378, 0.0041093044, 0.04133516, -0.01805091, 0.018335924, -0.019424098, -0.002561485, -0.022323627, -0.012069555, 0.053554073, -0.00802764, -0.03769144, 0.022024052, -0.0014802503, -0.008262376, -0.046031013, 0.028489543, -0.014032292, -0.031028157, -0.020319086, 0.06959112, 0.008321856, 0.04082614, 0.044046532, 0.09317412, -0.004073699, -0.0031909945, -0.007909747, 0.02805084, -0.06601925, 0.033392426, 0.011317854, -0.017131092, 0.03514417, -0.018384462, -0.028470352, 0.055556893, -0.0043486715, -0.0321264, -0.054005954, 0.04172033, 0.010420537, -0.059185084, 0.00051449286, -0.0020912827, 0.029238144, 0.00039507938, -0.0022123004, -0.045566138, -0.02370255, 0.036768157, -0.041183352, -0.047022913, 0.026931746, -0.010568254, 0.0069186147, -0.05462673, 0.022365497, -0.04661085, -0.04718657, 0.0030007383, -0.05146798, -0.0036948367, -0.018888272, -0.039191302, 0.00564893, -0.080997564, 0.015626363, 0.013215012, 0.025890192, -0.05308104, -0.021752045, -0.041473202, 0.0058905636, 0.031156903, -0.037631508, 0.009010011, 0.022573786, 0.015559702, -0.021326477, 0.040595133, -0.033471275, 0.035317827, -0.01625136, 0.030422505, 0.015048912, -0.061879266, 0.06271553, 0.04394318, 0.01881536, 0.007247622, 0.023165235, 0.030480323, 0.033053786, -0.013925178, -0.04083661, -0.07370997, -0.021017797, -0.0054049487, 0.027316667, 0.023024451, -0.025167054, -0.010278275, -0.021038407, 0.02464258, 0.026482211, -0.04366861, 0.027060289, -0.023657728, 0.0019408007, -0.035092834, -0.03359716, 0.024320327, 0.03571889, 0.006339319, 0.032766122, -0.010881232, 0.055284552, 0.019988248, -0.078424826, -0.019415382, 0.010990132, 0.03164921, -0.06058213, -0.009880682, 0.010354369, -0.006815832, -0.020604337, 0.028014118, -0.06047415, 0.013440914, 0.0088342475, -0.023859229, -0.064390875, 0.015442701, -0.005775502, 0.05535497, 0.10192883, -0.051204, 0.028716432, -0.0856563, 0.03384477, -0.060956176, -0.009166743, -0.04657081, -0.013085575, 0.03821557, 0.0073920437, 0.012536959, 0.041570213, -0.06342142, 0.025798706, -0.063244745, 0.012423395, 0.045074344, 0.033454984, 0.034444217, 0.044858027, 0.03639944, 0.028669564, 0.029652214, -0.0005050952, -0.02815184, -0.031747583, -0.019313749, 0.07979645, 0.020324448, -0.013868643, -0.07228104, 0.00011014019, -0.045864183, 0.07054786, 0.00030216575, -0.0021966195, -0.01198073, 0.036741387, -0.009534001, 0.0072267475, -0.014618665, -0.013541115, -0.028057247, -0.02888582, 0.0055266637, -0.025192454, -0.07094034, 0.004625232, 0.023560334, -0.0069391318, -0.06164176, -0.033462536, -0.028376397, -0.02621143, -0.0534592, 0.018846292, 0.029556114, 0.011615013, 0.017421663, 0.037340533, -0.0030363633, -0.052533783, 0.010177974, 0.016352613, -0.021129977, 0.0144156525, -0.0065233805, -0.0043370896, -0.06648072, 0.007994399, 0.051941175, -0.0484822 ] }, { "values": [ -0.020398287, -0.026296716, -0.048904467, -0.030748544, 0.02019643, 0.011416265, 0.075453274, 0.044652116, 0.0025716538, 0.0032201973, 0.024305483, 0.056473877, 0.036018237, -0.0065684263, -0.038712006, -0.05669733, 0.01185786, 0.009797151, -0.055541836, -0.01938374, 0.054481767, -0.0072054663, -0.001822135, -0.03482019, -0.04733034, 0.026751531, 0.009540186, -0.04703639, 0.042145617, -0.058026467, -0.0014803872, 0.050243896, -0.037036728, -0.04871743, 0.07932693, 0.026523696, -0.019884804, -0.016788637, 0.013206203, -0.02071731, -0.0935293, -0.062023778, -0.032843873, 0.054495145, -0.042742524, 0.021125725, 0.013192926, 0.0080711385, -0.041563768, 0.044655453, 0.017969362, -0.017357131, -0.036513735, -0.009838316, 0.009448699, -0.047947194, -0.045354586, -0.06324992, 0.057876542, 0.0042140693, -0.00822232, -0.0041375454, 0.0040201913, -0.034553405, -0.0048107333, -0.057761338, -0.013454729, -0.029692164, -0.0662335, 0.020607973, 0.0023142083, 0.0046281284, -0.09988751, 0.0027470347, 1.3508968e-05, -0.031122947, 0.04271788, 0.023708431, -0.015756687, 0.03441698, -0.01276935, -0.017789643, 0.07652964, 0.040728882, -0.007621537, 0.02574457, 0.0292043, -0.005275258, -0.026981547, 0.014393094, 0.08001122, -0.032134466, 0.00650335, 0.03639151, 0.038881753, -0.023985073, -0.07152765, -0.084801376, -0.02367965, 0.070370786, -0.07026909, -0.00117241, -0.017372474, 0.01111721, 0.042906065, 0.035069887, -0.009872876, -0.02710981, -0.033492185, 0.031047309, -0.013909075, -0.015854225, 0.015181637, -0.025796756, -0.0015760333, -0.033444174, -0.011805976, -0.015784537, -0.022761874, 0.002461591, 0.07051084, -0.01799748, -0.049328893, 0.06059317, 0.03779559, 0.034663107, 0.038206514, -0.0054365806, -0.044918098, -0.05607162, 0.047592904, -0.11578748, 0.030670257, 0.01821409, -0.043894853, -0.03456456, 0.037976187, 0.01859367, -0.030437028, -0.035409372, 0.04147155, -0.0155757265, -0.04352947, -0.0030433761, -0.014161418, 0.01918224, 0.008112733, -0.015229006, -0.09645087, 0.01983105, -0.054049943, -0.0034154188, 0.022057278, 0.011889421, -0.04469457, 0.04296437, 0.070499495, -0.011209098, 0.08082077, -0.021701155, 0.04198329, -0.006421639, 0.019374695, 0.060406517, -0.052371696, 0.021665923, 0.046009734, -0.043045882, -0.016104177, -0.0003833428, 0.015137226, -0.029384095, -0.0010631655, -0.096705385, -0.00435106, 0.008905755, -0.04261748, 0.0032549533, -0.06959352, -0.012836531, 0.026075233, 0.037709665, -0.03011799, 0.008434667, -0.032770496, 0.012954854, -0.041859474, 0.065499894, 0.008789371, 0.023221837, 0.0026386387, -0.00032597684, 0.03558008, 0.0889498, -0.03320137, 0.041666117, 0.039928567, -0.013156133, 0.03200075, -0.033226486, 0.037481733, -0.033054598, -0.019631896, 0.0073518823, -0.004900491, -0.034924228, -0.01804776, -0.05402319, 0.016032714, -0.01483476, -0.0085990755, -0.010123445, -0.0062055765, -0.023751883, -0.0037715505, 0.014143653, 0.10360728, 0.054767217, 0.048161972, 0.012860863, -0.062929355, 0.00036956792, 0.018171212, -0.07026312, 0.0053909565, -0.02661645, -0.03897044, 0.004434108, -0.044728614, 0.002731528, -0.039620623, -0.0099533545, 0.04192414, -0.028058566, -0.0062320973, -0.017771, -0.021515181, 0.007052303, 0.021633536, -0.011983999, -0.01808298, -0.003371863, -0.001586268, -0.013230018, -0.0089148125, -0.010128951, 0.05478338, 0.084355086, 0.00430698, -0.033555448, -0.015687168, -0.014011418, -0.0165709, 0.006141871, -0.030135639, 0.020276682, 0.023439288, -0.06806348, -0.008773852, -0.00084677275, 0.020187864, 0.012693237, -0.02439248, -0.049993623, 0.0081765065, -0.12663843, 0.010272284, -0.012788026, 0.058251083, -0.0217889, -0.00977651, -0.00901498, -0.0453585, -0.035788044, 0.0131221, 0.03437819, -0.058927033, 0.013498576, -0.025484504, -0.055897776, 0.03811626, 0.0040484034, -0.032279577, 0.0064763827, -0.0301779, -0.016726024, -0.010801023, 0.012582904, -0.039529044, -0.07634394, 0.04258236, 0.040753577, 0.016535912, -0.006269124, 0.043712754, 0.0017207629, 0.016355827, 0.039329194, 0.015399124, 0.021509785, 0.02656213, 0.050476216, -0.025561476, 0.040463615, -0.02153302, 0.029352436, -0.057788003, 0.0043747853, -0.02979971, -0.0062625366, 0.021155622, 0.017888924, -0.0045657535, 0.016890453, -0.02113751, 0.0116806775, -0.08238429, 0.01662989, -0.049950223, -0.032184213, 0.020365369, 0.033281475, -0.03547675, -0.075306065, 0.055152595, 0.01915542, 0.013532916, 0.0048585245, 0.018450228, -0.0154029215, 0.007084362, 0.007288865, -0.0058474066, -0.02933693, 0.023129337, -0.00472454, 0.0049276585, 0.020607842, 0.0563973, -0.01720538, 0.079950474, 0.017154591, 0.06570318, 0.043698646, -0.040579926, -0.055857077, 0.040055774, -0.020964073, 0.044896636, -0.032365564, -0.029072434, 0.07828627, 0.0048576584, 0.02124906, 0.026233379, -0.021940628, 0.01590433, 0.018002544, 0.040486444, -0.0017198592, -0.036047414, 0.00515937, 0.009762037, -0.030524783, 0.0057984632, -0.030897805, -0.006497899, 0.035094805, -0.0045196516, 0.0016917834, 0.012104496, 0.055631123, 0.018146576, 0.020100195, 0.0031744083, -0.07205149, 0.0012413899, 0.0029006316, 0.02199682, -0.04915996, -0.03281635, -0.0643639, -0.02327089, -0.0023170493, -0.008698092, 0.025240714, -0.048420563, -0.013416166, 0.038103662, 0.0065755164, -0.026335342, 0.06815366, -0.00829828, 0.026463645, -0.060373697, 0.058886707, 0.008640399, 0.0029817447, 0.034462523, -0.02273755, -0.04275519, 0.03945609, 0.04892576, -0.017905707, -0.00052781025, -0.007080928, 0.016732216, 0.016421717, 0.024212968, -0.022956612, 0.033766963, -0.040297117, 0.005142577, 0.007016871, -0.0090362625, -0.014237239, 0.03891595, -0.032017533, -0.04335889, 0.031854983, -0.037496638, 0.040394347, 0.0028934532, 0.047592882, 0.0029414273, -0.0808768, 0.0338089, -0.011241393, 0.019707631, 0.017348323, -0.0138564585, 0.056917146, -0.039189503, -0.011959145, 0.023209855, -0.029750366, -0.027544988, -0.0010823335, -0.057226818, -0.003275884, 0.002505286, 0.0009860118, 0.05718525, 0.04540647, -0.0035142822, 0.025651414, 0.023707129, 0.024589827, -0.035750724, -0.053734317, -0.049037527, 0.0652324, -0.02336182, -0.07886204, 0.018045852, 0.0066230125, -0.0077527855, 0.030888844, -0.029448593, 0.035997137, -0.052987788, -0.031232815, 0.08452757, 0.06353452, -0.0056027384, 0.021952169, -0.027339362, 0.017505817, 0.018364688, 0.048825216, -0.0006715043, -0.012555653, 0.008490139, 0.016278986, 0.03389274, -0.014996429, 0.038673162, 0.0081114415, 0.0039450238, 0.04793883, -0.023848532, 0.03860457, -0.024490114, 0.037691057, 0.007241798, -0.06310782, -0.018416615, 0.008629939, 0.018505892, 0.030955201, 0.020506645, 0.037455633, -0.0074421666, 0.044759113, -0.06288209, -0.06147261, 0.037897255, -0.0017834181, -0.024104297, 0.01160594, 0.049380325, -0.012806145, -0.037108645, -0.056997385, 0.010202649, 0.022146838, -0.023768812, -0.019375082, 0.050030753, -0.06490223, -0.00018774663, 0.014559426, 0.034130417, 0.011846611, -0.027980138, 0.03688305, -0.080266856, 0.021997917, -0.030173337, 0.053192496, -0.017523333, -0.051881026, 0.035791308, -0.08365107, -0.09141889, -0.003968568, -0.010967745, 0.02215032, 0.03908547, -0.029985523, 0.0071196086, 0.03347864, 0.0062256213, 0.0075971656, 0.034725472, 0.030148698, -0.002455098, 0.021176457, -0.01857448, 0.011190382, -0.0056796055, 0.0050355047, 0.04668979, 0.030003559, 0.014301878, 0.03057041, 0.048577275, -0.027693301, 0.018290205, 0.08313188, -0.030120207, -0.0034744835, 0.019568698, -0.031955793, 0.011492084, -0.017937494, -0.0023352418, 0.0055001047, -0.03178101, 0.011533828, 0.05152606, -0.012388286, -0.012017303, 0.0024768335, -0.021039115, -0.012829101, -0.008148258, 0.059885405, 0.0057544913, -0.041710973, -0.004422582, 0.0016492717, 0.015212537, -0.04773022, 0.025710883, -0.0063370704, -0.033253096, -0.0014519787, 0.08360718, -0.012966173, 0.074404195, 0.017861236, 0.07129669, -0.015328183, 0.020775445, -0.012830275, 0.033216145, -0.045231946, 0.04355519, 0.019834194, -0.015270486, -0.004019339, 0.0027096826, -0.012502293, 0.07051449, -0.02215112, -0.0057051037, -0.025554735, 0.05485195, 0.008971406, -0.02618236, -0.008699511, -0.02468877, 0.04278324, 0.025039563, -0.024773726, -0.04153121, -0.04847156, 0.033916883, -0.03261072, -0.05275881, 0.011119947, 0.004639644, -0.01738455, -0.06289394, 0.023993878, -0.043248445, -0.073917545, 0.02308189, -0.040061228, -0.00019142166, -0.010218322, -0.01969233, 0.0067016734, -0.06774085, -0.016876912, 0.024909433, 0.026093123, -0.06431306, -0.018314477, -0.01794927, 0.0015749625, 0.045760717, -0.04373029, -0.019684408, 0.016658703, 0.0063627237, -0.010004284, 0.049198482, -0.031542446, 0.0065289275, 0.0062062074, 0.0411853, 0.05667324, -0.05046849, 0.06314057, 0.029138884, 0.056362465, -0.0029423686, 0.012619895, 0.005553577, 0.0047182194, -0.0060292506, -0.005511787, -0.05811171, -0.0071213553, -0.043202575, 0.01488419, 0.028468387, -0.028258227, 0.023252528, -0.039860792, 0.043682653, 0.042163745, -0.044282444, 0.02011593, -0.021210302, 0.01702585, -0.027214466, -0.056359682, 0.028723035, 0.01374361, 0.024167588, 0.029916927, -0.021410184, 0.044869818, 0.011732239, -0.061121676, -0.028222075, 0.01853208, 0.007884966, -0.051783383, -0.04487343, 0.03573487, -0.004622829, 0.029961865, 0.04774491, -0.041264307, 0.0072867307, 0.03006246, 0.008594456, -0.05333964, -0.024613764, -0.0091872765, 0.040227257, 0.07952673, -0.051238418, 0.043985624, -0.05842808, 0.020541433, -0.024968712, -0.020241939, -0.043172073, -0.009599481, 0.048566893, -0.0016704578, 0.058901004, 0.03010691, -0.046684787, 0.0014752506, -0.0375563, -0.006347278, 0.0285689, 0.028277854, 0.016590513, 0.044712085, 0.027544593, 0.021452319, 0.046975546, -0.010893223, -0.0030358958, -0.030795423, -0.033681754, 0.06426498, 0.033751506, -0.009660037, -0.08589492, 0.026107004, -0.072055295, 0.06393212, 0.009070488, -0.0131591, 0.023187479, 0.038718347, 0.014038997, 0.006842182, -0.0072118845, -0.01612031, -0.048958357, -0.04096059, -0.017121967, -0.033607114, -0.055715114, 0.021900313, 0.024780441, -0.015306963, -0.035721693, -0.070181035, -0.028444245, -0.016924474, -0.06287145, 0.03169038, -0.00078138075, 0.0045885225, 0.026698861, -0.009845082, 0.0046160608, -0.042433113, 0.007804192, -0.003969478, 0.0013199765, 0.035195258, -0.027705358, 0.020784546, -0.08955188, 0.02630751, 0.046422295, -0.055853292 ] }, { "values": [ -0.0033607322, -0.028823834, -0.02846011, -0.017907575, 0.0044396804, 0.045566425, 0.04888554, 0.02719925, -0.02826207, -0.022278897, 0.019684324, 0.027990684, 0.030583696, 0.024498796, -0.04644528, -0.027394744, 0.049330182, -0.00036514166, -0.055125594, -0.03688038, 0.02063505, 0.024674255, -0.021312779, -0.038142554, -0.032337476, 0.03417195, 0.0076028467, -0.047247324, 0.015271361, -0.056975305, -0.017778456, 0.028415699, -0.031717572, -0.030461708, 0.031807896, 0.062170126, -0.03354448, -0.014801002, 0.03352267, -0.048726484, -0.06487912, -0.05885871, -0.022525884, 0.0586705, -0.048407853, 0.03246664, 0.026576541, 0.039075837, -0.0327578, 0.03184031, -0.0023362096, -0.0039914255, -0.020311533, -0.014022316, 0.00079208665, -0.036898386, -0.048173647, -0.05839198, 0.03909058, -0.00697234, -0.007984959, 0.039057247, -0.007551068, -0.017491667, -0.024634989, -0.053301252, -0.022922618, -0.06062563, -0.06074536, 0.042648826, -0.0068045086, -0.007019236, -0.08625805, -0.0073779435, 0.01154955, -0.018680913, 0.04559918, 0.015991036, -0.037110258, 0.05342732, -0.012585623, -0.020595368, 0.05752307, 0.05766577, 0.018050995, 0.053395666, 0.029671049, -0.023680156, -0.044979434, -0.011503226, 0.084880486, -0.03449961, -0.024343375, 0.027134078, 0.038108613, -0.010562826, -0.02736026, -0.11271238, -0.019230464, 0.09413091, -0.063537866, -0.016069828, -0.025673607, -0.027870247, 0.056871295, 0.053128637, -0.009875291, -0.048180096, 0.009475767, 0.050086766, -0.025740406, -0.019239904, 0.0027143105, 0.023017623, 0.005599166, -0.052253738, 0.016777473, -0.011434237, -0.023299333, -0.008197082, 0.06329136, -0.013573845, -0.0077792183, 0.0774549, 0.02017351, 0.017393926, 0.03253666, -0.0031207663, -0.019536177, -0.070742205, 0.05625451, -0.11481368, 0.03634269, -0.011865423, -0.04330977, -0.020474013, 0.05098095, 0.065712295, -0.019349713, -0.044297364, 0.017666617, 0.0072923996, -0.04060897, 0.0530803, 0.0045436756, -0.02946243, -0.0010725578, -0.039317235, -0.04481107, 0.04009438, -0.0586595, -0.0109286895, 0.035757165, -0.02298883, -0.03372827, 0.048832033, 0.06954079, -0.015031602, 0.008117448, -0.020017939, 0.050425444, -0.023139045, -0.0091104545, 0.01420061, -0.05466773, 0.042864624, 0.05553897, -0.01472367, -0.0015989945, -0.020594282, 0.010148006, -0.062036343, -0.020398635, -0.10056971, 0.004876081, 0.0141306585, -0.075094886, 0.0032550183, -0.052946, -0.015507995, 0.030805161, 0.04007442, -0.017884377, 0.011568209, -0.048514135, 0.00024532233, -0.010544962, 0.06523855, 0.008029714, 0.037302054, 0.0058108913, -0.0014710885, 0.01574151, 0.08280559, -0.02147767, 0.014188836, 0.06590942, 0.017453648, -0.02906239, -0.034097664, 0.011110018, -0.0003855289, -0.05713673, 0.03266459, -0.006266573, -0.021247972, -0.032717958, -0.024715269, 0.020410584, 0.023385298, -0.017669454, 0.037620164, 0.0072401855, -0.03483355, 0.0040407404, 0.00083536946, 0.08052685, 0.0608252, 0.07854969, -0.03942772, -0.020367855, -0.0047673364, 0.026147474, -0.057878826, 0.01696864, -0.02961243, -0.004297524, 0.00890695, -0.032075267, -0.020486448, -0.04085112, 0.015674293, 0.007013861, -0.01525431, -0.0124784205, 0.03571534, -0.0064718192, -0.0066387705, 0.0025413225, 0.009400617, -0.015134605, -0.027474724, -0.023390822, -0.03431444, -0.029206598, 0.03504813, 0.055883016, 0.04021071, 0.018956797, -0.0075135548, -0.0131282145, -0.026505994, -0.039765984, -0.021849047, -0.050479133, -0.005400426, 0.038592402, -0.06771735, 0.033471934, 0.015618885, 0.008813765, 0.014363784, -0.030099532, -0.049800023, -0.0001342382, -0.06766406, -0.01029149, -0.028073275, 0.05852859, -0.03639825, -0.005464444, 0.0178546, -0.059828065, -0.0576165, 0.033067364, 0.0141847115, -0.0018337012, 0.02452542, -0.057087287, -0.06658811, 0.04379119, -0.015387673, -0.001617402, -0.02150338, -0.040115807, -0.010519476, 0.0040321182, 0.0537315, -0.017525554, -0.076048374, 0.02594841, 0.026319182, -0.0060912236, 0.009371615, 0.056176413, -0.021294925, 0.006575248, 0.060041707, -0.0024560534, 0.03920641, 0.007955325, 0.050829317, -0.047601104, 0.043096446, -0.028134637, 0.08188195, -0.041842096, 0.0040971255, -0.027157728, -0.0048408597, -0.004521573, 0.05386485, -0.03354043, -0.020053638, 0.011361246, 0.006793919, -0.09791822, -0.011929348, -0.03225654, -0.027668651, -0.014268933, 0.038767736, -0.022661773, -0.060011033, 0.045154937, 0.0153136, -0.0072058756, 0.017427282, 0.031848844, -0.001129272, -0.0129077425, 0.01895655, 0.0026683314, -9.0816124e-05, 0.0009171228, 0.01349726, -0.00585642, 0.033936944, 0.046877008, -0.00984271, 0.06391398, 0.034957368, 0.05666089, 0.019106906, -0.007145279, -0.06258752, 0.03519765, 0.012347312, 0.04394776, -0.07052944, -0.023880597, 0.08032838, -0.029833429, 0.008917725, 0.020683108, 0.021375902, 0.008254924, 0.029927246, 0.010417623, 0.01727711, -0.026235469, -0.021944873, 0.0053742076, -0.015596355, 0.017410126, -0.0151189165, 0.026737666, 0.043521903, 0.00025210416, 0.015573458, 0.020129437, 0.048117463, 0.026833635, 0.033848464, 0.0033991174, -0.087696716, -0.0025913473, 0.006521986, -0.0024102887, -0.05645639, -0.022854509, -0.06321532, -0.041500214, -0.0062691285, -0.007913175, 0.0007566129, -0.040403996, 0.009885112, 0.032629423, 0.013530317, -0.049349677, 0.049783826, -0.011718544, 0.016970798, -0.022483243, 0.045152787, 0.03513792, 0.013824899, 0.038458597, -0.025599822, -0.03422041, 0.002785092, 0.054662157, -0.030867536, -0.0018123462, -0.00010242293, 0.060668647, 0.02766605, 0.041692056, -0.016727597, 0.0391592, -0.04852529, 0.036140155, 0.010415853, -0.014165795, 0.013447456, 0.027840205, -0.03345708, -0.0059247147, 0.03665067, -0.006600205, 0.036755107, -0.0059584286, 0.03561886, -0.011722625, -0.09055314, 0.030881502, -0.025287837, 0.011632554, 0.025054706, -0.0028540604, 0.033306386, -0.03798178, 0.014273075, 0.01424259, -0.031089813, -0.05225821, 0.011090662, -0.03960872, 0.0056349663, -0.010411688, -0.013562051, 0.044978417, 0.028094478, -0.0027795758, 0.0011059643, 0.02363528, -0.00974295, -0.017521057, -0.07291922, -0.048723787, 0.050857607, -0.014982778, -0.062934555, -0.006391824, -0.01226025, 0.027885437, 0.003993641, -0.034872483, 0.041101743, -0.06332829, -0.011121704, 0.050900813, 0.045674775, 0.0053453413, -0.0011838056, -0.033587728, 0.00491711, -0.024572037, 0.046568204, -0.0038117778, -0.0023228235, 0.028074969, -0.0047810464, 0.033545006, 0.018934958, -0.018468771, 0.004725854, 0.005777947, 0.035667878, -0.031109618, 0.03650099, -0.011790347, 0.043385435, 0.069105566, -0.046881374, -0.030562745, 0.038758114, 0.009150725, 0.037759632, 0.032443736, 0.046237674, -0.006397714, 0.044567287, -0.025605433, -0.035486706, 0.050383113, -0.04594235, -0.011282025, -0.021885814, 0.042827636, -0.04091976, -0.049396586, -0.06940889, -0.019406978, 0.025754582, -0.027665796, -0.017892187, 0.026688581, -0.04499828, 0.013572912, 0.011853369, 0.046307143, -0.0068462705, -0.07026159, 0.06792512, -0.07609698, -0.0032456385, -0.025983982, 0.061036494, 0.01535437, -0.0073637394, 0.043330133, -0.101062804, -0.094953954, 0.010474077, -0.005586922, 0.035238598, 0.040922254, -0.009362061, -3.119523e-05, 0.029333882, -0.0035766833, 0.020294078, 0.031477883, 0.027146613, -0.011015987, 0.010649655, -0.03973701, 0.0073103267, 0.0012891414, 0.012081096, 0.04338646, 0.017935654, 0.04724551, 0.02201951, 0.027193855, -0.04364834, 0.0007966621, 0.06982065, -0.047268827, 8.465738e-05, 0.03305247, -0.030970203, 0.02078119, -0.025832344, 0.020491311, 0.036896594, -0.02247349, 0.0026680983, 0.05852603, -0.008554011, 0.005270891, -0.010221746, 0.027385945, -0.01393468, -0.029336367, 0.0355972, 0.0015397941, -0.043666694, 0.02426861, 0.00286701, 0.0061367173, -0.042939004, 0.031866096, -0.02248105, -0.018567529, 0.0004179273, 0.07061028, -0.00033775816, 0.0574506, 0.03961945, 0.07064059, -0.005555419, 0.008293478, -0.023036646, 0.023403404, -0.050241053, 0.031870037, 0.021555042, -0.01452298, 0.009394765, -0.014788365, -0.028566891, 0.067335725, -0.009946341, -0.037658732, -0.038451876, 0.0580279, 0.0078992825, -0.05305315, -0.0070365607, -0.014245317, 0.03787313, 0.012482488, 0.0015651016, -0.03414224, -0.031531192, 0.016686128, -0.033716682, -0.049773764, 0.017696917, -0.019898536, 0.02729491, -0.040476844, 0.03818331, -0.061133947, -0.042012345, 0.003961642, -0.06604746, -0.027906226, -0.024865808, -0.047954496, 0.0084603205, -0.090119526, 0.017561523, -0.011411728, 0.030866876, -0.050096363, -0.016588686, -0.009880122, -0.0070500295, 0.014164433, -0.03135747, -0.00612895, 0.027931644, 0.02205402, -0.013331031, 0.023277644, -0.031242449, 0.028989762, -0.028617138, 0.04058144, -0.0052239443, -0.065621056, 0.06365721, 0.0410339, 0.01280819, 0.011530398, 0.028553646, 0.014384014, 0.03187607, -0.024563253, -0.03411398, -0.05411577, -0.024368567, -0.012855775, 0.018856538, 0.0075295065, -0.004013531, -0.006199375, -0.026215916, 0.009907448, 0.019576663, -0.056591604, 0.018143384, -0.005802498, -0.003763184, -0.022859478, -0.031327255, 0.025786845, 0.032639693, 0.012927698, 0.02433839, -0.027562518, 0.05300678, 0.006935118, -0.02792722, -0.036944266, 0.011550733, -0.00045051982, -0.05833883, -0.00080466375, 0.0028190047, -0.013489369, -0.010016947, 0.041325137, -0.050278794, 0.044221103, 0.01821967, -0.046827246, -0.06923705, 0.010553391, -0.015826529, 0.054602735, 0.09163911, -0.07066216, 0.049102698, -0.08044051, 0.039072912, -0.06313114, 9.964504e-05, -0.045392178, -0.00367407, 0.045319874, -0.0023426428, 0.02133275, 0.039507303, -0.022520287, 0.029337335, -0.08706473, 0.01522804, 0.04055194, 0.03578713, 0.051590405, 0.045964688, 0.04081322, 0.009971868, 0.03859424, -0.014086316, -0.04287123, -0.032895386, -0.02520047, 0.09415298, 0.03569041, 0.010717828, -0.06811088, 0.0018511328, -0.026435465, 0.08364618, -0.013677024, -0.0004403315, -0.014251429, 0.03752427, -0.004522097, -0.003830737, -0.018710881, -0.013196395, -0.007322938, -0.037183575, -0.0018018173, -0.038845394, -0.06170757, 0.001131038, 0.019110087, 0.0008648999, -0.04156069, -0.068135776, -0.024997968, -0.012233164, -0.049495593, -0.00044452483, 0.007870095, 0.017923033, 0.021510834, 0.03131106, 0.016928745, -0.054420985, 0.020464668, 0.00254671, 0.0016221311, 0.013003172, -0.0052098627, -0.015793724, -0.06495088, -0.0018484697, 0.035729203, -0.051325865 ] }, { "values": [ -0.014232719, -0.020023607, -0.0021439607, -0.031868625, 0.030942546, 0.011071897, 0.06172116, -0.015402733, -0.037752207, -0.00037342714, 0.04285646, 0.03763534, 0.03307733, 0.013291251, -0.033090465, -0.024313698, 0.04383844, 0.018503278, -0.051791657, -0.028130662, 0.057942163, 0.007762071, -0.0058975383, -0.038786545, -0.051418632, 0.034878936, 0.0009404017, -0.05858411, 0.02718789, -0.053434055, -0.00412354, 0.054503944, -0.067451395, -0.060805615, 0.07057602, 0.029902043, -0.016273672, -0.00987211, 0.041235633, -0.045599945, -0.07055443, -0.035380755, -0.031459443, 0.047069307, -0.05843876, 0.036373492, 0.02674273, 0.005938479, -0.014329317, 0.039202906, 0.04707009, 0.0035960393, 0.008586805, 0.006658332, 0.004562224, -0.03183023, -0.085844494, -0.08733168, 0.06656738, -0.011293272, -0.0014000726, 0.018482655, -0.018220171, -0.033222567, 0.021056792, -0.03034342, -0.019953856, -0.02970979, -0.059221655, 0.04121818, 0.008209482, 0.011282975, -0.10300259, -0.033357315, -0.0082780225, -0.025756326, 0.016325641, 0.018668845, -0.04814701, 0.014290021, -0.0364049, -0.015121043, 0.064762466, 0.051953685, 0.0069331676, 0.036291134, 0.004898945, -0.02563927, -0.026964447, -0.0038576557, 0.06710334, -0.015783545, -0.009222473, 0.021417629, 0.025109937, -0.035688113, -0.07617356, -0.0754231, -0.028030276, 0.09513355, -0.05310507, -0.012917809, -0.011184496, -0.01253989, 0.06931309, 0.020867538, 0.013444768, -0.045777228, -0.013802508, 0.06894414, -0.032618806, -0.030021379, -0.011998006, 0.00072471204, -0.008854843, -0.018175505, 0.007270028, -0.043705225, -0.025453797, -0.020677779, 0.055428814, -0.025127787, -0.083335355, 0.042331513, 0.04879582, 0.025328182, 0.0029577075, -0.015319188, -0.03180175, -0.06770297, 0.031421512, -0.130233, 0.0146944495, 0.011803862, -0.035998177, -0.037810773, 0.034153882, 0.019911157, -0.01908997, -0.023833698, 0.011465018, -0.02590259, -0.044125784, 0.018116856, -0.016879858, 0.0031186014, -0.003145108, 0.008233084, -0.07293644, 0.043998748, -0.06743642, -0.0022093838, 0.014187378, 0.01538777, -0.04651777, 0.05921706, 0.0642573, -0.019379381, 0.042590838, -0.02922065, 0.06217317, -0.02513519, -0.004541823, 0.03898869, -0.02792168, -0.0058364617, 0.040031653, -0.041125957, -0.01978115, -0.02101659, 0.028125316, -0.026408346, -0.022305638, -0.09622866, 0.007950463, 0.015941788, -0.029297171, -0.008999058, -0.019412056, 0.01053099, 0.04076123, 0.006653357, -0.026957374, 0.010523181, -0.0444599, -0.022580419, -0.06458707, 0.07421146, 0.036378607, 0.037141275, -0.010036314, -0.015893565, -0.018733865, 0.06647185, -0.017957233, 0.042336624, 0.042338576, 0.0047249394, 0.046417907, -0.04768441, 0.05053693, -0.019302169, -0.01665987, -0.01372877, -0.015735859, -0.021999143, -0.0134258345, -0.027620174, 0.023965986, 0.022425652, -0.015958665, 0.0018113868, 0.015430402, -0.02638292, -0.038504425, 0.03253582, 0.08808463, 0.03958093, 0.02145819, -0.014360079, -0.020226257, 0.0010197536, 0.050123796, -0.051099606, 0.017248608, -0.021845162, -0.022026122, -0.031953625, -0.035672694, 0.032697514, -0.037461095, 0.011925692, 0.047281835, -0.024637219, -0.02654989, 0.011271106, 0.0037902794, -0.0010149251, 0.0055915844, -0.016804852, -0.02976392, 0.004358979, 0.005540421, -0.019106135, -0.00096570427, 0.040142745, 0.05471088, 0.0815571, -0.0071603362, -0.0073587787, 0.0051917844, -0.015334861, -0.05033553, 0.008815102, -0.013436904, -0.035087876, 0.032215934, -0.08913467, 0.021009412, -0.0052959025, 0.04366623, 0.014070887, -0.027858874, -0.05571061, -0.0020331931, -0.09963655, -0.018135203, -0.010079673, 0.089435786, -0.00032539162, 0.0076732277, -0.0038134267, -0.06303472, -0.042732194, 0.01615491, 0.038300984, -0.04002508, 0.020578967, -0.03229674, -0.05700742, 0.045740128, -0.017539682, -0.026778374, -0.0196329, -0.027681027, -0.022171848, 0.009759759, 0.048856564, -0.031189844, -0.058263797, 0.061809383, 0.02509768, 0.023612013, -0.011520149, 0.037970614, -0.0022369712, 0.0031140998, 0.033250142, 0.029174447, 0.016622001, 0.00068515143, 0.054759733, -0.015697328, 0.0076450277, -0.026519742, 0.024189755, -0.06460623, -0.028418489, 0.002160464, 0.02035413, 0.017070575, 0.022425612, -0.0139728105, 0.010708852, -0.008081894, 0.03319027, -0.10501516, 0.021458525, -0.045210917, -0.012735661, 0.021196274, 0.037929516, -0.03689465, -0.04263232, 0.030214846, 0.00037288712, 0.0034595602, -0.0011954709, 0.022451347, -0.016647262, 0.0058195456, -0.0065287524, 0.020629195, 0.0015591169, 0.0035446896, 0.008938802, 0.023369962, 0.027716672, 0.05239127, -0.005055471, 0.051230114, 0.010871865, 0.05240221, -0.0037941604, -0.011572291, -0.077589326, 0.023200251, -0.041987646, 0.05314202, -0.035544086, -0.047925156, 0.06924795, -0.0028630183, 0.023638029, 0.044023387, 0.0181804, 0.02206325, 0.030341864, 0.048961896, -0.010679245, -0.046203878, 0.027660295, 0.015700672, -0.023870025, 0.0028962528, -0.039350927, 0.025158636, 0.018777933, -0.026272275, -0.0113583105, 0.01813092, 0.052784156, 0.021600131, 0.011067368, -0.0029839561, -0.08786202, -0.025240049, 0.010357439, -0.00015177569, -0.06753041, -0.033188585, -0.06561785, -0.018705389, 0.012186633, -0.0133847855, 0.0010598733, -0.055516858, -0.036419343, 0.04086196, 0.013715336, -0.016004536, 0.033081826, -0.0067482954, 0.026029669, -0.025612485, 0.029641464, -0.020204332, -0.016128916, 0.04821464, -0.03350876, -0.048792515, 0.017764252, 0.07187559, -0.009788739, 0.0038333454, -0.0065961014, 0.030053813, 0.027128205, 0.03923497, -0.030665763, 0.03517942, -0.032856453, -0.006079198, 0.008112352, -0.026979223, -0.012503814, 0.019491835, -0.034376655, -0.017516337, 0.016172457, -0.012040753, 0.030986125, 0.0019573004, 0.056573078, -0.019077143, -0.12260455, 0.019900337, -0.012698591, 0.0016037542, 0.003718188, -0.031065434, 0.053739432, -0.04977861, -0.026168874, -0.019077746, -0.039211757, -0.036282595, -0.0037787883, -0.04810813, -0.0010406029, 0.014755511, 0.0036005673, 0.05939807, 0.03753764, 0.0024875577, 0.042177603, 0.040408418, 0.004476209, -0.06685117, -0.04797699, 0.0009192117, 0.050254088, -0.01917035, -0.06660642, 0.005930982, -0.013833965, 0.034386806, 0.027143098, -0.043535322, 0.029312296, -0.052313592, -0.011610502, 0.059427034, 0.063228026, 0.0062767626, 0.014735438, -0.028603083, 0.021240247, 0.012188893, 0.027484102, -0.011021608, -0.027994122, 0.025486045, 0.018275796, 0.046131536, -0.00447469, 0.004236183, -0.023121959, 0.033485692, 0.05057182, -0.02030881, 0.050534047, -0.03136504, 0.031514835, 0.023929533, -0.075278305, -0.01916261, 0.014245196, -0.0003330041, 0.014535243, 0.020068966, 0.05017617, -0.004073379, 0.025702797, -0.023659337, -0.059540953, 0.0454532, -0.030362593, -0.015231912, -0.0025109544, 0.058072295, -0.0137957465, -0.0523244, -0.041728787, -0.016825316, 0.0033198055, -0.026380498, -0.024336964, 0.04643396, -0.02402342, 0.0042511914, 0.034533102, 0.06852559, -0.0026603565, -0.031230493, 0.05623762, -0.056532405, 0.004258745, -0.048302058, 0.07807254, -0.020247018, -0.032965913, 0.03836436, -0.0943171, -0.06546458, 0.00021676686, -0.025947014, 0.011379272, 0.018241229, -0.026431076, -0.021923674, 0.027128546, 0.0069856043, 0.014907216, 0.056936167, 0.00945711, 0.001140175, 0.012461818, -0.024968788, 0.03232931, -0.0058545554, -0.0030553553, 0.044225685, 0.0058259624, 0.01514317, 0.011268795, 0.05826828, -0.010525786, -0.008800504, 0.07815897, -0.045919828, -0.02046541, 0.04078334, 0.0035116996, -0.015197651, -0.03258935, -0.008058419, 0.0056873905, -0.033566304, 0.014225632, 0.030735442, 0.015539561, -0.0037925448, 0.031218592, -0.0044122064, -0.013666171, -0.012333276, 0.045075312, -0.007145172, -0.04692339, 0.005654891, -0.0100192055, -0.008426668, -0.04131767, 0.041085035, -0.013053645, -0.023012877, -0.0051704785, 0.06671439, -0.02230723, 0.06779874, 0.010562105, 0.08458107, -0.043628152, -0.014205626, 0.00036856023, 0.03105914, -0.053045075, 0.010862295, 0.016396066, 0.0014916282, 0.005400224, -0.025446331, -0.025499105, 0.045560513, -0.02147778, -0.020941598, -0.032286774, 0.0354488, 0.024080435, -0.009997827, 0.003307845, -0.027820963, 0.06734751, 0.017386563, -0.03866247, -0.05535212, -0.0294241, 0.05491937, -0.03555168, -0.027170371, 0.029529141, 0.013779809, -0.009397266, -0.048455637, 0.048705783, -0.036631174, -0.0588797, 0.0318666, -0.06282517, -0.0063076564, 0.014739833, -0.02537307, 0.012682048, -0.07362245, 0.011540979, 0.023377607, 0.043979917, -0.046002924, -0.0072811455, 0.01189699, 0.0030233075, 0.042634293, -0.043436434, -0.024366945, 0.029275948, 0.027504947, -0.028470246, 0.03792445, -0.023034493, 0.022361495, -0.011441579, 0.02710464, 0.044992074, -0.03781468, 0.057454977, 0.024152614, 0.02037716, 0.010045839, -0.011886013, 0.003854056, 0.009656606, -0.0011036376, -0.02999325, -0.058526084, -0.012743722, -0.025514923, 0.0060385647, 0.026735082, -0.028169114, -0.014974221, -0.036917124, 0.008226445, 0.065648295, -0.035452288, -0.008928214, -0.005144561, 0.013890654, -0.010976445, -0.06587982, 0.004265571, 0.013168787, 0.020796888, 0.044257008, -0.039947048, 0.037126206, 0.020575188, -0.012636472, -0.04680826, 0.015560789, 0.020689502, -0.024844486, 0.0049296124, 0.02592959, -0.009763507, 0.0077701695, 0.021101374, -0.060277283, 0.00230304, 0.014296421, -0.0070448867, -0.056646574, -0.023248196, -0.022215007, 0.015578323, 0.072606504, -0.017750941, 0.03526011, -0.058345344, 0.027899703, -0.037725613, -0.016969517, -0.065337464, -0.018912774, 0.042810563, 0.016386922, 0.043187827, 0.019082729, -0.06954845, 0.0135783255, -0.04663255, -0.015418425, 0.047367554, 0.00272182, 0.028033683, 0.041337978, 0.0337322, 0.007058536, 0.029260168, 0.017938362, -0.01330872, -0.050762843, -0.006496688, 0.07525672, 0.021342734, 0.013650816, -0.08228572, -0.012166894, -0.054130502, 0.07122013, 0.019350573, -0.027707202, -0.002155345, 0.03364392, 0.009359241, -0.013080552, -0.05325842, -0.012143042, -0.049997404, -0.039155237, -0.010926772, -0.021692632, -0.061607275, 0.018292846, 0.029656207, 0.007381335, -0.035030585, -0.088130444, -0.005435873, -0.01021083, -0.07799281, 0.018891808, 0.03333512, -0.0059022037, 0.0041293814, -0.028322948, -0.00028567034, -0.029192477, 0.012394691, 0.009362126, -0.032257285, 0.036979858, -0.02341719, 0.033407748, -0.079176724, 0.050442614, 0.048506435, -0.06955342 ] }, { "values": [ -0.026968677, -0.038393393, -0.009900239, -0.026237769, 0.01258215, 0.035529763, 0.045198526, 0.0038232682, -0.0011332978, -0.0007715851, 0.03157663, 0.030747367, 0.03628312, 0.020329664, -0.024760053, -0.0362458, 0.026043255, 0.0102382125, -0.058136918, -0.023720464, 0.060489964, 0.0018103928, -0.015284291, -0.0194898, -0.061556272, 0.032828137, 0.00512076, -0.06546093, 0.02862904, -0.046060897, -0.021549119, 0.060650896, -0.05415808, -0.05679765, 0.041337218, 0.030286208, -0.030342259, -0.014994296, 0.019995011, -0.046567287, -0.09125637, -0.03440988, -0.02378571, 0.05811402, -0.061685063, 0.04442582, 0.045743115, 0.01974723, -0.02446336, 0.027145192, 0.040887643, -0.008791341, 0.013421809, 0.018627923, -0.008132111, -0.027707431, -0.080914885, -0.044904206, 0.06456739, -0.015713101, -0.014430553, 0.0072058826, -0.002669952, -0.025493646, 0.028450198, -0.043126225, -0.0077241175, 0.0033707907, -0.052463997, 0.037200104, -0.004162246, -0.016614065, -0.11063638, 0.0028148342, -0.003661447, -0.034829237, 0.013131198, 0.0068245176, -0.065797925, 0.029085964, 0.01098211, -0.0010633135, 0.044872023, 0.025515035, -0.018983994, 0.021132078, 0.030337162, -0.023280935, -0.023460278, 0.00064923824, 0.07503415, -0.018349973, -0.01807432, 0.028007481, 0.026495019, -0.020914184, -0.07053745, -0.07895361, -0.019538924, 0.043505356, -0.03577182, -0.025465572, -0.021395067, -0.012341683, 0.04641127, -0.0053691845, -0.010543561, -0.02237055, -0.0414511, 0.040853526, -0.035575774, -0.034838498, -0.0074846796, -0.0025541782, -0.02833808, -0.015156228, -0.018146876, -0.03327445, -0.032479666, -0.0145626385, 0.04436563, 0.009305984, -0.07543907, 0.03314493, 0.06792536, 0.030331893, 0.011847791, -0.0063584526, -0.040576834, -0.05358663, 0.043163076, -0.12903462, 0.03755308, -0.0036521577, -0.026782058, -0.028607577, 0.06641776, -0.0066505135, -0.004436437, -0.025844429, 0.01828061, -0.02717619, -0.049022894, 0.006118754, -0.016630122, -0.001045954, -0.02803545, 0.0044513885, -0.09112337, 0.061586134, -0.061187055, -0.023539634, 0.016607154, 0.02020537, -0.050000098, 0.06484605, 0.052974276, -0.02742072, 0.07011268, -0.026378937, 0.062256683, -0.0073014386, -0.0139047615, 0.047049582, -0.023357958, 0.020727504, 0.03478532, -0.042560466, -0.022656847, 0.0070218067, 0.020815363, -0.058123402, -0.04643317, -0.07105551, -0.010698467, 0.0055586617, -0.0002930627, -0.007953663, -0.037334923, -0.012579549, 0.053885795, 0.042763613, -0.045694653, -0.010521483, -0.039337296, -0.03093877, -0.053157154, 0.07827388, 0.035973053, 0.03181366, 0.00060078554, -0.0060165464, -0.0035961336, 0.06695668, -0.01659658, 0.03306843, 0.023429617, 0.018298725, 0.014891699, -0.04233439, 0.04115339, -0.009649908, -0.010729115, 0.003896694, -0.028252555, 0.022791918, -0.012917559, -0.034744374, 0.0221951, -0.0073737167, -0.005818303, 0.017394274, 0.027057463, -0.04161171, -0.034085203, 0.022413047, 0.0928716, 0.02269408, 0.036367938, 0.014908609, -0.045765918, -0.015641509, 0.023842642, -0.04759739, -0.01783966, -0.0009674678, -0.02335301, -0.01873057, -0.024931775, 0.013852635, 0.013274321, 0.00020001952, 0.050161522, -0.01257996, -0.011912645, 0.030160794, -0.009213128, 0.010817238, 0.025327029, 0.0102226995, -0.03327613, -0.02684256, 0.015194485, 0.004726428, -0.0148746595, 0.04807283, 0.04196686, 0.08654623, 0.024207639, -0.028564695, -0.02776208, -0.013635565, -0.0690127, -0.012788966, -0.023818277, -0.03188328, 0.04640917, -0.08177541, 0.0372994, -0.0035965717, 0.05746141, 0.028155703, -0.011573009, -0.055506084, 0.01404909, -0.091144614, -0.016333481, -0.0113735655, 0.07211364, -0.017020337, 0.009012263, -0.027996898, -0.054111294, -0.048690833, -0.012490784, 0.04690312, -0.055177905, 0.0055269417, -0.017662743, -0.071398474, 0.053580735, -0.014240693, -0.008291434, -0.005018461, -0.023582067, -0.011943999, -0.004914235, 0.047167704, -0.035496086, -0.07571438, 0.043312516, 0.04371662, -0.0036512862, -0.040807955, 0.036695838, 0.014877316, 0.007537234, 0.024332501, -0.0031189525, 0.012537434, 0.0021453183, 0.055144455, -0.028796034, 0.012799137, -0.008242324, 0.01673171, -0.05194877, 0.005474655, -0.006304534, 0.010836441, 0.006952095, -0.0013352633, 0.0012552243, 0.021956364, -0.017171958, 0.016395068, -0.10698663, 0.016496783, -0.07582466, 0.0043077515, 0.05211863, 0.030262267, -0.0206345, -0.05431995, 0.04467459, 0.026966304, 0.010745037, 0.0016680966, 0.029978763, -0.034011286, 0.013161998, 0.02846377, 0.025826624, -0.01463858, 0.017830316, 0.0023892, 0.027628914, 0.022591406, 0.08333458, 0.0009226457, 0.055605926, -0.002241497, 0.048931975, 0.012528809, -0.018234786, -0.07936729, 0.040488496, -0.015867762, 0.04860487, -0.031666316, -0.032740023, 0.07829556, -0.0055708108, 0.016462237, 0.03746203, 0.013511339, 0.009222136, 0.018879095, 0.025866045, -0.02496743, -0.052586343, 0.03519015, 0.009315187, -0.014736385, 0.0059339204, -0.028599212, 0.008138945, 0.037854847, -0.007075911, -0.024565965, 0.01626029, 0.028911596, 0.013020817, 0.022179335, -0.0060571465, -0.06687645, -0.0042593037, 0.013593675, 0.015863799, -0.07042215, -0.017696982, -0.06738128, -0.012788011, 0.022174925, -0.015436213, 0.0131898215, -0.035844103, -0.006618507, 0.054984804, 0.009703517, -0.044647124, 0.06126841, -0.02731075, 0.03425537, -0.038672633, 0.05708336, -0.043471377, -0.01858892, 0.058380447, -0.04084754, -0.050787054, 0.0132322265, 0.071052566, -0.024696399, -0.007417816, -0.0027588792, 0.030444376, 0.013050265, 0.025600638, -0.043320857, 0.025613591, -0.013065778, -0.007011628, -0.0049206037, -0.045647863, -0.020346643, 0.022785861, -0.03567677, -0.011331413, -0.008552794, -0.011765912, 0.048232056, 0.01474701, 0.043692753, -0.024057008, -0.10396275, 0.00062541536, 0.00044903372, 0.024815878, 0.011772073, -0.04274349, 0.038877223, -0.054114234, -0.014881308, -0.02036141, -0.018859508, -0.02002845, 0.027369145, -0.055343196, -0.0056519625, -0.00030507115, 0.0075788577, 0.05408575, 0.052577272, 0.004940811, 0.036131658, 0.04397606, 0.019629916, -0.04871251, -0.063167945, -0.020253716, 0.02049947, -0.029042047, -0.030977229, -0.011506054, 0.005248038, 0.019528838, 0.026004251, -0.070666805, 0.027629001, -0.07129741, -0.011341027, 0.07420016, 0.06109131, -0.0075519606, 0.024008673, -0.041568037, 0.030102761, 0.0429067, 0.06990958, -0.04012819, -0.017317131, 0.045061216, 0.018285286, 0.036837365, -0.027454028, 0.0070815547, -0.0011743354, 0.03664557, 0.05963161, -0.028082415, 0.035326786, -0.025723089, 0.048064996, 0.026314948, -0.06856035, 0.0041633747, 0.042728767, 0.0107806185, 0.037640374, 0.018924987, 0.04326445, -0.0012778473, 0.035135724, -0.022062209, -0.04931597, 0.007102988, -0.024355711, -0.019016696, 0.012481087, 0.044884875, -0.037267, -0.047307614, -0.058171105, 0.007413094, 0.015326627, -0.047558896, -0.023815336, 0.01774214, -0.04449194, 0.02937814, 0.03147307, 0.05835192, 0.019849122, -0.025734195, 0.026033822, -0.061003286, -0.0057932935, -0.037495002, 0.07141998, 0.0025104056, -0.012632423, 0.050767004, -0.07434728, -0.07439048, -0.011990553, 0.00053804053, 0.012315193, 0.030615851, -0.014464893, -0.0075267083, 0.043648172, -0.020483097, 0.017862301, 0.039166514, -0.0032043336, -0.0057952744, 0.018632302, -0.020773167, 0.008208861, 0.006604315, 0.008640872, 0.049836643, -0.011137391, 0.020426286, -0.003097985, 0.052636296, -0.010411474, -0.010601015, 0.063678294, -0.0045162207, -0.02163554, 0.04402352, 0.00120704, 0.01984124, -0.018415783, -0.011482018, -0.006870199, -0.04457438, 0.02261272, 0.027163023, 0.010333475, 0.0038411052, 0.01579365, -0.004274224, -0.023344086, -0.008578378, 0.030769082, -0.027182318, -0.062136967, 0.028693538, 0.012460132, 0.004029077, -0.023859136, 0.022537773, -0.022370933, -0.01901558, -0.009270153, 0.06929713, -0.014362732, 0.06492106, -0.02515016, 0.08769786, -0.048987594, -0.01803909, 0.014265186, 0.01941389, -0.05133773, 0.010289794, 0.0106237605, 0.00043100162, -0.0057707997, -0.034024734, 0.0008491679, 0.042444006, -0.022053834, 0.0064837937, -0.009803509, 0.044069313, 0.018483281, 0.007277958, 0.019172259, 0.02003706, 0.051202074, 0.00937025, -0.04265494, -0.047352716, -0.040335882, 0.06687463, -0.028486257, -0.03328394, 0.032950215, 0.026375325, -0.00622266, -0.061420303, 0.030680174, -0.028783038, -0.037254445, 0.047199525, -0.055069663, 0.020875245, -0.0071422756, -0.027951555, 0.020948214, -0.06769959, 0.013259384, -0.0079350965, 0.03223629, -0.072429344, -0.0038352988, -0.0022068918, -0.002396522, 0.05471078, -0.05307611, -0.008946709, 0.012366398, 0.015521833, -0.028480858, 0.04074183, -0.038870595, 0.04948861, -0.018933734, 0.019633496, 0.035563987, -0.048592944, 0.06592232, 0.0046331263, 0.037123352, 0.019690389, -0.00773806, 0.021950632, 0.04288037, -0.0012878069, -0.024406368, -0.0797726, 0.0007246014, -0.009795148, 0.013838889, 0.03328796, -0.0174508, -0.0017732128, -0.035140682, 0.022128494, 0.040822122, -0.03954339, 0.007589262, 0.010542372, 0.007836686, -0.014463779, -0.059001654, 0.02897899, 0.024648296, 0.014101677, 0.04222582, -0.032518674, 0.038169183, 0.026767295, -0.027565446, -0.031023212, 0.006665174, 0.025812829, -0.022300875, 0.0072656153, 0.013548584, 0.015394268, 0.0017411559, 0.017004842, -0.061189022, 0.0063310415, 0.00328235, 0.00110444, -0.07424555, 0.0035615533, -0.01677239, 0.016019395, 0.060895946, -0.026860101, 0.015223012, -0.049997516, 0.051681228, -0.0509395, -0.022898978, -0.07014233, -0.04271237, 0.049900334, -0.0012918141, 0.058115687, 0.022232251, -0.06098864, 0.0052245907, -0.031978693, 0.00933695, 0.034837276, 0.007060892, 0.018828467, 0.0626337, 0.020007938, 0.019430313, 0.015249697, -0.011864182, 0.0019217716, -0.054074172, -0.01116727, 0.080153115, -0.0012527949, -0.031018462, -0.07273973, -0.0005582432, -0.055774447, 0.084051, 0.01660647, -0.020736776, 0.016995514, 0.033211716, 0.019619433, -0.017340781, -0.011170998, -0.014541365, -0.07354525, -0.011788954, -0.02534001, -0.024892768, -0.062283054, -0.012983461, 0.018469414, 0.015097349, -0.019630944, -0.057501197, -0.0105010625, -0.021998081, -0.07740329, 0.022109658, 0.015987925, 0.01729522, 0.019233573, -0.007686884, 0.00041969414, -0.050284646, 0.018712008, 0.031695817, -0.04505411, 0.036085345, -0.042168383, 0.01944886, -0.09073896, 0.038049225, 0.02881183, -0.0547245 ] }, { "values": [ -0.026968516, -0.02134545, -0.039791524, -0.040664475, 0.03367751, 0.03275851, 0.042427048, 0.007953775, 0.0009523005, 0.024100387, 0.021474656, 0.034214832, 0.019451024, 0.029096376, -0.0074835448, -0.06645323, 0.01393633, 0.02536132, -0.03383577, -0.04887992, 0.05236198, 0.0072931633, -0.017748794, -0.046015978, -0.07038225, 0.047724083, 0.016805263, -0.051275957, 0.045270752, -0.05505012, -0.014100689, 0.04958442, -0.03294837, -0.05094754, 0.06275813, 0.00167105, -0.03608814, -0.012252518, 0.019290786, -0.037561074, -0.08772244, -0.036651954, -0.017253794, 0.0559007, -0.057606123, 0.026711257, 0.046492048, 0.011093925, -0.0542282, 0.042140707, 0.028816324, 0.0051519177, -0.0023464996, 0.0038011502, -0.03518619, -0.030960122, -0.07155313, -0.07192556, 0.06530077, -0.037890106, 0.004579909, -0.0042153103, 0.010864094, -0.017817441, 0.036336675, -0.039137725, -0.016832648, -0.0006867169, -0.039444417, 0.020684004, -0.0071782675, 0.012748265, -0.09291486, -0.014681085, -0.017355083, -0.007965129, 0.023604205, 0.0048490423, -0.05330922, 0.019254861, -0.03311251, -0.010887944, 0.06378961, 0.04355005, -0.018542364, 0.020874992, 0.009616989, -0.0034927179, -0.018321352, 0.02082579, 0.07563621, -0.029580584, -0.012383674, 0.038333554, 0.038455922, -0.012764046, -0.0659077, -0.058356952, -0.010196503, 0.061187867, -0.041332074, -0.004457987, -0.030339029, -0.0020804028, 0.057728417, -0.011895606, 0.002209006, -0.039835725, -0.045252874, 0.043825343, -0.0068183793, -0.019971905, -0.023053046, -0.017364336, -0.0076096356, -0.0055576307, -0.01042877, -0.029103847, -0.03837736, 0.005818743, 0.06256996, 0.0010814284, -0.060020808, 0.028723769, 0.05749116, 0.027514748, 0.035363186, -0.008842383, -0.027542615, -0.059583135, 0.03327007, -0.120776586, 0.025607174, 0.005376339, -0.02213888, -0.02818477, 0.036386468, 0.023099031, -0.0027021996, -0.03720471, 0.028632725, 0.00017903869, -0.02176932, 0.0033871343, -0.020260662, -0.012900253, 0.0039644353, -0.0053252066, -0.07574674, 0.04486521, -0.09018142, -0.018060654, 0.029366257, 0.009930397, -0.06459803, 0.023080047, 0.06729337, -0.010136333, 0.0627616, -0.016300032, 0.05938265, -0.0042603156, -0.01734403, 0.04878687, -0.033250943, 0.02558234, 0.056206856, -0.05902439, 0.009003662, -0.0119604375, 0.033204217, -0.045973256, -0.027674029, -0.09128689, 0.018147394, 0.0029786113, -0.013425703, 0.003019538, -0.02450233, -0.008231647, 0.040526386, 0.009513387, -0.044037458, -0.02154598, -0.030807784, -0.0017463081, -0.05882464, 0.08684994, 0.03309952, 0.041653603, -0.0065598288, -0.0063372618, -0.0008659123, 0.06974364, -0.029003147, 0.035087537, 0.028305657, -0.006751055, 0.029876377, -0.06968367, 0.044174958, -0.023821577, -0.0023389948, 0.0011843807, -0.015198453, 0.0016685859, -0.03598886, -0.0375749, 0.021294119, 0.022610547, 0.004699121, -0.009452182, 0.015110614, -0.03429657, -0.0136729255, 0.005106317, 0.087009214, 0.050214175, 0.024962304, -0.012408971, -0.033423096, 0.010659541, 0.031885114, -0.03673901, -0.03062496, -0.036267694, 0.0037847536, -0.00938255, -0.040388368, 0.016255872, -0.0074183266, -0.0037585667, 0.049325466, -0.01795277, -0.02211578, 0.030772472, -0.02416502, 6.7877525e-05, 0.032887332, -0.010347525, -0.019702557, -0.00842987, 0.011692351, -0.0064870855, -0.004298724, 0.021259237, 0.05388774, 0.11794417, 0.0037406515, -0.027722016, -0.034464404, -0.008080506, -0.050258752, -0.020922285, -0.020874009, -0.049403943, 0.030113496, -0.08069757, 0.013061348, -0.020521596, 0.038778167, 0.019086795, -0.029342473, -0.055120934, 0.0020964446, -0.097497985, -0.023776075, -0.021577455, 0.06965572, -0.017852873, 0.0010443586, -0.03924025, -0.06456244, -0.06649672, -0.0053112647, 0.029153293, -0.051552672, 0.027364135, -0.0437953, -0.08029344, 0.032177214, -0.016559167, -0.011211078, 0.0031378912, -0.006453575, -0.024741462, -0.0029509778, 0.016174218, -0.023646314, -0.07156862, 0.04631295, 0.04762536, 0.034265958, -0.011054405, 0.04007875, -0.0014822164, 0.016677909, 0.04397081, 0.005860301, 0.0036035806, 0.016474761, 0.044372503, -0.028275387, 0.009367062, -0.008821224, 0.03551225, -0.051422577, 0.0021971222, -0.017304286, 0.024788076, 0.03306899, 0.015560101, -0.008514492, 0.027776258, -0.027780581, 0.014645538, -0.09452189, 0.02060838, -0.068907075, -0.011000555, 0.0553198, 0.04365473, -0.04466209, -0.06270858, 0.03760076, 0.012004882, 0.012869273, 0.012859385, 0.03290361, -0.0279529, 0.026936289, 0.0065442976, 0.02417536, -0.03555862, 0.0026267206, -0.020436455, 0.00912672, 0.024250435, 0.07505213, 0.013155702, 0.055259418, 0.030227251, 0.047032326, 0.016290765, -0.031623755, -0.06528042, 0.020831252, 0.004940231, 0.056603853, -0.030096516, -0.04088786, 0.07029613, 0.017220037, 0.024422178, 0.055625994, 0.002052391, 0.0078045796, 0.024661116, 0.036729563, -0.026704604, -0.045886647, 0.030897396, 0.00096462556, -0.020641705, -0.013403018, -0.030530512, 0.036014404, 0.018802797, -0.010549439, -0.020484012, 0.0150976805, 0.049333565, 0.028094217, 0.010807824, -0.0025124568, -0.067305245, -0.0115078185, 0.0059443284, 0.014310263, -0.04556375, -0.027811566, -0.068225816, -0.012522736, 0.014498166, -0.009639689, 0.02768288, -0.051876165, -0.028009016, 0.022905577, -0.010407314, -0.04179539, 0.03998516, 0.002074949, 0.018845882, -0.035120334, 0.050933316, -0.015269129, -0.0083679445, 0.04322956, -0.043843403, -0.05411366, 0.031112125, 0.046475753, -0.01174039, 0.008912586, -0.01022989, 0.03311775, 0.01883805, 0.035356894, -0.014035271, 0.031302415, -0.021651268, 0.0159205, -0.0067271353, -0.019460138, -0.01064531, 0.029581105, -0.02883455, -0.028785847, -0.006815008, -0.020470211, 0.04211811, 0.0015248235, 0.06866507, -0.006558116, -0.09040338, 0.02029055, -0.011521956, 0.036822516, 0.026642157, -0.01866202, 0.053584706, -0.045608867, -0.018868966, 0.020506645, -0.027043203, -0.016432382, 0.01857832, -0.046137884, 0.003793551, -0.0021494606, -0.002597355, 0.06595823, 0.034927763, -0.010426791, 0.02830164, 0.03156062, 0.009632578, -0.03886924, -0.06050989, -0.0062222336, 0.021797538, -0.015414927, -0.054691344, 0.022858476, 0.024140138, 0.02954825, 0.039734066, -0.069290444, 0.012088316, -0.06257429, -0.008713539, 0.061271276, 0.08684854, 0.001840142, -0.0029356463, -0.04632597, 0.0242419, 0.030604823, 0.055324536, -0.012235241, -0.029815702, 0.016276333, 0.015413461, 0.03492567, -0.0025518003, 0.028275302, -0.017402327, 0.026796876, 0.065371156, -0.03748767, 0.031069547, -0.03571519, 0.051904414, 0.024525298, -0.061858416, -0.008931944, 0.03720599, -0.020683901, 0.03428825, 0.008415699, 0.056557782, 0.006927174, 0.034607332, -0.04039051, -0.07025562, 0.020359349, -0.021908583, -0.03373922, 0.013289691, 0.056268975, -0.023107173, -0.05338595, -0.034285076, 0.019941282, 0.014146964, -0.02634897, -0.014333621, 0.031128112, -0.016945664, 0.005058813, 0.030245299, 0.06492169, 0.01927736, -0.027503064, 0.05630143, -0.072801575, 0.008276959, -0.039996486, 0.08520369, -0.044129077, -0.013688649, 0.037586052, -0.091135375, -0.0822103, -0.0040112534, -0.014374311, 0.00682643, 0.039349258, -0.019062527, -0.005510728, 0.0669069, -0.010525562, -0.0072801556, 0.025111409, 0.017672475, -0.0163494, 0.02610338, -0.0074518835, 0.03764459, -0.0018258758, 0.0101056, 0.057007026, 0.020219779, 0.0068424754, 0.0026964524, 0.03325438, -0.0026530903, -0.0008281085, 0.100208454, -0.0031080535, -0.020506535, 0.03851083, -0.013750379, 0.019402105, -0.022482872, -0.009644204, 0.00033539103, -0.025943046, 0.012750308, 0.043449566, 0.01332589, 0.0049110083, 0.029737322, -0.021339696, -0.034443263, -0.020303579, 0.022450013, -0.03385336, -0.06344279, 0.011082542, -0.0011592751, 0.005125237, -0.032189604, 0.016655834, -0.010614317, -0.045040384, 0.010731509, 0.071072154, -0.016147517, 0.069920726, 0.013312809, 0.06827157, -0.036405828, -0.016052105, -0.01408905, 0.04619926, -0.052844763, 0.027106902, 0.010889204, 0.00014256661, -0.017808387, -0.021625599, -0.025698533, 0.03970354, -0.006022462, -0.008909076, -0.03233145, 0.044990096, 0.0244767, 1.9297955e-05, -0.009066477, -0.0061665457, 0.060818594, 0.007579608, -0.029824778, -0.0439661, -0.039139975, 0.063108206, -0.028945766, -0.022366121, 0.026960002, 0.027481273, -0.017481677, -0.0520235, 0.042371307, -0.05622156, -0.043121774, 0.058660533, -0.039172836, -0.00079740764, 0.009474688, -0.017106289, 0.021777716, -0.0639858, 0.0045790602, 0.003932934, 0.038343742, -0.050222617, 0.002626343, -0.013415334, -0.0048886314, 0.05223799, -0.04906475, -0.0075376774, 0.012416401, -0.003644686, -0.040743057, 0.024485698, -0.035340797, 0.027121076, -0.031150691, 0.017758653, 0.06598937, -0.03357742, 0.05770014, 0.006064251, 0.052298814, -0.01907968, -0.014007024, -0.00069069484, 0.013694444, 0.003347167, -0.024988918, -0.06470275, -0.0020411182, -0.03581182, -0.013199812, 0.01381452, 0.012686543, -0.017276727, -0.040908694, 0.029219652, 0.070750356, -0.03343748, -0.005847298, -0.021761127, -0.0032167858, -0.01638679, -0.063777916, 0.016972693, 0.028165778, 0.004784311, 0.026456943, -0.04286788, 0.04731201, 0.033516757, -0.024092635, -0.05084722, 0.025999568, 0.019435523, -0.0228177, -0.011372362, 0.030237902, 0.010667227, 0.008275682, 0.008959026, -0.040489707, -0.007933013, 0.036617823, 0.00963488, -0.049674526, 0.0024608895, 0.012895678, 0.02212712, 0.080408745, -0.025564393, 0.035032578, -0.057488807, 0.04960405, -0.037994217, -0.017927848, -0.041288286, -0.028226322, 0.03344903, 0.0005305383, 0.047586657, 0.013417896, -0.06518627, 0.009748117, -0.03690794, -0.0038502077, 0.04858008, 0.014140564, 0.009827235, 0.041753862, 0.018550262, 0.016519293, 0.01938882, 0.004419269, -0.0008214765, -0.03168734, -0.022485517, 0.073021255, 0.01145856, -0.004513552, -0.091378935, 0.01344158, -0.05804166, 0.07462911, 0.016917052, 0.006659736, 0.028293604, 0.025591305, 0.013914771, 0.006401915, -0.025503183, -0.011721859, -0.054863155, -0.016937098, -0.016296811, -0.019971047, -0.069070965, -0.0037532228, 0.030804833, 0.0014274423, -0.040586017, -0.052877147, 0.0049999515, -0.008484397, -0.08551214, 0.036039848, 0.034450162, 0.017814364, 0.031697135, -0.0197696, -0.0011957171, -0.03080909, 0.013573157, 0.03468186, -0.013983057, 0.024182789, -0.019060241, 0.014260699, -0.09588386, 0.017597111, 0.038767844, -0.07166108 ] }, { "values": [ -0.029966507, -0.013585114, -0.027559856, -0.04102973, 0.0058713933, 0.06329908, 0.04602265, 0.032614112, 0.008958607, 0.014132435, 0.03612431, 0.018486634, 0.02243214, 0.035487458, 0.010307654, -0.06575517, -0.00024140965, 0.03239108, -0.041721236, -0.03730257, 0.053286705, 0.017247872, -0.0358833, -0.044837043, -0.08634135, 0.026771514, 0.0100496095, -0.062733896, 0.045400295, -0.040135622, 0.005231229, 0.0468288, -0.01617006, -0.046373196, 0.022995047, 0.022349251, -0.031482153, -0.016993772, 0.020918315, -0.05662666, -0.08878302, -0.06840603, -0.01270075, 0.06797475, -0.042422537, 0.021539554, 0.04715216, 0.023248088, -0.051381852, 0.023427228, 0.04773879, -0.00219954, -0.008262521, 0.0050686724, -0.056723405, -0.05141704, -0.06900087, -0.04787235, 0.05714997, -0.01460279, -0.01548046, -0.0037364776, 0.0033806858, -0.025249615, 0.03780781, -0.019080305, -0.016273165, 0.0074772765, -0.034134492, 0.022558996, -0.032851264, 0.022148311, -0.09467106, -0.017582905, -0.012471747, -0.023761755, 0.029689364, -0.005582287, -0.035430208, 0.029120838, -0.014282521, 0.0050013387, 0.04373926, 0.05045511, -0.011766892, 0.016951855, 0.015647085, 0.0066961204, -0.030340377, 0.02846974, 0.07361022, -0.015526348, 0.0008653547, 0.017196286, 0.04893668, -0.0036550236, -0.05014837, -0.06139451, -0.010882965, 0.035306416, -0.060712967, -0.0036829745, 0.0007852622, -0.0034169012, 0.056193527, 0.009489719, -0.017034354, -0.028084323, -0.05262747, 0.04225914, -0.0030813885, -0.021824237, 0.0061881975, -0.009285275, -0.042409774, -0.02733928, -0.0055799605, -0.016028652, -0.04512546, -0.006559913, 0.027630785, 0.009973011, -0.065137126, 0.04476584, 0.049979445, 0.026025204, 0.02086961, 0.010389123, -0.032599345, -0.032077584, 0.031783026, -0.12425348, 0.056362923, 0.0015463367, -0.033316977, -0.016644528, 0.06914591, 0.011001938, -0.017296443, -0.032392014, 0.03198325, -0.0045225355, -0.034504544, 0.0021558811, -0.01397176, 0.0038026166, -0.0064656246, -0.0066673853, -0.09433972, 0.054620028, -0.07248772, -0.014285546, 0.0351278, 0.017772572, -0.07766237, 0.032724705, 0.044971764, -0.01008098, 0.05555821, -0.04631806, 0.06212722, 0.004392363, 0.0025838006, 0.06002987, -0.033775724, 0.032655783, 0.05688029, -0.027220694, 0.00020958697, -0.010217866, 0.01287759, -0.055515755, -0.03273454, -0.08227167, 0.00058600237, -0.001751278, -0.019484205, 0.009454813, -0.032788813, -0.013743456, 0.033421613, 0.041256145, -0.042073283, -0.015223066, -0.016336335, -0.00078699656, -0.04692933, 0.08435173, 0.03497157, 0.041604254, -0.0047105425, 0.018136887, -0.010299619, 0.0859839, -0.034292568, 0.04127673, 0.036603663, -0.025038159, 0.030939871, -0.06411859, 0.041658603, -0.015859678, 0.0015033516, 0.003909524, -0.011744699, 0.0038172968, -0.016266856, -0.028149663, 0.029006591, 0.013583133, 0.019445065, -0.012597417, 0.02613097, -0.012491586, -0.013306778, 0.005943467, 0.10411666, 0.033743188, 0.058363914, -0.00583488, -0.039960705, 0.02184363, 0.029941237, -0.022134922, -0.033206504, -0.04848879, 0.0016324585, 0.0027210272, -0.053284094, -0.015329004, -0.00465551, 0.007185314, 0.01996487, -0.0044156862, -0.012255264, 0.04094593, -0.014047954, 0.0029777868, 0.031831194, 0.00756821, 0.018161636, -0.014877644, 0.013786556, -0.021259606, -0.0020244608, 0.024739882, 0.038015123, 0.095800675, 0.03447408, -0.037967864, -0.0098305615, -0.031107979, -0.040111966, -0.021836217, -0.017947037, -0.049270965, 0.030294554, -0.08015757, 0.018355308, -0.011875456, 0.035159588, 0.034680292, -0.014650663, -0.03832524, 0.0005918627, -0.08120793, -0.030554757, -0.019378, 0.054585338, -0.038896568, -0.01864403, -0.02200987, -0.06326004, -0.05046311, -0.0076972404, 0.026436659, -0.040235512, 0.017984921, -0.04538257, -0.065735005, 0.04353409, -0.023119682, 0.002080999, -0.015066073, -0.028738096, -0.008950517, -0.025816526, 0.038899105, -0.02549553, -0.079276964, 0.0388336, 0.062604845, 0.018679136, -0.008532701, 0.06272192, -0.0120151695, 0.010437949, 0.037345473, -0.0071460945, 0.012066359, 0.025788667, 0.024846414, -0.031078104, 0.018217295, 0.00063893513, 0.040663905, -0.05187424, 0.01926012, -0.016334854, 0.0046906876, 0.027846178, -0.0019192296, -0.021713642, -0.008062587, -0.02504433, -0.011824651, -0.10938783, 0.008469974, -0.048351973, -0.024018068, 0.029091986, 0.036126427, -0.038017258, -0.050008908, 0.034192134, 0.009086735, 0.012358181, 0.022240372, 0.024279477, -0.02288671, 0.022374218, -0.0076875086, 0.029852703, -0.032335658, 0.01160063, 0.006693747, -0.01061745, 0.024428496, 0.08434838, 0.0008831789, 0.07819831, 0.013141172, 0.03790133, 0.049080815, -0.017434452, -0.06591561, 0.043160807, -0.0056456435, 0.04038829, -0.049261402, -0.0150748035, 0.056574542, 0.011957417, -0.0026244351, 0.03472361, 0.0039127683, -0.006268602, 0.018495433, 0.022153689, -0.015716208, -0.035533126, 0.035042644, 0.020742744, -0.025378289, 0.004543407, -0.016232092, 0.03642053, 0.01790789, -0.011855658, -0.013000092, 0.018723678, 0.05974146, 0.023325369, 0.005292117, 0.0058379085, -0.03877336, 0.00259537, 0.0026092357, 0.022932038, -0.04626448, -0.03630386, -0.0659312, -0.024991574, 0.0033154693, 0.0028645697, 0.023306184, -0.037767645, -0.01966544, 0.024879312, 0.0007002596, -0.03383342, 0.061811086, -0.008681049, 0.02707179, -0.037560757, 0.076130025, -0.007862001, 0.008064489, 0.05242033, -0.021512987, -0.05589384, 0.012621222, 0.055405848, -0.016883919, 0.0068322066, -0.0060121594, 0.031019451, 0.024503212, 0.04465879, -0.029389601, 0.032342076, -0.01617255, 0.0072555053, -0.008221695, -0.033362955, -0.014896118, 0.025539817, -0.04422908, -0.032194667, -0.007875866, -0.034235127, 0.046241496, 5.9224836e-05, 0.062564924, -0.0022563606, -0.08505013, 0.010200333, -0.018772319, 0.032919608, 0.03230222, -0.015190047, 0.05396208, -0.04014053, -0.019644296, 0.035368223, -0.03957611, -0.03140251, 0.021195905, -0.057964563, 0.026971042, -0.012823585, -0.0032311757, 0.060596034, 0.032362726, 0.0078703435, 0.012463398, 0.03242317, 0.015880534, -0.039138447, -0.066448465, -0.009719493, 0.016542552, -0.002314953, -0.03732405, 0.0047878707, 0.036770772, 0.019764218, 0.020193657, -0.04034116, 0.007950973, -0.058252122, -0.016584368, 0.044351116, 0.072091274, -0.012308113, -0.019749073, -0.04042695, 0.027984167, 0.02765623, 0.07124235, -0.013149074, -0.030414227, 0.020698858, -0.0011189136, 0.020450335, -0.011507302, 0.016845746, -0.0020610075, 0.009796741, 0.059538063, -0.027087884, 0.033085022, -0.035214115, 0.04242448, 0.023503419, -0.05417561, 0.010671712, 0.06410071, 0.0025145938, 0.025223672, 0.029271973, 0.066857666, 0.0118505135, 0.023189101, -0.035876237, -0.062176608, 0.018609427, -0.01641267, -0.017432917, 0.040862944, 0.06681219, -0.028407164, -0.069574565, -0.04912719, 0.017682984, 0.038653206, -0.022877045, -0.017782005, 0.029213661, -0.016868126, 0.03130518, 0.014553914, 0.038090736, 0.01880488, -0.0135974055, 0.029649002, -0.07489011, 0.015521616, 0.0069249985, 0.096939914, -0.009165555, -0.012565771, 0.040043384, -0.090164445, -0.074222594, -0.019836359, -0.0020260592, 0.0050164247, 0.059195835, -0.009529517, -0.026058443, 0.043335345, -0.04064708, 0.009392793, 0.023056138, 0.031625252, -0.009547671, 0.015433196, 0.0010318147, 0.036972195, -0.0080883885, 0.02217103, 0.04380864, 0.0106932, 0.022163883, 0.023933936, 0.024057379, -0.008269806, 0.0078977505, 0.09607607, -0.027571239, -0.01122933, 0.035061143, -0.016685624, 0.014602372, -0.012032704, -0.010816472, -0.0189101, -0.015841352, 0.0048995814, 0.04323029, -0.0052307895, 0.003617097, 0.011045702, 4.894083e-05, -0.009434115, -0.030222904, 0.005317922, -0.017695332, -0.054986995, 0.008985901, 0.0012663108, 0.0046145287, -0.019636307, 0.015773319, -0.0078021954, -0.04723072, 0.013591828, 0.06553665, -0.01623592, 0.07137705, 0.028798768, 0.07313434, -0.041855298, 0.003580322, -0.004849357, 0.04397672, -0.04772996, 0.04957617, 0.013250766, -0.0075588063, -0.0046030967, -0.0011408681, -0.018540828, 0.046637066, -0.025393358, -0.012061215, -0.034879446, 0.061448667, 0.038264774, -0.0103437165, 0.0035905656, -0.005406553, 0.08385351, 0.0107953595, -0.026094586, -0.0655962, -0.02213023, 0.064449415, -0.029937973, -0.032378208, 0.022143006, 0.021705665, -0.009693263, -0.05856044, 0.031575534, -0.061765146, -0.028400626, 0.054340817, -0.035355024, -0.017919978, -0.00048387414, -0.048375092, 0.018678151, -0.06493328, -0.004744813, 0.018161278, 0.009304242, -0.049796876, -0.008396445, -0.021591164, 0.0057217614, 0.052642673, -0.039679777, -0.0018459854, 0.018179977, 0.0059255105, -0.029083084, -0.00059919833, -0.04949851, 0.013725965, -0.041911438, 0.03180244, 0.054391544, -0.032996062, 0.052731186, 0.0066137253, 0.033587944, -0.009469894, -0.000110983376, 0.0021757015, 0.03517347, 0.011294951, -0.006774122, -0.07481089, 0.007758114, -0.017300911, -0.0075491527, 0.0127002625, -0.01355253, -0.020408122, -0.04045522, 0.021606745, 0.06659488, -0.033151258, 0.017369729, -0.017534642, -0.017180556, -0.018876495, -0.054369103, 0.031177694, 0.015090041, -0.012850948, 0.01798018, -0.014976481, 0.045584336, 0.028502766, -0.030059926, -0.05215403, 0.022664625, 0.014686699, -0.038441174, 0.002026125, 0.026369391, 0.03410398, 0.020139975, 0.002374355, -0.039236784, -0.0052899444, 0.05093072, -0.0024188487, -0.07643925, 0.019785788, 0.028762823, 0.033244047, 0.10432224, -0.029633107, 0.008745819, -0.050623193, 0.06124204, -0.04704181, -0.041626796, -0.048138414, -0.0500756, 0.024949588, -0.016389783, 0.060163982, 0.005869786, -0.056548808, 0.019533304, -0.017210422, 0.007457978, 0.06414076, 0.01355317, 0.0068056867, 0.046986483, 0.029276067, 0.0074176323, 0.0066773095, -0.0053653046, 0.00043609994, -0.041039675, -0.039902933, 0.06717665, 0.03089069, -0.016015837, -0.081581876, 0.02849884, -0.04894363, 0.07421952, 0.015073562, 0.016361766, -0.0017325255, 0.01880349, 0.020666126, 0.01902824, -0.011462074, -0.01652057, -0.06192437, -0.022746386, -0.010741967, -0.003716575, -0.08633707, -0.017647024, 0.023416305, 0.0041814176, -0.034700803, -0.04666187, -0.004533571, -0.03721035, -0.07884252, 0.03888854, 0.027110606, 0.038711544, 0.023159996, 0.0059002074, 0.039678466, -0.038768936, 0.020382658, 0.013926946, -0.008782084, 0.03505737, 0.0013825857, 0.013343269, -0.09676675, 0.0014636194, 0.042880114, -0.07020429 ] }, { "values": [ 0.00523263, -0.045279264, -0.06337975, -0.03926471, 0.041951347, 0.016352799, 0.03923923, 0.026402364, -0.005194262, 0.01848582, 0.0063260724, 0.035725743, 0.0018717272, 0.030267159, -0.03767878, -0.03644053, 0.022982303, -0.0036933033, -0.058865257, -0.057740647, -0.019804107, 0.035707925, 0.00018357, -0.025786778, -0.0072320336, 0.049996644, 0.0049343687, -0.057176385, 0.02280095, -0.04556857, 0.007601386, 0.027581235, -0.025425894, -0.01627602, 0.05105165, 0.04118462, -0.031128552, -0.009454299, 0.0064155376, -0.024143476, -0.042525683, -0.0256782, 0.016730655, 0.046707094, -0.040787607, 0.03269148, 0.026234128, 0.004473782, -0.034155436, 0.053266715, -0.0067978874, 0.009382587, -0.027496757, 0.004325582, -0.02555338, -0.017188469, -0.02702808, -0.033467002, 0.07502083, -0.011563966, -0.0021471197, 0.020563781, 0.0602202, 0.0014556982, 0.013630433, -0.047605988, -0.011562914, -0.062044356, -0.03377743, 0.023814976, -0.027251082, 0.010560667, -0.051953077, -0.0010461551, 0.0053404006, -0.018313188, -0.005691742, 0.038636073, -0.022988368, 0.01989691, -0.03272961, 0.008594496, 0.102758855, 0.028909156, 0.030672373, 0.033986162, 0.028345464, -0.041853186, -0.038977005, -0.014025157, 0.11153442, -0.03942568, -0.011036736, 0.015983889, 0.035226982, -0.0059010484, -0.060237724, -0.10610596, -0.03736622, 0.1045921, -0.029188626, -0.029065877, -0.049615223, -0.008455163, 0.06930614, 0.04840148, 0.03625906, -0.062479313, 0.008740663, 0.0697227, -0.036446527, -0.06300265, -0.026197722, 0.02008687, 0.026326045, -0.0756713, -0.031819616, 0.016293315, -0.03915337, 0.009313639, 0.046551723, -0.021604287, 0.0072281933, 0.07611292, -0.016687665, 0.007549015, 0.056415986, -0.022709101, -0.042155158, -0.062667996, 0.057351194, -0.07805484, 0.0017962088, 0.016373413, -0.03352118, -0.0255712, -0.0077719335, 0.048065543, -0.031546976, 0.0034960182, 0.0044395598, -0.015798902, -0.0034082124, 0.004682658, -0.018103357, -0.017803308, 0.031007895, 0.007874455, -0.02536405, 0.042852886, -0.09309622, -0.022978649, 0.026550489, -0.031243533, -0.041991852, 0.030293535, 0.06645872, -0.035768114, 0.052756194, -0.031209541, 0.042711575, 0.0066750636, 0.011543771, 0.019424563, -0.07193842, 0.012197137, 0.051893163, -0.03830375, -0.0056978343, -0.03276323, 0.008152048, -0.04312693, 0.027717935, -0.07240136, 0.019337023, -0.00051027583, -0.0751479, 0.021068169, -0.051675983, 0.006435851, 0.024483064, 0.042456154, -0.017849265, 0.03110497, -0.015135185, -0.028419998, -0.017341841, 0.071191706, 0.0037956312, 0.02200013, -0.005618657, -0.015143792, 0.0314058, 0.061486702, -0.010004109, 0.03588796, 0.057393372, 0.0136366645, 0.0017361296, -0.061930254, 0.008091155, -0.011560851, -0.04063014, 0.0044262367, -0.043415308, -0.03678231, -0.056327526, -0.03565718, 0.039804358, 0.03529301, -0.0029650473, 0.01564161, -0.018308796, -0.06518045, 0.009930138, -0.030438805, 0.10255686, 0.07057781, 0.058698945, -0.026414061, -0.0044247517, -0.005603752, 0.029507043, -0.04414466, -0.003184172, -0.03563488, -0.035846855, 0.0060801706, -0.04518548, -0.022333145, -0.038559817, 0.014848897, 0.005603643, -0.01043587, 0.007663411, 0.026417084, -0.006423048, 0.0039891503, 0.0037997963, -0.0070449044, -0.026412705, 0.011104635, 0.0055440906, -0.020347722, -0.0069576376, -0.005754665, 0.038042378, 0.057664808, 0.011233489, 0.011026843, -0.0049194936, -0.0006017281, -0.051226504, -0.0012991662, -0.04214547, -0.016489882, 0.03852601, -0.057299413, 0.0007783211, 0.0040888307, 0.009554012, 0.03398198, -0.02600725, -0.03907642, -0.022328539, -0.089786395, -0.007037649, -0.025443051, 0.03549278, -0.0013316165, 0.014608647, 0.019658191, -0.07401978, -0.073524415, 0.026075434, 0.039283007, -0.0111377295, 0.023055537, -0.056839995, -0.06394013, 0.043988872, 0.0109683685, -0.027331203, -0.016088516, -0.019548303, -0.032454994, 0.0002702014, 0.043160506, -0.023188243, -0.07650323, 0.043401357, 0.05366937, -0.0059310156, 0.045133483, 0.045996305, -0.014474781, -0.00036347125, 0.010573756, 0.053321723, 0.015432419, -0.015699154, 0.062877685, -0.006064089, 0.044576827, -0.029287558, 0.06897752, -0.037333965, -0.0077791964, -0.023180211, -0.0037229413, -0.005060851, 0.032229517, -0.027123174, -0.013740832, 0.022070339, 0.01594614, -0.07902698, -0.004417657, -0.037610434, -0.024440326, -0.0058149886, 0.04577598, -0.036897935, -0.035768773, 0.056222305, 0.028368417, -0.016058201, -0.026573759, 0.029614223, -0.01656418, -0.0018159531, -0.006919975, -0.0040103463, -0.024413833, -0.0112012075, -0.0038042131, -0.011316386, 0.018313222, 0.037507225, -0.00086367945, 0.054772995, 0.03798644, 0.012548117, -0.00987611, -0.02590885, -0.061372153, 0.03768468, -0.014003969, 0.009498083, -0.049959287, -0.015623659, 0.04428266, -0.019046512, 0.024390794, 0.04000999, 0.0537169, 0.010212928, 0.04843668, 0.016071424, -0.002659774, -0.015503008, -0.014839554, 0.0017439013, -0.032875344, 0.0062744753, -0.009828218, 0.041844618, 0.03882967, -0.0062019266, -0.035633646, 0.017290875, 0.066814184, 0.027638339, 0.006074448, 0.021190017, -0.07868105, -0.007978737, 0.007170702, -0.0021127693, -0.0542498, -0.05096242, -0.05733493, -0.03890416, -0.016462555, 0.0003088974, 0.019889684, -0.038169086, -0.01319621, 0.009171026, 0.024808219, -0.031983413, 0.045568276, 0.004493256, 0.013337106, 0.002039323, 0.03973081, 0.0153686125, -0.015072501, 0.013655488, 0.012618365, -0.029125392, 0.012834436, 0.03580171, -0.05063254, -0.016301496, 0.00819039, 0.064504325, 0.014445158, 0.04455487, -0.0072042546, 0.045175273, -0.032713972, 0.044706978, 0.00480746, -0.0041688085, 0.01577763, 0.046762507, -0.047224842, -0.018425899, 0.05378006, -0.013978643, 0.035088975, -0.010397817, 0.044626463, 0.025522511, -0.07447586, 0.029319819, -0.011501149, 0.025800977, 0.018458504, 0.010853456, 0.020877484, -0.028380709, 0.033117726, 0.02202668, -0.019882306, 0.009568404, 0.016905753, -0.014860394, 0.0039089103, 0.010096287, 0.015445636, 0.027882248, 0.031740658, -0.015279152, 0.036996506, 0.044302817, -0.04480332, -0.03720796, -0.06686235, -0.022710467, 0.07383885, -0.004486828, -0.06480665, 0.0005210945, 0.0018778697, 0.012501992, 0.029996082, -0.04466526, 0.009547596, -0.073448844, -0.03279794, 0.040398393, 0.054136816, 0.018884663, -0.013662295, -0.066369615, 0.021874132, 0.033985034, 0.048424657, 0.024515402, -0.023076488, 0.019746441, 0.0035414458, 0.01309919, 0.012665796, -0.0109648695, -0.0119346995, 0.029586406, 0.030423997, -0.008926819, 0.039919887, -0.010591917, 0.030462256, 0.061510056, -0.06542318, -0.024056423, 0.024115717, 0.0037773678, 0.007943898, 0.011320116, 0.06079925, 0.014212567, 0.024641305, -0.034817193, -0.02596839, 0.0690521, -0.021949973, -0.025432093, -0.031598803, 0.07280685, -0.02243208, -0.040274072, -0.035144236, -0.0131573, 0.038801458, -0.050408956, 0.007913444, 0.00582701, -0.018071009, -0.00019873121, -0.003803883, 0.06446415, -0.04189621, -0.06992094, 0.08181905, -0.061352383, 0.029296052, -0.03281775, 0.05413228, -0.019081337, 0.008120397, 0.05176509, -0.09683024, -0.06990405, -0.005185737, -0.018102186, 0.032635458, 0.036049142, -0.02088893, -0.029947927, 0.044437077, 0.029915193, -0.014987467, 0.039743617, 0.04783548, 0.0022579124, -0.017007612, -0.023006316, 0.011575755, -0.0015883882, -0.03656545, 0.06981718, 0.025838966, 0.055008225, 0.001200642, 0.037057962, -0.03546279, 0.003997178, 0.083023705, -0.023915878, -0.018819995, 0.006636016, -0.028233152, -0.008056022, -0.039926976, -0.013874148, -0.018878572, -0.0009744277, 0.02757534, 0.057513352, -0.0137763005, 0.006034971, 0.013572475, -0.0059019607, 0.018798469, -0.03244921, 0.061629992, -0.020791229, -0.030139351, -0.012904497, -0.018919853, -0.033516545, -0.07840528, 0.019148575, -0.030740876, -0.019398196, 0.00017280561, 0.056386665, 0.016321184, 0.045588437, 0.033486024, 0.06499072, 0.007132105, 0.0048435736, -0.024172436, 0.0110844625, -0.08742772, 0.014538457, 0.013002632, -0.04184724, 0.00045946112, -0.015619105, -0.01112791, 0.061569866, -0.013385505, -0.04026474, -0.07313707, 0.024034316, 0.026410744, -0.02795416, -0.01433457, -0.028330967, 0.041871782, 0.008496471, 0.037836064, -0.031953853, -0.023831919, 0.014619961, -0.014878416, -0.054310676, 0.038703505, 0.015315296, -0.010117648, -0.074551426, 0.012229858, -0.048577014, -0.072200276, 0.018941743, -0.033334672, 0.0014337878, 0.024631247, -0.018524107, 0.0051621757, -0.068447486, 0.030868905, -0.01714622, 0.038475398, -0.046361983, -0.015153059, -0.020882972, 0.0028906928, 0.046033625, -0.017758366, 0.0040225373, 0.031581905, 0.012240719, -0.020301992, -0.006516175, -0.032359164, 0.03832756, -0.015396021, 0.024200464, 0.02669424, -0.047469955, 0.058872893, 0.032448374, 0.0057948437, -0.011199442, 0.038918346, -0.0068218266, 0.02915131, -0.053761292, -0.053591736, -0.058380194, -0.015466789, -0.027430655, 0.033564772, 0.011987099, 0.012660637, -0.034178816, -0.025946137, 0.039330777, 0.04239264, -0.031285625, 0.037174802, -0.028974842, 0.015322096, -0.015547566, -0.036868066, 0.029324582, 0.04854284, 0.03264476, 0.04924224, -0.018224496, 0.044634078, 0.018282138, -0.016389579, -0.053882048, 0.018157575, 0.006182619, -0.011957736, -0.009704687, -0.018494796, 0.0006045059, -0.0041980804, 0.030507503, -0.050975174, 0.018814057, 0.005914669, -0.006715196, -0.04800081, -0.026630217, 0.013263499, 0.039920866, 0.09073079, -0.04207646, 0.05317311, -0.0936747, 0.029398926, -0.05781922, 0.009876109, -0.051881608, 0.00056940847, 0.028119713, 0.00422311, 0.015268089, 0.024784401, -0.060367845, 0.004419782, -0.07254922, 0.019414512, 0.070954144, 0.042674363, 0.035554107, 0.042330176, 0.016367147, 0.025784424, 0.03010072, 0.00074817386, -0.026713476, 0.0018370714, -0.01642501, 0.06404742, 0.02011346, 0.032857247, -0.07843326, 0.023822313, -0.0498352, 0.08246419, 0.0056315986, 0.01636697, -0.0020977352, 0.07269807, 0.0007377989, -0.0019505596, -0.047876123, -0.031987533, -0.044390194, -0.03863659, -0.009750783, -0.00628475, -0.043813106, 0.025364151, 0.009720582, 0.010204709, -0.054460574, -0.045788135, -0.027380086, -0.025151968, -0.06329635, 0.020187797, 0.0050408076, -0.0061603994, 0.023616288, 0.021575298, 0.0021935105, -0.03527819, 0.013680365, 0.0003272746, -0.0039033112, 0.0029800558, -0.0061039785, -0.008627759, -0.07393467, 0.002555815, 0.0389417, -0.07350792 ] }, { "values": [ -0.016203301, -0.03940503, -0.039701086, -0.07427201, 0.031908296, 0.048701, 0.007355756, -0.0038826608, -0.013777342, 0.046608545, 0.00038676427, 0.032997265, 0.04034014, -0.005528156, -0.0090689985, -0.018863702, 0.029529404, 0.011570187, -0.06746786, -0.0031308394, 0.026434457, 0.014291071, -0.006937721, -0.019923002, -0.042524606, 0.020526852, 0.02445965, -0.040158853, 0.0116000455, -0.052853443, 0.00088575494, 0.05758078, -0.049025767, -0.039178066, 0.079016425, 0.05841478, -0.057593044, -0.011742067, 0.0041095093, -0.05724769, -0.08794094, -0.01815707, 0.002978133, 0.049087767, -0.047814794, 0.020140508, 0.010506984, 0.01744866, -0.020155352, 0.031583842, -0.012257148, -0.020009447, -0.019727642, -0.001585963, -0.021597508, -0.057805467, -0.078987256, -0.02052524, 0.08988915, -0.001161731, -0.012092872, -0.0030364129, 0.041945565, -0.026972827, -0.0008668851, -0.03889961, -0.03323285, -0.02803856, -0.03696063, 0.020469455, -0.0004054728, 0.024667317, -0.06731322, 0.048742957, 0.015195423, -0.04460439, 0.022880439, 0.00019413602, -0.015400029, 0.0653132, -0.013501974, -0.02540845, 0.054002408, 0.026249396, 0.028699927, 0.03592955, 0.010024968, -0.069596656, -0.038252674, 0.013765698, 0.0925794, -0.010688676, 0.010876763, 0.0047672605, 0.031592026, -0.04650969, -0.07600041, -0.09362145, -0.00567551, 0.08415403, -0.042545896, -0.016407166, -0.010399642, -0.020085195, 0.071674876, 0.04251295, -0.01633735, -0.036843784, -0.008213185, 0.03564441, -0.048324816, -0.043901473, -0.029406155, 0.03180359, 0.029614357, -0.028276907, -0.041482516, 0.034726117, -0.010053282, -0.0010667971, 0.05129909, -0.033120736, -0.02482007, 0.050922647, 0.021186419, -0.005868591, 0.015906893, -0.0012107383, -0.048423596, -0.064643614, 0.0840388, -0.07988839, 0.024754971, 0.0044879774, -0.049892828, -0.017717114, 0.048611943, 0.024962956, -0.018453393, -0.018941237, 0.014515244, -0.004178729, -0.02786521, 0.046103504, 0.001843712, -0.008103575, 0.015810603, 0.0030102783, -0.03052201, 0.031826016, -0.06934056, -0.026205352, 0.02514147, -0.014386472, -0.030843457, 0.08848004, 0.07449726, -0.03211144, 0.035817724, -0.044924602, 0.0003518627, 0.002240388, 0.0022607544, -0.01154401, -0.040428, 0.020030193, 0.031440966, -0.029017938, -0.0036958146, -0.050253518, 0.02117859, -0.0047296486, 0.017967654, -0.083236046, -0.007339763, 0.0039306316, -0.05133543, 0.0035653324, -0.09909482, 0.0029180325, 0.013970373, 0.05492516, -0.0062363, 0.02143103, 0.012712829, 0.00039147414, -0.026876988, 0.031347144, 0.021691015, 0.014606505, -0.0327921, -0.008006405, 0.036099993, 0.06459757, -0.03587996, 0.071061045, 0.051474087, -0.027981725, 0.006656647, -0.051409844, 0.026867975, -0.039572947, -0.04293046, 0.008193451, -0.032058556, -0.007300203, -0.03660606, -0.020087393, 0.030033173, 0.012954761, 0.0035161593, -0.008483033, 0.011051862, -0.07142597, 0.0076371813, 0.01554936, 0.1047077, 0.04053322, 0.08729897, -0.011584863, -0.050122637, 0.00032368876, 0.03299593, -0.06755046, -0.035676837, -0.0067442358, -0.026095435, 0.0075745434, -0.04574486, -0.0006793037, -0.019442176, 0.022821873, 0.016878089, 0.0019087997, 0.012010838, 0.013519626, 0.015236264, -0.006619464, 0.0068392674, -0.018908985, -0.016544564, 0.008780228, -0.0077385013, -0.054245096, -0.017630026, 0.0015332003, 0.05762379, 0.0646488, -0.0048625856, -0.01664406, 0.010533631, -0.017085416, -0.021888742, 0.032230295, -0.019698828, -0.020969475, 0.052990653, -0.06299143, 0.017785452, 0.026679318, 0.022570569, 0.028314345, -0.010573007, 0.0025202245, -0.020594107, -0.061869316, 0.011017763, -0.028185181, 0.023673678, -0.015868325, -0.0009810484, 0.00960218, -0.07270231, -0.053048223, 0.02603333, 0.044911075, -0.023741493, 0.032674037, -0.055175394, -0.05984926, 0.032371067, 0.0024598087, -0.036776043, -0.027919602, -0.008207004, -0.038013246, -0.024222871, 0.028210491, -0.044437617, -0.049926933, 0.054138232, 0.057136245, -0.009085033, 0.0033705712, 0.045465957, -0.018993396, -0.00047760128, -0.02784618, 0.036387667, 0.024354946, -0.0026343102, 0.06374658, -0.012156508, 0.012268764, -0.012002471, 0.022797355, -0.03170337, -0.01841055, 0.0006037857, 0.025549296, 0.008328143, -0.005270919, -0.022884766, 0.018797817, 0.02137428, 0.016456254, -0.09101792, 0.0026152984, -0.023482341, -0.019044751, 0.046177268, 0.017833037, -0.04129994, -0.064229116, 0.07787269, 0.011572556, -0.036106832, -0.011972589, 0.03332104, -0.02741105, 0.010317028, -0.008260414, 0.008638197, 0.024056934, 0.012836328, -0.008492994, -0.017201312, 0.023337731, 0.058119807, -0.024168769, 0.06571612, 0.018167976, 0.04634275, 0.040660735, -0.019461408, -0.07452004, 0.036476985, -0.010557291, 0.0096552335, -0.0335274, -0.032652717, 0.045638468, -0.0078046257, 0.0092848195, 0.04559351, 0.02248535, 0.01589342, 0.021432504, 0.029366067, -0.0070036324, -0.011361834, -0.003572578, 0.017083261, -0.039619017, 0.027516795, -0.002794511, 0.0070995344, 0.023641612, -0.008753982, -0.017615145, 0.025686221, 0.039588194, 0.009392991, 0.012505478, 0.04178386, -0.04758609, 0.0009280906, -0.011849475, 0.022140643, -0.043227844, -0.052852266, -0.05507286, -0.026739463, 0.00656702, -0.032447625, 0.031083547, -0.040111143, -0.009230572, 0.036317047, 0.009945739, -0.022050638, 0.065429226, -0.0038978604, 0.020806426, -0.005091802, 0.056003455, -0.0020313777, -0.016332733, 0.033481907, -0.019902226, -0.03599899, 0.0048909737, 0.057621032, -0.018790225, 0.008135624, 0.019868406, 0.06370653, 0.016327657, 0.021623695, -0.043389898, 0.06951916, 0.017537137, 0.020079575, 0.0074114744, -0.03097049, 0.0063828207, 0.030278873, -0.029063858, 0.023949845, 0.056739885, -0.05661622, 0.060022213, 0.011455613, 0.03155901, -0.006075467, -0.06492871, -0.010470685, -0.028309658, 0.031053444, 0.0062856767, -0.0010754995, 0.030776255, -0.030440845, -0.008176174, 0.03078555, -0.011091146, 0.012773496, 0.021662055, -0.05427706, 0.0011944341, 0.008597595, -0.0061311875, 0.03172971, 0.023253925, -0.0064609614, 0.07253674, 0.03725435, 0.0087456945, -0.046659768, -0.047165878, -0.041692264, 0.07733559, -0.011600376, -0.066399336, -0.014345192, 0.011145009, 0.04151608, 0.023379775, -0.041311927, 0.05836834, -0.08133576, -0.04827176, 0.043625142, 0.069864616, 0.037928484, -0.017740905, -0.08154248, 0.022669667, 0.021297077, 0.07300338, 0.014455649, -0.028136056, 0.01630119, 0.0017634126, 0.016178979, 0.0025555957, -0.02301004, -0.007344936, 0.008028954, 0.038218953, -0.027510557, 0.036006268, -0.011859217, 0.038266953, 0.058610667, -0.08628874, -0.021392087, 0.035148278, 0.04047153, 0.020712959, 0.029072247, 0.033683874, 0.003019065, 0.027647981, -0.035147466, -0.04169723, 0.040294003, -0.029024418, -0.03167642, -0.0071431207, 0.051926136, -0.036378615, -0.032196723, -0.058720108, 0.009816212, 0.026137589, -0.041471064, 0.00939771, -0.013134967, -0.04661514, -0.012854374, 0.015522761, 0.08089539, -0.00518604, -0.045169014, 0.062125146, -0.076191746, 0.018042676, -0.014093168, 0.044806648, -0.052834418, -0.020763058, 0.020089326, -0.088354826, -0.047844954, -0.0055893525, -0.004024177, 0.05278613, 0.050047114, -0.01063122, -0.032842208, 0.0521487, 0.027902547, 0.004462725, 0.03674504, 0.037168607, -0.0027111531, -0.006744996, 0.013336079, -0.006897255, -0.021134602, -0.016397236, 0.05482914, 0.026847726, 0.04319199, -0.004560416, 0.05690629, -0.030384783, 0.015631618, 0.07957671, -0.008930135, 0.004072252, 0.002873721, 0.014099308, 0.018575436, -0.03725666, -0.02725673, -0.025683224, -0.03534379, 0.024388133, 0.04152424, -0.018504648, 0.01148211, 0.0046991096, -0.015126871, 0.01188755, -0.02650866, 0.07266137, 0.015453052, -0.05265651, 0.004291045, -0.020284258, -0.03986166, -0.063524984, 0.018752163, -0.03030237, -0.053264946, 0.005633426, 0.04718843, -0.0063219587, 0.07386316, 0.02358787, 0.05339891, -0.021660207, 0.007523182, -0.016543424, 0.01564092, -0.05327037, 0.04132976, 0.006741602, -0.027375612, 0.012767878, -0.005091314, -0.018587733, 0.076236606, -0.036275245, -0.046769798, -0.029634696, 0.041572325, 0.0035803844, -0.013010445, 0.028104067, -0.045916636, 0.05803434, -0.0031188712, -0.0163135, -0.035791244, -0.020559026, 0.013180956, -0.05220329, -0.04254647, 0.05428191, 0.011102035, -0.0072787213, -0.048509438, 0.023552569, -0.06273871, -0.07063306, 0.019744895, -0.019833298, -0.003564082, 0.007128196, -0.03164744, 0.016984936, -0.057521675, 0.0121649755, -0.051528808, 0.039696556, -0.040345635, -0.029752206, -0.020028533, -0.011188075, 0.034038153, -0.051733103, -0.007300274, 0.023544477, 0.017137654, -0.0031747725, 0.017815866, -0.036326323, 0.033816427, -0.034708746, 0.00521238, 0.010606055, -0.06266696, 0.036635365, 0.028026957, 0.035652217, 0.004127703, -0.0002564016, 0.018647129, 0.021085009, -0.024169168, -0.027478699, -0.072932035, 0.005252669, -0.010283351, 0.023689551, 0.029313296, -0.013697963, 0.016886186, -0.027933046, 0.027137393, 0.027596047, -0.020648371, 0.027167957, -0.0009285206, 0.011308466, 0.0018750483, -0.04998747, 0.023309775, 0.014310546, -0.0011250402, 0.048594568, -0.035751443, 0.02243629, 0.042524405, -0.047782864, -0.058372904, -0.010496424, 0.0014338669, -0.013238978, 0.0026041977, -0.028717693, -0.014821157, 0.025297849, 0.054638553, -0.062178683, 0.028139912, -0.01776311, 0.0035803472, -0.06340478, 0.0015270272, 0.012402084, 0.015162575, 0.055860393, -0.05424381, 0.06511458, -0.05144513, 0.04331379, -0.054547045, -0.035976384, -0.05557932, -0.02208677, 0.013069267, 0.0084124785, 0.020992422, 0.00803012, -0.05742107, 0.028815702, -0.06279671, 0.035443448, 0.08099348, 0.006039075, 0.029270831, 0.03060887, 0.020944739, 0.06387131, 0.024079185, 0.005146981, -0.043880425, -0.016254032, -0.010155406, 0.06521371, 0.0061119595, 0.014837429, -0.06315147, -0.0065194783, -0.060608458, 0.056134365, 0.0032688682, 0.013298628, -0.015942542, 0.083700955, -0.003834587, 0.008669064, -0.037058845, 0.016553812, -0.028209308, -0.041819334, -0.0142575875, -0.03392966, -0.030817147, 0.017191054, 0.015734905, -0.0059433575, -0.04185274, -0.029172564, 7.158735e-05, -0.047471125, -0.055229735, 0.023838637, 0.00897037, 0.0015320027, 0.0009951537, 0.025134403, 0.002061241, -0.052609555, -0.018256396, 0.016951742, -0.0002643118, 0.024272792, -0.037313353, -0.006710093, -0.07721795, -0.0020947668, 0.038333792, -0.06904742 ] }, { "values": [ -0.020151062, -0.037677422, -0.027192395, -0.051598866, 0.034544013, 0.054062456, 0.0430425, 0.007995167, -0.022624116, 0.026292574, -0.0132085215, 0.04049199, 0.023945421, -0.0026479147, -0.025647473, -0.029417774, 0.03548649, 0.01979187, -0.040639028, -0.0114376675, 0.027573045, 0.045472104, 0.004385004, -0.052659564, -0.051284567, 0.023756698, 0.0009083307, -0.025870359, 0.00542602, -0.07492029, -0.005610961, 0.07149174, -0.03879975, -0.029527402, 0.077548906, 0.05116136, -0.047294535, -0.010164479, 0.03490418, -0.04921728, -0.10124105, -0.03896702, 0.016347742, 0.04456755, -0.054624528, 0.023816789, 0.0076796957, 0.010538485, -0.040943954, 0.05696906, 0.02995476, -0.0033008105, 9.809758e-05, 0.0014628118, -0.01879869, -0.022252252, -0.06731403, -0.043631848, 0.06298837, -0.010018224, -0.02688935, 0.0068351002, 0.020931521, -0.024203885, -0.0001604376, -0.05487629, -0.030738914, -0.04048523, -0.0526612, 0.018541966, -0.0025302905, 0.012399904, -0.08945156, 0.0052793208, 0.0060585933, -0.026384389, 0.008828367, 0.007234545, -0.016038356, 0.049432453, -0.017208146, -0.02542923, 0.06514029, 0.04407105, 0.02504243, 0.029015286, 0.017632542, -0.072830506, 0.0019226075, 0.021425648, 0.1060214, -0.003301176, -0.013734675, 0.01817696, 0.024426356, -0.028081687, -0.07538045, -0.08044052, 0.009012542, 0.08276143, -0.03683759, -0.018368308, 0.0004264601, 0.011492491, 0.06986457, 0.021535173, -0.009517863, -0.048366137, -0.031118892, 0.043641903, -0.030522358, -0.037470732, -0.011157079, 0.023221415, 0.021424532, -0.054388646, -0.020455126, 0.029307298, -0.024943078, 0.0077415686, 0.06928679, -0.046716396, -0.036756195, 0.043969527, 0.034368154, 0.019192718, 0.049203966, -0.028214108, -0.030107448, -0.0841423, 0.06099362, -0.09929084, 0.029802458, 0.009002686, -0.05632305, -0.044830065, 0.010321961, 0.018241558, -0.015600714, -0.040651508, 0.02524971, -0.011079017, -0.011767049, 0.012350323, -0.0065061823, -0.018589566, -0.0158855, -0.001532472, -0.081760675, 0.031995103, -0.07151732, 0.0052930643, 0.030839356, -0.0021134804, -0.027428372, 0.051475234, 0.06464294, -0.026173586, 0.04911028, -0.021886341, 0.014099377, -0.0033223815, 0.015773304, -0.00048718962, -0.01692266, -0.004654278, 0.032882422, -0.028913984, -0.027769301, -0.0443439, 0.02819546, 0.0007056775, 0.021731593, -0.08397545, 0.0050984053, 0.013987349, -0.06128505, 0.009546858, -0.080408156, -0.0008530488, 0.01915081, 0.047728777, -0.011945904, 0.016075192, -0.008151068, -0.0051785638, -0.03659887, 0.050650362, 0.008341805, 0.02280526, -0.010691042, 0.0005610253, 0.04537988, 0.07631144, -0.050682448, 0.05715716, 0.052254427, -0.0015883596, 0.015981413, -0.057832718, 0.046670083, -0.06217911, -0.039392456, -0.0029088056, -0.03085179, -0.01656768, -0.025123652, -0.052497532, 0.013148943, 0.021618458, 0.0028821265, -0.022725876, -0.01517997, -0.040814303, 0.025595348, -0.0007903741, 0.093370155, 0.054186042, 0.086054236, -0.019731408, -0.032869298, 0.002298435, 0.03712255, -0.082833365, -0.014617468, -0.040998064, -0.017346038, -0.017404988, -0.04967048, 0.0064605908, -0.038296875, 0.0033892265, 0.010888357, -0.0042997934, -0.005205629, -0.010161638, -0.028709147, -0.012710683, 0.00817822, -0.011094871, -0.011612676, -0.001448113, 0.005973051, -0.037291914, -0.031756457, 0.016692037, 0.04333986, 0.095296964, 0.012114617, -0.010176501, -0.0012438241, -0.015514699, -0.02763798, 0.024481894, -0.027298363, -0.022215066, 0.049317118, -0.040548913, 0.0069357227, 0.011358625, 0.021628184, 0.016303355, -0.0154728955, -0.0035091178, -0.025315458, -0.09734291, 0.011850376, -0.026213225, 0.039226335, -0.015430239, -0.010183138, 0.0092036035, -0.056766264, -0.06166901, 0.011049721, 0.05778462, -0.01345001, 0.03748142, -0.04762328, -0.05202226, 0.01513209, 0.011457447, -0.025933448, -0.023193719, -0.014586578, -0.027776422, 0.005869539, 0.02966851, -0.036318686, -0.07023972, 0.050162487, 0.062271327, 0.0024458088, 0.023074538, 0.056229837, -0.033759862, -0.0024767742, 0.006726588, 0.047761362, 0.023048341, -0.0114428075, 0.07804792, -0.014555178, 0.018789474, -0.010754198, 0.022582328, -0.050219715, -0.016378995, -0.013281298, 0.026142547, 0.0177931, 0.008505849, -0.0108953025, 0.01581471, 0.0038940932, 0.011180349, -0.08971438, 0.010097384, -0.020731118, -0.020468198, 0.04341116, 0.020305574, -0.03496473, -0.052319035, 0.08247964, 0.026088944, -0.022703689, -0.021212637, 0.04425827, -0.008987523, 0.015865084, -0.017219571, -0.00064935733, -0.028419944, 0.0067749918, 0.009080219, 0.0016331385, 0.03376876, 0.054911476, 0.0019855993, 0.063240945, 0.016818143, 0.014654562, 0.033491973, -0.01628684, -0.069293685, 0.017089492, -0.004795136, 0.041812923, -0.032790154, -0.048411794, 0.059969183, -0.0043298802, 0.011942245, 0.029691996, 0.019428663, 0.013632325, 0.042999543, 0.007242264, -0.020756962, -0.028699793, 0.0034263204, 0.015783254, -0.03496404, 0.008421569, -0.011880933, 0.015441935, 0.022060813, 0.002773485, -0.020611795, 0.008083914, 0.043927867, 0.014605911, 0.0048076427, 0.040162638, -0.051981118, 0.0050902157, -0.02042815, 0.01273311, -0.041112807, -0.054527108, -0.051498022, -0.009414473, 0.0034780602, -0.027409505, 0.022952799, -0.03915129, -0.026026797, 0.035062134, 0.031795472, -0.03882704, 0.06907226, -0.008507984, 0.035124253, -0.026932262, 0.049429942, -0.0030477513, -0.0020105264, 0.059412125, -0.02801628, -0.039297007, 0.01317737, 0.039709482, -0.035994086, -0.006430089, 0.012062003, 0.04139606, 0.02852554, 0.029621026, -0.04663874, 0.041420262, -0.03206491, 0.020637076, -0.0109986365, -0.021818697, -0.014575593, 0.030594485, -0.04738813, 0.0012792201, 0.042504564, -0.036386777, 0.03529892, -0.00026486005, 0.04191777, -0.018820385, -0.08112063, 0.010377836, -0.02698749, 0.03611885, -0.0023838982, -0.015875712, 0.048889846, -0.050292227, -0.011699544, 0.034627914, -0.010904219, -0.009509036, 3.8702725e-05, -0.042135518, 0.0071469247, 0.012051955, -0.014332471, 0.046958532, 0.030454617, -0.004449146, 0.07925796, 0.03448501, -0.0048820185, -0.030841475, -0.06851809, -0.033552337, 0.07299139, -0.017641256, -0.07590852, 0.003219652, 0.003146427, 0.02681081, 0.015225504, -0.034174833, 0.032670688, -0.06152801, -0.04152648, 0.05154423, 0.05932917, 0.016241947, 0.005936175, -0.05538259, 0.013843765, 0.009832239, 0.056066383, -0.028556202, -0.026941057, 0.0031204314, 0.015997825, 0.017447744, -0.0023252724, -0.008023961, -0.016608598, 0.020573175, 0.036935344, -0.015697144, 0.042532053, -0.018284556, 0.035650536, 0.039407212, -0.07078816, -0.0055227103, 0.020004384, 0.019106174, 0.0073747803, 0.02189273, 0.029331814, 0.009430282, 0.021318233, -0.041049678, -0.052714985, 0.03776891, -0.040251058, -0.029370133, -0.0039144927, 0.052676864, -0.029693998, -0.0364815, -0.038355567, -0.0049975184, 0.025501752, -0.030992864, 0.0011405884, 0.033461444, -0.045097765, 0.013584026, 0.002145004, 0.06808618, -0.019841144, -0.030972617, 0.07279706, -0.033221174, 0.018879278, -0.032028377, 0.05096553, -0.033090785, -0.027995711, 0.0071584713, -0.099603996, -0.07462199, -0.003296235, -0.010435081, 0.041270766, 0.057324275, -0.029149352, -0.009187537, 0.05742673, 0.004339677, -0.0061669312, 0.04336996, 0.034399405, 0.0045144185, -0.008260364, -0.0028698687, 0.020919077, -0.024151312, -0.03827322, 0.06302788, 0.021596564, 0.041551415, 0.013266511, 0.05604545, -0.037035882, 0.017217575, 0.09655478, -0.021821719, -6.575347e-05, 0.010817068, -0.011259633, -0.00013195544, -0.03944935, -0.008173547, -0.009771799, -0.022317719, 0.011647411, 0.032722395, -0.014150736, 0.009715607, 0.013907671, -0.04397238, 0.01385293, -0.03883129, 0.07424319, 0.0007434765, -0.038092397, 0.0035896937, -0.023219736, -0.034373257, -0.059525996, 0.0076080593, -0.01223549, -0.06276588, -0.0005630647, 0.055658933, 0.0075007523, 0.07161728, 0.041675188, 0.056194436, -0.018077929, 0.014683974, -0.020975897, 0.025825456, -0.07293815, 0.040501166, 0.003894553, -0.015487834, 0.007862171, -0.018146833, -0.013811631, 0.057689864, -0.027807698, -0.034752667, -0.04053721, 0.059000786, 0.0279194, -0.009090598, -0.0025230676, -0.03166743, 0.040848274, 0.00573369, -0.0024003426, -0.03361152, -0.032073703, 0.029109221, -0.028548826, -0.05561868, 0.034324262, -0.00020662896, -0.023065478, -0.0507767, 0.025407737, -0.05673068, -0.07603121, 0.019194702, -0.0412072, -0.0024118498, 0.0024626032, -0.021474188, 0.012598463, -0.069216594, -0.0019554629, -0.007771579, 0.040447835, -0.060411204, -0.036814716, -0.0347958, -0.0026536821, 0.042942885, -0.034303933, -0.01876944, 0.022091066, 0.009379281, -0.025300795, 0.041872125, -0.038744107, 0.030398328, -0.027241075, 0.019890063, 0.05187557, -0.052499894, 0.050711103, 0.02226431, 0.041618627, -0.0041583152, -0.0145525895, 0.00035079193, 0.033845756, -0.017333563, -0.02270313, -0.055819627, -0.0127163455, -0.0280875, 0.009201795, 0.0301803, -0.02778908, 0.0136649255, -0.019487655, 0.023612544, 0.04875332, 0.0040070703, 0.017190367, -0.020107273, 0.012190786, -0.005004445, -0.057421327, -0.0005359829, 0.03358742, 0.014827411, 0.033705316, -0.018522156, 0.03599762, 0.024059357, -0.05887185, -0.043195244, -0.014454792, 0.016431632, -0.026534462, -0.014095729, 0.011874638, -0.010581975, 0.012002535, 0.023199907, -0.04768818, 0.010187268, 0.0026064317, -0.009040681, -0.07718778, -0.02218969, 0.00052197865, 0.03481587, 0.08401213, -0.05282906, 0.056872074, -0.058142163, 0.04830914, -0.025458444, -0.029540896, -0.052504767, -0.004113959, 0.030564848, 0.02022889, 0.018895816, 0.015865091, -0.06283972, 0.021518514, -0.060474575, 0.01815237, 0.06044962, 0.011462089, 0.024382824, 0.024064926, 0.020341793, 0.043135058, 0.024552729, 0.013619298, -0.032230783, -0.01560672, -0.00905557, 0.07178949, 0.019181415, 0.025068432, -0.078443505, 0.0044208923, -0.0569158, 0.063485056, 0.006846422, 0.019963529, 0.005820872, 0.054273266, 0.0011240556, 0.016089167, -0.024094049, 0.0024848601, -0.030194493, -0.04239196, 0.005561523, -0.038297903, -0.05920757, 0.01409183, 0.0073620835, -0.006335558, -0.06624614, -0.028504282, -0.0035066346, -0.02315382, -0.07028009, 0.011739659, -0.013288642, 0.0011822496, 0.034582775, 0.001182892, -0.006023982, -0.015556787, -0.027883459, 0.01100178, -0.0015444005, 0.025592448, -0.020707829, -0.0020597992, -0.08273727, 0.0060933363, 0.041175857, -0.085861 ] }, { "values": [ 0.003454505, -0.014726488, -0.044148386, -0.03756699, 0.028338216, 0.039658315, 0.036777586, 0.016353259, -0.021648828, 0.007603187, 0.025074085, 0.018293679, 0.035183597, -0.0073055904, -0.03147768, -0.024034899, 0.03614258, 0.022588162, -0.053044178, -0.04540517, -0.007117802, 0.041707776, 0.016909877, -0.03922749, -0.045792602, 0.038265917, 0.044697035, -0.033252846, 0.0104365535, -0.06089188, -0.010677338, 0.039753813, -0.02617047, -0.053577535, 0.011931171, 0.07000533, -0.04785087, -0.0006238973, 0.016537957, -0.042193152, -0.06405874, -0.03549788, 0.0050659697, 0.048371725, -0.031199455, 0.0009561626, 0.03558757, -0.009471561, -0.021417083, 0.025686951, -0.017334856, 0.017780457, -0.0033113935, -0.013888516, -0.039164875, -0.03296327, -0.061197136, -0.025559852, 0.048411764, -0.031401247, -0.024371207, 0.029666344, 0.024614083, -0.0130081065, -0.012651512, -0.03229599, -0.02299683, -0.05824462, -0.06109592, 0.058676053, -0.025191128, 0.018783797, -0.058568764, -0.0013208197, 0.010377564, -0.01117511, 0.020162838, 0.00516924, -0.0037240884, 0.044704124, -0.039231982, -0.013526974, 0.07847689, 0.017229518, 0.005681504, 0.026662832, 0.04396835, -0.06513931, -0.020716392, -0.014342359, 0.08670694, -0.037312172, -0.028051438, -0.0025720387, 0.018591596, 0.0067882277, -0.05734235, -0.11617195, -0.00036399474, 0.10384509, -0.050208367, -0.025132023, 0.006438242, -0.01583904, 0.05199069, 0.048601992, 0.008133848, -0.03135673, -0.015328884, 0.06863401, -0.038346887, -0.040530283, 0.028922908, 0.03175327, 0.018570688, -0.064550735, -0.009253961, 0.0053106323, -0.02312025, -0.0003013133, 0.034175176, -0.04349531, 0.005335664, 0.075973764, -0.0030520353, 0.0016481216, 0.031646576, -0.012754547, -0.04335375, -0.077485204, 0.06622925, -0.11223148, 0.025321573, -0.02584683, -0.023856472, -0.03634456, 0.026180917, 0.06654622, -0.025347814, -0.02244733, 0.0075698835, -0.01078064, -0.036104117, 0.022652965, -0.024390234, 0.0064962585, -0.0049748826, 0.0057054176, -0.040953953, 0.042386968, -0.04752139, -0.021087147, 0.0315613, -0.01900903, -0.028393652, 0.04117302, 0.041116644, 0.00332106, 0.027919633, -0.02451915, 0.06064848, -0.007852426, -0.009481097, -0.013413445, -0.05641274, -0.0070045674, 0.030391358, -0.04581348, -0.021339241, -0.035006873, 0.018669866, -0.050299075, 0.017901635, -0.074018575, 0.028395558, -0.008658822, -0.07292926, 0.013799098, -0.052596588, -0.013193637, 0.036817126, 0.06603525, -0.01760692, 0.03949277, -0.018674353, -0.015236557, -0.021198649, 0.05452096, -0.0056158425, 0.01769194, 0.010851272, -0.007236623, 0.028077664, 0.09418936, -0.038993943, 0.0436864, 0.06607785, 0.011067287, -0.0038532882, -0.048417434, 0.018557407, -0.01341184, -0.04310425, 0.02308984, -0.03456597, -0.0077177887, -0.04612251, -0.027000265, 0.053536654, 0.011068464, -0.0026726285, 0.017978191, -0.010633776, -0.039678495, -0.006473436, -0.003561275, 0.12470943, 0.048700295, 0.06959855, -0.023632804, -0.029260343, -0.016926764, 0.023508374, -0.055374328, 0.0062176324, -0.050012123, -0.035312522, -0.016477307, -0.049016826, 0.0037454562, -0.021322452, 0.035417344, 0.0074888337, -0.0025937117, -0.015077203, 0.009937264, -0.0166091, 0.009477317, -0.006145832, -0.022625117, -0.041496713, -0.0047343764, -0.017735152, -0.024612015, -0.022330882, 0.027623335, 0.046151165, 0.04448834, 0.031515937, -0.00024717438, 0.0043048332, -0.02839887, -0.0676123, 0.012611041, -0.029531803, -0.0016988395, 0.03678719, -0.0568007, 0.025903132, 0.023308635, -0.0010675996, 0.029893901, -0.008383439, -0.026145382, -0.016602138, -0.08053492, -0.012722121, -0.028840141, 0.054799385, -0.010951478, 0.0025844448, 0.012142459, -0.07814087, -0.064464666, 0.0317283, 0.017608956, 0.0049471385, 0.0109555675, -0.020392256, -0.026314378, 0.032270513, -0.023799714, 0.0019274898, -0.03217762, -0.03019852, -0.018594088, 0.011190142, 0.052747916, -0.027789513, -0.0703079, 0.037102606, 0.0604913, 0.011720227, 0.0038884839, 0.056087747, -0.0016626633, 0.015280394, 0.022182953, 0.021205842, 0.040232476, 0.0031655533, 0.08342999, -0.03806868, 0.03446172, -0.04847721, 0.064785376, -0.038584985, -0.013271474, -0.01709268, 0.00349096, 0.007789715, 0.022791443, -0.035001893, -0.019163288, 0.019670667, 0.0055906754, -0.098677844, -0.01547736, -0.020981524, -0.012197921, 0.0028466813, 0.043141864, -0.012939567, -0.047397528, 0.07994342, -0.00037464002, -0.02202733, 0.0030510772, 0.023204792, -0.0027934352, -0.009556945, 0.013488897, 0.0038809301, 0.014871896, -0.007782685, -0.007460428, -0.007983848, 0.009542416, 0.04040967, -0.0032621028, 0.0614238, 0.041510437, 0.01706975, 0.022294307, -0.014303728, -0.079090804, 0.04091665, -0.030343594, 0.024652187, -0.08364137, -0.030277552, 0.06278955, -0.026790358, 0.0063702916, 0.027652046, 0.032721773, 0.0014380122, 0.0205646, 0.03253497, 0.0041840924, -0.016250705, -0.004481, 0.0060373214, -0.017760145, 0.012101338, -0.021206759, 0.050437212, 0.039181095, 0.0054760315, -0.021402542, 0.0148322685, 0.028114427, 0.0020015459, 0.029091083, 0.018970523, -0.04976974, 0.002840497, -0.0012082051, -0.0035038018, -0.062497247, -0.046110403, -0.06693736, -0.043014433, -0.008565214, -0.031947244, 0.018324982, -0.029667068, 0.0038995792, 0.025263812, 0.009210364, -0.036978967, 0.05743714, 0.014662852, 0.007319473, 0.0013848057, 0.042654127, 0.010030987, 0.0045470563, 0.035224542, -0.0061972872, -0.013090957, 0.024730578, 0.036705937, -0.05902465, -0.016001215, -0.0044649267, 0.04565673, 0.01843952, 0.051531363, -0.02066617, 0.064670205, -0.010493207, 0.039141957, 0.01668627, -0.008432006, -0.00066171936, 0.05498715, -0.030672133, -0.0045711244, 0.046447717, -0.029081088, 0.030189699, 0.02738961, 0.024815254, -0.007983298, -0.062248416, 0.013861639, -0.03509558, 0.031847898, 0.0038205783, -0.0010285568, 0.019567942, -0.04303946, 0.02689928, 0.033696294, -0.01769249, -0.015544921, 0.0023337174, -0.036263797, 0.030051325, 0.032635752, 0.0071604564, 0.01980155, 0.029096125, -0.017122012, 0.01544127, 0.027228605, -0.03488277, -0.031165631, -0.052093707, -0.047829527, 0.06049702, -0.011732179, -0.06029745, -0.01913315, -0.013590996, 0.0051538763, 0.0020268334, -0.049120605, 0.041462973, -0.043210432, -0.04787545, 0.045490593, 0.05197889, 0.031391315, -0.021823803, -0.06409574, 0.008730565, 0.01656665, 0.0657151, 0.013504466, -0.030656073, 0.04539105, -0.001070142, 0.019759566, 0.008439229, -0.0036479996, 0.016615776, 0.0012849753, 0.03563937, -0.024826868, 0.031639658, 0.015367398, 0.016905127, 0.060918927, -0.061983995, -0.016858893, 0.04178342, 0.008439946, -0.01666507, 0.037738577, 0.03310237, -0.00097508234, 0.021940423, -0.032542367, -0.02100514, 0.054674476, -0.042143434, -0.016181052, 0.011204451, 0.045084972, -0.03715416, -0.06589838, -0.08622616, -0.005703907, 0.009701463, -0.03777816, 0.004265981, 0.006886126, -0.04896748, -0.0009576795, 0.0072522177, 0.040987518, -0.029310238, -0.07334376, 0.07136527, -0.098183446, 0.019797659, 0.0006936345, 0.04747321, 0.003521507, -0.0027646814, 0.02971418, -0.088464275, -0.08196121, -8.249338e-05, 0.00069571164, 0.05901891, 0.04073503, 0.005736449, -0.0023154914, 0.025732148, 0.013449149, 0.011963925, 0.04094082, 0.03830767, 0.0029361024, -0.0038828375, -0.029817313, 0.009207421, -0.0010080718, -0.016387528, 0.058956295, 0.013185305, 0.04181919, 0.0104738455, 0.043461315, -0.04004544, -0.00046235754, 0.06390483, -0.037652537, -0.0127294315, 0.01579612, -0.037385337, 0.0049228426, -0.046389747, -0.0022823422, -0.00510867, -0.012629296, 0.03432669, 0.04626858, -0.022104263, 0.015175543, -0.015738681, -0.016262865, 0.001362876, -0.020016596, 0.053466342, -0.009143694, -0.023365175, 0.01766751, -0.005196213, -0.02984189, -0.068237625, 0.025167976, -0.009292397, -0.023694206, -0.015576535, 0.054968648, -0.010266056, 0.03774096, 0.051266775, 0.076387756, 0.008521024, 0.0075177797, -0.025828369, 9.5551855e-05, -0.06392951, 0.01976107, 0.014476708, -0.036500163, 0.048028544, -0.018427566, -0.02896415, 0.0605819, -0.008854554, -0.022531413, -0.056983583, 0.02625047, 0.0046862005, -0.031809684, -0.0025379348, -0.025057836, 0.033618603, -0.00012303093, 0.022578219, -0.041989, -0.03087093, 0.007750399, -0.055786975, -0.05579384, 0.03291769, 0.00670233, -7.513634e-05, -0.05107792, 0.03490483, -0.064959615, -0.06861251, 0.023080207, -0.03584703, 0.0055117276, -0.0066981465, -0.048755147, 0.00897915, -0.089111805, 0.010716793, 0.014010667, 0.02874257, -0.056210425, -0.019350914, -0.03956088, -0.013801102, 0.036250513, -0.0450908, -0.014202827, 0.021991992, 0.004881434, -0.029926611, 0.027938064, -0.029150313, 0.026261678, -0.035090256, 0.024842318, -0.007393597, -0.04657272, 0.061368614, 0.04864452, 0.019505672, -0.0103275925, 0.047284566, 0.01788795, 0.058288272, -0.05202106, -0.030662244, -0.077829964, -0.024756646, -0.01889134, 0.012908414, 0.017907118, -0.02920709, -0.0190052, -0.00016809006, 0.034506798, 0.037486218, -0.027257163, 0.04081289, -0.014740396, -0.009056868, -0.039841168, -0.021279158, 0.02292887, 0.04914457, 0.010877493, 0.04795073, -0.023286777, 0.036490075, 0.032798976, -0.06069447, -0.043590892, -0.017625127, 0.033165228, -0.03945743, -0.0029328996, -0.004267809, -0.010312012, -0.015303402, 0.03502198, -0.061495274, 0.018305922, 0.00086210575, -0.014474635, -0.06437047, -0.0003179622, 0.0021362125, 0.038205605, 0.0986888, -0.071507856, 0.025706556, -0.09585018, 0.015772551, -0.058848698, -0.013818319, -0.04841127, -0.007929268, 0.033113156, -0.01398214, -0.0116239125, 0.05385543, -0.06764674, 0.012709644, -0.061831865, 0.013122336, 0.03675776, 0.024320098, 0.05601891, 0.048738454, 0.02931031, 0.03167875, 0.025277086, 0.008749132, -0.02742269, 0.0001676075, -0.02011352, 0.08621568, 0.009008984, 0.0037598074, -0.072377436, -0.00021565804, -0.05272753, 0.052600916, 0.0015759511, -0.0034109668, -0.0013060349, 0.040120892, -0.0019204953, 0.0020088297, -0.022088477, -0.017042866, -0.040732596, -0.039615642, 0.02257231, -0.0051030978, -0.053239178, 0.00202004, 0.030257074, -0.0034462928, -0.062598936, -0.039681856, -0.03900955, -0.032568444, -0.058444444, 0.019365292, 0.036067817, -0.0041315844, 0.024628896, 0.042930424, 0.010675194, -0.026848663, 0.00401651, 0.023036052, -0.019524887, 0.028452035, -0.017355073, -0.009329372, -0.07396023, -0.008278973, 0.051714778, -0.06266547 ] }, { "values": [ -0.0043170154, -0.017514747, -0.03820716, -0.041085143, 0.025440209, 0.019291636, 0.0485317, 0.034839507, 0.002430534, 0.03505768, 0.020426176, 0.04334768, 0.025495183, 0.0021508308, -0.03021252, -0.028203357, -0.008895114, 0.021377007, -0.05420881, -0.01962229, 0.018588208, 0.022604816, 0.008684782, -0.033807416, -0.03932066, 0.042779837, 0.030998096, -0.040790804, 0.024534738, -0.055962805, 0.0023540724, 0.057266667, 0.00013592925, -0.052359514, 0.06286544, 0.03965286, -0.011373264, -0.013444603, 0.007656714, -0.022915969, -0.09277664, -0.026910799, -0.005549313, 0.04630493, -0.037288625, 0.023285678, 0.012945572, -0.010666154, -0.060116574, 0.039353043, 0.031257786, 0.005784555, -0.048772834, 0.017813176, -0.0269613, -0.041001014, -0.0568762, -0.0435114, 0.06483266, 0.025280563, -0.029090574, -0.021199556, 0.03247485, -0.04100936, 0.012041207, -0.06474765, -0.018924778, -0.01774823, -0.0673552, 0.04239196, -0.016287144, 0.016553603, -0.083855405, -0.00829323, 0.014117533, -0.0336304, -0.00040467025, 0.017969605, 0.0043530995, 0.025017478, -0.016118938, -0.023334695, 0.07747608, 0.034506176, -0.014430313, 0.0066525857, 0.034631826, -0.04959911, -0.0055989474, 0.034143213, 0.083308615, -0.011515097, 0.009712541, 0.04316346, 0.02697338, -0.016911872, -0.07892181, -0.080415495, 0.010556691, 0.05954126, -0.07015033, -0.011183607, 0.006644731, 0.0072020176, 0.031138062, 0.03444845, -0.00024257154, -0.027399924, -0.056103818, 0.05325863, -0.016653603, -0.036718022, 0.014164053, 0.0008897959, 0.007946599, -0.068384744, -0.026120631, 0.0065506482, -0.016877424, 0.0031890625, 0.039650287, -0.040811904, -0.035366744, 0.052891158, 0.0056641363, 0.026186612, 0.029806258, -0.0103725, -0.041747805, -0.058628667, 0.059860382, -0.10108929, 0.020927014, 0.006535577, -0.026516037, -0.03904133, 0.021915523, 0.034204587, -0.025528567, -0.020691434, 0.020563591, -0.02526806, -0.040682975, -0.012118869, -0.017138492, 0.028684864, -0.003959033, 0.0062300973, -0.07198888, 0.031663004, -0.05359804, -0.0067732767, 0.020622006, 0.019483108, -0.039896302, 0.050329555, 0.057914797, -0.016372178, 0.110235885, -0.016588153, 0.041945163, -0.0044509782, 0.016254254, 0.046607967, -0.038816776, 0.0026601015, 0.01800333, -0.04994646, -0.04877254, -0.021089783, 0.0005223281, -0.010335165, 0.017616604, -0.07188988, 0.011805289, -0.014058153, -0.04298203, 0.027491115, -0.048457745, -0.012825059, 0.033253275, 0.058403097, -0.0071307085, -0.008716785, -0.021970471, -0.0034194663, -0.038031776, 0.09220047, -0.004230225, 0.02661133, 0.0058351425, 0.025338575, 0.028570712, 0.09874263, -0.03611763, 0.070226915, 0.0639207, 0.006273759, 0.028596528, -0.038549304, 0.03616807, -0.040577475, -0.030711967, 0.007336717, -0.032901507, -0.010357839, -0.025723869, -0.05815577, 0.03554925, -0.02148322, 0.01113177, -0.016016256, -0.026974529, -0.040232245, 0.014782254, 0.010442575, 0.12194973, 0.07610776, 0.05828556, -0.004786413, -0.024313392, 0.0033349218, 0.031705543, -0.078858696, -0.0087673105, -0.039182678, -0.042215083, -0.020701727, -0.060316995, 0.003919244, -0.024886841, 0.007909322, 0.019386122, -0.013755277, -0.018439109, -0.014944676, -0.01902979, 0.005802185, 0.0045627495, -0.04462427, 0.0028395937, -0.004071206, 0.009222424, -0.033420693, -0.004104369, -0.0014276078, 0.03504792, 0.07483036, 0.008363703, -0.0314559, 0.0020817376, -0.01969949, -0.020262774, 0.03616632, -0.009866129, -0.0021002688, 0.039288685, -0.059154067, -0.029462902, -0.016694402, 0.04066203, 0.0049350816, -0.021976795, -0.03647125, -0.007866363, -0.11024749, 0.011579645, -0.029918155, 0.036613364, 0.012818493, 0.0024081632, 0.003883114, -0.049355503, -0.058021344, -0.011838635, 0.03448073, -0.048360515, 0.020829713, -0.03678975, -0.046487745, 0.018853677, -0.016902726, -0.04799383, -0.017683305, -0.029174004, -0.029883832, -0.021690806, 0.01720433, -0.042588633, -0.059748575, 0.057579976, 0.057300895, 0.005224222, 0.015914578, 0.0485285, 0.012846791, 0.0249876, 0.016845742, 0.026229752, 0.029048845, -0.0009596378, 0.07020727, 0.0064197746, 0.030345293, -0.03325567, 0.022752902, -0.055301588, 0.010188847, -0.007696988, -0.003952837, 0.03304595, 0.0046998747, -0.011693357, -0.007067886, -0.015275687, 0.008890789, -0.06650552, -0.0038161566, -0.027257076, -0.049006365, 0.021439703, 0.022246713, -0.04752784, -0.05542998, 0.07704685, 0.006252687, 0.011674389, -0.004911289, 0.002274705, -0.018294279, 0.013331466, 0.0067409324, 0.007950994, -0.029084766, -0.0055674575, -0.0032337224, 0.0025228283, 0.015699422, 0.054076873, 0.0037794884, 0.05919148, 0.00810987, 0.061641265, 0.02530918, -0.035178483, -0.06024618, 0.049014587, -0.033021625, 0.042556636, -0.045642518, -0.060145598, 0.05970188, 0.012208658, 0.015337426, 0.039004147, 0.011911683, 0.02411508, 0.012436396, 0.005926209, -0.0103760185, -0.02979389, 0.006201508, 0.031418867, -0.036403373, 0.019736659, -0.025383968, 0.02302156, 0.0381794, -0.00441272, -0.016183453, -0.0076335357, 0.044412136, -0.0055281715, 0.012334172, 0.025032716, -0.05634121, 0.0041541224, -0.009142625, 0.0242485, -0.046787392, -0.05425511, -0.060762674, -0.0325355, -0.020760238, -0.008886155, 0.028617565, -0.04303184, -0.0079398025, 0.028535524, 0.008661107, -0.024169734, 0.058530048, 0.003104895, 0.031908885, -0.041056048, 0.044576056, 0.0020709315, 0.00050858373, 0.051285233, -0.019232498, -0.022209773, 0.039182175, 0.047689013, -0.030329516, 0.0048866654, 0.019067295, 0.018341228, 0.02230639, 0.03403862, -0.03906437, 0.04385371, -0.017444221, 0.023352366, -0.009180949, -0.02124876, -0.02551002, 0.05003796, -0.040326554, -0.031351924, 0.039401665, -0.046387278, 0.0333564, 0.0007956602, 0.06353627, -0.007054062, -0.055983942, 0.032628503, -0.026062844, 0.032180686, 0.0023922385, -0.012904615, 0.03805347, -0.053484824, -0.016724668, 0.03435043, 0.0041035046, -0.005770648, -0.032924697, -0.055420518, 0.0141767105, 0.03345389, 0.0024723236, 0.063975334, 0.037536405, 0.009295309, 0.027046055, 0.03118509, 0.010845938, -0.048594803, -0.040905636, -0.0355289, 0.073422, -0.029773254, -0.08107704, -0.0022468888, 0.0015554201, 0.0010880026, 0.032112822, -0.029882867, 0.03736645, -0.07572454, -0.048818402, 0.066310875, 0.075047866, 0.018028552, -0.031120671, -0.06252148, 0.01742297, 0.0253897, 0.056565046, -0.011836699, -0.020370796, 0.0065310304, 0.0060657463, 0.012398207, -0.011515915, 0.01600435, 0.009749393, 0.0024135567, 0.037617538, -0.014663201, 0.021404073, -0.007222925, 0.02043637, 0.017386863, -0.07431063, -0.0063583367, 0.015620935, 0.019865846, 0.0016103486, 0.0004546453, 0.031174645, 0.007824804, 0.016073145, -0.06229488, -0.06665801, 0.04780777, -0.0103191165, -0.0054151127, 0.018266654, 0.059813067, -0.0066857813, -0.026821034, -0.04877294, 0.02020383, 0.011093045, -0.015416118, 0.004258977, 0.028963735, -0.037116017, 0.016921798, 0.0009216209, 0.026257722, -0.016223447, -0.034933645, 0.031489536, -0.061845332, 0.043126162, -0.0028613845, 0.038910035, -0.034858685, -0.04065524, 0.017193701, -0.07188558, -0.07052091, -0.036894523, -0.007699389, 0.046545852, 0.03982759, -0.021129051, -0.004020341, 0.048475906, 0.0042222166, -0.009192826, 0.046199646, 0.028535122, 0.009313135, 0.00025735114, -0.010890016, 0.019921785, -0.029634876, -0.031676702, 0.052273124, 0.020100357, 0.012672593, 0.0047173407, 0.027483283, -0.034826506, 0.03767215, 0.07548934, -0.021585671, -0.021794157, 0.004597069, -0.020745793, -0.009624991, -0.02638733, -0.01815818, -0.008912633, -0.019777915, 0.03881985, 0.04350369, -0.010140964, -0.0071784463, 0.011283577, -0.069470175, 0.025649657, -0.015261129, 0.061548132, -0.01315418, -0.033554927, -0.0020733129, -0.0034370872, -0.01787607, -0.059036583, 0.014928586, 0.009812236, -0.063950725, -0.0070726587, 0.06402369, -0.022392977, 0.07267572, 0.008878513, 0.07960107, -0.018298559, 0.03834765, -0.023098974, 0.03386239, -0.05303669, 0.021739662, 0.028859517, -0.022511564, 0.0026044247, -0.012938968, -0.006783954, 0.059709117, -0.009220187, -0.011447084, -0.042347986, 0.038737312, 0.027017733, -0.011776267, -0.002197009, -0.025498169, 0.059489667, 0.009965063, -0.041089665, -0.04591377, -0.04032607, 0.016052812, -0.042847663, -0.057368524, 0.027853485, 0.007815414, -0.02294888, -0.07064506, 0.01776632, -0.06540677, -0.09053084, 0.026566658, -0.018107384, 0.016817426, -0.010415495, -0.007872106, -0.023872338, -0.06685323, -0.018189173, 0.026795799, 0.03139071, -0.069149435, -0.029646019, -0.02518695, -0.0072863335, 0.033915058, -0.03886098, -0.024964325, 0.043276217, 0.003476893, -0.032107286, 0.034459893, -0.04073647, 0.01672888, 0.004917377, 0.029491814, 0.06482973, -0.055541925, 0.04997575, 0.03034962, 0.06142233, -0.01301067, 0.013593705, -0.002388397, 0.008152303, -0.023410486, -0.0147253005, -0.056164026, -0.003713429, -0.0425769, -0.0059133377, 0.022732653, -0.04345897, 0.016361285, 0.0010666648, 0.04116464, 0.050909325, -0.036443755, 0.02660731, -0.02326789, 0.011098943, -0.0020068854, -0.04682108, 0.024204146, 0.020073973, 0.031723343, 0.03479462, -0.020526135, 0.034891207, 0.0370785, -0.0624187, -0.029291615, 0.0063322475, 0.0064795325, -0.03303716, -0.032329958, 0.025818322, -0.004233217, 0.03308743, 0.03512457, -0.037693664, 0.0060690558, 0.011520934, 0.00916687, -0.06886859, -0.033144757, 0.0003073119, 0.058367655, 0.0951989, -0.04050422, 0.035718806, -0.053734977, 0.018759135, -0.03539862, -0.023653453, -0.061143924, -0.030661253, 0.04521241, -0.005115642, 0.050182562, 0.044233732, -0.06184496, 0.015034802, -0.02268391, 0.010371378, 0.06271659, -0.00039495196, 0.02031094, 0.026211176, 0.023122968, 0.0193662, 0.02054509, 0.01497463, -0.0069036083, -0.0042589866, -0.03899026, 0.0682846, 0.030974925, -0.00079164177, -0.08190954, 0.029386155, -0.062117144, 0.060024012, 0.011744202, 0.008269741, 0.018704634, 0.050851066, 0.017858345, 0.008596728, -0.00088043, -0.019554365, -0.07945896, -0.04027228, -0.0047449, -0.026884336, -0.03982272, 0.028467536, 0.01033048, -0.001054013, -0.06902502, -0.040508404, -0.014316058, -0.026466414, -0.082666226, 0.05030669, 0.0040629786, -0.0043983134, 0.024098933, -0.009510674, 0.012436294, -0.026482811, -0.002703516, -0.0020801916, 0.005242648, 0.037189685, -0.030798841, 0.014618795, -0.07427376, 0.023625541, 0.041459065, -0.067920186 ] }, { "values": [ -0.021384353, -0.025772084, -0.02086048, -0.05125207, 0.0038827, 0.03160548, 0.026534427, 0.06017902, -0.03367162, 0.020380301, 0.030857608, 0.031194128, 0.025949586, 0.019679125, -0.014909334, -0.017038671, 0.01672936, 0.0029528663, -0.03545147, -0.012730357, 0.012675122, 0.04549461, -0.027514735, -0.044719696, -0.032477967, 0.038041964, 0.015450921, -0.06376854, 0.016259462, -0.06943508, 0.005391578, 0.03410354, 0.0030136628, -0.027792111, 0.021741597, 0.062791094, -0.0052523124, -0.009474571, 0.030451134, -0.05220354, -0.09267404, -0.05567383, -0.006966106, 0.05430693, -0.051217347, 0.039051186, 0.0030424888, -0.005480833, -0.041432012, 0.009550648, 0.04252756, -0.0041874624, -0.03250199, 0.033987522, -0.026728993, -0.029759247, -0.0602839, -0.053927924, 0.07249709, 0.00679664, -0.026350487, 0.001534552, 0.027067438, -0.04304811, 0.008030685, -0.064716734, -0.016291605, -0.036481977, -0.07305763, 0.04536261, -0.029893136, 0.005593353, -0.097587205, -0.01660259, 0.034934863, -0.049244165, 0.021215511, -0.018508147, -0.011716454, 0.018841747, -0.0006098137, -0.032884423, 0.037668686, 0.036987282, -0.0018915324, 0.024560563, 0.033984542, -0.044325173, -0.038155764, 0.03265845, 0.07670151, -0.014586301, -0.024840657, 0.028587623, 0.053122647, -0.023572117, -0.06426799, -0.0658644, 0.009726721, 0.045764316, -0.087684356, 0.011519116, 0.009202582, -0.007452922, 0.04085613, 0.062185228, 8.76335e-05, -0.030733237, -0.025335455, 0.06054961, -0.032379426, -0.04681523, -0.020568836, 0.029225824, -0.008534263, -0.07506297, -0.02093977, -0.0071211015, -0.043735042, -0.024089938, 0.028283596, -0.014434421, -0.019958377, 0.05129266, 0.004442661, 0.026483357, 0.03236054, -0.012883994, -0.034947105, -0.040595468, 0.046273015, -0.117381625, 0.02894969, 0.01961996, -0.036173347, -0.031702343, 0.047197822, 0.041748546, -0.03890497, -0.040911194, 0.03151647, -0.049112197, -0.050000384, 0.0031643843, -0.012405785, 0.008515151, -0.032390036, -0.010500026, -0.065988645, 0.020538907, -0.04516731, -0.0017363009, -0.0043589403, 0.0043913703, -0.037326053, 0.051679447, 0.046751656, -0.055390302, 0.07954795, -0.028893145, 0.032546382, -0.014833765, 0.036637858, 0.015335076, -0.00085370743, 0.024505235, 0.019699749, -0.035139244, -0.07196527, -0.044482764, 0.0116822515, -0.0684625, -0.0119231595, -0.07796251, -0.0051215556, -0.022611402, -0.044514626, 0.021552501, -0.03920172, 0.010028604, 0.033187516, 0.0674984, -0.0013346812, -0.00011635092, -0.040833525, -0.0057108393, -0.019929705, 0.09181832, 0.001652548, 0.03705436, 0.016596155, 0.03150308, 0.028496645, 0.09563363, -0.01238788, 0.07617601, 0.06566591, -0.005418283, 0.010301277, -0.043472275, 0.026281722, 0.0004631122, -0.036414478, 0.01601696, -0.015341422, -0.0033040005, -0.0122809885, -0.049765617, 0.05224832, -0.017333254, 0.015218314, 0.016438058, -0.021061229, -0.04711641, 0.018258896, -0.012559066, 0.1338135, 0.06710712, 0.07198454, -0.032837834, -0.005508571, -0.00495685, 0.046636146, -0.05574474, 0.011913063, -0.021778952, -0.0029565606, -0.008253605, -0.038268134, -0.007888289, -0.026613565, -0.00052404765, -0.009992669, 0.0043641785, -0.017700916, -0.006431233, -0.0025682168, 0.0112602655, -0.02717758, -0.011501176, 0.011669799, 0.0033493584, 0.007954268, -0.04564424, -0.02419208, 0.03084282, 0.054873507, 0.066813104, 0.0065379567, -0.037590284, 0.019282736, -0.041970726, -0.04341843, 0.013647826, -0.026151229, -0.030866517, 0.056560375, -0.06494417, -0.016412528, -0.0048149345, 0.043214556, -0.0003045689, -0.01738557, -0.04095126, 0.0035087597, -0.06791716, -0.009918642, -0.027321497, 0.037087653, -0.0065353657, -0.008139689, 0.0010781399, -0.07914446, -0.031790715, -0.01231414, 0.04930204, -0.028712371, 0.01646508, -0.04241491, -0.05156269, 0.035993267, -0.009723404, -0.015987568, -0.029925019, -0.035427548, -0.02106524, -0.024429156, 0.061797857, -0.04551068, -0.04318408, 0.058448892, 0.046643488, 0.001454272, -0.005691328, 0.08613281, -0.0035531565, 0.022772908, 0.0036796706, 0.008538698, 0.050917413, -0.020259771, 0.059177734, -0.0077377977, 0.02249231, -0.0111382315, 0.028886069, -0.056750953, -0.004116353, -0.008418629, -0.0067127063, 0.022772571, 0.017880954, -0.031297863, -0.011795595, -0.008112986, 0.008814878, -0.096666634, 0.014965257, -0.02152983, -0.034856845, 0.011613019, 0.027348766, -0.04533926, -0.06260026, 0.056897476, 0.01218438, -0.00039618387, 0.0037703183, 0.017322967, -0.024883078, -0.010690736, 0.0071187057, 0.012788083, 0.0010821716, -0.0040774024, 0.010933291, -0.02178545, 0.02577231, 0.036451172, 0.018360864, 0.030376336, 0.0022940466, 0.042706672, 0.033222448, 0.0027223008, -0.045921005, 0.038408242, -0.02008585, 0.027484251, -0.057308745, -0.06462782, 0.055327646, -0.015851881, 0.0016759785, 0.038181044, 0.029586302, 0.016473899, 0.020019783, -0.013905133, -0.0066510024, -0.039768916, -0.0041384967, 0.03840436, -0.024499943, 0.038643714, -0.0071868026, 0.04558363, 0.034634613, -0.0012526786, -0.008654011, 0.0109496815, 0.056418758, 0.008681918, 0.03142908, 0.02070244, -0.059697315, -0.013613472, -0.02294322, 0.026516406, -0.04169859, -0.039916802, -0.058106508, -0.026105389, -0.014592339, -0.027954124, 0.007185826, -0.046843175, -0.0065932623, 0.02686829, 0.017216181, -0.045191873, 0.029587207, -0.0031496955, 0.03692517, -0.022538602, 0.04985852, 0.019547831, 0.005149406, 0.02853022, -0.015489485, -0.039887384, 0.020249248, 0.039489236, -0.054698907, 0.003183846, 0.035425477, 0.030963566, 0.040307477, 0.041331757, -0.05485334, 0.05344729, -0.01421918, 0.028490739, 0.011214107, -0.02973753, -0.013982065, 0.058180675, -0.035549093, -0.006878314, 0.02568287, -0.007970096, 0.026065877, -0.020133052, 0.065060794, -0.030964058, -0.06728, 0.03528633, -0.021579595, 0.032858215, 0.003704142, -0.004710908, 0.03239263, -0.047582183, -0.012707601, 0.012340324, -0.0012484835, -0.008409484, -0.012334184, -0.02005351, 0.018231006, 0.022178534, -0.008459696, 0.05050412, 0.03624568, 0.013928812, 0.03174683, 0.020140147, -0.007133703, -0.05001747, -0.06639824, -0.04264217, 0.050089117, -0.016629802, -0.079204015, -0.010166644, -0.0054483972, 0.03009036, 0.0072630127, -0.021953652, 0.03800375, -0.07744754, -0.03985093, 0.05990732, 0.068105415, 0.007063475, -0.01158543, -0.07070657, 0.028089296, 0.017705005, 0.055805717, -0.00020974834, -0.029858239, 0.015388068, 0.0010326988, 0.001750415, -0.004346513, -0.028854104, 0.012163283, 0.012700928, 0.03833548, -0.024959218, 0.017454898, -0.011225715, 0.015827851, 0.021436937, -0.055405274, -0.016203607, 0.029812368, 0.020570794, 0.015499734, 0.032443017, 0.040595736, -0.0010042961, 0.03660865, -0.03313686, -0.046519693, 0.04184782, -0.026722878, -0.019184021, 0.01867991, 0.0627087, -0.02250695, -0.032738186, -0.04395066, -0.0119489, 0.01940412, -0.04320945, 0.005334281, 0.023690848, -0.029179823, 0.02622233, 0.002264518, 0.05092644, 0.0099193305, -0.01821267, 0.044681486, -0.059493933, 0.03212194, 0.006648112, 0.05955362, 0.0044596735, -0.0335923, 0.0040496634, -0.06407587, -0.06472548, -0.01537818, -0.026742784, 0.03964826, 0.042440373, -0.027687307, -0.028022517, 0.05025221, 0.0042153867, -0.0011669217, 0.048717424, 0.007861726, -0.0129616195, 0.01458444, -0.010580583, 0.021535162, -0.034153596, 0.011321878, 0.045411773, 0.015519959, 0.02707081, 0.009971333, 0.032216717, -0.0420171, 0.026293786, 0.07846595, -0.035713337, -0.00772272, 0.015830856, -0.0036673085, 0.009286872, -0.05037221, -0.012880007, -0.0019123266, -0.030784993, 0.027008265, 0.040184066, 0.00046675306, -0.0026903353, 0.0041907486, -0.042887934, 0.014270124, -0.028479742, 0.041325763, 0.0043862546, -0.03910211, -0.0005756992, -0.009074764, -0.021344788, -0.05328171, 0.047545355, -0.01740336, -0.0669943, -0.007439949, 0.06442999, -0.008997765, 0.07331114, 0.0042114328, 0.07127798, -0.035629816, 0.018042877, -0.018725222, 0.034298193, -0.06613724, 0.008432657, 0.04851644, -0.028004793, 0.008687879, -0.026191963, -0.00879745, 0.06350866, -0.028612858, -0.020574324, -0.029269893, 0.05015585, 0.044767078, -0.005887602, 0.004374366, -0.025213908, 0.062422786, 0.021372335, -0.03532854, -0.0670212, -0.04264968, -0.008954289, -0.032132067, -0.04610482, 0.03225495, 0.0062020496, -0.016127624, -0.055911805, 0.025488209, -0.05845544, -0.07022352, 0.023771742, -0.036023434, -0.020430695, -0.012548257, -0.017645672, -0.01654885, -0.075784564, 0.015119131, 1.2971228e-05, 0.039963283, -0.052808594, -0.014298319, -0.0018447249, 0.004745412, 0.021548526, -0.04405705, -0.029880013, 0.0460568, 0.0071543907, -0.029926991, -0.00019286083, -0.039347455, 0.031018604, -0.021766517, 0.04199755, 0.035743117, -0.067139015, 0.053061787, 0.01508744, 0.029693332, -0.002138293, 0.017827231, 0.0063007274, 0.039121076, -0.03986516, -0.021578439, -0.058046546, -0.0012715555, -0.045534007, -0.0054105036, 0.02077227, -0.031608302, 0.0059387325, 0.010285046, 0.032448504, 0.046637326, -0.03210149, 0.04153883, 0.007870237, -0.021141784, 0.001006677, -0.033943057, 0.008042549, 0.014032269, 0.021309348, 0.016157074, -0.019626675, 0.03749151, 0.029420111, -0.017093822, -0.060956884, 0.011314437, -0.0020800428, -0.045175515, -0.0074061477, 0.0073228013, -0.0073122364, 0.024659868, 0.039671365, -0.044796582, 0.033358928, 0.0131652355, -0.012960538, -0.08528108, -0.010123309, 0.007021244, 0.064662404, 0.0761995, -0.03536949, 0.04008577, -0.054921925, 0.038141612, -0.0465657, -0.03390887, -0.052372664, -0.052007306, 0.05089117, -0.0015862612, 0.048935033, 0.043365236, -0.04779463, 0.01873935, -0.038766444, 0.014344535, 0.060825054, 0.019188844, 0.03057711, 0.03280904, 0.025072688, 0.015380507, 0.010025284, -0.0023877618, -0.01415287, -0.01735925, -0.022458892, 0.06560433, 0.02553456, 0.010756097, -0.07671476, 0.010165281, -0.044464845, 0.06573407, 0.019397045, 0.01568701, -0.005275296, 0.06509402, 0.028470514, -0.017917251, -0.01690679, -0.023066329, -0.060237307, -0.062382665, -0.015338137, -0.025206367, -0.045696937, -0.019842215, 0.0068645068, 0.025513113, -0.048783723, -0.037864063, -0.009256867, -0.029881267, -0.08322352, 0.021069663, 0.0050011203, 0.009752331, 0.00021473199, -0.017451871, 0.056956295, -0.02900736, 0.0049641575, -0.0051724487, 0.011881096, 0.026501562, -0.012582651, 0.016182782, -0.085776374, 0.0073347474, 0.03112069, -0.081014216 ] }, { "values": [ -0.02983154, -0.005327806, 0.007233073, -0.031110711, 0.009170363, 0.026034644, 0.050034247, 0.014489394, -0.0094049005, 0.030420117, 0.034233678, 0.031591978, 0.017332617, 0.006859425, -0.011064118, -0.022191675, 0.015726097, 0.016147438, -0.04012196, -0.034630723, 0.021282239, 0.025011115, -0.0083221095, -0.029200599, -0.038494278, 0.011036153, 0.018080197, -0.0545292, 0.021120735, -0.06629247, 0.0027402346, 0.07595926, -0.014986567, -0.06006569, 0.05577848, 0.041673932, -0.008043268, -0.023860043, 0.034647726, -0.03991668, -0.10004273, -0.040117737, -0.0157233, 0.057765495, -0.042798713, 0.040225416, 0.028211014, 0.005901609, -0.013711697, 0.027403653, 0.056461424, -0.002911037, -0.004764867, 0.024184763, -0.0143421665, -0.038437057, -0.08133944, -0.06842747, 0.058373477, 0.010163635, -0.029558534, -0.006089056, 0.019836366, -0.040811017, 0.020956105, -0.05764584, 0.003645209, -0.030376807, -0.06325826, 0.06290976, 0.00878331, 0.035375662, -0.06781038, -0.020009065, 0.015246839, -0.030165462, -0.008502447, -0.014654632, -0.0327654, 0.0029450152, -0.020360667, -0.021289485, 0.04748064, 0.04828608, -0.0001198567, 0.031324368, 0.021904636, -0.06980049, -0.011595401, 0.013816322, 0.07516707, 0.0031077676, 0.013716323, 0.026842818, 0.044854917, -0.040081307, -0.08706158, -0.06364993, 0.038345274, 0.06400752, -0.05168777, -0.00739022, 0.013922076, 0.012044666, 0.06186277, 0.0317275, -0.010586655, -0.0076587577, -0.036158126, 0.06914406, -0.032113682, -0.038050566, -0.0054656565, 0.0054346565, -0.023793245, -0.08864079, -0.009974317, 0.0039081345, -0.039444726, -0.028477179, 0.03670468, -0.025673466, -0.06358417, 0.028143842, -0.004501275, 0.022507513, -0.004416105, -0.0055503394, -0.021522526, -0.06721565, 0.03301901, -0.12532744, 0.02709293, 0.00043126487, -0.022722336, -0.043527126, 0.038422246, 0.028929116, -0.006172821, -0.03414515, 0.022419246, -0.031441532, -0.026111217, 0.007061176, -0.010819573, 0.001604302, -0.017580079, 0.017870031, -0.07808632, 0.02395476, -0.059944373, 0.018999081, -0.0015235262, 0.022405377, -0.030165175, 0.054247394, 0.056979295, -0.022123845, 0.0931649, -0.026037203, 0.034535065, 0.00814909, 0.021335391, 0.021192765, -0.02177745, -0.022065345, 0.0055579944, -0.039911017, -0.056784824, -0.03650752, 0.026545197, -0.025911234, 0.0033945125, -0.08652564, 0.004136113, 0.00082190306, -0.026544403, 0.028337957, -0.021611689, 0.017247016, 0.03276104, 0.03498826, -0.010760711, 0.0004912046, -0.016218387, -0.023236198, -0.047040086, 0.11311489, 0.022507295, 0.049156044, 0.007016843, 0.03403206, 0.00823959, 0.08234466, -0.016618885, 0.059688244, 0.051556047, 0.0011924572, 0.05342596, -0.03900915, 0.055464372, -0.026508644, -0.030471873, 0.020033473, -0.030893048, -0.020200156, 0.0005553305, -0.04388756, 0.0372562, 0.0033188225, -0.011083013, -0.027608061, -0.020597564, -0.035412356, -0.0007892263, 0.023541734, 0.10806823, 0.05864755, 0.053644896, -0.007741292, -0.016510185, 0.009083418, 0.032402053, -0.05453265, 0.0007820131, -0.053187776, -0.025510779, -0.034556676, -0.051502686, 0.03605382, -0.037652355, 0.021511957, 0.0028294995, -0.009739209, -0.026821429, -0.008248789, -0.007715062, 0.0021496266, -0.009873317, -0.031175613, -0.018142996, 0.011672925, 0.01997669, -0.03355962, -0.0147202145, 0.042857867, 0.0490478, 0.08250707, 0.01439679, -0.030880868, 0.019730838, -0.041945558, -0.040391058, 0.037887402, -0.011777207, -0.035502125, 0.038975887, -0.07635681, -0.0036289208, -0.027942095, 0.047437657, 0.006249283, -0.015329088, -0.03918852, -0.019958451, -0.07463342, -0.009906275, -0.013631564, 0.05891253, 0.019122427, -0.001124256, 0.0023874028, -0.0445864, -0.05539986, -0.009106766, 0.039791945, -0.033155493, 0.012602046, -0.0288585, -0.051789783, 0.044911392, -0.017453521, -0.033560485, -0.042739708, -0.014524, -0.030010996, -0.0059295865, 0.04854366, -0.04871402, -0.042320654, 0.07008665, 0.05108552, 0.007708339, 0.004984625, 0.057036318, 0.0115353875, 0.014697265, 0.014209221, 0.023725146, 0.031029984, 0.0051488923, 0.055008292, 0.0026230728, 0.00069933996, -0.007783288, 0.031009309, -0.065676734, -0.016736973, -0.0011348182, 0.009819761, 0.030216092, 0.018786343, -0.011851395, -0.011240614, 0.012367528, 0.024943687, -0.087881625, -0.00922664, -0.020474253, -0.031541355, 0.02404954, 0.034819566, -0.050121117, -0.048395243, 0.06716526, 0.0010621848, 0.0061414274, -0.00012116832, 0.020842284, -0.0040447847, 0.01361909, 0.009249253, 0.013946589, -0.008728859, 0.0009177131, 0.0120951235, -0.012918416, 0.017884549, 0.06786573, 0.022418337, 0.04001123, -0.015480927, 0.049205672, 0.032633632, -0.030301385, -0.06497945, 0.03365134, -0.03285927, 0.03519764, -0.03852446, -0.07842209, 0.059807908, 0.010716462, 0.003371076, 0.03621274, 0.015106028, 0.039440587, 0.017814469, 0.009361379, -0.016181614, -0.026850255, 0.029171426, 0.033641595, -0.034181293, 0.021452539, -0.0055317064, 0.023921715, 0.038038608, -0.009173527, -0.021902628, 0.00042359074, 0.04427855, -0.0049264715, -0.011062229, 0.0194559, -0.06195456, -0.0064857295, -0.018702263, 0.018562337, -0.050706938, -0.05615552, -0.045759384, -0.010015456, -0.013055937, -0.039734013, 0.0027471075, -0.036080603, -0.019271314, 0.032980166, 0.025173232, -0.046400897, 0.04979016, -0.0093580065, 0.043050844, -0.02074519, 0.030827982, -0.015929198, 0.012303609, 0.055343937, -0.026190823, -0.038513474, 0.021199446, 0.048362102, -0.02330166, 0.010664039, 0.030840402, 0.03870281, 0.016624639, 0.035227887, -0.06570897, 0.048325293, -0.025731083, 0.016254846, -0.0070624463, -0.031457555, -0.03374086, 0.031142015, -0.016338427, 0.00025582296, 0.025484057, -0.022923473, 0.039777584, 0.005427404, 0.052361347, -0.029468564, -0.08371279, 0.028989801, -0.02504274, 0.016312031, 3.3959794e-05, -0.015914498, 0.036433198, -0.0561129, -0.028477484, 0.005069504, -0.0155432, -0.0025809726, -0.0023841695, -0.029830163, -0.0010795884, 0.032750476, -0.0185223, 0.07674045, 0.019909699, 0.017861893, 0.050502382, 0.04206665, 0.017863158, -0.05897528, -0.06665904, -0.012962753, 0.06972729, -0.019740513, -0.06570715, -0.01374915, -0.0292233, 0.015330747, 0.030702595, -0.028739918, 0.028426213, -0.05151073, -0.058126543, 0.07497968, 0.07269485, 0.014457369, -0.028161013, -0.05416258, 0.029739458, 0.02327955, 0.044233907, -0.008103014, -0.033656083, 0.00732859, 0.019729707, 0.030990226, -0.006111285, 0.004650637, -0.0014726473, 0.028605156, 0.046365414, -0.03457169, 0.04975488, -0.008171525, 0.0026270368, 0.028389854, -0.059576467, -0.018036118, 0.010612779, 0.01806217, -0.019811131, -0.0003131827, 0.045936346, -0.023280803, 0.022877006, -0.023834007, -0.039929077, 0.039978065, -0.012879101, 0.0022347895, 0.018689869, 0.04745835, -0.012736743, -0.031110104, -0.012376486, -0.022297418, 0.0014590451, -0.01610596, 0.0024984528, 0.042464178, -0.019537428, 0.018747179, 0.0075407946, 0.042204585, -0.009785078, -0.023948455, 0.050402146, -0.044905506, 0.027162343, -0.004750498, 0.06831235, -0.03741827, -0.036390435, 0.022801956, -0.068440124, -0.08576454, -0.014543996, -0.014129163, 0.020116275, 0.04097737, -0.019145582, -0.01855106, 0.03566347, -0.008941479, -0.0022598035, 0.026430694, 0.027104894, -0.0030862466, -0.0044929413, -0.0030496898, 0.03512526, -0.008752713, -0.0075830016, 0.043729268, 0.025790896, 0.021520127, 0.008684937, 0.031075902, -0.031266358, 0.020108268, 0.0728894, -0.049740173, -0.033539157, 0.027987288, 0.0011582641, -0.01099107, -0.04492551, -0.010239341, -0.019105751, -0.033681974, 0.023758022, 0.029565796, 0.0047397083, 0.0032712827, 0.030394308, -0.054151125, 0.019491717, -0.035155416, 0.048824985, -0.019419637, -0.025902718, -0.00010186198, -0.013417651, -0.009755727, -0.04957469, 0.02726429, 0.01134067, -0.046814855, -0.0017285096, 0.06119459, -0.013546262, 0.07888118, 0.029948452, 0.084186, -0.03969782, 0.024692068, -0.010328475, 0.025307806, -0.04901972, 0.018998183, 0.04696277, -0.023015894, 0.025542509, -0.037134014, -0.01269241, 0.050626412, 0.01044322, -0.035330243, -0.051813353, 0.033758156, 0.03847358, 0.0011401948, -0.013615794, -0.046460565, 0.06695718, 0.013239803, -0.033817146, -0.06415249, -0.038515154, 0.032234907, -0.025985628, -0.038390443, 0.023881678, -0.00043242285, -0.0041144015, -0.078889385, 0.036253195, -0.06974579, -0.076591864, 0.024851093, -0.060239993, -0.002899372, -0.0028114924, -0.021262467, -0.018646805, -0.060700182, 0.0028840844, 0.038736828, 0.037644677, -0.05975285, -0.0016845443, -0.0015249738, -0.004513621, 0.042606343, -0.039294165, -0.022491995, 0.05049917, 0.014855811, -0.016937643, 0.023167465, -0.040957116, 0.010292731, -0.010149309, 0.022759404, 0.046601728, -0.061111253, 0.049124077, 0.013328055, 0.028542923, 0.0014971525, -0.007743105, -0.0049420916, -0.008761308, -0.020035945, -0.024165653, -0.034423236, -0.0064492486, -0.025184814, -0.01123886, 0.020336468, -0.04979454, -0.0060643237, -0.008501247, 0.026647175, 0.059442647, -0.015349366, 0.010744806, 0.0027259178, 0.009989614, -0.0076727793, -0.053876895, -0.006796604, 0.009526878, 0.026250271, 0.011776491, -0.03478355, 0.04441542, 0.025652932, -0.034079168, -0.043492638, -0.0062171263, 0.011791729, -0.01678324, -0.00675023, 0.01394009, -0.0042406586, 0.029068379, 0.023865351, -0.04450863, 0.017188882, 0.024111392, -0.0030237795, -0.073906735, -0.029063536, -0.010261657, 0.043282956, 0.08107699, -0.020065984, 0.036973864, -0.056601964, 0.027097767, -0.035255674, -0.044360697, -0.07552738, -0.025948416, 0.038955726, 0.00542078, 0.034203533, 0.053497583, -0.056976028, 0.027811617, -0.02293921, 0.00046711115, 0.05375421, -0.007902799, 0.031018397, 0.033196677, 0.034210432, 0.021144204, 0.03779513, 0.04107912, -0.007493371, -0.023889959, -0.018836567, 0.06511861, 0.020822983, 0.024683336, -0.08382091, 0.00089589594, -0.057138935, 0.07816792, 0.021760825, -0.0020821271, -0.0037877224, 0.050174613, 0.024980608, -0.006337362, -0.036368575, -0.012474391, -0.052088294, -0.06521532, -0.017815495, -0.023751592, -0.047379106, 0.016456904, 0.010676189, 0.011731161, -0.06294971, -0.05713383, -0.000759056, -0.029144451, -0.095620096, 0.0444383, -0.0006651246, 0.012305273, 0.007563168, -0.02347789, 0.035826415, -0.0094463555, 0.007569468, -0.0032868346, 0.0055263895, 0.053713948, -0.027774433, 0.02192081, -0.065932535, 0.018661235, 0.046314444, -0.08591298 ] }, { "values": [ -0.028258238, -0.02585934, -0.005789513, -0.03501728, -0.0039979857, 0.04783444, 0.029102437, 0.009214869, 0.008900019, 0.025893869, 0.024374627, 0.036758937, 0.0183522, 0.000585921, -0.027739286, -0.0357162, 0.019772805, 0.007830183, -0.06376872, -0.040162664, 0.017180545, 0.032192223, -0.020591373, 0.0059782914, -0.01310939, -0.0025574623, 0.020784087, -0.018763758, -0.0056007104, -0.057036247, -0.009333169, 0.07221667, -0.0076960456, -0.041005876, -0.00871269, 0.056498222, -0.05230337, -0.035061255, 0.038354892, -0.041571695, -0.1163049, -0.027816817, 0.019032037, 0.01525828, -0.04770167, 0.041122135, 0.028617145, -0.007593185, 0.005122957, 0.036041304, 0.037613463, -0.042257525, -0.0009582785, 0.016201796, -0.024809705, -0.038525224, -0.071913436, -0.027375815, 0.058488615, 0.009537722, -0.027972749, 0.0052003874, 0.017527267, -0.04427052, 0.029596003, -0.0706478, -0.009023075, -0.024379367, -0.05136389, 0.020408599, 0.00030262535, 0.005439948, -0.09203521, -0.004741857, 0.012773198, -0.048066262, 0.014995109, -0.037934154, -0.035286628, 0.014248275, 0.039914347, 0.030782394, 0.062159125, 0.01894613, -0.023705818, 0.011014867, 0.02711117, -0.069417305, 0.009080014, 0.029943736, 0.086735345, -0.011974105, -0.011421269, 0.029889302, 0.018803246, -0.011297832, -0.07757966, -0.06502011, 0.049480006, 0.04237369, -0.0327553, -0.008469489, 0.016183123, 0.005940135, 0.03696196, -0.00072642264, -0.04687636, -0.02178689, -0.049458217, 0.092598, -0.015657838, -0.030780796, 0.012251237, -0.01816742, -0.031133957, -0.033555564, -0.047968786, -0.00803873, -0.050289366, 0.023567664, 0.022409545, -0.050517336, -0.062304236, 0.0278677, -0.011015567, 0.061508063, 0.01669894, -0.010536603, -0.055469148, -0.040717676, 0.059356023, -0.08937036, 0.029455056, -0.010790307, -0.0522527, -0.06919988, 0.058348317, -0.03536887, -0.0073506935, -0.01967422, 0.028879697, -0.009427826, -0.050494373, 0.008301741, -0.015406191, 0.0050390484, -0.026692463, 0.0018271845, -0.10401708, 0.05739898, -0.05868375, 0.0032590865, 0.003404693, 0.0023538473, -0.0041819178, 0.06593045, 0.042992793, -0.055512562, 0.0972055, -0.0151846055, 0.04614912, -0.008987762, 0.011702412, 0.040172305, -0.0074391053, -0.025032138, 0.0020292492, -0.050386976, -0.068133906, -0.0075079924, 0.040632296, -0.025088593, -0.033951446, -0.076273054, -0.004873022, 0.0036537477, -0.021403397, 0.0092982305, -0.040093057, -0.026744058, 0.05706898, 0.063863486, -0.008707262, 0.023630537, -0.005281178, -0.03949717, -0.044775333, 0.10061854, 0.0063968245, 0.049245022, 0.011292251, 0.032063335, 0.023206946, 0.06497263, -0.038104948, 0.0455155, 0.025502397, -0.003105389, 0.011556036, -0.033572305, 0.012301042, -0.0076329727, -0.0047526727, 0.05615806, -0.03605039, 0.0064727343, -0.01665219, -0.025223758, 0.024321405, -0.02160946, -0.0016409573, 0.010627257, -0.010105827, -0.034272153, 0.00848324, 0.016103879, 0.09670168, 0.0710182, 0.05316956, 0.028369099, -0.04838524, -0.024423255, 0.0023519888, -0.05649366, 0.017743574, 0.020875718, -0.011459317, -0.01987265, -0.034111716, 0.00021129589, 0.021428177, 0.02496864, -0.006266895, -0.015443131, 0.005970217, 0.031393413, -0.007702823, -0.004836323, 0.025257295, 0.014952277, -0.021687716, -0.02086827, 0.032983184, -0.012139828, -0.021642935, 0.07441246, 0.041605674, 0.08424309, 0.008187481, -0.014169938, -0.032348868, -0.029728403, -0.021529013, 0.027853724, -0.0049632094, -0.009882096, 0.053234577, -0.049786665, 0.0017418768, -0.014204465, 0.05573686, -0.014474614, -0.012790749, -0.029481392, 0.009948077, -0.09088618, -0.009809312, 0.004505416, 0.052897725, 0.009306626, 0.011468103, -0.0058752396, -0.061272483, -0.06832256, -0.0145783955, 0.041821156, -0.042859763, -0.013884555, -0.0032823794, -0.061356165, 0.029060433, -0.033894774, 0.0007331604, -0.02775482, -0.027956586, -0.007321409, 0.010499652, 0.030488968, -0.054570712, -0.05373491, 0.052415486, 0.050173886, -0.014053738, -0.016224802, 0.05520944, -0.0013187092, 0.034054868, -0.017772522, 0.016763797, 0.03853839, -0.0055012517, 0.056450747, -0.01118499, 0.03757999, 0.0056582047, 0.016803628, -0.074650474, 0.015751006, -0.013233119, 0.0065233856, -0.0017012383, 0.014741097, 0.002589076, -0.02650815, 0.01664873, 0.0196781, -0.09821001, 0.001799856, -0.045225024, -0.011711266, 0.0460014, 0.005938708, 0.008834406, -0.02795794, 0.10693623, 0.060602754, 0.0069274786, -0.039562505, 0.038262293, -0.020127013, 0.02036717, 0.033474866, 0.029333258, -0.008635812, 0.014359743, 0.015973512, -0.0027315386, 0.011589839, 0.09395529, 0.011421454, 0.036994435, -0.0013036524, 0.048882246, 0.018417737, -0.024269197, -0.058189567, 0.053136762, 0.02002497, 0.05358771, -0.04704682, -0.08226391, 0.05430258, 0.019455355, -0.00020215943, 0.023677474, 0.012564981, 0.014910439, 0.042037014, 0.011115952, -0.02473063, -0.02988027, 0.036718305, 0.020156609, -0.029975858, 0.015883971, 0.017164452, 0.015364953, 0.044258285, 0.0022958263, -0.015304347, 0.00938176, 0.030105833, 0.022211226, 0.0030183922, 0.037877735, -0.030483663, 0.019688306, -0.0135361655, 0.012882011, -0.051777907, -0.044998717, -0.040439576, -0.032716163, 0.005494516, -0.030595789, 0.0017190594, -0.03505305, 0.0150508415, 0.04679263, 0.034561187, -0.042422432, 0.062984966, -0.024589255, 0.025315529, -0.002530009, 0.022581292, -0.048160546, -0.014019465, 0.03958879, -0.025164206, -0.025022926, 0.018596385, 0.032378852, -0.030917473, -0.001602161, 0.026725225, 0.035151195, 0.0034075778, 0.054711405, -0.05251982, 0.051830452, 0.0068022152, 0.013526182, -0.015066418, -0.021355059, -0.016030973, 0.024693264, -0.040496387, -0.012553038, 0.007943748, -0.019885577, 0.050393578, 0.023691805, 0.029988054, -0.03268765, -0.07267625, -0.0063005025, -0.038485646, 0.025355708, 0.024000363, -0.006483279, 0.029544467, -0.041943487, -0.019939706, 0.0018238684, 0.012207682, 0.00063414813, -0.0064035757, -0.03906679, 0.014667115, 0.019434977, -0.0030924787, 0.03563066, 0.05133207, 0.020886892, 0.07423713, 0.04712884, 0.005101983, -0.03144867, -0.075931855, -0.03693051, 0.037377615, -0.03454803, -0.027888052, 0.0063020526, 0.0013175833, -0.0022232672, -0.010881074, -0.062117584, 0.016535122, -0.046813708, -0.052257363, 0.06280377, 0.05576321, -0.021817287, -0.0142927915, -0.06009103, 0.026752945, 0.040258653, 0.08171078, -0.02908041, -0.014128152, 0.031006075, 0.011243069, 0.0020752233, -0.02955811, 0.013822436, 0.021663707, 0.04577786, 0.029373497, -0.03958372, 0.018894428, 0.0019635663, 0.042200863, 0.04024137, -0.082372025, 0.0056710136, 0.031326327, 0.02863688, -0.0080646, 0.01152601, 0.03728455, -0.014446654, 0.036615297, -0.019120052, -0.035144262, 0.03011341, 0.0014341949, 0.011253818, 0.0022650978, 0.03331179, -0.01904383, -0.034787927, -0.042892974, 0.005448749, -0.0018652544, -0.028454311, -0.006251573, 0.05752249, -0.043802764, 0.039795235, 0.045425467, 0.056906648, -0.015512724, -0.028939385, 0.020118475, -0.022919498, 0.008665109, -0.014915624, 0.032037493, -0.008440174, -0.023414215, 0.042327154, -0.05185924, -0.05466504, -0.058194965, -0.031678487, 0.03383719, 0.031526096, -0.02349775, -0.0075560817, 0.043290347, -0.024280338, 0.0067851795, 0.03750373, 0.00651354, 0.011821822, -0.023310166, 0.0011067314, 0.021738337, -0.0051073595, -0.017782496, 0.01941405, 0.0001360265, 0.032219943, -0.015514657, 0.045219384, 0.0100194905, 0.010004623, 0.07260499, -0.01846246, -0.025730697, 0.04018832, -0.01725202, 0.0022403058, -0.021783967, -0.016385183, -0.032010578, 0.00094675913, 0.0130713405, 0.022234416, -0.006232181, 0.017774587, -0.0032359709, -0.023497768, -0.005324545, -0.04114173, 0.056465752, -0.00075011374, -0.03867757, 0.025183069, 0.004727656, -0.030706747, -0.033051785, 0.03373756, 0.008661595, -0.05391604, -0.0095265545, 0.071754195, -0.00011619255, 0.070678614, -0.010115387, 0.09787034, -0.019993043, 0.014606377, 0.03113961, -0.011055965, -0.04266782, 0.02624375, 0.04460013, -0.0019736441, -0.010425699, -0.0301207, -0.013080915, 0.04155174, -0.005187395, -0.01903343, -0.042348064, 0.06785587, 0.022027228, -0.033705067, -0.0071288925, 0.022647697, 0.056488905, 0.020935223, -0.04009021, -0.08089964, -0.01747313, 0.030194161, -0.056187622, -0.032033823, 0.03780364, 0.008632953, 0.010157465, -0.08916404, 0.015907707, -0.06733941, -0.06882237, 0.033962127, -0.04074731, 0.035789367, -0.0039174715, -0.021221109, -0.014914054, -0.073643185, 0.0020467734, 0.006812046, 0.02985968, -0.06766961, -0.015075151, -0.024315882, 0.00451657, 0.041171238, -0.022309158, -0.0030112804, 0.036230646, -0.026332611, -0.022273896, 0.018388582, -0.047466915, 0.020541018, -0.0065974714, -0.007820301, 0.03723256, -0.0397177, 0.086760566, 0.0069888355, 0.020091265, 0.0054238406, 0.02371591, 0.014997558, 0.060561523, -0.036649194, -0.032459497, -0.031913023, -0.0010854094, -0.017801233, 0.019288482, 0.024471845, -0.038742166, 0.00086162885, -0.0047612377, 0.041015968, 0.07232103, 0.011731196, -0.0020180612, -0.024988597, 0.009490499, 0.0012915095, -0.04727902, -0.0018416983, 0.027193269, 0.02677174, 0.031509485, -0.0019423834, 0.06138079, 0.014520942, -0.08258272, -0.033494692, -0.0053232354, 0.0068288273, -0.032054804, -0.019888911, 0.0060298005, 0.017760023, 0.024603063, 0.019980596, -0.034417856, 0.0119453445, 0.016107092, 0.035713922, -0.07986058, 0.017386526, -0.001994183, 0.02721705, 0.07350044, -0.03545186, 0.025240954, -0.05414532, 0.03867728, -0.045291774, -0.04535795, -0.05612835, -0.050927296, 0.034742713, -0.019024758, 0.056464992, 0.050454933, -0.0452618, 0.013932292, -0.036989905, -0.010010719, -0.00035649867, 0.0141741205, 0.038306806, 0.053775538, -0.008054961, 0.032495763, 0.007470468, 0.005170607, -0.005002807, -0.033039685, -0.029602317, 0.062603034, -0.0027295377, -0.010870012, -0.062454004, 0.019401973, -0.050520264, 0.07330116, -0.0015289148, 0.015787117, 0.025745438, 0.036128018, 0.06283887, -0.0370915, -0.015880939, -0.0033494944, -0.08121965, -0.043671288, -0.026202874, -0.011260825, -0.026742728, -0.023069588, 0.0073122866, 0.026212541, -0.02696445, -0.017311642, 0.004304451, -0.017824104, -0.08191928, 0.016911926, -0.0075952355, 0.0210965, 0.03195147, -0.0028310968, 0.027612712, -0.024601476, 0.0026821266, 0.023211705, 0.0025601622, 0.028753543, -0.048892, 0.019501211, -0.07521956, 0.0028167784, 0.030530326, -0.07612492 ] }, { "values": [ -0.03762691, -0.025697106, -0.01345103, -0.027920328, 0.02407905, 0.043573644, 0.03700995, 0.021658907, 0.007969143, 0.039734095, 0.025141427, 0.029219378, 0.0021372272, 0.013394142, -0.0045759417, -0.04054001, 0.021648068, 0.017283317, -0.037075, -0.050088096, 0.018257054, 0.026642716, 0.0017487792, -0.011654168, -0.06487686, 0.04292902, 0.014628669, -0.047496684, 0.04394949, -0.047411114, 0.0070623253, 0.07006003, -0.01614649, -0.04193013, 0.0620177, 0.019820968, -0.01934085, -0.006388823, 0.035204694, -0.04730779, -0.0999616, -0.025119005, -0.0025898442, 0.031858165, -0.031117946, 0.04252003, 0.033831038, -0.014330342, -0.056801207, 0.052310072, 0.023646861, -0.0006194239, -0.005403762, 0.020615397, -0.040292587, -0.034538504, -0.059144888, -0.04956275, 0.075807825, -0.013604195, -0.025983809, -0.023272485, 0.03674995, -0.042294346, 0.028610308, -0.057473805, -0.010175106, -0.010299447, -0.05349461, 0.030267358, 0.0029247417, 0.027559062, -0.07521164, -0.027699748, 0.0032159847, -0.014398324, 0.0026739652, 0.0019073731, -0.03664182, 0.008038217, -0.009634444, -0.020094177, 0.07750574, 0.047227755, -0.013235896, 0.015103709, 0.012700216, -0.05751971, 0.0076632155, 0.020321546, 0.06523406, -0.0168231, 0.0038274366, 0.03232055, 0.038074277, -0.0022545257, -0.07332112, -0.05621196, 0.03810473, 0.059244767, -0.03254621, -0.00014618583, -0.0026145054, 0.0067443466, 0.065252036, -0.0029616659, -0.017862443, -0.045290336, -0.055295605, 0.06600711, -0.0003014369, -0.048383594, -0.028355176, -0.0062814774, 0.00074448035, -0.060667515, -0.01929831, 0.02024276, -0.036138367, 0.0017663719, 0.058401987, -0.027164951, -0.041589383, 0.031413715, 0.00014109387, 0.03478333, 0.04447912, -0.012509408, -0.028274467, -0.06393293, 0.0391529, -0.088484295, 0.019339107, 0.023150664, -0.01707256, -0.048135422, 0.0041848407, 0.014093497, -0.005498638, -0.032701936, 0.05326088, -0.019182842, -0.02230133, -0.015438371, -0.015757266, -0.025618501, -0.011778509, -0.0025809435, -0.07048286, 0.052929707, -0.0931529, 0.00923386, 0.005443536, 0.013860745, -0.02268223, 0.015089501, 0.05819484, -0.025771115, 0.10626991, -0.02562832, 0.038626578, 0.0033341257, 0.022626223, 0.042709433, -0.01351802, -0.018974315, 0.007149233, -0.053351562, -0.049025167, -0.01983108, 0.028013658, -0.035119668, 0.017159535, -0.099748105, 0.0120029645, -0.0119959265, -0.006344566, 0.038746208, -0.03475613, -0.004678805, 0.03989725, 0.028891807, -0.018375505, -0.0040461253, -0.01801858, -0.023212919, -0.055301934, 0.12935299, 0.021755122, 0.046241526, 0.0069500622, 0.018538792, 0.019854521, 0.072868295, -0.02740582, 0.06779923, 0.043798015, 0.0060584308, 0.0385937, -0.045763485, 0.046620365, -0.041533396, 0.002077733, 0.018306945, -0.046744227, -0.006531949, -0.04447258, -0.06168476, 0.032948036, 0.030130884, 0.01328981, -0.012886135, -0.015785659, -0.05642847, 0.015797282, -0.004593794, 0.103833504, 0.06621983, 0.013899874, -0.009799587, -0.031924166, 0.022359556, 0.042102654, -0.05086016, -0.020930337, -0.036831316, -0.016382944, -0.023774192, -0.038379297, 0.026489757, 0.0009586205, 0.004270936, 0.0148594985, -0.0057450416, -0.024821509, 0.00061032875, -0.01116367, 0.004861048, 0.009173178, -0.012854593, -0.007904239, 0.00010721473, 0.0072184904, -0.026637165, -0.0068373354, 0.026477793, 0.04556694, 0.10882242, -0.0014331115, -0.025448274, -0.028546497, -0.022247804, -0.02532865, 0.014712679, -0.016210677, -0.017307622, 0.042031106, -0.061235793, 0.010064594, -0.015945612, 0.047860533, -0.004094958, 0.004963401, -0.041034043, -0.023046074, -0.09082135, 0.012282855, -0.033135857, 0.05543022, 0.023317628, 0.013145686, -0.028689649, -0.060219955, -0.07955071, 0.009483144, 0.04176553, -0.05744535, 0.0016688464, -0.024349857, -0.071621135, 0.038367905, -0.010430772, -0.03192232, -0.019821256, -0.0067129764, -0.028347371, -0.0120768305, 0.007780215, -0.037107017, -0.05622221, 0.050405778, 0.051959205, 0.024155863, 0.019026427, 0.054921754, 0.008141415, 0.0075921193, 0.0015281732, 0.03357167, 0.017519133, -0.00013752138, 0.06452168, 0.002450966, 0.016559623, 0.008311873, 0.041425556, -0.0669394, 0.0044914735, -0.018943384, 0.025622196, 0.03000444, 0.009613189, -0.0025161766, -0.0015884738, 0.010396708, 0.030968897, -0.079297274, -0.003669255, -0.049760733, -0.025017988, 0.049999375, 0.03859517, -0.044765376, -0.0515934, 0.07416635, 0.006785895, 0.005385007, -0.0021992764, 0.02347372, -0.024278045, 0.02866885, 0.005171949, 0.019919476, -0.046979494, -0.0035879363, 0.012501733, -0.018951235, 0.009270619, 0.06959338, 0.018641097, 0.046000727, 0.005811918, 0.049875505, 0.028675422, -0.03180874, -0.05829144, 0.013718423, 0.009184539, 0.03811923, -0.024316875, -0.061618432, 0.040553186, 0.003410687, 0.0047295606, 0.049522653, 0.02192181, 0.0379755, 0.034629703, 0.012441059, -0.025852626, -0.03493118, 0.020980526, 0.027886469, -0.032180514, 0.009209602, -0.02200926, 0.04310658, 0.02401598, -0.0038288943, -0.03767195, -0.0043657534, 0.043346982, -0.0018419219, -0.0037035448, 0.005477175, -0.059241287, -0.0031841793, -0.020457884, 0.016851118, -0.036430743, -0.0587846, -0.048692487, -0.024523038, 0.0060014892, -0.026156535, 0.020184616, -0.02900652, -0.020831132, 0.02133273, 0.015671747, -0.03621651, 0.05836239, -0.008701518, 0.017781058, -0.027819272, 0.0282145, -0.023132695, 0.0022613541, 0.043108977, -0.027539046, -0.042898316, 0.025300568, 0.03933282, -0.031946708, 0.019390343, 0.013628511, 0.039596282, 0.010026197, 0.035938576, -0.045209818, 0.0437371, -0.028463647, 0.034832213, -0.018598774, -0.022819541, -0.013324707, 0.026455518, -0.023172805, -0.027091013, 0.026445048, -0.015460875, 0.04128524, 0.021302404, 0.06579901, -0.023246756, -0.07058935, 0.022062214, -0.02176464, 0.03588068, 0.034106728, -0.015994905, 0.06260337, -0.052648406, -0.021295602, 0.0358678, -0.015082372, 0.0048155016, 0.01061989, -0.032953892, 0.02202349, 0.03322075, -0.011633684, 0.061393928, 0.034450445, -0.0010190298, 0.0578871, 0.03060091, 0.016733041, -0.030426174, -0.055725012, -0.009763988, 0.051346928, -0.01964956, -0.0653851, 0.008839193, 0.010448618, 0.031774778, 0.03768801, -0.0447438, 0.013899294, -0.053588174, -0.05543958, 0.07710242, 0.066488445, 0.00024952102, -0.021309106, -0.048067477, 0.019233575, 0.041407693, 0.063136004, -0.009410141, -0.027109526, -0.0010115801, 0.014036185, 0.03011691, 0.0069927727, 0.01596246, -0.0051839547, 0.03816799, 0.03932332, -0.023922104, 0.03145884, -0.014221668, 0.022369802, 0.03701799, -0.066265866, -0.011284838, 0.017300595, 0.0007892387, -0.0035379909, 0.0039444636, 0.056205276, -0.01408153, 0.017422576, -0.01903872, -0.060167793, 0.029955935, -0.043740325, -0.014653571, -0.009407438, 0.05997384, -0.010061613, -0.025361303, -0.022391368, 0.0028083944, 0.0053340746, -0.017224578, -0.0057720495, 0.03603152, -0.013069511, 0.011417394, -0.0056202165, 0.06500155, -0.025252968, -0.03440254, 0.04814557, -0.065999016, 0.030554611, -0.02051458, 0.05729518, -0.03371282, -0.026398607, 0.027532991, -0.07165291, -0.076807365, -0.016496053, -0.0069015007, 0.039162606, 0.03775649, -0.017222052, -0.014353397, 0.05603259, -0.02401152, -0.013352581, 0.04286477, 0.014656186, 0.003638791, 0.00072181906, -0.0039171153, 0.01729479, 0.008477996, -0.032371458, 0.054940913, 0.022135545, 0.012334582, -0.00029021053, 0.024437673, 0.00019656631, 0.01846545, 0.09468218, -0.022900641, -0.029333437, 0.031073352, -0.007218437, 0.007464702, -0.030294128, -0.0071947924, -0.02632307, -0.031576667, 0.011117659, 0.031645212, -0.0004086337, 0.00041908494, 0.015173699, -0.056098763, 0.004890771, -0.023356928, 0.032487966, -0.027668484, -0.03364711, -0.0004063084, -0.007850359, -0.038469292, -0.04330133, 0.020320589, 0.009906366, -0.068315536, 0.009868781, 0.065681204, 0.0006760309, 0.058981057, 0.025562027, 0.08292507, -0.0357548, 0.017034456, -0.013523393, 0.04258023, -0.068514004, 0.021618744, 0.0400208, -0.00877115, -0.016915333, -0.03925789, -0.0041372506, 0.048679247, 0.01366493, -0.022987785, -0.054283984, 0.037000135, 0.025308944, 0.005181984, -0.007900303, -0.006520864, 0.060103856, 0.018940542, -0.008702369, -0.053243957, -0.04998659, 0.056601446, -0.03665761, -0.04343401, 0.0396917, 0.019632103, -0.029818153, -0.064508945, 0.04237472, -0.07062809, -0.084720865, 0.036531642, -0.037220843, 0.013135482, 0.010283296, -0.008514375, -0.00077375694, -0.051141687, 0.009087639, 0.010781369, 0.043736257, -0.04620566, 0.001655204, -0.03721226, -0.00060361304, 0.051974848, -0.046938807, 0.018714987, 0.021519026, -0.008614857, -0.023790738, 0.033252254, -0.039995834, 0.03577548, -0.016610047, 0.009711489, 0.055641226, -0.050045427, 0.059562903, 0.0051128, 0.04554772, -0.023321643, -0.005442439, -0.001355181, 0.014005602, -0.014366612, -0.026217327, -0.052887347, -0.008773209, -0.050375737, 0.0029649027, 0.022689996, -0.027983904, -0.0037139037, -0.008636224, 0.028658394, 0.083909504, -0.014711868, 0.0050814957, -0.03201784, 0.023005106, 0.00855942, -0.06038943, 0.0012779675, 0.030187573, 0.00857982, 0.028623741, -0.021405451, 0.04836423, 0.009038844, -0.053347345, -0.050395824, 0.002750014, 0.008918338, -0.013701434, -0.027899513, 0.014268962, 0.027137775, 0.00920788, 0.01319966, -0.04780677, 0.00047262682, 0.027072953, 0.009564316, -0.07898468, -0.0031557141, 0.0013590197, 0.031918902, 0.09877353, -0.026024558, 0.03722636, -0.062603176, 0.03792099, -0.024887243, -0.046013582, -0.047819655, -0.02806246, 0.026843276, -0.008473036, 0.0327681, 0.042355265, -0.059269253, 0.016270708, -0.024980802, -0.0054343194, 0.028334681, 0.022094646, 0.013871532, 0.020141222, 0.016560534, 0.012766787, 0.011669596, 0.021491924, -0.013878261, -0.0039281533, -0.023712195, 0.06471726, 0.01173926, 0.020613125, -0.09206844, 0.025537096, -0.07032501, 0.06293498, 0.0041027986, 0.03001843, 0.027373014, 0.043203015, 0.019579308, -0.020862987, -0.035682876, -0.007128464, -0.05958545, -0.023734953, -0.017094662, -0.023635099, -0.033397507, 0.009919665, 0.014911065, 0.022836981, -0.057508957, -0.027483104, -0.0036244977, 0.0019948918, -0.09148073, 0.052385073, -0.0031037144, 0.012692064, 0.016078686, -0.033511523, 0.012579682, -0.013570597, -0.0015626749, 0.018241772, 0.0015337918, 0.03406819, -0.028291475, 0.038210735, -0.08947714, 0.0019675829, 0.012524702, -0.10116694 ] }, { "values": [ -0.035431303, -0.011663044, -0.015702931, -0.03490603, -0.00017472226, 0.06258896, 0.01707334, 0.051989038, 0.0027293519, 0.02000216, 0.038415007, 0.009747373, 0.010528316, 0.028687824, 0.0064674937, -0.036251277, 0.0026112508, 0.012499186, -0.043981202, -0.036531236, 0.028235538, 0.023883687, -0.03374472, -0.019402057, -0.045333892, 0.022546196, 0.009381131, -0.044039715, 0.0391661, -0.04254876, 0.022623193, 0.05969671, 0.0030980464, -0.031094048, 0.024634343, 0.044822574, -0.024339138, -0.012374971, 0.043522347, -0.061939277, -0.114134096, -0.04336562, 0.005404367, 0.049484152, -0.024149377, 0.036037453, 0.03299253, 0.0035161746, -0.046572942, 0.022374248, 0.047137115, 0.00635695, -0.01619624, 0.0172242, -0.049108498, -0.046734218, -0.066788666, -0.037681215, 0.06097894, 0.012295412, -0.023731293, -0.026545232, 0.019383894, -0.043460432, 0.047533482, -0.051652905, -0.015675522, -0.006973604, -0.03755581, 0.04747704, -0.023719981, 0.045362853, -0.08576988, -0.00536748, 0.014674154, -0.021240225, 0.014090709, -0.025935672, -0.04338283, 0.017783578, 0.0056585893, -0.014902844, 0.042021364, 0.056994505, -0.0034036653, 0.0025373483, 0.027551372, -0.02684173, -0.017481457, 0.029274208, 0.059792377, -0.012893904, 0.0038433983, 0.028049868, 0.05248912, 0.002893446, -0.05558172, -0.06041867, 0.05380696, 0.02767504, -0.07207399, 0.0010540028, 0.016041558, 0.017045205, 0.06982784, 0.03311904, -0.022223769, -0.027946671, -0.06072453, 0.03969892, -0.011885647, -0.045501534, -0.0012007285, 0.0057881135, -0.030041935, -0.06988851, -0.01635242, 0.008408199, -0.048414502, -0.021850517, 0.0167882, -0.011547912, -0.05274951, 0.047108285, 0.0066058603, 0.0477014, 0.039850563, 0.014847662, -0.036172118, -0.038075067, 0.026144106, -0.10285832, 0.057560965, 0.01931663, -0.03985944, -0.028611433, 0.06399256, 0.015805399, -0.009962513, -0.032678016, 0.03461177, -0.015829934, -0.029115576, 0.008253655, -0.00014471156, -0.008351628, -0.015519727, -0.009450626, -0.082253665, 0.066244304, -0.07322613, 0.011341428, 0.0006008373, 0.011129692, -0.035899132, 0.031297144, 0.038814094, -0.04371219, 0.08768874, -0.04653437, 0.030130634, 0.010236259, 0.035371166, 0.06389029, -0.008978145, 0.011171306, 0.016283609, -0.043519415, -0.058784734, -0.021881128, 0.015924973, -0.05307361, -0.025845576, -0.073412985, -0.02310668, -0.017693808, -0.01758087, 0.02327042, -0.03716669, -0.0035914117, 0.032100704, 0.060353022, -0.01037033, -0.016735274, -0.011957901, -0.0036530183, -0.03176002, 0.11982419, 0.01869609, 0.05836819, 0.012516843, 0.055343147, 0.017177507, 0.085498214, -0.031539526, 0.063021466, 0.05032484, -0.010630184, 0.0140328845, -0.03918881, 0.028746335, -0.02589395, 0.0015279, 0.020352421, -0.040202353, -0.012712502, -0.0031078872, -0.054954518, 0.03462723, 0.014224933, 0.018021682, -0.018034285, -0.0140926745, -0.028191091, 0.013038471, -0.012886133, 0.10863096, 0.07003601, 0.053538375, -0.0070813843, -0.035566702, 0.017957643, 0.04402946, -0.03203223, -0.010048461, -0.04799057, -0.01750837, -0.0036118513, -0.039353803, -0.0013325054, -0.0019627947, 0.002676062, -0.00047639434, 0.009395936, -0.0145413745, -0.00022555672, -0.014164358, 0.015481888, -0.008240382, 0.018772846, 0.021226931, 0.0053161285, 0.004641306, -0.03283399, -0.009813348, 0.04020944, 0.026752612, 0.08892286, 0.021954205, -0.06096362, -0.01095181, -0.03628478, -0.02674127, 0.00048571703, -0.008866162, -0.013028042, 0.046701863, -0.059913997, 0.008761799, -0.007464447, 0.04287088, -0.012097505, -0.012826992, -0.018793669, -0.008826726, -0.07612425, -0.0063871355, -0.027802452, 0.037396926, -0.0035670027, -0.015415356, -0.010206027, -0.06308479, -0.062871605, -0.0047463737, 0.03410375, -0.042161684, 0.0040794243, -0.042754926, -0.0613019, 0.04627616, -0.02399406, -0.01750136, -0.02722751, -0.01644894, -0.016670406, -0.025552982, 0.031503513, -0.039690856, -0.060134795, 0.049621157, 0.06647107, 0.017374972, -0.00031383504, 0.07374166, -0.0035703396, 0.01874215, 0.0038253358, -0.0041704336, 0.021634923, 0.0010451099, 0.060424164, -0.0060024937, 0.016450014, 0.015185089, 0.041676566, -0.0770472, 0.0066884104, -0.021630257, 0.011547953, 0.026333556, 0.018680844, -0.01328762, -0.019362582, 0.000539697, -0.0016467143, -0.09525053, -0.011072181, -0.042379044, -0.032906547, 0.024400253, 0.037839394, -0.047652975, -0.055910766, 0.062489457, 0.0066333185, 0.021089192, 0.00985828, 0.01962754, -0.023372265, 0.026120808, 0.00086122705, 0.03402869, -0.019614274, 0.01833314, 0.023494909, -0.02985877, 0.018979387, 0.07077075, -0.007719149, 0.07270067, -0.003493179, 0.060689826, 0.047718607, -0.016625345, -0.06032256, 0.043998826, -0.008747292, 0.030734036, -0.05205878, -0.05679595, 0.04108702, 0.0038997515, -0.004724609, 0.02937026, 0.006029631, 0.008612538, 0.023385081, -0.0009945281, -0.016632194, -0.02644246, 0.015257423, 0.03950097, -0.025287084, 0.018622927, 0.005589111, 0.030036839, 0.037338268, 0.009134834, -0.026474731, 0.012260611, 0.05311298, 0.012981208, -0.007853422, 0.016762367, -0.040550113, 0.0022629849, -0.025828015, 0.029748479, -0.044746313, -0.051846985, -0.048441797, -0.036659602, -0.0141910715, -0.039856076, 0.021377584, -0.029416846, -0.019244784, 0.01831207, 0.016649641, -0.039232977, 0.065492585, -0.0054920837, 0.035729837, -0.037237525, 0.05038842, -0.0048349593, 0.020345274, 0.043160178, -0.0098201, -0.05754123, 0.023792174, 0.035062432, -0.035201497, 0.011222382, 0.018120967, 0.034414075, 0.016871873, 0.03938989, -0.05635411, 0.048788745, -0.031171469, 0.029706083, -0.016980505, -0.027255826, -0.016760508, 0.02388015, -0.03357203, -0.024645215, 0.0061441865, -0.025046377, 0.04259273, 0.005758441, 0.05078782, -0.02369211, -0.06435831, 0.02179867, -0.024225026, 0.032595165, 0.027993524, -0.018390195, 0.048603907, -0.05131214, -0.012064538, 0.042839505, -0.024006136, -0.0021925175, 0.00077438296, -0.050583523, 0.036505133, 0.012812557, -0.028791176, 0.04418658, 0.027764712, 0.015401936, 0.03571248, 0.02223108, 0.01479261, -0.041458875, -0.069895394, -0.02905235, 0.044607468, -0.0140185105, -0.057021916, -0.0155498525, 0.019929525, 0.019835372, 0.027492676, -0.027543515, 0.034254935, -0.07731483, -0.056366477, 0.054119196, 0.06945373, -0.0049848384, -0.046458576, -0.050974566, 0.024687236, 0.029554917, 0.07725415, -0.008247992, -0.023158783, 0.00019789173, -0.0048219953, 0.02027915, -0.0070279874, 0.0071018524, 0.023384474, 0.020747803, 0.02485764, -0.025002131, 0.032004576, -0.02855454, 0.0139943445, 0.039171495, -0.053790204, 0.011477929, 0.053269964, 0.0086730635, 0.007301685, 0.032555196, 0.052615978, 0.002596796, 0.028379695, -0.01987195, -0.041818626, 0.016245054, -0.036066234, 0.006410821, 0.036380623, 0.054619834, -0.020628897, -0.031608086, -0.03258317, 0.006532684, 0.029593188, -0.027227767, -0.014564107, 0.034989327, -0.025758643, 0.04159779, -0.008345409, 0.038806323, -0.005065697, -0.009418877, 0.029221337, -0.068645395, 0.037413877, 0.008889198, 0.076637894, -0.002794064, -0.035761647, 0.014978936, -0.072186604, -0.0785473, -0.022240888, -0.0024516867, 0.036935337, 0.05983121, -0.010589052, -0.027333556, 0.038916007, -0.029136669, -0.0076218247, 0.038475156, 0.026096923, 0.0045622108, 0.0048273923, -0.007933082, 0.02843417, 0.006547061, 0.010386951, 0.042292763, 0.01227733, 0.021776835, 0.020348309, 0.01767744, -0.014232147, 0.024208657, 0.09536587, -0.033481333, -0.02926311, 0.01679185, -0.013961611, 0.020290667, -0.026226975, -0.015532891, -0.037571244, -0.025862968, -0.004586424, 0.03726533, -0.012680066, 0.0013222588, -0.008158003, -0.03414491, 0.005806094, -0.03347917, 0.01172333, -0.002388796, -0.026233124, -0.010856626, -0.0042980607, -0.02649944, -0.020268926, 0.020834412, 0.0049724556, -0.06440118, -0.003484182, 0.07467998, -0.009148034, 0.07204488, 0.039151154, 0.080104135, -0.03440491, 0.027238734, -0.004074853, 0.052564, -0.052183952, 0.023795169, 0.04044173, -0.014451075, 0.0035853467, -0.026648955, -0.004715115, 0.058753714, -0.007003472, -0.024967272, -0.056947056, 0.06666511, 0.023710141, 0.007868841, 0.01026765, -0.002329907, 0.07884323, 0.009136288, -0.013514035, -0.062872976, -0.043656874, 0.04919359, -0.04897774, -0.04193467, 0.028222002, -0.0035300525, 0.006916927, -0.053858418, 0.015404174, -0.07014254, -0.070045136, 0.033535335, -0.022052504, -0.009914786, -0.013279893, -0.028492227, -0.006182709, -0.051819634, 0.0044100024, 0.007651206, 0.014892358, -0.05180838, -0.0038790412, -0.02963443, -0.006512007, 0.04826597, -0.03998287, 0.018594325, 0.041742902, -0.011605067, -0.017171493, -0.0020495548, -0.047553226, 0.0127488915, -0.016248595, 0.0241914, 0.046570007, -0.057539493, 0.055693444, 0.0037208218, 0.04456054, -0.009117207, 0.00535026, 0.0004473669, 0.038678437, -0.010836369, -0.011311082, -0.058652926, -0.0020944166, -0.030605935, 0.006826545, 0.008103198, -0.03834025, -0.011281885, -0.017032761, 0.02338372, 0.06305437, -0.03234073, 0.016729172, -0.012325645, -0.0049374513, -0.015441309, -0.04721532, 0.012590565, 0.009167773, -0.0042757383, 0.0018712075, -0.0029216036, 0.04144608, 0.011639655, -0.040648926, -0.051369168, 0.015498049, 0.0110799, -0.028629817, -0.017563395, -0.0029901962, 0.025489518, 0.022171302, 0.018834881, -0.03306725, 0.02393791, 0.03485016, -0.0066672564, -0.088505685, 0.0113905035, 0.019351082, 0.052699815, 0.119368955, -0.01640291, 0.013434711, -0.040252578, 0.06309737, -0.03162353, -0.058647253, -0.04275617, -0.045917172, 0.031244874, -0.02223306, 0.05750435, 0.033878833, -0.041214105, 0.026398314, -0.0062204865, 0.016193483, 0.06282597, 0.022964852, 0.011628851, 0.034850616, 0.03532133, -0.0062281312, 0.02421104, -0.001718053, -0.015885256, -0.03039062, -0.03646748, 0.06630438, 0.029926613, -0.0041580824, -0.07866842, 0.031355698, -0.06365502, 0.05907971, 0.011686241, 0.03097277, 0.0041769785, 0.058809064, 0.02269033, -0.0027743678, -0.0035781236, -0.008862608, -0.062304158, -0.027187249, -0.021076975, -0.0058903764, -0.062465634, 0.0016438384, 0.006270624, 0.010216106, -0.048814356, -0.042900626, -0.014274727, -0.03238996, -0.077813566, 0.05280524, 0.004571021, 0.02986148, 0.016140986, -0.02383013, 0.057172142, -0.031328496, 0.0071078525, -0.0034800738, 0.008450444, 0.031632673, -0.021481866, 0.03591286, -0.08815571, -0.0076187234, 0.020233491, -0.087227374 ] }, { "values": [ 0.009632202, -0.04008543, -0.028776629, -0.030772375, 0.024323603, 0.03919398, 0.017684022, 0.05920412, -0.012131994, 0.004197458, 0.013992883, 0.027119318, -0.0007843137, -0.0012332594, -0.044777498, -0.010346343, 0.050209597, -0.014604764, -0.042167045, -0.011700446, 0.009343661, 0.031004807, -0.036920376, -0.009289824, -0.004455916, 0.030330915, 0.006966536, -0.047458254, 0.027701126, -0.06729834, -0.0018524235, 0.024307821, -0.03907655, -0.0010378321, 0.015897412, 0.03180606, -0.020744935, -0.014021546, 0.05196415, -0.055917244, -0.062342502, -0.029301533, -0.003150351, 0.02811379, -0.038865358, 0.034588985, 0.020940827, 0.025149575, -0.03209867, 0.036125112, 0.023908747, -0.014137815, -0.011923047, 0.0046489015, 0.0010793717, 0.00030184034, -0.04115809, -0.049733993, 0.07271294, 0.003596771, 0.014809895, 0.014824101, 0.04658684, -0.011142636, 0.0042468193, -0.047502637, -0.019509314, -0.067576654, -0.03175865, 0.015863476, -0.014956216, 0.013874379, -0.044884723, 0.010935423, 0.023145447, -0.027669579, 0.002518348, -0.0056326548, -0.04639807, 0.037079185, -0.013051656, -0.014035697, 0.0671581, 0.06215904, 0.036098268, 0.03976286, 0.0044036005, -0.046359584, -0.017677102, -0.0032828029, 0.04450283, -0.028121497, -0.02156107, 6.0382612e-05, 0.057847407, -0.04960266, -0.053030856, -0.056243, 0.023095397, 0.070241265, -0.026126806, -0.038936444, -0.013090967, -0.022042101, 0.094265886, 0.05147547, -0.01931105, -0.062738165, 0.008177618, 0.051093288, -0.06087365, -0.061633177, -0.032217763, 0.030816292, 0.009689763, -0.07213281, -0.003801832, 0.024712177, -0.06568425, -0.013186513, 0.05526572, 0.005131037, 0.012549887, 0.057109002, -0.013479917, 0.021960208, 0.054241113, -0.040844914, -0.026746597, -0.06422387, 0.034715425, -0.083693266, 0.013230844, 0.029413514, -0.05404775, -0.031090405, 0.028040593, 0.041928653, -0.021490324, -0.018694654, 0.012160874, -0.02257942, -0.002264132, 0.016970191, 0.0010374507, -0.031843014, 0.02768274, -0.0124684395, -0.029322183, 0.012473073, -0.07865085, -0.0036859917, 0.018716106, -0.031907853, -0.011994338, 0.0007282216, 0.05106741, -0.06436777, 0.035330337, -0.024933549, 0.031591218, 0.00012175221, 0.015385368, 0.031473678, -0.033440318, 0.012164794, 0.053405125, -0.04043926, -0.034481484, -0.0424257, -0.012573161, -0.042539347, -0.0066128783, -0.094342396, -0.018556068, 0.0029230497, -0.09129061, 0.0070455954, -0.044441596, -0.009553459, 0.029521542, 0.053352922, -0.016036678, 0.01731248, -0.04426677, -0.012517435, 0.000853286, 0.098724335, -0.005572957, 0.041710246, -0.010150931, 0.03661407, 0.036518376, 0.033042952, -0.013287808, 0.03681777, 0.0440995, 0.0049088937, -0.02165495, -0.060693696, 0.009996402, 0.021062315, -0.05061571, 0.021786736, -0.032878913, -0.05797458, -0.015635395, -0.04564193, 0.042508416, 0.0163242, -0.013819047, 0.0039471397, -0.006745427, -0.050157975, 0.015086182, -0.02398357, 0.0956824, 0.04568385, 0.07794657, -0.043250732, -0.036843214, -0.0036499293, 0.057124473, -0.057394195, 0.03766073, -0.0101304315, -0.02141714, 0.021935847, -0.025340144, -0.024051776, -0.031597726, -0.02704034, -0.006303789, -0.003762975, 0.021567794, 0.010664182, 0.009105169, -0.0010535583, -0.02475601, 0.019622087, -0.014477062, 0.014078031, 0.0032607266, -0.01015263, -0.03709534, 0.03421735, 0.06947882, 0.051130183, -0.013432329, -0.030033542, -0.01564456, -0.033039, -0.050260346, -0.024942087, -0.053249497, -0.007761353, 0.03153884, -0.044995297, 0.022745648, 0.034083784, 0.0047705714, 0.023224248, -0.031397942, -0.045842364, -0.035638694, -0.08918128, -0.036699954, -0.05216331, 0.055599052, -0.03128946, -0.00879481, 0.0039779996, -0.08379475, -0.06235564, 0.012603236, 0.035907432, -0.02807985, -0.000117995834, -0.07055823, -0.07393444, 0.059088442, 0.004141946, 0.0011650017, -0.04861659, -0.018187143, 0.0124749495, -0.0070308065, 0.037617147, -0.0243522, -0.071065225, 0.0469091, 0.043203183, 0.02318467, 0.04212737, 0.066496275, 0.002423393, -0.01778889, 0.017871067, 0.0139123015, 0.03194806, -0.03415027, 0.054971673, 0.0058234967, 0.037837844, -0.002600841, 0.04816053, -0.065041825, -0.028513022, -0.03031911, 0.004255159, -0.0079565365, 0.03667898, -0.01977432, -0.024580298, 0.02281135, 0.00790614, -0.06932448, -0.0157599, -0.025210088, 0.005933388, 0.009165358, 0.054472603, -0.042721402, -0.025554735, 0.05469737, 0.031213071, -0.017408127, -0.0034847402, 0.054964185, -0.026502093, 0.00981627, 0.019371359, 0.008963444, 0.0051617594, -0.00021538218, 0.0364318, -0.011614431, 0.04479578, 0.031305205, 0.012231235, 0.0456905, 0.016414164, 0.020986263, 0.02148994, -0.01078319, -0.06940092, 0.03478945, 0.032375295, 0.0142762605, -0.05418195, -0.041479778, 0.053971156, -0.02902125, 0.023412522, 0.013853642, 0.054097284, 0.010746868, 0.05398997, -0.031299047, -0.0039084847, -0.03839228, -0.012926001, 0.022198606, -0.0029662126, -0.025598977, 0.0059343483, 0.034854084, 0.061026663, -0.008652803, -0.013948343, 0.031154811, 0.057228077, 0.015098854, 0.022565505, 0.025063388, -0.084832706, -0.017584076, -0.023923399, -0.0056985565, -0.05570134, -0.03809881, -0.032033905, -0.00807221, -0.017352117, -0.029171146, 0.019667294, -0.03299818, -0.0062746136, 0.037117228, 0.04322829, -0.04349311, 0.028292513, -0.010663529, 0.021832105, -0.019048054, 0.043374494, 0.035720546, -0.0058288462, 0.001409459, -0.012522808, -0.03603299, 0.005655868, 0.023002801, -0.07059518, 0.013121702, 0.024092479, 0.06069333, 0.035517678, 0.038193908, -0.0399075, 0.065796085, -0.03360743, 0.047226273, 0.008979846, 0.0021994098, 0.013894816, 0.02474861, -0.06681327, 0.0015178152, 0.06166065, 0.0058441567, 0.02524865, -0.030975187, 0.045260083, -0.012780548, -0.08157903, 0.03828609, 0.00029562792, 0.005823117, 0.0046964306, -0.02836926, 0.012963579, -0.028526936, 0.014360165, 0.01116986, -0.03145837, 0.028049465, -0.0039053808, 0.0014979764, 0.007816356, -0.009749044, -0.019784905, 0.0350956, 0.0462732, -0.011796446, 0.049268164, 0.005126923, 0.0007891397, -0.041687757, -0.0582662, -0.022319425, 0.08146323, 0.019969061, -0.07374552, -0.024846993, -0.016124418, 0.0258708, 0.009774008, -0.00576826, 0.0056497697, -0.070799366, -0.022711791, 0.059100147, 0.050692823, -0.004005147, -0.015667666, -0.02649849, 0.021372257, 0.007574614, 0.054840554, 0.017947398, -0.0253133, 0.009189681, 0.00066773314, 0.013378807, 0.003339801, 0.007295299, 0.018430522, 0.039607003, 0.019996865, -0.0070299646, 0.037996184, -0.013694822, 0.025561748, 0.055946834, -0.036701497, -0.0071197017, 0.03669773, 0.0013668154, 0.0346248, 0.015381262, 0.077690326, 0.0028496517, 0.038333375, -0.028676353, -0.02175248, 0.04816685, -0.032606307, -0.027622221, -0.030819006, 0.060172323, -0.034767397, -0.02243803, -0.038170766, -0.050375603, 0.028537467, -0.06609548, 0.0069624824, 0.017447136, -0.028198158, 0.0293353, 0.008459003, 0.059214387, -0.025598144, -0.037448782, 0.08924428, -0.06742418, 0.016515357, -0.014582522, 0.036632173, -0.014158571, 0.0060703736, 0.03705411, -0.09326456, -0.096787825, 0.016863149, -0.028763168, 0.029608097, 0.07282132, -0.039183557, -0.018923473, 0.02679906, 0.015250951, -0.0034507506, 0.03850293, 0.034054086, 0.019752055, -0.004852741, -0.042702504, -0.023277665, -0.0033683663, 0.002824234, 0.049639728, 0.021301229, 0.03796039, 0.01257945, 0.039010562, -0.035083525, -0.00037034054, 0.10040986, -0.044172946, 0.00662205, 0.021301635, -0.0146200005, 0.030005757, -0.06580215, -0.026303796, -0.005138199, -0.003923735, -0.00084409287, 0.07088656, -0.008611384, 0.0048664734, 0.030982433, 0.0026858933, 0.041438892, -0.053077035, 0.021584077, -0.0058209053, -0.029262615, -0.009690224, 0.001130771, -0.029994145, -0.052748483, 0.036710102, 0.0040284228, -0.0358695, -0.0062272325, 0.07084369, 0.039252758, 0.06363098, 0.043315955, 0.060873277, -0.024608236, -0.017144999, -0.01080756, 0.032564476, -0.07513609, 0.010762097, 0.03868693, -0.0476016, -0.024362981, -0.025957564, -0.0068608997, 0.04918405, -0.032031942, -0.069731265, -0.049679335, 0.030622268, 0.033367716, -0.035142384, -0.0060145496, -0.013654759, 0.054705646, 0.0056613437, 0.021929225, -0.032875095, -0.04194689, -9.417146e-05, -0.009796967, -0.058094013, 0.027471416, -0.031108858, 0.0019393181, -0.057490803, 0.047184017, -0.035674963, -0.06218072, 0.003697736, -0.036237445, -0.033656146, 0.011656236, 0.023344113, -0.026385896, -0.065737024, 0.046746902, -0.0267164, 0.025165189, -0.017340463, -0.0077825123, -0.025564168, 0.017608538, 0.024761917, -0.025907438, 0.01834838, 0.023536043, 0.003821588, -0.0043597682, 0.014438925, 0.0011465448, 0.04122995, -0.012862637, 0.019229429, 0.021976061, -0.05727288, 0.047543503, -0.00660528, 0.02183697, -0.0055213203, 0.01744419, -0.0028851745, 0.048664402, -0.045124438, -0.0435708, -0.05404157, -0.012504682, -0.016831135, 0.023101773, 0.0064314585, 0.011902957, -0.017443009, 0.0014388007, 0.039049547, 0.039249327, -0.032321423, 0.036192883, -0.009692662, 0.008221584, -0.028813673, -0.041085776, 0.026033191, 0.04441037, 0.027330313, 0.015296176, -0.03217875, 0.048829004, 0.0034244764, -0.008693695, -0.045382492, 0.033194456, 0.006568271, -0.02581492, -0.043551676, -0.03387586, -0.004825996, 0.02495111, 0.014159985, -0.05696259, 0.03511718, 0.007533569, -0.042583592, -0.061652943, -0.0059907073, 0.005839192, 0.024509521, 0.078512736, -0.021644142, 0.051124845, -0.08276606, 0.05327012, -0.060823422, -0.013120373, -0.022328798, -0.0166485, 0.03289226, 0.034589738, 0.029619956, 0.031255126, -0.05138318, 0.0068958895, -0.07282289, 0.027382301, 0.07213098, 0.04925811, 0.030308953, 0.013984958, 0.013056555, 0.007540165, 0.03600212, -0.0061205416, -0.03860211, -0.0021502175, -0.01024476, 0.07963892, 0.018546637, 0.013536475, -0.08651823, 0.01171954, -0.034057442, 0.085616946, 0.024902117, 0.0015374917, -0.004071144, 0.080476046, 0.017614381, -0.023022171, -0.013895542, -0.020287208, -0.025451452, -0.039634466, -0.021403663, -0.018661672, -0.052351967, 0.010505552, 0.0059758932, 0.0032401807, -0.044255685, -0.032208715, -0.021116143, -0.002544808, -0.033614088, 0.0026833117, -0.0038595975, -0.01890234, 0.029378839, 0.006174152, 0.014591968, -0.04146032, 0.0036388172, 0.031315744, 0.020393502, -0.008599269, 0.023041874, 0.013241889, -0.05701612, 0.008865161, 0.02473817, -0.09000574 ] } ] }
docs
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/docs/docs.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package docs implements a corpus of text documents identified by document IDs. // It allows retrieving the documents by ID as well as retrieving documents that are // new since a previous scan. package docs import ( "iter" "strings" "golang.org/x/oscar/internal/storage" "golang.org/x/oscar/internal/storage/timed" "rsc.io/ordered" ) const docsKind = "docs.Doc" // This package stores the following key schemas in the database: // // ["docs.Doc", URL] => [DBTime, Title, Text] // ["docs.DocByTime", DBTime, URL] => [] // // DocByTime is an index of Docs by DBTime, which is the time when the // record was added to the database. Code that processes new docs can // record which DBTime it has most recently processed and then scan forward in // the index to learn about new docs. // A Corpus is the collection of documents stored in a database. type Corpus struct { db storage.DB } // New returns a new Corpus representing the documents stored in db. func New(db storage.DB) *Corpus { return &Corpus{db} } // A Doc is a single document in the Corpus. type Doc struct { DBTime timed.DBTime // DBTime when Doc was written ID string // document identifier (such as a URL) Title string // title of document Text string // text of document } // decodeDoc decodes the document in the timed key-value pair. // It calls c.db.Panic if the key-value pair is malformed. func (c *Corpus) decodeDoc(t *timed.Entry) *Doc { d := new(Doc) d.DBTime = t.ModTime if err := ordered.Decode(t.Key, &d.ID); err != nil { // unreachable unless db corruption c.db.Panic("docs decode", "key", storage.Fmt(t.Key), "err", err) } if err := ordered.Decode(t.Val, &d.Title, &d.Text); err != nil { // unreachable unless db corruption c.db.Panic("docs decode", "key", storage.Fmt(t.Key), "val", storage.Fmt(t.Val), "err", err) } return d } // Get returns the document with the given id. // It returns nil, false if no document is found. // It returns d, true otherwise. func (c *Corpus) Get(id string) (doc *Doc, ok bool) { t, ok := timed.Get(c.db, docsKind, ordered.Encode(id)) if !ok { return nil, false } return c.decodeDoc(t), true } // Add adds a document with the given id, title, and text. // If the document already exists in the corpus with the same title and text, // Add is an no-op. // Otherwise, if the document already exists in the corpus, it is replaced. func (c *Corpus) Add(id, title, text string) { old, ok := c.Get(id) if ok && old.Title == title && old.Text == text { return } b := c.db.Batch() timed.Set(c.db, b, docsKind, ordered.Encode(id), ordered.Encode(title, text)) b.Apply() } // Docs returns an iterator over all documents in the corpus // with IDs starting with a given prefix. // The documents are ordered by ID. func (c *Corpus) Docs(prefix string) iter.Seq[*Doc] { return func(yield func(*Doc) bool) { for t := range timed.Scan(c.db, docsKind, ordered.Encode(prefix), ordered.Encode(prefix+"\xff")) { if !yield(c.decodeDoc(t)) { return } } } } // DocsAfter returns an iterator over all documents with DBTime // greater than dbtime and with IDs starting with the prefix. // The documents are ordered by DBTime. func (c *Corpus) DocsAfter(dbtime timed.DBTime, prefix string) iter.Seq[*Doc] { filter := func(key []byte) bool { if prefix == "" { return true } var id string if err := ordered.Decode(key, &id); err != nil { // unreachable unless db corruption c.db.Panic("docs scan decode", "key", storage.Fmt(key), "err", err) } return strings.HasPrefix(id, prefix) } return func(yield func(*Doc) bool) { for t := range timed.ScanAfter(c.db, docsKind, dbtime, filter) { if !yield(c.decodeDoc(t)) { return } } } } // DocWatcher returns a new [storage.Watcher] with the given name. // It picks up where any previous Watcher of the same name left off. func (c *Corpus) DocWatcher(name string) *timed.Watcher[*Doc] { return timed.NewWatcher(c.db, name, docsKind, c.decodeDoc) }
docs
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/oscar/internal/docs/docs_test.go
// Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package docs import ( "slices" "strings" "testing" "golang.org/x/oscar/internal/storage" ) func TestCorpus(t *testing.T) { db := storage.MemDB() corpus := New(db) corpus.Add("id1", "Title1", "text1") corpus.Add("id3", "Title3", "text3") corpus.Add("id2", "Title2", "text2") extra := make(map[string]string) var ids []string do := func(d *Doc) { t.Helper() if !strings.HasPrefix(d.ID, "id") { t.Fatalf("invalid prefix %q", d.ID) } n := d.ID[len("id"):] title := "Title" + n + extra[d.ID] text := "text" + n + extra[d.ID] if d.Title != title || d.Text != text { t.Fatalf("Doc id=%s has Title=%q, Text=%q, want %q, %q", d.ID, d.Title, d.Text, title, text) } ids = append(ids, d.ID) } // Basic iteration. for d := range corpus.Docs("") { do(d) } want := []string{"id1", "id2", "id3"} if !slices.Equal(ids, want) { t.Errorf("Docs() = %v, want %v", ids, want) } // Break during iteration. ids = nil for d := range corpus.Docs("") { do(d) if d.ID == "id2" { break } } want = []string{"id1", "id2"} if !slices.Equal(ids, want) { t.Errorf("Docs with break = %v, want %v", ids, want) } // DocsAfter iteration uses insert order. var last *Doc ids = nil for d := range corpus.DocsAfter(0, "") { do(d) last = d } want = []string{"id1", "id3", "id2"} if !slices.Equal(ids, want) { t.Errorf("Docs() = %v, want %v", ids, want) } // DocsAfter incremental iteration. corpus.Add("id4", "Title4", "text4") extra["id2"] = "X" corpus.Add("id2", "Title2X", "text2X") // edits existing text corpus.Add("id3", "Title3", "text3") // no-op, ignored ids = nil for d := range corpus.DocsAfter(last.DBTime, "") { do(d) } want = []string{"id4", "id2"} if !slices.Equal(ids, want) { t.Errorf("DocsAfter(last.DBTime=%d) = %v, want %v", last.DBTime, ids, want) } // DocsAfter with break. ids = nil for d := range corpus.DocsAfter(last.DBTime, "") { do(d) break } want = []string{"id4"} if !slices.Equal(ids, want) { t.Errorf("DocsAfter(last.DBTime=%d) with break = %v, want %v", last.DBTime, ids, want) } // Docs with prefix. corpus.Add("id11", "Title11", "text11") ids = nil for d := range corpus.Docs("id1") { do(d) } want = []string{"id1", "id11"} if !slices.Equal(ids, want) { t.Errorf("Docs(id1) = %v, want %v", ids, want) } // DocsAfter with prefix. ids = nil for d := range corpus.DocsAfter(0, "id1") { do(d) } want = []string{"id1", "id11"} if !slices.Equal(ids, want) { t.Errorf("DocsAfter(0, id1) = %v, want %v", ids, want) } }
winstrap
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/winstrap/Makefile
upload: winstrap.go build.go upload.go go run winstrap.go build.go upload.go -upload
winstrap
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/winstrap/winstrap.go
// Copyright 2012 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package main import ( "bufio" "flag" "fmt" "io" "io/ioutil" "log" "net/http" "os" "os/exec" "path/filepath" "runtime" "strings" ) var files = map[string]string{ // The "tdm64" one (despite the name) doesn't run on 64-bit Windows. // But the tdm-gcc one does, and installs both 32- and 64-bit versions. // No clue what tdm64 means. // "tdm64-gcc-4.8.1-3.exe": "http://downloads.sourceforge.net/project/tdm-gcc/TDM-GCC%20Installer/tdm64-gcc-4.8.1-3.exe?r=http%3A%2F%2Ftdm-gcc.tdragon.net%2Fdownload&ts=1407729829&use_mirror=ufpr", "tdm-gcc-4.9.2.exe": "https://sourceforge.net/projects/tdm-gcc/files/TDM-GCC%20Installer/Previous/1.1309.0/tdm-gcc-4.9.2.exe?r=http%3A%2F%2Ftdm-gcc.tdragon.net%2Fdownload&ts=1420336642&use_mirror=hivelocity", "Wix35.msi": "http://storage.googleapis.com/winstrap/Wix35.msi", "Install Git.exe": "https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20141217/Git-1.9.5-preview20141217.exe", "Start Buildlet.exe": "https://storage.googleapis.com/go-builder-data/buildlet-stage0.windows-amd64", } var altMain func() var ( flagYes = flag.Bool("yes", false, "Run without prompt") homeDir = flag.String("home", defaultHome(), "custom home directory") ) func waitForGo() { if !awaitString("go") { log.Printf("Canceled.") awaitEnter() os.Exit(0) } } func main() { if runtime.GOOS != "windows" { altMain() return } flag.Parse() if !*flagYes { log.Printf("This program will first download TDM-GCC, Wix, and Git, then let you optinally install Go.\nType 'go<enter>' to proceed.") waitForGo() } // TODO(bradfitz): also download Go 1.4 into place at C:\Go1.4 runBatFile := filepath.Join(home(), "Desktop", "run-builder.bat") if _, err := os.Stat(runBatFile); os.IsNotExist(err) { ioutil.WriteFile(runBatFile, []byte(strings.Replace(runBuilderBatContents, "\n", "\r\n", -1)), 0755) } log.Printf("Downloading files.") var errs []chan error for file, url := range files { errc := make(chan error) errs = append(errs, errc) go func(file, url string) { errc <- download(file, url) }(file, url) } var anyErr bool for _, errc := range errs { if err := <-errc; err != nil { log.Printf("Download error: %v", err) anyErr = true } } if anyErr { log.Printf("Download errors. Proceed? Type 'go'") waitForGo() } checkGit() checkGcc() log.Printf("This program will now check out go. Type 'go' to proceed.") waitForGo() checkoutGo() log.Printf("This program will now compile Go for 386 and amd64. Type 'go' to proceed.") waitForGo() runGoMakeBat("386") runGoMakeBat("amd64") log.Printf(`Installed go to %v, please add %v\bin to your PATH`, goroot(), goroot()) fmt.Println("[ Press enter to exit ]") awaitEnter() } const gccPath = `C:\TDM-GCC-64\bin` func runGoMakeBat(arch string) { if arch != "386" && arch != "amd64" { panic("invalid arch " + arch) } testFile := filepath.Join(goroot(), "pkg", "tool", "windows_"+arch, "api.exe") if fileExists(testFile) { log.Printf("Skipping make.bat for windows_%s; already built.", arch) return } log.Printf("Running make.bat for arch %s ...", arch) cmd := exec.Command(filepath.Join(goroot(), "src", "make.bat")) cmd.Dir = filepath.Join(goroot(), "src") cmd.Stdout = os.Stdout cmd.Stderr = os.Stderr cmd.Env = append([]string{ "GOARCH=" + arch, "PATH=" + gccPath + ";" + os.Getenv("PATH"), }, removeEnvs(os.Environ(), "PATH")...) err := cmd.Run() if err != nil { log.Fatalf("make.bat for arch %s: %v", arch, err) } log.Printf("ran make.bat for arch %s", arch) } func removeEnvs(envs []string, removeKeys ...string) []string { var ret []string for _, env := range envs { include := true for _, remove := range removeKeys { if strings.HasPrefix(env, remove+"=") { include = false break } } if include { ret = append(ret, env) } } return ret } func checkGit() { for { if _, ok := gitBin(); ok { break } log.Print("Can't find git binary. Install Git and then press enter... (use middle option: make git available to cmd.exe)") awaitEnter() } } const gitDefaultPath = `C:\Program Files (x86)\Git\cmd\git.exe` func gitBin() (string, bool) { b, err := exec.LookPath("git") if err != nil { b = gitDefaultPath } return b, fileExists(b) } func checkGcc() { for !fileExists(gccPath) { log.Printf("%s doesn't exist. Install gcc and then press enter...", gccPath) awaitEnter() } } func checkoutGo() { if fileExists(goroot()) { log.Printf("GOROOT %s already exists; skipping git checkout", goroot()) return } log.Printf("Checking out Go source using git") git, _ := gitBin() cmd := exec.Command(git, "clone", "https://go.googlesource.com/go", "goroot") cmd.Dir = home() cmd.Stdout = os.Stdout cmd.Stderr = os.Stderr if err := cmd.Run(); err != nil { log.Fatalf("git clone failed. Is Git installed? Re-run later. Error: %v", err) } log.Printf("Checked out Go.") } func awaitEnter() { var buf [1]byte os.Stdin.Read(buf[:]) } func awaitString(want string) bool { br := bufio.NewReader(os.Stdin) ln, _, _ := br.ReadLine() return strings.TrimSpace(string(ln)) == want } func fileExists(path string) bool { _, err := os.Stat(path) return err == nil } func check(err error) { if err != nil { log.Fatal(err) } } func defaultHome() string { return os.Getenv("HOMEDRIVE") + os.Getenv("HOMEPATH") } func home() string { if *homeDir != "" { return *homeDir } return defaultHome() } func goroot() string { return filepath.Join(home(), "goroot") } func gopath() string { return filepath.Join(home(), "gopath") } func download(file, url string) error { dst := filepath.Join(home(), "Desktop", file) if _, err := os.Stat(dst); err == nil { log.Printf("%s already on desktop; skipping", file) return nil } res, err := http.Get(url) if err != nil { return fmt.Errorf("Error fetching %v: %v", url, err) } tmp := dst + ".tmp" os.Remove(tmp) os.Remove(dst) f, err := os.Create(tmp) if err != nil { return err } n, err := io.Copy(f, res.Body) res.Body.Close() if err != nil { return fmt.Errorf("Error reading %v: %v", url, err) } f.Close() err = os.Rename(tmp, dst) if err != nil { return err } log.Printf("Downladed %s (%d bytes) to desktop", file, n) return nil } const runBuilderBatContents = `echo Running the Go builder: mkdir \Users\wingopher\gopath RMDIR /S /Q c:\gobuilder SET GOROOT_BOOTSTRAP=c:\Go1.4 SET GOPATH=\Users\wingopher\gopath SET PATH=\Users\wingopher\goroot\bin;%PATH% go get -u -v golang.org/x/tools/dashboard/builder %GOPATH%\bin\builder -v -parallel windows-amd64 windows-386 `
winstrap
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/winstrap/upload.go
// Copyright 2012 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // +build !windows package main import ( "bytes" "fmt" "io" "io/ioutil" "log" "net/http" "cloud.google.com/go/storage" "golang.org/x/oauth2" "golang.org/x/oauth2/google" ) const ( uploadURL = "https://winstrap.googlecode.com/files" ) func Upload(filename string, content io.Reader) error { jsonKey, err := ioutil.ReadFile(*serviceAcctJSON) if err != nil { return err } conf, err := google.JWTConfigFromJSON(jsonKey, storage.ScopeReadWrite) if err != nil { log.Printf("Failed to get JWT config. Get a Service Account JSON token from https://console.developers.google.com/project/999119582588/apiui/credential") return err } httpClient := conf.Client(oauth2.NoContext) const maxSlurp = 1 << 20 var buf bytes.Buffer n, err := io.CopyN(&buf, content, maxSlurp) if err != nil && err != io.EOF { log.Fatalf("Error reading from stdin: %v, %v", n, err) } contentType := http.DetectContentType(buf.Bytes()) req, err := http.NewRequest("PUT", "https://storage.googleapis.com/winstrap/"+filename, io.MultiReader(&buf, content)) if err != nil { return err } req.Header.Set("x-goog-api-version", "2") req.Header.Set("x-goog-acl", "public-read") req.Header.Set("Content-Type", contentType) res, err := httpClient.Do(req) if err != nil { return err } if res.StatusCode != 200 { return fmt.Errorf("got HTTP status %s", res.Status) } return nil }
winstrap
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/winstrap/build.go
// Copyright 2012 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // +build !windows package main import ( "crypto/sha1" "flag" "fmt" "io" "log" "os" "os/exec" "path/filepath" "time" ) func init() { altMain = notWindowsMain } var ( buildWindows = flag.Bool("newwin", false, "force a make.bash of windows") buildArch = flag.String("arch", "amd64", "architecture to build") // Linux/OS X specific (use of HOME) because that's all that // Brad and Andrew use (and other gophers), and we're the only // ones who will be uploading this serviceAcctJSON = flag.String("service_account_json", filepath.Join(os.Getenv("HOME"), "keys/golang-org.service.json"), "Path to a Service Account JSON file from the golang-org project's Credentials screen") ) func notWindowsMain() { build := flag.Bool("build", false, "build winstrap.exe") upload := flag.Bool("upload", false, "upload winstrap.exe to Google Cloud Storage (implies -build)") flag.Parse() if *upload { *build = true } if !*build { log.Printf("Not running on Windows and no flags specified.") flag.PrintDefaults() return } digest := buildWinstrap() if *upload { f, err := os.Open("winstrap.exe") check(err) defer f.Close() date := time.Now().Format("2006-01-02") fileName := fmt.Sprintf("winstrap-%s-%s.exe", date, digest[:7]) check(Upload(fileName, f)) log.Printf("uploaded %s", fileName) log.Printf("Paste this into Windows:\n bitsadmin /transfer mydownloadjob /download /priority normal https://storage.googleapis.com/winstrap/%s c:\\users\\wingopher\\Desktop\\winstrap.exe\n", fileName) } } // buildWinstrap builds a new winstrap.exe and returns its sha1 func buildWinstrap() string { log.Printf("building new winstrap.exe") goRoot := os.Getenv("GOROOT") if goRoot == "" { log.Fatal("no GOROOT set") } pkgWin := filepath.Join(goRoot, "pkg", "windows_"+*buildArch) if _, err := os.Stat(pkgWin); err != nil { if os.IsNotExist(err) { log.Printf("no %s directory, need to build windows cross-compiler", pkgWin) *buildWindows = true } else { log.Fatal(err) } } winEnv := append([]string{"CGO_ENABLED=0", "GOOS=windows", "GOARCH=" + *buildArch}, os.Environ()...) if *buildWindows { cmd := exec.Command(filepath.Join(goRoot, "src", "make.bash")) cmd.Stdout = os.Stdout cmd.Stderr = os.Stderr cmd.Env = winEnv cmd.Dir = filepath.Join(goRoot, "src") check(cmd.Run()) } cmd := exec.Command("go", "build", "-o", "winstrap.exe") cmd.Env = winEnv out, err := cmd.CombinedOutput() if err != nil { log.Fatalf("Error building winstrap.exe %v: %s", err, out) } f, err := os.Open("winstrap.exe") check(err) defer f.Close() s1 := sha1.New() _, err = io.Copy(s1, f) check(err) digest := fmt.Sprintf("%x", s1.Sum(nil)) log.Printf("built new winstrap.exe; %s", digest) return digest }
winstrap
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/winstrap/README
This tool bootstraps a fresh Windows VM into being a Go buildbot. We cross-compile this into a Windows exe from Mac or Linux or whatever and then on Windows do something like this: http://golang.org/s/windowsbuilderhowto The latest windows executable is: https://storage.googleapis.com/winstrap/winstrap-2015-02-11-046f2a8.exe
winstrap
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/winstrap/LICENSE
Copyright (c) 2012 The Go Authors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
groupcache
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/groupcache/.travis.yml
language: go go_import_path: github.com/golang/groupcache os: linux dist: trusty sudo: false script: - go test ./... go: - 1.9.x - 1.10.x - 1.11.x - master cache: directories: - $GOPATH/pkg