From 056be03158051e1cd05db94f599dade30fdaf7f3 Mon Sep 17 00:00:00 2001 From: Peter Etelej Date: Sat, 3 Mar 2018 08:03:54 +0300 Subject: [PATCH 01/14] Add tests for cmd package Adds testing for cmd package. Adds a setup and teardown main test with a cmd test db as well as tests for account, add and update. Closes #19 --- cmd/account.go | 12 +++--- cmd/account_test.go | 49 ++++++++++++++++++++++++ cmd/add_test.go | 73 ++++++++++++++++++++++++++++++++++++ cmd/cmd_test.go | 28 ++++++++++++++ cmd/update_test.go | 91 +++++++++++++++++++++++++++++++++++++++++++++ database/sqlite.go | 8 ++-- main.go | 2 +- 7 files changed, 253 insertions(+), 10 deletions(-) create mode 100644 cmd/account_test.go create mode 100644 cmd/add_test.go create mode 100644 cmd/cmd_test.go create mode 100644 cmd/update_test.go diff --git a/cmd/account.go b/cmd/account.go index 08a9aea4..5f096955 100644 --- a/cmd/account.go +++ b/cmd/account.go @@ -2,6 +2,8 @@ package cmd import ( "fmt" + "io" + "os" "syscall" "github.com/spf13/cobra" @@ -45,7 +47,7 @@ var ( Args: cobra.NoArgs, Run: func(cmd *cobra.Command, args []string) { keyword, _ := cmd.Flags().GetString("search") - err := printAccounts(keyword) + err := printAccounts(keyword, os.Stdout) if err != nil { cError.Println(err) return @@ -103,7 +105,7 @@ func init() { func addAccount(username, password string) error { if username == "" { - return fmt.Errorf("Username must not empty") + return fmt.Errorf("Username must not be empty") } if len(password) < 8 { @@ -118,15 +120,15 @@ func addAccount(username, password string) error { return nil } -func printAccounts(keyword string) error { +func printAccounts(keyword string, wr io.Writer) error { accounts, err := DB.GetAccounts(keyword, false) if err != nil { return err } for _, account := range accounts { - cIndex.Print("- ") - fmt.Println(account.Username) + cIndex.Fprint(wr, "- ") + fmt.Fprintln(wr, account.Username) } return nil diff --git a/cmd/account_test.go b/cmd/account_test.go new file mode 100644 index 00000000..5fc5827d --- /dev/null +++ b/cmd/account_test.go @@ -0,0 +1,49 @@ +package cmd + +import ( + "strings" + "testing" +) + +func TestAddAccount(t *testing.T) { + tests := []struct { + username string + password string + want string + }{ + {"", "", "Username must not be empty"}, + {"abc", "abc", "Password must be at least"}, + {"abc", "fooBar123", ""}, + } + for _, tt := range tests { + err := addAccount(tt.username, tt.password) + if err != nil { + if tt.want == "" { + t.Errorf("got unexpected error: %v", err) + } + if !strings.Contains(err.Error(), tt.want) { + t.Errorf("expected error containing '%s', got error '%v'", err, tt.want) + } + continue + } + if tt.want != "" { + t.Errorf("expected error '%s', got no error", tt.want) + } + } +} + +func TestPrintAccounts(t *testing.T) { + if err := addAccount("foo", "fooBar123"); err != nil { + t.Errorf("failed to add test account: %v", err) + return + } + var b strings.Builder + err := printAccounts("", &b) + if err != nil { + t.Errorf("got unexpected error: %v", err) + } + got := b.String() + if !strings.Contains(got, "foo") { + t.Errorf("expected string containing 'foo', got '%s'", got) + } +} diff --git a/cmd/add_test.go b/cmd/add_test.go new file mode 100644 index 00000000..84444f7e --- /dev/null +++ b/cmd/add_test.go @@ -0,0 +1,73 @@ +package cmd + +import ( + "strings" + "testing" + + "github.com/RadhiFadlillah/shiori/model" +) + +func TestAddBookMark(t *testing.T) { + tests := []struct { + bookmark model.Bookmark + offline bool + want string + }{ + { + model.Bookmark{}, + true, "URL must not be empty", + }, + { + model.Bookmark{ + URL: "https://github.com/RadhiFadlillah/shiori", + }, + true, "Title must not be empty", + }, + {model.Bookmark{URL: "foo", Title: "Foo"}, true, ""}, + { + model.Bookmark{ + URL: "https://github.com/RadhiFadlillah/shiori", + Title: "Shiori", + }, + true, "", + }, + { + model.Bookmark{ + URL: "https://github.com/RadhiFadlillah/shiori/issues", + }, + false, "", + }, + } + for _, tt := range tests { + bk, err := addBookmark(tt.bookmark, tt.offline) + if err != nil { + if tt.want == "" { + t.Errorf("got unexpected error: '%v'", err) + continue + } + if !strings.Contains(err.Error(), tt.want) { + t.Errorf("expected error '%s', got '%v'", tt.want, err) + } + continue + } + if tt.bookmark.URL == "" { + t.Errorf("expected error '%s', got '%v'", tt.want, err) + continue + } + if tt.offline && tt.bookmark.Title == "" { + t.Error("expected error 'Title must not be empty', got no error") + continue + } + + if tt.want != "" { + t.Errorf("expected error '%s', got no error", tt.want) + continue + } + if tt.offline && bk.Title != tt.bookmark.Title { + t.Errorf("expected title '%s', got '%s'", tt.bookmark.Title, bk.Title) + } + if !tt.offline && bk.Title == "" { + t.Error("expected title, got empty string ''") + } + } +} diff --git a/cmd/cmd_test.go b/cmd/cmd_test.go new file mode 100644 index 00000000..b9926bae --- /dev/null +++ b/cmd/cmd_test.go @@ -0,0 +1,28 @@ +package cmd + +import ( + "fmt" + "os" + "testing" + + db "github.com/RadhiFadlillah/shiori/database" + _ "github.com/mattn/go-sqlite3" +) + +func TestMain(m *testing.M) { + testDBFile := "shiori_test.db" + sqliteDB, err := db.OpenSQLiteDatabase(testDBFile) + if err != nil { + fmt.Printf("failed to create tests DB: %v", err) + os.Exit(1) + } + DB = sqliteDB + + code := m.Run() + + if err := os.Remove(testDBFile); err != nil { + fmt.Printf("failed to delete tests DB: %v", err) + } + os.Exit(code) + +} diff --git a/cmd/update_test.go b/cmd/update_test.go new file mode 100644 index 00000000..3ca6a264 --- /dev/null +++ b/cmd/update_test.go @@ -0,0 +1,91 @@ +package cmd + +import ( + "fmt" + "strings" + "testing" + + "github.com/RadhiFadlillah/shiori/model" +) + +func TestUpdateBookMark(t *testing.T) { + testbks := []model.Bookmark{ + { + URL: "https://github.com/RadhiFadlillah/shiori/releases", + Title: "Releases", + }, + { + URL: "https://github.com/RadhiFadlillah/shiori/projects", + Title: "Projects", + }, + } + for i, tb := range testbks { + bk, err := addBookmark(tb, true) + if err != nil { + t.Fatalf("failed to create testing bookmarks: %v", err) + } + testbks[i].ID = bk.ID + } + + tests := []struct { + indices []string + url string + title string + excerpt string + tags []string + offline bool + want string + }{ + { + indices: []string{"9000"}, + want: "No matching index found", + }, + { + indices: []string{"-1"}, + want: "Index is not valid", + }, + { + indices: []string{"3", "-1"}, + want: "Index is not valid", + }, + { + indices: []string{fmt.Sprintf("%d", testbks[0].ID)}, + url: testbks[0].URL, + title: testbks[0].Title + " updated", + offline: true, + }, + { + indices: []string{fmt.Sprintf("%d", testbks[0].ID)}, + offline: false, + }, + { + indices: []string{fmt.Sprintf("%d", testbks[1].ID)}, + offline: true, + }, + } + for _, tt := range tests { + bks, err := updateBookmarks(tt.indices, tt.url, tt.title, tt.excerpt, tt.tags, tt.offline) + if err != nil { + if tt.want == "" { + t.Errorf("got unexpected error: '%v'", err) + continue + } + if !strings.Contains(err.Error(), tt.want) { + t.Errorf("expected error '%s', got '%v'", tt.want, err) + } + continue + } + if tt.want != "" { + t.Errorf("expected error '%s', got no errors", tt.want) + continue + } + if len(bks) == 0 { + t.Error("expected at least 1 bookmark, got 0") + continue + } + bk := bks[0] + if tt.title == "" && bk.Title == tt.title { + t.Errorf("expected title as '%s', got '%s'", tt.title, bk.Title) + } + } +} diff --git a/database/sqlite.go b/database/sqlite.go index 21baeda8..b831bd60 100644 --- a/database/sqlite.go +++ b/database/sqlite.go @@ -18,10 +18,10 @@ type SQLiteDatabase struct { } // OpenSQLiteDatabase creates and open connection to new SQLite3 database. -func OpenSQLiteDatabase() (*SQLiteDatabase, error) { +func OpenSQLiteDatabase(dbFile string) (*SQLiteDatabase, error) { // Open database and start transaction var err error - db := sqlx.MustConnect("sqlite3", "shiori.db") + db := sqlx.MustConnect("sqlite3", dbFile) tx := db.MustBegin() // Make sure to rollback if panic ever happened @@ -81,11 +81,11 @@ func OpenSQLiteDatabase() (*SQLiteDatabase, error) { func (db *SQLiteDatabase) CreateBookmark(bookmark model.Bookmark) (bookmarkID int64, err error) { // Check URL and title if bookmark.URL == "" { - return -1, fmt.Errorf("URL must not empty") + return -1, fmt.Errorf("URL must not be empty") } if bookmark.Title == "" { - return -1, fmt.Errorf("Title must not empty") + return -1, fmt.Errorf("Title must not be empty") } if bookmark.Modified == "" { diff --git a/main.go b/main.go index c44a6aad..0e7e8644 100644 --- a/main.go +++ b/main.go @@ -8,7 +8,7 @@ import ( ) func main() { - sqliteDB, err := db.OpenSQLiteDatabase() + sqliteDB, err := db.OpenSQLiteDatabase("shiori.db") checkError(err) cmd.DB = sqliteDB From 5f790c705c7efd00d226f3023fa08b86d44c2da4 Mon Sep 17 00:00:00 2001 From: Radhi Fadlillah Date: Tue, 6 Mar 2018 15:33:29 +0700 Subject: [PATCH 02/14] Replace strings.Builder for backward Go compability --- cmd/account_test.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cmd/account_test.go b/cmd/account_test.go index 5fc5827d..151b11f2 100644 --- a/cmd/account_test.go +++ b/cmd/account_test.go @@ -1,6 +1,7 @@ package cmd import ( + "bytes" "strings" "testing" ) @@ -37,8 +38,8 @@ func TestPrintAccounts(t *testing.T) { t.Errorf("failed to add test account: %v", err) return } - var b strings.Builder - err := printAccounts("", &b) + b := bytes.NewBufferString("") + err := printAccounts("", b) if err != nil { t.Errorf("got unexpected error: %v", err) } From 5bea3de59b89b0981be812580ab545cd77653c4a Mon Sep 17 00:00:00 2001 From: Radhi Fadlillah Date: Tue, 6 Mar 2018 16:05:08 +0700 Subject: [PATCH 03/14] Fix: error scan on Go 1.8 --- database/sqlite.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/sqlite.go b/database/sqlite.go index 0fdb056f..459c6217 100644 --- a/database/sqlite.go +++ b/database/sqlite.go @@ -466,7 +466,7 @@ func (db *SQLiteDatabase) UpdateBookmarks(bookmarks []model.Bookmark) (result [] stmtUpdateBookmarkContent.MustExec( book.Title, book.Content, - book.HTML, + string(book.HTML), book.ID) newTags := []model.Tag{} From 8b31568eaf3f4956778adcb72cc6fa44704e83c7 Mon Sep 17 00:00:00 2001 From: Radhi Fadlillah Date: Tue, 6 Mar 2018 16:30:47 +0700 Subject: [PATCH 04/14] Revert unneeded change --- database/sqlite.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/sqlite.go b/database/sqlite.go index 459c6217..0fdb056f 100644 --- a/database/sqlite.go +++ b/database/sqlite.go @@ -466,7 +466,7 @@ func (db *SQLiteDatabase) UpdateBookmarks(bookmarks []model.Bookmark) (result [] stmtUpdateBookmarkContent.MustExec( book.Title, book.Content, - string(book.HTML), + book.HTML, book.ID) newTags := []model.Tag{} From b16c5cc363e5f06abaedfbf996fffcebddbe2788 Mon Sep 17 00:00:00 2001 From: Radhi Fadlillah Date: Tue, 6 Mar 2018 16:48:06 +0700 Subject: [PATCH 05/14] Convert template.HTML to string --- cmd/add.go | 3 +-- cmd/update.go | 3 +-- model/model.go | 26 ++++++++++++-------------- 3 files changed, 14 insertions(+), 18 deletions(-) diff --git a/cmd/add.go b/cmd/add.go index 0497b17e..9e004fdd 100644 --- a/cmd/add.go +++ b/cmd/add.go @@ -1,7 +1,6 @@ package cmd import ( - "html/template" nurl "net/url" "strings" "time" @@ -81,7 +80,7 @@ func addBookmark(base model.Bookmark, offline bool) (book model.Bookmark, err er book.MinReadTime = article.Meta.MinReadTime book.MaxReadTime = article.Meta.MaxReadTime book.Content = article.Content - book.HTML = template.HTML(article.RawContent) + book.HTML = article.RawContent if book.Title == "" { book.Title = article.Meta.Title diff --git a/cmd/update.go b/cmd/update.go index 75baba74..9d47bbb9 100644 --- a/cmd/update.go +++ b/cmd/update.go @@ -2,7 +2,6 @@ package cmd import ( "fmt" - "html/template" "strconv" "strings" "sync" @@ -121,7 +120,7 @@ func updateBookmarks(indices []string, url, title, excerpt string, tags []string book.MinReadTime = article.Meta.MinReadTime book.MaxReadTime = article.Meta.MaxReadTime book.Content = article.Content - book.HTML = template.HTML(article.RawContent) + book.HTML = article.RawContent mutex.Lock() bookmarks[pos] = book diff --git a/model/model.go b/model/model.go index 4a7954a1..f6d2a8eb 100644 --- a/model/model.go +++ b/model/model.go @@ -1,7 +1,5 @@ package model -import "html/template" - // Tag is tag for the bookmark type Tag struct { ID int64 `db:"id" json:"id"` @@ -11,18 +9,18 @@ type Tag struct { // Bookmark is record of a specified URL type Bookmark struct { - ID int64 `db:"id" json:"id"` - URL string `db:"url" json:"url"` - Title string `db:"title" json:"title"` - ImageURL string `db:"image_url" json:"imageURL"` - Excerpt string `db:"excerpt" json:"excerpt"` - Author string `db:"author" json:"author"` - MinReadTime int `db:"min_read_time" json:"minReadTime"` - MaxReadTime int `db:"max_read_time" json:"maxReadTime"` - Modified string `db:"modified" json:"modified"` - Content string `db:"content" json:"-"` - HTML template.HTML `db:"html" json:"-"` - Tags []Tag `json:"tags"` + ID int64 `db:"id" json:"id"` + URL string `db:"url" json:"url"` + Title string `db:"title" json:"title"` + ImageURL string `db:"image_url" json:"imageURL"` + Excerpt string `db:"excerpt" json:"excerpt"` + Author string `db:"author" json:"author"` + MinReadTime int `db:"min_read_time" json:"minReadTime"` + MaxReadTime int `db:"max_read_time" json:"maxReadTime"` + Modified string `db:"modified" json:"modified"` + Content string `db:"content" json:"-"` + HTML string `db:"html" json:"-"` + Tags []Tag `json:"tags"` } // Account is account for accessing bookmarks from web interface From 9d3c8eedf9379edd3ab2bce974e912f4b579ae97 Mon Sep 17 00:00:00 2001 From: Radhi Fadlillah Date: Tue, 6 Mar 2018 20:00:46 +0700 Subject: [PATCH 06/14] Fix: unable to use empty string as excerpt --- cmd/update.go | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/cmd/update.go b/cmd/update.go index 9d47bbb9..d43f4341 100644 --- a/cmd/update.go +++ b/cmd/update.go @@ -32,7 +32,7 @@ var ( skipConfirmation, _ := cmd.Flags().GetBool("yes") // Check if --url flag is used - if url != "" { + if cmd.Flags().Changed("url") { if len(args) != 1 { cError.Println("Update only accepts one index while using --url flag") return @@ -45,6 +45,11 @@ var ( } } + // Check if --excerpt flag is used + if !cmd.Flags().Changed("excerpt") { + excerpt = "|-|-|" + } + // If no arguments, confirm to user if len(args) == 0 && !skipConfirmation { confirmUpdate := "" @@ -153,7 +158,7 @@ func updateBookmarks(indices []string, url, title, excerpt string, tags []string bookmarks[i].Title = title } - if excerpt != "" { + if excerpt != "|-|-|" { bookmarks[i].Excerpt = excerpt } From b859963895ff7c0b0ee810ae9c29a700bcb265e5 Mon Sep 17 00:00:00 2001 From: Wayne Ashley Berry Date: Tue, 6 Mar 2018 16:25:29 +0200 Subject: [PATCH 07/14] Update README.md Adds a link to the latest release. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2c01adbe..64e0cbdc 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Shiori is a simple bookmarks manager written in Go language. Intended as a simpl ## Installation -You can download the latest version of `shiori` from the release page, then put it in your `PATH`. If you want to build from source, make sure `go` is installed, then run : +You can download the latest version of `shiori` from [the release page](https://github.com/RadhiFadlillah/shiori/releases/latest), then put it in your `PATH`. If you want to build from source, make sure `go` is installed, then run : ``` go get github.com/RadhiFadlillah/shiori From 12c118f4bc101efc5171317e0273ad05457386e7 Mon Sep 17 00:00:00 2001 From: Peter Etelej Date: Tue, 6 Mar 2018 19:10:49 +0300 Subject: [PATCH 08/14] Set server timeouts Set server timeouts to avoid leaked descriptors on slow or disappearing clients or slow http attacks. Fixes #51 --- cmd/serve.go | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/cmd/serve.go b/cmd/serve.go index b7791708..04891a59 100644 --- a/cmd/serve.go +++ b/cmd/serve.go @@ -74,7 +74,13 @@ var ( port, _ := cmd.Flags().GetInt("port") url := fmt.Sprintf(":%d", port) logrus.Infoln("Serve shiori in", url) - logrus.Fatalln(http.ListenAndServe(url, router)) + svr := &http.Server{ + Addr: url, + Handler: router, + ReadTimeout: 10 * time.Second, + WriteTimeout: 20 * time.Second, + } + logrus.Fatalln(svr.ListenAndServe()) }, } ) From df63d31e9adb55c6c0913c8da868445428e88db3 Mon Sep 17 00:00:00 2001 From: Radhi Fadlillah Date: Wed, 7 Mar 2018 07:34:55 +0700 Subject: [PATCH 09/14] Fing long text not wrapped --- assets/assets.go | 4 ++-- view/css/stylesheet.css | 2 +- view/less/stylesheet.less | 7 +++++++ 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/assets/assets.go b/assets/assets.go index aaedafb6..7364bfba 100755 --- a/assets/assets.go +++ b/assets/assets.go @@ -1,4 +1,4 @@ -// generaTed by fileb0x at "2018-03-01 21:32:59.431741068 +0700 WIB" from config file "filebox.json" +// generaTed by fileb0x at "2018-03-07 07:33:00.175264747 +0700 WIB" from config file "filebox.json" package assets @@ -41,7 +41,7 @@ var FileCSSFontawesomeCSS = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4 var FileCSSSourceSansProCSS = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x95\x41\x6f\x9b\x30\x14\xc7\xef\x7c\x8a\x27\xf5\x40\x12\xc5\x21\x5d\x27\x6b\xcb\x0e\xdb\x3a\xf5\x50\xa9\xd3\xaa\xf1\x09\x5c\x78\x30\x4b\xc6\x46\xcf\x26\x19\x9a\xf6\xdd\x27\x08\x74\x6e\xd4\x1e\x42\xa9\x8f\xf6\xb3\xdf\xff\x17\x87\x9f\x5e\xb2\x02\x6b\x1a\xca\x90\x59\xa1\x2d\xab\xc9\xb0\xab\xed\x16\x18\x28\xe1\xa4\x86\x55\x12\x45\x5f\x0a\xa3\x1d\x2b\x44\x86\xf0\x27\x02\x00\x18\xd6\x95\x54\xed\x0e\xe2\xb4\xbf\x0e\xa9\xd0\x16\xee\xc9\xc4\x9f\xfe\x9f\xb1\xae\x55\xb8\x03\x6d\xa8\x12\xca\xdb\x3f\xa0\x2c\x7f\xb9\x1d\x5c\x6d\xb7\xc7\x5d\x4b\xd9\x0e\x1a\x52\x8b\x78\xb3\x49\x0e\xf8\xd0\x9d\xb2\xc9\x29\xd8\xfe\xf2\x92\xf5\x58\x1d\xe2\x06\x8d\x8b\x97\xc7\xeb\xc9\x0a\x6e\x6f\x3e\xc2\x37\x53\xd5\xc2\xc1\x77\x93\xa3\xed\xc8\x1f\x3b\x2b\x93\x09\xb5\x38\x25\x85\xbb\x8e\x22\x5e\xae\x9f\xd6\xbb\xf2\x3d\x19\xf6\x58\x3d\x9f\xeb\xf3\x85\xc4\x42\xfe\x8e\x97\x50\x74\x3f\xdd\x2d\x62\xac\x1e\x30\xcf\x31\x67\xa6\x46\xed\xda\x1a\xbb\xc6\x3d\x36\x67\xb7\x37\x1f\x46\xda\x33\xa3\x0e\xa6\x28\xde\x79\x29\xc3\xba\xef\x9c\x36\x35\x52\xff\x16\xa4\xe1\x9a\xcc\xc1\x22\xd9\x57\xe4\x9c\xc4\x0c\x29\xf3\xf4\x77\xce\x6f\xef\xa8\x41\xef\x89\x52\x51\x08\x92\x6b\xf8\xaa\x73\x32\x32\x5f\x83\xfc\x91\x4e\xcc\xb1\xfb\xf2\xe2\xc9\x9f\xec\xa5\xda\x7d\xe9\x7d\x4e\x77\x58\x8a\xac\x1d\xa3\xfe\x46\x51\xf4\x8c\x28\x84\x65\xa3\x04\x05\x92\xe5\xfd\x54\x59\x06\xcc\x19\x84\xf9\x79\xec\xf4\xa2\x32\x5e\x7d\x1a\x5f\x08\x71\xc6\xb8\x10\xf2\xf8\x59\x6f\x25\xd0\x98\x11\x42\xa2\x31\x6b\x66\x91\x78\xb0\x89\xc3\xa7\x4a\xc4\x67\x99\x38\x29\x56\xf2\xda\xa8\xfc\x45\x83\xfc\x03\xe7\xd3\x85\xd0\x87\x07\x9a\x3b\xfc\x8d\xe7\x0e\x0f\x34\x77\xf8\x6b\xe6\xce\xbf\x00\x00\x00\xff\xff\x1d\xa7\xb6\x21\x9e\x09\x00\x00") // FileCSSStylesheetCSS is "css/stylesheet.css" -var FileCSSStylesheetCSS = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x5a\x5b\x6f\xe3\xbc\xd1\xfe\x2b\xfa\x12\x2c\xf6\x80\xc8\x90\xed\xd8\x49\x24\x7c\x41\x17\xc5\x9b\xbb\x16\x05\x5e\xf4\xaa\xed\x05\x2d\xd1\x16\x1b\x89\x14\x28\x2a\x76\xd6\xc8\x7f\x2f\x78\x90\x44\x52\xd4\xc9\xbb\x6f\xd2\x22\x58\xac\x2c\x91\xc3\x21\x67\xf8\xcc\x33\x43\x2e\x52\x08\x12\x48\xfd\x0c\xe1\xe7\xf3\x8e\x50\xfe\x4c\xd1\x21\x65\xe1\xb2\x38\x79\x25\xc9\x50\xe2\x5d\xff\xb6\xe1\x7f\x51\x4c\x32\x42\xc3\xeb\x20\x08\xa2\xb8\xa2\x25\xa1\x61\x41\x10\x66\x90\x46\x7b\x82\x99\x5f\xa2\x1f\x30\x5c\x3c\xc0\x3c\xca\x10\x86\x7e\x0a\x85\x98\xbb\xa0\x38\x45\xe4\x05\xd2\x7d\x46\x8e\x61\x8a\x92\x04\xe2\xa8\x00\x49\x82\xf0\x21\x0c\xbc\xe5\xb6\x38\xbd\xe9\x4a\x84\x29\x6f\x7c\x56\x63\x3d\xdd\xde\xae\xd7\xdb\xb7\x6f\xb5\x6a\x47\x94\xb0\x34\x0c\xa2\x1d\x39\xf1\xf1\xb8\x0c\xf5\x65\x47\x4e\x52\x8d\x3d\xc8\x51\xf6\x1a\x5e\xfd\x4e\x2a\x1a\x43\xef\x77\x80\x4b\xef\x6f\x94\x5c\xdd\x94\x00\x97\x7e\x09\x29\xda\x47\x39\xa0\x07\x84\xc3\xa0\x55\x24\x62\xf0\xc4\xfc\x04\xc6\x84\x02\x86\x08\x0e\x31\xc1\x30\xf2\x8f\x70\xf7\x8c\x98\x9f\xbe\x16\x29\xc4\x65\x08\x2a\x46\x22\xfd\xc7\xdb\xa2\x2c\x40\x0c\xe9\xb9\x6e\xc9\x15\xdb\x67\xf0\x14\x2e\x23\xf9\x9f\x17\xbc\x5d\x67\xe4\x80\xb0\x5f\x80\x03\x3c\x27\xa8\x2c\x32\xf0\x1a\x6a\xed\xa3\xfa\x1d\xef\x10\xe9\x82\x08\x45\x10\xb3\xf0\x05\x52\x86\x62\x90\x19\xdf\x12\x44\x61\xac\x34\xa5\x39\xc8\xc4\x70\xbe\x58\xe4\x98\x64\x55\x8e\x3d\x4c\x8e\x14\x14\x46\x27\x90\xa1\x03\x0e\x63\x28\x8c\x26\x7e\xf8\x88\xc1\xbc\xac\x5f\x29\x9b\x2d\x83\xe0\x25\x8d\x76\x20\x7e\x3e\x50\x52\xe1\xc4\xaf\xad\xb1\xe1\x7f\x86\xc4\x02\xc4\xcf\x75\xef\x7f\x57\x25\x43\xfb\x57\x3f\x26\x98\x71\xbd\xe5\x6b\x7d\xfa\x8f\x0b\x48\x29\xa1\x7e\x0e\xcb\x92\xaf\x86\x34\xe7\x32\x08\x3e\xd5\x26\xe1\xfe\x20\x9c\xc2\x0b\xa2\x1c\x9c\x94\xc1\x6f\x03\xee\x45\x0e\x85\x9e\x9e\x22\x69\x7f\x87\xbb\xd6\xb6\xe5\xd2\xa4\x79\xf5\xe9\xeb\x6a\x79\xea\x79\x47\x4e\x3d\x2a\x4d\xd4\xe5\xfd\xad\xdb\x37\xfb\x9e\xe9\x89\x47\xe2\x03\x0a\xc1\x3c\x57\x1c\xf3\x9c\x5f\x3e\x31\xc3\x7a\xcd\x1e\x67\x8c\xe4\x97\x4c\x56\x3e\x9e\x5b\x9c\x5a\xc3\x5c\xc2\xc5\xb1\x71\xf9\xc8\xc4\x9c\x89\x32\xbd\xb2\x00\xf8\x2c\x5d\x45\x21\xe7\x7d\x71\x9a\xd2\x9b\x81\x03\x07\xca\xf3\x65\x6a\x20\x5c\x54\x4c\x1a\xb2\x5e\xaa\xfb\x9f\x58\xa9\x56\x9c\xb7\x90\xcf\x7b\x04\xb3\xe4\x12\x27\xd9\x81\x12\xf2\x89\x19\x6e\xd2\xbc\xd4\x94\x9d\xab\x8c\x57\xd4\x61\x61\xfb\x74\xb7\xb9\xfb\x6e\x87\x1d\xc3\x08\x72\xd7\x22\xac\x76\xed\x76\x73\xc1\x78\xe2\xf9\xac\x85\xbd\xee\x4a\x3b\x70\x67\x20\x14\x58\x1a\xcf\x56\xa8\xdd\xb4\xbb\x8c\xc4\xcf\x76\x18\x36\x57\xa7\x03\x79\xf6\x7a\x4d\x8c\x59\xd3\x34\xf3\x50\x67\x13\x98\xfa\xcc\x17\xe9\xa4\x02\x7d\x52\x76\x15\x63\x04\x5f\x80\x6c\x0a\xad\x52\x42\xd1\x0f\x82\xd9\x74\xbc\xa2\xe4\xe8\x02\xab\x29\x1a\x7a\xa0\x9e\xd5\x66\xbd\xf9\xbe\x55\xec\x83\x51\x80\xcb\x3d\xa1\x79\x58\x15\x05\xa4\x31\x28\x61\x4f\x9c\x19\x72\xb1\xa9\x91\xce\x52\x68\x21\x7f\x9d\x4d\x97\x9a\xd5\xd7\x6d\xaf\x1c\xd4\xdc\xa7\x97\x50\xbc\x7f\xd8\x54\x44\x47\xf0\x39\x0e\x12\x3a\xf1\xd1\x54\xf6\xae\x25\x33\x75\xa9\x2e\xa8\xc7\xc9\x2f\x53\x90\x90\x63\x18\x78\x81\xb7\x2e\x4e\x1e\x3d\xec\xc0\x97\xe0\x46\xfc\x2d\xd6\x5f\xa3\x0c\xee\x19\xe7\x99\xa4\x44\x42\xaf\x3d\x3a\xc1\x24\x92\x5b\x24\x88\x18\x29\xc2\x20\xfa\xe1\x23\x9c\xc0\x53\xf8\xf0\x70\xd1\x4a\x5c\xe6\xb9\x7c\x19\x1c\x33\xf5\xae\xb1\x5f\xc2\x0c\xc6\x0c\x26\xe7\x0e\x8f\x6f\x01\x64\xb9\xe0\x11\xd4\x04\x9c\x21\xaf\x1c\x49\x2d\xda\x84\x60\xbd\xe2\x5b\xc8\xa1\x97\x08\xe0\x4a\x8c\x58\x55\x47\x82\x22\x7d\x37\x81\x7b\x50\x65\x4c\x4e\xb8\x4c\x29\xcf\x2a\x46\x35\x98\x9c\xdc\x0c\xe7\x32\xdd\xdc\xe7\xdd\xc1\x48\x37\xd2\x66\x9c\xe6\xf4\x2c\xf5\xc8\x66\x36\x1b\xf7\x91\xa0\x61\xd9\x7d\x78\xe0\xec\x57\x42\x40\xe3\x54\x50\xf4\x39\xbc\x74\xc4\xea\xb3\x8c\x63\xfb\xf4\x1f\x19\x45\xa2\x36\x0f\x19\x59\x0e\x4f\xa1\xef\xcd\x48\x33\x49\x66\x66\xe6\x50\xda\xae\xb0\xb6\x81\xc1\xe3\x26\x29\x78\x76\xb3\x15\x19\x01\x27\xca\x98\xec\x95\xdd\x89\xeb\x8e\x10\x0c\xda\x55\x9b\x9a\x67\xd1\xc8\x60\xcc\x2e\xaa\x92\x91\x43\x5c\xbd\x3b\x0d\x19\x53\xc8\x03\x5d\x44\xb7\xd0\xcb\x64\x25\x96\xc9\x6d\x6a\x30\x36\x5a\x88\x09\xfb\x12\x66\xa0\x64\x7e\x9c\xa2\x2c\xf9\x3a\x52\x60\x1a\x97\x68\xe0\x8c\x08\x02\xb7\x3d\xee\x67\x2a\xe2\xf0\x9a\xde\xf2\x86\x21\x8e\x3f\xd6\xe3\xf1\x60\x7d\x31\xa2\xff\x14\x5d\xe9\xa8\x54\x93\xe6\x1d\x21\xcf\x39\xa0\xcf\x67\x89\x7c\x25\xcc\xf6\x35\xf0\xb5\x05\x8b\xad\x28\x58\x68\x75\x8d\xf7\xa7\x5b\xaa\x92\xc2\x63\xbb\x2c\xee\xac\xfa\x6b\x28\xa4\x62\xdc\x4b\x47\xdc\xc3\xb5\x0a\x8f\xc5\xd9\xc6\x2b\x15\xf6\xb6\xc1\x00\xc5\x36\xc9\xfb\xe8\x18\x56\x09\xcb\x74\x2a\x6b\xc7\x8c\x64\xe3\x86\x8e\x9b\xae\x8e\x98\x60\x38\xaa\x91\xc4\xb7\x7f\xb0\xd7\x02\xfe\x3f\xef\xff\xaf\x9b\xd1\x1e\xbc\x99\x48\x94\x7a\xd7\x7a\x02\xf0\x2f\x6b\x63\x8e\x6b\xd8\x8c\x47\xa1\x90\xd3\x38\x93\x46\xbd\x6f\x45\x02\x7f\x6a\x99\x38\x4f\x8f\xc7\x04\x2f\xfe\x2b\xb2\x3e\x3b\x04\x8e\xaa\x3a\x3d\xfd\x33\x0a\x0e\xce\xed\x62\x57\x14\xe6\xe9\xd1\x97\xf5\x5d\x24\x65\x34\x38\x4b\x51\x2a\x34\x17\x80\x82\x1c\x32\x48\xdf\xd1\x70\x86\xd9\x02\xcf\x6d\x38\x5b\xbf\x4e\xd5\x45\xa1\xd9\xbd\x16\x3e\xef\x8d\xe4\x48\xee\xfd\x8e\xb9\x54\x9a\x24\x7f\x1d\x53\xc4\x60\x43\x4f\x41\x82\xaa\x52\x12\xbf\x51\x53\x74\xf5\xeb\xe7\xd3\x12\x95\xec\xb3\x0d\xc1\x02\x58\x4a\x49\x75\x48\x1d\x03\x1c\x28\x9a\x59\xf8\xfb\x95\xbb\xc9\x8e\xe8\xad\x4e\x8f\x0b\x19\x55\x86\x0e\x5b\x0c\x78\xd2\x82\x60\x87\xb0\x75\xc5\x3e\x7e\xeb\x12\x16\x15\xfa\x15\x80\xaf\xdc\xba\xa9\x50\xe0\xef\xc0\x65\xbe\x7c\x59\x6c\x9d\x55\x9e\xaf\x57\x85\x47\xe0\x99\xe7\x37\x6d\xed\x02\xec\x4a\x92\x55\x0c\x8a\xb2\xc5\x26\xf8\x54\x17\x37\x3a\x47\x26\x82\x2a\xf9\x5b\x1e\xe3\x6b\x38\xe7\x01\x7f\x78\xe9\x3c\xd4\x5b\xdd\x5d\xc3\xfc\xed\x4f\x39\x4c\x10\xf0\xca\x98\x42\x88\x3d\x80\x13\xef\x4b\x6b\xdd\x7b\x4e\x71\xbe\x9e\x1d\x85\x9b\x46\xf9\x92\x01\x86\xe2\x31\xae\xf8\x08\x1e\x05\xc5\xac\x4d\xe6\x8c\xc0\x3a\x21\x0c\xba\x93\x5a\xd4\x28\xd9\x2f\x71\x78\x36\x77\xb7\x9d\xd9\x38\x49\x9f\x6c\x2d\x6a\x58\x1a\xff\x13\xc7\x92\xc3\x03\x6c\xfa\x96\x4b\x55\x59\x4c\x5d\xaf\x63\x10\xa7\xf0\x7f\xe8\xf8\xb2\xa7\xaa\xd7\x4e\xa3\x8d\xbf\x75\x90\xd2\xbf\x85\x2f\xa8\x44\x0c\x26\x83\x6d\x24\xe2\xda\xc0\x5a\xe1\x04\x52\x8e\xae\x7a\xeb\xc7\x6f\xe6\xa1\x62\xe3\xb4\x5b\x01\x27\x9a\xd8\xeb\x0f\x49\x1b\x6d\x95\xc6\xcf\x90\x6c\x95\x3d\x30\x08\xc9\x56\x60\xec\x9e\x4b\x98\x64\xc8\x28\x83\xd8\xd1\xb0\x3b\xb4\x7d\xf0\xe0\x5c\xd4\x4b\x92\x51\x87\x0c\xcb\x33\xea\xd2\x85\xa3\xa5\x2b\xe3\x74\x5d\x31\xb0\x3b\x33\x90\x00\xd6\x1e\xe9\x09\xbc\x9e\x69\x0f\x29\xc2\x03\x67\x6b\xdd\x0d\x12\xd3\xd3\x29\x5d\x6b\xbd\x56\xcd\x99\x9a\x28\x85\x74\x26\xaa\xfa\x14\xf6\x40\x6d\xee\x60\xf6\x50\x71\xe5\xac\x1b\x58\xd4\x7b\x55\xd1\xd7\xd1\xd6\xfb\xa6\x83\x6d\xa7\xc0\xba\xbc\x0f\x3e\xb5\x05\x59\x81\x7c\x4e\x29\x05\x85\x37\xce\x0f\x31\x49\xd4\x01\xac\xba\x36\xf2\xf9\xef\xbb\x0a\xb3\xca\xfb\x0b\xc1\xe4\xf3\xcd\xe7\x3f\x93\x8a\x22\x48\xbd\xbf\xc2\xe3\xe7\x1b\xf5\xe3\x26\x27\x98\x88\x6b\x1f\xfa\x60\x8b\x44\x20\x3e\x97\xd7\xe5\x61\xab\xd5\x4a\xa7\x7d\xee\x7e\xcd\x5e\x9a\xdc\xd2\xf2\xc7\x29\x3d\x2e\xf1\x4b\x53\x4c\x63\x75\x63\xd0\x04\x81\x8c\x1c\x7c\x2e\x3d\x03\xaf\x67\xeb\xbc\xa3\x3e\xe1\x58\x06\xcb\x77\xac\x3e\x74\x29\xb8\x71\x3a\xb3\xf9\xaa\xce\x5f\x14\x8d\xa9\x4b\x83\x6a\x9f\x05\x9d\x4a\xff\x5c\xde\xa4\xed\x61\x7b\x81\x3c\xf5\x7b\x1c\xec\xdd\x59\x5f\xb7\xde\xf3\x0b\x57\xad\xaf\x18\x6c\x11\x88\xbe\x39\xd5\xff\xfb\x0c\xb1\x0c\xfe\x74\x49\x46\x3f\xcf\x18\x2f\xa9\x8c\x2a\xe5\x02\xa1\xd1\x4e\x2a\x4b\xfe\xc8\x0a\x43\x3d\x71\x81\x83\xb3\x67\x2d\x27\xf0\x0b\xeb\x0e\x93\x47\xec\xab\x30\xcc\xeb\xde\x9b\x99\xb5\x97\x3d\x66\x8b\x74\x55\x2b\x86\x8a\x7b\xde\xff\xa1\xbc\x20\x94\x01\xcc\xec\xaa\x8b\xd9\x2d\x0c\x77\x70\x4f\x28\xef\x2e\x01\xe1\xea\x9f\xfb\xe0\x6e\x79\x65\xf8\xff\x43\x10\x44\x9d\x0b\x13\xc6\x05\xc6\x27\x82\x99\xf7\xfd\x08\x4b\x92\x43\x6f\xe3\x3d\x51\x08\xaf\xde\x9a\xe4\x62\xee\x49\x4e\x83\xc8\x14\x66\x80\xa1\x17\xd8\x8a\xf2\x16\x71\x0a\xe3\xe7\x1d\x39\x9d\x9b\xa3\xe8\x06\x0d\x49\x01\x62\xc4\x5e\xf5\x33\xec\x26\x0f\x1c\x2d\x1f\x2a\x37\x73\xab\x2a\xa1\x44\x30\x1c\x3d\xa6\x8b\x17\x5d\x8e\x38\x78\xf1\xc5\x36\x47\x77\x66\x2e\x6b\x6b\x06\xd5\xbb\x68\xe9\x9b\xc5\xc6\x04\x1c\x7d\xd4\x1d\xbf\x7e\xc8\x1b\xd2\x5d\x7b\xc5\x50\x0e\x27\x5d\xa0\x52\x03\xdd\x17\xa7\xe9\xa2\x5d\x48\xaf\x5d\x14\xb0\x90\x7f\xaa\xdc\x8a\x66\x33\x35\xb6\xde\x04\x7a\x45\xe2\x5e\x55\x84\x94\xa3\xad\x16\x5b\xeb\xae\xb2\xd4\x55\xf8\x5e\x13\xfb\x61\x96\xa1\xa2\x44\xa5\xcd\x06\x06\xa7\xb0\x48\x41\xe9\xa3\x9c\x43\x88\x96\x87\xae\x36\xd6\xa9\x47\xb3\xa3\xea\xc3\xea\xf6\x13\x85\x05\x04\x2c\xc4\x44\x3d\xe9\xdf\xc4\xf4\x63\xae\x4f\x97\x92\x40\x9c\x74\xf8\x88\xf0\x2b\xfe\x61\x10\x03\x06\x26\xd1\x05\xb4\xab\x71\x6e\xe5\x2e\x1b\xf5\xb3\xad\x1a\x7a\x86\x9d\xa3\x55\xca\xf2\xec\x9b\xd9\xbd\xb8\x73\xd5\x83\x1a\xf4\x5c\x7a\x80\xba\xd8\xc3\xb7\x5b\xfd\xcf\x9a\xe2\x25\x8a\xf2\x7d\xf2\xc7\x0d\x2a\x51\xae\x33\x60\x7f\x99\xc2\x25\x0c\x9e\x62\x48\x0b\x2b\x4d\x53\x57\xb2\xb5\xd4\xce\xd5\x95\x81\x43\xf9\x51\xe5\x7c\x79\x1e\xb5\x52\x37\xc7\x75\x10\xf0\x6f\x7b\x90\x8c\xab\xcb\x39\xd1\xe0\x7d\x1f\xad\x2e\x1d\xcd\x0a\x1f\x52\x7a\x77\xef\x5c\x5f\x0d\x35\x1f\x2b\x2c\xb9\xcd\xff\x11\x65\xa3\x21\x42\x1a\xf1\xcc\x74\x87\x32\xce\x1c\x54\xf6\x64\xe5\xf1\xbd\x13\x09\x31\x4b\x25\xc9\xfb\xb2\x6e\x8a\x34\x12\x3a\x8c\xba\x6b\x5f\xff\xae\x41\x4d\xea\x30\x54\xa9\x32\x68\x8b\xce\xf7\x06\xce\x79\xba\xf7\x2d\xfb\x35\x73\xdf\x5f\xe8\x6f\x3f\xbb\x68\x35\x20\x6a\x2a\x01\xaa\x31\xa4\xe1\x84\x35\x03\x5c\x76\xdb\x98\x1e\xa8\xd9\x5c\x3c\x66\x9a\xb7\x4a\x71\x30\x39\x77\x09\xea\xc3\x6f\xfc\xaf\x21\x93\x5b\xfb\x4b\x57\x88\x4b\xb9\xa6\xbf\x8b\x6e\xaa\x21\xf4\x8a\xc5\x7f\x02\x00\x00\xff\xff\xcb\x9e\x69\x5c\xf9\x34\x00\x00") +var FileCSSStylesheetCSS = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x5b\x6d\x6f\xe3\xb8\x11\xfe\x2b\x6c\x82\xc3\x26\x8b\xc8\x90\x93\x38\x9b\x95\xd0\xe0\x16\xc5\xe5\x5b\x8b\x02\x87\x7e\x6a\xfb\x81\x96\x68\x8b\x8d\x44\x0a\x14\xb5\x76\xd6\xc8\x7f\x2f\xf8\x22\x89\xa4\xa8\x37\xef\x5e\xb6\x85\x71\x17\x59\x26\x87\x43\xce\xf0\x99\x67\x86\xdc\x55\x86\x60\x8a\x58\x90\x63\xf2\x72\xda\x52\x26\x9e\x19\xde\x67\x3c\x5a\x97\x47\x50\xd1\x1c\xa7\xe0\xf2\xb7\x8d\xf8\xc4\x09\xcd\x29\x8b\x2e\xc3\x30\x8c\x93\x9a\x55\x94\x45\x25\xc5\x84\x23\x16\xef\x28\xe1\x41\x85\xbf\xa1\x68\xf5\x19\x15\x71\x8e\x09\x0a\x32\x24\xc5\x7c\x0a\xcb\x63\x4c\xbf\x22\xb6\xcb\xe9\x21\xca\x70\x9a\x22\x12\x97\x30\x4d\x31\xd9\x47\x21\x58\x3f\x94\xc7\x37\x53\x89\x28\x13\x8d\x4f\x7a\xac\xe7\xfb\xfb\xbb\xbb\x87\xb7\x8f\x8d\x6a\x07\x9c\xf2\x2c\x0a\xe3\x2d\x3d\x8a\xf1\x84\x0c\xfd\xcb\x96\x1e\x95\x1a\x3b\x58\xe0\xfc\x35\xba\xf8\x9d\xd6\x2c\x41\xe0\x77\x48\x2a\xf0\x77\x46\x2f\x6e\x2a\x48\xaa\xa0\x42\x0c\xef\xe2\x02\xb2\x3d\x26\x51\xd8\x29\x12\x73\x74\xe4\x41\x8a\x12\xca\x20\xc7\x94\x44\x84\x12\x14\x07\x07\xb4\x7d\xc1\x3c\xc8\x5e\xcb\x0c\x91\x2a\x82\x35\xa7\xb1\xf9\xe5\x6d\x55\x95\x30\x41\xec\xd4\xb4\x14\x8a\xed\x72\x74\x8c\xd6\xb1\xfa\x03\xc2\xb7\xcb\x9c\xee\x31\x09\x4a\xb8\x47\xa7\x14\x57\x65\x0e\x5f\x23\xa3\x7d\xdc\xbc\x13\x1d\x62\x53\x10\x65\x18\x11\x1e\x7d\x45\x8c\xe3\x04\xe6\xd6\x6f\x29\x66\x28\xd1\x9a\xb2\x02\xe6\x72\xb8\x40\x2e\x72\x42\xf3\xba\x20\x80\xd0\x03\x83\xa5\xd5\x09\xe6\x78\x4f\xa2\x04\x49\xa3\xc9\x2f\x01\xe6\xa8\xa8\x9a\x57\xda\x66\xeb\x30\xfc\x9a\xc5\x5b\x98\xbc\xec\x19\xad\x49\x1a\x34\xd6\xd8\x88\x8f\x25\xb1\x84\xc9\x4b\xd3\xfb\x3f\x75\xc5\xf1\xee\x35\x48\x28\xe1\x42\x6f\xf5\xda\x9c\xfe\xd3\x0a\x31\x46\x59\x50\xa0\xaa\x12\xab\xa1\xcc\xb9\x0e\xc3\x5f\x1a\x93\x08\x7f\x90\x4e\x01\xc2\xb8\x80\x47\x6d\xf0\xfb\x50\x78\x91\x47\xa1\xe7\xe7\x58\xd9\xdf\xe3\xae\x8d\x6d\x85\x34\x65\x5e\x73\xfa\xa6\x5a\x40\x3f\x6f\xe9\x71\x40\xa5\x99\xba\xbc\xbf\x75\x87\x66\x3f\x30\x3d\xf9\x48\x03\xc8\x10\x5c\xe6\x8a\x53\x9e\xf3\xc3\x27\x66\x59\xaf\xdd\xe3\x9c\xd3\xe2\x9c\xc9\xaa\xc7\x53\x87\x53\x77\xa8\x50\x70\x71\x68\x5d\x3e\xb6\x31\x67\xa6\x4c\x50\x95\x90\x9c\x94\xab\x68\xe4\x7c\x2c\x8f\x73\x7a\x73\xb8\x17\x40\x79\x3a\x4f\x0d\x4c\xca\x9a\x2b\x43\x36\x4b\xf5\xf8\x1d\x2b\xd5\x89\x03\x2b\xf5\xbc\xc3\x28\x4f\xcf\x71\x92\x2d\xac\x90\x98\x98\xe5\x26\xed\x4b\x43\xd9\xa5\xca\x80\xb2\x09\x0b\x0f\xcf\x9f\x36\x9f\xbe\xb8\x61\xc7\x32\x82\xda\xb5\x98\xe8\x5d\xfb\xb0\x39\x63\x3c\xf9\x7c\x32\xc2\x5e\x7f\xa5\x3d\xb8\x33\x12\x0a\x1c\x8d\x17\x2b\xd4\x6d\xda\x6d\x4e\x93\x17\x37\x0c\xdb\xab\xd3\x83\x3c\x77\xbd\x66\xc6\xac\x79\x9a\x01\xdc\xdb\x04\xb6\x3e\xcb\x45\x7a\xa9\xc0\x90\x94\x6d\xcd\x39\x25\x67\x20\x9b\x46\xab\x8c\x32\xfc\x8d\x12\x3e\x1f\xaf\x18\x3d\xf8\xc0\x6a\x8e\x86\x00\x36\xb3\xda\xdc\x6d\xbe\x3c\x68\xf6\xc1\x19\x24\xd5\x8e\xb2\x22\xaa\xcb\x12\xb1\x04\x56\x68\x20\xce\x8c\xb9\xd8\xdc\x48\xe7\x28\xb4\x52\xdf\x4e\xb6\x4b\x2d\xea\xeb\xb7\x57\x01\x1b\xee\x33\x48\x28\xde\x3f\x6c\x6a\xa2\x23\xf9\x9c\x00\x09\x93\xf8\x18\x2a\x83\x4b\xc5\x4c\x7d\xaa\x4b\xea\x71\x0c\xaa\x0c\xa6\xf4\x10\x85\x20\x04\x77\xe5\x11\xb0\xfd\x16\x5e\x85\x37\xf2\xb3\xba\xbb\x8e\x73\xb4\xe3\x82\x67\xd2\x0a\x4b\xbd\x76\xf8\x88\xd2\x58\x6d\x91\x30\xe6\xb4\x8c\xc2\xf8\x5b\x80\x49\x8a\x8e\xd1\xe7\xcf\x67\xad\xc4\x79\x9e\x2b\x96\xc1\x33\x53\x70\x49\x82\x0a\xe5\x28\xe1\x28\x3d\xf5\x78\x7c\x07\x20\xeb\x95\x88\xa0\x36\xe0\x8c\x79\xe5\x44\x6a\xd1\x25\x04\x77\xb7\x62\x0b\x79\xf4\x92\x01\x5c\x8b\x91\xab\xea\x49\x50\x94\xef\xa6\x68\x07\xeb\x9c\xab\x09\x57\x19\x13\x59\xc5\xa4\x06\xb3\x93\x9b\xf1\x5c\xa6\x9f\xfb\xbc\x3b\x18\x99\x46\xda\x4c\xd3\x9c\x81\xa5\x9e\xd8\xcc\x76\xe3\x21\x12\x34\x2e\x7b\x08\x0f\xbc\xfd\x2a\x04\x59\x92\x49\x8a\xbe\x84\x97\x4e\x58\x7d\x91\x71\x5c\x9f\xfe\x23\xa3\x48\xdc\xe5\x21\x13\xcb\x01\x34\xfa\xde\x4c\x34\x53\x64\x66\x61\x0e\x65\xec\x0a\x67\x1b\x58\x3c\x6e\x96\x82\x27\x3f\x5b\x51\x11\x70\xa6\x8c\xd9\x5e\xd9\x9f\xb8\xe9\x08\xe1\xa8\x5d\x8d\xa9\x01\x87\x46\x86\x53\x76\xd1\x95\x8c\x02\x91\xfa\xdd\x69\xc8\x94\x42\x00\xf6\x11\xdd\x41\x2f\x9b\x95\x38\x26\x77\xa9\xc1\xd4\x68\x11\xa1\xfc\x2a\xca\x61\xc5\x83\x24\xc3\x79\x7a\x3d\x51\x60\x9a\x96\x68\xe1\x8c\x0c\x02\xf7\x03\xee\x67\x2b\xe2\xf1\x9a\xc1\xf2\x86\x25\x4e\x3c\x36\xe3\x89\x60\x7d\x36\xa2\x7f\x17\x5d\xe9\xa9\xd4\x90\xe6\x2d\xa5\x2f\x05\x64\x2f\x27\x85\x7c\x15\xca\x77\x0d\xf0\x75\x05\x8b\x07\x59\xb0\x30\xea\x1a\xef\x4f\xb7\x74\x25\x45\xc4\x76\x55\xdc\xb9\x1d\xae\xa1\xd0\x9a\x0b\x2f\x9d\x70\x0f\xdf\x2a\x3c\x95\x27\x17\xaf\x74\xd8\x7b\x08\x47\x28\xb6\x4d\xde\x27\xc7\x70\x4a\x58\xb6\x53\x39\x3b\x66\x22\x1b\xb7\x74\xdc\xf4\x75\x24\x94\xa0\x49\x8d\x14\xbe\xfd\x93\xbf\x96\xe8\xcf\xa2\xff\xbf\x6f\x26\x7b\x88\x66\x32\x51\x1a\x5c\xeb\x19\xc0\xbf\x6e\x8c\x39\xad\x61\x3b\x1e\x43\x52\x4e\xeb\x4c\x06\xf5\xbe\x97\x09\xfc\xb1\x63\xe2\x22\x3d\x9e\x12\xbc\xfa\x9f\xc8\xfa\xdc\x10\x38\xa9\xea\xfc\xf4\xcf\x2a\x38\x78\xb7\x8b\x5b\x51\x58\xa6\xc7\x50\xd6\x77\x96\x94\xc9\xe0\xac\x44\xe9\xd0\x5c\x42\x06\x0b\xc4\x11\x7b\x47\xc3\x59\x66\x0b\x81\xdf\x70\xae\x7e\xbd\xaa\x8b\x46\xb3\x47\x23\x7c\x3e\x5a\xc9\x91\xda\xfb\x3d\x73\xe9\x34\x49\x7d\x3b\x64\x98\xa3\x96\x9e\xc2\x14\xd7\x95\x22\x7e\x93\xa6\xe8\xeb\x37\xcc\xa7\x15\x2a\xb9\x67\x1b\x92\x05\xf0\x8c\xd1\x7a\x9f\x79\x06\xd8\x33\xbc\xb0\xf0\xf7\x23\x77\x93\x1b\xd1\x3b\x9d\x9e\x56\x2a\xaa\x8c\x1d\xb6\x58\xf0\x64\x04\xc1\x1e\x61\xeb\x8b\x7d\xfa\xd8\x27\x2c\x3a\xf4\x6b\x00\xbf\xf5\xeb\xa6\x43\x41\xb0\x85\xe7\xf9\xf2\x79\xb1\x75\x51\x79\xbe\x59\x15\x11\x81\x17\x9e\xdf\x74\xb5\x0b\xb8\xad\x68\x5e\x73\x24\xcb\x16\x9b\xf0\x97\xa6\xb8\xd1\x3b\x32\x91\x54\x29\x78\x10\x31\xbe\x81\x73\x11\xf0\xc7\x97\x0e\xe0\xc1\xea\xee\x1d\x2a\xde\x7e\x2d\x50\x8a\x21\xa8\x12\x86\x10\x01\x90\xa4\xe0\xaa\xb3\xee\xa3\xa0\x38\xd7\x27\x4f\xe1\xa6\x55\xbe\xe2\x90\xe3\x64\x8a\x2b\x3e\xc1\x27\x49\x31\x1b\x93\x79\x23\xb0\x49\x08\xc3\xfe\xa4\x56\x0d\x4a\x0e\x4b\x1c\x9f\xcd\xa7\xfb\xde\x6c\xbc\xa4\x4f\xb5\x96\x35\x2c\x83\xff\xc9\x63\xc9\xf1\x01\x36\x43\xcb\xa5\xab\x2c\xb6\xae\x97\x09\x4c\x32\xf4\x7f\x74\x7c\x39\x50\xd5\xeb\xa6\xd1\xc5\xdf\x26\x48\x99\xbf\x45\x5f\x71\x85\x39\x4a\x47\xdb\x28\xc4\x75\x81\xb5\x26\x29\x62\x02\x5d\xcd\xd6\x4f\x1f\xed\x43\xc5\xd6\x69\x1f\x24\x9c\x18\x62\x2f\x7f\x4a\xda\xe8\xaa\x34\x7d\x86\xe4\xaa\x0c\xe0\x28\x24\x3b\x81\xb1\x7f\x2e\x61\x93\x21\xab\x0c\xe2\x46\xc3\xfe\xd0\xee\xc1\x83\x77\x51\xcf\x49\x46\x3d\x32\x1c\xcf\x68\x4a\x17\x9e\x96\xbe\x8c\xd3\x77\xc5\xc0\xed\xcc\x61\x0a\x79\x77\xa4\x27\xf1\x7a\xa1\x3d\x94\x08\x00\x4f\xce\xba\x5b\x24\x66\xa0\x53\x76\x67\xf4\xba\x6d\xcf\xd4\x64\x29\xa4\x37\x51\xdd\xa7\x74\x07\xea\x72\x07\xbb\x87\x8e\x2b\x27\xd3\xc0\xb2\xde\xab\x8b\xbe\x9e\xb6\xe0\xa3\x09\xb6\xbd\x02\xeb\xfa\x31\xfc\xa5\x2b\xc8\x4a\xe4\xf3\x4a\x29\x19\xba\xf1\xfe\x90\xd0\x54\x1f\xc0\xea\x6b\x23\x1f\xfe\xb1\xad\x09\xaf\xc1\x5f\x29\xa1\x1f\x6e\x3e\xfc\x85\xd6\x0c\x23\x06\xfe\x86\x0e\x1f\x6e\xf4\x97\x9b\x82\x12\x2a\xaf\x7d\x98\x83\xad\x52\x89\xf8\x42\x5e\x9f\x87\xdd\xde\xde\x9a\xb4\xcf\xdf\xaf\xdd\x4b\xb3\x5b\x3a\xfe\x38\xa7\xc7\x39\x7e\x69\x8b\x69\xad\x6e\x0d\x9a\x62\x98\xd3\x7d\x20\xa4\xe7\xf0\xf5\xe4\x9c\x77\x34\x27\x1c\xeb\x70\xfd\x8e\xd5\x87\x3e\x05\xb7\x4e\x67\x36\xd7\xfa\xfc\x45\xd3\x98\xa6\x34\xa8\xf7\x59\xd8\xab\xf4\x2f\xe5\x4d\xc6\x1e\x76\x17\x08\xe8\xef\xd3\x60\xef\xcf\xfa\xfa\xf5\x9e\x1f\xb8\x6a\x43\xc5\x60\x87\x40\x0c\xcd\xa9\xf9\x1b\x70\xcc\x73\xf4\xdd\x25\x19\xf3\x3c\x63\xba\xa4\x32\xa9\x94\x0f\x84\x26\x3b\xe9\x2c\xf9\x67\x56\x18\x9a\x89\x4b\x1c\x5c\x3c\x6b\x35\x81\x1f\x58\x77\x98\x3d\xe2\x50\x85\x61\x59\xf7\xc1\xcc\xac\xbb\xec\xb1\x58\xa4\xaf\x5a\x31\x56\xdc\x03\x7f\xc2\x45\x49\x19\x87\x84\xbb\x55\x17\xbb\x5b\x14\x6d\xd1\x8e\x32\xd1\x5d\x01\xc2\xc5\xbf\x76\xe1\xa7\xf5\x85\xe5\xff\x9f\xc3\x30\xee\x5d\x98\xb0\x2e\x30\x3e\x53\xc2\xc1\x97\x03\xaa\x68\x81\xc0\x06\x3c\x33\x84\x2e\xde\xda\xe4\x62\xe9\x49\x4e\x8b\xc8\x0c\xe5\x90\xe3\xaf\xa8\x13\x05\x56\x49\x86\x92\x97\x2d\x3d\x9e\xda\xa3\xe8\x16\x0d\x69\x09\x13\xcc\x5f\xcd\x33\xec\x36\x0f\x9c\x2c\x1f\x6a\x37\xf3\xab\xaa\xa0\x44\x32\x1c\x33\xa6\xcb\x17\x7d\x8e\x38\x7a\xf1\xc5\x35\x47\x7f\x66\x3e\x6b\x1b\x06\x35\xbb\x18\xe9\x9b\xc3\xc6\x24\x1c\xfd\xac\x3b\x7e\xc3\x90\x37\xa6\xbb\xf1\x8a\xe3\x02\xcd\xba\x40\xa5\x07\x7a\x2c\x8f\xf3\x45\xfb\x90\xde\xb8\x28\xe0\x20\xff\x5c\xb9\x35\xcb\x17\x6a\xec\xbc\x09\xcd\x8a\xc4\xa3\xae\x08\x69\x47\xbb\x5d\x3d\x38\x77\x95\x95\xae\xd2\xf7\xda\xd8\x8f\xf2\x1c\x97\x15\xae\x5c\x36\x30\x3a\x85\x55\x06\xab\x00\x17\x02\x42\x8c\x3c\xf4\x76\xe3\x9c\x7a\xb4\x3b\xaa\x39\xac\xee\x7e\x62\xa8\x44\x90\x47\x84\xea\x27\xf3\x37\x39\xfd\x44\xe8\xd3\xa7\x24\x88\xa4\x3d\x3e\x22\xfd\x4a\xfc\x30\x8a\x01\x23\x93\xe8\x03\xda\xc5\x34\xb7\xf2\x97\x8d\x86\xd9\x56\x03\x3d\xe3\xce\xd1\x29\xe5\x78\xf6\xcd\xe2\x5e\xc2\xb9\x9a\x41\x2d\x7a\xae\x3c\x40\x5f\xec\x11\xdb\xad\xf9\xcf\x99\xe2\x39\x8a\x8a\x7d\xf2\xc7\x0d\xaa\x50\xae\x37\xe0\x70\x99\xc2\x27\x0c\x1d\x13\xc4\x4a\x27\x4d\xd3\x57\xb2\x8d\xd4\xce\xd7\x95\xc3\x7d\xf5\xb3\xca\xf9\xea\x3c\xea\x56\xdf\x1c\x37\x41\x20\xb8\x1f\x40\x32\xa1\xae\xe0\x44\xa3\xf7\x7d\x8c\xba\x74\xbc\x28\x7c\x28\xe9\xfd\xbd\x73\x79\x31\xd6\x7c\xaa\xb0\xe4\x37\xff\xcf\x28\x1b\x8d\x11\xd2\x58\x64\xa6\x5b\x9c\x0b\xe6\xa0\xb3\x27\x27\x8f\x1f\x9c\x48\x44\x78\xa6\x48\xde\xd5\x5d\x5b\xa4\x51\xd0\x61\xd5\x5d\x87\xfa\xf7\x0d\x6a\x53\x87\xb1\x4a\x95\x45\x5b\x4c\xbe\x37\x72\xce\xd3\xbf\x6f\x39\xac\x99\xff\xfe\xc2\x70\xfb\xc5\x45\xab\x11\x51\x73\x09\x50\x83\x21\x2d\x27\x6c\x18\xe0\xba\xdf\xc6\xf6\x40\xc3\xe6\xf2\x31\x37\xbc\x55\x89\x43\xe9\xa9\x4f\x50\x3f\xff\x26\x3e\x2d\x99\x7c\x70\x7f\xe9\x0b\xf1\x29\xd7\xf6\xf7\xd1\x4d\x3d\x84\x59\xb1\xf8\xb5\xaa\x4b\x31\xf7\x0a\x10\xca\xc1\xd5\x95\xfb\x4f\x7d\x00\xac\x39\xbd\x06\x94\x81\x2b\xfb\xd5\xf5\xc9\xbb\x7b\x05\xd0\x7a\x63\x50\xcd\x72\xef\xfb\x06\x66\x0f\x94\xa5\xc1\x96\x21\xf8\x12\xc9\xff\x07\x30\xcf\xdf\xde\xfe\x1b\x00\x00\xff\xff\x11\xa7\x14\xae\x98\x35\x00\x00") // FileCSSUbuntuMonoCSS is "css/ubuntu-mono.css" var FileCSSUbuntuMonoCSS = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xcb\x6a\xc2\x40\x14\x86\xf7\x3e\xc5\x01\x17\x51\x71\x8c\x94\xd2\x4b\xba\xe8\x0d\x17\x42\xa5\x50\xe9\x03\x8c\xc9\x99\x74\x60\x32\x27\xcc\xc5\x34\x94\xbe\x7b\x99\x68\xea\xd8\x9d\xd2\xe5\xfc\x93\xf3\x7f\xdf\x49\x92\x4e\xc0\x6f\xbc\x76\x9e\x55\xa4\x89\x19\x2c\xbd\xe2\x06\x18\x28\xee\xa4\x86\x49\x3a\x18\x3c\x08\xd2\x8e\x09\x9e\x23\x7c\x0d\x00\x00\xf6\xe7\x4a\xaa\x36\x83\xe4\xbd\x1b\x87\x15\x69\x4a\xee\x0e\xf7\xd6\xb5\x0a\x33\xd0\x64\x2a\xae\xa2\xbc\x41\x59\x7e\xb8\x0c\x2e\xe7\xf3\x5d\x6a\x4d\x9e\x81\x37\x6a\x94\xcc\x66\x69\x83\x9b\xf0\x94\x4d\x63\xa9\xed\x35\xeb\x6c\x7a\xbb\x19\x92\x4b\xc6\xbb\xe9\x74\x02\xcb\xc5\x2d\x3c\x53\x55\x73\x07\x2b\x2a\xd0\x06\xe9\xdf\x62\x45\x39\x57\xa3\x23\xc9\xf1\xf4\x38\x0d\x21\x7b\xdb\x55\x87\xcb\x93\x5d\xee\x87\x12\x85\xfc\x4c\xc6\x20\xc2\xb6\x6e\x94\x60\xb5\xc1\xa2\xc0\x82\x51\x8d\xda\xb5\x35\x86\xde\x4e\xf5\x8a\x2d\x17\x37\xbd\xe1\x69\xa4\x86\x84\xb8\x88\x20\xfb\x73\x57\xbc\xf6\x35\x9a\x6e\x7d\xa3\xe1\xc9\x50\x63\xd1\xd8\xf3\x31\x7f\x28\x7b\xc8\xbf\xd4\x3b\x17\xb7\x3b\xe3\x31\x7a\x3f\x6b\x2e\xb8\x91\x53\x78\xd4\x85\x21\x59\x4c\x41\xbe\xae\xcf\xc3\xd8\x6d\x39\x3c\x7c\xde\x88\x68\xb7\x65\xf4\xef\xbc\x60\xc9\xf3\xb6\xc7\x7c\xff\x04\x00\x00\xff\xff\xec\x99\x60\x75\x0e\x03\x00\x00") diff --git a/view/css/stylesheet.css b/view/css/stylesheet.css index ce3d6abb..38898cab 100644 --- a/view/css/stylesheet.css +++ b/view/css/stylesheet.css @@ -1 +1 @@ -.header-link{border-right:1px solid #E5E5E5;color:#000;cursor:pointer;font-size:.9em;line-height:70px;overflow:hidden;padding:0 16px}.header-link:hover{color:#F44336}*{border-width:0;box-sizing:border-box;font-family:"Source Sans Pro",sans-serif;margin:0;padding:0;text-decoration:none;-webkit-hyphens:auto;hyphens:auto}.spacer{-webkit-box-flex:1;flex:1 0}#login-page{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column nowrap;-webkit-box-align:center;align-items:center;height:100vh;background-color:#F5F5F5;-webkit-box-pack:center;justify-content:center}#login-page>.error-message{width:100%;margin:16px 16px 0;max-width:400px;background-color:#FFF;border:1px solid #E5E5E5;padding:16px;text-align:center}#login-page #login-box{width:100%;margin:16px;max-width:400px;background-color:#FFF;display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column nowrap;border:1px solid #E5E5E5}#login-page #login-box #logo-area{display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column nowrap;padding:16px;border-bottom:1px solid #E5E5E5}#login-page #login-box #logo-area #logo{font-size:3em;font-weight:100;color:#F44336}#login-page #login-box #logo-area #logo span{margin-right:8px}#login-page #login-box #logo-area #tagline{font-weight:100;color:#F44336}#login-page #login-box #input-area{padding:8px;border-bottom:1px solid #E5E5E5}#login-page #login-box #input-area .input-field{display:-webkit-box;display:flex;-webkit-box-align:baseline;align-items:baseline;padding:8px}#login-page #login-box #input-area .input-field p{color:#6F757A;font-size:.9em;margin-right:16px;min-width:65px}#login-page #login-box #input-area .input-field input{color:#000;padding:8px;border:1px solid #E5E5E5;-webkit-box-flex:1;flex:1 0;font-size:.9em}#login-page #login-box #input-area .input-field a{display:block;cursor:pointer;color:#6F757A;text-align:center;font-size:.9em;-webkit-box-flex:1;flex:1 0}#login-page #login-box #input-area .input-field a i{margin-right:8px;color:#6F757A}#login-page #login-box #input-area .input-field a:hover{color:#F44336}#login-page #login-box #button-area{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap;padding:16px}#login-page #login-box #button-area a{color:#535A60;text-transform:uppercase;background-color:#FFF;-webkit-box-flex:1;flex:1 0;text-align:center}#login-page #login-box #button-area a.button{cursor:pointer}#login-page #login-box #button-area a.button:hover{color:#F44336}#main-page{background-color:#F5F5F5;display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column nowrap;height:auto;min-height:100vh}#main-page #header{background-color:#FFF;box-shadow:0 0 3px rgba(0,0,0,0.3);left:0;position:fixed;right:0;top:0;z-index:99;display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row wrap}#main-page #header #n-selected{line-height:70px;font-size:1.3em;color:#6F757A;-webkit-box-flex:1;flex:1 0;border-right:1px solid #E5E5E5;padding:0 32px}#main-page #header #logo{border-left:1px solid #E5E5E5;cursor:default;flex-shrink:0;border-right:1px solid #E5E5E5;color:#000;cursor:pointer;font-size:.9em;overflow:hidden;padding:0 16px;line-height:70px;display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap;font-size:1.5em;font-weight:100;color:#F44336}#main-page #header #logo:hover{color:#F44336}#main-page #header #logo span{margin-right:8px}#main-page #header #logo:hover{background-color:#F5F5F5}#main-page #header #search-box{-webkit-box-align:center;align-items:center;border-right:1px solid #E5E5E5;display:-webkit-box;display:flex;-webkit-box-flex:1;flex:1 0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap;padding:16px;width:100%}#main-page #header #search-box .button,#main-page #header #search-box input{background-color:#FFF;border:1px solid #E5E5E5;color:#000;font-size:.9em;padding:8px}#main-page #header #search-box .button{cursor:pointer;color:#535A60}#main-page #header #search-box .button:hover{color:#F44336}#main-page #header #search-box input{border-right:0;-webkit-box-flex:1;flex:1 0;padding:8px 16px;min-width:0;width:100%}#main-page #header #header-menu{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap}#main-page #header #header-menu a{line-height:70px;padding:0 16px;color:#535A60;font-size:.9em;cursor:pointer}#main-page #header #header-menu a:not(:last-child){border-right:1px solid #E5E5E5}#main-page #header #header-menu a span{margin-left:4px}#main-page #header #header-menu a:hover{color:#F44336;background-color:#F5F5F5}#main-page #main{margin-top:70px;display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column nowrap}#main-page #main #input-bookmark{align-self:center;max-width:600px;width:100%;display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column nowrap;margin:32px 16px 20px;background-color:#FFF;outline:1px solid #E5E5E5}#main-page #main #input-bookmark>p{color:#000;font-weight:600;text-transform:uppercase;padding:16px}#main-page #main #input-bookmark>p.error-message{color:#F44336;font-size:.9em;border-bottom:1px solid #E5E5E5;font-weight:500;text-transform:none}#main-page #main #input-bookmark input[type=text],#main-page #main #input-bookmark textarea{outline:1px solid #E5E5E5;color:#000;font-size:.9em;padding:12px 16px}#main-page #main #input-bookmark textarea{resize:vertical;min-height:4em;max-height:10em}#main-page #main #input-bookmark .button-area{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap;padding:8px}#main-page #main #input-bookmark .button-area a{color:#535A60;text-transform:uppercase;padding:8px;background-color:#FFF;font-size:.9em}#main-page #main #input-bookmark .button-area a.button{cursor:pointer}#main-page #main #input-bookmark .button-area a.button:hover{color:#F44336}#main-page #main #search-parameter{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row wrap;padding:0 8px}#main-page #main #search-parameter a{display:block;margin:8px;padding:8px;font-size:.9em;background-color:#6F757A;color:white;border-radius:16px;cursor:pointer}#main-page #main #search-parameter a:hover{background-color:#F44336;text-decoration:line-through}#main-page #main #grid{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap;padding:4px}#main-page #main #grid>.column{-webkit-box-flex:1;flex:1 0;padding:12px;max-width:100%}#main-page #main #grid>.column>*:not(:last-child){margin-bottom:24px}#main-page #main #message-bar{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column;-webkit-box-align:center;align-items:center;padding:32px;-webkit-box-pack:center;justify-content:center;position:absolute;top:50%;left:0;width:100%;margin-top:-60px;height:120px}#main-page #main #message-bar i{color:#6F757A;font-size:3em}@media screen and (max-width:800px){#main-page #header{position:static}#main-page #header #header-menu>a>span{display:none}#main-page #main{margin-top:0}#main-page #main .bookmark-menu>a>span{display:none}}@media screen and (max-width:740px){#main-page #main #input-bookmark{width:auto;align-self:auto}}@media screen and (max-width:500px){#main-page #header #logo{display:none}}#cache-page{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column nowrap;-webkit-box-align:center;align-items:center;height:auto;min-height:100vh}#cache-page a{color:#F44336}#cache-page a:visited{color:#F44336}#cache-page a:hover{text-decoration:underline}#cache-page>*{width:100%;max-width:864px}#cache-page #menu{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap;max-width:864px;border-bottom:1px solid #E5E5E5}#cache-page #menu a{-webkit-box-flex:1;flex:1 0;font-size:.9em;text-align:center;color:#535A60;padding:16px;cursor:pointer}#cache-page #menu a i{margin-right:4px}#cache-page #menu a:not(:last-child){border-right:1px solid #E5E5E5}#cache-page #menu a:visited{color:#535A60}#cache-page #menu a:hover{color:#F44336;text-decoration:none}#cache-page #metadata{padding:32px;border-bottom:1px solid #E5E5E5}#cache-page #metadata a{font-size:.9em;display:block}#cache-page #metadata h3{font-size:2em;margin:8px 0}#cache-page #metadata p{font-size:.9em;color:#000}#cache-page #content{padding:16px 32px 32px}#cache-page #content *{margin-top:16px;line-height:180%;overflow:auto}#cache-page #content pre,#cache-page #content code{font-family:'Ubuntu Mono','Courier New',Courier,monospace}#cache-page.dark-mode{background-color:#222;color:white}#cache-page.dark-mode #menu a{color:white}#cache-page.dark-mode #menu a:visited{color:white}#cache-page.dark-mode #menu a:hover{color:#F44336;text-decoration:none}#cache-page.dark-mode #metadata p{color:white}#dialog-overlay{position:fixed;z-index:101;display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column;background-color:rgba(0,0,0,0.5);top:0;left:0;right:0;bottom:0;overflow:hidden;-webkit-box-pack:center;justify-content:center;padding:32px}#dialog-overlay #dialog{display:-webkit-box;display:flex;background-color:#FFF;align-self:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column;border:1px solid #E5E5E5;max-width:500px}#dialog-overlay #dialog #dialog-title{color:#000;font-weight:600;text-transform:uppercase;padding:16px;font-size:1em;border-bottom:1px solid #E5E5E5}#dialog-overlay #dialog #dialog-content{padding:16px}#dialog-overlay #dialog #dialog-button{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap;padding:8px;border-top:1px solid #E5E5E5}#dialog-overlay #dialog #dialog-button a{color:#535A60;text-transform:uppercase;padding:8px;background-color:#FFF}#dialog-overlay #dialog #dialog-button a.button{cursor:pointer}#dialog-overlay #dialog #dialog-button a.button:not(:last-child){margin-right:16px}#dialog-overlay #dialog #dialog-button a.button:hover{color:#F44336}.error-message{color:#F44336 !important;font-size:.9em}.error-message::before{content:"\f071";font-weight:900;margin-right:8px;font-family:"Font Awesome 5 Free"}.bookmark{background-color:#FFF;border:1px solid #E5E5E5;position:relative}.bookmark .checkbox{z-index:9;right:0;opacity:0;position:absolute;outline:1px solid #E5E5E5;color:#535A60;background-color:#FFF;width:32px;line-height:32px;text-align:center;display:block;cursor:pointer;font-size:.9em}.bookmark .checkbox:hover{color:#F44336 !important}.bookmark .bookmark-metadata{padding:16px;display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column nowrap;border-bottom:1px solid #E5E5E5}.bookmark .bookmark-metadata .bookmark-time{color:#6F757A;font-size:.9em;margin-bottom:8px}.bookmark .bookmark-metadata .bookmark-title{color:#000;font-size:1.3em;font-weight:600}.bookmark .bookmark-metadata .bookmark-url{color:#6F757A;font-size:.9em;margin-bottom:8px;margin-bottom:0;margin-top:8px;max-height:2.6em;line-height:1.3em;text-overflow:ellipsis;overflow:hidden}.bookmark .bookmark-metadata.has-image{min-height:250px;background-position:center;background-repeat:no-repeat;background-size:cover;-webkit-box-pack:end;justify-content:flex-end;position:relative}.bookmark .bookmark-metadata.has-image::before{content:"";background-color:rgba(0,0,0,0.5);position:absolute;top:0;left:0;right:0;bottom:0;z-index:0}.bookmark .bookmark-metadata.has-image .bookmark-time,.bookmark .bookmark-metadata.has-image .bookmark-url{z-index:2;color:white;text-shadow:1px 1px 1px rgba(0,0,0,0.5)}.bookmark .bookmark-metadata.has-image .bookmark-title{z-index:2;color:white;text-shadow:1px 1px 1px rgba(0,0,0,0.5)}.bookmark .bookmark-metadata:hover .bookmark-title{text-decoration:underline}.bookmark .bookmark-excerpt{padding:16px 16px 0;color:#000}.bookmark .bookmark-tags{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row wrap;padding:12px 12px 0;margin-bottom:-4px}.bookmark .bookmark-tags a{cursor:pointer;font-size:.9em;padding:4px;color:#F44336 !important}.bookmark .bookmark-tags a::before{content:"#"}.bookmark .bookmark-tags a:hover{text-decoration:underline}.bookmark .bookmark-menu{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap;border-top:1px solid #E5E5E5;visibility:hidden;margin-top:16px}.bookmark .bookmark-menu:nth-child(3){border-top:0;margin-top:0}.bookmark .bookmark-menu a{cursor:pointer;display:block;-webkit-box-flex:1;flex:1 0;color:#535A60 !important;padding:8px;font-size:.9em;text-align:center}.bookmark .bookmark-menu a span{margin-left:4px}.bookmark .bookmark-menu a:not(:last-child){border-right:1px solid #E5E5E5}.bookmark .bookmark-menu a:hover{color:#F44336 !important}.bookmark:hover .checkbox{opacity:1}.bookmark:hover .bookmark-menu{visibility:visible}.bookmark.checked{border:1px solid #9E9E9E;outline:6px solid #9E9E9E}.bookmark.checked .checkbox{opacity:1;outline:0;background-color:#9E9E9E;color:white} \ No newline at end of file +.header-link{border-right:1px solid #E5E5E5;color:#000;cursor:pointer;font-size:.9em;line-height:70px;overflow:hidden;padding:0 16px}.header-link:hover{color:#F44336}*{border-width:0;box-sizing:border-box;font-family:"Source Sans Pro",sans-serif;margin:0;padding:0;text-decoration:none;-webkit-hyphens:auto;hyphens:auto}.spacer{-webkit-box-flex:1;flex:1 0}#login-page{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column nowrap;-webkit-box-align:center;align-items:center;height:100vh;background-color:#F5F5F5;-webkit-box-pack:center;justify-content:center}#login-page>.error-message{width:100%;margin:16px 16px 0;max-width:400px;background-color:#FFF;border:1px solid #E5E5E5;padding:16px;text-align:center}#login-page #login-box{width:100%;margin:16px;max-width:400px;background-color:#FFF;display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column nowrap;border:1px solid #E5E5E5}#login-page #login-box #logo-area{display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column nowrap;padding:16px;border-bottom:1px solid #E5E5E5}#login-page #login-box #logo-area #logo{font-size:3em;font-weight:100;color:#F44336}#login-page #login-box #logo-area #logo span{margin-right:8px}#login-page #login-box #logo-area #tagline{font-weight:100;color:#F44336}#login-page #login-box #input-area{padding:8px;border-bottom:1px solid #E5E5E5}#login-page #login-box #input-area .input-field{display:-webkit-box;display:flex;-webkit-box-align:baseline;align-items:baseline;padding:8px}#login-page #login-box #input-area .input-field p{color:#6F757A;font-size:.9em;margin-right:16px;min-width:65px}#login-page #login-box #input-area .input-field input{color:#000;padding:8px;border:1px solid #E5E5E5;-webkit-box-flex:1;flex:1 0;font-size:.9em}#login-page #login-box #input-area .input-field a{display:block;cursor:pointer;color:#6F757A;text-align:center;font-size:.9em;-webkit-box-flex:1;flex:1 0}#login-page #login-box #input-area .input-field a i{margin-right:8px;color:#6F757A}#login-page #login-box #input-area .input-field a:hover{color:#F44336}#login-page #login-box #button-area{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap;padding:16px}#login-page #login-box #button-area a{color:#535A60;text-transform:uppercase;background-color:#FFF;-webkit-box-flex:1;flex:1 0;text-align:center}#login-page #login-box #button-area a.button{cursor:pointer}#login-page #login-box #button-area a.button:hover{color:#F44336}#main-page{background-color:#F5F5F5;display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column nowrap;height:auto;min-height:100vh}#main-page #header{background-color:#FFF;box-shadow:0 0 3px rgba(0,0,0,0.3);left:0;position:fixed;right:0;top:0;z-index:99;display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row wrap}#main-page #header #n-selected{line-height:70px;font-size:1.3em;color:#6F757A;-webkit-box-flex:1;flex:1 0;border-right:1px solid #E5E5E5;padding:0 32px}#main-page #header #logo{border-left:1px solid #E5E5E5;cursor:default;flex-shrink:0;border-right:1px solid #E5E5E5;color:#000;cursor:pointer;font-size:.9em;overflow:hidden;padding:0 16px;line-height:70px;display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap;font-size:1.5em;font-weight:100;color:#F44336}#main-page #header #logo:hover{color:#F44336}#main-page #header #logo span{margin-right:8px}#main-page #header #logo:hover{background-color:#F5F5F5}#main-page #header #search-box{-webkit-box-align:center;align-items:center;border-right:1px solid #E5E5E5;display:-webkit-box;display:flex;-webkit-box-flex:1;flex:1 0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap;padding:16px;width:100%}#main-page #header #search-box .button,#main-page #header #search-box input{background-color:#FFF;border:1px solid #E5E5E5;color:#000;font-size:.9em;padding:8px}#main-page #header #search-box .button{cursor:pointer;color:#535A60}#main-page #header #search-box .button:hover{color:#F44336}#main-page #header #search-box input{border-right:0;-webkit-box-flex:1;flex:1 0;padding:8px 16px;min-width:0;width:100%}#main-page #header #header-menu{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap}#main-page #header #header-menu a{line-height:70px;padding:0 16px;color:#535A60;font-size:.9em;cursor:pointer}#main-page #header #header-menu a:not(:last-child){border-right:1px solid #E5E5E5}#main-page #header #header-menu a span{margin-left:4px}#main-page #header #header-menu a:hover{color:#F44336;background-color:#F5F5F5}#main-page #main{margin-top:70px;display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column nowrap}#main-page #main #input-bookmark{align-self:center;max-width:600px;width:100%;display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column nowrap;margin:32px 16px 20px;background-color:#FFF;outline:1px solid #E5E5E5}#main-page #main #input-bookmark>p{color:#000;font-weight:600;text-transform:uppercase;padding:16px}#main-page #main #input-bookmark>p.error-message{color:#F44336;font-size:.9em;border-bottom:1px solid #E5E5E5;font-weight:500;text-transform:none}#main-page #main #input-bookmark input[type=text],#main-page #main #input-bookmark textarea{outline:1px solid #E5E5E5;color:#000;font-size:.9em;padding:12px 16px}#main-page #main #input-bookmark textarea{resize:vertical;min-height:4em;max-height:10em}#main-page #main #input-bookmark .button-area{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap;padding:8px}#main-page #main #input-bookmark .button-area a{color:#535A60;text-transform:uppercase;padding:8px;background-color:#FFF;font-size:.9em}#main-page #main #input-bookmark .button-area a.button{cursor:pointer}#main-page #main #input-bookmark .button-area a.button:hover{color:#F44336}#main-page #main #search-parameter{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row wrap;padding:0 8px}#main-page #main #search-parameter a{display:block;margin:8px;padding:8px;font-size:.9em;background-color:#6F757A;color:white;border-radius:16px;cursor:pointer}#main-page #main #search-parameter a:hover{background-color:#F44336;text-decoration:line-through}#main-page #main #grid{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap;padding:4px}#main-page #main #grid>.column{-webkit-box-flex:1;flex:1 0;padding:12px;max-width:100%}#main-page #main #grid>.column>*:not(:last-child){margin-bottom:24px}#main-page #main #message-bar{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column;-webkit-box-align:center;align-items:center;padding:32px;-webkit-box-pack:center;justify-content:center;position:absolute;top:50%;left:0;width:100%;margin-top:-60px;height:120px}#main-page #main #message-bar i{color:#6F757A;font-size:3em}@media screen and (max-width:800px){#main-page #header{position:static}#main-page #header #header-menu>a>span{display:none}#main-page #main{margin-top:0}#main-page #main .bookmark-menu>a>span{display:none}}@media screen and (max-width:740px){#main-page #main #input-bookmark{width:auto;align-self:auto}}@media screen and (max-width:500px){#main-page #header #logo{display:none}}#cache-page{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column nowrap;-webkit-box-align:center;align-items:center;height:auto;min-height:100vh}#cache-page a{color:#F44336}#cache-page a:visited{color:#F44336}#cache-page a:hover{text-decoration:underline}#cache-page>*{width:100%;max-width:864px}#cache-page #menu{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap;max-width:864px;border-bottom:1px solid #E5E5E5}#cache-page #menu a{-webkit-box-flex:1;flex:1 0;font-size:.9em;text-align:center;color:#535A60;padding:16px;cursor:pointer}#cache-page #menu a i{margin-right:4px}#cache-page #menu a:not(:last-child){border-right:1px solid #E5E5E5}#cache-page #menu a:visited{color:#535A60}#cache-page #menu a:hover{color:#F44336;text-decoration:none}#cache-page #metadata{padding:32px;border-bottom:1px solid #E5E5E5}#cache-page #metadata a{font-size:.9em;display:block}#cache-page #metadata h3{font-size:2em;margin:8px 0}#cache-page #metadata p{font-size:.9em;color:#000}#cache-page #content{padding:16px 32px 32px}#cache-page #content *{margin-top:16px;line-height:180%;overflow:auto}#cache-page #content pre,#cache-page #content code{font-family:'Ubuntu Mono','Courier New',Courier,monospace}#cache-page.dark-mode{background-color:#222;color:white}#cache-page.dark-mode #menu a{color:white}#cache-page.dark-mode #menu a:visited{color:white}#cache-page.dark-mode #menu a:hover{color:#F44336;text-decoration:none}#cache-page.dark-mode #metadata p{color:white}#dialog-overlay{position:fixed;z-index:101;display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column;background-color:rgba(0,0,0,0.5);top:0;left:0;right:0;bottom:0;overflow:hidden;-webkit-box-pack:center;justify-content:center;padding:32px}#dialog-overlay #dialog{display:-webkit-box;display:flex;background-color:#FFF;align-self:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column;border:1px solid #E5E5E5;max-width:500px}#dialog-overlay #dialog #dialog-title{color:#000;font-weight:600;text-transform:uppercase;padding:16px;font-size:1em;border-bottom:1px solid #E5E5E5}#dialog-overlay #dialog #dialog-content{padding:16px}#dialog-overlay #dialog #dialog-button{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap;padding:8px;border-top:1px solid #E5E5E5}#dialog-overlay #dialog #dialog-button a{color:#535A60;text-transform:uppercase;padding:8px;background-color:#FFF}#dialog-overlay #dialog #dialog-button a.button{cursor:pointer}#dialog-overlay #dialog #dialog-button a.button:not(:last-child){margin-right:16px}#dialog-overlay #dialog #dialog-button a.button:hover{color:#F44336}.error-message{color:#F44336 !important;font-size:.9em}.error-message::before{content:"\f071";font-weight:900;margin-right:8px;font-family:"Font Awesome 5 Free"}.bookmark{background-color:#FFF;border:1px solid #E5E5E5;position:relative}.bookmark .checkbox{z-index:9;right:0;opacity:0;position:absolute;outline:1px solid #E5E5E5;color:#535A60;background-color:#FFF;width:32px;line-height:32px;text-align:center;display:block;cursor:pointer;font-size:.9em}.bookmark .checkbox:hover{color:#F44336 !important}.bookmark .bookmark-metadata{padding:16px;display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column nowrap;border-bottom:1px solid #E5E5E5}.bookmark .bookmark-metadata .bookmark-time{color:#6F757A;font-size:.9em;margin-bottom:8px}.bookmark .bookmark-metadata .bookmark-title{color:#000;font-size:1.3em;font-weight:600}.bookmark .bookmark-metadata .bookmark-url{color:#6F757A;font-size:.9em;margin-bottom:8px;margin-bottom:0;margin-top:8px;max-height:2.6em;line-height:1.3em;text-overflow:ellipsis;overflow:hidden}.bookmark .bookmark-metadata.has-image{min-height:250px;background-position:center;background-repeat:no-repeat;background-size:cover;-webkit-box-pack:end;justify-content:flex-end;position:relative}.bookmark .bookmark-metadata.has-image::before{content:"";background-color:rgba(0,0,0,0.5);position:absolute;top:0;left:0;right:0;bottom:0;z-index:0}.bookmark .bookmark-metadata.has-image .bookmark-time,.bookmark .bookmark-metadata.has-image .bookmark-url{z-index:2;color:white;text-shadow:1px 1px 1px rgba(0,0,0,0.5)}.bookmark .bookmark-metadata.has-image .bookmark-title{z-index:2;color:white;text-shadow:1px 1px 1px rgba(0,0,0,0.5)}.bookmark .bookmark-metadata:hover .bookmark-title{text-decoration:underline}.bookmark .bookmark-excerpt{padding:16px 16px 0;color:#000}.bookmark .bookmark-tags{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row wrap;padding:12px 12px 0;margin-bottom:-4px}.bookmark .bookmark-tags a{cursor:pointer;font-size:.9em;padding:4px;color:#F44336 !important}.bookmark .bookmark-tags a::before{content:"#"}.bookmark .bookmark-tags a:hover{text-decoration:underline}.bookmark .bookmark-menu{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap;border-top:1px solid #E5E5E5;visibility:hidden;margin-top:16px}.bookmark .bookmark-menu:nth-child(3){border-top:0;margin-top:0}.bookmark .bookmark-menu a{cursor:pointer;display:block;-webkit-box-flex:1;flex:1 0;color:#535A60 !important;padding:8px;font-size:.9em;text-align:center}.bookmark .bookmark-menu a span{margin-left:4px}.bookmark .bookmark-menu a:not(:last-child){border-right:1px solid #E5E5E5}.bookmark .bookmark-menu a:hover{color:#F44336 !important}.bookmark:hover .checkbox{opacity:1}.bookmark:hover .bookmark-menu{visibility:visible}.bookmark.checked{border:1px solid #9E9E9E;outline:6px solid #9E9E9E}.bookmark.checked .checkbox{opacity:1;outline:0;background-color:#9E9E9E;color:white}@supports not ((-webkit-hyphens: auto) or (hyphens: auto)){.bookmark .bookmark-title,.bookmark .bookmark-url,.bookmark .bookmark-excerpt{word-break:break-all}} \ No newline at end of file diff --git a/view/less/stylesheet.less b/view/less/stylesheet.less index d69b91a6..20272685 100644 --- a/view/less/stylesheet.less +++ b/view/less/stylesheet.less @@ -652,4 +652,11 @@ color: white; } } + @supports not (hyphens: auto) { + .bookmark-title, + .bookmark-url, + .bookmark-excerpt { + word-break: break-all; + } + } } \ No newline at end of file From d735ca1f8b04db50b153fc7c155692a4f5de6f41 Mon Sep 17 00:00:00 2001 From: Radhi Fadlillah Date: Wed, 7 Mar 2018 08:01:47 +0700 Subject: [PATCH 10/14] Remove word-wrap and set column max-width --- assets/assets.go | 6 +++--- view/css/stylesheet.css | 2 +- view/index.html | 8 +++++++- view/less/stylesheet.less | 11 ++++------- 4 files changed, 15 insertions(+), 12 deletions(-) diff --git a/assets/assets.go b/assets/assets.go index 7364bfba..6df9a971 100755 --- a/assets/assets.go +++ b/assets/assets.go @@ -1,4 +1,4 @@ -// generaTed by fileb0x at "2018-03-07 07:33:00.175264747 +0700 WIB" from config file "filebox.json" +// generaTed by fileb0x at "2018-03-07 07:57:27.581059864 +0700 WIB" from config file "filebox.json" package assets @@ -41,13 +41,13 @@ var FileCSSFontawesomeCSS = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4 var FileCSSSourceSansProCSS = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x95\x41\x6f\x9b\x30\x14\xc7\xef\x7c\x8a\x27\xf5\x40\x12\xc5\x21\x5d\x27\x6b\xcb\x0e\xdb\x3a\xf5\x50\xa9\xd3\xaa\xf1\x09\x5c\x78\x30\x4b\xc6\x46\xcf\x26\x19\x9a\xf6\xdd\x27\x08\x74\x6e\xd4\x1e\x42\xa9\x8f\xf6\xb3\xdf\xff\x17\x87\x9f\x5e\xb2\x02\x6b\x1a\xca\x90\x59\xa1\x2d\xab\xc9\xb0\xab\xed\x16\x18\x28\xe1\xa4\x86\x55\x12\x45\x5f\x0a\xa3\x1d\x2b\x44\x86\xf0\x27\x02\x00\x18\xd6\x95\x54\xed\x0e\xe2\xb4\xbf\x0e\xa9\xd0\x16\xee\xc9\xc4\x9f\xfe\x9f\xb1\xae\x55\xb8\x03\x6d\xa8\x12\xca\xdb\x3f\xa0\x2c\x7f\xb9\x1d\x5c\x6d\xb7\xc7\x5d\x4b\xd9\x0e\x1a\x52\x8b\x78\xb3\x49\x0e\xf8\xd0\x9d\xb2\xc9\x29\xd8\xfe\xf2\x92\xf5\x58\x1d\xe2\x06\x8d\x8b\x97\xc7\xeb\xc9\x0a\x6e\x6f\x3e\xc2\x37\x53\xd5\xc2\xc1\x77\x93\xa3\xed\xc8\x1f\x3b\x2b\x93\x09\xb5\x38\x25\x85\xbb\x8e\x22\x5e\xae\x9f\xd6\xbb\xf2\x3d\x19\xf6\x58\x3d\x9f\xeb\xf3\x85\xc4\x42\xfe\x8e\x97\x50\x74\x3f\xdd\x2d\x62\xac\x1e\x30\xcf\x31\x67\xa6\x46\xed\xda\x1a\xbb\xc6\x3d\x36\x67\xb7\x37\x1f\x46\xda\x33\xa3\x0e\xa6\x28\xde\x79\x29\xc3\xba\xef\x9c\x36\x35\x52\xff\x16\xa4\xe1\x9a\xcc\xc1\x22\xd9\x57\xe4\x9c\xc4\x0c\x29\xf3\xf4\x77\xce\x6f\xef\xa8\x41\xef\x89\x52\x51\x08\x92\x6b\xf8\xaa\x73\x32\x32\x5f\x83\xfc\x91\x4e\xcc\xb1\xfb\xf2\xe2\xc9\x9f\xec\xa5\xda\x7d\xe9\x7d\x4e\x77\x58\x8a\xac\x1d\xa3\xfe\x46\x51\xf4\x8c\x28\x84\x65\xa3\x04\x05\x92\xe5\xfd\x54\x59\x06\xcc\x19\x84\xf9\x79\xec\xf4\xa2\x32\x5e\x7d\x1a\x5f\x08\x71\xc6\xb8\x10\xf2\xf8\x59\x6f\x25\xd0\x98\x11\x42\xa2\x31\x6b\x66\x91\x78\xb0\x89\xc3\xa7\x4a\xc4\x67\x99\x38\x29\x56\xf2\xda\xa8\xfc\x45\x83\xfc\x03\xe7\xd3\x85\xd0\x87\x07\x9a\x3b\xfc\x8d\xe7\x0e\x0f\x34\x77\xf8\x6b\xe6\xce\xbf\x00\x00\x00\xff\xff\x1d\xa7\xb6\x21\x9e\x09\x00\x00") // FileCSSStylesheetCSS is "css/stylesheet.css" -var FileCSSStylesheetCSS = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x5b\x6d\x6f\xe3\xb8\x11\xfe\x2b\x6c\x82\xc3\x26\x8b\xc8\x90\x93\x38\x9b\x95\xd0\xe0\x16\xc5\xe5\x5b\x8b\x02\x87\x7e\x6a\xfb\x81\x96\x68\x8b\x8d\x44\x0a\x14\xb5\x76\xd6\xc8\x7f\x2f\xf8\x22\x89\xa4\xa8\x37\xef\x5e\xb6\x85\x71\x17\x59\x26\x87\x43\xce\xf0\x99\x67\x86\xdc\x55\x86\x60\x8a\x58\x90\x63\xf2\x72\xda\x52\x26\x9e\x19\xde\x67\x3c\x5a\x97\x47\x50\xd1\x1c\xa7\xe0\xf2\xb7\x8d\xf8\xc4\x09\xcd\x29\x8b\x2e\xc3\x30\x8c\x93\x9a\x55\x94\x45\x25\xc5\x84\x23\x16\xef\x28\xe1\x41\x85\xbf\xa1\x68\xf5\x19\x15\x71\x8e\x09\x0a\x32\x24\xc5\x7c\x0a\xcb\x63\x4c\xbf\x22\xb6\xcb\xe9\x21\xca\x70\x9a\x22\x12\x97\x30\x4d\x31\xd9\x47\x21\x58\x3f\x94\xc7\x37\x53\x89\x28\x13\x8d\x4f\x7a\xac\xe7\xfb\xfb\xbb\xbb\x87\xb7\x8f\x8d\x6a\x07\x9c\xf2\x2c\x0a\xe3\x2d\x3d\x8a\xf1\x84\x0c\xfd\xcb\x96\x1e\x95\x1a\x3b\x58\xe0\xfc\x35\xba\xf8\x9d\xd6\x2c\x41\xe0\x77\x48\x2a\xf0\x77\x46\x2f\x6e\x2a\x48\xaa\xa0\x42\x0c\xef\xe2\x02\xb2\x3d\x26\x51\xd8\x29\x12\x73\x74\xe4\x41\x8a\x12\xca\x20\xc7\x94\x44\x84\x12\x14\x07\x07\xb4\x7d\xc1\x3c\xc8\x5e\xcb\x0c\x91\x2a\x82\x35\xa7\xb1\xf9\xe5\x6d\x55\x95\x30\x41\xec\xd4\xb4\x14\x8a\xed\x72\x74\x8c\xd6\xb1\xfa\x03\xc2\xb7\xcb\x9c\xee\x31\x09\x4a\xb8\x47\xa7\x14\x57\x65\x0e\x5f\x23\xa3\x7d\xdc\xbc\x13\x1d\x62\x53\x10\x65\x18\x11\x1e\x7d\x45\x8c\xe3\x04\xe6\xd6\x6f\x29\x66\x28\xd1\x9a\xb2\x02\xe6\x72\xb8\x40\x2e\x72\x42\xf3\xba\x20\x80\xd0\x03\x83\xa5\xd5\x09\xe6\x78\x4f\xa2\x04\x49\xa3\xc9\x2f\x01\xe6\xa8\xa8\x9a\x57\xda\x66\xeb\x30\xfc\x9a\xc5\x5b\x98\xbc\xec\x19\xad\x49\x1a\x34\xd6\xd8\x88\x8f\x25\xb1\x84\xc9\x4b\xd3\xfb\x3f\x75\xc5\xf1\xee\x35\x48\x28\xe1\x42\x6f\xf5\xda\x9c\xfe\xd3\x0a\x31\x46\x59\x50\xa0\xaa\x12\xab\xa1\xcc\xb9\x0e\xc3\x5f\x1a\x93\x08\x7f\x90\x4e\x01\xc2\xb8\x80\x47\x6d\xf0\xfb\x50\x78\x91\x47\xa1\xe7\xe7\x58\xd9\xdf\xe3\xae\x8d\x6d\x85\x34\x65\x5e\x73\xfa\xa6\x5a\x40\x3f\x6f\xe9\x71\x40\xa5\x99\xba\xbc\xbf\x75\x87\x66\x3f\x30\x3d\xf9\x48\x03\xc8\x10\x5c\xe6\x8a\x53\x9e\xf3\xc3\x27\x66\x59\xaf\xdd\xe3\x9c\xd3\xe2\x9c\xc9\xaa\xc7\x53\x87\x53\x77\xa8\x50\x70\x71\x68\x5d\x3e\xb6\x31\x67\xa6\x4c\x50\x95\x90\x9c\x94\xab\x68\xe4\x7c\x2c\x8f\x73\x7a\x73\xb8\x17\x40\x79\x3a\x4f\x0d\x4c\xca\x9a\x2b\x43\x36\x4b\xf5\xf8\x1d\x2b\xd5\x89\x03\x2b\xf5\xbc\xc3\x28\x4f\xcf\x71\x92\x2d\xac\x90\x98\x98\xe5\x26\xed\x4b\x43\xd9\xa5\xca\x80\xb2\x09\x0b\x0f\xcf\x9f\x36\x9f\xbe\xb8\x61\xc7\x32\x82\xda\xb5\x98\xe8\x5d\xfb\xb0\x39\x63\x3c\xf9\x7c\x32\xc2\x5e\x7f\xa5\x3d\xb8\x33\x12\x0a\x1c\x8d\x17\x2b\xd4\x6d\xda\x6d\x4e\x93\x17\x37\x0c\xdb\xab\xd3\x83\x3c\x77\xbd\x66\xc6\xac\x79\x9a\x01\xdc\xdb\x04\xb6\x3e\xcb\x45\x7a\xa9\xc0\x90\x94\x6d\xcd\x39\x25\x67\x20\x9b\x46\xab\x8c\x32\xfc\x8d\x12\x3e\x1f\xaf\x18\x3d\xf8\xc0\x6a\x8e\x86\x00\x36\xb3\xda\xdc\x6d\xbe\x3c\x68\xf6\xc1\x19\x24\xd5\x8e\xb2\x22\xaa\xcb\x12\xb1\x04\x56\x68\x20\xce\x8c\xb9\xd8\xdc\x48\xe7\x28\xb4\x52\xdf\x4e\xb6\x4b\x2d\xea\xeb\xb7\x57\x01\x1b\xee\x33\x48\x28\xde\x3f\x6c\x6a\xa2\x23\xf9\x9c\x00\x09\x93\xf8\x18\x2a\x83\x4b\xc5\x4c\x7d\xaa\x4b\xea\x71\x0c\xaa\x0c\xa6\xf4\x10\x85\x20\x04\x77\xe5\x11\xb0\xfd\x16\x5e\x85\x37\xf2\xb3\xba\xbb\x8e\x73\xb4\xe3\x82\x67\xd2\x0a\x4b\xbd\x76\xf8\x88\xd2\x58\x6d\x91\x30\xe6\xb4\x8c\xc2\xf8\x5b\x80\x49\x8a\x8e\xd1\xe7\xcf\x67\xad\xc4\x79\x9e\x2b\x96\xc1\x33\x53\x70\x49\x82\x0a\xe5\x28\xe1\x28\x3d\xf5\x78\x7c\x07\x20\xeb\x95\x88\xa0\x36\xe0\x8c\x79\xe5\x44\x6a\xd1\x25\x04\x77\xb7\x62\x0b\x79\xf4\x92\x01\x5c\x8b\x91\xab\xea\x49\x50\x94\xef\xa6\x68\x07\xeb\x9c\xab\x09\x57\x19\x13\x59\xc5\xa4\x06\xb3\x93\x9b\xf1\x5c\xa6\x9f\xfb\xbc\x3b\x18\x99\x46\xda\x4c\xd3\x9c\x81\xa5\x9e\xd8\xcc\x76\xe3\x21\x12\x34\x2e\x7b\x08\x0f\xbc\xfd\x2a\x04\x59\x92\x49\x8a\xbe\x84\x97\x4e\x58\x7d\x91\x71\x5c\x9f\xfe\x23\xa3\x48\xdc\xe5\x21\x13\xcb\x01\x34\xfa\xde\x4c\x34\x53\x64\x66\x61\x0e\x65\xec\x0a\x67\x1b\x58\x3c\x6e\x96\x82\x27\x3f\x5b\x51\x11\x70\xa6\x8c\xd9\x5e\xd9\x9f\xb8\xe9\x08\xe1\xa8\x5d\x8d\xa9\x01\x87\x46\x86\x53\x76\xd1\x95\x8c\x02\x91\xfa\xdd\x69\xc8\x94\x42\x00\xf6\x11\xdd\x41\x2f\x9b\x95\x38\x26\x77\xa9\xc1\xd4\x68\x11\xa1\xfc\x2a\xca\x61\xc5\x83\x24\xc3\x79\x7a\x3d\x51\x60\x9a\x96\x68\xe1\x8c\x0c\x02\xf7\x03\xee\x67\x2b\xe2\xf1\x9a\xc1\xf2\x86\x25\x4e\x3c\x36\xe3\x89\x60\x7d\x36\xa2\x7f\x17\x5d\xe9\xa9\xd4\x90\xe6\x2d\xa5\x2f\x05\x64\x2f\x27\x85\x7c\x15\xca\x77\x0d\xf0\x75\x05\x8b\x07\x59\xb0\x30\xea\x1a\xef\x4f\xb7\x74\x25\x45\xc4\x76\x55\xdc\xb9\x1d\xae\xa1\xd0\x9a\x0b\x2f\x9d\x70\x0f\xdf\x2a\x3c\x95\x27\x17\xaf\x74\xd8\x7b\x08\x47\x28\xb6\x4d\xde\x27\xc7\x70\x4a\x58\xb6\x53\x39\x3b\x66\x22\x1b\xb7\x74\xdc\xf4\x75\x24\x94\xa0\x49\x8d\x14\xbe\xfd\x93\xbf\x96\xe8\xcf\xa2\xff\xbf\x6f\x26\x7b\x88\x66\x32\x51\x1a\x5c\xeb\x19\xc0\xbf\x6e\x8c\x39\xad\x61\x3b\x1e\x43\x52\x4e\xeb\x4c\x06\xf5\xbe\x97\x09\xfc\xb1\x63\xe2\x22\x3d\x9e\x12\xbc\xfa\x9f\xc8\xfa\xdc\x10\x38\xa9\xea\xfc\xf4\xcf\x2a\x38\x78\xb7\x8b\x5b\x51\x58\xa6\xc7\x50\xd6\x77\x96\x94\xc9\xe0\xac\x44\xe9\xd0\x5c\x42\x06\x0b\xc4\x11\x7b\x47\xc3\x59\x66\x0b\x81\xdf\x70\xae\x7e\xbd\xaa\x8b\x46\xb3\x47\x23\x7c\x3e\x5a\xc9\x91\xda\xfb\x3d\x73\xe9\x34\x49\x7d\x3b\x64\x98\xa3\x96\x9e\xc2\x14\xd7\x95\x22\x7e\x93\xa6\xe8\xeb\x37\xcc\xa7\x15\x2a\xb9\x67\x1b\x92\x05\xf0\x8c\xd1\x7a\x9f\x79\x06\xd8\x33\xbc\xb0\xf0\xf7\x23\x77\x93\x1b\xd1\x3b\x9d\x9e\x56\x2a\xaa\x8c\x1d\xb6\x58\xf0\x64\x04\xc1\x1e\x61\xeb\x8b\x7d\xfa\xd8\x27\x2c\x3a\xf4\x6b\x00\xbf\xf5\xeb\xa6\x43\x41\xb0\x85\xe7\xf9\xf2\x79\xb1\x75\x51\x79\xbe\x59\x15\x11\x81\x17\x9e\xdf\x74\xb5\x0b\xb8\xad\x68\x5e\x73\x24\xcb\x16\x9b\xf0\x97\xa6\xb8\xd1\x3b\x32\x91\x54\x29\x78\x10\x31\xbe\x81\x73\x11\xf0\xc7\x97\x0e\xe0\xc1\xea\xee\x1d\x2a\xde\x7e\x2d\x50\x8a\x21\xa8\x12\x86\x10\x01\x90\xa4\xe0\xaa\xb3\xee\xa3\xa0\x38\xd7\x27\x4f\xe1\xa6\x55\xbe\xe2\x90\xe3\x64\x8a\x2b\x3e\xc1\x27\x49\x31\x1b\x93\x79\x23\xb0\x49\x08\xc3\xfe\xa4\x56\x0d\x4a\x0e\x4b\x1c\x9f\xcd\xa7\xfb\xde\x6c\xbc\xa4\x4f\xb5\x96\x35\x2c\x83\xff\xc9\x63\xc9\xf1\x01\x36\x43\xcb\xa5\xab\x2c\xb6\xae\x97\x09\x4c\x32\xf4\x7f\x74\x7c\x39\x50\xd5\xeb\xa6\xd1\xc5\xdf\x26\x48\x99\xbf\x45\x5f\x71\x85\x39\x4a\x47\xdb\x28\xc4\x75\x81\xb5\x26\x29\x62\x02\x5d\xcd\xd6\x4f\x1f\xed\x43\xc5\xd6\x69\x1f\x24\x9c\x18\x62\x2f\x7f\x4a\xda\xe8\xaa\x34\x7d\x86\xe4\xaa\x0c\xe0\x28\x24\x3b\x81\xb1\x7f\x2e\x61\x93\x21\xab\x0c\xe2\x46\xc3\xfe\xd0\xee\xc1\x83\x77\x51\xcf\x49\x46\x3d\x32\x1c\xcf\x68\x4a\x17\x9e\x96\xbe\x8c\xd3\x77\xc5\xc0\xed\xcc\x61\x0a\x79\x77\xa4\x27\xf1\x7a\xa1\x3d\x94\x08\x00\x4f\xce\xba\x5b\x24\x66\xa0\x53\x76\x67\xf4\xba\x6d\xcf\xd4\x64\x29\xa4\x37\x51\xdd\xa7\x74\x07\xea\x72\x07\xbb\x87\x8e\x2b\x27\xd3\xc0\xb2\xde\xab\x8b\xbe\x9e\xb6\xe0\xa3\x09\xb6\xbd\x02\xeb\xfa\x31\xfc\xa5\x2b\xc8\x4a\xe4\xf3\x4a\x29\x19\xba\xf1\xfe\x90\xd0\x54\x1f\xc0\xea\x6b\x23\x1f\xfe\xb1\xad\x09\xaf\xc1\x5f\x29\xa1\x1f\x6e\x3e\xfc\x85\xd6\x0c\x23\x06\xfe\x86\x0e\x1f\x6e\xf4\x97\x9b\x82\x12\x2a\xaf\x7d\x98\x83\xad\x52\x89\xf8\x42\x5e\x9f\x87\xdd\xde\xde\x9a\xb4\xcf\xdf\xaf\xdd\x4b\xb3\x5b\x3a\xfe\x38\xa7\xc7\x39\x7e\x69\x8b\x69\xad\x6e\x0d\x9a\x62\x98\xd3\x7d\x20\xa4\xe7\xf0\xf5\xe4\x9c\x77\x34\x27\x1c\xeb\x70\xfd\x8e\xd5\x87\x3e\x05\xb7\x4e\x67\x36\xd7\xfa\xfc\x45\xd3\x98\xa6\x34\xa8\xf7\x59\xd8\xab\xf4\x2f\xe5\x4d\xc6\x1e\x76\x17\x08\xe8\xef\xd3\x60\xef\xcf\xfa\xfa\xf5\x9e\x1f\xb8\x6a\x43\xc5\x60\x87\x40\x0c\xcd\xa9\xf9\x1b\x70\xcc\x73\xf4\xdd\x25\x19\xf3\x3c\x63\xba\xa4\x32\xa9\x94\x0f\x84\x26\x3b\xe9\x2c\xf9\x67\x56\x18\x9a\x89\x4b\x1c\x5c\x3c\x6b\x35\x81\x1f\x58\x77\x98\x3d\xe2\x50\x85\x61\x59\xf7\xc1\xcc\xac\xbb\xec\xb1\x58\xa4\xaf\x5a\x31\x56\xdc\x03\x7f\xc2\x45\x49\x19\x87\x84\xbb\x55\x17\xbb\x5b\x14\x6d\xd1\x8e\x32\xd1\x5d\x01\xc2\xc5\xbf\x76\xe1\xa7\xf5\x85\xe5\xff\x9f\xc3\x30\xee\x5d\x98\xb0\x2e\x30\x3e\x53\xc2\xc1\x97\x03\xaa\x68\x81\xc0\x06\x3c\x33\x84\x2e\xde\xda\xe4\x62\xe9\x49\x4e\x8b\xc8\x0c\xe5\x90\xe3\xaf\xa8\x13\x05\x56\x49\x86\x92\x97\x2d\x3d\x9e\xda\xa3\xe8\x16\x0d\x69\x09\x13\xcc\x5f\xcd\x33\xec\x36\x0f\x9c\x2c\x1f\x6a\x37\xf3\xab\xaa\xa0\x44\x32\x1c\x33\xa6\xcb\x17\x7d\x8e\x38\x7a\xf1\xc5\x35\x47\x7f\x66\x3e\x6b\x1b\x06\x35\xbb\x18\xe9\x9b\xc3\xc6\x24\x1c\xfd\xac\x3b\x7e\xc3\x90\x37\xa6\xbb\xf1\x8a\xe3\x02\xcd\xba\x40\xa5\x07\x7a\x2c\x8f\xf3\x45\xfb\x90\xde\xb8\x28\xe0\x20\xff\x5c\xb9\x35\xcb\x17\x6a\xec\xbc\x09\xcd\x8a\xc4\xa3\xae\x08\x69\x47\xbb\x5d\x3d\x38\x77\x95\x95\xae\xd2\xf7\xda\xd8\x8f\xf2\x1c\x97\x15\xae\x5c\x36\x30\x3a\x85\x55\x06\xab\x00\x17\x02\x42\x8c\x3c\xf4\x76\xe3\x9c\x7a\xb4\x3b\xaa\x39\xac\xee\x7e\x62\xa8\x44\x90\x47\x84\xea\x27\xf3\x37\x39\xfd\x44\xe8\xd3\xa7\x24\x88\xa4\x3d\x3e\x22\xfd\x4a\xfc\x30\x8a\x01\x23\x93\xe8\x03\xda\xc5\x34\xb7\xf2\x97\x8d\x86\xd9\x56\x03\x3d\xe3\xce\xd1\x29\xe5\x78\xf6\xcd\xe2\x5e\xc2\xb9\x9a\x41\x2d\x7a\xae\x3c\x40\x5f\xec\x11\xdb\xad\xf9\xcf\x99\xe2\x39\x8a\x8a\x7d\xf2\xc7\x0d\xaa\x50\xae\x37\xe0\x70\x99\xc2\x27\x0c\x1d\x13\xc4\x4a\x27\x4d\xd3\x57\xb2\x8d\xd4\xce\xd7\x95\xc3\x7d\xf5\xb3\xca\xf9\xea\x3c\xea\x56\xdf\x1c\x37\x41\x20\xb8\x1f\x40\x32\xa1\xae\xe0\x44\xa3\xf7\x7d\x8c\xba\x74\xbc\x28\x7c\x28\xe9\xfd\xbd\x73\x79\x31\xd6\x7c\xaa\xb0\xe4\x37\xff\xcf\x28\x1b\x8d\x11\xd2\x58\x64\xa6\x5b\x9c\x0b\xe6\xa0\xb3\x27\x27\x8f\x1f\x9c\x48\x44\x78\xa6\x48\xde\xd5\x5d\x5b\xa4\x51\xd0\x61\xd5\x5d\x87\xfa\xf7\x0d\x6a\x53\x87\xb1\x4a\x95\x45\x5b\x4c\xbe\x37\x72\xce\xd3\xbf\x6f\x39\xac\x99\xff\xfe\xc2\x70\xfb\xc5\x45\xab\x11\x51\x73\x09\x50\x83\x21\x2d\x27\x6c\x18\xe0\xba\xdf\xc6\xf6\x40\xc3\xe6\xf2\x31\x37\xbc\x55\x89\x43\xe9\xa9\x4f\x50\x3f\xff\x26\x3e\x2d\x99\x7c\x70\x7f\xe9\x0b\xf1\x29\xd7\xf6\xf7\xd1\x4d\x3d\x84\x59\xb1\xf8\xb5\xaa\x4b\x31\xf7\x0a\x10\xca\xc1\xd5\x95\xfb\x4f\x7d\x00\xac\x39\xbd\x06\x94\x81\x2b\xfb\xd5\xf5\xc9\xbb\x7b\x05\xd0\x7a\x63\x50\xcd\x72\xef\xfb\x06\x66\x0f\x94\xa5\xc1\x96\x21\xf8\x12\xc9\xff\x07\x30\xcf\xdf\xde\xfe\x1b\x00\x00\xff\xff\x11\xa7\x14\xae\x98\x35\x00\x00") +var FileCSSStylesheetCSS = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x5a\x5b\x6f\xe3\xbc\xd1\xfe\x2b\xfa\x12\x2c\xf6\x80\xc8\x90\xed\xd8\x9b\x48\xf8\x82\x2e\x8a\x37\x77\x2d\x0a\xbc\xe8\x55\xdb\x0b\x5a\xa2\x2d\x36\x12\x29\x50\x54\xec\xac\x91\xff\x5e\xf0\x20\x89\xa4\xa8\x93\x37\x6f\xd2\x22\x58\xac\x2c\x91\xc3\x21\x67\xf8\xcc\x33\x43\x2e\x52\x08\x12\x48\xfd\x0c\xe1\xa7\xf3\x8e\x50\xfe\x4c\xd1\x21\x65\xe1\xb2\x38\x79\x25\xc9\x50\xe2\x5d\xff\xb6\xe1\x7f\x51\x4c\x32\x42\xc3\xeb\x20\x08\xa2\xb8\xa2\x25\xa1\x61\x41\x10\x66\x90\x46\x7b\x82\x99\x5f\xa2\x9f\x30\x5c\xdc\xc3\x3c\xca\x10\x86\x7e\x0a\x85\x98\xef\x41\x71\x8a\xc8\x33\xa4\xfb\x8c\x1c\xc3\x14\x25\x09\xc4\x51\x01\x92\x04\xe1\x43\x18\x78\xcb\x6d\x71\x7a\xd5\x95\x08\x53\xde\xf8\xac\xc6\x7a\xbc\xbd\x5d\xaf\xb7\xaf\xdf\x6a\xd5\x8e\x28\x61\x69\x18\x44\x3b\x72\xe2\xe3\x71\x19\xea\xcb\x8e\x9c\xa4\x1a\x7b\x90\xa3\xec\x25\xbc\xfa\x9d\x54\x34\x86\xde\xef\x00\x97\xde\xdf\x28\xb9\xba\x29\x01\x2e\xfd\x12\x52\xb4\x8f\x72\x40\x0f\x08\x87\x41\xab\x48\xc4\xe0\x89\xf9\x09\x8c\x09\x05\x0c\x11\x1c\x62\x82\x61\xe4\x1f\xe1\xee\x09\x31\x3f\x7d\x29\x52\x88\xcb\x10\x54\x8c\x44\xfa\x8f\xd7\x45\x59\x80\x18\xd2\x73\xdd\x92\x2b\xb6\xcf\xe0\x29\x5c\x46\xf2\x3f\x2f\x78\xbd\xce\xc8\x01\x61\xbf\x00\x07\x78\x4e\x50\x59\x64\xe0\x25\xd4\xda\x47\xf5\x3b\xde\x21\xd2\x05\x11\x8a\x20\x66\xe1\x33\xa4\x0c\xc5\x20\x33\xbe\x25\x88\xc2\x58\x69\x4a\x73\x90\x89\xe1\x7c\xb1\xc8\x31\xc9\xaa\x1c\x7b\x98\x1c\x29\x28\x8c\x4e\x20\x43\x07\x1c\xc6\x50\x18\x4d\xfc\xf0\x11\x83\x79\x59\xbf\x52\x36\x5b\x06\xc1\x73\x1a\xed\x40\xfc\x74\xa0\xa4\xc2\x89\x5f\x5b\x63\xc3\xff\x0c\x89\x05\x88\x9f\xea\xde\xff\xae\x4a\x86\xf6\x2f\x7e\x4c\x30\xe3\x7a\xcb\xd7\xfa\xf4\x1f\x16\x90\x52\x42\xfd\x1c\x96\x25\x5f\x0d\x69\xce\x65\x10\x7c\xaa\x4d\xc2\xfd\x41\x38\x85\x17\x44\x39\x38\x29\x83\xdf\x06\xdc\x8b\x1c\x0a\x3d\x3e\x46\xd2\xfe\x0e\x77\xad\x6d\xcb\xa5\x49\xf3\xea\xd3\xd7\xd5\xf2\xd4\xf3\x8e\x9c\x7a\x54\x9a\xa8\xcb\xfb\x5b\xb7\x6f\xf6\x3d\xd3\x13\x8f\xc4\x07\x14\x82\x79\xae\x38\xe6\x39\x6f\x3e\x31\xc3\x7a\xcd\x1e\x67\x8c\xe4\x97\x4c\x56\x3e\x9e\x5b\x9c\x5a\xc3\x5c\xc2\xc5\xb1\x71\xf9\xc8\xc4\x9c\x89\x32\xbd\xb2\x00\xf8\x2c\x5d\x45\x21\xe7\x5d\x71\x9a\xd2\x9b\x81\x03\x07\xca\xf3\x65\x6a\x20\x5c\x54\x4c\x1a\xb2\x5e\xaa\xbb\x5f\x58\xa9\x56\x9c\xb7\x90\xcf\x7b\x04\xb3\xe4\x12\x27\xd9\x81\x12\xf2\x89\x19\x6e\xd2\xbc\xd4\x94\x9d\xab\x8c\x57\xd4\x61\x61\xfb\xf8\x7d\xf3\xfd\x87\x1d\x76\x0c\x23\xc8\x5d\x8b\xb0\xda\xb5\xdb\xcd\x05\xe3\x89\xe7\xb3\x16\xf6\xba\x2b\xed\xc0\x9d\x81\x50\x60\x69\x3c\x5b\xa1\x76\xd3\xee\x32\x12\x3f\xd9\x61\xd8\x5c\x9d\x0e\xe4\xd9\xeb\x35\x31\x66\x4d\xd3\xcc\x43\x9d\x4d\x60\xea\x33\x5f\xa4\x93\x0a\xf4\x49\xd9\x55\x8c\x11\x7c\x01\xb2\x29\xb4\x4a\x09\x45\x3f\x09\x66\xd3\xf1\x8a\x92\xa3\x0b\xac\xa6\x68\xe8\x81\x7a\x56\x9b\xf5\xe6\xc7\x56\xb1\x0f\x46\x01\x2e\xf7\x84\xe6\x61\x55\x14\x90\xc6\xa0\x84\x3d\x71\x66\xc8\xc5\xa6\x46\x3a\x4b\xa1\x85\xfc\x75\x36\x5d\x6a\x56\x5f\xb7\xbd\x72\x50\x73\x9f\x5e\x42\xf1\xfe\x61\x53\x11\x1d\xc1\xe7\x38\x48\xe8\xc4\x47\x53\xd9\xbb\x96\xcc\xd4\xa5\xba\xa0\x1e\x27\xbf\x4c\x41\x42\x8e\x61\xe0\x05\xde\xba\x38\x79\xf4\xb0\x03\x5f\x82\x1b\xf1\xb7\x58\x7f\x8d\x32\xb8\x67\x9c\x67\x92\x12\x09\xbd\xf6\xe8\x04\x93\x48\x6e\x91\x20\x62\xa4\x08\x83\xe8\xa7\x8f\x70\x02\x4f\xe1\xfd\xfd\x45\x2b\x71\x99\xe7\xf2\x65\x70\xcc\xd4\xbb\xc6\x7e\x09\x33\x18\x33\x98\x9c\x3b\x3c\xbe\x05\x90\xe5\x82\x47\x50\x13\x70\x86\xbc\x72\x24\xb5\x68\x13\x82\xf5\x8a\x6f\x21\x87\x5e\x22\x80\x2b\x31\x62\x55\x1d\x09\x8a\xf4\xdd\x04\xee\x41\x95\x31\x39\xe1\x32\xa5\x3c\xab\x18\xd5\x60\x72\x72\x33\x9c\xcb\x74\x73\x9f\x77\x07\x23\xdd\x48\x9b\x71\x9a\xd3\xb3\xd4\x23\x9b\xd9\x6c\xdc\x47\x82\x86\x65\xf7\xe1\x81\xb3\x5f\x09\x01\x8d\x53\x41\xd1\xe7\xf0\xd2\x11\xab\xcf\x32\x8e\xed\xd3\x7f\x64\x14\x89\xda\x3c\x64\x64\x39\x3c\x85\xbe\x37\x23\xcd\x24\x99\x99\x99\x43\x69\xbb\xc2\xda\x06\x06\x8f\x9b\xa4\xe0\xd9\xcd\x56\x64\x04\x9c\x28\x63\xb2\x57\x76\x27\xae\x3b\x42\x30\x68\x57\x6d\x6a\x9e\x45\x23\x83\x31\xbb\xa8\x4a\x46\x0e\x71\xf5\xee\x34\x64\x4c\x21\x0f\x74\x11\xdd\x42\x2f\x93\x95\x58\x26\xb7\xa9\xc1\xd8\x68\x21\x26\xec\x4b\x98\x81\x92\xf9\x71\x8a\xb2\xe4\xeb\x48\x81\x69\x5c\xa2\x81\x33\x22\x08\xdc\xf6\xb8\x9f\xa9\x88\xc3\x6b\x7a\xcb\x1b\x86\x38\xfe\x58\x8f\xc7\x83\xf5\xc5\x88\xfe\x4b\x74\xa5\xa3\x52\x4d\x9a\x77\x84\x3c\xe5\x80\x3e\x9d\x25\xf2\x95\x30\xdb\xd7\xc0\xd7\x16\x2c\xb6\xa2\x60\xa1\xd5\x35\xde\x9f\x6e\xa9\x4a\x0a\x8f\xed\xb2\xb8\xb3\xea\xaf\xa1\x90\x8a\x71\x2f\x1d\x71\x0f\xd7\x2a\x3c\x14\x67\x1b\xaf\x54\xd8\xdb\x06\x03\x14\xdb\x24\xef\xa3\x63\x58\x25\x2c\xd3\xa9\xac\x1d\x33\x92\x8d\x1b\x3a\x6e\xba\x3a\x62\x82\xe1\xa8\x46\x12\xdf\xfe\xc1\x5e\x0a\xf8\xff\xbc\xff\xbf\x6e\x46\x7b\xf0\x66\x22\x51\xea\x5d\xeb\x09\xc0\xbf\xac\x8d\x39\xae\x61\x33\x1e\x85\x42\x4e\xe3\x4c\x1a\xf5\xbe\x15\x09\xfc\xa9\x65\xe2\x3c\x3d\x1e\x13\xbc\xf8\xaf\xc8\xfa\xec\x10\x38\xaa\xea\xf4\xf4\xcf\x28\x38\x38\xb7\x8b\x5d\x51\x98\xa7\x47\x5f\xd6\x77\x91\x94\xd1\xe0\x2c\x45\xa9\xd0\x5c\x00\x0a\x72\xc8\x20\x7d\x47\xc3\x19\x66\x0b\x3c\xb7\xe1\x6c\xfd\x3a\x55\x17\x85\x66\x77\x5a\xf8\xbc\x33\x92\x23\xb9\xf7\x3b\xe6\x52\x69\x92\xfc\x75\x4c\x11\x83\x0d\x3d\x05\x09\xaa\x4a\x49\xfc\x46\x4d\xd1\xd5\xaf\x9f\x4f\x4b\x54\xb2\xcf\x36\x04\x0b\x60\x29\x25\xd5\x21\x75\x0c\x70\xa0\x68\x66\xe1\xef\x2d\x77\x93\x1d\xd1\x5b\x9d\x1e\x16\x32\xaa\x0c\x1d\xb6\x18\xf0\xa4\x05\xc1\x0e\x61\xeb\x8a\x7d\xf8\xd6\x25\x2c\x2a\xf4\x2b\x00\x5f\xb9\x75\x53\xa1\xc0\xdf\x81\xcb\x7c\xf9\xb2\xd8\x3a\xab\x3c\x5f\xaf\x0a\x8f\xc0\x33\xcf\x6f\xda\xda\x05\xd8\x95\x24\xab\x18\x14\x65\x8b\x4d\xf0\xa9\x2e\x6e\x74\x8e\x4c\x04\x55\xf2\xb7\x3c\xc6\xd7\x70\xce\x03\xfe\xf0\xd2\x79\xa8\xb7\xba\xbb\x86\xf9\xeb\x9f\x72\x98\x20\xe0\x95\x31\x85\x10\x7b\x00\x27\xde\x97\xd6\xba\x77\x9c\xe2\x7c\x3d\x3b\x0a\x37\x8d\xf2\x25\x03\x0c\xc5\x63\x5c\xf1\x01\x3c\x08\x8a\x59\x9b\xcc\x19\x81\x75\x42\x18\x74\x27\xb5\xa8\x51\xb2\x5f\xe2\xf0\x6c\xbe\xdf\x76\x66\xe3\x24\x7d\xb2\xb5\xa8\x61\x69\xfc\x4f\x1c\x4b\x0e\x0f\xb0\xe9\x5b\x2e\x55\x65\x31\x75\xbd\x8e\x41\x9c\xc2\xff\xa1\xe3\xcb\x9e\xaa\x5e\x3b\x8d\x36\xfe\xd6\x41\x4a\xff\x16\x3e\xa3\x12\x31\x98\x0c\xb6\x91\x88\x6b\x03\x6b\x85\x13\x48\x39\xba\xea\xad\x1f\xbe\x99\x87\x8a\x8d\xd3\x6e\x05\x9c\x68\x62\xaf\x3f\x24\x6d\xb4\x55\x1a\x3f\x43\xb2\x55\xf6\xc0\x20\x24\x5b\x81\xb1\x7b\x2e\x61\x92\x21\xa3\x0c\x62\x47\xc3\xee\xd0\xf6\xc1\x83\x73\x51\x2f\x49\x46\x1d\x32\x2c\xcf\xa8\x4b\x17\x8e\x96\xae\x8c\xd3\x75\xc5\xc0\xee\xcc\x40\x02\x58\x7b\xa4\x27\xf0\x7a\xa6\x3d\xa4\x08\x0f\x9c\xad\x75\x37\x48\x4c\x4f\xa7\x74\xad\xf5\x5a\x35\x67\x6a\xa2\x14\xd2\x99\xa8\xea\x53\xd8\x03\xb5\xb9\x83\xd9\x43\xc5\x95\xb3\x6e\x60\x51\xef\x55\x45\x5f\x47\x5b\xef\x9b\x0e\xb6\x9d\x02\xeb\xf2\x2e\xf8\xd4\x16\x64\x05\xf2\x39\xa5\x14\x14\xde\x38\x3f\xc4\x24\x51\x07\xb0\xea\xda\xc8\xe7\xbf\xef\x2a\xcc\x2a\xef\x2f\x04\x93\xcf\x37\x9f\xff\x4c\x2a\x8a\x20\xf5\xfe\x0a\x8f\x9f\x6f\xd4\x8f\x9b\x9c\x60\x22\xae\x7d\xe8\x83\x2d\x12\x81\xf8\x5c\x5e\x97\x87\xad\x56\x2b\x9d\xf6\xb9\xfb\x35\x7b\x69\x72\x4b\xcb\x1f\xa7\xf4\xb8\xc4\x2f\x4d\x31\x8d\xd5\x8d\x41\x13\x04\x32\x72\xf0\xb9\xf4\x0c\xbc\x9c\xad\xf3\x8e\xfa\x84\x63\x19\x2c\xdf\xb1\xfa\xd0\xa5\xe0\xc6\xe9\xcc\xe6\xab\x3a\x7f\x51\x34\xa6\x2e\x0d\xaa\x7d\x16\x74\x2a\xfd\x73\x79\x93\xb6\x87\xed\x05\xf2\xd4\xef\x71\xb0\x77\x67\x7d\xdd\x7a\xcf\x1b\xae\x5a\x5f\x31\xd8\x22\x10\x7d\x73\xaa\xff\xf7\x19\x62\x19\xfc\xe5\x92\x8c\x7e\x9e\x31\x5e\x52\x19\x55\xca\x05\x42\xa3\x9d\x54\x96\xfc\x91\x15\x86\x7a\xe2\x02\x07\x67\xcf\x5a\x4e\xe0\x0d\xeb\x0e\x93\x47\xec\xab\x30\xcc\xeb\xde\x9b\x99\xb5\x97\x3d\x66\x8b\x74\x55\x2b\x86\x8a\x7b\xde\xff\xa1\xbc\x20\x94\x01\xcc\xec\xaa\x8b\xd9\x2d\x0c\x77\x70\x4f\x28\xef\x2e\x01\xe1\xea\x9f\xfb\xe0\xfb\xf2\xca\xf0\xff\xfb\x20\x88\x3a\x17\x26\x8c\x0b\x8c\x8f\x04\x33\xef\xc7\x11\x96\x24\x87\xde\xc6\x7b\xa4\x10\x5e\xbd\x36\xc9\xc5\xdc\x93\x9c\x06\x91\x29\xcc\x00\x43\xcf\xb0\x15\xe5\x2d\xe2\x14\xc6\x4f\x3b\x72\x3a\x37\x47\xd1\x0d\x1a\x92\x02\xc4\x88\xbd\xe8\x67\xd8\x4d\x1e\x38\x5a\x3e\x54\x6e\xe6\x56\x55\x42\x89\x60\x38\x7a\x4c\x17\x2f\xba\x1c\x71\xf0\xe2\x8b\x6d\x8e\xee\xcc\x5c\xd6\xd6\x0c\xaa\x77\xd1\xd2\x37\x8b\x8d\x09\x38\xfa\xa8\x3b\x7e\xfd\x90\x37\xa4\xbb\xf6\x8a\xa1\x1c\x4e\xba\x40\xa5\x06\xba\x2b\x4e\xd3\x45\xbb\x90\x5e\xbb\x28\xe0\x44\xfe\x26\xbe\xc2\x2c\x43\x45\x89\x4a\x3b\xe2\x4e\x1d\xbe\xa2\xd9\xcc\x89\x59\x6f\x02\xbd\x70\x71\xa7\x0a\x47\xca\x1f\x57\x8b\xad\x75\xa5\x59\x4e\xe9\x0d\xa6\xb0\x48\x41\xe9\xa3\x9c\x23\x8d\x96\xae\xae\x36\xd6\xe1\x48\xb3\xf1\xea\x33\xed\xf6\x13\x85\x05\x04\x2c\xc4\x44\x3d\xe9\xdf\xc4\xf4\x63\xae\x4f\x97\xb9\x40\x9c\x74\x68\x8b\x70\x3f\xfe\x61\x10\x2a\x06\x26\xd1\xc5\xbd\xab\x71\x0a\xe6\xae\x2e\xf5\x93\xb2\x1a\xa1\x82\x89\x4a\x59\x1b\xe0\x66\x76\x2f\xee\x5c\xf5\xa0\x06\x8b\x97\x1e\xa0\xee\xff\xf0\x5d\x59\xff\xb3\xa6\x78\x89\xa2\x7c\x3b\xfd\x71\x83\x4a\x30\xec\x0c\xd8\x5f\xcd\x70\x09\x83\xa7\x18\xd2\xc2\xca\xe6\xd4\xcd\x6d\x0d\x09\x7e\x61\x9b\x30\x70\x28\x3f\xea\x70\x40\x9e\x6e\xad\xd4\x3d\x74\x1d\x2b\xfc\xdb\x1e\x5c\xe4\xea\x72\x86\x35\x78\x7b\x48\xab\x72\x47\xb3\x82\x91\x94\xde\xdd\x62\xd7\x57\x43\xcd\xc7\xca\x54\x6e\x2f\xf9\x88\x22\xd4\x10\xbd\x8d\x78\x9e\xbb\x43\x19\xe7\x21\x2a\x17\xb3\xaa\x02\xbd\x13\x09\x31\x4b\x25\x65\xfc\xb2\x6e\x4a\x3e\x12\x61\x8c\x2a\x6e\x5f\xff\xae\x41\x4d\x22\x32\x54\xf7\x32\x48\x90\xce\x1e\x07\x4e\x8d\xba\xb7\x37\xfb\x35\x73\xdf\x86\xe8\x6f\x3f\xbb\x04\x36\x20\x6a\x2a\x9d\xaa\xa1\xa6\x61\x98\x35\x9f\x5c\x76\xdb\x98\x1e\xa8\xd9\x5c\x3c\x66\x9a\xb7\x4a\x71\x30\x39\x77\xe9\xee\xfd\x6f\xfc\xaf\xa1\xa6\x5b\xfb\x4b\x57\x88\x4b\xb9\xa6\xbf\x8b\xbc\xaa\x21\xf4\xfa\xc7\x7f\x02\x00\x00\xff\xff\x82\xeb\x54\x91\x47\x35\x00\x00") // FileCSSUbuntuMonoCSS is "css/ubuntu-mono.css" var FileCSSUbuntuMonoCSS = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xcb\x6a\xc2\x40\x14\x86\xf7\x3e\xc5\x01\x17\x51\x71\x8c\x94\xd2\x4b\xba\xe8\x0d\x17\x42\xa5\x50\xe9\x03\x8c\xc9\x99\x74\x60\x32\x27\xcc\xc5\x34\x94\xbe\x7b\x99\x68\xea\xd8\x9d\xd2\xe5\xfc\x93\xf3\x7f\xdf\x49\x92\x4e\xc0\x6f\xbc\x76\x9e\x55\xa4\x89\x19\x2c\xbd\xe2\x06\x18\x28\xee\xa4\x86\x49\x3a\x18\x3c\x08\xd2\x8e\x09\x9e\x23\x7c\x0d\x00\x00\xf6\xe7\x4a\xaa\x36\x83\xe4\xbd\x1b\x87\x15\x69\x4a\xee\x0e\xf7\xd6\xb5\x0a\x33\xd0\x64\x2a\xae\xa2\xbc\x41\x59\x7e\xb8\x0c\x2e\xe7\xf3\x5d\x6a\x4d\x9e\x81\x37\x6a\x94\xcc\x66\x69\x83\x9b\xf0\x94\x4d\x63\xa9\xed\x35\xeb\x6c\x7a\xbb\x19\x92\x4b\xc6\xbb\xe9\x74\x02\xcb\xc5\x2d\x3c\x53\x55\x73\x07\x2b\x2a\xd0\x06\xe9\xdf\x62\x45\x39\x57\xa3\x23\xc9\xf1\xf4\x38\x0d\x21\x7b\xdb\x55\x87\xcb\x93\x5d\xee\x87\x12\x85\xfc\x4c\xc6\x20\xc2\xb6\x6e\x94\x60\xb5\xc1\xa2\xc0\x82\x51\x8d\xda\xb5\x35\x86\xde\x4e\xf5\x8a\x2d\x17\x37\xbd\xe1\x69\xa4\x86\x84\xb8\x88\x20\xfb\x73\x57\xbc\xf6\x35\x9a\x6e\x7d\xa3\xe1\xc9\x50\x63\xd1\xd8\xf3\x31\x7f\x28\x7b\xc8\xbf\xd4\x3b\x17\xb7\x3b\xe3\x31\x7a\x3f\x6b\x2e\xb8\x91\x53\x78\xd4\x85\x21\x59\x4c\x41\xbe\xae\xcf\xc3\xd8\x6d\x39\x3c\x7c\xde\x88\x68\xb7\x65\xf4\xef\xbc\x60\xc9\xf3\xb6\xc7\x7c\xff\x04\x00\x00\xff\xff\xec\x99\x60\x75\x0e\x03\x00\x00") // FileIndexHTML is "index.html" -var FileIndexHTML = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x3d\xed\x72\xdc\x36\x92\xff\xfd\x14\x6d\x66\x6b\x67\xa6\x24\xce\x8c\xbc\xc9\xde\xd5\x58\x94\x93\xc8\xde\x3a\xd7\x39\x9b\x94\x2d\xef\xdd\x96\xac\xbb\x82\x48\xcc\x10\x11\x87\x64\x00\x50\x1f\x51\xfc\x2a\x57\xf7\x74\xf7\x1c\x57\xf8\xe0\x37\x00\x92\x92\xb2\xb5\xd9\xda\xf9\x91\x8c\x48\x74\xa3\xbb\xd1\xdf\x00\xc6\xc7\xcf\x5f\x7f\x7f\x7a\xf6\xd7\x1f\xde\x40\xcc\xf7\xc9\xc9\xb3\x63\xf1\x3f\x48\x50\xba\x0b\x3c\x9c\x7a\x27\xcf\x9e\x1d\xc7\x18\x45\x27\xcf\x00\x00\x8e\xf7\x98\x23\x08\x63\x44\x19\xe6\x81\xf7\xf1\xec\x4f\xfe\xbf\x7a\xcd\x57\x29\xda\xe3\xc0\xbb\x26\xf8\x26\xcf\x28\xf7\x20\xcc\x52\x8e\x53\x1e\x78\x37\x24\xe2\x71\x10\xe1\x6b\x12\x62\x5f\xfe\x71\x08\x24\x25\x9c\xa0\xc4\x67\x21\x4a\x70\x70\xb4\x5c\xb7\x50\xc5\x9c\xe7\x3e\xfe\xa9\x20\xd7\x81\xf7\x9f\xfe\xc7\x6f\xfc\xd3\x6c\x9f\x23\x4e\x2e\x13\xdc\xc0\x4b\x70\x80\xa3\x1d\x2e\x21\x13\x92\x5e\x01\xc5\x49\xe0\x31\x7e\x97\x60\x16\x63\xcc\x3d\x88\x29\xde\x06\xde\x2a\x64\x6c\x55\x3f\x5e\x86\x8c\x8d\x06\xdb\x66\x29\x47\x37\x98\x65\x7b\x3c\x09\x8e\x65\x05\x0d\xb1\xcf\x50\xca\xfc\x9c\x66\x4d\x58\x16\x52\x92\x73\x60\x34\x0c\xbc\xd5\x8f\x6c\x75\x5d\xe0\xe5\x8f\xcc\x3b\x39\x5e\xa9\x37\x96\x61\xe8\x96\x64\x6c\xcc\xc0\x1f\x99\x1f\x66\xd9\x15\x31\x62\xad\x09\x47\x79\x9e\x60\x9f\x67\x45\x18\xfb\x24\xcc\x52\x3f\xa7\x38\xcc\xf6\x79\xc6\x70\xe4\x01\x23\x3f\x63\x16\x78\x47\x5f\x7e\x79\x7b\xf4\xe5\x97\x15\x6b\x14\xb3\x55\x0f\x50\x0f\x5a\xe6\xe9\xce\x83\xd5\x03\x27\xfa\xea\xc5\xed\xd1\x57\x2f\x06\x26\x52\x83\x6c\x13\x89\x31\x1e\xf0\xbb\x1c\x07\x1e\xd9\xa3\x1d\x5e\xc9\x81\x0d\x8c\x5b\x74\x2d\x11\xfd\xe1\xc5\xed\x1f\x34\x1a\x3d\xbf\x7c\xf2\x38\xa4\x47\x7f\xbc\x3d\xfa\x63\x0b\xa9\x7c\x52\x23\xe5\x84\x27\xf8\xe4\x43\x4c\x32\x4a\xc0\x87\x6f\xb3\xec\x6a\x8f\xe8\x15\x83\xef\x50\x8a\x76\x98\x1e\xaf\xd4\x88\x67\xc7\x2b\x65\x79\xcf\x8e\x2f\xb3\xe8\x4e\x43\x47\xe4\x1a\x48\x14\x78\x7b\x44\x52\x3f\x47\x95\xea\xb7\x5e\x0a\x38\x4c\x1b\x6f\xd4\xc4\x78\x9f\x27\x88\x63\xb8\xf6\xc9\x36\xf0\xc2\x18\x87\x57\x38\xaa\xe6\x5f\x26\x38\xdd\xf1\x18\x82\x20\x80\x75\x07\x56\xc2\x23\x89\x3b\xc9\x76\x59\xc5\xb8\x61\x98\x52\xc6\x1c\xa5\x27\xff\xf7\xbf\xff\x73\xbc\x92\xdf\x98\x64\xf6\x78\x85\x0c\x58\x4b\x9a\x19\x46\x34\x8c\xfd\xcb\xec\xd6\x86\x94\xa4\x79\xc1\xf5\x1a\x70\x7c\xcb\x3d\xed\x6e\xae\xf0\xdd\x4d\x46\x23\x0f\xae\xfd\x7d\x16\xe1\x64\xc9\x29\xd9\x97\x08\x97\x3f\x15\x98\xde\x79\xf0\xf5\x15\xbe\x2b\xf2\x25\x4e\x39\xa6\x82\x09\x14\xbd\x46\x1c\x79\x90\x27\x28\xc4\x71\x96\x44\xe2\xf1\x07\x09\x02\x05\x4d\x0e\x81\xa3\x1d\x3b\x04\xb9\x14\x90\xd1\xd2\xe3\xd8\x68\x43\x10\x26\x88\xb1\xc0\xbb\x2c\x38\x17\xaa\xf2\x75\x98\x90\xf0\xaa\x31\x93\x19\x50\x31\x56\x02\x6f\x11\x83\x2d\xf2\x15\xe5\xe2\xdb\xf6\x46\x98\x2e\xb1\x4c\x6a\x94\xe7\x2a\x22\xd7\x0e\x31\x2b\xd5\xf0\xf7\x38\x2d\x3c\xad\x08\xcf\x05\x8d\x24\xdd\xd9\x79\x2b\x99\xa1\xf8\x21\xec\x84\x49\x56\x44\x83\xdc\x40\xa5\x37\xef\xe5\x2c\x5a\x75\xc6\x73\xde\xa1\x95\x67\xbb\x5d\x82\xdf\xee\xdb\x26\x32\x48\xec\xf6\xc6\x83\x8d\x7e\xc4\xe2\xec\x46\x22\x80\x57\x30\xdb\x22\x1f\xdf\x61\x9f\x25\x88\xc5\x33\xd8\x94\x0f\x66\xa3\x58\xba\xbf\x6f\xe1\xfa\x37\x12\x61\x90\x6e\x44\x62\xfa\x10\x67\x37\xfa\xcf\xcf\x9f\x1f\xcb\xb7\xb0\xcf\xc2\xa6\xa7\x46\x96\x19\xd9\xa5\x7e\x56\x70\x1f\x25\x7c\xc2\x32\xbd\x93\x13\x4d\x26\xd7\xa0\xa0\xc7\xab\xd2\x35\xd9\x3d\x16\x4e\x18\x36\x20\xcb\xa5\x52\xa7\x3e\xc3\x09\x0e\x39\x8e\xbc\x93\xfb\x7b\x8b\x63\xfb\xfc\x19\xca\x51\xc7\xab\x7c\xa4\x89\x0c\x8a\x3b\x4c\x30\xa2\x1f\x34\xde\x6a\xca\x69\x1a\x27\xfe\x7b\x89\xd2\x51\x52\x3f\x45\x69\x88\x93\xc7\x2a\x89\x12\xc4\x37\x49\xf2\x08\x8a\xa5\x98\x7d\xf6\x53\x81\x28\x1e\x45\xba\x92\x12\xa0\xe4\xd1\xe4\x47\x38\xc1\x1c\x57\xb4\xcf\xbb\x2b\xbe\x98\xce\x0d\xa7\x88\xc5\xa3\xd8\x78\x2d\x27\xff\xb5\xf4\xbe\x33\xac\x15\xef\x07\x02\x7a\xe9\xc7\xe1\xf7\xbf\x07\x4c\x69\x46\x65\x28\x9f\xcd\x4c\xb1\xbc\x44\x2b\x63\xaa\x7f\xa9\x05\x67\x53\xf7\x5c\xcf\x20\x47\x97\x52\x5e\x16\x34\x81\xe7\x7a\x86\xfb\xfb\xf6\x3b\x12\xc9\xc9\xfd\x23\xe1\xee\xfe\x8c\x6f\xa0\x9c\x42\x3a\xbc\x37\x11\xe1\xf5\x13\xe1\xf3\x0c\xf6\x08\xe6\x98\x2f\x13\x0f\xf9\xf8\xe3\xfb\x77\xdd\x98\xdf\x23\xb0\x13\xe0\x3f\xbe\x7f\x07\xdb\x8c\x02\x8f\x31\xa4\x0d\xaa\x3c\xf8\x7a\x9b\x85\x05\x9b\x68\xcf\xdd\x15\xb0\xcb\xc7\xa1\x8e\x3d\x0e\x5d\x2c\xc9\x7c\xa4\xc3\xd4\x69\xc1\x78\xb6\xaf\x78\xd1\x39\xcb\x3c\xcb\x39\xc9\x52\x94\xb8\x8d\x61\xda\xec\x68\xc7\xba\x29\x53\x8e\x42\x0c\x0c\xe7\x88\x22\x8e\x23\x99\x36\x69\x11\x13\x56\xd3\x34\x8e\x1a\x41\x01\xa2\xb8\xac\x23\xf1\x6d\x88\x69\x3e\x40\x53\x35\xa8\x45\xd6\x1b\xf5\x74\x80\x12\x61\x80\x6a\x46\x07\x51\x66\xe5\x57\x06\xa6\x97\xb7\xf4\x28\xf2\xa1\xbf\xc7\x8c\xc9\xac\xa3\x6b\x14\xf2\xb5\x43\xdb\xa1\xb4\xcc\x56\x2e\xe9\x0b\xfa\x1c\x52\xeb\x42\x31\xb1\x22\x54\x30\x67\xcc\x04\x5b\x60\xc8\xc8\x9b\x3b\x1f\x6c\x21\x30\x3b\x53\x96\x93\x34\xc5\xb4\xfc\x3a\xe0\x56\xc1\xe5\xf5\xab\x01\x83\xb9\x80\x81\x39\x4b\x4e\x2e\x6d\xfc\x6d\x93\x65\xaf\x8a\xab\x03\x64\xb8\x11\x33\x74\x8d\x6b\x94\xaf\xb3\x14\x0f\xf3\x65\xc9\x7d\xda\x63\xac\x2b\xe9\x02\x77\x95\x02\x6a\xd9\x9b\x25\x92\xd6\x65\x11\x3c\xaa\x82\xa0\x59\x98\x09\x03\xdf\x63\xde\x2b\x2b\x1b\x52\x69\x21\xd5\x55\x59\x65\x22\x75\x0d\xb1\xcf\xae\xb1\xaa\xb4\x7e\x10\x38\xe7\x6d\x80\x85\xb0\x9b\xf6\x23\x61\x32\xf6\xa4\xe0\xda\xdf\x66\x34\xf0\x38\xda\x01\x49\x41\x43\x2a\x4f\x65\x9f\x73\xf6\xc5\xec\x80\xa3\xdd\xc2\x3b\xf9\xe2\xfe\x9e\xa3\x9d\x65\x8a\xa1\x6a\x6a\x47\x49\x64\x93\x87\x12\xb3\xa4\x2d\xcc\x92\x62\x9f\x0a\xf2\x04\xc0\xa9\xfc\x8b\x55\x5e\x43\xbd\x75\xf9\xc5\x06\x2a\xc2\xf1\x5e\x20\xd2\x40\x95\x26\x56\x81\xac\x2c\x5e\xca\x34\x78\x03\x84\x95\x3a\x79\xaa\x1e\xcd\x05\x92\x25\x49\x23\x7c\xbb\xf8\xec\xc1\x46\x86\xd4\x59\x89\xc2\x9f\x1d\xd4\xef\x87\xfc\x4e\x65\x0a\x72\x36\x51\xbc\x77\x0a\xb0\xd6\xd4\xcd\x89\x1f\xe2\x5d\xe4\x24\x4f\xe2\x4d\x50\x57\x70\xfe\x1e\x73\x14\xc9\x96\x00\x47\x74\x87\x79\xe0\xfd\xf7\x65\x82\xd2\xa6\x44\x67\x31\x62\xbe\xaa\xd3\x36\x25\x9c\xac\xe9\x24\x5f\x0b\xad\xea\x42\xa2\xb2\x1d\x58\x23\x6f\x0c\xf2\x60\xa3\x7a\x27\x52\x14\x22\x43\x19\x21\x87\xbc\x47\x2d\x27\x7b\x19\x60\xca\x07\x67\x64\xaf\x27\x18\x88\x2f\x4e\x9c\x22\xb7\x10\x51\x4b\x90\x26\xff\x7a\x38\x32\xc9\xd9\xfd\xfd\x0e\xf3\xd7\x99\xc8\x5d\x3f\xbe\x7f\x37\x2f\x59\x1e\x43\xe3\xf0\x12\x56\x71\x59\x60\xd5\x59\x40\x37\x20\x57\xe4\x94\x59\x42\xc9\x9d\xfe\x7b\x0c\x21\xb5\xbb\x54\x72\x41\xbb\xaa\x55\x76\x02\xeb\xfe\x54\xd2\xf5\x8c\x8a\x22\x6d\xcf\x55\x61\x6f\xc4\x13\xe9\xb1\xce\xd0\x6e\xce\xd1\x6e\x29\x92\x22\xe9\x1d\xcb\x3f\x1c\x7e\xb1\x16\xe3\x70\x12\xd0\xcc\x38\x6a\x6b\xb0\x16\xbf\x1d\x26\x4a\x5a\x8b\x3c\x42\x75\x4d\x36\xd1\xd2\xc1\xd8\x97\xb8\x4b\xc3\x11\xc6\x5e\xc1\xcb\x82\xec\xa3\x24\xc3\x55\x9d\xb5\x60\x46\xc6\xfb\x92\x49\x1c\x11\xfe\x94\x2c\xe6\x38\x0d\x49\xe2\xa3\x84\x4f\x66\x54\xd4\x50\xbf\x16\x9b\xdd\xfa\xfa\xbc\x66\xf5\xe2\x21\xbc\xd2\xaa\xc2\x7e\x10\xab\xc3\x15\xf7\x43\x98\xd5\x7e\x78\xb6\x2a\x95\x7e\x55\x06\xbe\xa8\x17\x03\x1e\xb8\xbc\x31\x61\x3c\xa3\x77\x93\x19\x3e\x45\x61\xfc\x74\xfc\x0e\xf8\x00\x67\x76\x69\x4e\x7f\x26\xb4\xf0\x6a\xef\x59\x76\x27\x7e\xf9\x05\xda\xc5\x93\x6c\x6f\xa8\x9a\xc9\xbf\x44\xa6\xfc\xf2\x98\xb4\x71\x78\x8f\xa8\x3a\xaa\xb8\x31\xae\x82\xb3\xd5\x6c\xdd\x3e\x8d\xa1\x6d\xa3\xa6\x89\x08\x4a\xb2\xdd\xf2\x9a\x30\xb5\x75\x29\xb8\x55\xcf\xfc\xec\x1a\xd3\x04\xdd\x75\xdb\x3a\x65\x72\xa9\x46\x99\xc4\x91\x37\xb1\xe8\x96\x40\x9d\xa5\xb4\x78\x98\x6d\x40\x53\x40\xd8\x1b\xc9\x8b\xe0\x4a\x3f\x72\xc5\x78\x29\xa7\x98\xef\x93\x8a\x85\x72\x0b\xa4\x39\x79\xb5\x2d\xe2\x6e\xa9\xea\xd1\xba\x5e\x72\x24\xcc\xe3\x6b\xd8\xaa\xde\xd0\xd4\x0d\x17\xad\x8f\x2e\x56\xed\x55\xc8\xe8\xe2\xd4\x5e\x3b\x6a\x36\x18\x0e\xb3\x34\xfa\x26\xe4\x44\x08\xaa\x5a\x29\xf5\xf8\x34\xce\x48\x38\x14\xf6\x07\xa7\x10\xe9\x58\x6f\x02\xf1\x70\x10\xfd\xc4\x6a\xd3\x6e\x23\xcd\xaf\xcd\x8d\x69\xf1\xb9\x46\x14\x78\x76\x85\x53\x08\xe0\x54\xee\x60\xb3\xe5\x0e\xf3\xf9\x4c\x3e\x9c\x2d\x0e\x5b\x73\x90\x94\x71\x51\xba\x43\x00\x6a\x6b\x3c\xa4\x18\x71\x3c\x5f\xbc\x7c\xf6\xac\x3b\x66\x19\xe1\x2d\x2a\x12\xce\x96\x22\x7d\xce\x0a\x0e\x01\x1c\xad\xd7\xeb\xf5\x4b\xc7\x50\xb5\x1b\xc0\x96\x61\xb6\xdf\x67\xe9\xf9\xec\x9b\x82\xc7\x19\x25\x3f\x23\x21\xc0\xd9\x05\x04\x30\xfb\x16\x23\x8a\x29\xcc\xe0\x40\x11\xde\x98\x5a\x30\x83\xf2\x1c\x02\xd9\x6e\xfc\x4b\x81\xe7\xf7\x2d\xf2\x71\xb2\x81\xd9\x17\xd5\x66\xee\xac\xcd\x9c\xa8\x47\x36\x70\xdf\x93\xf5\x0d\x49\xa3\xec\xe6\x3f\x48\xc4\xe3\x0d\xac\x0f\x7b\xef\xa5\x07\xd8\x80\xe7\xf5\x5f\x69\x33\xd9\xc0\x16\x25\x0c\xf7\xdf\x97\xc1\x90\x6d\xe0\xfc\xa2\xff\xba\xdb\x69\x37\x8f\xaa\x36\xbb\x36\xc0\x69\x61\x98\x45\x25\xb6\x26\xd6\xc4\x47\xf6\x23\xcc\xe4\x8b\x8f\xee\x0a\xd8\x07\x88\x24\x5a\x10\xd6\x7b\xf9\xb9\x3f\xbe\xd5\xf9\xb2\x11\x24\x33\x9f\x0d\xf8\x47\xe6\xf9\x48\x64\x7f\x57\xd0\xc4\x41\xa8\xf0\xbf\x43\x7c\xd8\xde\xea\x12\xc6\x31\xc0\xae\x05\xd0\xd3\x84\x31\xb2\x52\xae\xc2\x26\x24\x1d\xe1\xac\x9a\xd5\x9f\xd3\x22\x4d\x15\xa7\x9c\x63\xb4\xe0\x66\x33\xf3\x6b\x1d\x95\xec\x03\x6a\x6f\x67\x1f\xd3\x74\xb9\x6e\x4c\xca\x99\x6e\x60\x5b\xa4\xf2\x1b\xcc\x17\x70\x6f\x90\x5f\x8d\xd5\x0c\xd1\x5f\x83\xd6\x93\x0e\xc6\x3d\xe6\x71\x16\x31\xd3\x72\x54\x75\x63\x73\x06\x8e\x76\x0b\x9b\x7e\x6f\x61\xce\x63\xc2\xca\x20\xba\x00\x8a\x79\x41\x9b\x8e\xac\xf9\x11\x4e\x2d\xc5\x37\x67\x68\x27\xbc\xdf\x17\xd2\xef\xa1\xdd\x4b\x37\xea\x66\xaf\x51\x95\x12\xdf\x6f\xe7\x0a\xcb\x42\xef\x15\xd9\xc8\x13\x9f\x1e\x0e\x38\x08\x60\x26\x7d\xae\x42\x62\x9e\xde\x0c\x1a\xf4\x9f\xc9\xbd\x85\xf9\x62\x49\xb1\xdc\x47\x98\xaf\x3e\xb1\x83\xd5\xee\x50\x4c\xb1\x18\x40\x5d\x9e\x89\x98\x5b\x06\x1a\xd6\xb5\xaf\x1b\xbd\x16\x65\x73\xe9\x64\xef\x75\xfa\xe2\x3d\x5c\x18\xa5\x14\xe4\xc4\x4a\x08\xd3\x05\x34\x28\x1c\xa3\x18\x4a\x80\x8e\x71\xfc\x4a\xac\xcf\x66\x4f\x47\xfb\xd3\x50\x6e\x1c\xbe\x5a\xc1\x0f\x88\x32\xac\x2d\x5b\x45\x48\xab\x6d\xd2\xdb\x33\xb4\x63\x10\xc0\x6a\xfe\x5f\xbf\x7c\x62\x07\x8b\x2f\xe6\x9f\x3e\x1c\x2c\x56\x3b\xb3\x4b\x02\x1d\x6a\x20\x80\xf3\x0b\x0b\x01\x37\x31\x49\x30\xcc\xe7\x14\xb3\x22\x11\x79\x93\x9a\x63\x89\x6f\x71\xd8\xb7\xef\x85\xea\x85\xa6\x45\x92\x38\x6d\x5a\x60\xc8\x0b\x16\x6b\xb4\xe7\x2f\x2e\xac\x26\x64\x65\xb6\xdc\x67\x70\xa9\x71\x4f\x0e\x23\x34\xda\xb6\x0e\x7f\xc2\x3c\x8c\x65\x66\x66\x57\x1c\xbd\xfb\x3e\xac\x5d\xa2\x1e\x0e\x64\x8e\x34\xac\xb2\x7a\x89\xc4\xff\x86\x07\xd7\x52\xd1\xdf\x2c\xde\xb9\x4c\x77\x65\x82\xbd\x42\x39\xa9\xba\x21\x6c\x76\xe8\x58\x3a\xf1\x91\xce\xc1\x18\x7f\xba\x9f\x2a\x63\x33\x90\x68\xd7\xc9\x8a\x2f\x99\x06\x75\x45\xb1\xfc\x31\x23\xe9\xdc\x03\x6f\xe1\x44\xd0\x77\xbe\xd5\x1b\x3b\xe0\x92\xc7\x38\x9d\xd7\x56\x4c\x31\xcb\xb3\x94\x61\x97\x32\x8b\x0f\xca\xf3\xc6\xb2\xca\xfc\xc5\x1e\x3b\x4a\x80\x4a\xe0\xc2\xaa\xf4\x44\x4b\xa1\x5f\x76\x50\x17\xe9\x21\xe2\x61\xdc\xa0\x5d\xea\xe2\x10\xe1\xc2\x90\xe4\xc0\xef\x98\xa0\x5c\x7e\x5d\x96\xc4\xc0\xab\xce\x03\x49\x1d\x6c\xf4\x53\xdd\x68\x18\x66\x74\xb2\x64\x4a\x33\x2a\x29\xd3\x06\xeb\x92\xcb\x28\x47\xdd\xdc\xa6\x9d\xe4\xac\x8d\xdb\xe4\x23\x82\x8e\x11\xae\x32\xfc\x29\x73\x16\x34\x91\xc9\x92\xe7\x8d\xc8\xd1\x48\x74\x5b\xba\xc5\xce\xe9\x1c\x91\x7e\x0d\x06\x03\x03\xa0\x34\xbc\xae\xbf\x14\x36\x68\x47\xa6\xb2\xb3\xd2\x73\x69\xe2\xe1\x15\x9c\x5f\xc0\x06\x12\xc2\xb8\x4a\x23\x25\x66\x96\x27\x84\x6b\xbc\x0e\x94\x5b\x92\xa2\xe4\x6c\x20\x62\x09\x01\x0a\x01\x3c\x1f\x4c\x2d\x85\xa8\xb2\x24\x3a\x6b\x70\x5d\xd9\xe4\x39\x89\x6e\x2f\x96\x76\x9f\x2b\xc9\xc9\x28\xcc\xa5\xbc\x21\x80\xf5\x4b\x20\x70\x5c\xe2\xd3\x1b\x45\x2f\x81\x1c\x1c\x0c\xd9\xa0\x20\x58\x0b\xab\xca\x8f\x35\x9a\x73\x72\xa1\x76\x7f\x46\x24\xca\x3d\x21\xa9\x08\x3b\x0c\x20\x3e\x62\x92\x0d\xcc\x7c\x91\x56\x77\xe6\x1e\x84\x77\x38\x25\x70\x3b\xe2\x29\x21\xdf\x24\xec\x52\x6a\x23\x85\x3d\x49\x32\x4a\x22\x5a\x4f\xcf\x49\xbf\xa7\x50\xd1\x3b\x2d\x75\xa9\x22\x2f\xc5\x3f\x15\x98\xf1\x01\x32\x54\xb1\xb7\x31\x1a\x73\xf3\xa8\x5d\x9e\x31\x2e\x8f\xd8\xe5\x05\xb7\x54\xac\xe5\x47\x76\x26\x7a\x31\xdf\x09\xa2\xdb\x66\x1b\x38\xfa\x6a\xbd\x36\xf4\x9d\x9a\x1f\x5b\xef\xaa\xfb\x21\x36\xae\x86\x13\x03\xc9\x81\xd9\x49\x8e\xc8\x2a\x54\x0b\xc1\xe4\xe4\xc4\x9b\x61\x04\x55\xff\xc5\x80\x42\xbf\x1b\x9b\xdb\x54\x1a\xf9\xf7\x93\xca\x94\xee\xb3\x74\x38\xad\x4c\x65\x59\xa4\x2c\x26\x5b\x3e\x6f\x65\x04\x8e\xc0\x0c\xb2\xd5\xc9\xf0\x08\x7d\x68\x4f\x24\x22\x42\x88\x05\x25\x87\x70\x74\x08\x53\xe6\xeb\x21\xab\x7d\x79\x89\x76\x7d\x68\x1d\xa1\x7c\xc9\x21\x2c\x97\xed\xb4\x47\xbe\x1d\x98\xd9\x62\xf2\x4d\xa2\xfa\x47\xd0\xdc\x79\xcd\x6f\x31\xdf\xb3\x65\x3d\x23\xb3\x3f\xd3\x79\xcb\xa7\xcf\x05\x9b\x3b\xfa\xcd\x5c\x90\x44\xb7\x36\x21\x0a\xe1\x55\xc7\x49\x8d\x09\xc3\xc3\xeb\x6c\x53\x78\xbb\x6c\x65\x5f\x23\x83\x5c\x5d\x5b\xb7\xc0\xab\x4c\x62\x52\xb0\xb2\xa5\x90\x10\x88\x1c\x73\x74\xe2\x2b\x22\x55\xcd\x0d\xb1\xd4\xa4\xb6\xac\xb7\x86\x2c\x68\x32\x1a\x54\x1d\x86\x6e\x00\xcb\x07\xe3\xc1\xeb\xd4\xb5\x2e\x38\x47\x43\x97\xa7\x92\x1a\xd3\xeb\x47\x96\xe5\x97\x38\x7e\x97\xe2\x5b\x7e\x46\xc2\xab\xf9\x70\x69\x02\xd5\x6e\xd0\x92\x85\x34\x4b\x92\xb3\x4c\x78\xb5\xb5\xc3\x30\x84\x6d\xfd\x8e\xe2\xad\x26\xf6\xe3\xfb\x77\x4b\x79\xf6\xdd\xda\xbe\x1c\x67\x48\x9d\x33\x23\x2d\x5b\x4a\x23\x12\x62\xe6\xb2\xa7\x72\x99\x3c\x75\xd6\xa3\xbe\x15\x69\xd9\xbc\x80\xba\xcb\xdf\x80\xe2\x31\xae\xee\xf8\x54\x22\x9f\xb3\x05\xbc\x82\xb3\x98\x30\x40\x8a\x20\xc2\x80\x50\x8a\xaf\x31\x95\x3b\x16\x4b\xc7\x1c\x6c\x8f\x92\x04\x33\xfe\x56\xab\xfb\x91\xab\xda\x50\x6c\xb6\xee\x51\xba\x8b\x43\x19\x12\x2d\xa0\x83\x25\x8b\xc3\x05\x29\x6c\xe7\xeb\x0b\x9b\x9b\x31\xb1\x56\x43\x39\xfa\xdd\x96\x65\xf2\xec\x20\xfd\x55\x3a\xbe\x3c\xf9\xe4\x79\x70\xd0\xb1\x49\xed\xd1\xe1\x00\xbc\x4f\xde\xf1\xea\xf2\x04\xb6\xb4\x71\xad\x81\x0d\x2d\xa2\x45\x7b\x87\xf2\x8e\x52\xf4\x2c\xa3\xdc\x15\x4f\x6c\xe2\xea\x2c\x9d\x0f\x47\x16\xf9\xb9\x7c\x6b\xfb\x90\xc8\x70\x4b\xb0\x7d\xa4\xc3\x1d\x53\x9b\x00\xa3\x82\x70\x13\xa0\x5c\xf0\x21\xaf\xd9\x3e\x22\x02\x41\xb9\xec\xc3\x20\xf5\x56\x9c\x50\x91\xbf\x62\x66\x59\xc8\x26\x4c\x73\x6b\x4e\x40\xfd\x39\x1b\x01\x54\xef\xd4\x09\xf6\x47\x79\x56\xe1\x2a\x7b\x92\x73\x34\x6d\x40\x9b\xa6\x28\x17\xdf\x46\x3a\xce\xdb\x06\x9a\x42\x7d\x5b\x99\x46\xb5\x0d\xd4\x5c\x2a\xd4\xcf\x44\xdd\xde\xc9\x68\x4b\x35\xbd\xb8\x58\x92\xc8\x95\x2f\xd9\x59\x6a\x1c\x8a\x10\x06\xdc\x6d\x14\xaf\x06\x3b\xc5\x50\xd5\x83\x8a\x5a\x77\xf6\xec\xee\x23\x3c\xb4\xa0\x01\xdb\x7a\x8e\x48\x47\x3b\xb0\xb5\x99\x6a\xd8\xe1\x66\x4c\x73\xad\xfb\x1e\x43\x2c\xfe\x89\x52\x02\xdf\x1f\xc3\x08\x58\x0b\xa5\x6a\xb9\x0f\xe1\x68\x44\x81\x64\xaf\x29\x9b\xd3\x98\x2f\xc5\xcd\x6d\xbb\x24\xcd\x8f\x60\x5a\x65\x26\x6f\x65\x37\xb2\xe3\x46\x45\xa0\x83\x57\x70\x04\x9b\xce\x1b\x21\x95\x51\xb4\x4d\xcd\x96\xba\xc4\x61\x91\x5a\x56\x39\xd1\x79\xe3\x1a\x04\x1c\xb4\x69\xba\x70\x86\xc6\xe6\x47\x84\x74\x9c\x2c\x00\x27\x3a\x2b\x7b\x9b\xf2\xec\x2f\x04\xdf\xb8\x02\x4c\xf3\x23\x63\xd6\xc4\xbc\xae\xfc\xd8\x1a\x51\xf5\x7b\xb7\x7d\x3d\xa8\xa0\x84\xbf\x45\x51\x09\x7a\xc9\x59\x9c\xdd\xbc\x96\xa6\x28\xc3\xdf\xdc\x53\x51\x50\xa6\x17\xc2\xa6\xab\xac\xe4\xb0\x5b\x2e\x0e\x8a\xc6\x12\xba\xc7\x86\xa4\x87\xc7\x97\x9e\x4f\x71\xc1\x3c\x44\xe7\x47\xab\xf8\x04\x95\x75\xc8\x6b\x4c\xc9\xd0\xbe\x32\xf0\x64\xd5\xb7\xab\xb6\xfa\xbb\x4f\xb4\x3c\x75\x81\x61\x28\xb3\x36\x27\x5d\x25\xb0\x34\xad\x6c\x3b\x3e\xd3\x7e\x50\x6a\xfd\x0f\x90\xc5\xd9\x40\xaa\x8c\x27\x2f\xa6\xef\x8b\x83\xee\x6a\x5f\x8e\xed\x65\x7f\x1e\x83\x71\x4a\xef\xfd\x37\x98\x42\x8d\x81\xfd\xad\xb7\x85\xff\x51\x03\xaf\xf4\x3a\xff\x0c\xbc\x2e\x38\x43\xe0\x15\x4a\xf5\x64\xe1\xb6\xf7\xa8\xef\x20\x0c\xf7\x71\x27\x84\x5c\x7d\xf0\xfb\x6d\x7d\xa4\xa0\xf7\x33\x3b\xe5\xa6\xb5\xc0\x64\x3f\x0c\xda\x40\x54\x6e\xcd\x9b\xd1\x69\x63\xac\xc7\xdb\x2b\x1a\x99\x2e\x9b\xb1\xc8\xba\xd8\x4c\x91\xe9\x64\x48\xef\x77\x71\xc6\x9c\x0f\x51\x33\x5b\x6b\x24\x13\x88\xa9\xf8\x6f\xa7\x32\xa3\x1b\xfd\x0e\xb6\x1f\x73\x20\xd5\xcc\xcf\x78\x71\x58\x96\x73\x7d\x68\x79\xaf\xd8\x1d\xb7\x4c\xbd\x1b\xed\x23\x15\x59\xf5\x62\x47\xa8\xaf\x56\xcd\x51\xc4\xf4\xb7\xf2\xc6\x08\x69\xf8\x7c\x8e\x2b\x8d\x35\xef\xc5\x98\x08\xb6\x81\x44\xd3\xc6\xab\x1d\x18\xcf\x95\xa0\x99\xf7\x5d\xa6\x80\xa8\xbd\x96\x09\x10\xf5\xfe\xca\x14\x20\x9d\xc9\x4f\x00\xe9\x65\x3a\xf6\x3d\x80\x86\x5b\x7b\x48\xc0\x68\x56\x37\x6f\x39\xde\x3b\x7a\x13\xaa\xd4\xb1\x21\x6a\x22\x19\x1f\x65\x0c\x29\x8a\x41\xe3\x9b\x3f\x3a\xd0\xd4\x75\xf1\xdc\xbd\xc9\xb3\x2f\xb7\xe2\x96\xfb\x2c\x22\x5b\x82\x1d\x99\x31\xc5\x28\x3a\x53\x10\xb6\x2b\x2c\x50\x9e\xe6\xf9\xb6\x41\x91\x5e\x5a\xeb\x12\xa9\xe9\xd1\xed\xfb\x0a\xbf\xda\xa8\xb1\x2f\x4a\x8b\x12\xe7\x36\x43\x8d\x9f\xa4\x2d\xfc\xdd\x49\x47\x4e\xd7\xc3\x75\x00\x1e\xec\x49\x2a\xc7\x3c\x74\xc7\x63\x00\xbf\x5f\x16\x8c\x2d\x21\x8d\x99\xd8\xb2\xa5\x6d\x5a\x20\x55\xa8\x46\x20\xe6\x12\x6a\x61\xcf\x17\x2a\x6a\x9f\xeb\x63\x8f\x7d\x7c\x07\x01\x78\xf0\xa9\x58\xaf\xbf\xfd\x17\x89\xb0\x04\xb1\x28\x81\x8e\x02\x3d\x3c\x13\xb2\x28\x7d\xb9\x6d\x64\x2c\xac\x7f\xfb\x31\x80\xe7\xed\x27\x43\x97\x66\xca\x71\x0b\x48\xb2\x10\x25\x1f\x78\x46\xd1\x0e\x2f\x19\xe6\xc2\xb0\xe7\x33\x31\x40\xff\x24\xc9\x21\xcc\x6c\x37\x31\xa4\x42\xb4\x10\xa8\xeb\x26\x3d\x1c\xe3\xc2\x6f\xeb\x67\x4d\xc6\x3a\x00\xc1\xd3\xf3\x2e\x53\x7a\x29\x6c\x56\x55\x99\x93\xa4\xee\xe3\xfb\x77\x9d\xb3\xaf\x56\xc0\xf2\xf5\x25\x0a\xaf\x76\x34\x2b\xd2\x48\x31\xb8\x81\x82\x26\xf3\x4a\xc1\x2b\xb4\x07\xe0\x2d\x0c\xa8\x0c\xbc\x37\x7f\xd0\xa4\xc9\x7a\x41\xad\x57\x1d\x84\xeb\x8b\x33\xc6\x53\x64\x55\x49\xc1\x68\x41\x93\x2a\x07\xf1\x36\xab\x95\xb7\x80\x93\x81\xb3\x9e\x25\x56\x08\x04\x5f\xfa\xf8\xec\x6c\x35\x5b\x9c\xbf\xb0\x6d\x42\x0e\x39\x07\x3b\x4a\x5b\xf3\xdb\x62\xf6\x0d\x44\xe5\xd7\x12\xdb\xc6\x81\xcd\x01\xf6\x4a\x83\xb9\x56\xbc\x96\x73\x8f\x4c\xf3\x35\xd5\x46\x39\xdb\xba\x2c\x27\xcf\x00\xc2\x9e\x59\xef\xcc\x99\xdb\x83\xe3\xda\x89\x53\xdb\x8f\x7f\xbb\x6d\xdb\x3d\xb3\x5c\xa4\xb3\x37\xfb\xbe\xff\x77\x6f\x72\xab\x6f\x18\xe2\x71\x7d\xbe\x51\x45\xbd\x79\xef\x6b\x6c\x6f\x61\x54\x11\xa5\x7e\x8c\x77\x4c\xa0\x28\x6f\xba\x2b\xc7\x5c\x5d\x76\x37\x53\x2e\x5c\xb9\x40\xb7\x8c\x29\xde\x42\x00\xb3\x55\x92\xed\x48\x6a\xb8\x6d\xe4\xbc\x41\x1a\x66\xfb\xbc\xe0\xa2\x7a\xea\xd3\xd4\xf8\xa1\xb2\xb1\xe5\x4c\xaa\xc6\x43\x00\xdf\x21\x1e\x2f\xa5\xdb\x55\x61\xac\x71\x5f\x1d\x56\xf0\xd5\x7a\x3d\x74\xb8\xff\xb4\x52\x48\xd3\xf5\xf2\x8a\xfe\x82\x52\x9c\xf2\x6a\xda\xf5\x84\x43\x75\x9a\xd8\x71\x87\xc5\x35\x39\xaa\xaa\x3e\x9f\x78\x49\xed\xe9\x4a\xfd\x81\xad\x8f\x11\xd5\x40\x7d\x6c\xcf\x71\x2e\xa1\xc1\xf1\x79\x4b\xc4\x17\xed\x03\x85\xae\xed\xdf\xf6\xd2\x1c\x04\xae\xdd\x5c\xd9\x15\x6a\x8d\x3f\x09\xca\xf5\x59\x98\x16\xd9\x84\xc4\x22\xfc\x66\xae\x77\x6a\x3b\x92\xd2\x31\x8b\xce\x9f\x37\x88\x9b\x7f\xaa\x60\xd6\x2b\x91\x67\x4d\x53\x49\xf1\xcd\xc7\xf7\xef\x5c\xe9\x90\x1a\x51\xe5\x34\x75\x1b\x69\xd4\xc1\xe0\xba\xe9\x35\xb5\xc8\x7c\x92\x13\x80\x2e\x91\xed\xb3\x22\xe5\xed\xae\x8c\x89\x9e\x5e\x72\xdc\x4a\x51\x77\x86\x1c\xb7\xbe\x57\xda\xa7\xa8\xe7\x69\x82\x72\x07\x5d\xfe\xbe\x8b\x7c\x66\xd0\x58\x3d\x06\x45\xd1\x9b\x6b\x9c\xf2\x77\x84\x71\x9c\x62\x3a\x9f\x51\xcc\xc8\xcf\x22\xad\x1e\x16\xaa\x10\xe8\xe0\xcc\x7d\xa9\xf6\x89\x71\x5e\x3b\xae\x45\xae\xcb\xf4\xfa\x1f\xf5\x38\x5e\xa9\x7f\x22\xe2\xd9\xf1\x4a\xfe\x33\x2e\xff\x1f\x00\x00\xff\xff\xa7\xb6\x6b\x4f\xd6\x65\x00\x00") +var FileIndexHTML = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x3d\x6d\x73\xdb\x36\x9a\xdf\xf3\x2b\x9e\x30\x7b\x2b\xe9\x6c\x4a\x72\xb6\xdd\xbb\x51\x4c\xa7\xad\x93\x9d\xcb\x5c\xba\xed\x24\xce\xde\xed\x38\xbe\x1b\x98\x84\x24\xd4\x14\xc9\x02\xa0\x5f\xea\xe6\xaf\xdc\xdc\xaf\xbb\xdf\x71\x83\x37\xbe\x02\x20\xe5\xb8\x9d\xed\xce\xf2\x43\x22\x91\x78\x5e\xf1\xe0\x79\x03\x28\x1f\x3f\x7d\xf5\xdd\xe9\xd9\x5f\xbf\x7f\x0d\x5b\xbe\x4b\x4f\x9e\x1c\x8b\xff\x20\x45\xd9\x26\x0a\x70\x16\x9c\x3c\x79\x72\xbc\xc5\x28\x39\x79\x02\x00\x70\xbc\xc3\x1c\x41\xbc\x45\x94\x61\x1e\x05\x1f\xce\xfe\x14\xfe\x6b\xd0\x7c\x94\xa1\x1d\x8e\x82\x6b\x82\x6f\x8a\x9c\xf2\x00\xe2\x3c\xe3\x38\xe3\x51\x70\x43\x12\xbe\x8d\x12\x7c\x4d\x62\x1c\xca\x2f\x87\x40\x32\xc2\x09\x4a\x43\x16\xa3\x14\x47\x47\xf3\x65\x0b\xd5\x96\xf3\x22\xc4\x3f\x96\xe4\x3a\x0a\xfe\x33\xfc\xf0\x75\x78\x9a\xef\x0a\xc4\xc9\x65\x8a\x1b\x78\x09\x8e\x70\xb2\xc1\x06\x32\x25\xd9\x15\x50\x9c\x46\x01\xe3\x77\x29\x66\x5b\x8c\x79\x00\x5b\x8a\xd7\x51\xb0\x88\x19\x5b\xd4\xb7\xe7\x31\x63\xa3\xc1\xd6\x79\xc6\xd1\x0d\x66\xf9\x0e\xef\x05\xc7\xf2\x92\xc6\x38\x64\x28\x63\x61\x41\xf3\x26\x2c\x8b\x29\x29\x38\x30\x1a\x47\xc1\xe2\x07\xb6\xb8\x2e\xf1\xfc\x07\x16\x9c\x1c\x2f\xd4\x13\xc7\x30\x74\x4b\x72\x36\x66\xe0\x0f\x2c\x8c\xf3\xfc\x8a\x58\xb1\xd6\x8c\xa3\xa2\x48\x71\xc8\xf3\x32\xde\x86\x24\xce\xb3\xb0\xa0\x38\xce\x77\x45\xce\x70\x12\x00\x23\x3f\x61\x16\x05\x47\x5f\x7c\x71\x7b\xf4\xc5\x17\x95\x68\x14\xb3\x45\x0f\x50\x0f\x9a\x17\xd9\x26\x80\xc5\x03\x09\x7d\xf9\xfc\xf6\xe8\xcb\xe7\x03\x84\xd4\x20\x17\x21\x31\x26\x00\x7e\x57\xe0\x28\x20\x3b\xb4\xc1\x0b\x39\xb0\x81\x71\x8d\xae\x25\xa2\x3f\x3c\xbf\xfd\x83\x46\xa3\xe9\xcb\x3b\x9f\x87\xf4\xe8\x8f\xb7\x47\x7f\x6c\x21\x95\x77\x6a\xa4\x9c\xf0\x14\x9f\xbc\xdf\x92\x9c\x12\x08\xe1\x9b\x3c\xbf\xda\x21\x7a\xc5\xe0\x5b\x94\xa1\x0d\xa6\xc7\x0b\x35\xe2\xc9\xf1\x42\xad\xbc\x27\xc7\x97\x79\x72\xa7\xa1\x13\x72\x0d\x24\x89\x82\x1d\x22\x59\x58\xa0\xca\xf4\x5b\x0f\x05\x1c\xa6\x8d\x27\x8a\x30\xde\x15\x29\xe2\x18\xae\x43\xb2\x8e\x82\x78\x8b\xe3\x2b\x9c\x54\xf4\xe7\x29\xce\x36\x7c\x0b\x51\x14\xc1\xb2\x03\x2b\xe1\x91\xc4\x9d\xe6\x9b\xbc\x12\xdc\x32\x4c\x19\x63\x81\xb2\x93\xff\xfb\xdf\xff\x39\x5e\xc8\x4f\x4c\x0a\x7b\xbc\x40\x16\xac\x86\x67\x86\x11\x8d\xb7\xe1\x65\x7e\xeb\x42\x4a\xb2\xa2\xe4\x7a\x0e\x38\xbe\xe5\x81\x76\x37\x57\xf8\xee\x26\xa7\x49\x00\xd7\xe1\x2e\x4f\x70\x3a\xe7\x94\xec\x0c\xc2\xf9\x8f\x25\xa6\x77\x01\x7c\x75\x85\xef\xca\x62\x8e\x33\x8e\xa9\x10\x02\x25\xaf\x10\x47\x01\x14\x29\x8a\xf1\x36\x4f\x13\x71\xfb\xbd\x04\x81\x92\xa6\x87\xc0\xd1\x86\x1d\x82\x9c\x0a\xc8\xa9\xf1\x38\x2e\xde\x10\xc4\x29\x62\x2c\x0a\x2e\x4b\xce\x85\xa9\x7c\x15\xa7\x24\xbe\x6a\x50\xb2\x03\x2a\xc1\x0c\xf0\x1a\x31\x58\xa3\x50\x71\x2e\x3e\xad\x6f\xc4\xd2\x25\x0e\xa2\x56\x7d\x2e\x12\x72\xed\x51\xb3\x32\x8d\x70\x87\xb3\x32\xd0\x86\xf0\x54\xf0\x48\xb2\x8d\x5b\x36\x23\x0c\xc5\x0f\x11\x27\x4e\xf3\x32\x19\x94\x06\x2a\xbb\x79\x27\xa9\x68\xd3\x19\x2f\x79\x87\x57\x9e\x6f\x36\x29\x7e\xb3\x6b\x2f\x91\x41\x66\xd7\x37\x01\xac\xf4\x2d\xb6\xcd\x6f\x24\x02\x78\x09\x93\x35\x0a\xf1\x1d\x0e\x59\x8a\xd8\x76\x02\x2b\x73\x63\x32\x4a\xa4\xfb\xfb\x16\xae\x7f\x23\x09\x06\xe9\x46\x24\xa6\xf7\xdb\xfc\x46\x7f\xfd\xf4\xe9\x73\xe5\x16\xeb\xb3\x74\xd9\xa9\x55\x64\x46\x36\x59\x98\x97\x3c\x44\x29\xdf\x63\x9a\xde\x4a\x42\x7b\xb3\x6b\x31\xd0\xe3\x85\x71\x4d\x6e\x8f\x85\x53\x86\x2d\xc8\x0a\x69\xd4\x59\xc8\x70\x8a\x63\x8e\x93\xe0\xe4\xfe\xde\xe1\xd8\x3e\x7d\x02\x33\xea\x78\x51\x8c\x5c\x22\x83\xea\x8e\x53\x8c\xe8\x7b\x8d\xb7\x22\xb9\x9f\xc5\x89\x7f\x2f\x51\x36\x4a\xeb\xa7\x28\x8b\x71\xfa\xb9\x46\xa2\x14\xf1\x75\x9a\x7e\x06\xc7\x52\xcd\x21\xfb\xb1\x44\x14\x8f\x62\x5d\x69\x09\x50\xfa\xd9\xec\x27\x38\xc5\x1c\x57\xbc\x4f\xbb\x33\x3e\xdb\x5f\x1a\x4e\x11\xdb\x8e\x12\xe3\x95\x24\xfe\x4b\xd9\x7d\x67\x58\x2b\xde\x0f\x04\x74\xe3\xc7\xe1\xf7\xbf\x07\x4c\x69\x4e\x65\x28\x9f\x4c\x6c\xb1\xdc\xa0\x95\x31\x35\xbc\xd4\x8a\x73\x99\x7b\xa1\x29\xc8\xd1\x46\xcb\xf3\x92\xa6\xf0\x54\x53\xb8\xbf\x6f\x3f\x23\x89\x24\x1e\x1e\x09\x77\xf7\x67\x7c\x03\x86\x84\x74\x78\xaf\x13\xc2\xeb\x3b\xc2\xe7\x59\xd6\x23\xd8\x63\xbe\x4c\x3c\xe4\xed\x0f\xef\xde\x76\x63\x7e\x8f\xc1\x4e\x80\xff\xf0\xee\x2d\xac\x73\x0a\x7c\x8b\x21\x6b\x70\x15\xc0\x57\xeb\x3c\x2e\xd9\x9e\xeb\xb9\x3b\x03\x6e\xfd\x78\xcc\xb1\x27\xa1\x4f\x24\x99\x8f\x74\x84\x3a\x2d\x19\xcf\x77\x95\x2c\x3a\x67\x99\xe6\x05\x27\x79\x86\x52\xff\x62\xd8\x8f\x3a\xda\xb0\x6e\xca\x54\xa0\x18\x03\xc3\x05\xa2\x88\xe3\x44\xa6\x4d\x5a\xc5\x84\xd5\x3c\x8d\xe3\x46\x70\x80\x28\x36\x75\x24\xbe\x8d\x31\x2d\x06\x78\xaa\x06\xb5\xd8\x7a\xad\xee\x0e\x70\x22\x16\xa0\xa2\xe8\x61\xca\x6e\xfc\x6a\x81\xe9\xe9\x35\x1e\x45\xde\x0c\x77\x98\x31\x99\x75\x74\x17\x85\x7c\xec\xb1\x76\x30\x2b\xb3\x95\x4b\x86\x82\x3f\x8f\xd6\xba\x50\x4c\xcc\x08\x15\xc2\x59\x33\xc1\x16\x18\xb2\xca\xe6\xcf\x07\x5b\x08\xec\xce\x94\x15\x24\xcb\x30\x35\x1f\x07\xdc\x2a\xf8\xbc\x7e\x35\x60\x30\x17\xb0\x08\xe7\xc8\xc9\xe5\x1a\x7f\xd3\x14\x39\xa8\xe2\xea\x00\x1b\x7e\xc4\x0c\x5d\xe3\x1a\xe5\xab\x3c\xc3\xc3\x72\x39\x72\x9f\xf6\x18\xe7\x4c\xfa\xc0\x7d\xa5\x80\x9a\xf6\x66\x89\xa4\x6d\x59\x04\x8f\xaa\x20\x68\x16\x66\x62\x81\xef\x30\xef\x95\x95\x0d\xad\xb4\x90\xea\xaa\xac\x5a\x22\x75\x0d\xb1\xcb\xaf\xb1\xaa\xb4\xbe\x17\x38\xa7\x6d\x80\x99\x58\x37\xed\x5b\x62\xc9\xb8\x93\x82\xeb\x70\x9d\xd3\x28\xe0\x68\x03\x24\x03\x0d\xa9\x3c\x95\x9b\xe6\xe4\xd9\xe4\x80\xa3\xcd\x2c\x38\x79\x76\x7f\xcf\xd1\xc6\x41\x62\xa8\x9a\xda\x50\x92\xb8\xf4\xa1\xd4\x2c\x79\x8b\xf3\xb4\xdc\x65\x82\x3d\x01\x70\x2a\xbf\xb1\xca\x6b\xa8\xa7\x01\xac\x64\x13\x29\x0a\xee\x77\xe8\xf6\x3f\x48\xc2\xb7\x2b\x50\x8f\xe4\x97\x4f\x3e\xc7\xd9\xa0\x45\x38\xde\x09\x4a\x06\xab\x31\xd5\x2a\xd2\x99\xea\xc6\xe4\xc9\x2b\x20\xcc\x18\xed\xa9\xba\x35\x15\x48\xe6\x24\x4b\xf0\xed\xec\x53\x00\x2b\x19\x73\x27\x06\x45\x38\x39\xa8\x9f\x0f\x39\xa6\x6a\xad\x48\x6a\xa2\xba\xef\x54\x68\x2d\xd2\x4d\xc2\x0f\x71\x3f\x92\xc8\xa3\xb8\x1b\xd4\x55\x5c\xb8\xc3\x1c\x25\xb2\x67\xc0\x11\xdd\x60\x1e\x05\xff\x7d\x99\xa2\xac\xa9\xd1\xc9\x16\xb1\x50\x15\x72\x2b\x03\x27\x8b\x3e\x29\xd7\x4c\xaf\x85\x4f\xf5\x54\x5b\x06\x05\xb0\x52\xcd\x15\xa9\x0a\x91\xc2\x8c\xd0\x43\xd1\xe3\x96\x93\x9d\x8c\x40\xe6\xc6\x19\xd9\x69\x02\x03\x01\xc8\x8b\x53\x24\x1f\x22\xac\x09\xd6\xe4\xb7\x87\x23\x93\x92\xdd\xdf\x6f\x30\x7f\x95\x8b\xe4\xf6\xc3\xbb\xb7\x53\x23\xf2\x18\x1e\x87\xa7\xb0\x0a\xdc\x02\xab\x4e\x13\xba\x11\xbb\x62\xc7\xa4\x11\x46\x3a\xfd\x7d\x0c\x23\xb5\x3f\x55\x7a\x41\x9b\xaa\x97\x76\x02\xcb\x3e\x29\xe9\x9b\x46\x85\x99\xb6\x6b\xab\xb0\x37\x02\x8e\x74\x69\x67\x68\x33\xe5\x68\x33\x17\x59\x93\x74\x9f\xe6\x8b\xc7\x71\xd6\x6a\x1c\xce\x12\x9a\x29\x49\xbd\x1a\x9c\xd5\x71\x47\x08\xc3\x6b\x59\x24\xa8\x2e\xda\xf6\x5c\xe9\x60\x6d\x5c\xdc\x65\xf1\x88\xc5\x5e\xc1\xcb\x8a\xed\x83\x64\xc3\x57\xbe\xb5\x60\x46\x26\x04\x46\x48\x9c\x10\xfe\x98\x22\x16\x38\x8b\x49\x1a\xa2\x94\xef\x2d\xa8\x28\xb2\x7e\x29\x31\xbb\x05\xf8\x79\x2d\xea\xc5\x43\x64\xa5\x55\x09\xfe\x20\x51\x87\x4b\xf2\x87\x08\xab\xfd\xf0\x64\x61\x8c\x7e\x61\x02\x5f\xd2\x8b\x01\x0f\x9c\xde\x2d\x61\x3c\xa7\x77\x7b\x0b\x7c\x8a\xe2\xed\xe3\xc9\x3b\xe0\x03\xbc\xe9\xa7\x3d\x3f\xda\xa3\xc7\x57\x7b\x4f\xd3\xbe\xf8\xf9\x67\x68\x57\x57\xb2\xff\xa1\x8a\xaa\xf0\x12\xd9\x12\xd0\x63\xd2\xc6\x11\x7c\x46\x59\x52\xc5\x8d\x71\x25\x9e\xab\xa8\xeb\x36\x72\x2c\x7d\x1d\x45\x26\x21\x28\xcd\x37\xf3\x6b\xc2\xd4\xde\xa6\x90\x56\xdd\x0b\xf3\x6b\x4c\x53\x74\xd7\xed\xfb\x98\xec\x53\x8d\xb2\xa9\xa3\x68\x62\xd1\x3d\x83\x3a\x4b\x69\xc9\x30\x59\x81\xe6\x80\xb0\xd7\x52\x16\x21\x95\xbe\xe5\x8b\xf1\x52\x4f\x5b\xbe\x4b\x2b\x11\xcc\x1e\x49\x93\x78\xb5\x6f\xe2\xef\xb9\xea\xd1\xba\xa0\xf2\x64\xd4\xe3\x8b\xdc\xaa\x20\xd1\xdc\x0d\x57\xb5\x9f\x5d\xcd\xba\xcb\x94\xd1\xd5\xab\xbb\xb8\xd4\x62\x30\x1c\xe7\x59\xf2\x75\xcc\x89\x50\x54\x35\x53\xea\xf6\xe9\x36\x27\xf1\x50\xd8\x1f\x24\x21\xd2\xb1\x1e\x01\x71\x73\x10\xfd\x9e\xe5\xa8\x7b\x8d\x34\x3f\x36\x77\xae\xc5\x75\x8d\x28\xf0\xfc\x0a\x67\x10\xc1\xa9\xdc\xe2\x66\xf3\x0d\xe6\xd3\x89\xbc\x39\x99\x1d\xb6\x68\x90\x8c\x71\x51\xdb\x43\x04\x6a\xef\x3c\xa6\x18\x71\x3c\x9d\xbd\x78\xf2\xa4\x3b\x66\x9e\xe0\x35\x2a\x53\xce\xe6\x22\x7d\xce\x4b\x0e\x11\x1c\x2d\x97\xcb\xe5\x0b\xcf\x50\xb5\x5d\xc0\xe6\x71\xbe\xdb\xe5\xd9\xf9\xe4\xeb\x92\x6f\x73\x4a\x7e\x42\x42\x81\x93\x0b\x88\x60\xf2\x0d\x46\x14\x53\x98\xc0\x81\x62\xbc\x41\x5a\x08\x83\x8a\x02\x22\xd9\x8f\xfc\x4b\x89\xa7\xf7\x2d\xf6\x71\xba\x82\xc9\xb3\x6a\xb7\x77\xd2\x16\x4e\xd4\x23\x2b\xb8\xef\xe9\xfa\x86\x64\x49\x7e\xa3\x8b\xc8\xe5\x61\xef\xb9\xf4\x00\x2b\x08\x82\xfe\x23\xbd\x4c\x56\xb0\x46\x29\xc3\xfd\xe7\x26\x18\xb2\x15\x9c\x5f\xf4\x1f\x77\x5b\xf1\xf6\x51\xd5\x6e\xd8\x0a\x38\x2d\x2d\x54\x54\x62\x6b\x13\x4d\x5c\xb2\x61\x61\x67\x5f\x5c\xba\x6d\xe0\x1e\x20\x92\x68\xc1\x58\xef\xe1\xa7\xfe\xf8\x56\x6b\xcc\xc5\x90\xcc\x7c\x56\x10\x1e\xd9\xe9\x91\xc4\xfd\xac\xa4\xa9\x87\x51\xe1\x7f\x87\xe4\x70\x3d\xd5\x25\x8c\x67\x80\xdb\x0a\xa0\x67\x09\x63\x74\xa5\x5c\x85\x4b\x49\x3a\xc2\x39\x2d\xab\x4f\xd3\xa1\x4d\x15\xa7\xbc\x63\xb4\xe2\x26\x13\xfb\x63\x1d\x95\xdc\x03\x6a\x6f\xe7\x1e\xd3\x74\xb9\x7e\x4c\xca\x99\xae\x60\x5d\x66\xf2\x13\x4c\x67\x70\x6f\xd1\x5f\x8d\xd5\x0e\xd1\x9f\x83\xd6\x9d\x0e\xc6\x1d\xe6\xdb\x3c\x61\xb6\xe9\xa8\xea\xc6\x26\x05\x8e\x36\x33\x97\x7d\xaf\x61\xca\xb7\x84\x99\x20\x3a\x03\x8a\x79\x49\x9b\x8e\xac\x79\x09\xa7\x96\xe1\x9b\x33\xb4\x11\xde\xef\x99\xf4\x7b\x68\xf3\xc2\x8f\xba\xd9\x8c\x54\xa5\xc4\x77\xeb\xa9\xc2\x32\xd3\x9b\x49\x2e\xf6\xc4\xd5\xc3\x01\x07\x11\x4c\xa4\xcf\x55\x48\xec\xe4\xed\xa0\x51\xff\x9e\xdc\x7c\x98\xce\xe6\x14\xcb\x8d\x86\xe9\xe2\x23\x3b\x58\x6c\x0e\x05\x89\xd9\x00\x6a\x73\x68\x62\xea\x18\x68\x99\xd7\xbe\x6d\xf4\x7a\x98\xcd\xa9\x93\xcd\xd9\xfd\x27\xef\xe1\xca\x30\x5a\x90\x84\x95\x12\xf6\x57\xd0\xa0\x72\xac\x6a\x30\x00\x9d\xc5\xf1\x0b\x89\x3e\x99\x3c\x1e\xef\x8f\xc3\xb9\x75\xf8\x62\x01\xdf\x23\xca\xb0\x5e\xd9\x2a\x42\x3a\xd7\x26\xbd\x3d\x43\x1b\x06\x11\x2c\xa6\xff\xf5\xf3\x47\x76\x30\x7b\x36\xfd\xf8\xfe\x60\xb6\xd8\xd8\x5d\x12\xe8\x50\x03\x11\x9c\x5f\x38\x18\xb8\xd9\x92\x14\xc3\x74\x4a\x31\x2b\x53\x91\x37\x29\x1a\x73\x7c\x8b\xe3\xfe\xfa\x9e\xa9\x5e\x68\x56\xa6\xa9\x77\x4d\x0b\x0c\x45\xc9\xb6\x1a\xed\xf9\xf3\x0b\xe7\x12\x72\x0a\x6b\x36\x22\x7c\x66\xdc\xd3\xc3\x08\x8b\x76\xcd\xc3\x9f\x30\x8f\xb7\x32\x33\x73\x1b\x8e\xde\x9e\x1f\xb6\x2e\x51\x0f\x47\x32\x47\x1a\x36\x59\x3d\x45\xe2\xbf\xe1\xc1\xb5\x56\xf4\x27\x87\x77\x36\xe9\xae\x4c\xb0\x17\xa8\x20\x55\x37\x84\x4d\x0e\x3d\x53\x27\x2e\xe9\x1c\xac\xf1\xa7\x7b\x55\x19\x9b\x85\x45\xb7\x4d\x56\x72\xc9\x34\xa8\xab\x8a\xf9\x0f\x39\xc9\xa6\x01\x04\x33\x2f\x82\xbe\xf3\xad\x9e\xb8\x01\xe7\x7c\x8b\xb3\x69\xbd\x8a\x29\x66\x45\x9e\x31\xec\x33\x66\x71\xa1\xa2\x68\x4c\xab\xcc\x5f\xdc\xb1\xc3\x00\x54\x0a\x17\xab\x4a\x13\x9a\x0b\xfb\x72\x83\xfa\x58\x8f\x11\x8f\xb7\x0d\xde\xa5\x2d\x0e\x31\x2e\x16\x92\x1c\xf8\x2d\x13\x9c\xcb\x8f\x73\xc3\x0c\xbc\xec\xdc\x90\xdc\xc1\x4a\xdf\xd5\x8d\x86\x61\x41\xf7\xd6\x8c\x59\x46\x86\x33\xbd\x60\x7d\x7a\x19\xe5\xa8\x9b\xfb\xb8\x7b\x39\x6b\xeb\x3e\xfa\x88\xa0\x63\x85\xab\x16\xfe\x3e\x34\x4b\x9a\xca\x64\x29\x08\x46\xe4\x68\x24\xb9\x35\x6e\xb1\x73\x7c\x47\xa4\x5f\x83\xc1\xc0\x02\x28\x17\x5e\xd7\x5f\x8a\x35\xe8\x46\xa6\xb2\x33\xe3\xb9\x34\xf3\xf0\x12\xce\x2f\x60\x05\x29\x61\x5c\xa5\x91\x12\x33\x2b\x52\xc2\x35\x5e\x0f\xca\x35\xc9\x50\x7a\x36\x10\xb1\x84\x02\x85\x02\x9e\x0e\xa6\x96\x42\x55\x79\x9a\x9c\x35\xa4\xae\xd6\xe4\x39\x49\x6e\x2f\xe6\x6e\x9f\x2b\xd9\xc9\x29\x4c\xa5\xbe\x21\x82\xe5\x0b\x20\x70\x6c\xf0\xe9\x8d\xa2\x17\x40\x0e\x0e\x86\xd6\xa0\x60\x58\x2b\xab\xca\x8f\x35\x9a\x73\x72\xa1\x76\x7f\x46\x24\xca\x3d\x25\xa9\x08\x3b\x0c\x20\x2e\x41\x64\x05\x93\x50\xa4\xd5\x1d\xda\x83\xf0\x1e\xa7\x04\x7e\x47\xbc\x4f\xc8\xb7\x29\xdb\x68\x6d\xa4\xb2\xf7\xd2\x8c\xd2\x88\xb6\xd3\x73\xd2\xef\x29\x54\xfc\xee\x97\xba\x54\x91\x97\xe2\x1f\x4b\xcc\xf8\x00\x1b\xaa\xd8\x5b\x59\x17\x73\xf3\x2c\x5e\x91\x33\x2e\xcf\xe0\x15\x25\x77\x54\xac\xe6\x92\x9d\x89\x5e\xcc\xf7\x82\xe8\xb6\xd9\x0a\x8e\xbe\x5c\x2e\x2d\x7d\xa7\xe6\xe5\xea\x5d\x75\x2f\xe2\x92\x6a\x38\x31\x90\x12\xd8\x9d\xe4\x88\xac\x42\xb5\x10\x6c\x4e\x4e\x3c\x19\x46\x50\xf5\x5f\x2c\x28\xf4\xb3\xb1\xb9\x4d\x65\x91\x7f\x3b\xa9\x8c\x71\x9f\xc6\xe1\xb4\x32\x95\x79\x99\xb1\x2d\x59\xf3\x69\x2b\x23\xf0\x04\x66\x90\xad\x4e\x86\x47\xd8\x43\x9b\x90\x88\x08\x31\x16\x9c\x1c\xc2\xd1\x21\xec\x43\xaf\x87\xac\xf6\xe5\x06\xed\xf2\xd0\x39\x42\xf9\x92\x43\x98\xcf\xdb\x69\x8f\x7c\x3a\x40\xd9\xb1\xe4\x9b\x4c\xf5\xcf\xa8\xf9\xf3\x9a\xdf\x62\xbe\xe7\xca\x7a\x46\x66\x7f\xb6\x03\x99\x8f\x9f\x0b\x36\x77\xf4\x9b\xb9\x20\x49\x6e\x5d\x4a\x14\xca\xab\xce\x9b\x5a\x13\x86\x87\xd7\xd9\xb6\xf0\x76\xd9\xca\xbe\x46\x06\xb9\xba\xb6\x6e\x81\x57\x99\xc4\x5e\xc1\xca\x95\x42\x42\x24\x72\xcc\xd1\x89\xaf\x88\x54\xb5\x34\xc4\x51\x93\xba\xb2\xde\x1a\xb2\xa4\xe9\x68\x50\x75\x5a\xba\x01\x2c\x6f\x8c\x07\xaf\x53\xd7\xba\xe0\x1c\x0d\x6d\x4e\x25\x35\xc8\xeb\x5b\x8e\xe9\x97\x38\x7e\x97\xe1\x5b\x7e\x46\xe2\xab\xe9\x70\x69\x02\xd5\x6e\xd0\x9c\xc5\x34\x4f\xd3\xb3\x5c\x78\xb5\xa5\x67\x61\x88\xb5\xf5\x3b\x8a\xd7\x9a\xd9\x0f\xef\xde\xce\xe5\xe1\x78\x67\xfb\x72\xdc\x42\xea\x9c\x19\x69\xad\xa5\x2c\x21\x31\x66\xbe\xf5\x64\xa6\x29\x50\x67\x3d\xea\xd7\x26\x1d\x9b\x17\x50\x77\xf9\x1b\x50\x7c\x8b\xab\x97\x80\x2a\x95\x4f\xd9\x0c\x5e\xc2\xd9\x96\x30\x40\x8a\x21\xc2\x80\x50\x8a\xaf\x31\x95\x3b\x16\x73\x0f\x0d\xb6\x43\x69\x8a\x19\x7f\xa3\xcd\xfd\xc8\x57\x6d\x28\x31\x5b\x2f\x5a\xfa\x8b\x43\x19\x12\x1d\xa0\x83\x25\x8b\xc7\x05\x29\x6c\xe7\xcb\x0b\x97\x9b\xb1\x89\x56\x43\x79\xfa\xdd\x8e\x69\x0a\xdc\x20\xfd\x59\x3a\xbe\x3c\xf9\x18\x04\x70\xd0\x59\x93\xda\xa3\xc3\x01\x04\x1f\x83\xe3\xc5\xe5\x09\xac\x69\xe3\xbd\x07\x36\x34\x89\x0e\xeb\x1d\xca\x3b\x8c\xea\x59\x4e\xb9\x2f\x9e\xb8\xd4\xd5\x99\xba\x10\x8e\x1c\xfa\xf3\xf9\xd6\xf6\x21\x91\xe1\x96\x60\xfb\x48\x87\x3f\xa6\x36\x01\x46\x05\xe1\x26\x80\x99\xf0\x21\xaf\xd9\x3e\x22\x02\x91\x99\xf6\x61\x90\x7a\x2b\x4e\x98\xc8\x5f\x31\x73\x4c\x64\x13\xa6\xb9\x35\x27\xa0\xfe\x9c\x8f\x00\xaa\x77\xea\x84\xf8\xa3\x3c\xab\x70\x95\x3d\xcd\x79\x9a\x36\xa0\x97\xa6\x28\x17\xdf\x24\x3a\xce\xbb\x06\xda\x42\x7d\xdb\x98\x46\xb5\x0d\x14\x2d\x15\xea\x27\xa2\x6e\xef\x64\xb4\xc6\x4c\x2f\x2e\xe6\x24\xf1\xe5\x4b\x6e\x91\x1a\x87\x22\xc4\x02\xee\x36\x8a\x17\x83\x9d\x62\xa8\xea\x41\xc5\xad\x3f\x7b\xf6\xf7\x11\x1e\x5a\xd0\x80\x6b\x3e\x47\xa4\xa3\x1d\xd8\x7a\x99\x6a\xd8\xe1\x66\x4c\x73\xae\xfb\x1e\x43\x4c\xfe\x89\x32\x82\x30\x1c\x23\x08\x38\x0b\xa5\x6a\xba\x0f\xe1\x68\x44\x81\xe4\xae\x29\x9b\x64\xec\x6f\xcd\x4d\x5d\xbb\x24\xcd\x4b\x08\xad\x32\x93\x37\xb2\x1b\xd9\x71\xa3\x22\xd0\xc1\x4b\x38\x82\x55\xe7\x89\xd0\xca\x28\xde\xf6\xcd\x96\xba\xcc\x61\x91\x5a\x56\x39\xd1\x79\xe3\x35\x08\x38\x68\xf3\x74\xe1\x0d\x8d\xcd\x4b\x84\x74\x9c\xce\x00\xa7\x3a\x2b\x7b\x93\xf1\xfc\x2f\x04\xdf\xf8\x02\x4c\xf3\x92\x31\x6b\xcf\xbc\xce\x5c\xae\x46\x54\xfd\xdc\xbf\xbe\x1e\x54\x50\xc2\xaf\x51\x54\x82\x9e\x72\xb6\xcd\x6f\x5e\xc9\xa5\x28\xc3\xdf\x34\x50\x51\x50\xa6\x17\x62\x4d\x57\x59\xc9\x61\xb7\x5c\x1c\x54\x8d\x23\x74\x8f\x0d\x49\x0f\x8f\x2f\x3d\x9f\xe2\x83\x79\x88\xcd\x8f\x36\xf1\x3d\x4c\xd6\xa3\xaf\x31\x25\x43\xfb\x95\x81\x47\xab\xbe\x7d\xb5\xd5\xdf\x7c\xa2\x15\xa8\x17\x18\x86\x32\x6b\x7b\xd2\x65\x80\xe5\xd2\xca\xd7\xe3\x33\xed\x07\xa5\xd6\x7f\x07\x59\x9c\x0b\xa4\xca\x78\x8a\x72\xff\x7d\x71\xd0\x5d\xed\xcb\xb1\xbd\xec\x4f\x63\x30\xee\xd3\x7b\xff\x0d\xa6\x50\x63\x60\x7f\xeb\x6d\xe1\xbf\xd7\xc0\x2b\xbd\xce\x3f\x02\xaf\x0f\xce\x12\x78\x85\x51\x3d\x5a\xb8\xed\xdd\xea\x3b\x08\xcb\xfb\xb8\x7b\x84\x5c\x7d\xf0\xfb\x4d\x7d\xa4\xa0\xf7\x3b\x3c\x66\xd3\x5a\x60\x72\x1f\x06\x6d\x20\x32\x5b\xf3\x76\x74\x7a\x31\xd6\xe3\xdd\x15\x8d\x4c\x97\xed\x58\x64\x5d\x6c\xe7\xc8\x76\x32\xa4\xf7\xc3\x39\x63\xce\x87\x28\xca\xce\x1a\xc9\x06\x62\x2b\xfe\xdb\xa9\xcc\xe8\x46\xbf\x47\xec\xcf\x39\x90\x6a\x97\x67\xbc\x3a\x1c\xd3\xb9\x3c\x74\x3c\x57\xe2\x8e\x9b\xa6\xde\x1b\xed\x23\x0d\x59\xf5\x62\x47\x98\xaf\x36\xcd\x51\xcc\xf4\xb7\xf2\xc6\x28\x69\xf8\x7c\x8e\x2f\x8d\xb5\xef\xc5\xd8\x18\x76\x81\x24\xfb\x8d\x57\x3b\x30\x81\x2f\x41\xb3\xef\xbb\xec\x03\xa2\xf6\x5a\xf6\x80\xa8\xf7\x57\xf6\x01\xd2\x99\xfc\x1e\x20\xbd\x4c\xc7\xbd\x07\xd0\x70\x6b\x0f\x09\x18\xcd\xea\xe6\x0d\xc7\x3b\x4f\x6f\x42\x95\x3a\x2e\x44\x4d\x24\xe3\xa3\x8c\x25\x45\xb1\x58\x7c\xf3\x47\x07\x9a\xb6\x2e\xee\xfb\x37\x79\x76\x66\x2b\x6e\xbe\xcb\x13\xb2\x26\xd8\x93\x19\x53\x8c\x92\x33\x05\xe1\x7a\x85\x05\xcc\x69\x9e\x6f\x1a\x1c\xe9\xa9\x75\x4e\x91\x22\x8f\x6e\xdf\x55\xf8\xd5\x46\x8d\x7b\x52\x5a\x9c\x78\xb7\x19\x6a\xfc\x24\x6b\xe1\xef\x12\x1d\x49\xae\x87\xeb\x00\x02\xd8\x91\x4c\x8e\x79\xe8\x8e\xc7\x00\xfe\xd0\x14\x8c\x2d\x25\x8d\x21\xec\xd8\xd2\xb6\x4d\x90\x2a\x54\x13\x10\xb4\x84\x59\xb8\xf3\x85\x8a\xdb\xa7\xfa\xd8\x63\x1f\xdf\x41\x04\x01\x7c\x2c\x97\xcb\x6f\xfe\x45\x22\x34\x20\x0e\x23\xd0\x51\xa0\x87\x67\x8f\x2c\x4a\xbf\xdc\x36\x32\x16\xd6\x3f\x0e\x19\xc1\xd3\xf6\x9d\xa1\x97\x66\xcc\xb8\x19\xa4\x79\x8c\xd2\xf7\x3c\xa7\x68\x83\xe7\x0c\x73\xb1\xb0\xa7\x13\x31\x40\xff\x24\xc9\x21\x4c\x5c\x6f\x62\x48\x83\x68\x21\x50\xaf\x9b\xf4\x70\x8c\x0b\xbf\xad\x9f\x35\x19\xeb\x00\x84\x4c\x4f\xbb\x42\xe9\xa9\x70\xad\xaa\x6a\x39\x49\xee\x3e\xbc\x7b\xdb\x39\xfb\xea\x04\x34\x8f\x2f\x51\x7c\xb5\xa1\x79\x99\x25\x4a\xc0\x15\x94\x34\x9d\x56\x06\x5e\xa1\x3d\x80\x60\x66\x41\x65\x91\xbd\xf9\x83\x26\x4d\xd1\x4b\xea\x7c\xd5\x41\xb8\xbe\x6d\xce\x78\x86\x9c\x26\x29\x04\x2d\x69\x5a\xe5\x20\xc1\x6a\xb1\x08\x66\x70\x32\x70\xd6\xd3\x60\x85\x48\xc8\xa5\x8f\xcf\x4e\x16\x93\xd9\xf9\x73\xd7\x26\xe4\x90\x73\x70\xa3\x74\x35\xbf\x1d\xcb\xbe\x81\xc8\x7c\x34\xd8\x56\x1e\x6c\x1e\xb0\x97\x1a\xcc\x37\xe3\xb5\x9e\x7b\x6c\xda\x5f\x53\x6d\x94\xb3\xad\x97\xe5\xe4\x19\x40\xd8\x31\xe7\x3b\x73\xf6\xf6\xe0\xb8\x76\xe2\xbe\xed\xc7\x5f\x6f\xdb\x76\xc7\x1c\x2f\xd2\xb9\x9b\x7d\xdf\xfd\x7b\xb0\x77\xab\x6f\x18\xe2\xf3\xfa\x7c\xa3\x8a\x7a\xfb\xde\xd7\xd8\xde\xc2\xa8\x22\x4a\xfd\x5a\xef\x98\x40\x61\xde\x74\x57\x8e\xb9\x7a\xd9\xdd\xce\xb9\x70\xe5\x02\xdd\x7c\x4b\xf1\x1a\x22\x98\x2c\xd2\x7c\x43\x32\xcb\xdb\x46\xde\x37\x48\xe3\x7c\x57\x94\x5c\x54\x4f\x7d\x9e\x1a\xbf\x64\x36\xb6\x9c\xc9\xd4\x78\x88\xe0\x5b\xc4\xb7\x73\xe9\x76\x55\x18\x6b\xbc\xaf\x0e\x0b\xf8\x72\xb9\x1c\x3a\xdc\x7f\x5a\x19\xa4\xed\xf5\xf2\x8a\xff\x92\x52\x9c\xf1\x8a\xec\x72\x8f\x43\x75\x9a\xd9\x71\x87\xc5\x35\x3b\xaa\xaa\x3e\xdf\xf3\x25\xb5\xc7\x2b\xf5\x07\xb6\x3e\x46\x54\x03\xf5\xb1\x3d\xcf\xb9\x84\x86\xc4\xe7\x2d\x15\x5f\xb4\x0f\x14\xfa\xb6\x7f\xdb\x53\x73\x10\xf9\x76\x73\x65\x57\xa8\x35\xfe\x24\x32\xf3\x33\xb3\x4d\xb2\x0d\x89\x43\xf9\xcd\x5c\xef\xd4\x75\x24\xc5\x56\xd4\xd7\xbf\xcc\xf7\xeb\x9a\x7f\x81\x69\xac\x2c\xbf\x81\xe5\x68\xb9\x84\x45\x45\xe0\x9f\xe5\x8f\x56\xcc\x60\x21\xff\xf7\xc7\x43\x83\xee\x00\x82\x7f\xb2\x25\x38\x3e\xf7\x70\x83\xb8\xfd\x37\x1a\x26\xbd\xde\xc0\xa4\xa9\xa4\x0c\xdf\x7c\x78\xf7\xd6\x97\x07\xaa\x11\x55\x32\x57\xf7\xcf\x46\x9d\x88\xae\xbb\x7d\xfb\x56\xd7\x8f\x72\xf4\xd1\xa7\xb2\x5d\x5e\x66\xbc\xdd\x8e\xb2\xf1\xd3\xab\x0a\x5a\xb9\xf9\xc6\x92\xdc\xd7\x2f\xd4\xf6\x39\xea\xd9\x58\x64\x8e\x0e\xc8\x1f\xb6\x91\xf7\x2c\x56\xa2\xc7\xa0\x24\x79\x7d\x8d\x33\xfe\x96\x30\x8e\x33\x4c\xa7\x13\x8a\x19\xf9\x49\xd4\x13\xc3\x4a\x15\x0a\x1d\xa4\xdc\xd7\x6a\x9f\x19\xef\xfb\xd6\xb5\xca\x75\x7f\xa2\xfe\x73\x27\xc7\x0b\xf5\xc7\x33\x9e\x1c\x2f\xe4\x1f\xb8\xf9\xff\x00\x00\x00\xff\xff\x30\xb8\xcf\x49\xf0\x66\x00\x00") // FileJsAxiosJs is "js/axios.js" var FileJsAxiosJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x7b\x79\x73\x1b\x37\xd2\xf7\xdf\x6f\x3e\xc5\x08\xbb\x99\x02\x4c\x68\x44\xf9\x48\xbc\x43\x23\x5c\x59\x56\x36\xd9\x75\xec\xbc\x3e\xf6\xc9\xb3\x34\x93\x82\x38\x4d\x11\xc9\x10\xe0\x02\x18\x1d\x21\xf9\xdd\x9f\x6a\xcc\x4d\x52\x76\x9c\x2a\x97\x08\x34\x1a\x57\xa3\x8f\x5f\x03\xe3\x93\x07\x91\xbc\x55\xc6\x45\xd7\xc3\xe4\xf4\xeb\xe4\x34\xda\x44\x74\xc6\xa2\x87\xc3\xd3\xaf\xa3\xcb\xbb\xe8\x07\xe9\x7d\xf4\x1f\x79\x69\x95\xfb\x4d\x41\xf4\xe0\xe4\x8b\xa3\x79\xa1\x67\x5e\x19\x4d\x81\x7b\xb6\x26\xe6\xf2\x57\x98\x79\x22\x84\xbf\x5b\x81\x99\x47\x70\xbb\x32\xd6\xbb\x38\xde\x6b\x59\x9a\xac\xc8\x61\x5c\xfe\x24\x15\x9f\xf0\x94\xa5\xa4\x1e\xb3\x65\xce\x60\xae\x34\xc4\x71\xf9\x9b\xc8\x65\x36\x2e\x8b\x74\x32\xe5\x9e\xa5\xf7\xcd\x3b\xae\x7e\x93\xb0\xab\x30\x3a\xb4\xe5\x2d\xf5\x0b\xe5\x78\xb3\x05\xb6\xb6\xe0\x0b\xab\xa3\x76\x53\x6c\x5d\x97\x23\x4f\x2d\x5b\xab\x39\xd5\x13\x3b\x65\x15\x23\x96\xeb\xb5\x8f\xae\xa5\x8d\x8c\x40\x92\x58\x57\xb4\x74\xbd\xe5\x2a\x4b\x2d\xcf\x8d\xcc\x20\x4b\x8f\x4e\xb7\xa3\xaa\x2b\x60\xd7\x99\xcc\x73\x6a\xea\x11\xb8\xe1\x6d\xd9\x33\x6e\x92\xb2\x9b\x38\x1a\xb6\x0d\x5b\x9c\x46\x8b\x75\x33\x90\x4f\x96\x02\xb8\x4f\x66\x42\x73\x9f\xac\x04\x21\xdc\xd3\x21\xdb\xd2\x49\xf7\x6c\xb8\x66\xeb\x56\xcc\x9a\x9e\xb2\x2d\xdf\x6d\x27\x85\x83\xc8\x79\xab\x66\x9e\x8c\x9a\x7d\x5b\x94\x02\x4e\xea\x85\x86\x9b\xc8\x51\x60\x5c\x0b\x45\x5d\xb2\xb2\xc6\x1b\x14\x78\x62\xe1\xbf\x05\x38\xcf\x3d\xab\x57\x85\xeb\xf5\xa0\x33\xaa\x79\x87\xb1\xdc\x55\xd3\xe2\x19\xd7\xdb\x4a\x6c\xf4\x21\xe3\x4a\x68\xfa\x88\x71\x5c\xdf\x13\xc6\x0b\xa1\xe9\x57\x8c\x4b\x61\x69\xc1\x46\x32\x39\x0b\xe7\xe6\xb8\x4c\x66\x16\xa4\x07\xd1\x3d\xa6\x6a\x5a\x4b\x4d\xb2\x04\x7b\x05\xb4\xe0\xc0\xd8\x96\xcb\xe4\x5c\xea\x19\xe4\x38\xc1\x23\xd6\x54\xdf\x99\xdf\x40\x23\xed\x31\xd2\x94\x6b\x99\x86\x48\x90\x79\x7e\x68\xf4\x1f\xad\x59\x2a\x07\xd8\x4c\x21\x0c\xee\x56\x16\x64\x86\xfd\x9e\x30\xde\xca\x57\xb6\xe5\x24\x83\xb9\x2c\x72\x2f\xe4\x67\x09\xbc\x9c\x91\x4c\x4a\xc5\x8e\xce\xac\x95\x77\x53\x22\x84\x78\x53\x2a\x0d\xb0\x6d\xd3\xc1\xdc\xd7\xe1\x79\x31\x9f\x83\xbd\xaf\x9b\xea\x74\x2b\x74\x69\x4f\x19\x39\xaa\x4d\xe8\x5b\x63\x97\x2f\xa4\x97\x71\x0c\x91\xd2\xce\xa3\x84\x3a\xe4\x76\x1c\xd7\x28\x48\xa3\x92\xe2\xd0\x80\x9d\x25\xc5\x71\xa7\x92\x28\xf7\x6f\x05\x37\xe3\x7d\x12\x05\x96\x42\x1c\x43\x72\x59\xf5\xaa\x4b\xdd\x05\x75\xba\xb5\x6b\x2a\x3a\x7b\x43\x01\xeb\xab\x8e\x6f\x68\xd9\x64\x87\x4d\x17\xcb\x4b\xb0\x07\xd9\x66\x07\x25\x75\x88\x73\xde\xd1\x16\x5d\xe4\xf9\x91\x10\x70\xc0\xf9\x75\x7a\xac\x0e\x1c\xde\x0b\xe9\xe1\xbe\x53\xcb\x0e\xf0\x7f\xab\xf2\x7b\xf9\xf3\x03\xfc\xcf\x73\x73\x79\x1f\xff\xe2\xd0\xf8\x55\xe3\x7d\x7d\x96\x9d\x5d\xa3\x04\xe2\x78\x41\x21\x59\xa9\x55\x97\xe9\xee\xe3\xea\xf6\xfe\xcd\xcb\xb7\x20\xed\x6c\xf1\xa3\xb4\x72\xe9\x76\xb4\x6e\xa7\xb5\x1d\xf5\xa6\x33\x35\xfa\xa1\x55\x2e\x67\x40\x4f\x7e\xfe\xe0\x1e\x9c\x70\x42\x58\x4b\xfa\xe0\x1e\xfc\x35\x90\xda\xce\x57\x8d\xcb\xa7\x87\xce\x55\xcb\x6b\x75\x25\xbd\xb1\x9b\x0d\x79\x03\x72\xe6\x5f\x49\xaf\xae\x81\x1c\x09\xd1\x34\xa1\x6f\xcb\x8a\x99\x67\x71\x4c\x0f\x6d\xeb\x46\xe9\xcc\xdc\xc4\xf1\xa1\xb6\xcc\xcc\x8a\x25\x68\xdf\x59\xd1\x75\x19\x47\x31\xcc\xb4\xda\x73\xa0\x2b\x30\x35\xa7\xb5\x5a\xb5\xd4\x38\xa6\x20\x26\x30\x65\x1c\x9d\x08\x9b\x1b\x4b\xcb\x70\x31\xe4\x46\x40\x92\x83\xbe\xf2\x8b\x91\x7e\x66\x46\x7a\x30\x60\xbe\x3c\x49\x9c\x89\xc3\x44\x4f\xb9\xe6\xc0\x46\x90\x3b\x88\xea\x9e\x2a\x52\x3a\x02\xf6\x3a\x4c\xd4\x71\xf8\x0b\xe9\x5e\xdf\xe8\x1f\xad\x59\x81\xf5\x77\x95\x46\x70\xc5\xe2\xb8\x3f\xa8\x9a\x72\xc5\xbb\x5a\x70\x4b\x3b\x21\x15\x28\x04\x37\xb8\x6b\x1e\x7e\xa2\xa7\x87\xac\x66\x8c\x0d\xe2\x96\xe2\x0f\x07\x96\x86\x2a\x6c\xeb\xc5\x7a\xb1\xde\x72\xdc\xab\x15\xd2\x5e\x05\xd1\xba\x76\xcf\x36\xec\xf9\x9a\x36\x4d\xe5\x20\x8d\xcf\x6a\xd7\x78\x59\xfb\xe7\xaa\xe9\x9a\xfa\xd6\x75\x7b\x6e\xd9\x5a\xc7\xf1\x01\x94\xe2\xc7\x18\xd4\xc5\x05\xc5\xce\x69\x28\xfb\x2d\xe3\x10\x42\xdc\x45\x19\xdb\xce\x85\xa6\x8f\x19\x7f\x23\xf6\x44\xea\xcd\xdb\xe0\xa8\x46\x6d\x18\x59\x2b\x17\xbc\x5b\x6a\x79\x55\x2a\xfd\x5c\x6a\xb8\x72\x55\xf1\x9c\x2b\x57\xfb\xe4\x54\xf5\xf9\xd0\x87\xa6\x8e\x2b\x57\x8e\x9c\x16\x5c\xb9\x57\xc1\xcd\xa5\x92\x2b\x57\x2e\x21\x9d\x73\xe5\xde\xd7\x2a\x96\xce\xb8\x72\xe8\x7f\xd2\x15\x0e\xac\x72\x48\x33\x9c\x2c\x37\x97\x69\x8e\x94\x6a\xd7\xe9\xa2\x1c\x16\xe4\x32\x5d\xe2\x00\x7d\x03\x4d\xef\x42\xb3\xd4\x99\xb4\xd9\x73\x6b\x6e\x1c\xd8\x0b\x7d\x9d\x5e\xf1\xb9\xb1\x17\x72\xb6\x48\xaf\x79\x88\xd3\xe9\x2d\x2f\xe1\x40\x7a\xc9\xbd\x55\xcb\xf4\x66\xdb\x8f\x93\x3b\x51\xb2\x15\x4e\x9f\x69\x17\xb9\xb1\x75\xab\xfc\x08\x5b\x82\x54\xe8\xae\x5a\x30\x6e\xc5\x70\x64\x9f\xe9\x5a\x4d\xec\x60\xc0\x02\x82\x6b\xb5\xc4\x4e\x1b\xc8\x96\xc8\xd5\x2a\xbf\x0b\xc7\xbb\xdd\x5b\x66\xa3\x3e\x1d\xc4\x70\x74\x04\xc9\xcc\x68\xe7\x6d\x31\xf3\xc6\x1e\xd4\x9a\x1e\x47\x52\x9f\x2b\xc6\xba\x43\xf4\x9e\xdf\xed\x22\x85\x43\x03\x23\x36\xf9\x36\x37\xd2\xbf\xbc\xb8\x67\x6a\x97\xab\x19\xc4\xb1\xa6\x55\x91\x0e\xf9\x90\xb1\xed\xc9\x83\xa3\x2f\xfe\x5f\xf4\x20\x7a\x01\x1e\xec\x52\x69\x88\xd4\x3c\x92\x3a\xaa\xe2\x81\x72\x91\x8c\xca\xf5\x20\x5b\x60\xfd\xbb\x2c\xfc\xc2\xd8\x28\x8a\xbe\x05\x6b\x9c\x8b\xce\x2e\x4d\xf1\xdb\x42\x66\xea\x57\x58\x44\xcf\xe6\x81\xf8\xf7\xf2\x27\x31\xf6\xea\x9b\xe8\xd9\xc2\xfb\x55\x7a\x72\xd2\xa1\x95\x23\xe1\x42\xb4\x83\x28\xfa\xe1\xfb\x77\x48\x39\xf9\xe2\xd0\xa9\xef\xc4\x59\xf4\x7d\x48\xdd\x6c\x6c\xf8\x8b\xa2\xff\xa5\x96\x1a\xdb\x7e\x16\xf8\xc2\xb4\xa0\xc6\x6d\x0e\xc1\x35\xd6\x95\xf6\x60\x67\xb0\xf2\xc6\x3a\xb1\xae\x10\x6f\x1a\x20\x31\xb7\xe0\x56\x46\x3b\x28\xab\xdb\x06\xd3\x7e\x55\x62\xda\x87\x25\xa6\x3d\xfd\xba\x04\xb5\xa7\x4f\xd9\xc8\xee\xa3\xe7\xde\xde\xf6\x51\x4b\xf0\xed\xaa\x42\xb7\xeb\xc2\xe6\x69\xab\xa3\xc3\xe9\x96\xb7\xb5\xd3\x29\x63\xbc\xe5\x35\xbc\xb7\x1f\xbe\x5e\x82\x5f\x98\x2c\x25\x57\xe0\xc9\x96\x03\x02\xd7\x92\x24\xea\x42\xe2\xcd\x4b\x73\x03\xf6\x5c\x3a\xa0\x6c\x54\x3a\xd7\x49\xc1\xaf\x8d\xca\xa2\xe1\x94\x6b\x51\x43\x61\x0b\xce\xe4\xd7\x40\x81\x8d\xd0\xe0\xf6\x24\x55\x6f\x2e\xa9\xec\x9e\x76\x37\xe9\x93\x42\xbb\x85\x9a\x7b\x0a\xc9\xbc\xc8\xe7\x2a\xcf\x21\xe3\x38\x28\xaa\x19\x64\x6c\xcb\xf6\x65\x9f\xd4\xc2\xbe\x67\xc8\x55\xe1\x16\xf7\x8f\x37\xf2\xb5\xa9\x33\x2d\x74\xe2\x17\xa0\xa9\x4f\xca\x45\x30\xde\x94\x9a\xb0\xa0\xb7\x5c\x35\x13\x4d\x48\x06\x39\x78\x20\x3c\xc8\x8e\x93\x05\xc8\x8c\x70\x62\x56\x38\xbd\x23\x53\xde\x53\xcf\xf6\x88\x27\x30\x15\x9d\x08\xd2\x86\x96\xb0\xbb\x4a\x44\xb4\x3e\x30\xbd\xd9\xac\xb7\xcd\x31\x01\xc7\xb3\xf6\x5b\xc6\xb6\x5b\xd6\x5b\xcc\xca\x38\x5c\xc4\xaa\x08\x7f\xa5\x9f\x2d\xfe\xf8\x0a\x30\x8a\x7d\x6c\x0d\xf6\xd0\x1a\x78\x86\x41\x46\x57\x4b\x69\x8d\xd2\x7e\x86\x75\xa1\xab\x3c\x52\x49\x27\xe4\x04\xc0\xb8\x43\x99\x90\x73\xa3\x3d\x68\x7f\xfc\xee\x6e\x05\x64\x8a\xf0\x6a\x8f\x28\x7c\x2f\x09\x2a\x93\x10\x18\xdd\x8f\x31\x7f\xfa\xe1\xe5\x77\xde\xaf\xde\x94\x7b\x1d\x83\xd0\xf4\x29\x4b\x0f\x71\xae\xac\x99\x81\x73\xc1\xe6\x90\xa9\x8e\xe2\x1d\x6b\x0e\xc6\xbc\xee\x2f\x29\x25\x18\x21\xd4\x4c\xe2\x92\x4e\x6e\x8f\x6f\x6e\x6e\x8e\xe7\xc6\x2e\x8f\x0b\x9b\x83\x9e\x99\x0c\x32\xb2\xe5\x52\xac\x65\x26\x57\x1e\x03\x39\x2a\x9d\x95\xda\x21\x57\xb5\xae\x74\x72\x30\xb4\x39\xea\x79\x7f\x36\xd4\x86\x36\xf8\x07\xaf\x87\x84\x0e\x00\x68\x68\x3b\xd5\x32\x70\x37\x55\x0c\xf3\x2d\x6b\x6e\x2e\x29\xb0\x31\xa4\x3b\x83\x55\x19\xd9\xb8\x4e\xc2\x42\xfb\x4e\xdc\xc7\x76\x6a\x71\xa5\x9f\x14\xc4\x68\xb6\x90\xd6\x81\x17\x85\x9f\x1f\x3f\x25\xa8\x4f\x35\x04\xa2\x8c\x85\xc1\x4b\x80\x72\x78\xcc\x5f\x9d\xd1\x7b\x43\xfc\xf3\xed\xeb\x57\x49\xe9\x39\xd5\x1c\x13\x0e\x96\xc2\x76\xda\x95\x70\xe5\xa7\x27\x5d\x33\x41\x28\xbd\xe7\x6e\x99\xb7\x77\x6b\x10\x61\xc4\x15\xce\x82\x91\x77\x86\x46\x86\x5d\xb6\x35\x24\xc0\xd1\xd5\x12\x4c\xe1\xd3\x21\xbf\x75\x76\x7e\x6e\xcc\x6f\x0a\x5e\xc9\x25\xa4\xe4\xa7\xb7\x6f\xbe\x3d\x7e\xf7\xfa\x5f\x17\xaf\x48\x68\xfb\x0e\x64\x06\xb6\x6a\x3b\xee\xb6\x2e\xe5\x6d\x75\xb4\x2f\x83\x77\x4a\x8f\x4f\xf9\xb5\xcc\x55\x26\x3d\xbc\xf5\xd2\x17\x2e\x3d\x10\xf9\xe0\x1b\xf1\x70\x38\x8c\x63\x78\xf6\x68\x38\xdc\x6e\x47\x32\x59\x84\x19\x9c\x58\xcf\xcc\x72\x69\x74\xba\x3e\x9b\xa1\xdb\x4c\xf7\x44\xc7\x23\x0f\xb7\xfe\x64\x95\x4b\xa5\x79\xf4\xe0\xe4\x01\xd9\x7e\xda\xd3\xf5\xbd\x4b\x33\x1b\xfa\x96\xf5\x67\x3b\xa7\x5e\xf7\xda\xed\x14\xac\xe7\x58\x3e\x75\x67\x82\x26\x69\x83\x49\xde\x0f\x0c\x9b\x35\x41\x3b\x56\xe9\xfe\x8e\x84\xf0\x71\x6c\x13\x6f\xde\xaf\x56\x75\xb0\x13\x42\xf8\x3e\x25\xb8\x1e\x3f\x15\x9a\x97\x32\x09\x57\x77\x6c\xfb\x49\x4c\xd1\x2e\x8e\x23\x16\xf8\x5b\x89\x05\x4e\x6b\x30\xf0\xa8\x02\x03\x8f\x19\x97\xf8\x3b\x64\x7c\x76\xf0\xde\xa4\x4e\x21\xcb\xdf\xe4\xd2\x1b\xd9\xab\x24\x97\x4a\x67\xb4\x24\xb0\xcd\x46\xd3\xd3\x27\x87\xc5\xd1\x22\x26\xb8\xa9\xef\xb2\x68\x27\x28\xcc\x4b\x0f\xba\x12\x90\xa0\xa3\xe7\x88\x07\xaa\x33\x1a\xd9\xae\xa7\x59\xb1\x38\xae\x64\x91\xed\x3a\xe5\xb0\xed\x3c\x60\xee\xbe\xbb\xe5\x0b\x41\x8c\x46\x48\x7a\xe7\xbc\xf4\x30\x5b\x48\x7d\x05\x84\x2f\xc5\xd1\xe9\x08\x4d\xf0\x40\x06\x5e\x6e\x6a\xb3\x39\xaa\xb6\xfb\xd3\x0b\xb3\x94\x4a\x57\x23\x6e\x36\xe4\x46\xf9\xc5\xb9\x85\x0c\xb4\x57\x32\x77\x44\xe9\x28\xdf\x6c\x0a\x0a\x49\x61\x73\xb6\xd9\xd0\x72\x25\x07\xbb\x97\x0b\xca\x0d\x86\xf0\xa5\x38\x1a\xf2\x3c\x31\x7a\x65\xcd\x95\x05\xd7\x11\x1b\x5b\x6f\x43\x4b\x65\xe6\xbd\x06\xd4\x55\xc4\xbd\xa5\xe0\xee\x44\x59\x4b\x0a\x07\x56\xcb\x25\x6c\x36\x84\xf0\x9b\x9a\xba\x92\xce\xdd\x18\x9b\x21\x75\x94\x25\x67\x01\x2f\xab\xdf\x83\x4d\x0a\xf2\x5c\x3a\x35\x8b\xc8\x60\x46\xef\x06\x24\x25\x83\x1b\xb6\x55\x73\x9a\x27\x66\x05\x88\xce\x1b\x5c\xd6\x51\x4c\xae\xca\x7d\x72\x40\x0f\x25\x97\xae\x29\xbc\x05\xab\x64\xae\x7e\x07\xcb\xf8\xd1\x90\xf1\x3c\xa9\x57\x0f\x75\x89\xe7\x93\xc5\xb4\xbb\x19\x9c\x2d\x8e\xe9\x63\x21\x44\x1e\x32\x87\x3b\x74\x3c\xb0\xd9\x2c\xd1\x02\x86\x47\x48\x76\xc1\x15\x6d\x36\x79\x03\xc2\xde\xbf\x79\x19\xc7\xc3\xaa\x4f\x43\x4a\x94\xce\xe0\xf6\xf5\x9c\x92\x39\x66\x90\x84\xb1\x52\x42\x5a\xa0\x3b\x39\xcb\xf3\xda\x11\x97\x1e\xb1\x3c\xb7\xb1\xa3\x79\x72\xb0\x19\xe3\x41\xb8\x50\xb0\x02\x9a\x69\x50\xdd\xe2\x98\xa0\x1b\x23\x47\x62\xa7\x61\xdc\x2e\x27\x6d\x8b\xef\xe0\xd6\x73\x25\xd6\x01\xc6\x58\x5e\xee\x26\x3d\x7d\xf8\xf0\x91\x68\x77\x37\x7e\x38\x7c\x9c\xd6\x95\x8a\x07\x3b\xee\xf1\x91\x57\x26\xaa\x74\x9f\x34\x1d\xc2\x14\x95\xd1\xa4\x9a\xcf\x8c\x9e\xab\xab\x14\x78\x9d\x2f\xe4\xdb\x91\x41\x53\xe3\x8a\xf1\x5c\xe0\xa6\xb6\xa5\x7a\x81\xb5\xc6\x76\xcf\x63\x4e\x25\x25\xaf\xc0\xdf\x18\xfb\x5b\x74\x81\xad\x84\x03\x0f\x62\xc8\x59\xd3\xf9\x3e\xd5\x0c\xbd\x2b\x7a\x64\xe6\x11\x19\x34\x27\x3f\x20\x4b\x17\xc1\xed\x0c\x00\xe1\x08\x07\x4e\x2e\xce\x5f\xbf\x7a\x75\xf6\xfc\xf5\x9b\x77\x17\x2f\x48\x6f\x74\x9b\x1c\x4a\xe3\x69\x75\x9c\x57\xe8\xb7\xbe\x62\xfc\x5a\x50\x48\x76\x4c\xb1\xb5\x42\x86\xb9\x6c\x3f\x34\x8e\xaf\x82\x86\xd1\x5d\x3a\x4b\xcb\x0c\x63\x74\x1d\xc7\x34\x9b\x94\xcd\x6d\xd4\x9c\x8a\xeb\x60\x15\xc4\x81\xaf\x8c\xb8\x6c\x0c\xfa\x83\xae\xbc\xf6\xf5\xd9\xde\x1d\xc2\xbe\x73\x59\xc5\x31\x99\x55\xbe\x0b\x49\xa4\x72\xfd\x9d\xcc\x67\xdc\x78\x39\x3f\xc5\x23\xde\x99\x96\x7a\x0e\x65\xc0\xda\xd9\x7c\x1c\xd3\x7c\x97\x26\xd0\x10\xfb\x5a\x1a\x30\x46\xde\x23\xed\xe8\x71\x85\x38\xca\x2b\x41\x82\x81\x7b\x5f\xd7\x99\x5f\x58\x73\x13\xf9\xed\xc1\x0c\xdf\xe8\x17\xe6\x26\x78\xb9\x1f\x2b\xd7\x16\xc7\x79\x22\xb3\xec\xe2\x1a\xd1\x86\x72\x1e\x34\x58\x4a\x6a\xc7\x47\xf8\xa1\x3e\x8c\xdf\x33\xf8\xfb\xd5\xee\xd0\x45\xa0\xb4\xa5\x4f\xce\xd5\x1f\x02\x65\x34\x6b\xdf\x68\xc2\x3d\x48\x5b\xc5\x84\x26\xe4\x9d\x21\x71\xeb\x86\xb6\x3c\xc8\x5c\x5e\x1a\x8b\x89\xdc\x9c\x42\xad\xc4\x78\x40\xa5\x56\x09\x21\x56\x71\x4c\x57\x25\x99\xe3\x79\xea\x8c\xae\x3e\x23\x94\x9f\x0e\xef\x03\x1a\xd8\xa5\xca\xfa\x93\xd2\xe8\x93\x3e\x7e\x1b\xe9\xca\x43\xc4\xb1\x89\xe3\x23\x43\xeb\x3a\x1b\x7b\x6a\x29\xa9\x14\x2b\x9a\x4b\x95\x43\x16\xa1\xf2\x44\x25\x43\x84\x70\x39\x22\x83\xba\x03\xaf\x67\x28\x9d\x81\x6e\x5e\xdf\x34\xc2\x5d\xaa\xff\xf8\x6e\x4e\xef\xdf\x0d\x37\x5c\x95\x3b\x72\x21\x82\x06\x07\x44\xdb\xeb\x52\x4b\x5d\xc3\xf6\x67\x6e\xec\x30\x03\xe5\xa6\x73\x75\x5f\x6e\x49\x78\xae\x11\x6f\x25\xb8\x67\xa1\x4b\x83\x29\x6f\x47\x6c\xc7\x78\x84\xe1\xf0\x79\x57\x3a\xf5\x3c\x21\xf7\x78\xff\xe6\xfb\x73\xb3\x5c\x19\x0d\x1a\xb3\x8b\xf6\x8d\xe0\xcb\xc7\xc3\x93\x2b\xc5\xc9\xdf\xbb\x0f\x07\x5f\x3e\x3a\x0b\xc4\xb4\x47\x7c\xf8\xf8\xe4\x8a\x93\xbf\xf6\x69\xe7\x81\x91\xf7\x89\x43\x64\x1c\xf4\x68\x4f\x9e\x07\xc6\x49\x9f\xf8\x22\x10\xa7\x84\x75\xde\x44\x3f\xa2\x6e\x6a\x4e\x8f\x7c\xfd\x12\x0d\xe1\x54\x15\x02\x29\xcd\x10\x67\xfa\xea\x26\x5f\xcd\xa9\x39\x90\xa7\x79\xc6\x54\xf0\x76\x75\xc6\x15\xb8\xab\x03\x9f\x4c\x47\xa6\x71\xa5\x7e\xe7\x70\x3f\xf1\x30\x11\xc7\x61\xbe\xf2\xbe\x15\x33\x7b\xea\x07\x82\x4c\xa6\x84\xf1\x2e\x7d\xb3\xa9\x5f\x2a\xcc\x21\x80\x0e\x6c\x8d\xdc\x2f\xa4\x87\x90\x72\x22\x6e\x31\xdf\xbf\x7d\x5d\xaf\x36\x35\xdd\xf4\x30\xa4\xe9\xfb\xb9\x1f\x77\xe5\x65\x90\xa5\x9e\x0d\x88\x20\x83\xf0\x28\xb2\xc5\x7f\x5c\x09\x97\xfc\x6a\x94\xa6\x24\x26\xac\xce\xe6\x14\x0e\x34\xc0\x60\xd6\xe0\x97\x31\xc1\x8c\xe0\xf8\x74\x4c\xc6\x24\x45\xde\x81\x62\x9f\xd6\xbd\x1e\xf4\x9f\x10\x89\x38\x97\xc8\x2e\xe0\x23\xbc\x89\x3d\xe5\x7d\x54\x87\x10\x82\x11\x27\xe0\xe5\x15\xfe\xdc\xae\x94\x05\x47\x38\x99\x5b\xb3\xc4\x54\xac\xcc\xac\xd4\xfc\x78\x69\x32\x35\x57\x90\x1d\x3b\xa5\x67\x50\xd2\x0a\xbd\x47\xcd\xa5\xf3\x0d\x2f\xd6\xcd\xac\x5e\xc3\x52\xde\x62\x5e\x7e\x23\x6d\x86\x33\xac\xac\xb9\xbd\x3b\xde\x5d\xa8\x85\x39\x58\xb0\xa1\xe4\xed\xdd\xb1\x9c\xfb\x50\x43\x98\x7b\x2c\xaf\x10\xff\x4c\xef\x49\x38\xc2\xcd\x21\xd7\x5c\x71\xd7\xf9\x64\x01\xc6\xb4\x93\x96\x25\x6e\x95\x2b\x4f\xc9\x07\x4d\x18\xdf\xc9\xcb\x95\xe8\x9c\x45\x4a\x18\xf7\xc2\x26\xde\xaa\x25\x76\x2b\x2e\x9d\xb7\x74\xc8\x15\x63\xfd\xb0\xcd\xf5\x1e\x97\x1a\x9c\x32\x56\x3d\xad\xb9\x89\x9f\xc6\xb1\x69\x06\xf6\xec\x1b\x31\xac\x0c\x69\x84\xd8\xe2\x78\x16\x10\x49\x00\x04\x63\xe4\x16\xa1\x4f\x28\xa6\x93\x29\x43\x67\x35\x93\x9e\x4e\xf4\x94\xa5\xa1\xbd\x69\x1e\x10\x8e\xae\x3a\xd5\x98\x0f\x3b\x96\xba\x3f\xae\x2a\x1d\x11\xde\x07\xbb\xc6\x5d\x84\xd7\x79\x45\xab\x3f\xd0\x80\xe6\xda\x32\x98\xa1\x03\x7f\xe6\xbd\x55\x97\x85\x07\x4a\x16\x16\xe6\x84\x7b\x94\xa1\x49\xb0\x82\xb6\x77\x0f\xcb\x1a\x4b\x69\xc9\xc6\xc3\x25\xe2\xcc\xe4\xa9\x49\xea\xe2\xb8\x2d\xb6\x1e\x2c\x2d\xdf\x57\x53\x42\x38\xea\x28\x76\x37\xce\x73\x17\xfc\x4e\x8a\x73\x61\x61\x5c\x17\xba\xaf\xb5\xe3\xb6\xa7\x74\xc8\x8b\x3f\xe3\xf2\xa7\xc3\xf7\x97\xde\x04\x98\x62\x55\x93\x60\x91\xa3\xec\x70\x8d\xc6\x7a\xbe\x92\x7e\x11\xda\xc9\x09\x1e\xa3\x49\x6a\x42\x32\x5b\x48\x7b\xe6\xe9\x90\x8d\x5b\x22\x72\x0d\xda\x6a\x79\x81\xef\xb9\x16\x27\x74\xe9\x14\x6c\xbc\x55\x08\xe3\xd8\x89\x4a\x3c\x38\x4f\xdb\xe7\x5f\xb4\x81\x33\x34\x01\xb4\xf4\xfa\x41\xb7\xfa\x40\xe5\x22\x07\xac\x51\x22\x49\xfb\xcc\x28\xa0\x4a\xd5\x93\xda\x0c\xab\xb3\x68\x2f\x27\x6a\x24\x51\x6a\x41\x70\x78\x9a\x8d\x31\xb2\xa7\xba\xfd\xbe\xa6\x96\x7f\x40\xad\x75\x05\xd5\x1a\xe5\x11\x88\x58\xd8\x6e\x29\x4b\x3f\xf2\x85\x53\xf3\x52\x35\x44\xce\x8f\x06\xf2\xce\x03\x57\xf5\x44\xb2\x04\xe7\xe4\x15\x08\x52\xae\x32\x42\x07\x26\x95\x76\x91\xd4\x91\xd2\x01\xff\x44\x28\x6e\x39\x43\x87\xb1\xf3\x6e\xd5\xbc\xda\x72\xcb\x95\xa8\xf6\x09\x8c\x3b\x41\x08\x2f\xc4\x90\x4b\x61\x46\xaa\x39\xae\x4d\x81\x31\x43\x0a\x22\x08\x2f\xbe\x3c\x65\x23\x37\x10\xb2\x6e\xfd\xea\x51\xec\xbf\xf9\xe6\xe9\x71\xf1\xe5\xe9\x83\xa7\x2c\x18\xb9\x15\x65\xdf\x73\x93\xc1\x99\xa7\xc5\x40\x24\x5f\x3f\x61\xdc\x7e\xf3\xf0\xc9\x93\x0a\x31\x23\xae\xd1\x23\x2f\xfc\xb3\x67\x4f\x37\xb6\x0e\x02\xae\x8a\xbe\xe4\xec\xf9\xf9\x8b\x8b\x6f\xff\xf1\xdd\xf7\xff\xfc\xd7\xcb\x1f\x5e\xbd\xfe\xf1\xff\xbf\x79\xfb\xee\xfd\xbf\xff\xe7\xa7\xff\xfd\x8f\xbc\x9c\x65\x30\xbf\x5a\xa8\x5f\x7f\xcb\x97\xda\xac\xfe\x6b\x9d\x2f\xae\x6f\x6e\xef\x7e\x1f\x9e\x3e\x7c\xf4\xf8\xc9\x57\x5f\x3f\xfd\xdb\xe0\x44\x90\x91\x6e\x2f\xe0\x5b\x14\xc5\x3b\xd4\x12\xe7\x3c\xe9\x91\x50\x03\x05\xf9\xbe\x94\xdf\x79\x2d\xbe\x3a\x03\xfc\xc3\x97\xee\x7f\xda\xb1\x94\x72\x58\xdf\x58\xe5\x21\xdd\x47\x85\xdc\x95\xfa\x59\x20\x4c\x28\xaa\xe7\x96\x10\x5e\x0f\x80\x2b\xcf\x58\xc8\x21\xcb\x57\x67\xaa\x59\x1c\x57\x5d\xea\xb8\x26\xc8\x00\x25\x13\x22\xbd\x46\x3f\xfe\x8f\x1f\xde\x35\xb7\xc0\xbc\x63\x02\xa6\xd3\x17\x0d\x55\x90\x81\xe9\x31\xa8\x0e\x43\x16\x2e\x7a\x04\xc1\x68\xed\x84\x10\x47\xc3\xb6\xcd\xc1\xac\xb0\x40\x18\x6f\xcd\x35\xb8\x7b\x51\x54\x88\x60\x14\x11\xb6\xe5\x98\xa0\xa6\x7b\xb1\x4c\xec\x74\x4a\x96\x21\x41\xc3\x2d\xbc\x81\xab\x8b\xdb\x15\x25\xf4\xe7\xcd\xe8\xc3\x07\xf7\x80\x51\x32\x80\x01\x61\x82\x4e\x7e\x1e\x4d\x1f\x30\xd2\xbe\x2a\xf9\x71\x06\xfb\xb2\x9a\x3c\x9a\x96\xf7\x1c\x38\xf9\xd2\x5c\x43\x6f\xfa\x60\x71\xe1\x50\x28\x70\x42\x38\x4a\x2c\xd1\xe6\x86\xb2\xe3\xa7\x5f\x3d\x86\x27\x6c\x7b\xd8\xd6\x77\x0f\x92\xad\x77\xf7\xd6\x7b\x49\xdd\x9f\x9b\xad\xb7\xfb\xbe\xe1\x63\x70\xbb\x5a\xeb\x42\xea\x2c\x07\x8b\x70\xb2\x0b\x68\xbb\x2f\x9f\x85\x83\xc3\xef\xf8\xbd\x01\xca\x73\x5b\x37\x2f\x7a\xe1\x3a\xa5\x7c\xd1\x4b\x7d\xfd\x44\xd8\x30\x97\x70\xea\xf8\x74\xcb\xbb\x33\x05\x7e\xb1\x27\xcf\xba\xd7\x04\xa6\x88\x54\x77\x48\x55\xfe\xd8\x1b\xa8\x82\x2d\xa2\x0f\x55\x1b\xb0\xdc\x1d\xa1\xf3\xd1\x48\x03\x9b\x7d\x1c\x03\xf5\x98\x72\xfe\xc9\xf7\x33\xb6\xfe\x68\x7e\x1c\x3c\xdb\xf7\xf3\x2a\x9b\x84\x8c\xb2\xdd\x0f\x2c\x4f\xff\x56\x5e\x40\x3f\x1c\x76\x3e\xb1\xd4\xf4\xe1\x29\xe3\x33\xfc\xbd\x27\xe7\x60\x6b\x9c\x9c\x43\x72\x29\xab\x5b\xbf\x23\x59\x5d\xf0\x84\x84\xad\xb0\xb9\x98\xd1\xa6\x99\x57\x77\x3f\xbc\xb9\x42\x6e\x2f\x93\xc3\xd3\x62\x79\xc7\x2c\x14\xad\x2e\x9b\x9b\x56\x0e\xc9\xee\x8b\x58\x77\x94\xfa\xfb\xce\x86\x92\x94\x4f\x1d\xd5\xa0\xcd\x9b\x42\x75\x63\x3a\xed\xd3\xb1\xd6\x4d\x39\xee\x7b\xd1\x3d\xf0\x7a\x81\xf8\x1c\x27\xea\x3e\x63\x78\xb6\xae\xdf\x04\x9a\x99\xfd\x74\x5b\xbf\x98\x43\x52\xbd\xf3\x6d\x36\x45\x5d\x6c\x5c\x00\x26\x9e\xfd\x5b\x0c\xdf\xf9\x8c\x15\x18\xf7\xb5\x84\xca\x02\xf7\x87\x25\x54\x66\xc4\x8c\xfb\x2d\x3f\x30\x12\x66\x7a\x9b\x0d\x2d\x07\x8c\x63\xdf\xa4\xd0\xa8\xee\xed\x53\x7a\x33\x53\x8f\xc2\x3b\xf5\x8f\xcd\xcd\x18\x6f\xbf\x07\x08\x39\x99\xff\xac\xf7\x91\x8f\x24\xb9\xb5\x40\x9a\x13\xd3\x3d\xa0\x04\xa2\xf4\x1b\xdb\xfd\xa4\xec\x0f\x5c\x43\x34\xe0\x87\x1e\xc1\x66\x73\x04\xc9\x2f\xbf\x9c\x9f\xbd\x3a\xbf\x78\xf9\xcb\x2f\x7f\xe2\x52\xa3\x1e\xed\xe4\x67\x3a\x91\xc7\xbf\x4f\xf1\xcf\x87\xec\xc3\xe0\xc3\xf1\x87\x64\xfa\x20\x65\xe3\x0f\x27\x1f\x4e\x6a\x04\x09\x7f\xea\xd6\xa4\xf5\x8f\xe3\xce\xc7\x8e\x1f\x4e\x06\x25\xf2\x1e\x20\x8c\xf5\x5d\x5c\x7d\x32\x28\x11\xf3\x27\x84\xd3\xff\x76\xa9\x87\xed\x60\xab\x0f\x7c\xa4\x26\xf6\x82\x07\x29\x3f\xa1\x26\x03\xda\xed\x3e\x26\x69\x44\x06\x5d\x4a\x4a\x30\xb8\x76\xc7\x6c\x85\x2e\x8e\x86\x1d\xaf\xa8\x3f\xcb\x2b\xaa\x39\x6d\xaf\x28\x3b\xdf\x49\xb6\x50\xef\xdd\xdd\x0a\xca\x6b\x2c\x02\xb7\x30\x2b\xbc\xb1\xd1\xb2\x70\x3e\xba\x84\x48\x36\x88\x38\x21\x95\xf5\x8e\xc2\xaa\xab\xfb\x46\x71\xf0\xc9\x0c\x65\x25\xa0\x32\x77\x2d\xb0\xc3\xa8\xdf\xac\x13\x0b\xd2\xa1\x77\xa2\x75\x31\x0c\x65\x82\x3d\x36\x34\x86\xe6\xd2\xf8\xe9\x47\xfd\x20\xb9\xeb\xd2\x77\x1e\x6d\xaa\xcf\x37\xc2\x30\xd5\x4d\x70\x4b\xc1\xd8\xe5\x4c\x61\x67\xd0\xed\x15\xbe\x93\xe0\xe5\xf7\xfc\xb6\xe7\x7f\x40\xf8\x6d\x8d\x52\xd6\x1e\x23\x4a\xea\x79\x19\x5f\x82\x0e\xdd\x1b\xb3\x3e\xc3\x3e\xa2\x03\x6e\xaa\xfe\xb4\x2e\xdc\x68\x7a\x84\x32\x53\xb6\x65\xa3\x2f\x4e\x4e\xfe\x12\x95\xeb\xff\x41\xae\x56\x4a\x5f\xbd\x7f\xf3\x52\x84\xff\xc0\x91\x2c\x95\x4e\x96\x72\xf5\x7f\x01\x00\x00\xff\xff\x1c\xcd\x1b\xff\xb3\x32\x00\x00") diff --git a/view/css/stylesheet.css b/view/css/stylesheet.css index 38898cab..707f4d68 100644 --- a/view/css/stylesheet.css +++ b/view/css/stylesheet.css @@ -1 +1 @@ -.header-link{border-right:1px solid #E5E5E5;color:#000;cursor:pointer;font-size:.9em;line-height:70px;overflow:hidden;padding:0 16px}.header-link:hover{color:#F44336}*{border-width:0;box-sizing:border-box;font-family:"Source Sans Pro",sans-serif;margin:0;padding:0;text-decoration:none;-webkit-hyphens:auto;hyphens:auto}.spacer{-webkit-box-flex:1;flex:1 0}#login-page{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column nowrap;-webkit-box-align:center;align-items:center;height:100vh;background-color:#F5F5F5;-webkit-box-pack:center;justify-content:center}#login-page>.error-message{width:100%;margin:16px 16px 0;max-width:400px;background-color:#FFF;border:1px solid #E5E5E5;padding:16px;text-align:center}#login-page #login-box{width:100%;margin:16px;max-width:400px;background-color:#FFF;display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column nowrap;border:1px solid #E5E5E5}#login-page #login-box #logo-area{display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column nowrap;padding:16px;border-bottom:1px solid #E5E5E5}#login-page #login-box #logo-area #logo{font-size:3em;font-weight:100;color:#F44336}#login-page #login-box #logo-area #logo span{margin-right:8px}#login-page #login-box #logo-area #tagline{font-weight:100;color:#F44336}#login-page #login-box #input-area{padding:8px;border-bottom:1px solid #E5E5E5}#login-page #login-box #input-area .input-field{display:-webkit-box;display:flex;-webkit-box-align:baseline;align-items:baseline;padding:8px}#login-page #login-box #input-area .input-field p{color:#6F757A;font-size:.9em;margin-right:16px;min-width:65px}#login-page #login-box #input-area .input-field input{color:#000;padding:8px;border:1px solid #E5E5E5;-webkit-box-flex:1;flex:1 0;font-size:.9em}#login-page #login-box #input-area .input-field a{display:block;cursor:pointer;color:#6F757A;text-align:center;font-size:.9em;-webkit-box-flex:1;flex:1 0}#login-page #login-box #input-area .input-field a i{margin-right:8px;color:#6F757A}#login-page #login-box #input-area .input-field a:hover{color:#F44336}#login-page #login-box #button-area{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap;padding:16px}#login-page #login-box #button-area a{color:#535A60;text-transform:uppercase;background-color:#FFF;-webkit-box-flex:1;flex:1 0;text-align:center}#login-page #login-box #button-area a.button{cursor:pointer}#login-page #login-box #button-area a.button:hover{color:#F44336}#main-page{background-color:#F5F5F5;display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column nowrap;height:auto;min-height:100vh}#main-page #header{background-color:#FFF;box-shadow:0 0 3px rgba(0,0,0,0.3);left:0;position:fixed;right:0;top:0;z-index:99;display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row wrap}#main-page #header #n-selected{line-height:70px;font-size:1.3em;color:#6F757A;-webkit-box-flex:1;flex:1 0;border-right:1px solid #E5E5E5;padding:0 32px}#main-page #header #logo{border-left:1px solid #E5E5E5;cursor:default;flex-shrink:0;border-right:1px solid #E5E5E5;color:#000;cursor:pointer;font-size:.9em;overflow:hidden;padding:0 16px;line-height:70px;display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap;font-size:1.5em;font-weight:100;color:#F44336}#main-page #header #logo:hover{color:#F44336}#main-page #header #logo span{margin-right:8px}#main-page #header #logo:hover{background-color:#F5F5F5}#main-page #header #search-box{-webkit-box-align:center;align-items:center;border-right:1px solid #E5E5E5;display:-webkit-box;display:flex;-webkit-box-flex:1;flex:1 0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap;padding:16px;width:100%}#main-page #header #search-box .button,#main-page #header #search-box input{background-color:#FFF;border:1px solid #E5E5E5;color:#000;font-size:.9em;padding:8px}#main-page #header #search-box .button{cursor:pointer;color:#535A60}#main-page #header #search-box .button:hover{color:#F44336}#main-page #header #search-box input{border-right:0;-webkit-box-flex:1;flex:1 0;padding:8px 16px;min-width:0;width:100%}#main-page #header #header-menu{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap}#main-page #header #header-menu a{line-height:70px;padding:0 16px;color:#535A60;font-size:.9em;cursor:pointer}#main-page #header #header-menu a:not(:last-child){border-right:1px solid #E5E5E5}#main-page #header #header-menu a span{margin-left:4px}#main-page #header #header-menu a:hover{color:#F44336;background-color:#F5F5F5}#main-page #main{margin-top:70px;display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column nowrap}#main-page #main #input-bookmark{align-self:center;max-width:600px;width:100%;display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column nowrap;margin:32px 16px 20px;background-color:#FFF;outline:1px solid #E5E5E5}#main-page #main #input-bookmark>p{color:#000;font-weight:600;text-transform:uppercase;padding:16px}#main-page #main #input-bookmark>p.error-message{color:#F44336;font-size:.9em;border-bottom:1px solid #E5E5E5;font-weight:500;text-transform:none}#main-page #main #input-bookmark input[type=text],#main-page #main #input-bookmark textarea{outline:1px solid #E5E5E5;color:#000;font-size:.9em;padding:12px 16px}#main-page #main #input-bookmark textarea{resize:vertical;min-height:4em;max-height:10em}#main-page #main #input-bookmark .button-area{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap;padding:8px}#main-page #main #input-bookmark .button-area a{color:#535A60;text-transform:uppercase;padding:8px;background-color:#FFF;font-size:.9em}#main-page #main #input-bookmark .button-area a.button{cursor:pointer}#main-page #main #input-bookmark .button-area a.button:hover{color:#F44336}#main-page #main #search-parameter{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row wrap;padding:0 8px}#main-page #main #search-parameter a{display:block;margin:8px;padding:8px;font-size:.9em;background-color:#6F757A;color:white;border-radius:16px;cursor:pointer}#main-page #main #search-parameter a:hover{background-color:#F44336;text-decoration:line-through}#main-page #main #grid{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap;padding:4px}#main-page #main #grid>.column{-webkit-box-flex:1;flex:1 0;padding:12px;max-width:100%}#main-page #main #grid>.column>*:not(:last-child){margin-bottom:24px}#main-page #main #message-bar{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column;-webkit-box-align:center;align-items:center;padding:32px;-webkit-box-pack:center;justify-content:center;position:absolute;top:50%;left:0;width:100%;margin-top:-60px;height:120px}#main-page #main #message-bar i{color:#6F757A;font-size:3em}@media screen and (max-width:800px){#main-page #header{position:static}#main-page #header #header-menu>a>span{display:none}#main-page #main{margin-top:0}#main-page #main .bookmark-menu>a>span{display:none}}@media screen and (max-width:740px){#main-page #main #input-bookmark{width:auto;align-self:auto}}@media screen and (max-width:500px){#main-page #header #logo{display:none}}#cache-page{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column nowrap;-webkit-box-align:center;align-items:center;height:auto;min-height:100vh}#cache-page a{color:#F44336}#cache-page a:visited{color:#F44336}#cache-page a:hover{text-decoration:underline}#cache-page>*{width:100%;max-width:864px}#cache-page #menu{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap;max-width:864px;border-bottom:1px solid #E5E5E5}#cache-page #menu a{-webkit-box-flex:1;flex:1 0;font-size:.9em;text-align:center;color:#535A60;padding:16px;cursor:pointer}#cache-page #menu a i{margin-right:4px}#cache-page #menu a:not(:last-child){border-right:1px solid #E5E5E5}#cache-page #menu a:visited{color:#535A60}#cache-page #menu a:hover{color:#F44336;text-decoration:none}#cache-page #metadata{padding:32px;border-bottom:1px solid #E5E5E5}#cache-page #metadata a{font-size:.9em;display:block}#cache-page #metadata h3{font-size:2em;margin:8px 0}#cache-page #metadata p{font-size:.9em;color:#000}#cache-page #content{padding:16px 32px 32px}#cache-page #content *{margin-top:16px;line-height:180%;overflow:auto}#cache-page #content pre,#cache-page #content code{font-family:'Ubuntu Mono','Courier New',Courier,monospace}#cache-page.dark-mode{background-color:#222;color:white}#cache-page.dark-mode #menu a{color:white}#cache-page.dark-mode #menu a:visited{color:white}#cache-page.dark-mode #menu a:hover{color:#F44336;text-decoration:none}#cache-page.dark-mode #metadata p{color:white}#dialog-overlay{position:fixed;z-index:101;display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column;background-color:rgba(0,0,0,0.5);top:0;left:0;right:0;bottom:0;overflow:hidden;-webkit-box-pack:center;justify-content:center;padding:32px}#dialog-overlay #dialog{display:-webkit-box;display:flex;background-color:#FFF;align-self:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column;border:1px solid #E5E5E5;max-width:500px}#dialog-overlay #dialog #dialog-title{color:#000;font-weight:600;text-transform:uppercase;padding:16px;font-size:1em;border-bottom:1px solid #E5E5E5}#dialog-overlay #dialog #dialog-content{padding:16px}#dialog-overlay #dialog #dialog-button{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap;padding:8px;border-top:1px solid #E5E5E5}#dialog-overlay #dialog #dialog-button a{color:#535A60;text-transform:uppercase;padding:8px;background-color:#FFF}#dialog-overlay #dialog #dialog-button a.button{cursor:pointer}#dialog-overlay #dialog #dialog-button a.button:not(:last-child){margin-right:16px}#dialog-overlay #dialog #dialog-button a.button:hover{color:#F44336}.error-message{color:#F44336 !important;font-size:.9em}.error-message::before{content:"\f071";font-weight:900;margin-right:8px;font-family:"Font Awesome 5 Free"}.bookmark{background-color:#FFF;border:1px solid #E5E5E5;position:relative}.bookmark .checkbox{z-index:9;right:0;opacity:0;position:absolute;outline:1px solid #E5E5E5;color:#535A60;background-color:#FFF;width:32px;line-height:32px;text-align:center;display:block;cursor:pointer;font-size:.9em}.bookmark .checkbox:hover{color:#F44336 !important}.bookmark .bookmark-metadata{padding:16px;display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column nowrap;border-bottom:1px solid #E5E5E5}.bookmark .bookmark-metadata .bookmark-time{color:#6F757A;font-size:.9em;margin-bottom:8px}.bookmark .bookmark-metadata .bookmark-title{color:#000;font-size:1.3em;font-weight:600}.bookmark .bookmark-metadata .bookmark-url{color:#6F757A;font-size:.9em;margin-bottom:8px;margin-bottom:0;margin-top:8px;max-height:2.6em;line-height:1.3em;text-overflow:ellipsis;overflow:hidden}.bookmark .bookmark-metadata.has-image{min-height:250px;background-position:center;background-repeat:no-repeat;background-size:cover;-webkit-box-pack:end;justify-content:flex-end;position:relative}.bookmark .bookmark-metadata.has-image::before{content:"";background-color:rgba(0,0,0,0.5);position:absolute;top:0;left:0;right:0;bottom:0;z-index:0}.bookmark .bookmark-metadata.has-image .bookmark-time,.bookmark .bookmark-metadata.has-image .bookmark-url{z-index:2;color:white;text-shadow:1px 1px 1px rgba(0,0,0,0.5)}.bookmark .bookmark-metadata.has-image .bookmark-title{z-index:2;color:white;text-shadow:1px 1px 1px rgba(0,0,0,0.5)}.bookmark .bookmark-metadata:hover .bookmark-title{text-decoration:underline}.bookmark .bookmark-excerpt{padding:16px 16px 0;color:#000}.bookmark .bookmark-tags{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row wrap;padding:12px 12px 0;margin-bottom:-4px}.bookmark .bookmark-tags a{cursor:pointer;font-size:.9em;padding:4px;color:#F44336 !important}.bookmark .bookmark-tags a::before{content:"#"}.bookmark .bookmark-tags a:hover{text-decoration:underline}.bookmark .bookmark-menu{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap;border-top:1px solid #E5E5E5;visibility:hidden;margin-top:16px}.bookmark .bookmark-menu:nth-child(3){border-top:0;margin-top:0}.bookmark .bookmark-menu a{cursor:pointer;display:block;-webkit-box-flex:1;flex:1 0;color:#535A60 !important;padding:8px;font-size:.9em;text-align:center}.bookmark .bookmark-menu a span{margin-left:4px}.bookmark .bookmark-menu a:not(:last-child){border-right:1px solid #E5E5E5}.bookmark .bookmark-menu a:hover{color:#F44336 !important}.bookmark:hover .checkbox{opacity:1}.bookmark:hover .bookmark-menu{visibility:visible}.bookmark.checked{border:1px solid #9E9E9E;outline:6px solid #9E9E9E}.bookmark.checked .checkbox{opacity:1;outline:0;background-color:#9E9E9E;color:white}@supports not ((-webkit-hyphens: auto) or (hyphens: auto)){.bookmark .bookmark-title,.bookmark .bookmark-url,.bookmark .bookmark-excerpt{word-break:break-all}} \ No newline at end of file +.header-link{border-right:1px solid #E5E5E5;color:#000;cursor:pointer;font-size:.9em;line-height:70px;overflow:hidden;padding:0 16px}.header-link:hover{color:#F44336}*{border-width:0;box-sizing:border-box;font-family:"Source Sans Pro",sans-serif;margin:0;padding:0;text-decoration:none;-webkit-hyphens:auto;hyphens:auto}.spacer{-webkit-box-flex:1;flex:1 0}#login-page{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column nowrap;-webkit-box-align:center;align-items:center;height:100vh;background-color:#F5F5F5;-webkit-box-pack:center;justify-content:center}#login-page>.error-message{width:100%;margin:16px 16px 0;max-width:400px;background-color:#FFF;border:1px solid #E5E5E5;padding:16px;text-align:center}#login-page #login-box{width:100%;margin:16px;max-width:400px;background-color:#FFF;display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column nowrap;border:1px solid #E5E5E5}#login-page #login-box #logo-area{display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column nowrap;padding:16px;border-bottom:1px solid #E5E5E5}#login-page #login-box #logo-area #logo{font-size:3em;font-weight:100;color:#F44336}#login-page #login-box #logo-area #logo span{margin-right:8px}#login-page #login-box #logo-area #tagline{font-weight:100;color:#F44336}#login-page #login-box #input-area{padding:8px;border-bottom:1px solid #E5E5E5}#login-page #login-box #input-area .input-field{display:-webkit-box;display:flex;-webkit-box-align:baseline;align-items:baseline;padding:8px}#login-page #login-box #input-area .input-field p{color:#6F757A;font-size:.9em;margin-right:16px;min-width:65px}#login-page #login-box #input-area .input-field input{color:#000;padding:8px;border:1px solid #E5E5E5;-webkit-box-flex:1;flex:1 0;font-size:.9em}#login-page #login-box #input-area .input-field a{display:block;cursor:pointer;color:#6F757A;text-align:center;font-size:.9em;-webkit-box-flex:1;flex:1 0}#login-page #login-box #input-area .input-field a i{margin-right:8px;color:#6F757A}#login-page #login-box #input-area .input-field a:hover{color:#F44336}#login-page #login-box #button-area{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap;padding:16px}#login-page #login-box #button-area a{color:#535A60;text-transform:uppercase;background-color:#FFF;-webkit-box-flex:1;flex:1 0;text-align:center}#login-page #login-box #button-area a.button{cursor:pointer}#login-page #login-box #button-area a.button:hover{color:#F44336}#main-page{background-color:#F5F5F5;display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column nowrap;height:auto;min-height:100vh}#main-page #header{background-color:#FFF;box-shadow:0 0 3px rgba(0,0,0,0.3);left:0;position:fixed;right:0;top:0;z-index:99;display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row wrap}#main-page #header #n-selected{line-height:70px;font-size:1.3em;color:#6F757A;-webkit-box-flex:1;flex:1 0;border-right:1px solid #E5E5E5;padding:0 32px}#main-page #header #logo{border-left:1px solid #E5E5E5;cursor:default;flex-shrink:0;border-right:1px solid #E5E5E5;color:#000;cursor:pointer;font-size:.9em;overflow:hidden;padding:0 16px;line-height:70px;display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap;font-size:1.5em;font-weight:100;color:#F44336}#main-page #header #logo:hover{color:#F44336}#main-page #header #logo span{margin-right:8px}#main-page #header #logo:hover{background-color:#F5F5F5}#main-page #header #search-box{-webkit-box-align:center;align-items:center;border-right:1px solid #E5E5E5;display:-webkit-box;display:flex;-webkit-box-flex:1;flex:1 0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap;padding:16px;width:100%}#main-page #header #search-box .button,#main-page #header #search-box input{background-color:#FFF;border:1px solid #E5E5E5;color:#000;font-size:.9em;padding:8px}#main-page #header #search-box .button{cursor:pointer;color:#535A60}#main-page #header #search-box .button:hover{color:#F44336}#main-page #header #search-box input{border-right:0;-webkit-box-flex:1;flex:1 0;padding:8px 16px;min-width:0;width:100%}#main-page #header #header-menu{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap}#main-page #header #header-menu a{line-height:70px;padding:0 16px;color:#535A60;font-size:.9em;cursor:pointer}#main-page #header #header-menu a:not(:last-child){border-right:1px solid #E5E5E5}#main-page #header #header-menu a span{margin-left:4px}#main-page #header #header-menu a:hover{color:#F44336;background-color:#F5F5F5}#main-page #main{margin-top:70px;display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column nowrap}#main-page #main #input-bookmark{align-self:center;max-width:600px;width:100%;display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column nowrap;margin:32px 16px 20px;background-color:#FFF;outline:1px solid #E5E5E5}#main-page #main #input-bookmark>p{color:#000;font-weight:600;text-transform:uppercase;padding:16px}#main-page #main #input-bookmark>p.error-message{color:#F44336;font-size:.9em;border-bottom:1px solid #E5E5E5;font-weight:500;text-transform:none}#main-page #main #input-bookmark input[type=text],#main-page #main #input-bookmark textarea{outline:1px solid #E5E5E5;color:#000;font-size:.9em;padding:12px 16px}#main-page #main #input-bookmark textarea{resize:vertical;min-height:4em;max-height:10em}#main-page #main #input-bookmark .button-area{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap;padding:8px}#main-page #main #input-bookmark .button-area a{color:#535A60;text-transform:uppercase;padding:8px;background-color:#FFF;font-size:.9em}#main-page #main #input-bookmark .button-area a.button{cursor:pointer}#main-page #main #input-bookmark .button-area a.button:hover{color:#F44336}#main-page #main #search-parameter{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row wrap;padding:0 8px}#main-page #main #search-parameter a{display:block;margin:8px;padding:8px;font-size:.9em;background-color:#6F757A;color:white;border-radius:16px;cursor:pointer}#main-page #main #search-parameter a:hover{background-color:#F44336;text-decoration:line-through}#main-page #main #grid{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap;padding:4px}#main-page #main #grid>.column{-webkit-box-flex:1;flex:1 0;padding:12px;max-width:100%}#main-page #main #grid>.column>*:not(:last-child){margin-bottom:24px}#main-page #main #message-bar{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column;-webkit-box-align:center;align-items:center;padding:32px;-webkit-box-pack:center;justify-content:center;position:absolute;top:50%;left:0;width:100%;margin-top:-60px;height:120px}#main-page #main #message-bar i{color:#6F757A;font-size:3em}@media screen and (max-width:800px){#main-page #header{position:static}#main-page #header #header-menu>a>span{display:none}#main-page #main{margin-top:0}#main-page #main .bookmark-menu>a>span{display:none}}@media screen and (max-width:740px){#main-page #main #input-bookmark{width:auto;align-self:auto}}@media screen and (max-width:500px){#main-page #header #logo{display:none}}#cache-page{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column nowrap;-webkit-box-align:center;align-items:center;height:auto;min-height:100vh}#cache-page a{color:#F44336}#cache-page a:visited{color:#F44336}#cache-page a:hover{text-decoration:underline}#cache-page>*{width:100%;max-width:864px}#cache-page #menu{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap;max-width:864px;border-bottom:1px solid #E5E5E5}#cache-page #menu a{-webkit-box-flex:1;flex:1 0;font-size:.9em;text-align:center;color:#535A60;padding:16px;cursor:pointer}#cache-page #menu a i{margin-right:4px}#cache-page #menu a:not(:last-child){border-right:1px solid #E5E5E5}#cache-page #menu a:visited{color:#535A60}#cache-page #menu a:hover{color:#F44336;text-decoration:none}#cache-page #metadata{padding:32px;border-bottom:1px solid #E5E5E5}#cache-page #metadata a{font-size:.9em;display:block}#cache-page #metadata h3{font-size:2em;margin:8px 0}#cache-page #metadata p{font-size:.9em;color:#000}#cache-page #content{padding:16px 32px 32px}#cache-page #content *{margin-top:16px;line-height:180%;overflow:auto}#cache-page #content pre,#cache-page #content code{font-family:'Ubuntu Mono','Courier New',Courier,monospace}#cache-page.dark-mode{background-color:#222;color:white}#cache-page.dark-mode #menu a{color:white}#cache-page.dark-mode #menu a:visited{color:white}#cache-page.dark-mode #menu a:hover{color:#F44336;text-decoration:none}#cache-page.dark-mode #metadata p{color:white}#dialog-overlay{position:fixed;z-index:101;display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column;background-color:rgba(0,0,0,0.5);top:0;left:0;right:0;bottom:0;overflow:hidden;-webkit-box-pack:center;justify-content:center;padding:32px}#dialog-overlay #dialog{display:-webkit-box;display:flex;background-color:#FFF;align-self:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column;border:1px solid #E5E5E5;max-width:500px}#dialog-overlay #dialog #dialog-title{color:#000;font-weight:600;text-transform:uppercase;padding:16px;font-size:1em;border-bottom:1px solid #E5E5E5}#dialog-overlay #dialog #dialog-content{padding:16px}#dialog-overlay #dialog #dialog-button{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap;padding:8px;border-top:1px solid #E5E5E5}#dialog-overlay #dialog #dialog-button a{color:#535A60;text-transform:uppercase;padding:8px;background-color:#FFF}#dialog-overlay #dialog #dialog-button a.button{cursor:pointer}#dialog-overlay #dialog #dialog-button a.button:not(:last-child){margin-right:16px}#dialog-overlay #dialog #dialog-button a.button:hover{color:#F44336}.error-message{color:#F44336 !important;font-size:.9em}.error-message::before{content:"\f071";font-weight:900;margin-right:8px;font-family:"Font Awesome 5 Free"}.bookmark{background-color:#FFF;border:1px solid #E5E5E5;position:relative}.bookmark .checkbox{z-index:9;right:0;opacity:0;position:absolute;outline:1px solid #E5E5E5;color:#535A60;background-color:#FFF;width:32px;line-height:32px;text-align:center;display:block;cursor:pointer;font-size:.9em}.bookmark .checkbox:hover{color:#F44336 !important}.bookmark .bookmark-metadata{padding:16px;display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:column nowrap;border-bottom:1px solid #E5E5E5}.bookmark .bookmark-metadata .bookmark-time{color:#6F757A;font-size:.9em;margin-bottom:8px}.bookmark .bookmark-metadata .bookmark-title{color:#000;font-size:1.3em;font-weight:600;text-overflow:ellipsis;overflow:hidden}.bookmark .bookmark-metadata .bookmark-url{color:#6F757A;font-size:.9em;margin-bottom:8px;margin-bottom:0;margin-top:8px;max-height:2.6em;line-height:1.3em;text-overflow:ellipsis;overflow:hidden}.bookmark .bookmark-metadata.has-image{min-height:250px;background-position:center;background-repeat:no-repeat;background-size:cover;-webkit-box-pack:end;justify-content:flex-end;position:relative}.bookmark .bookmark-metadata.has-image::before{content:"";background-color:rgba(0,0,0,0.5);position:absolute;top:0;left:0;right:0;bottom:0;z-index:0}.bookmark .bookmark-metadata.has-image .bookmark-time,.bookmark .bookmark-metadata.has-image .bookmark-url{z-index:2;color:white;text-shadow:1px 1px 1px rgba(0,0,0,0.5)}.bookmark .bookmark-metadata.has-image .bookmark-title{z-index:2;color:white;text-shadow:1px 1px 1px rgba(0,0,0,0.5)}.bookmark .bookmark-metadata:hover .bookmark-title{text-decoration:underline}.bookmark .bookmark-excerpt{padding:16px 16px 0;color:#000;text-overflow:ellipsis;overflow:hidden}.bookmark .bookmark-tags{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row wrap;padding:12px 12px 0;margin-bottom:-4px}.bookmark .bookmark-tags a{cursor:pointer;font-size:.9em;padding:4px;color:#F44336 !important}.bookmark .bookmark-tags a::before{content:"#"}.bookmark .bookmark-tags a:hover{text-decoration:underline}.bookmark .bookmark-menu{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap;border-top:1px solid #E5E5E5;visibility:hidden;margin-top:16px}.bookmark .bookmark-menu:nth-child(3){border-top:0;margin-top:0}.bookmark .bookmark-menu a{cursor:pointer;display:block;-webkit-box-flex:1;flex:1 0;color:#535A60 !important;padding:8px;font-size:.9em;text-align:center}.bookmark .bookmark-menu a span{margin-left:4px}.bookmark .bookmark-menu a:not(:last-child){border-right:1px solid #E5E5E5}.bookmark .bookmark-menu a:hover{color:#F44336 !important}.bookmark:hover .checkbox{opacity:1}.bookmark:hover .bookmark-menu{visibility:visible}.bookmark.checked{border:1px solid #9E9E9E;outline:6px solid #9E9E9E}.bookmark.checked .checkbox{opacity:1;outline:0;background-color:#9E9E9E;color:white} \ No newline at end of file diff --git a/view/index.html b/view/index.html index cd95ce32..ff5ac6cb 100644 --- a/view/index.html +++ b/view/index.html @@ -90,7 +90,7 @@ #{{tag}}
-
+
@@ -535,6 +535,12 @@ return finalContent; }, + columnWidth: function () { + var nColumn = Math.round(this.windowWidth / 500), + percent = Math.round(100 / nColumn * 1000) / 1000; + + return percent + "%"; + } }, watch: { 'inputBookmark.url': function (newURL) { diff --git a/view/less/stylesheet.less b/view/less/stylesheet.less index 20272685..c856a62b 100644 --- a/view/less/stylesheet.less +++ b/view/less/stylesheet.less @@ -538,6 +538,8 @@ color: @fontColor; font-size: 1.3em; font-weight: 600; + text-overflow: ellipsis; + overflow: hidden; } .bookmark-url { .bookmark-time; @@ -586,6 +588,8 @@ .bookmark-excerpt { padding: 16px 16px 0; color: @fontColor; + text-overflow: ellipsis; + overflow: hidden; } .bookmark-tags { display: flex; @@ -652,11 +656,4 @@ color: white; } } - @supports not (hyphens: auto) { - .bookmark-title, - .bookmark-url, - .bookmark-excerpt { - word-break: break-all; - } - } } \ No newline at end of file From 4a0443a04604e26a647a508fd017eada05af36d0 Mon Sep 17 00:00:00 2001 From: Radhi Fadlillah Date: Wed, 7 Mar 2018 08:21:30 +0700 Subject: [PATCH 11/14] Fix HTML content not rendered properly --- assets/assets.go | 2 +- cmd/serve.go | 8 +++++++- view/cache.html | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/assets/assets.go b/assets/assets.go index 6df9a971..9372328a 100755 --- a/assets/assets.go +++ b/assets/assets.go @@ -1,4 +1,4 @@ -// generaTed by fileb0x at "2018-03-07 07:57:27.581059864 +0700 WIB" from config file "filebox.json" +// generaTed by fileb0x at "2018-03-07 08:20:57.393834599 +0700 WIB" from config file "filebox.json" package assets diff --git a/cmd/serve.go b/cmd/serve.go index 04891a59..07175575 100644 --- a/cmd/serve.go +++ b/cmd/serve.go @@ -41,8 +41,14 @@ var ( } // Prepare template + funcMap := template.FuncMap{ + "html": func(s string) template.HTML { + return template.HTML(s) + }, + } + tplFile, _ := assets.ReadFile("cache.html") - tplCache, err = template.New("cache.html").Parse(string(tplFile)) + tplCache, err = template.New("cache.html").Funcs(funcMap).Parse(string(tplFile)) if err != nil { cError.Println("Failed to generate HTML template") return diff --git a/view/cache.html b/view/cache.html index bc9151b9..8cf75cf7 100644 --- a/view/cache.html +++ b/view/cache.html @@ -34,7 +34,7 @@ {{end}} {{end}}
- {{.HTML}} + {{html .HTML}}