From a785043338b0bd69c7acaa3caef86d31052c297b Mon Sep 17 00:00:00 2001 From: David Newhall II Date: Wed, 17 Jul 2024 01:37:01 -0700 Subject: [PATCH] even more --- examples/docker-compose.yml | 10 +++++++--- examples/unpackerr.conf.example | 1 + init/config/compose.go | 21 ++++++--------------- init/config/config.go | 10 +--------- init/config/docusaurus.go | 13 +++++++++++-- init/config/main.go | 14 ++++++++++++++ pkg/bindata/bindata.go | 8 ++++---- 7 files changed, 44 insertions(+), 33 deletions(-) diff --git a/examples/docker-compose.yml b/examples/docker-compose.yml index 5094565..83b13e0 100644 --- a/examples/docker-compose.yml +++ b/examples/docker-compose.yml @@ -16,9 +16,11 @@ services: # Get the user:group correct so unpackerr can read and write to your files. user: ${PUID}:${PGID} #user: 1000:100 - # What you see below are defaults for this compose. You only need to modify things specific to your environment. - # Remove apps and feature configs you do not use or need. - # ie. Remove all lines that begin with UN_CMDHOOK, UN_WEBHOOK, UN_FOLDER, UN_WEBSERVER, and other apps you do not use. + # What you see below are defaults mixed with examples where examples make more sense than the default. + # You only need to modify things specific to your environment. + # Remove apps and feature configs you do not use or need. + # ie. Remove all lines that begin with UN_CMDHOOK, UN_WEBHOOK, + # UN_FOLDER, UN_WEBSERVER, and other apps you do not use. environment: - TZ=${TZ} ## Global Settings @@ -132,3 +134,5 @@ services: - UN_CMDHOOK_0_EXCLUDE_0=readarr - UN_CMDHOOK_0_EXCLUDE_1=lidarr - UN_CMDHOOK_0_TIMEOUT=10s + +## => Content Auto Generated, 17 JUL 2024 08:35 UTC diff --git a/examples/unpackerr.conf.example b/examples/unpackerr.conf.example index 7b43239..624c30e 100644 --- a/examples/unpackerr.conf.example +++ b/examples/unpackerr.conf.example @@ -301,3 +301,4 @@ dir_mode = "0755" ## You can adjust how long to wait for the command to run. # timeout = "10s" +## => Content Auto Generated, 17 JUL 2024 08:35 UTC diff --git a/init/config/compose.go b/init/config/compose.go index cafbff1..a4b9831 100644 --- a/init/config/compose.go +++ b/init/config/compose.go @@ -4,10 +4,7 @@ import ( "bytes" "fmt" "log" - "os" - "path/filepath" "strings" - "time" ) /* This file creates an example compose file: docker-compose.yml */ @@ -33,10 +30,10 @@ services: user: ${PUID}:${PGID} #user: 1000:100 # What you see below are defaults mixed with examples where examples make more sense than the default. - # You only need to modify things specific to your environment. - # Remove apps and feature configs you do not use or need. - # ie. Remove all lines that begin with UN_CMDHOOK, UN_WEBHOOK, - # UN_FOLDER, UN_WEBSERVER, and other apps you do not use. + # You only need to modify things specific to your environment. + # Remove apps and feature configs you do not use or need. + # ie. Remove all lines that begin with UN_CMDHOOK, UN_WEBHOOK, + # UN_FOLDER, UN_WEBSERVER, and other apps you do not use. environment: - TZ=${TZ}` ) @@ -60,14 +57,8 @@ func createCompose(config *Config, output, dir string) { } } - _ = os.Mkdir(dir, dirMode) - filePath := filepath.Join(dir, output) - log.Printf("Writing: %s, size: %d", filePath, buf.Len()) - buf.WriteString("\n# Generated: " + time.Now().Round(time.Second).String() + "\n") - - if err := os.WriteFile(filePath, buf.Bytes(), fileMode); err != nil { - log.Fatalln(err) - } + buf.WriteString("\n") + writeFile(dir, output, &buf) } func (h *Header) makeCompose(prefix string, bare bool) string { diff --git a/init/config/config.go b/init/config/config.go index bf4900e..6e645b0 100644 --- a/init/config/config.go +++ b/init/config/config.go @@ -4,8 +4,6 @@ import ( "bytes" "fmt" "log" - "os" - "path/filepath" "strings" "github.com/BurntSushi/toml" @@ -30,13 +28,7 @@ func createConfFile(config *Config, output, dir string) { } } - _ = os.Mkdir(dir, dirMode) - filePath := filepath.Join(dir, output) - log.Printf("Writing: %s, size: %d", filePath, buf.Len()) - - if err := os.WriteFile(filePath, buf.Bytes(), fileMode); err != nil { - log.Fatalln(err) - } + writeFile(dir, output, &buf) } // Not all sections have defs, and it may be nil. Defs only work on 'list' sections. diff --git a/init/config/docusaurus.go b/init/config/docusaurus.go index 96fff50..afb6c9d 100644 --- a/init/config/docusaurus.go +++ b/init/config/docusaurus.go @@ -48,7 +48,8 @@ func createDocusaurus(config *Config, output string) { func writeDocusaurus(dir, file, content string) error { _ = os.Mkdir(dir, dirMode) - date := "---\n# Generated: " + time.Now().Round(time.Second).String() + "\n---\n\n" + date := "---\n## => Content Auto Generated, " + + strings.ToUpper(time.Now().UTC().Round(time.Second).Format("02 Jan 2006 15:04 UTC")) + "\n---\n\n" filePath := filepath.Join(dir, file+".md") log.Printf("Writing: %s, size: %d", filePath, len(content)) //nolint:wrapcheck @@ -67,7 +68,15 @@ func makeGenerated(config *Config, output string) error { } } - return writeDocusaurus(output, "index", first.String()+"\n"+second.String()) + err := writeDocusaurus(output, "index", first.String()+"\n"+second.String()) + if err != nil { + return err + } + + date := strings.ToUpper(time.Now().UTC().Round(time.Second).Format("02 Jan 2006 15:04 UTC")) + // Create a footer file that can be imported. + return writeDocusaurus(output, "footer", ``+ + "This page was [generated automatically](https://github.com/Unpackerr/unpackerr/tree/main/init/config), "+date+"\n") } func (h *Header) makeDocs(prefix string, section section) string { diff --git a/init/config/main.go b/init/config/main.go index ac578e0..b4e301e 100644 --- a/init/config/main.go +++ b/init/config/main.go @@ -10,6 +10,7 @@ import ( "log" "net/http" "os" + "path/filepath" "strings" "time" @@ -182,3 +183,16 @@ func createDefinedSection(def *Def, section *Header) *Header { return newSection } + +// This is used only by compose and config. docs has it's own. +func writeFile(dir, output string, buf *bytes.Buffer) { + _ = os.Mkdir(dir, dirMode) + filePath := filepath.Join(dir, output) + log.Printf("Writing: %s, size: %d", filePath, buf.Len()) + buf.WriteString("## => Content Auto Generated, " + + strings.ToUpper(time.Now().UTC().Round(time.Second).Format("02 Jan 2006 15:04 UTC")+"\n")) + + if err := os.WriteFile(filePath, buf.Bytes(), fileMode); err != nil { + log.Fatalln(err) + } +} diff --git a/pkg/bindata/bindata.go b/pkg/bindata/bindata.go index 1b29be8..fa8b884 100644 --- a/pkg/bindata/bindata.go +++ b/pkg/bindata/bindata.go @@ -2,7 +2,7 @@ // sources: // files/macos.png (1.184kB) // files/windows.ico (16.958kB) -// ../../examples/unpackerr.conf.example (14.443kB) +// ../../examples/unpackerr.conf.example (14.495kB) package bindata @@ -110,7 +110,7 @@ func filesWindowsIco() (*asset, error) { return a, nil } -var _ExamplesUnpackerrConfExample = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5b\x6f\x73\x1b\x37\x8f\x7f\xaf\x4f\x81\xc8\x2f\x62\xcf\x28\x2b\x3b\xad\xed\xd4\xcf\xf9\x3a\x6e\xe2\xc4\x9a\xf1\xbf\xb1\xe4\xe6\x7a\x1e\x8f\x43\xed\x42\x5a\x3e\xe6\x92\x5b\x92\x2b\x59\x79\x71\x9f\xfd\x06\x20\x77\xb5\x6b\xbb\x9d\x4e\x93\xde\xbd\xb1\x9f\x79\x1a\x69\x97\x04\x01\x10\xf8\x01\x20\xa1\x8d\xbf\xf7\xd7\xdb\xd8\x80\xf0\x77\xad\x4b\x91\xde\xa3\xb5\x70\xfc\x20\x8a\x52\x21\xbc\x37\x7a\x26\xe7\x95\x15\x5e\x1a\x0d\x1f\xa5\xc2\x38\x14\x78\xde\xdf\x5f\x6f\x92\x23\x2c\x84\xaa\xd0\x81\xb0\x08\x02\x0a\xf9\x00\x66\x06\x19\xce\x44\xa5\xbc\x03\xa1\x33\xc0\xc0\x85\x4b\xea\xf5\x00\x8e\xf5\x42\x5a\xa3\x0b\xd4\x1e\x7e\x15\x56\x8a\xa9\x42\x07\x85\x58\x81\x59\xa0\xb5\x32\x43\x10\x4a\x45\xd2\xad\x79\x67\xc6\x22\xa4\x1d\x69\x72\x54\xe5\x01\xe4\xde\x97\xee\x60\x38\xac\x6a\xd9\x93\xaf\xb2\x6c\xe6\x05\xf9\xe1\x13\x6a\xb4\xc2\x1b\xbb\x1e\xaf\x8d\x97\x33\x29\xac\x4d\x52\x53\xac\x67\x7f\x8b\x5e\x68\xc1\x49\x65\x35\x18\x0d\x19\x4e\xab\x39\x14\xe8\x9c\x98\xa3\x03\xa9\xc1\xe7\x08\xa6\xf2\x65\xe5\x13\xf8\x60\x40\x1b\x0f\x4b\x2b\x4a\xf0\xb9\xe4\xf7\xbf\x57\xc6\xa3\x4b\x88\xc8\x15\xa6\xa6\x28\x50\x67\xe0\xed\x4a\xea\x79\x18\xe3\x0c\xac\x4c\x05\xf7\xda\x2c\x61\x99\x0b\x0f\xd2\x83\x32\xe6\xde\x81\x92\xf7\x98\xc0\x08\x4a\xb4\xce\x68\xa1\xd4\x0a\x14\x8a\x05\xd2\x08\xa3\x93\x5e\x60\xe6\x10\x66\x42\x39\x64\x36\x3f\x48\x47\x9a\x87\xa5\x95\x9e\x16\x68\x18\xf5\x06\x9c\xcf\x4c\xe5\x87\xce\x67\xa4\x4d\x98\xf0\xda\x52\xa1\x4e\xe9\x7d\x8e\x20\xca\x32\x81\x31\x7a\x10\xa0\xcc\x9c\xc8\xcd\xc8\xb0\xa6\xa8\xcc\x12\xe4\x8c\xb9\x74\xe8\x03\xd7\xde\x80\xb7\x15\x26\x6b\xa1\x30\x83\x65\x8e\x1a\x9c\x17\x96\x17\x5f\x4a\x9f\x83\x5b\x39\x8f\x45\xea\x55\xd2\xfb\xbd\x92\xe8\x3b\xec\x8e\x49\x17\x68\xad\xb1\x51\x85\x91\x4f\xda\x30\xa9\x9d\x47\x91\x91\xf1\x05\xce\x61\xba\xa2\xe5\x99\x34\xcf\xb9\x8b\x23\x6b\x56\xba\x2a\x26\x4d\x35\x3a\x16\x3e\xac\x9a\xc0\x68\xae\x8d\xc5\x8c\xe4\x09\xfc\x6c\x8a\xa9\x59\xe0\x16\x90\x4c\x4c\xa5\x43\xbb\xcb\x6d\x58\x5c\xa4\x5e\x2e\xa4\x5f\xd5\x0b\xc3\x52\x2a\x55\xab\x92\xcd\x5c\x94\x25\xfc\x5e\x61\x85\xa4\x48\x50\x52\xa3\x0b\xda\x30\x5a\xad\xe0\x2b\x5a\x13\x0c\x62\xfc\x48\x9b\x41\x81\xa4\xe7\xa5\xd0\x1e\x14\x3a\xc7\x14\x5c\x29\x8a\xa4\xd7\xac\xdb\x66\x8a\x1c\x76\xec\x85\xb5\x6f\x44\x59\x2a\x99\x06\x1f\x6a\x86\x06\x2e\x24\x93\x99\x63\x46\x26\x2c\x34\x48\xed\xd1\x2e\x84\x62\x26\x8e\xb2\x7f\x57\x8e\xf8\x20\xd3\x8b\x2f\x02\xb7\xc1\x3c\x83\xd4\x3c\xf4\x43\x40\x01\xa2\x47\xc8\xa0\x2b\x8f\x09\xbc\x2d\x06\xb0\x5b\x0c\x60\x67\xbb\x18\xc0\x0f\xf4\x9f\x9d\x3c\x80\x87\x72\x86\x6c\x77\x86\xa9\x57\x2b\x10\x69\x8a\xa5\x27\xf3\x4c\x7a\xca\xcc\xef\x98\x35\x07\x87\xd0\xdf\x29\xfa\x2c\xcb\x67\x2b\x3d\x76\x6c\x96\x2d\x91\xcd\x30\x1a\xac\x0c\xa6\xea\x44\x81\x90\x09\x2f\x22\xdb\x0e\xb4\xb1\x05\x7b\x48\xc7\x90\x4c\xe5\x93\xa0\xa5\xb5\x24\x34\x7a\x6e\x91\x4c\xc2\x58\xf8\x60\x08\x1f\xa0\x72\x68\x5d\x20\xc6\xaa\xf7\x06\xf0\xa1\x34\x96\xf4\x82\xd2\x12\x1b\x91\x21\x66\xa6\xd6\xbc\x50\x1e\xad\x16\x5e\x2e\x58\xc9\xde\x10\x21\xb2\x79\x62\xdb\x1b\xe6\x7e\x0d\x10\x64\xcb\xd1\xd1\x9a\x9d\xea\xd2\x6c\x29\x58\x9b\x46\xf6\x7f\x45\x30\x71\x50\x69\x87\x41\xa2\xe3\x07\xd2\x26\xed\x67\x21\xd2\x8b\x31\xe3\xf2\x67\xa9\x33\xb3\x74\x03\x5e\xa4\x9e\x0c\x73\xf4\x2e\xf8\xad\x81\xfe\xff\x0c\x93\x06\x13\x5b\xd8\xaa\xcc\xbc\x4f\x54\x69\x5f\x68\x92\x3b\xdc\x06\x5f\x59\xed\xc0\xcc\x66\x20\x2a\x6f\xde\x58\xe3\x99\xe3\x0e\x9f\x3c\x96\x18\xdb\xd9\x66\x0e\x9c\xfc\x8a\x9b\xc5\x74\x2b\x3e\x3a\xc3\xb9\x98\xae\x3c\xba\x7f\xc1\xd4\xf8\x1c\x32\x53\x4d\x55\x70\xbe\x80\x5d\x8d\xd3\x6d\xd4\x2b\xc3\x21\xbc\x1e\x66\x66\xa9\x95\x11\x99\xeb\xb2\xf8\xba\xd7\xf0\x07\x87\xb0\xb3\xdd\x7c\xbd\x2b\xa6\xe1\x01\xf1\x76\x62\x96\x60\x66\x1e\x59\xb7\xa5\x21\xd7\x24\xff\x20\xad\x3b\xd8\x24\x20\xb5\x76\x00\x56\x64\xfc\x2f\xfa\x74\xeb\x11\x72\xec\x14\x6f\x76\x8b\x04\xae\x1d\x3a\xf8\x64\xe0\x43\x0c\x4c\x49\xaf\xf1\x8e\x43\xe8\xbf\x8d\x36\x4b\xab\x29\x43\xa8\xa0\x41\x7a\x2c\xa0\x20\x67\x9a\x62\xf0\xbc\x0c\x36\x6b\x59\x20\x35\x14\x34\x3d\x6e\xc1\x14\x67\x14\xf6\xf0\xc1\x5b\x72\x54\xa3\x23\x82\x10\x70\x32\x2f\x17\x1a\xa3\x7b\xd5\x06\x9f\x4b\xe7\x8d\x95\x69\x1d\x88\x59\xdb\x4b\x63\xef\x1d\x2c\x51\xa9\x80\xdb\xb9\x9c\xe7\x68\x23\x54\x5b\x68\xb4\x48\x24\xbd\xb8\x47\x66\x14\x19\x30\x67\x52\x0b\x25\xbf\x22\x6c\x1a\x0b\xde\x0a\xed\x66\x48\x56\x9e\x92\x0f\x6d\x3d\x27\x3c\x73\x77\x97\xa1\x12\xab\xb6\xcf\x36\xf2\x7b\x03\x4b\x21\x7d\x2d\x9c\xc5\xc2\x44\xfc\xad\xb9\x5f\xb1\xc3\x09\x98\x09\x49\x46\xb0\x16\x3f\xca\x9c\x62\x67\xb0\x74\x90\x21\x29\x2c\xe3\xc7\xac\x5c\xd6\xd3\x94\xa8\xa7\x66\xae\xe5\x57\xcc\x40\x38\xd0\xb8\x24\x7d\x10\x95\x67\x75\x0a\x62\x2e\xa4\x7e\x4e\x28\x8b\xde\xae\xd6\x42\xed\xb6\x84\x2a\x84\x5e\x81\x97\x45\x00\x22\x1e\xf8\x2c\xef\x70\x29\x2a\xa2\xdb\x26\x35\x45\xbf\x44\xd4\x20\xbc\xc7\xa2\xf4\x2e\xe9\x15\xe2\xe1\x8e\x46\x48\x36\xdd\x1f\xba\xab\x04\x8b\x2e\x78\x62\x4d\x9a\xbc\x44\x43\x29\xac\x50\x0a\x55\x02\x3b\x71\xb7\x67\x52\x47\xa8\xe8\xe4\x1a\x08\xba\x2a\xa6\xb4\xf9\x4d\xc6\x01\x57\x42\x3a\x0c\xd0\xc1\x71\x27\x86\xf0\x9c\x32\x88\x99\x70\x1e\x32\xe9\xee\x43\x46\xf7\xfe\xf2\x3a\xe9\xd5\x8b\x91\x2b\x31\x83\xd7\x3c\x1d\xdd\xa3\x0c\x8d\x15\x92\x1a\xed\xad\x51\xbc\x34\xfb\x6d\x61\x32\x74\x04\x7f\x19\x6f\xb3\xc6\xa5\x5a\xad\x85\xa9\xb3\x89\xb0\xdc\xcc\xa8\x0c\xad\x6b\x25\x0f\xb0\xbd\xf7\xe3\x8f\xc3\xed\xfd\xdd\x5d\x30\x16\xb6\xf7\xf6\xf6\x86\xdb\xfb\xfb\xfb\x49\x2f\xb8\xb7\xc9\x08\x18\xfa\x34\xa8\xdf\xcb\xa4\x5d\x3f\xd9\xdf\xdd\xed\xf7\x7a\x37\x4b\x9c\x3a\xb4\x0b\xb4\xb7\x35\x34\x2f\x71\x0a\xe1\x11\xa4\x95\xb5\xa8\x29\x06\xb1\x1e\x5c\x55\x12\xb2\x3b\x28\x68\x43\x52\xf7\xaf\x27\x59\x4d\xad\xaa\xa5\x74\x79\x0d\xea\xd2\x27\xbd\x7a\x46\x13\x81\xeb\xd0\x12\xf7\x2e\xa2\xac\x00\x8e\x1c\x64\xec\x1a\x64\x79\x10\xe2\x88\x81\xa9\xd4\x19\x08\x70\x25\xa6\x72\x26\x53\x18\x5d\x26\xb0\x9d\xf0\xff\xf8\x9d\x83\xa3\xd3\x53\x18\x5d\xba\xa4\x07\x4a\x3a\x8f\xfa\x4e\x64\x99\x65\x39\xc3\xb0\x83\xdd\xbd\xdd\xbd\x7e\x17\xae\xea\xb0\xb6\x8e\x95\xbc\x01\x27\x93\xc9\x25\x58\xfc\xbd\x42\xe7\x5d\x02\x17\x3e\x47\xbb\x94\x0e\x39\x3a\xac\x60\x6e\x62\x46\x42\xcf\x39\xbc\xd1\xa2\x2d\x10\x7e\xdd\x08\x47\xd9\x0c\x85\x80\x42\x78\xc9\xf8\x00\x1c\x0b\xd0\x85\x69\x31\x8b\x21\x33\x21\xf5\x51\x74\x26\x60\xa1\x7d\x8e\x36\xe9\x0d\xdc\x23\x96\xad\x05\x22\x7e\xc3\x13\x00\x8f\x49\x11\x47\x8b\x10\x2d\x03\xd9\x85\x50\x32\x0b\xc2\x95\xc2\xe7\xbc\x53\xa8\x39\xd7\x25\x41\xc7\xc3\xc9\xe9\x38\xe9\x81\x73\xea\x2e\x45\xeb\x5b\x52\xf0\xb3\x7b\x5c\x75\x05\xfb\x45\x38\x84\xeb\xab\x53\x98\x59\x53\xc0\x32\x97\x29\x6f\x34\x1b\x0c\xdb\x36\x6a\xda\xef\xca\xaa\x29\x8d\x3c\x84\xfe\x90\xd5\x7e\x5d\x3a\x6f\x51\x14\x0e\x5c\x6e\x2a\x95\xb5\x76\x9d\x24\x1f\x5d\xd2\xae\xbf\x1f\x7d\xb8\x22\xee\x19\x85\xbd\xad\x1c\x79\x73\x15\x67\x42\x69\xcd\xc3\x2a\x69\x27\x94\x6c\x7a\xa9\xb1\x36\x26\x4a\x4a\x99\xa5\x83\xff\x7a\xf3\xd1\xd8\xa5\xb0\x19\x66\xf4\x89\x0d\x08\x83\x83\x49\x1d\x77\x6c\x63\x03\x46\xa1\x04\x99\x55\xbe\xb2\x5c\x19\x90\x2d\xd6\xde\x29\x2a\x9f\x87\x05\x03\x1f\x09\x9c\xc5\xf0\x24\xd8\xc2\x42\x76\x6d\xa5\x8e\xc4\x62\x65\x77\xd0\x70\x4b\x1b\x75\x03\xfd\x9d\xb7\xfb\x6c\x80\x3b\xc3\x1f\xde\xf6\x07\xd0\xdf\xd9\x4e\x76\x92\xb7\xc9\xf6\xf0\xed\x8f\x7d\xb8\xed\x75\x87\xdf\x32\x78\x7c\x52\x66\x2a\x14\x7c\x64\x57\x7f\x54\xe2\x71\x9e\x25\x66\x94\x18\x3a\x4e\x98\x97\xc2\xa7\x39\xae\x81\xa1\x77\x13\x3f\xdd\x76\x23\x3a\x85\x73\xa2\x96\x63\x4a\x58\x18\x70\x66\x3d\x2b\xba\x7e\x1d\x23\xcd\x0c\xbe\x6c\xbb\x2f\x21\x12\x64\xb1\x34\x22\x65\x45\x32\x94\x0c\x53\x8c\xe0\x12\xc5\x01\x86\x94\x2a\x64\x84\xdd\xfc\x9c\xeb\x56\xda\x81\x2f\x3b\x85\xfb\x42\x1f\x6a\x72\x92\x92\xe6\x66\x0e\xb4\x53\x84\x6d\xd7\xef\xc0\xfc\x9a\x55\xc0\x05\x6a\xef\x20\x15\x9a\xf6\x42\x16\x05\x66\x52\x78\x54\x31\x61\xcf\xa8\x94\xd4\xaf\x3d\xa4\xb9\xd0\xf3\x80\xe1\x49\x0f\xa6\xd5\x8c\xa2\xf4\x21\xbc\xdd\xde\xde\xe6\x64\xe7\xbb\xfe\xf5\x36\x36\xde\x8c\xce\x2e\x2f\xae\x26\x47\xe7\x93\x37\xf1\xe1\x9b\xab\xe3\xa3\x0f\x30\x39\x19\x8d\x5f\xbd\x7a\xf5\xe6\xf1\x14\x18\xa3\x95\xa6\x72\x6a\x35\x00\x4b\xd5\x1a\x73\x0a\x0d\xbd\xef\xcd\x1f\x6f\xef\xcc\x90\x83\x90\xe3\x38\x4c\x43\x40\x8a\x8a\xb4\x58\xa2\xf0\x21\xc1\x6c\x42\x5d\x41\xe9\x88\xcf\x05\xd5\xef\x08\xe3\x98\xff\xc5\x83\x84\xab\x98\x06\x9e\xca\xf0\xef\x15\xc6\x07\x9f\x73\xe9\x4a\xfe\x14\x2c\x78\x00\x9f\x71\x9a\x1b\x73\x3f\x20\x64\x1b\x92\x97\x9b\xa2\x20\x90\x3b\x31\xe6\x3e\xa9\xe9\xfd\x66\x2a\x38\xbb\x1e\x4f\xa0\xd2\x01\x9f\x19\x1a\xe1\xe6\x26\x47\x91\xa1\xbd\xbd\x1d\x10\xa6\x30\x38\x8a\x52\x12\x2e\x41\x2c\x44\xc8\x42\xc6\x75\xa2\xda\xd0\x9b\xf0\xe4\x90\xb4\xde\xde\xf2\xbc\x9b\x9b\x90\xbb\xde\xde\x42\x20\x4a\xd8\x51\xe0\x7a\x45\x32\x9f\xeb\xce\xf2\xb4\x64\xa0\xd7\x5e\x58\xce\x42\x28\xa0\x5a\x4d\x6a\x42\x96\x84\x85\x8a\xb3\x8a\x10\x20\x04\xe4\xc2\xe5\x9d\xc1\xda\xf8\x24\xd2\xbb\x7e\x24\xa6\x92\x59\xc3\x29\x29\xe9\xe6\xc6\xe2\x63\x6e\x89\x87\x78\xc6\x24\x67\xcd\xca\xff\x88\xbd\x7c\x6f\x7a\xb0\xfe\xa3\x50\x7d\x3a\x3a\x3f\x1e\xc3\x2f\xc7\x9f\x46\xe7\xe7\xa3\xf3\x4f\xf0\x79\x34\x39\x81\x23\x38\x39\x1a\x9f\xc0\x06\x1c\x5d\x1d\xc3\xe8\xd3\xf9\xc5\xd5\xf1\x07\x78\x7f\x71\x76\x76\x7c\x3e\x19\xaf\xe7\x3f\xa6\x77\x75\x7c\x76\xf1\xeb\x31\x4c\x4e\x8e\xeb\xf9\x1f\xaf\x2e\xce\xe0\xfd\xc5\xf9\xc7\xd1\xa7\xb8\xd2\x6f\x17\xd7\xf0\xf9\xe8\x7c\x02\x93\x0b\x78\x7f\x72\x74\xfe\xe9\xf8\x11\xbd\xef\x2d\xef\xf7\xa5\x47\x02\x9f\x36\xc7\x32\x1d\xc3\x0e\xb6\xd1\xb6\x61\xd8\xa4\x0a\x18\x45\x46\xa3\xd9\x04\x37\xb6\xd8\x22\x4d\xe5\xf9\x68\x81\xa8\x35\xe3\x6b\x92\xb5\x6d\x6f\x72\xfd\x11\x0b\x8a\x66\xb2\x52\x14\x0c\xb3\x2a\xa5\xf8\xc7\xa5\x41\x55\xc2\x52\x58\xcd\x07\x1c\x6b\x76\x7a\x1b\xec\x32\x87\xd0\xcf\xbd\x2f\x0f\x86\xc3\x26\xfe\x1d\xbc\xfb\xe9\xdd\x4f\xfd\xde\x46\xb3\x10\xe1\xfc\xce\xdb\x1f\x7e\xdc\xdd\xdb\x7f\xf7\x93\x98\xa6\x19\xce\x1e\x7f\xe7\x28\x70\x1a\xa3\x6d\xc8\x5e\x96\x39\xda\x26\xcf\xe0\x4a\x27\xd6\x6a\x31\x7b\xf6\x31\xef\x4a\x62\x1a\xce\x65\xce\x4c\x28\x35\x15\xe9\x7d\xf4\x45\x26\xc5\x1f\x1a\xd8\x20\x00\xe4\xcc\x36\x33\xe8\xb8\x3c\xc0\x07\x5e\xd7\x86\x13\x05\xcf\x87\x30\xce\x49\x3e\x84\xd9\x88\xcc\x1c\xc2\x4d\xab\xe4\x7e\x7d\xdb\x2e\xf0\x4b\x6b\xbc\x49\x8d\x0a\x27\x2f\x86\xf3\xe8\x04\x8e\xd6\xc7\x1e\x07\xd0\x8f\x8f\x07\x95\x43\x8d\x9e\x94\xb3\x9e\x75\xd8\xbc\xee\x3f\x5b\x2d\x86\x8a\xd0\x62\xa9\x56\x21\x15\x23\x79\x48\x48\xd4\x19\x71\x48\x05\x18\x6d\x38\x55\x9c\xad\x78\xda\xa1\x21\x66\x9e\x0a\x9f\x82\xd3\xec\x58\x7e\x72\xe5\x58\x1b\x45\xab\xa4\xa2\x40\x4f\x74\x43\x65\xd9\xad\xfc\x28\x99\x0a\x71\xa3\xaa\xeb\x26\xd2\x29\xa3\xe0\xf9\x7f\xff\xc2\x6f\x28\xb9\xaa\xab\x82\x40\x03\x84\x4d\x73\xb9\xa0\xca\x86\xf9\x78\x54\xd6\x86\x23\x6a\xc5\x15\x2b\xe7\xeb\x21\x03\x92\xee\x00\xb2\x50\xc1\xc5\x34\x96\xd7\xe3\xbd\x0f\xfa\x62\x54\x7c\x92\x25\xd6\x05\x4a\x58\x3b\x9c\x0d\x90\xf9\x5b\x04\x63\xe5\x9c\xaa\xfa\xc6\x96\xea\x64\xa3\xad\x9f\x96\xec\x34\xbe\x5d\xc8\xb4\x64\x1f\xaf\x74\xea\x73\xa9\xe7\x83\xa6\xba\xe8\x1e\x53\x92\x27\x15\xe2\x9e\x82\x4e\x7d\xc0\xde\x6c\xa7\x5b\xe9\xd4\xc5\x33\x06\xe9\x72\x5a\xd1\xd5\xf4\x3a\x47\x97\x5d\x28\x78\x14\xd4\xfe\xbf\xa1\xa0\x66\xe7\x4f\xa0\x60\xff\xdd\xfe\xbb\x17\x28\x78\x81\x82\x17\x28\xf8\x46\x28\x58\xa7\x8d\x7f\x16\x78\xf7\xde\xed\xbd\x78\xdb\x8b\xb7\xbd\x78\xdb\x37\x7b\x5b\x53\x92\xfd\x99\xbb\xed\xbf\xdb\x7f\x71\xb7\x17\x77\x7b\x71\xb7\x6f\x76\xb7\x65\x3c\x4a\xfa\x53\x7f\xdb\xfb\x69\xef\xa5\xae\x7c\xf1\xb7\x17\x7f\xfb\xe6\xba\xf2\x7b\xff\x11\x49\xa0\xff\xc3\x78\x72\x71\x09\x27\xc7\x57\xc7\xfc\xf5\x2f\x7f\x6b\x7f\xe5\xb7\x81\xe4\x85\x56\x2b\xa8\x1c\x71\xdf\x38\x9a\xfb\x99\x4f\x7c\x59\x26\x07\xdc\x99\x94\xf0\x93\xd0\x84\x15\x6e\x51\x42\x6b\xde\xc5\xe5\x64\x74\x71\x7e\x74\x9a\xac\x49\x7e\x6f\xc1\x49\x9b\x6f\xc2\xf1\xb7\x7b\x72\xf4\xff\x77\x89\xb6\x6e\x15\x9b\x26\x98\x54\xe8\xd0\x2d\xc4\xf7\x40\xf5\x7d\x4e\x8d\x58\x3a\xb4\xde\x44\x07\x48\x6a\x83\x4a\x4d\xb9\x02\x11\xcf\x51\x5d\x35\x8d\x56\x29\x35\xdf\xc0\x76\x6f\x94\x60\x33\xc3\x99\xd4\x98\x05\x45\x6e\xf1\x69\x7b\x24\x18\xaf\x71\xb0\x68\xda\xf9\x02\xc9\x38\xb3\x6e\x39\xc8\xc8\xd1\x4a\x8b\xce\x61\x16\x9b\x91\x72\xc1\xe0\xc7\x06\x48\x7e\x1b\xaf\x54\x9b\xdd\xac\xe5\x73\xff\xc4\xe9\x36\xeb\xf2\x26\xde\x93\x71\x68\x61\xdc\xee\xb6\xcf\x88\xca\x9b\xbb\x28\x27\xdf\x7b\x5e\x32\xb6\x37\xca\x8c\x77\xf2\xde\x24\x9d\x8b\xb3\xcd\x4e\xf3\xdc\x54\x09\x7d\xbf\xd5\x69\xbd\x12\x0e\xbe\xd0\x72\x5f\xea\xf6\x39\xf2\xc6\x48\xf3\xae\xe6\xe3\x75\x00\x7c\x06\xb3\x35\x54\x1a\xbb\x46\x94\xb8\x7a\xce\xfd\x69\x7a\xfe\x3c\xd2\xb5\x19\x93\x0e\xb6\xe3\x85\xb3\x81\xed\xf6\x3d\x9c\x50\xaa\x06\xaf\xf6\xed\x87\xf4\xad\x9b\xe2\xf5\xfb\x27\x8d\x20\x0d\x7a\x05\x16\x38\x2c\x04\xe8\x5e\x37\xdf\x46\xbe\xdc\x1a\x99\xa5\x76\xdc\xd9\x1a\xbf\x27\x4f\x1b\xfa\x5a\x1c\x5a\x4c\x2b\xeb\xe4\xa2\xdd\xf8\x13\x62\x46\x18\x70\x17\x07\x18\xdd\x46\xcf\x27\xfa\x8b\x5d\x14\xcc\xa6\xab\x38\xec\xce\x2a\xd5\xa2\xf9\x33\x9c\x18\x6d\xac\xeb\x48\xd4\x92\xb0\xbe\x7f\x7f\xbc\x44\xb3\x2b\xc1\x17\xbe\x61\x85\x86\x52\x7b\x91\xa8\x85\x56\x83\x8e\x32\x73\xd8\x6c\x80\x1e\xb3\xc4\x3f\xf8\xad\x70\xc7\x9f\x5a\xe4\x8d\xf9\xb9\xa5\x1e\x1a\xde\x22\x78\x66\x16\x4f\xd5\xc2\xce\xbf\x36\x2f\xf6\x8d\x9f\x09\x30\x78\xda\x20\x8e\x9a\x9b\x88\x12\x1a\xee\x5a\xeb\xc7\xf1\x24\x48\x61\x16\x78\xc7\x39\x51\x6b\xc5\x27\x9b\x5b\x77\x89\x70\xc3\x60\x1d\xd6\x5b\xce\x35\x1a\x5f\xc4\x15\x19\x17\x12\xe9\xf8\x1d\x6a\x17\x6d\xae\xf6\x18\xe9\x8c\xfb\xe3\x10\xc6\xd1\x22\xde\x3e\x3a\x78\xee\x62\xa6\x17\x5a\x69\x1d\xe1\x5e\x18\x17\x3a\x49\x85\x6e\xeb\x3b\x34\x5c\x0e\xc2\x69\xa7\x1b\xc4\x38\x4a\x4f\xe2\x65\xdd\xba\xe3\x8a\x98\x7b\x6f\xc3\x5d\xaa\x67\x6d\xe1\xdc\x0a\x8f\x41\x90\x4e\x8f\x35\x0d\x3d\x62\xec\xe6\xfe\xa4\x90\xbd\xa9\x55\x18\xf9\x41\xba\xd4\xd8\x8c\xc6\x0d\x60\x82\x8a\xa8\x14\x89\xb1\x73\x5e\x13\xc6\x4a\xa4\xf7\xf4\xb2\x66\x9b\xfd\xe1\xbd\xd0\x50\x1a\xce\x26\x57\x4d\xcb\x43\xab\x59\xc5\xa1\x5d\xc8\x14\x1d\x4c\x57\x94\x11\x2e\x64\x16\xda\x5f\xd2\xca\x79\xca\xf4\xb0\x28\x95\xf0\xc8\x38\x94\x44\x5d\xc5\xfb\xf4\x99\xb1\xf3\x00\x1e\xeb\xfb\xd9\x9b\x9b\xb8\x78\xbc\x5f\xe5\xfb\x59\x1f\x1a\x5c\x65\x51\x15\xf0\xea\xd5\xab\x57\x9c\xc7\xd7\xc3\xba\x69\xfc\xd3\xae\x73\x51\xca\xe1\x62\x27\x3e\x0c\x21\x60\xdd\xc8\x38\x8c\x19\xfe\x1d\xa5\xa5\x77\xcd\xc4\xbb\xd4\x04\xbc\xb9\x64\x89\x90\xf6\xce\x94\x34\x55\x28\xd0\x84\xb9\xde\x40\x4e\x2f\x08\x84\xaf\xaf\x4e\xbb\x4d\x20\x33\x10\x61\x54\xcc\xc7\x83\x5e\x42\xeb\x9c\x5e\x4f\x09\x0d\x5a\xa4\x64\x1e\x7c\x08\xfd\x7e\xab\x97\x8c\x5b\x8d\x83\xc3\x53\x08\x68\x35\x1f\x33\xbe\x73\x87\xb3\x6f\x7b\x44\x5d\x7c\x70\x3b\x03\xc8\x2c\xf4\x99\xa3\xce\xa0\x2d\x3b\x69\x7d\x00\x37\xdb\xb7\x21\x2b\x57\xea\x39\x58\xa7\xd7\xa4\xfd\xba\xd3\x95\x4d\x37\x34\xa3\x90\xa3\x84\x7e\x89\x43\xb8\xd9\x19\xc0\x8f\x03\xd8\xe3\x62\xe2\xf0\xf0\xf0\x3f\xe1\x28\x5b\x08\x9d\x62\x06\x17\xb5\xb6\xa2\xab\x3c\xfa\x91\xc4\x7f\x1c\x1e\x1e\x36\x55\x8f\xd4\xb5\x69\xae\xed\xb0\x31\x1c\x47\xe1\x6d\x6a\x3c\xeb\x68\x40\x63\x6b\xcb\xa5\x17\x69\x2e\xfc\x9d\x0c\x3a\x94\xe9\x7d\xad\xc7\x26\x4c\xb0\x42\xd9\x21\x4a\xe1\xc2\x5a\x84\x17\x35\xed\xa4\x61\xe0\xf1\xa2\xa4\x9c\x0c\x9d\x97\x3a\x26\x45\xb9\xd0\x1a\x49\x59\xf5\xc7\x66\xbf\x6a\xbd\x73\x4b\x2b\x03\x4e\xaa\xaa\x0c\x13\x38\x37\x1a\xc9\x2d\xa2\x62\xd7\x4d\xd3\x8f\xd4\x19\xc6\x93\x3e\xfb\xf1\x30\xa8\x3f\x80\x7e\x38\x85\xed\xb3\x6e\x2f\xea\x9f\x6d\x70\x47\x0b\xa9\xb5\x46\x96\x9a\xe3\xc0\xf0\xda\xc1\x39\xb2\xb3\x83\x36\x9e\xdc\x71\xc5\x26\x25\x68\x48\x37\x4d\x65\x6b\x9a\x19\x7a\x8c\x7d\x95\xbf\x72\x8b\xc0\xc1\x1a\x6d\x06\xf5\x6a\x03\xf0\x71\x43\x06\x30\xa7\xb7\xab\x01\x94\x95\xcb\xcd\x02\xed\x00\x1c\xe9\xb5\xb5\x78\xa3\xb5\xe7\x82\xb3\xe4\x9f\x03\x84\x6a\x77\x7c\x0a\x29\xda\x68\xb7\x08\x26\xf8\x4d\xe8\x21\x24\x69\xc2\xd8\x3b\xe7\x3a\x81\xed\x37\x4a\x45\x29\x7f\x0d\x6d\xf4\xf9\xf3\x95\x68\xec\x44\xb4\xe8\x4a\xa3\xb9\x00\x7b\xae\x04\x1d\xc5\x9e\xb1\x47\x48\x06\xdc\x60\x2a\x74\xd0\xee\xd9\xe8\xec\x18\xfc\xaa\xc4\x41\xd3\xb7\xc8\x36\x12\x8a\xfe\x3b\x7a\x43\x34\x5b\xf9\xe7\xf0\xdf\xce\xe8\xfe\x1f\xd4\x46\x1c\x5d\xda\xbd\x2c\xcf\x87\x98\x3a\xce\x1c\x3f\x60\x5a\xb1\x8f\x80\x4b\xad\x2c\xf9\x10\x20\x8d\xd3\xbf\x3d\xe8\x1c\x51\x1a\x27\xbc\xa0\xc7\x8d\xff\x90\xdb\x61\xeb\x07\x46\x8b\xfa\x07\x46\x09\x4c\xec\x0a\x86\x95\xb3\xc3\xa9\xd4\x43\xd4\x8b\x00\x40\x18\x7e\x48\xd3\x8c\x0b\x3f\x47\x58\x08\xa9\xc2\xcf\x0f\xfe\x42\x4c\x48\x8b\xac\x8e\x09\xcf\xc5\x82\xe6\x35\x6b\x3e\x48\xdf\x4d\xbd\x83\x76\xdc\x30\xbe\x4d\x5c\xfe\xfa\x9f\x81\x77\x98\x49\xeb\x3c\x85\xdf\xac\x2e\x60\x6a\x8e\xfe\x08\xef\xaf\x2a\xed\xba\x03\x43\x22\xcb\x5a\x74\x39\x6c\xbe\xd6\xf2\x61\x8b\x77\xb6\xc8\x12\x7c\x40\xd8\x8c\xbf\x2d\x08\x81\x20\x47\xd5\x4d\xee\xd6\xf1\x23\x52\x7c\xed\xea\x1f\x45\xfd\xf5\xc0\x61\x2b\xdd\x30\xf4\xfd\x43\xc6\xfe\x3a\x64\x34\x91\xa2\x6d\xf6\x7f\x10\x2e\xfe\x0f\xa0\xf6\xaf\x20\x48\x7b\xb3\x82\xaa\x9e\x83\x90\xde\xff\x06\x00\x00\xff\xff\x82\xcc\xed\xc5\x6b\x38\x00\x00") +var _ExamplesUnpackerrConfExample = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5b\x6f\x73\x1b\x37\x8f\x7f\xaf\x4f\x81\xc8\x2f\xe2\xcc\x28\x2b\xd9\x8d\xed\xd4\x3d\x3f\x1d\x37\x71\x63\xdf\xf8\xdf\x58\x72\x73\x3d\x8f\xc7\xa1\x76\x21\x2d\x1f\x73\xc9\x2d\xc9\x95\xac\xbe\xb8\xcf\x7e\x03\x90\xbb\xda\xb5\xdd\x4e\xa7\x49\xef\xde\xd8\xcf\x3c\x8d\xb4\x4b\x82\x00\x08\xfc\x00\x90\xd0\xc6\xdf\xfb\xeb\x6d\x6c\x40\xf8\xbb\xd6\xa5\x48\xef\xd1\x5a\x38\x7a\x10\x45\xa9\x10\x3e\x18\x3d\x93\xf3\xca\x0a\x2f\x8d\x86\x9f\xa5\xc2\x38\x14\x78\xde\xdf\x5f\x6f\x92\x23\x2c\x84\xaa\xd0\x81\xb0\x08\x02\x0a\xf9\x00\x66\x06\x19\xce\x44\xa5\xbc\x03\xa1\x33\xc0\xc0\x85\x4b\xea\xf5\x00\x8e\xf4\x42\x5a\xa3\x0b\xd4\x1e\x7e\x11\x56\x8a\xa9\x42\x07\x85\x58\x81\x59\xa0\xb5\x32\x43\x10\x4a\x45\xd2\xad\x79\x67\xc6\x22\xa4\x1d\x69\x72\x54\xe5\x3e\xe4\xde\x97\x6e\x7f\x38\xac\x6a\xd9\x93\xdf\x65\xd9\xcc\x0b\xf2\xc3\x27\xd4\x68\x85\x37\x76\x3d\x5e\x1b\x2f\x67\x52\x58\x9b\xa4\xa6\x58\xcf\xfe\x1a\xbd\xd0\x82\x93\xca\x6a\x30\x1a\x32\x9c\x56\x73\x28\xd0\x39\x31\x47\x07\x52\x83\xcf\x11\x4c\xe5\xcb\xca\x27\xf0\xd1\x80\x36\x1e\x96\x56\x94\xe0\x73\xc9\xef\x7f\xab\x8c\x47\x97\x10\x91\x2b\x4c\x4d\x51\xa0\xce\xc0\xdb\x95\xd4\xf3\x30\xc6\x19\x58\x99\x0a\xee\xb5\x59\xc2\x32\x17\x1e\xa4\x07\x65\xcc\xbd\x03\x25\xef\x31\x81\x13\x28\xd1\x3a\xa3\x85\x52\x2b\x50\x28\x16\x48\x23\x8c\x4e\x7a\x81\x99\x03\x98\x09\xe5\x90\xd9\xfc\x28\x1d\x69\x1e\x96\x56\x7a\x5a\xa0\x61\xd4\x1b\x70\x3e\x33\x95\x1f\x3a\x9f\x91\x36\x61\xc2\x6b\x4b\x85\x3a\xa5\xf7\x39\x82\x28\xcb\x04\xc6\xe8\x41\x80\x32\x73\x22\x37\x23\xc3\x9a\xa2\x32\x4b\x90\x33\xe6\xd2\xa1\x0f\x5c\x7b\x03\xde\x56\x98\xac\x85\xc2\x0c\x96\x39\x6a\x70\x5e\x58\x5e\x7c\x29\x7d\x0e\x6e\xe5\x3c\x16\xa9\x57\x49\xef\xb7\x4a\xa2\xef\xb0\x3b\x26\x5d\xa0\xb5\xc6\x46\x15\x46\x3e\x69\xc3\xa4\x76\x1e\x45\x46\xc6\x17\x38\x87\xe9\x8a\x96\x67\xd2\x3c\xe7\x2e\x8e\xac\x59\xe9\xaa\x98\x34\xd5\xe8\x58\xf8\xb0\x6a\x02\x27\x73\x6d\x2c\x66\x24\x4f\xe0\x67\x53\x4c\xcd\x02\xdf\x00\xc9\xc4\x54\x3a\xb4\xbb\xdc\x86\xc5\x45\xea\xe5\x42\xfa\x55\xbd\x30\x2c\xa5\x52\xb5\x2a\xd9\xcc\x45\x59\xc2\x6f\x15\x56\x48\x8a\x04\x25\x35\xba\xa0\x0d\xa3\xd5\x0a\x7e\x47\x6b\x82\x41\x8c\x1f\x69\x33\x28\x90\xf4\xbc\x14\xda\x83\x42\xe7\x98\x82\x2b\x45\x91\xf4\x9a\x75\xdb\x4c\x91\xc3\x8e\xbd\xb0\xf6\xad\x28\x4b\x25\xd3\xe0\x43\xcd\xd0\xc0\x85\x64\x32\x73\xcc\xc8\x84\x85\x06\xa9\x3d\xda\x85\x50\xcc\xc4\x61\xf6\xef\xca\x11\x1f\x64\x7a\xf1\x45\xe0\x36\x98\x67\x90\x9a\x87\x7e\x0c\x28\x40\xf4\x08\x19\x74\xe5\x31\x81\xed\x62\x00\x3b\xc5\x00\xb6\x46\xc5\x00\xbe\xa3\xff\x6c\xe5\x01\x3c\x94\x33\x64\xbb\x33\x4c\xbd\x5a\x81\x48\x53\x2c\x3d\x99\x67\xd2\x53\x66\x7e\xc7\xac\x39\x38\x80\xfe\x56\xd1\x67\x59\x3e\x5b\xe9\xb1\x63\xb3\x6c\x89\x6c\x86\xd1\x60\x65\x30\x55\x27\x0a\x84\x4c\x78\x11\xd9\x76\xa0\x8d\x2d\xd8\x43\x3a\x86\x64\x2a\x9f\x04\x2d\xad\x25\xa1\xd1\x73\x8b\x64\x12\xc6\xc2\x47\x43\xf8\x00\x95\x43\xeb\x02\x31\x56\xbd\x37\x80\x0f\xa5\xb1\xa4\x17\x94\x96\xd8\x88\x0c\x31\x33\xb5\xe6\x85\xf2\x68\xb5\xf0\x72\xc1\x4a\xf6\x86\x08\x91\xcd\x13\xdb\xde\x30\xf7\x6b\x80\x20\x5b\x8e\x8e\xd6\xec\x54\x97\x66\x4b\xc1\xda\x34\xb2\xff\x10\xc1\xc4\x41\xa5\x1d\x06\x89\x8e\x1e\x48\x9b\xb4\x9f\x85\x48\x2f\xc6\x8c\xcb\x9f\xa5\xce\xcc\xd2\x0d\x78\x91\x7a\x32\xcc\xd1\xbb\xe0\xb7\x06\xfa\xff\x33\x4c\x1a\x4c\x6c\x61\xab\x32\xf3\x3e\x51\xa5\x7d\xa1\x49\xee\x60\x04\xbe\xb2\xda\x81\x99\xcd\x40\x54\xde\xbc\xb5\xc6\x33\xc7\x1d\x3e\x79\x2c\x31\xb6\x35\x62\x0e\x9c\xfc\x1d\x37\x8b\xe9\x9b\xf8\xe8\x0c\xe7\x62\xba\xf2\xe8\x7e\x80\xa9\xf1\x39\x64\xa6\x9a\xaa\xe0\x7c\x01\xbb\x1a\xa7\xdb\xa8\x57\x86\x03\x78\x3d\xcc\xcc\x52\x2b\x23\x32\xd7\x65\xf1\x75\xaf\xe1\x0f\x0e\x60\x6b\xd4\x7c\xbd\x2b\xa6\xe1\x01\xf1\x76\x6c\x96\x60\x66\x1e\x59\xb7\xa5\x21\xd7\x24\xff\x20\xad\x3b\xd8\x24\x20\xb5\x76\x00\x56\x64\xfc\x2f\xfa\xf4\xcd\x23\xe4\xd8\x2a\xde\xee\x14\x09\x5c\x3b\x74\xf0\xc9\xc0\xc7\x18\x98\x92\x5e\xe3\x1d\x07\xd0\xdf\x8e\x36\x4b\xab\x29\x43\xa8\xa0\x41\x7a\x2c\xa0\x20\x67\x9a\x62\xf0\xbc\x0c\x36\x6b\x59\x20\x35\x14\x34\x3d\xbe\x81\x29\xce\x28\xec\xe1\x83\xb7\xe4\xa8\x46\x47\x04\x21\xe0\x64\x5e\x2e\x34\x46\xf7\xaa\x0d\x3e\x97\xce\x1b\x2b\xd3\x3a\x10\xb3\xb6\x97\xc6\xde\x3b\x58\xa2\x52\x01\xb7\x73\x39\xcf\xd1\x46\xa8\xb6\xd0\x68\x91\x48\x7a\x71\x8f\xcc\x28\x32\x60\xce\xa4\x16\x4a\xfe\x8e\xb0\x69\x2c\x78\x2b\xb4\x9b\x21\x59\x79\x4a\x3e\xf4\xe6\x39\xe1\x99\xbb\xbb\x0c\x95\x58\xb5\x7d\xb6\x91\xdf\x1b\x58\x0a\xe9\x6b\xe1\x2c\x16\x26\xe2\x6f\xcd\xfd\x8a\x1d\x4e\xc0\x4c\x48\x32\x82\xb5\xf8\x51\xe6\x14\x3b\x83\xa5\x83\x0c\x49\x61\x19\x3f\x66\xe5\xb2\x9e\xa6\x44\x3d\x35\x73\x2d\x7f\xc7\x0c\x84\x03\x8d\x4b\xd2\x07\x51\x79\x56\xa7\x20\xe6\x42\xea\xe7\x84\xb2\xe8\xed\x6a\x2d\xd4\x4e\x4b\xa8\x42\xe8\x15\x78\x59\x04\x20\xe2\x81\xcf\xf2\x0e\x97\xa2\x22\xba\x6d\x52\x53\xf4\x4b\x44\x0d\xc2\x7b\x2c\x4a\xef\x92\x5e\x21\x1e\xee\x68\x84\x64\xd3\xfd\xae\xbb\x4a\xb0\xe8\x82\x27\xd6\xa4\xc9\x4b\x34\x94\xc2\x0a\xa5\x50\x25\xb0\x15\x77\x7b\x26\x75\x84\x8a\x4e\xae\x81\xa0\xab\x62\x4a\x9b\xdf\x64\x1c\x70\x25\xa4\xc3\x00\x1d\x1c\x77\x62\x08\xcf\x29\x83\x98\x09\xe7\x21\x93\xee\x3e\x64\x74\x1f\x2e\xaf\x93\x5e\xbd\x18\xb9\x12\x33\x78\xcd\xd3\xd1\x3d\xca\xd0\x58\x21\xa9\xd1\xde\x1a\xc5\x4b\xb3\xdf\x16\x26\x43\x47\xf0\x97\xf1\x36\x6b\x5c\xaa\xd5\x5a\x98\x3a\x9b\x08\xcb\xcd\x8c\xca\xd0\xba\x56\xf2\x00\xa3\xdd\x77\xef\x86\xa3\xbd\x9d\x1d\x30\x16\x46\xbb\xbb\xbb\xc3\xd1\xde\xde\x5e\xd2\x0b\xee\x6d\x32\x02\x86\x3e\x0d\xea\xf7\x32\x69\xd7\x4f\xf6\x76\x76\xfa\xbd\xde\xcd\x12\xa7\x0e\xed\x02\xed\x6d\x0d\xcd\x4b\x9c\x42\x78\x04\x69\x65\x2d\x6a\x8a\x41\xac\x07\x57\x95\x84\xec\x0e\x0a\xda\x90\xd4\xfd\xf0\x24\xab\xa9\x55\xb5\x94\x2e\xaf\x41\x5d\xfa\xa4\x57\xcf\x68\x22\x70\x1d\x5a\xe2\xde\x45\x94\x15\xc0\x91\x83\x8c\x5d\x83\x2c\xf7\x43\x1c\x31\x30\x95\x3a\x03\x01\xae\xc4\x54\xce\x64\x0a\x27\x97\x09\x8c\x12\xfe\x1f\xbf\x73\x70\x78\x7a\x0a\x27\x97\x2e\xe9\x81\x92\xce\xa3\xbe\x13\x59\x66\x59\xce\x30\x6c\x7f\x67\x77\x67\xb7\xdf\x85\xab\x3a\xac\xad\x63\x25\x6f\xc0\xf1\x64\x72\x09\x16\x7f\xab\xd0\x79\x97\xc0\x85\xcf\xd1\x2e\xa5\x43\x8e\x0e\x2b\x98\x9b\x98\x91\xd0\x73\x0e\x6f\xb4\x68\x0b\x84\x5f\x37\xc2\x51\x36\x43\x21\xa0\x10\x5e\x32\x3e\x00\xc7\x02\x74\x61\x5a\xcc\x62\xc8\x4c\x48\x7d\x14\x9d\x09\x58\x68\x9f\xa3\x4d\x7a\x03\xf7\x88\x65\x6b\x81\x88\xdf\xf0\x04\xc0\x63\x52\xc4\xd1\x22\x44\xcb\x40\x76\x21\x94\xcc\x82\x70\xa5\xf0\x39\xef\x14\x6a\xce\x75\x49\xd0\xf1\x70\x72\x3a\x4e\x7a\xe0\x9c\xba\x4b\xd1\xfa\x96\x14\xfc\xec\x1e\x57\x5d\xc1\x7e\x12\x0e\xe1\xfa\xea\x14\x66\xd6\x14\xb0\xcc\x65\xca\x1b\xcd\x06\xc3\xb6\x8d\x9a\xf6\xbb\xb2\x6a\x4a\x23\x0f\xa0\x3f\x64\xb5\x5f\x97\xce\x5b\x14\x85\x03\x97\x9b\x4a\x65\xad\x5d\x27\xc9\x4f\x2e\x69\xd7\x3f\x9c\x7c\xbc\x22\xee\x19\x85\xbd\xad\x1c\x79\x73\x15\x67\x42\x69\xcd\xc3\x2a\x69\x27\x94\x6c\x7a\xa9\xb1\x36\x26\x4a\x4a\x99\xa5\x83\xff\x7a\xfb\xb3\xb1\x4b\x61\x33\xcc\xe8\x13\x1b\x10\x06\x07\x93\x3a\xee\xd8\xc6\x06\x9c\x84\x12\x64\x56\xf9\xca\x72\x65\x40\xb6\x58\x7b\xa7\xa8\x7c\x1e\x16\x0c\x7c\x24\x70\x16\xc3\x93\x60\x0b\x0b\xd9\xb5\x95\x3a\x12\x8b\x95\xdd\x7e\xc3\x2d\x6d\xd4\x0d\xf4\xb7\xb6\xf7\xd8\x00\xb7\x86\xdf\x6d\xf7\x07\xd0\xdf\x1a\x25\x5b\xc9\x76\x32\x1a\x6e\xbf\xeb\xc3\x6d\xaf\x3b\xfc\x96\xc1\xe3\x93\x32\x53\xa1\xe0\x67\x76\xf5\x47\x25\x1e\xe7\x59\x62\x46\x89\xa1\xe3\x84\x79\x29\x7c\x9a\xe3\x1a\x18\x7a\x37\xf1\xd3\x6d\x37\xa2\x53\x38\x27\x6a\x39\xa6\x84\x85\x01\x67\xd6\xb3\xa2\xeb\xd7\x31\xd2\xcc\xe0\xcb\xc8\x7d\x09\x91\x20\x8b\xa5\x11\x29\x2b\x92\xa1\x64\x98\x62\x04\x97\x28\x0e\x30\xa4\x54\x21\x23\xec\xe6\xe7\x5c\xb7\xd2\x0e\x7c\xd9\x2a\xdc\x17\xfa\x50\x93\x93\x94\x34\x37\x73\xa0\x9d\x22\x8c\x5c\xbf\x03\xf3\x6b\x56\x01\x17\xa8\xbd\x83\x54\x68\xda\x0b\x59\x14\x98\x49\xe1\x51\xc5\x84\x3d\xa3\x52\x52\xbf\xf6\x90\xe6\x42\xcf\x03\x86\x27\x3d\x98\x56\x33\x8a\xd2\x07\xb0\x3d\x1a\x8d\x38\xd9\xf9\xa6\x7f\xbd\x8d\x8d\xb7\x27\x67\x97\x17\x57\x93\xc3\xf3\xc9\xdb\xf8\xf0\xed\xd5\xd1\xe1\x47\x98\x1c\x9f\x8c\x5f\xbd\x7a\xf5\xf6\xf1\x14\x18\xa3\x95\xa6\x72\x6a\x35\x00\x4b\xd5\x1a\x73\x0a\x0d\xbd\x6f\xcd\x1f\x6f\xef\xcc\x90\x83\x90\xe3\x38\x4c\x43\x40\x8a\x8a\xb4\x58\xa2\xf0\x21\xc1\x6c\x42\x5d\x41\xe9\x88\xcf\x05\xd5\xef\x08\xe3\x98\xff\xc5\x83\x84\xab\x98\x06\x9e\xca\xf0\xef\x15\xc6\x07\x9f\x73\xe9\x4a\xfe\x14\x2c\x78\x00\x9f\x71\x9a\x1b\x73\x3f\x20\x64\x1b\x92\x97\x9b\xa2\x20\x90\x3b\x36\xe6\x3e\xa9\xe9\xfd\x6a\x2a\x38\xbb\x1e\x4f\xa0\xd2\x01\x9f\x19\x1a\xe1\xe6\x26\x47\x91\xa1\xbd\xbd\x1d\x10\xa6\x30\x38\x8a\x52\x12\x2e\x41\x2c\x44\xc8\x42\xc6\x75\xa2\xda\xd0\x9b\xf0\xe4\x90\xb4\xde\xde\xf2\xbc\x9b\x9b\x90\xbb\xde\xde\x42\x20\x4a\xd8\x51\xe0\x7a\x45\x32\x9f\xeb\xce\xf2\xb4\x64\xa0\xd7\x5e\x58\xce\x42\x28\xa0\x5a\x4d\x6a\x42\x96\x84\x85\x8a\xb3\x8a\x10\x20\x04\xe4\xc2\xe5\x9d\xc1\xda\xf8\x24\xd2\xbb\x7e\x24\xa6\x92\x59\xc3\x29\x29\xe9\xe6\xc6\xe2\x63\x6e\x89\x87\x78\xc6\x24\x67\xcd\xca\xff\x88\xbd\x7c\x6b\x7a\xb0\xfe\xa3\x50\x7d\x7a\x72\x7e\x34\x86\x9f\x8e\x3e\x9d\x9c\x9f\x9f\x9c\x7f\x82\xcf\x27\x93\x63\x38\x84\xe3\xc3\xf1\x31\x6c\xc0\xe1\xd5\x11\x9c\x7c\x3a\xbf\xb8\x3a\xfa\x08\x1f\x2e\xce\xce\x8e\xce\x27\xe3\xf5\xfc\xc7\xf4\xae\x8e\xce\x2e\x7e\x39\x82\xc9\xf1\x51\x3d\xff\xe7\xab\x8b\x33\xf8\x70\x71\xfe\xf3\xc9\xa7\xb8\xd2\xaf\x17\xd7\xf0\xf9\xf0\x7c\x02\x93\x0b\xf8\x70\x7c\x78\xfe\xe9\xe8\x11\xbd\x6f\x2d\xef\xb7\xa5\x47\x02\x9f\x36\xc7\x32\x1d\xc3\x0e\xb6\xd1\xb6\x61\xd8\xa4\x0a\x18\x45\x46\xa3\xd9\x04\x37\xde\xb0\x45\x9a\xca\xf3\xd1\x02\x51\x6b\xc6\xd7\x24\x6b\xdb\xde\xe4\xfa\x23\x16\x14\xcd\x64\xa5\x28\x18\x66\x55\x4a\xf1\x8f\x4b\x83\xaa\x84\xa5\xb0\x9a\x0f\x38\xd6\xec\xf4\x36\xd8\x65\x0e\xa0\x9f\x7b\x5f\xee\x0f\x87\x4d\xfc\xdb\x7f\xff\xfd\xfb\xef\xfb\xbd\x8d\x66\x21\xc2\xf9\xad\xed\xef\xde\xed\xec\xee\xbd\xff\x5e\x4c\xd3\x0c\x67\x8f\xbf\x73\x14\x38\x8d\xd1\x36\x64\x2f\xcb\x1c\x6d\x93\x67\x70\xa5\x13\x6b\xb5\x98\x3d\xfb\x98\x77\x25\x31\x0d\xe7\x32\x67\x26\x94\x9a\x8a\xf4\x3e\xfa\x22\x93\xe2\x0f\x0d\x6c\x10\x00\x72\x66\x9b\x19\x74\x5c\x1e\xe0\x03\xaf\x6b\xc3\x89\x82\xe7\x43\x18\xe7\x24\x1f\xc2\x6c\x44\x66\x0e\xe0\xa6\x55\x72\xbf\xbe\x6d\x17\xf8\xa5\x35\xde\xa4\x46\x85\x93\x17\xc3\x79\x74\x02\x87\xeb\x63\x8f\x7d\xe8\xc7\xc7\x83\xca\xa1\x46\x4f\xca\x59\xcf\x3a\x68\x5e\xf7\x9f\xad\x16\x43\x45\x68\xb1\x54\xab\x90\x8a\x91\x3c\x24\x24\xea\x8c\x38\xa4\x02\x8c\x36\x9c\x2a\xce\x56\x3c\xed\xd0\x10\x33\x4f\x85\x4f\xc1\x69\x76\x2c\x3f\xb9\x72\xac\x8d\xa2\x55\x52\x51\xa0\x27\xba\xa1\xb2\xec\x56\x7e\x94\x4c\x85\xb8\x51\xd5\x75\x13\xe9\x94\x51\xf0\xfc\xbf\x7f\xe2\x37\x94\x5c\xd5\x55\x41\xa0\x01\xc2\xa6\xb9\x5c\x50\x65\xc3\x7c\x3c\x2a\x6b\xc3\x11\xb5\xe2\x8a\x95\xf3\xf5\x90\x01\x49\xb7\x0f\x59\xa8\xe0\x62\x1a\xcb\xeb\xf1\xde\x07\x7d\x31\x2a\x3e\xc9\x12\xeb\x02\x25\xac\x1d\xce\x06\xc8\xfc\x2d\x82\xb1\x72\x4e\x55\x7d\x63\x4b\x75\xb2\xd1\xd6\x4f\x4b\x76\x1a\xdf\x2e\x64\x5a\xb2\x8f\x57\x3a\xf5\xb9\xd4\xf3\x41\x53\x5d\x74\x8f\x29\xc9\x93\x0a\x71\x4f\x41\xa7\x3e\x60\x6f\xb6\xd3\xad\x74\xea\xe2\x19\x83\x74\x39\xad\xe8\x6a\x7a\x9d\xa3\xcb\x2e\x14\x3c\x0a\x6a\xff\xdf\x50\x50\xb3\xf3\x27\x50\xb0\xf7\x7e\xef\xfd\x0b\x14\xbc\x40\xc1\x0b\x14\x7c\x25\x14\xac\xd3\xc6\x3f\x0b\xbc\xbb\xef\x77\x5f\xbc\xed\xc5\xdb\x5e\xbc\xed\xab\xbd\xad\x29\xc9\xfe\xcc\xdd\xf6\xde\xef\xbd\xb8\xdb\x8b\xbb\xbd\xb8\xdb\x57\xbb\xdb\x32\x1e\x25\xfd\xa9\xbf\xed\x7e\xbf\xfb\x52\x57\xbe\xf8\xdb\x8b\xbf\x7d\x75\x5d\xf9\xad\xff\x88\x24\xd0\xff\x61\x3c\xb9\xb8\x84\xe3\xa3\xab\x23\xfe\xfa\x97\xbf\xb5\xbf\xf2\xdb\x40\xf2\x42\xab\x15\x54\x8e\xb8\x6f\x1c\xcd\xfd\xc8\x27\xbe\x2c\x93\x03\xee\x4c\x4a\xf8\x49\x68\xc2\x0a\xb7\x28\xa1\x35\xef\xe2\x72\x72\x72\x71\x7e\x78\x9a\xac\x49\x7e\x6b\xc1\x49\x9b\x6f\xc3\xf1\xb7\x7b\x72\xf4\xff\x77\x89\xb6\x6e\x15\x9b\x26\x98\x54\xe8\xd0\x2d\xc4\xf7\x40\xf5\x7d\x4e\x8d\x58\x3a\xb4\xde\x44\x07\x48\x6a\x83\x4a\x4d\xb9\x02\x11\xcf\x51\x5d\x35\x8d\x56\x29\x35\xdf\xc0\x76\x6f\x94\x60\x33\xc3\x99\xd4\x98\x05\x45\xbe\xe1\xd3\xf6\x48\x30\x5e\xe3\x60\xd1\xb4\xf3\x05\x92\x71\x66\xdd\x72\x90\x91\xa3\x95\x16\x9d\xc3\x2c\x36\x23\xe5\x82\xc1\x8f\x0d\x90\xfc\x36\x5e\xa9\x36\xbb\x59\xcb\xe7\xfe\x89\xd3\x6d\xd6\xe5\x4d\xbc\x27\xe3\xd0\xc2\xb8\xdd\x6d\x9f\x11\x95\x37\x77\x51\x4e\xbe\xf7\xbc\x64\x6c\x6f\x94\x19\xef\xe4\xbd\x49\x3a\x17\x67\x9b\x9d\xe6\xb9\xa9\x12\xfa\xfe\x4d\xa7\xf5\x4a\x38\xf8\x42\xcb\x7d\xa9\xdb\xe7\xc8\x1b\x23\xcd\xbb\x9a\x8f\xd7\x01\xf0\x19\xcc\xd6\x50\x69\xec\x1a\x51\xe2\xea\x39\xf7\xa7\xe9\xf9\xf3\x48\xd7\x66\x4c\x3a\x18\xc5\x0b\x67\x03\xa3\xf6\x3d\x9c\x50\xaa\x06\xaf\xf6\xed\x87\xf4\xad\x9b\xe2\xf5\xfb\x27\x8d\x20\x0d\x7a\x05\x16\x38\x2c\x04\xe8\x5e\x37\xdf\x46\xbe\xdc\x1a\x99\xa5\x76\xdc\xd9\x1a\xbf\x27\x4f\x1b\xfa\x5a\x1c\x5a\x4c\x2b\xeb\xe4\xa2\xdd\xf8\x13\x62\x46\x18\x70\x17\x07\x18\xdd\x46\xcf\x27\xfa\x8b\x5d\x14\xcc\xa6\xab\x38\xec\xce\x2a\xd5\xa2\xf9\x23\x1c\x1b\x6d\xac\xeb\x48\xd4\x92\xb0\xbe\x7f\x7f\xbc\x44\xb3\x2b\xc1\x17\xbe\x62\x85\x86\x52\x7b\x91\xa8\x85\x56\x83\x8e\x32\x73\xd8\x6c\x80\x1e\xb3\xc4\x3f\xf8\x37\xe1\x8e\x3f\xb5\xc8\x1b\xf3\x63\x4b\x3d\x34\xbc\x45\xf0\xcc\x2c\x9e\xaa\x85\x9d\x7f\x6d\x5e\xec\x1b\x3f\x12\x60\xf0\xb4\x41\x1c\x35\x37\x11\x25\x34\xdc\xb5\xd6\x8f\xe3\x49\x90\xc2\x2c\xf0\x8e\x73\xa2\xd6\x8a\x4f\x36\xb7\xee\x12\xe1\x86\xc1\x3a\xac\xb7\x9c\xeb\x64\x7c\x11\x57\x64\x5c\x48\xa4\xe3\x77\xa8\x5d\xb4\xb9\xda\x63\xa4\x33\xee\x8f\x43\x18\x47\x8b\x78\xfb\xe8\xe0\xb9\x8b\x99\x5e\x68\xa5\x75\x84\x7b\x61\x5c\xe8\x24\x15\xba\xad\xef\xd0\x70\x39\x08\xa7\x9d\x6e\x10\xe3\x28\x3d\x89\x97\x75\xeb\x8e\x2b\x62\xee\x83\x0d\x77\xa9\x9e\xb5\x85\x73\x2b\x3c\x06\x41\x3a\x3d\xd6\x34\xf4\x90\xb1\x9b\xfb\x93\x42\xf6\xa6\x56\x61\xe4\x47\xe9\x52\x63\x33\x1a\x37\x80\x09\x2a\xa2\x52\x24\xc6\xce\x79\x4d\x18\x2b\x91\xde\xd3\xcb\x9a\x6d\xf6\x87\x0f\x42\x43\x69\x38\x9b\x5c\x35\x2d\x0f\xad\x66\x15\x87\x76\x21\x53\x74\x30\x5d\x51\x46\xb8\x90\x59\x68\x7f\x49\x2b\xe7\x29\xd3\xc3\xa2\x54\xc2\x23\xe3\x50\x12\x75\x15\xef\xd3\x67\xc6\xce\x03\x78\xac\xef\x67\x6f\x6e\xe2\xe2\xf1\x7e\x95\xef\x67\x7d\x68\x70\x95\x45\x55\xc0\xab\x57\xaf\x5e\x71\x1e\x5f\x0f\xeb\xa6\xf1\x4f\xbb\xce\x45\x29\x87\x8b\xad\xf8\x30\x84\x80\x75\x23\xe3\x30\x66\xf8\x77\x94\x96\xde\x35\x13\xef\x52\x13\xf0\xe6\x92\x25\x42\xda\x3b\x53\xd2\x54\xa1\x40\x13\xe6\x7a\x03\x39\xbd\x20\x10\xbe\xbe\x3a\xed\x36\x81\xcc\x40\x84\x51\x31\x1f\x0f\x7a\x09\xad\x73\x7a\x3d\x25\x34\x68\x91\x92\x79\xf0\x01\xf4\xfb\xad\x5e\x32\x6e\x35\x0e\x0e\x4f\x21\xa0\xd5\x7c\xcc\xf8\xce\x1d\xce\xbe\xed\x11\x75\xf1\xc1\xed\x0c\x20\xb3\xd0\x67\x8e\x3a\x83\xb6\xec\xa4\xf5\x01\xdc\x8c\x6e\x43\x56\xae\xd4\x73\xb0\x4e\xaf\x49\xfb\x75\xa7\x2b\x9b\x6e\x68\x46\x21\x47\x09\xfd\x12\x07\x70\xb3\x35\x80\x77\x03\xd8\xe5\x62\xe2\xe0\xe0\xe0\x5f\x70\x98\x2d\x84\x4e\x31\x83\x8b\x5a\x5b\xd1\x55\x1e\xfd\x48\xe2\x3f\x0e\x0e\x0e\x9a\xaa\x47\xea\xda\x34\xd7\x76\xd8\x18\x8e\xa3\xf0\x36\x35\x9e\x75\x34\xa0\xb1\xb5\xe5\xd2\x8b\x34\x17\xfe\x4e\x06\x1d\xca\xf4\xbe\xd6\x63\x13\x26\x58\xa1\xec\x10\xa5\x70\x61\x2d\xc2\x8b\x9a\x76\xd2\x30\xf0\x78\x51\x52\x4e\x86\xce\x4b\x1d\x93\xa2\x5c\x68\x8d\xa4\xac\xfa\x63\xb3\x5f\xb5\xde\xb9\xa5\x95\x01\x27\x55\x55\x86\x09\x9c\x1b\x8d\xe4\x16\x51\xb1\xeb\xa6\xe9\x47\xea\x0c\xe3\x49\x9f\xfd\x78\x18\xd4\x1f\x40\x3f\x9c\xc2\xf6\x59\xb7\x17\xf5\xcf\x36\xb8\xa3\x85\xd4\x5a\x23\x4b\xcd\x71\x60\x78\xed\xe0\x1c\xd9\xd9\x41\x1b\x4f\xee\xb8\x62\x93\x12\x34\xa4\x9b\xa6\xb2\x35\xcd\x0c\x3d\xc6\xbe\xca\x5f\xb8\x45\x60\x7f\x8d\x36\x83\x7a\xb5\x01\xf8\xb8\x21\x03\x98\xd3\xdb\xd5\x00\xca\xca\xe5\x66\x81\x76\x00\x8e\xf4\xda\x5a\xbc\xd1\xda\x73\xc1\x59\xf2\xcf\x01\x42\xb5\x3b\x3e\x85\x14\x6d\xb4\x5b\x04\x13\xfc\x26\xf4\x10\x92\x34\x61\xec\x9d\x73\x9d\xc0\xf6\x2b\xa5\xa2\x94\xbf\x86\x36\xfa\xfc\xf9\x4a\x34\x76\x22\x5a\x74\xa5\xd1\x5c\x80\x3d\x57\x82\x9e\xc4\x9e\xb1\x47\x48\x06\xdc\x60\x2a\x74\xd0\xee\xd9\xc9\xd9\x11\xf8\x55\x89\x83\xa6\x6f\x91\x6d\x24\x14\xfd\x77\xf4\x86\x68\xb6\xf2\xcf\xe1\xbf\x9d\xd1\xfd\x3f\xa8\x8d\x38\xba\xb4\x7b\x59\x9e\x0f\x31\x75\x9c\x39\x7a\xc0\xb4\x62\x1f\x01\x97\x5a\x59\xf2\x21\x40\x1a\xa7\x7f\x7d\xd0\x39\xa4\x34\x4e\x78\x41\x8f\x1b\xff\x21\xb7\xc3\xd6\x0f\x8c\x16\xf5\x0f\x8c\x12\x98\xd8\x15\x0c\x2b\x67\x87\x53\xa9\x87\xa8\x17\x01\x80\x30\xfc\x90\xa6\x19\x17\x7e\x8e\xb0\x10\x52\x85\x9f\x1f\xfc\x85\x98\x90\x16\x59\x1d\x13\x9e\x8b\x05\xcd\x6b\xd6\x7c\x90\xbe\x9b\x7a\x07\xed\xb8\x61\x7c\x9b\xb8\xfc\xf5\x3f\x03\xef\x30\x93\xd6\x79\x0a\xbf\x59\x5d\xc0\xd4\x1c\xfd\x11\xde\x5f\x55\xda\x75\x07\x86\x44\x96\xb5\xe8\x72\xd8\x7c\xad\xe5\xc3\x1b\xde\xd9\x22\x4b\xf0\x01\x61\x33\xfe\xb6\x20\x04\x82\x1c\x55\x37\xb9\x5b\xc7\x8f\x48\xf1\xb5\xab\x7f\x14\xf5\xd7\x03\x87\xad\x74\xc3\xd0\xb7\x0f\x19\x7b\xeb\x90\xd1\x44\x8a\xb6\xd9\xff\x41\xb8\xf8\x3f\x80\xda\xbf\x82\x20\xed\xcd\x0a\xaa\x7a\x0e\x42\x58\xc2\x7f\x91\x24\x7c\xfe\x77\x58\x79\x53\xff\x46\x0e\xb3\x01\x6c\xed\xc1\x7f\x5e\x9f\xc2\xf6\x68\xfb\x1d\x8c\xde\xef\x7f\xb7\x03\xd7\x93\x0f\xbd\xff\x0d\x00\x00\xff\xff\xdb\x1f\x76\xa3\x9f\x38\x00\x00") func ExamplesUnpackerrConfExampleBytes() ([]byte, error) { return bindataRead( @@ -125,8 +125,8 @@ func ExamplesUnpackerrConfExample() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "../../examples/unpackerr.conf.example", size: 14443, mode: os.FileMode(0644), modTime: time.Unix(1587356420, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaa, 0x5, 0x7b, 0xe7, 0xc2, 0x70, 0x6, 0xdd, 0x7, 0x67, 0xf2, 0xc7, 0x5c, 0x4, 0x11, 0xd8, 0x27, 0x4f, 0x34, 0x33, 0x28, 0x85, 0x98, 0x45, 0xdc, 0xa8, 0x49, 0x4f, 0x34, 0xe1, 0xf2, 0x26}} + info := bindataFileInfo{name: "../../examples/unpackerr.conf.example", size: 14495, mode: os.FileMode(0644), modTime: time.Unix(1587356420, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x77, 0x9e, 0x14, 0x34, 0xda, 0xb5, 0x3b, 0xed, 0x3e, 0x63, 0x4c, 0x92, 0xc9, 0xd1, 0x21, 0xfd, 0x5a, 0x93, 0xde, 0x66, 0x2c, 0x21, 0xed, 0x83, 0x15, 0xf5, 0xd5, 0xdd, 0x42, 0xb5, 0xd1, 0x20}} return a, nil }