From 4350308313d10932d3a877887f648511a2e3d8c8 Mon Sep 17 00:00:00 2001 From: alimy Date: Wed, 25 Mar 2020 18:40:35 +0800 Subject: [PATCH] mir:optimize engine's generate logic and add entry's method --- README.md | 40 +-- engine/engine.go | 42 ++- engine/engine_test.go | 12 +- internal/generator/templates_gen.go | 14 +- internal/parser/fields.go | 1 + internal/parser/reflex.go | 5 +- mirc/cmd/templates/chi_go_mod.tmpl | 2 +- mirc/cmd/templates/chi_mirc_main.tmpl | 17 +- mirc/cmd/templates/chi_mirc_routes_site.tmpl | 7 +- .../templates/chi_mirc_routes_site_v1.tmpl | 7 +- .../templates/chi_mirc_routes_site_v2.tmpl | 8 +- mirc/cmd/templates/echo_go_mod.tmpl | 2 +- mirc/cmd/templates/echo_mirc_main.tmpl | 17 +- mirc/cmd/templates/echo_mirc_routes_site.tmpl | 7 +- .../templates/echo_mirc_routes_site_v1.tmpl | 7 +- .../templates/echo_mirc_routes_site_v2.tmpl | 8 +- mirc/cmd/templates/gin_go_mod.tmpl | 2 +- mirc/cmd/templates/gin_mirc_main.tmpl | 17 +- mirc/cmd/templates/gin_mirc_routes_site.tmpl | 7 +- .../templates/gin_mirc_routes_site_v1.tmpl | 7 +- .../templates/gin_mirc_routes_site_v2.tmpl | 7 +- mirc/cmd/templates/httprouter_go_mod.tmpl | 2 +- mirc/cmd/templates/httprouter_mirc_main.tmpl | 17 +- .../httprouter_mirc_routes_site.tmpl | 7 +- .../httprouter_mirc_routes_site_v1.tmpl | 7 +- .../httprouter_mirc_routes_site_v2.tmpl | 8 +- mirc/cmd/templates/iris_go_mod.tmpl | 2 +- mirc/cmd/templates/iris_mirc_main.tmpl | 17 +- mirc/cmd/templates/iris_mirc_routes_site.tmpl | 7 +- .../templates/iris_mirc_routes_site_v1.tmpl | 7 +- .../templates/iris_mirc_routes_site_v2.tmpl | 8 +- mirc/cmd/templates/macaron_go_mod.tmpl | 2 +- mirc/cmd/templates/macaron_mirc_main.tmpl | 17 +- .../templates/macaron_mirc_routes_site.tmpl | 7 +- .../macaron_mirc_routes_site_v1.tmpl | 7 +- .../macaron_mirc_routes_site_v2.tmpl | 8 +- mirc/cmd/templates/mux_go_mod.tmpl | 2 +- mirc/cmd/templates/mux_mirc_main.tmpl | 17 +- mirc/cmd/templates/mux_mirc_routes_site.tmpl | 7 +- .../templates/mux_mirc_routes_site_v1.tmpl | 7 +- .../templates/mux_mirc_routes_site_v2.tmpl | 8 +- mirc/cmd/templates_gen.go | 266 +++++++++--------- mirc/version/version.go | 2 +- 43 files changed, 375 insertions(+), 293 deletions(-) diff --git a/README.md b/README.md index d1e127f..0da1b07 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,7 @@ Mir is used for register handler to http router(eg: [Gin](https://github.com/gin ## Usage * Generate a simple template project + ``` % go get github.com/alimy/mir/mirc/v2@latest % mirc new -d mir-examples @@ -33,12 +34,20 @@ mir-examples ``` * Custom route info just use struct tag. eg: + ```go // file: mirc/routes/site.go package routes -import "github.com/alimy/mir/v2" +import ( + "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2/engine" +) + +func init() { + engine.AddEntry(new(Site)) +} // Site mir's struct tag define type Site struct { @@ -49,6 +58,7 @@ type Site struct { ``` * Invoke mir's generator to generate interface. eg: + ``` % cat mirc/main.go package main @@ -59,15 +69,14 @@ import ( "github.com/alimy/mir/v2/core" "github.com/alimy/mir/v2/engine" - routes "github.com/alimy/mir/v2/examples/mirc/routes" - v1 "github.com/alimy/mir/v2/examples/mirc/routes/v1" - v2 "github.com/alimy/mir/v2/examples/mirc/routes/v2" + _ "github.com/alimy/mir/v2/examples/mirc/routes" + _ "github.com/alimy/mir/v2/examples/mirc/routes/v1" + _ "github.com/alimy/mir/v2/examples/mirc/routes/v2" ) //go:generate go run main.go func main() { log.Println("generate code start") - entries := mirEntries() opts := &core.Options{ RunMode: core.InSerialMode, GeneratorName: core.GeneratorGin, @@ -75,22 +84,15 @@ func main() { core.OptSinkPath: "./gen", }, } - if err := engine.Generate(entries, opts); err != nil { + if err := engine.Generate(opts); err != nil { log.Fatal(err) } log.Println("generate code finish") } - -func mirEntries() []interface{} { - return []interface{}{ - new(routes.Site), - new(v1.Site), - new(v2.Site), - } -} ``` * Then generate interface from routes info defined above + ```go % make generate % cat mirc/gen/api/site.go @@ -124,6 +126,7 @@ func RegisterSiteServant(e *gin.Engine, s Site) { ``` * Register interface to router + ```go package main @@ -132,9 +135,9 @@ import ( "github.com/gin-gonic/gin" - "github.com/alimy/mir/v2/examples/mirc/gen/api" - "github.com/alimy/mir/v2/examples/mirc/gen/api/v1" - "github.com/alimy/mir/v2/examples/mirc/gen/api/v2" + api "github.com/alimy/mir/v2/examples/mirc/gen/api" + v1 "github.com/alimy/mir/v2/examples/mirc/gen/api/v1" + v2 "github.com/alimy/mir/v2/examples/mirc/gen/api/v2" "github.com/alimy/mir/v2/examples/servants" ) @@ -167,4 +170,5 @@ func registerServants(e *gin.Engine) { ```shell % make run ``` -**Please look at [examples](examples) project for more detail.Have an enjoy in your heart.** + +**Please look at [examples](examples) project for more details.Have an enjoy in your heart.** diff --git a/engine/engine.go b/engine/engine.go index 8b5b00b..fdcbc71 100644 --- a/engine/engine.go +++ b/engine/engine.go @@ -8,19 +8,45 @@ import ( "errors" "fmt" "runtime" + "sync" "github.com/alimy/mir/v2/core" "github.com/alimy/mir/v2/internal" ) -// Generate generate interface code -func Generate(entries []interface{}, opts *core.Options) (err error) { +var ( + mu = &sync.Mutex{} + mirEntries = make([]interface{}, 0, 8) +) + +// AddEntry add mir's entry +func AddEntry(entry interface{}) { + mu.Lock() + defer mu.Unlock() + + mirEntries = append(mirEntries, entry) +} + +// AddEntries add mir's entry list +func AddEntries(entries ...interface{}) { + mu.Lock() + defer mu.Unlock() + + addEntries(entries...) +} + +// Generate generate interface code from mir's iface entry +func Generate(opts *core.Options, entries ...interface{}) (err error) { + mu.Lock() + defer mu.Unlock() + if opts == nil { return errors.New("options is nil") } - if len(entries) == 0 { - return errors.New("entries is empty") + addEntries(entries...) + if len(mirEntries) == 0 { + return errors.New("mir entries is empty maybe need add entries first") } p := core.ParserByName(opts.ParserName) @@ -46,17 +72,21 @@ func Generate(entries []interface{}, opts *core.Options) (err error) { core.Logus("run in %s", opts.RunMode) fallthrough case core.InSerialMode: - err = doInSerial(p, g, entries) + err = doInSerial(p, g, mirEntries) case core.InConcurrentDebugMode: core.InDebug = true core.Logus("run in %s", opts.RunMode) fallthrough case core.InConcurrentMode: - err = doInConcurrent(p, g, entries) + err = doInConcurrent(p, g, mirEntries) } return err } +func addEntries(entries ...interface{}) { + mirEntries = append(mirEntries, entries...) +} + func doInSerial(p core.Parser, g core.Generator, entries []interface{}) error { descriptors, err := p.Parse(entries) if err == nil { diff --git a/engine/engine_test.go b/engine/engine_test.go index ff90eea..0c7abd1 100644 --- a/engine/engine_test.go +++ b/engine/engine_test.go @@ -7,10 +7,18 @@ import ( ) func TestGenerate(t *testing.T) { - if err := Generate(nil, nil); err == nil { + if err := Generate(nil); err == nil { t.Error("want an error but not") } - if err := Generate(nil, core.DefaultOptions()); err == nil { + if err := Generate(core.DefaultOptions()); err == nil { t.Error("want an error but not") } + if err := Generate(core.DefaultOptions(), nil); err != nil { + t.Error("don't want an error but not") + } + AddEntry(nil) + AddEntries(nil, nil) + if len(mirEntries) != 4 { + t.Errorf("want mirEntries's size is 4 but is %d", len(mirEntries)) + } } diff --git a/internal/generator/templates_gen.go b/internal/generator/templates_gen.go index 4aab9b5..d580f73 100644 --- a/internal/generator/templates_gen.go +++ b/internal/generator/templates_gen.go @@ -91,7 +91,7 @@ func chi_ifaceTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "chi_iface.tmpl", size: 1521, mode: os.FileMode(0664), modTime: time.Unix(1584082042, 0)} + info := bindataFileInfo{name: "chi_iface.tmpl", size: 1521, mode: os.FileMode(0644), modTime: time.Unix(1583635453, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6c, 0x6, 0x66, 0xa7, 0xe9, 0x9d, 0xe, 0x9e, 0xb4, 0xe, 0x6, 0x95, 0x91, 0x0, 0xe0, 0xca, 0x3f, 0x77, 0xb9, 0x7b, 0x68, 0xf2, 0x78, 0xa2, 0xd7, 0xd0, 0xe6, 0x16, 0x8e, 0x8, 0xf6, 0xc7}} return a, nil } @@ -111,7 +111,7 @@ func echo_ifaceTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "echo_iface.tmpl", size: 1032, mode: os.FileMode(0644), modTime: time.Unix(1584106466, 0)} + info := bindataFileInfo{name: "echo_iface.tmpl", size: 1032, mode: os.FileMode(0644), modTime: time.Unix(1584548272, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x37, 0x4a, 0x24, 0x80, 0x2, 0x1, 0x7a, 0xe7, 0xc7, 0x69, 0xfe, 0xfe, 0x94, 0xe9, 0xc8, 0x41, 0x3, 0xe2, 0x10, 0x67, 0x2, 0x85, 0x15, 0x9d, 0x7d, 0x29, 0xd9, 0x20, 0x63, 0x29, 0x93, 0x80}} return a, nil } @@ -131,7 +131,7 @@ func gin_ifaceTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "gin_iface.tmpl", size: 1040, mode: os.FileMode(0664), modTime: time.Unix(1584082042, 0)} + info := bindataFileInfo{name: "gin_iface.tmpl", size: 1040, mode: os.FileMode(0644), modTime: time.Unix(1583635453, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfe, 0x89, 0x2a, 0xf1, 0x17, 0x71, 0xe9, 0xe0, 0x19, 0xf6, 0x3, 0x38, 0xb3, 0xb2, 0xb1, 0xf7, 0x1a, 0x7c, 0x40, 0x27, 0xfc, 0x42, 0x80, 0xf6, 0x4b, 0xbd, 0x4e, 0x7c, 0xe0, 0x35, 0x59, 0xa7}} return a, nil } @@ -151,7 +151,7 @@ func httprouter_ifaceTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "httprouter_iface.tmpl", size: 1486, mode: os.FileMode(0664), modTime: time.Unix(1584082042, 0)} + info := bindataFileInfo{name: "httprouter_iface.tmpl", size: 1486, mode: os.FileMode(0644), modTime: time.Unix(1583565237, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x40, 0x4e, 0xdc, 0x83, 0x3b, 0xe7, 0x4c, 0x9a, 0x7, 0x4d, 0xc3, 0x91, 0x9b, 0x6e, 0x77, 0xfa, 0x30, 0xfa, 0xeb, 0x42, 0xe3, 0x19, 0x8a, 0x7d, 0x9c, 0xbe, 0x61, 0xae, 0xbe, 0x5a, 0xa8, 0x7c}} return a, nil } @@ -171,7 +171,7 @@ func iris_ifaceTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "iris_iface.tmpl", size: 1077, mode: os.FileMode(0644), modTime: time.Unix(1584107777, 0)} + info := bindataFileInfo{name: "iris_iface.tmpl", size: 1077, mode: os.FileMode(0644), modTime: time.Unix(1584548272, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x57, 0x3f, 0x30, 0x7c, 0xaf, 0x52, 0x34, 0xd5, 0x2f, 0x48, 0xa5, 0xb9, 0x1, 0x59, 0x45, 0xd0, 0x82, 0x42, 0x2f, 0x9e, 0x50, 0xfd, 0xa0, 0x60, 0x59, 0x4e, 0xe, 0xc6, 0x4e, 0x9d, 0x73, 0x87}} return a, nil } @@ -191,7 +191,7 @@ func macaron_ifaceTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "macaron_iface.tmpl", size: 1641, mode: os.FileMode(0664), modTime: time.Unix(1584092222, 0)} + info := bindataFileInfo{name: "macaron_iface.tmpl", size: 1641, mode: os.FileMode(0644), modTime: time.Unix(1584548272, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x32, 0xf, 0xc5, 0x78, 0xf3, 0xbd, 0xd0, 0x47, 0x53, 0x9b, 0xc3, 0xee, 0x65, 0x41, 0xb7, 0x4a, 0x87, 0xe0, 0x72, 0x1d, 0xb9, 0x64, 0x9c, 0x93, 0x81, 0x3, 0x2f, 0x22, 0x2, 0xb1, 0x78, 0xc1}} return a, nil } @@ -211,7 +211,7 @@ func mux_ifaceTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "mux_iface.tmpl", size: 1557, mode: os.FileMode(0664), modTime: time.Unix(1584082042, 0)} + info := bindataFileInfo{name: "mux_iface.tmpl", size: 1557, mode: os.FileMode(0644), modTime: time.Unix(1583635453, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1, 0x36, 0x24, 0x3e, 0x4a, 0x8e, 0x7c, 0xe6, 0x8a, 0xa2, 0x6c, 0x68, 0x99, 0x34, 0xec, 0xd4, 0xee, 0x11, 0x7a, 0xa0, 0xe6, 0xb6, 0x71, 0xb2, 0x65, 0x8f, 0x63, 0x7c, 0xab, 0x10, 0xa5, 0x4a}} return a, nil } diff --git a/internal/parser/fields.go b/internal/parser/fields.go index 98a4106..82f99cc 100644 --- a/internal/parser/fields.go +++ b/internal/parser/fields.go @@ -15,6 +15,7 @@ import ( var ( // error list + errNilType tagError = "nil type is not valide" errNotExist tagError = "mir struct tag filed not exist" errNoPathInfo tagError = "mir struct tag not contains path info" errNotValideType tagError = "not valide type, just struct and struct ptr is avalibale" diff --git a/internal/parser/reflex.go b/internal/parser/reflex.go index 59653fa..2f65ef1 100644 --- a/internal/parser/reflex.go +++ b/internal/parser/reflex.go @@ -39,9 +39,12 @@ func (r *reflex) parse(entries []interface{}) (core.Descriptors, error) { func (r *reflex) ifaceFrom(entry interface{}) (*core.IfaceDescriptor, error) { // used to find tagInfo entryType := reflect.TypeOf(entry) - isPtr := false + if entryType == nil { + return nil, errNilType + } // get real entry type + isPtr := false if entryType.Kind() == reflect.Ptr { isPtr = true entryType = entryType.Elem() diff --git a/mirc/cmd/templates/chi_go_mod.tmpl b/mirc/cmd/templates/chi_go_mod.tmpl index d2ee39c..762d8da 100644 --- a/mirc/cmd/templates/chi_go_mod.tmpl +++ b/mirc/cmd/templates/chi_go_mod.tmpl @@ -3,6 +3,6 @@ module {{ .PkgName }} go 1.12 require ( - github.com/alimy/mir/v2 v2.1.0 + github.com/alimy/mir/v2 v2.2.0 github.com/go-chi/chi v4.0.3+incompatible ) diff --git a/mirc/cmd/templates/chi_mirc_main.tmpl b/mirc/cmd/templates/chi_mirc_main.tmpl index 2d8800a..31a95b8 100644 --- a/mirc/cmd/templates/chi_mirc_main.tmpl +++ b/mirc/cmd/templates/chi_mirc_main.tmpl @@ -6,15 +6,14 @@ import ( "github.com/alimy/mir/v2/core" "github.com/alimy/mir/v2/engine" - routes "{{ .PkgName }}/mirc/routes" - v1 "{{ .PkgName }}/mirc/routes/v1" - v2 "{{ .PkgName }}/mirc/routes/v2" + _ "{{ .PkgName }}/mirc/routes" + _ "{{ .PkgName }}/mirc/routes/v1" + _ "{{ .PkgName }}/mirc/routes/v2" ) //go:generate go run main.go func main() { log.Println("generate code start") - entries := mirEntries() opts := &core.Options{ RunMode: core.InSerialMode, GeneratorName: core.GeneratorChi, @@ -22,16 +21,8 @@ func main() { core.OptSinkPath: "./gen", }, } - if err := engine.Generate(entries, opts); err != nil { + if err := engine.Generate(opts); err != nil { log.Fatal(err) } log.Println("generate code finish") } - -func mirEntries() []interface{} { - return []interface{}{ - new(routes.Site), - new(v1.Site), - new(v2.Site), - } -} diff --git a/mirc/cmd/templates/chi_mirc_routes_site.tmpl b/mirc/cmd/templates/chi_mirc_routes_site.tmpl index e5835eb..ee60f6b 100644 --- a/mirc/cmd/templates/chi_mirc_routes_site.tmpl +++ b/mirc/cmd/templates/chi_mirc_routes_site.tmpl @@ -1,9 +1,14 @@ package routes import ( - mir "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2/engine" ) +func init() { + engine.AddEntry(new(Site)) +} + // Site site interface info type Site struct { Chain mir.Chain `mir:"-"` diff --git a/mirc/cmd/templates/chi_mirc_routes_site_v1.tmpl b/mirc/cmd/templates/chi_mirc_routes_site_v1.tmpl index fc32f1a..b291333 100644 --- a/mirc/cmd/templates/chi_mirc_routes_site_v1.tmpl +++ b/mirc/cmd/templates/chi_mirc_routes_site_v1.tmpl @@ -1,9 +1,14 @@ package v1 import ( - mir "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2/engine" ) +func init() { + engine.AddEntry(new(Site)) +} + // Site site v1 interface info type Site struct { Chain mir.Chain `mir:"-"` diff --git a/mirc/cmd/templates/chi_mirc_routes_site_v2.tmpl b/mirc/cmd/templates/chi_mirc_routes_site_v2.tmpl index 27cc808..5859579 100644 --- a/mirc/cmd/templates/chi_mirc_routes_site_v2.tmpl +++ b/mirc/cmd/templates/chi_mirc_routes_site_v2.tmpl @@ -1,9 +1,14 @@ package v2 import ( - mir "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2/engine" ) +func init() { + engine.AddEntry(new(Site)) +} + // Site site v2 interface info type Site struct { Group mir.Group `mir:"v2"` @@ -11,4 +16,3 @@ type Site struct { Articles mir.Get `mir:"/articles/{category}/{id:[0-9]+}"` Category mir.Get `mir:"/category/"` } - diff --git a/mirc/cmd/templates/echo_go_mod.tmpl b/mirc/cmd/templates/echo_go_mod.tmpl index eb5e2e5..49c6d30 100644 --- a/mirc/cmd/templates/echo_go_mod.tmpl +++ b/mirc/cmd/templates/echo_go_mod.tmpl @@ -3,6 +3,6 @@ module {{ .PkgName }} go 1.12 require ( - github.com/alimy/mir/v2 v2.1.0 + github.com/alimy/mir/v2 v2.2.0 github.com/labstack/echo/v4 v4.1.15 ) diff --git a/mirc/cmd/templates/echo_mirc_main.tmpl b/mirc/cmd/templates/echo_mirc_main.tmpl index dadca62..4338a14 100644 --- a/mirc/cmd/templates/echo_mirc_main.tmpl +++ b/mirc/cmd/templates/echo_mirc_main.tmpl @@ -6,15 +6,14 @@ import ( "github.com/alimy/mir/v2/core" "github.com/alimy/mir/v2/engine" - routes "{{ .PkgName }}/mirc/routes" - v1 "{{ .PkgName }}/mirc/routes/v1" - v2 "{{ .PkgName }}/mirc/routes/v2" + _ "{{ .PkgName }}/mirc/routes" + _ "{{ .PkgName }}/mirc/routes/v1" + _ "{{ .PkgName }}/mirc/routes/v2" ) //go:generate go run main.go func main() { log.Println("generate code start") - entries := mirEntries() opts := &core.Options{ RunMode: core.InSerialMode, GeneratorName: core.GeneratorEcho, @@ -22,16 +21,8 @@ func main() { core.OptSinkPath: "./gen", }, } - if err := engine.Generate(entries, opts); err != nil { + if err := engine.Generate(opts); err != nil { log.Fatal(err) } log.Println("generate code finish") } - -func mirEntries() []interface{} { - return []interface{}{ - new(routes.Site), - new(v1.Site), - new(v2.Site), - } -} diff --git a/mirc/cmd/templates/echo_mirc_routes_site.tmpl b/mirc/cmd/templates/echo_mirc_routes_site.tmpl index 9b6c5d4..2b1ccf0 100644 --- a/mirc/cmd/templates/echo_mirc_routes_site.tmpl +++ b/mirc/cmd/templates/echo_mirc_routes_site.tmpl @@ -1,9 +1,14 @@ package routes import ( - mir "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2/engine" ) +func init() { + engine.AddEntry(new(Site)) +} + // Site site interface info type Site struct { Chain mir.Chain `mir:"-"` diff --git a/mirc/cmd/templates/echo_mirc_routes_site_v1.tmpl b/mirc/cmd/templates/echo_mirc_routes_site_v1.tmpl index 373ec5e..a533c38 100644 --- a/mirc/cmd/templates/echo_mirc_routes_site_v1.tmpl +++ b/mirc/cmd/templates/echo_mirc_routes_site_v1.tmpl @@ -1,9 +1,14 @@ package v1 import ( - mir "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2/engine" ) +func init() { + engine.AddEntry(new(Site)) +} + // Site site v1 interface info type Site struct { Chain mir.Chain `mir:"-"` diff --git a/mirc/cmd/templates/echo_mirc_routes_site_v2.tmpl b/mirc/cmd/templates/echo_mirc_routes_site_v2.tmpl index d21fd5c..a183c0d 100644 --- a/mirc/cmd/templates/echo_mirc_routes_site_v2.tmpl +++ b/mirc/cmd/templates/echo_mirc_routes_site_v2.tmpl @@ -1,9 +1,14 @@ package v2 import ( - mir "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2/engine" ) +func init() { + engine.AddEntry(new(Site)) +} + // Site site v2 interface info type Site struct { Group mir.Group `mir:"v2"` @@ -11,4 +16,3 @@ type Site struct { Articles mir.Get `mir:"/articles/:category/"` Category mir.Get `mir:"/category/"` } - diff --git a/mirc/cmd/templates/gin_go_mod.tmpl b/mirc/cmd/templates/gin_go_mod.tmpl index bffb5d9..01053df 100644 --- a/mirc/cmd/templates/gin_go_mod.tmpl +++ b/mirc/cmd/templates/gin_go_mod.tmpl @@ -3,6 +3,6 @@ module {{ .PkgName }} go 1.12 require ( - github.com/alimy/mir/v2 v2.1.0 + github.com/alimy/mir/v2 v2.2.0 github.com/gin-gonic/gin v1.5.0 ) diff --git a/mirc/cmd/templates/gin_mirc_main.tmpl b/mirc/cmd/templates/gin_mirc_main.tmpl index 5c03e38..0ba515d 100644 --- a/mirc/cmd/templates/gin_mirc_main.tmpl +++ b/mirc/cmd/templates/gin_mirc_main.tmpl @@ -6,15 +6,14 @@ import ( "github.com/alimy/mir/v2/core" "github.com/alimy/mir/v2/engine" - routes "{{ .PkgName }}/mirc/routes" - v1 "{{ .PkgName }}/mirc/routes/v1" - v2 "{{ .PkgName }}/mirc/routes/v2" + _ "{{ .PkgName }}/mirc/routes" + _ "{{ .PkgName }}/mirc/routes/v1" + _ "{{ .PkgName }}/mirc/routes/v2" ) //go:generate go run main.go func main() { log.Println("generate code start") - entries := mirEntries() opts := &core.Options{ RunMode: core.InSerialMode, GeneratorName: core.GeneratorGin, @@ -22,16 +21,8 @@ func main() { core.OptSinkPath: "./gen", }, } - if err := engine.Generate(entries, opts); err != nil { + if err := engine.Generate(opts); err != nil { log.Fatal(err) } log.Println("generate code finish") } - -func mirEntries() []interface{} { - return []interface{}{ - new(routes.Site), - new(v1.Site), - new(v2.Site), - } -} diff --git a/mirc/cmd/templates/gin_mirc_routes_site.tmpl b/mirc/cmd/templates/gin_mirc_routes_site.tmpl index 9b6c5d4..2b1ccf0 100644 --- a/mirc/cmd/templates/gin_mirc_routes_site.tmpl +++ b/mirc/cmd/templates/gin_mirc_routes_site.tmpl @@ -1,9 +1,14 @@ package routes import ( - mir "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2/engine" ) +func init() { + engine.AddEntry(new(Site)) +} + // Site site interface info type Site struct { Chain mir.Chain `mir:"-"` diff --git a/mirc/cmd/templates/gin_mirc_routes_site_v1.tmpl b/mirc/cmd/templates/gin_mirc_routes_site_v1.tmpl index 373ec5e..a533c38 100644 --- a/mirc/cmd/templates/gin_mirc_routes_site_v1.tmpl +++ b/mirc/cmd/templates/gin_mirc_routes_site_v1.tmpl @@ -1,9 +1,14 @@ package v1 import ( - mir "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2/engine" ) +func init() { + engine.AddEntry(new(Site)) +} + // Site site v1 interface info type Site struct { Chain mir.Chain `mir:"-"` diff --git a/mirc/cmd/templates/gin_mirc_routes_site_v2.tmpl b/mirc/cmd/templates/gin_mirc_routes_site_v2.tmpl index d21fd5c..821ba90 100644 --- a/mirc/cmd/templates/gin_mirc_routes_site_v2.tmpl +++ b/mirc/cmd/templates/gin_mirc_routes_site_v2.tmpl @@ -1,9 +1,14 @@ package v2 import ( - mir "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2/engine" ) +func init() { + engine.AddEntry(new(Site)) +} + // Site site v2 interface info type Site struct { Group mir.Group `mir:"v2"` diff --git a/mirc/cmd/templates/httprouter_go_mod.tmpl b/mirc/cmd/templates/httprouter_go_mod.tmpl index 605c141..db98641 100644 --- a/mirc/cmd/templates/httprouter_go_mod.tmpl +++ b/mirc/cmd/templates/httprouter_go_mod.tmpl @@ -3,6 +3,6 @@ module {{ .PkgName }} go 1.12 require ( - github.com/alimy/mir/v2 v2.1.0 + github.com/alimy/mir/v2 v2.2.0 github.com/julienschmidt/httprouter v1.3.0 ) diff --git a/mirc/cmd/templates/httprouter_mirc_main.tmpl b/mirc/cmd/templates/httprouter_mirc_main.tmpl index c2fd825..eb979cf 100644 --- a/mirc/cmd/templates/httprouter_mirc_main.tmpl +++ b/mirc/cmd/templates/httprouter_mirc_main.tmpl @@ -6,15 +6,14 @@ import ( "github.com/alimy/mir/v2/core" "github.com/alimy/mir/v2/engine" - routes "{{ .PkgName }}/mirc/routes" - v1 "{{ .PkgName }}/mirc/routes/v1" - v2 "{{ .PkgName }}/mirc/routes/v2" + _ "{{ .PkgName }}/mirc/routes" + _ "{{ .PkgName }}/mirc/routes/v1" + _ "{{ .PkgName }}/mirc/routes/v2" ) //go:generate go run main.go func main() { log.Println("generate code start") - entries := mirEntries() opts := &core.Options{ RunMode: core.InSerialMode, GeneratorName: core.GeneratorHttpRouter, @@ -22,16 +21,8 @@ func main() { core.OptSinkPath: "./gen", }, } - if err := engine.Generate(entries, opts); err != nil { + if err := engine.Generate(opts); err != nil { log.Fatal(err) } log.Println("generate code finish") } - -func mirEntries() []interface{} { - return []interface{}{ - new(routes.Site), - new(v1.Site), - new(v2.Site), - } -} diff --git a/mirc/cmd/templates/httprouter_mirc_routes_site.tmpl b/mirc/cmd/templates/httprouter_mirc_routes_site.tmpl index 9b6c5d4..2b1ccf0 100644 --- a/mirc/cmd/templates/httprouter_mirc_routes_site.tmpl +++ b/mirc/cmd/templates/httprouter_mirc_routes_site.tmpl @@ -1,9 +1,14 @@ package routes import ( - mir "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2/engine" ) +func init() { + engine.AddEntry(new(Site)) +} + // Site site interface info type Site struct { Chain mir.Chain `mir:"-"` diff --git a/mirc/cmd/templates/httprouter_mirc_routes_site_v1.tmpl b/mirc/cmd/templates/httprouter_mirc_routes_site_v1.tmpl index 373ec5e..a533c38 100644 --- a/mirc/cmd/templates/httprouter_mirc_routes_site_v1.tmpl +++ b/mirc/cmd/templates/httprouter_mirc_routes_site_v1.tmpl @@ -1,9 +1,14 @@ package v1 import ( - mir "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2/engine" ) +func init() { + engine.AddEntry(new(Site)) +} + // Site site v1 interface info type Site struct { Chain mir.Chain `mir:"-"` diff --git a/mirc/cmd/templates/httprouter_mirc_routes_site_v2.tmpl b/mirc/cmd/templates/httprouter_mirc_routes_site_v2.tmpl index d21fd5c..a183c0d 100644 --- a/mirc/cmd/templates/httprouter_mirc_routes_site_v2.tmpl +++ b/mirc/cmd/templates/httprouter_mirc_routes_site_v2.tmpl @@ -1,9 +1,14 @@ package v2 import ( - mir "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2/engine" ) +func init() { + engine.AddEntry(new(Site)) +} + // Site site v2 interface info type Site struct { Group mir.Group `mir:"v2"` @@ -11,4 +16,3 @@ type Site struct { Articles mir.Get `mir:"/articles/:category/"` Category mir.Get `mir:"/category/"` } - diff --git a/mirc/cmd/templates/iris_go_mod.tmpl b/mirc/cmd/templates/iris_go_mod.tmpl index 717ee34..f7d5b12 100644 --- a/mirc/cmd/templates/iris_go_mod.tmpl +++ b/mirc/cmd/templates/iris_go_mod.tmpl @@ -3,6 +3,6 @@ module {{ .PkgName }} go 1.12 require ( - github.com/alimy/mir/v2 v2.1.0 + github.com/alimy/mir/v2 v2.2.0 github.com/kataras/iris/v12 v12.1.8 ) diff --git a/mirc/cmd/templates/iris_mirc_main.tmpl b/mirc/cmd/templates/iris_mirc_main.tmpl index 3484276..a85210f 100644 --- a/mirc/cmd/templates/iris_mirc_main.tmpl +++ b/mirc/cmd/templates/iris_mirc_main.tmpl @@ -6,15 +6,14 @@ import ( "github.com/alimy/mir/v2/core" "github.com/alimy/mir/v2/engine" - routes "{{ .PkgName }}/mirc/routes" - v1 "{{ .PkgName }}/mirc/routes/v1" - v2 "{{ .PkgName }}/mirc/routes/v2" + _ "{{ .PkgName }}/mirc/routes" + _ "{{ .PkgName }}/mirc/routes/v1" + _ "{{ .PkgName }}/mirc/routes/v2" ) //go:generate go run main.go func main() { log.Println("generate code start") - entries := mirEntries() opts := &core.Options{ RunMode: core.InSerialMode, GeneratorName: core.GeneratorIris, @@ -22,16 +21,8 @@ func main() { core.OptSinkPath: "./gen", }, } - if err := engine.Generate(entries, opts); err != nil { + if err := engine.Generate(opts); err != nil { log.Fatal(err) } log.Println("generate code finish") } - -func mirEntries() []interface{} { - return []interface{}{ - new(routes.Site), - new(v1.Site), - new(v2.Site), - } -} diff --git a/mirc/cmd/templates/iris_mirc_routes_site.tmpl b/mirc/cmd/templates/iris_mirc_routes_site.tmpl index 56b07be..5f988ca 100644 --- a/mirc/cmd/templates/iris_mirc_routes_site.tmpl +++ b/mirc/cmd/templates/iris_mirc_routes_site.tmpl @@ -1,9 +1,14 @@ package routes import ( - mir "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2/engine" ) +func init() { + engine.AddEntry(new(Site)) +} + // Site site interface info type Site struct { Chain mir.Chain `mir:"-"` diff --git a/mirc/cmd/templates/iris_mirc_routes_site_v1.tmpl b/mirc/cmd/templates/iris_mirc_routes_site_v1.tmpl index 97f5500..97ec6ad 100644 --- a/mirc/cmd/templates/iris_mirc_routes_site_v1.tmpl +++ b/mirc/cmd/templates/iris_mirc_routes_site_v1.tmpl @@ -1,9 +1,14 @@ package v1 import ( - mir "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2/engine" ) +func init() { + engine.AddEntry(new(Site)) +} + // Site site v1 interface info type Site struct { Chain mir.Chain `mir:"-"` diff --git a/mirc/cmd/templates/iris_mirc_routes_site_v2.tmpl b/mirc/cmd/templates/iris_mirc_routes_site_v2.tmpl index 596b9c5..3ee54d4 100644 --- a/mirc/cmd/templates/iris_mirc_routes_site_v2.tmpl +++ b/mirc/cmd/templates/iris_mirc_routes_site_v2.tmpl @@ -1,9 +1,14 @@ package v2 import ( - mir "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2/engine" ) +func init() { + engine.AddEntry(new(Site)) +} + // Site site v2 interface info type Site struct { Group mir.Group `mir:"v2"` @@ -11,4 +16,3 @@ type Site struct { Articles mir.Get `mir:"/articles/{category:string}"` Category mir.Get `mir:"/category/"` } - diff --git a/mirc/cmd/templates/macaron_go_mod.tmpl b/mirc/cmd/templates/macaron_go_mod.tmpl index aced619..e634069 100644 --- a/mirc/cmd/templates/macaron_go_mod.tmpl +++ b/mirc/cmd/templates/macaron_go_mod.tmpl @@ -3,6 +3,6 @@ module {{ .PkgName }} go 1.12 require ( - github.com/alimy/mir/v2 v2.1.0 + github.com/alimy/mir/v2 v2.2.0 gopkg.in/macaron.v1 v1.3.5 ) diff --git a/mirc/cmd/templates/macaron_mirc_main.tmpl b/mirc/cmd/templates/macaron_mirc_main.tmpl index 591e3a8..169fae0 100644 --- a/mirc/cmd/templates/macaron_mirc_main.tmpl +++ b/mirc/cmd/templates/macaron_mirc_main.tmpl @@ -6,15 +6,14 @@ import ( "github.com/alimy/mir/v2/core" "github.com/alimy/mir/v2/engine" - routes "{{ .PkgName }}/mirc/routes" - v1 "{{ .PkgName }}/mirc/routes/v1" - v2 "{{ .PkgName }}/mirc/routes/v2" + _ "{{ .PkgName }}/mirc/routes" + _ "{{ .PkgName }}/mirc/routes/v1" + _ "{{ .PkgName }}/mirc/routes/v2" ) //go:generate go run main.go func main() { log.Println("generate code start") - entries := mirEntries() opts := &core.Options{ RunMode: core.InSerialMode, GeneratorName: core.GeneratorMacaron, @@ -22,16 +21,8 @@ func main() { core.OptSinkPath: "./gen", }, } - if err := engine.Generate(entries, opts); err != nil { + if err := engine.Generate(opts); err != nil { log.Fatal(err) } log.Println("generate code finish") } - -func mirEntries() []interface{} { - return []interface{}{ - new(routes.Site), - new(v1.Site), - new(v2.Site), - } -} diff --git a/mirc/cmd/templates/macaron_mirc_routes_site.tmpl b/mirc/cmd/templates/macaron_mirc_routes_site.tmpl index 9b6c5d4..2b1ccf0 100644 --- a/mirc/cmd/templates/macaron_mirc_routes_site.tmpl +++ b/mirc/cmd/templates/macaron_mirc_routes_site.tmpl @@ -1,9 +1,14 @@ package routes import ( - mir "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2/engine" ) +func init() { + engine.AddEntry(new(Site)) +} + // Site site interface info type Site struct { Chain mir.Chain `mir:"-"` diff --git a/mirc/cmd/templates/macaron_mirc_routes_site_v1.tmpl b/mirc/cmd/templates/macaron_mirc_routes_site_v1.tmpl index 373ec5e..a533c38 100644 --- a/mirc/cmd/templates/macaron_mirc_routes_site_v1.tmpl +++ b/mirc/cmd/templates/macaron_mirc_routes_site_v1.tmpl @@ -1,9 +1,14 @@ package v1 import ( - mir "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2/engine" ) +func init() { + engine.AddEntry(new(Site)) +} + // Site site v1 interface info type Site struct { Chain mir.Chain `mir:"-"` diff --git a/mirc/cmd/templates/macaron_mirc_routes_site_v2.tmpl b/mirc/cmd/templates/macaron_mirc_routes_site_v2.tmpl index d21fd5c..a183c0d 100644 --- a/mirc/cmd/templates/macaron_mirc_routes_site_v2.tmpl +++ b/mirc/cmd/templates/macaron_mirc_routes_site_v2.tmpl @@ -1,9 +1,14 @@ package v2 import ( - mir "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2/engine" ) +func init() { + engine.AddEntry(new(Site)) +} + // Site site v2 interface info type Site struct { Group mir.Group `mir:"v2"` @@ -11,4 +16,3 @@ type Site struct { Articles mir.Get `mir:"/articles/:category/"` Category mir.Get `mir:"/category/"` } - diff --git a/mirc/cmd/templates/mux_go_mod.tmpl b/mirc/cmd/templates/mux_go_mod.tmpl index 4e24dcb..d106e2f 100644 --- a/mirc/cmd/templates/mux_go_mod.tmpl +++ b/mirc/cmd/templates/mux_go_mod.tmpl @@ -3,6 +3,6 @@ module {{ .PkgName }} go 1.12 require ( - github.com/alimy/mir/v2 v2.1.0 + github.com/alimy/mir/v2 v2.2.0 github.com/gorilla/mux v1.7.4 ) diff --git a/mirc/cmd/templates/mux_mirc_main.tmpl b/mirc/cmd/templates/mux_mirc_main.tmpl index 45b8af3..72ccf9d 100644 --- a/mirc/cmd/templates/mux_mirc_main.tmpl +++ b/mirc/cmd/templates/mux_mirc_main.tmpl @@ -6,15 +6,14 @@ import ( "github.com/alimy/mir/v2/core" "github.com/alimy/mir/v2/engine" - routes "{{ .PkgName }}/mirc/routes" - v1 "{{ .PkgName }}/mirc/routes/v1" - v2 "{{ .PkgName }}/mirc/routes/v2" + _ "{{ .PkgName }}/mirc/routes" + _ "{{ .PkgName }}/mirc/routes/v1" + _ "{{ .PkgName }}/mirc/routes/v2" ) //go:generate go run main.go func main() { log.Println("generate code start") - entries := mirEntries() opts := &core.Options{ RunMode: core.InSerialMode, GeneratorName: core.GeneratorMux, @@ -22,16 +21,8 @@ func main() { core.OptSinkPath: "./gen", }, } - if err := engine.Generate(entries, opts); err != nil { + if err := engine.Generate(opts); err != nil { log.Fatal(err) } log.Println("generate code finish") } - -func mirEntries() []interface{} { - return []interface{}{ - new(routes.Site), - new(v1.Site), - new(v2.Site), - } -} diff --git a/mirc/cmd/templates/mux_mirc_routes_site.tmpl b/mirc/cmd/templates/mux_mirc_routes_site.tmpl index 8cfbc30..eacd9f9 100644 --- a/mirc/cmd/templates/mux_mirc_routes_site.tmpl +++ b/mirc/cmd/templates/mux_mirc_routes_site.tmpl @@ -1,9 +1,14 @@ package routes import ( - mir "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2/engine" ) +func init() { + engine.AddEntry(new(Site)) +} + // Site site interface info type Site struct { Chain mir.Chain `mir:"-"` diff --git a/mirc/cmd/templates/mux_mirc_routes_site_v1.tmpl b/mirc/cmd/templates/mux_mirc_routes_site_v1.tmpl index 941642e..d689135 100644 --- a/mirc/cmd/templates/mux_mirc_routes_site_v1.tmpl +++ b/mirc/cmd/templates/mux_mirc_routes_site_v1.tmpl @@ -1,9 +1,14 @@ package v1 import ( - mir "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2/engine" ) +func init() { + engine.AddEntry(new(Site)) +} + // Site site v1 interface info type Site struct { Chain mir.Chain `mir:"-"` diff --git a/mirc/cmd/templates/mux_mirc_routes_site_v2.tmpl b/mirc/cmd/templates/mux_mirc_routes_site_v2.tmpl index 98bd9fe..fc2752a 100644 --- a/mirc/cmd/templates/mux_mirc_routes_site_v2.tmpl +++ b/mirc/cmd/templates/mux_mirc_routes_site_v2.tmpl @@ -1,9 +1,14 @@ package v2 import ( - mir "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2" + "github.com/alimy/mir/v2/engine" ) +func init() { + engine.AddEntry(new(Site)) +} + // Site site v2 interface info type Site struct { Group mir.Group `mir:"v2"` @@ -11,4 +16,3 @@ type Site struct { Articles mir.Get `mir:"//{subdomain}.example.com/articles/{category}/{id:[0-9]+}?filter={filter}&foo=bar&id={id:[0-9]+}"` Category mir.Get `mir:"/category/"` } - diff --git a/mirc/cmd/templates_gen.go b/mirc/cmd/templates_gen.go index 9489bff..434bad1 100644 --- a/mirc/cmd/templates_gen.go +++ b/mirc/cmd/templates_gen.go @@ -2,47 +2,47 @@ // sources: // templates/chi_go_mod.tmpl (125B) // templates/chi_main.tmpl (372B) -// templates/chi_mirc_main.tmpl (812B) -// templates/chi_mirc_routes_site.tmpl (247B) -// templates/chi_mirc_routes_site_v1.tmpl (280B) -// templates/chi_mirc_routes_site_v2.tmpl (290B) +// templates/chi_mirc_main.tmpl (629B) +// templates/chi_mirc_routes_site.tmpl (328B) +// templates/chi_mirc_routes_site_v1.tmpl (361B) +// templates/chi_mirc_routes_site_v2.tmpl (370B) // templates/echo_go_mod.tmpl (119B) // templates/echo_main.tmpl (344B) -// templates/echo_mirc_main.tmpl (813B) -// templates/echo_mirc_routes_site.tmpl (235B) -// templates/echo_mirc_routes_site_v1.tmpl (268B) -// templates/echo_mirc_routes_site_v2.tmpl (278B) +// templates/echo_mirc_main.tmpl (630B) +// templates/echo_mirc_routes_site.tmpl (316B) +// templates/echo_mirc_routes_site_v1.tmpl (349B) +// templates/echo_mirc_routes_site_v2.tmpl (358B) // templates/gin_go_mod.tmpl (115B) // templates/gin_main.tmpl (331B) -// templates/gin_mirc_main.tmpl (812B) -// templates/gin_mirc_routes_site.tmpl (235B) -// templates/gin_mirc_routes_site_v1.tmpl (268B) -// templates/gin_mirc_routes_site_v2.tmpl (278B) +// templates/gin_mirc_main.tmpl (629B) +// templates/gin_mirc_routes_site.tmpl (316B) +// templates/gin_mirc_routes_site_v1.tmpl (349B) +// templates/gin_mirc_routes_site_v2.tmpl (359B) // templates/httprouter_go_mod.tmpl (126B) // templates/httprouter_main.tmpl (402B) -// templates/httprouter_mirc_main.tmpl (819B) -// templates/httprouter_mirc_routes_site.tmpl (235B) -// templates/httprouter_mirc_routes_site_v1.tmpl (268B) -// templates/httprouter_mirc_routes_site_v2.tmpl (278B) +// templates/httprouter_mirc_main.tmpl (636B) +// templates/httprouter_mirc_routes_site.tmpl (316B) +// templates/httprouter_mirc_routes_site_v1.tmpl (349B) +// templates/httprouter_mirc_routes_site_v2.tmpl (358B) // templates/iris_go_mod.tmpl (119B) // templates/iris_main.tmpl (372B) -// templates/iris_mirc_main.tmpl (813B) -// templates/iris_mirc_routes_site.tmpl (242B) -// templates/iris_mirc_routes_site_v1.tmpl (275B) -// templates/iris_mirc_routes_site_v2.tmpl (285B) +// templates/iris_mirc_main.tmpl (630B) +// templates/iris_mirc_routes_site.tmpl (323B) +// templates/iris_mirc_routes_site_v1.tmpl (356B) +// templates/iris_mirc_routes_site_v2.tmpl (365B) // templates/macaron_go_mod.tmpl (110B) // templates/macaron_main.tmpl (282B) -// templates/macaron_mirc_main.tmpl (816B) -// templates/macaron_mirc_routes_site.tmpl (235B) -// templates/macaron_mirc_routes_site_v1.tmpl (268B) -// templates/macaron_mirc_routes_site_v2.tmpl (278B) +// templates/macaron_mirc_main.tmpl (633B) +// templates/macaron_mirc_routes_site.tmpl (316B) +// templates/macaron_mirc_routes_site_v1.tmpl (349B) +// templates/macaron_mirc_routes_site_v2.tmpl (358B) // templates/makefile.tmpl (339B) // templates/mux_go_mod.tmpl (113B) // templates/mux_main.tmpl (374B) -// templates/mux_mirc_main.tmpl (812B) -// templates/mux_mirc_routes_site.tmpl (311B) -// templates/mux_mirc_routes_site_v1.tmpl (344B) -// templates/mux_mirc_routes_site_v2.tmpl (354B) +// templates/mux_mirc_main.tmpl (629B) +// templates/mux_mirc_routes_site.tmpl (392B) +// templates/mux_mirc_routes_site_v1.tmpl (425B) +// templates/mux_mirc_routes_site_v2.tmpl (434B) // templates/readme.tmpl (142B) package cmd @@ -113,7 +113,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _chi_go_modTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xca\x41\x0e\xc2\x20\x10\x05\xd0\xfd\x9c\xe2\x2f\x35\xc6\xa1\x45\xcf\x61\xbc\x02\x45\x02\x13\x19\x47\x49\x21\x31\x4d\xef\xee\xde\xfd\x53\x7b\xf4\x9a\xb0\x6d\xe0\xfb\x33\xdf\x82\x26\xec\x3b\x51\x36\xcc\x3c\x7b\xa2\x96\x3e\x5d\x5a\xc2\x81\x00\x20\xcb\x5a\xfa\xc2\xd1\xd4\x85\x2a\xfa\x75\x2a\xcd\x0d\x8f\xe1\x79\xe6\xe9\x9f\x64\x3b\xc7\x22\x2e\x16\xc1\xb8\xf2\xc4\x97\x93\xbc\xa2\xe9\x3b\xac\xb2\xd4\x44\x47\xfa\x05\x00\x00\xff\xff\x30\xbd\x41\x34\x7d\x00\x00\x00" +var _chi_go_modTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xca\x41\x0e\xc2\x20\x10\x05\xd0\xfd\x9c\xe2\x2f\x35\xc6\xa1\x45\xcf\x61\xbc\x02\x45\x02\x13\x19\x47\x49\x21\x31\x4d\xef\xee\xde\xfd\x53\x7b\xf4\x9a\xb0\x6d\xe0\xfb\x33\xdf\x82\x26\xec\x3b\x51\x36\xcc\x3c\x7b\xa2\x96\x3e\x5d\x5a\xc2\x81\x00\x20\xcb\x5a\xfa\xc2\xd1\xd4\x85\x2a\xfa\x75\x2a\xcd\x0d\x8f\xe1\xd9\xf3\xf4\x4f\xb2\x9d\x63\x11\x17\x8b\x60\x5c\x79\xe2\xcb\x49\x5e\xd1\xf4\x1d\x56\x59\x6a\xa2\x23\xfd\x02\x00\x00\xff\xff\x27\xb9\x14\x8e\x7d\x00\x00\x00" func chi_go_modTmplBytes() ([]byte, error) { return bindataRead( @@ -128,8 +128,8 @@ func chi_go_modTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "chi_go_mod.tmpl", size: 125, mode: os.FileMode(0644), modTime: time.Unix(1584548470, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x77, 0xb3, 0xbd, 0x54, 0x3b, 0x3c, 0x47, 0x99, 0xea, 0x74, 0xf, 0xb8, 0x6, 0x1c, 0xf4, 0x5d, 0x90, 0x7c, 0x9d, 0x71, 0xbd, 0xda, 0x3c, 0x5e, 0xdf, 0x2c, 0xe1, 0x9c, 0x90, 0x31, 0xb, 0x66}} + info := bindataFileInfo{name: "chi_go_mod.tmpl", size: 125, mode: os.FileMode(0644), modTime: time.Unix(1585130093, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5c, 0x33, 0xa5, 0x8e, 0x18, 0x15, 0x7f, 0x44, 0x37, 0x9, 0x56, 0x3, 0x71, 0x76, 0x23, 0xe5, 0x85, 0x8c, 0xfb, 0x1, 0xc, 0x7d, 0x0, 0x40, 0xd9, 0xaa, 0xc8, 0xed, 0x93, 0xd3, 0x6, 0x2d}} return a, nil } @@ -153,7 +153,7 @@ func chi_mainTmpl() (*asset, error) { return a, nil } -var _chi_mirc_mainTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x41\x8b\xdb\x30\x10\x85\xef\xfa\x15\x53\x1d\x8a\x0d\xc1\x22\x39\xba\xec\xa9\xb4\xa5\x87\x36\xa1\x39\x96\x1e\x54\xef\x44\x19\x62\x8f\xcc\x78\x9c\x52\x82\xff\xfb\x62\xc9\x9b\x64\x61\x89\x0f\x46\xa3\xf7\xf9\x8d\xe6\xc9\xbd\x6f\x4e\x3e\x20\x74\x9e\xd8\x18\xea\xfa\x28\x0a\x85\x01\x00\xb0\x6d\x0c\xd6\xe4\x65\x20\x3d\x8e\x7f\xab\x26\x76\xce\xb7\xd4\xfd\x77\x1d\x89\x3b\x6f\x5c\x13\x05\xed\x63\x04\x39\x10\xe3\x62\x24\x71\x54\x1c\xc0\x5e\x2e\x50\xed\x4e\xe1\xa7\xef\x10\xa6\x69\x46\x1b\x97\xb5\xec\x76\x5e\x3f\x62\xdc\x79\xbd\x60\x9b\xc7\xd8\xc6\x9a\xd2\x18\xe7\x42\xac\x03\x32\x8a\x57\x84\x10\x41\x46\x4e\x03\x57\x21\x9a\xc3\xc8\x4d\x2a\x8a\x12\x2e\xc9\xb4\x8d\xa1\xda\x09\xb1\xb6\x5c\xd8\xeb\x67\x4d\x7c\x46\x18\xd4\x8b\xda\x32\x61\xc8\x2a\x84\x03\xd4\x4f\xd0\x91\x7c\xc9\x55\x91\xb5\xd8\x6b\x12\x3e\xce\xf9\x54\xdb\x5e\x29\xf2\x90\xdd\xe7\xe7\xd7\xc8\x3f\xe2\x33\xd6\x4b\x99\xa0\xef\xbc\x47\x21\xdf\xce\xc2\xea\x4a\x7e\xcb\xed\xa3\xcc\xe3\xd5\x99\xbc\xee\x7d\x3e\xd2\x3b\xe4\xb6\xd7\xa1\x7e\xf5\x24\x9d\xcb\x5b\xe7\x6b\xbb\x6d\xaf\x7b\xe2\xd3\xce\xeb\xb1\x06\x5b\xb9\x80\x6c\x6f\x66\x53\x5e\x4e\xe9\x4d\x07\x40\x91\x79\x9c\x7c\x95\xaf\x07\xc0\x62\x89\x60\x95\xe6\x2d\x3f\x25\xec\xc3\x13\x30\xb5\x70\x6b\x39\xc7\xf9\xd5\xab\x6f\x0b\x14\x29\xef\x7c\x1f\xe4\x7c\x20\xa6\xe1\x68\x4b\x33\x99\xe5\x82\xee\x12\x86\xdf\x7f\x88\x15\xe5\xe0\x1b\xbc\x4c\x4b\x27\x41\x1d\x85\xdf\x4a\xb7\x33\x30\xfe\x2b\xf2\x3f\x51\xed\x49\xb1\x5c\xbd\x51\xce\xeb\x77\x77\x37\xf7\xbb\x93\x99\xcc\x4b\x00\x00\x00\xff\xff\xbf\xca\xaa\xd0\x2c\x03\x00\x00" +var _chi_mirc_mainTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xc1\x4a\xc3\x40\x10\x86\xef\xfb\x14\xe3\x1e\x24\x01\xc9\x62\x8f\x91\x9e\x04\xc5\x83\xb6\xd8\x07\x90\x35\x9d\x6e\x86\x26\xb3\x61\x33\x29\x48\xc9\xbb\xcb\x6e\xda\xd4\x83\x54\x73\x08\x33\x99\x2f\xff\xbf\xff\x6c\x67\xab\xbd\x75\x08\xad\x25\x56\x8a\xda\xce\x07\x81\x4c\x01\x00\xe8\xc6\x3b\xad\xa6\xd2\x91\xd4\xc3\x67\x51\xf9\xd6\xd8\x86\xda\x2f\xd3\x52\x30\x87\x85\xa9\x7c\x40\x7d\x1d\x41\x76\xc4\x78\x12\xfa\x00\x7d\x3c\x42\xb1\xde\xbb\x37\xdb\x22\x8c\x63\xa4\x2a\x13\xfc\x20\xd8\xeb\xbf\x11\x73\xb8\xff\x17\xb5\xd0\x2a\x57\xca\x18\xe7\x4b\x87\x8c\xc1\x0a\x82\xf3\x10\x06\x4e\x49\x0b\xe7\xd5\x6e\xe0\x2a\x35\x59\x0e\xc7\xa4\xd9\x78\x57\xac\x03\xb1\x34\x9c\xe9\xf9\xb7\xca\x6f\x11\x7a\xb1\x41\x74\x9e\x30\xdf\x49\x0f\xe5\x12\x6e\x63\xf8\x62\xd5\x09\x79\xee\x27\x85\xf8\xbc\x0f\xfc\xea\xb7\x58\x9e\xda\x04\xbd\xf0\x06\x03\xd9\x26\x0e\xee\x66\xf2\x79\xb2\xf0\x21\x46\x28\x27\x72\xfe\xf6\x58\xd3\x2f\xe4\xaa\x93\xbe\x3c\x6b\x92\xc4\xf6\xe2\x3c\xdb\xad\x3a\xd9\x10\xef\xd7\x56\xea\x12\x74\x61\x1c\xb2\xbe\x88\x8d\x53\x39\xa6\x37\xed\x00\x43\x88\x71\xa6\x7b\x3a\x1f\x00\xb3\x18\x33\x7f\x48\xd3\x9b\x25\x30\x35\x70\x71\x8a\x9b\x7a\xb2\x62\x9b\x0c\x43\xc8\x7f\xc8\x5d\x59\xe1\x8e\x98\xfa\x5a\xe7\x6a\x54\xdf\x01\x00\x00\xff\xff\xe5\x8f\x41\xf0\x75\x02\x00\x00" func chi_mirc_mainTmplBytes() ([]byte, error) { return bindataRead( @@ -168,12 +168,12 @@ func chi_mirc_mainTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "chi_mirc_main.tmpl", size: 812, mode: os.FileMode(0644), modTime: time.Unix(1584606341, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x23, 0x13, 0x89, 0x2a, 0x8c, 0xd5, 0x56, 0xde, 0x50, 0x8d, 0x89, 0x88, 0x8c, 0x12, 0x6d, 0x87, 0x8f, 0x6c, 0xf1, 0xe3, 0x37, 0x5b, 0x6a, 0x75, 0x1d, 0xbd, 0x2b, 0x36, 0xa0, 0xf4, 0xa7, 0xbd}} + info := bindataFileInfo{name: "chi_mirc_main.tmpl", size: 629, mode: os.FileMode(0644), modTime: time.Unix(1585130365, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf6, 0x22, 0x89, 0xcb, 0xda, 0xac, 0x72, 0x44, 0x53, 0xa7, 0x9e, 0x84, 0x5c, 0xe6, 0xde, 0x6e, 0x45, 0x62, 0x7d, 0xde, 0x95, 0x92, 0x9, 0x84, 0x82, 0x65, 0x2d, 0x1f, 0xd5, 0x16, 0x16, 0xdf}} return a, nil } -var _chi_mirc_routes_siteTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xcc\xc1\x4b\x85\x40\x10\xc7\xf1\xfb\xfc\x15\xc3\x9e\x8a\xd0\x89\x6e\x79\x8b\x0e\xd1\xb9\x63\x04\x6e\xeb\xa8\x43\xae\x2b\xe3\x18\x89\xf8\xbf\x87\xbe\x7d\xa7\x77\x59\x76\xf8\x7e\xf8\x4d\x3e\xfc\xf8\x8e\x51\xd3\x62\x3c\x03\x48\x9c\x92\x1a\xde\x01\x22\x62\x14\x45\xd7\x89\xf5\xcb\x77\x19\x52\x24\x3f\x48\x5c\x29\x8a\xd2\xef\x93\x83\x7b\x00\x22\xfc\x10\x63\x9c\x8f\x47\x46\x63\x6d\x7d\x38\x7e\x6d\x02\x5b\x27\xce\xd5\x74\x09\x86\xdb\xb9\xf9\xda\x7b\x19\xf3\x78\x79\x39\xea\x28\x5a\xb9\xc2\xd5\x27\x78\x1f\x1b\xfe\xbb\x82\x37\x36\xc4\x0c\x48\x8e\x42\x99\xbd\xa8\x49\x18\x78\xbe\x65\x3e\x17\xda\x82\x37\xee\x92\xae\x3b\x6d\xd2\x54\x9f\x8f\xc5\xf3\xd7\xc3\xee\x6a\xd8\xe1\x3f\x00\x00\xff\xff\xe0\x9a\x84\x83\xf7\x00\x00\x00" +var _chi_mirc_routes_siteTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x8c\x41\x4b\xc4\x40\x0c\x85\xef\xf9\x15\x61\x4e\x2d\xb2\x1b\xf1\xe6\xde\x16\x11\xf1\xec\x51\x84\x8e\xd3\xb4\x1b\xdc\x99\x96\x34\x55\x4b\xe9\x7f\x97\xd9\x1d\x4f\x82\x97\xf0\x1e\xdf\x97\x37\xfa\xf0\xe1\x7b\x46\x1d\x66\xe3\x09\x40\xe2\x38\xa8\x61\x05\x88\x88\xae\x17\x3b\xcd\xef\xfb\x30\x44\xf2\x67\x89\x0b\x45\x51\xfa\xbc\x73\xff\x52\xe2\xd4\x4b\x62\x07\x35\x40\x37\xa7\x80\x92\xc4\xaa\x1a\xd7\xcb\xd7\x15\xee\x8f\x6d\xfb\x98\x4c\x97\x2a\xf1\x57\xf5\x22\xc6\x75\x0d\x1b\x00\x11\xe6\x82\x53\x3e\x92\x8c\xb5\xf3\x21\xa7\x6e\x00\x5b\x46\x2e\xd4\x74\x0e\x56\x06\x1f\x4e\x5e\x52\x0e\x51\x74\x7f\x2d\x4d\x14\x3d\xb8\x9d\x6b\x2e\xc2\x73\x6a\xf9\xfb\x57\x78\x62\x43\x2c\x02\x49\x26\x54\xb4\xa3\x9a\x84\x33\x4f\x7f\x35\x5f\x08\xad\xc1\x1b\xf7\x83\x2e\x1b\xad\xd2\x1e\x5e\x6f\x77\xf7\x6f\x37\x9b\x6b\x60\x83\x9f\x00\x00\x00\xff\xff\x6a\x3e\xef\x62\x48\x01\x00\x00" func chi_mirc_routes_siteTmplBytes() ([]byte, error) { return bindataRead( @@ -188,12 +188,12 @@ func chi_mirc_routes_siteTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "chi_mirc_routes_site.tmpl", size: 247, mode: os.FileMode(0644), modTime: time.Unix(1583565237, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1a, 0xd6, 0x44, 0xd0, 0xd2, 0x3b, 0xf8, 0x4b, 0x15, 0xfd, 0x19, 0xea, 0x6c, 0xc6, 0x24, 0x6b, 0x5b, 0x1e, 0x4, 0x2e, 0x7, 0x96, 0x20, 0x12, 0x80, 0x57, 0x18, 0x8f, 0xa7, 0x5a, 0x96, 0x8e}} + info := bindataFileInfo{name: "chi_mirc_routes_site.tmpl", size: 328, mode: os.FileMode(0644), modTime: time.Unix(1585130093, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9d, 0x7a, 0xfa, 0x40, 0xf4, 0x9a, 0xce, 0x1d, 0x19, 0xa4, 0x35, 0xff, 0xbd, 0x80, 0x57, 0xb5, 0xa5, 0x45, 0x85, 0xf7, 0x40, 0x6f, 0xcf, 0x80, 0xdb, 0x6b, 0x57, 0x0, 0x75, 0x26, 0x7d, 0xdf}} return a, nil } -var _chi_mirc_routes_site_v1Tmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xcc\x3f\x4b\x03\x41\x10\x05\xf0\x7e\x3e\xc5\xb0\x95\x22\xc9\x78\x76\xa6\x13\x0b\xb1\xb6\x14\xe1\xd6\xcd\xe4\x32\x98\xfd\xc3\x64\x6e\xf1\x38\xee\xbb\x4b\x72\xab\x8d\xcd\x83\xc7\xfb\xf1\x8a\x0f\x5f\x7e\x60\xac\x1d\x80\xc4\x92\xd5\xf0\x06\x10\x11\xa3\x28\xba\x41\xec\x38\x7e\x6e\x43\x8e\xe4\x4f\x12\x27\x8a\xa2\x54\x1f\x1c\xdc\x02\x10\xe1\x9b\x18\xe3\xf9\x12\xb5\x43\x49\xc6\x7a\xf0\x81\x51\xd2\x21\x83\x4d\x85\x1b\x30\x1d\x83\xe1\x7c\xbd\x7d\x3e\x7a\x49\xed\x7f\xbb\x96\x3e\x8a\xee\xdc\xc6\xf5\x57\xf0\xa2\x79\x2c\xbf\x60\x2d\x2b\xa8\x5d\x13\xaf\x69\xcf\xdf\x7f\x82\x0d\xb1\x09\x92\xcb\x42\x8d\x3d\xa9\x49\x38\xf1\xf9\x3f\xf3\x6d\xa1\x39\x78\xe3\x21\xeb\xb4\xd0\x2c\xfb\xdd\xfb\xfd\xe6\xf1\xe3\x6e\x71\x3d\x2c\xf0\x13\x00\x00\xff\xff\x86\x90\xe8\xf6\x18\x01\x00\x00" +var _chi_mirc_routes_site_v1Tmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\xcc\xc1\x4a\xc4\x30\x10\xc6\xf1\xfb\x3c\xc5\x90\x53\x8b\xec\xc6\x7a\x73\x6f\x8b\x88\x78\xf6\x28\x42\x63\x3a\xed\x0e\x6e\x92\x32\x3b\xad\x96\xd2\x77\x97\x6e\xa3\x17\xc1\x4b\xc8\xc7\xff\x97\xf4\xce\x7f\xb8\x8e\x70\xac\x00\x38\xf4\x49\x14\x0b\x40\x44\x34\x1d\xeb\x69\x78\xdf\xfb\x14\xac\x3b\x73\x98\x6c\x60\xb1\xe3\x9d\xf9\xb7\x5a\x8a\x1d\x47\x32\x50\x02\xb4\x43\xf4\xc8\x91\xb5\x28\x71\xbe\xbe\xda\xe2\xfe\xd8\x34\x8f\x51\x65\x2a\x22\x7d\x16\x2f\xac\x54\x96\xb0\x00\x58\x8b\xeb\xc0\xcb\x7a\x8c\x15\x72\x54\x92\xd6\x79\x42\x8e\x6d\x02\x9d\x7a\xca\x40\x65\xf0\x9a\xff\x7c\x38\x39\x8e\xeb\x25\xb0\xec\xb7\x51\x07\x96\x83\xd9\x99\xfa\x0a\x9e\x24\x0d\xfd\x0f\xd8\xc6\x06\xc6\x2a\x8b\xe7\xd8\xd0\xd7\xaf\x20\x45\xcc\xc2\xf2\x5a\x6c\x66\x47\x51\xf6\x67\xba\xfc\x65\x2e\x17\x3b\x7b\xa7\xd4\x25\x99\x16\x3b\x73\x73\x78\xbd\xdd\xdd\xbf\xdd\x2c\xa6\x86\x05\xbe\x03\x00\x00\xff\xff\x4e\x22\x4a\x8d\x69\x01\x00\x00" func chi_mirc_routes_site_v1TmplBytes() ([]byte, error) { return bindataRead( @@ -208,12 +208,12 @@ func chi_mirc_routes_site_v1Tmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "chi_mirc_routes_site_v1.tmpl", size: 280, mode: os.FileMode(0644), modTime: time.Unix(1583565237, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe5, 0xeb, 0x61, 0xa3, 0x53, 0x21, 0x89, 0xe3, 0x72, 0xac, 0x83, 0x73, 0x3e, 0x38, 0x29, 0xd2, 0x56, 0xe4, 0x9d, 0xa0, 0x1b, 0x85, 0x5d, 0xd5, 0xb7, 0xb2, 0x15, 0xa0, 0x2b, 0x70, 0xc6, 0xeb}} + info := bindataFileInfo{name: "chi_mirc_routes_site_v1.tmpl", size: 361, mode: os.FileMode(0644), modTime: time.Unix(1585130093, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc3, 0xa6, 0x6b, 0xa9, 0x82, 0xcf, 0xc9, 0x5, 0x26, 0x19, 0x28, 0x7e, 0x49, 0xfd, 0x6e, 0x51, 0x91, 0x23, 0xf3, 0xe4, 0x35, 0x99, 0xbd, 0x94, 0xa6, 0x47, 0x72, 0x41, 0x28, 0x2b, 0x11, 0xaa}} return a, nil } -var _chi_mirc_routes_site_v2Tmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xcd\x31\x4b\x04\x31\x10\x05\xe0\x7e\x7e\xc5\x90\x4a\x11\x6f\x24\x9d\xd7\x89\x85\x58\x5b\x8a\x70\x31\x37\xb7\x0e\x5e\x36\x61\x6e\x36\xb8\x2c\xfb\xdf\x65\xd7\x78\xcd\x36\x81\xf0\xbe\xf7\xa6\x84\xf8\x1d\x3a\xc6\xea\x01\x24\x95\xac\x86\x37\x80\x88\x98\x44\xd1\x75\x62\x5f\xc3\xe7\x2e\xe6\x44\xe1\x2c\x69\xa4\x24\x4a\xd5\x3b\xb8\x05\x20\xc2\x37\x31\xc6\xcb\xf2\x54\x8f\xd2\x1b\xeb\x29\x44\x46\xe9\x4f\x19\x6c\x2c\xdc\x80\xe9\x10\x0d\xa7\x75\xf6\x45\xf3\x50\xda\xfe\xee\xef\x73\x48\xa2\x7b\x57\xbd\x3b\xac\xe2\xb5\x3f\xf2\xcf\x55\xb0\x21\x36\x41\xb2\x24\xd4\xd8\x93\x9a\xc4\x33\x5f\xb6\x2c\xb4\x84\xa6\x18\x8c\xbb\xac\xe3\x4c\x93\x1c\xf7\xef\x0f\xf7\x8f\x1f\x77\x73\xeb\x3f\xb7\x6c\xdb\xff\x6f\x2d\x97\x66\x80\xdf\x00\x00\x00\xff\xff\x5f\x81\x36\x20\x22\x01\x00\x00" +var _chi_mirc_routes_site_v2Tmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x8d\x41\x4b\xc4\x30\x10\x46\xef\xf3\x2b\x86\x9e\x5a\xc4\x8e\xf4\xe6\xde\x16\x11\xf1\xec\x51\x84\x8d\xe9\xb4\x0e\x6e\xd2\x32\x3b\xad\x96\xd2\xff\x2e\xd9\x8d\x5e\x16\xbc\x84\x7c\xbc\xf7\x92\xd1\xf9\x4f\xd7\x33\xce\x0d\x80\x84\x71\x50\xc3\x12\x10\x11\x8b\x5e\xec\x63\x7a\xaf\xfd\x10\xc8\x1d\x25\x2c\x14\x44\x69\x6e\x8a\x7f\x29\x71\xec\x25\x72\x01\x15\x40\x37\x45\x8f\x12\xc5\xca\x0a\xd7\x73\x75\x81\xf5\xbe\x6d\x1f\xa3\xe9\x52\x46\xfe\x2a\x5f\xc4\xb8\xaa\x60\x03\x20\xc2\x34\xf0\x94\x8e\xb9\x41\x89\xc6\xda\x39\xcf\x28\xb1\x1b\xc0\x96\x91\xb3\x60\x3a\x79\xcb\x6f\x3e\xe9\x30\x8d\xe9\x12\x44\xeb\xcb\x38\x04\xd1\x5d\x31\x37\xc5\xe1\x6c\x3c\xc7\x96\xbf\xff\x0c\x36\xc4\x6c\x90\x24\x42\x59\xdb\xab\x89\x3f\xf2\xe9\x5a\x73\x99\xd0\xea\x9d\x71\x3f\xe8\xb2\xd1\x2a\xed\xee\xf5\xee\xf6\xfe\xed\x66\xcb\xfd\x43\x66\xd7\xfd\x6f\x95\x7e\xda\xe0\x27\x00\x00\xff\xff\x2d\xd0\xa5\xb3\x72\x01\x00\x00" func chi_mirc_routes_site_v2TmplBytes() ([]byte, error) { return bindataRead( @@ -228,12 +228,12 @@ func chi_mirc_routes_site_v2Tmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "chi_mirc_routes_site_v2.tmpl", size: 290, mode: os.FileMode(0644), modTime: time.Unix(1583565237, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x52, 0x3b, 0xfc, 0xfa, 0x6b, 0x77, 0x8b, 0xef, 0x6f, 0x3c, 0xac, 0xb1, 0xdc, 0x2d, 0xe8, 0xda, 0xd9, 0x6, 0xc6, 0x7c, 0xcc, 0x4b, 0x15, 0xbf, 0xca, 0x17, 0xda, 0xcd, 0x64, 0x14, 0xa2, 0xf0}} + info := bindataFileInfo{name: "chi_mirc_routes_site_v2.tmpl", size: 370, mode: os.FileMode(0644), modTime: time.Unix(1585130093, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7a, 0x23, 0x3b, 0xdb, 0x28, 0x67, 0x84, 0xff, 0x6, 0xe8, 0xa4, 0x85, 0x35, 0x2e, 0x34, 0xd7, 0x14, 0x2c, 0x7f, 0xef, 0x3e, 0x1d, 0x68, 0x86, 0x46, 0x53, 0xbc, 0xcf, 0xa4, 0x66, 0xa2, 0x57}} return a, nil } -var _echo_go_modTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xca\x31\x0e\xc2\x30\x0c\x05\xd0\xdd\xa7\xf8\x23\x2c\x36\xae\xca\x35\x10\x57\x48\x83\x95\x46\x8d\x15\x11\x9a\x48\xa8\xea\xdd\xd9\xd9\x9f\xd7\x57\x2f\x86\xe3\x00\x3f\xb7\xf4\x08\x6e\x38\x4f\xa2\x54\xa1\xac\x13\x51\xb3\x77\xcf\xcd\x70\x21\x00\x48\x79\x5f\xfb\xc2\xb1\xba\x84\x92\xfd\x2b\x9e\x9b\x8c\x09\x63\x62\xe5\xdb\x3f\x29\x61\xf9\xec\x21\x6e\x62\x71\xad\x32\x66\x8c\x99\x95\xf5\x4e\x57\xfa\x05\x00\x00\xff\xff\xd7\xa8\x8b\xf1\x77\x00\x00\x00" +var _echo_go_modTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xca\x41\x0e\xc2\x20\x10\x05\xd0\xfd\x9c\xe2\x2f\x75\x33\x23\xa4\x5e\xc3\x78\x05\x8a\x13\x4a\xca\x84\x88\x85\xc4\x34\xdc\xdd\xbd\xfb\x67\xf5\xd5\x8b\xe2\x3c\xc1\xcf\x3d\x3d\x82\x29\xe6\x24\x4a\x15\x8e\x9d\x27\x6a\xfa\xee\xb9\x29\x2e\x04\x00\x29\x1f\x5b\x5f\x39\x56\x93\x50\xb2\x7d\xc5\x72\x93\xe1\x31\x3c\x7b\xbe\xfd\x93\x12\xd6\xcf\x11\xe2\x2e\x1a\xb7\x2a\x63\xc1\x58\xd8\xb1\xbb\xd3\x95\x7e\x01\x00\x00\xff\xff\x62\x04\xd1\x71\x77\x00\x00\x00" func echo_go_modTmplBytes() ([]byte, error) { return bindataRead( @@ -248,8 +248,8 @@ func echo_go_modTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "echo_go_mod.tmpl", size: 119, mode: os.FileMode(0644), modTime: time.Unix(1584548272, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x47, 0x5d, 0xcf, 0xe7, 0x7a, 0xf9, 0x8d, 0xac, 0xe0, 0xb8, 0x81, 0xcd, 0x94, 0x8e, 0x72, 0xd5, 0x8d, 0xb9, 0xd, 0xdf, 0x32, 0x4f, 0x54, 0x59, 0x40, 0x8d, 0x22, 0x4c, 0x1e, 0xae, 0x1c, 0x8e}} + info := bindataFileInfo{name: "echo_go_mod.tmpl", size: 119, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd0, 0xb6, 0x8, 0x55, 0x7d, 0xf6, 0xbc, 0x7c, 0x36, 0x93, 0x7d, 0xc7, 0xe, 0x92, 0x91, 0x10, 0xa, 0xb7, 0x6a, 0x6f, 0xdc, 0x82, 0xa2, 0x6e, 0xa4, 0x98, 0x29, 0xaa, 0x3d, 0xc7, 0x14, 0xf7}} return a, nil } @@ -273,7 +273,7 @@ func echo_mainTmpl() (*asset, error) { return a, nil } -var _echo_mirc_mainTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x41\x8b\xdb\x30\x10\x85\xef\xfa\x15\x53\x1d\x8a\x0d\xc1\x22\x39\xba\xec\x71\x5b\x7a\x68\x13\x9a\x63\xe9\x41\xf5\x4e\x94\x21\xf6\xc8\x8c\xc7\x29\x25\xf8\xbf\x2f\x96\xbc\x49\x16\x96\xf8\x60\x34\x7a\x9f\xdf\x68\x9e\xdc\xfb\xe6\xe4\x03\x42\xe7\x89\x8d\xa1\xae\x8f\xa2\x50\x18\x00\x00\xdb\xc6\x60\x4d\x5e\x06\xd2\xe3\xf8\xb7\x6a\x62\xe7\x7c\x4b\xdd\x7f\xd7\x91\xb8\xf3\xc6\x35\x51\xd0\x3e\x46\x90\x03\x31\x2e\x46\x12\x47\xc5\x01\xec\xe5\x02\xd5\xee\x14\x7e\xfa\x0e\x61\x9a\x66\xb4\x71\x59\xcb\x6e\xe7\xf5\x23\xc6\x9d\xd7\x0b\xb6\x79\x8c\x6d\xac\x29\x8d\x71\x2e\xc4\x3a\x20\xa3\x78\x45\x08\x11\x64\xe4\x34\x70\x15\xa2\x39\x8c\xdc\xa4\xa2\x28\xe1\x92\x4c\xdb\x18\xaa\x9d\x10\x6b\xcb\x85\xbd\x7e\xd6\xc4\x17\x84\x41\xbd\xa8\x2d\x13\x86\xac\x42\x38\x40\xfd\x04\x1d\xc9\x73\xae\x8a\xac\xc5\x5e\x93\xf0\x79\xce\xa7\xda\xf6\x4a\x91\x87\xec\x3e\x3f\xbf\x46\xfe\x11\x5f\xb0\x5e\xca\x04\x7d\xe7\x3d\x0a\xf9\x76\x16\x56\x57\xf2\x5b\x6e\x1f\x65\x1e\xaf\xce\xe4\x75\xef\xb9\x39\xc6\x0f\xd0\x6d\xaf\x43\xfd\x66\x4a\x3a\x97\xb7\xd6\xd7\x7e\xdb\x5e\xf7\xc4\xa7\x9d\xd7\x63\x0d\xb6\x72\x01\xd9\xde\xcc\xa6\xbc\x9c\xd2\x9b\x0e\x80\x22\xf3\x3c\xf9\x2e\xdf\x4e\x80\xc5\x92\xc1\x2a\x0d\x5c\x7e\x49\xd8\xa7\x27\x60\x6a\xe1\xd6\x72\xce\xf3\xab\x57\xdf\x16\x28\x52\xde\xf9\x3e\x08\xfa\x40\x4c\xc3\xd1\x96\x66\x32\xcb\x0d\xdd\x45\x0c\xbf\xff\x10\x2b\xca\xc1\x37\x78\x99\x96\x4e\x82\x3a\x0a\xbf\x97\x6e\x67\x60\xfc\x57\xe4\x9f\xa2\xda\x93\x62\xb9\x7a\xa7\x9c\xd7\x1f\xee\x6e\xee\x77\x27\x33\x99\xd7\x00\x00\x00\xff\xff\x36\xba\x8f\x3c\x2d\x03\x00\x00" +var _echo_mirc_mainTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xc1\x4e\xc3\x30\x0c\x86\xef\x79\x0a\x93\x03\x6a\x25\xd4\x88\x1d\x8b\x76\x04\xc4\x01\x36\xb1\x07\x40\xa1\xf3\x52\x6b\xad\x5d\xa5\xe9\x24\x34\xf5\xdd\x51\xd2\xad\xe3\x80\x06\x3d\x54\x76\xfd\xf5\xff\xf3\x3b\x9d\xad\xf6\xd6\x21\xb4\x96\x58\x29\x6a\x3b\xf1\x01\x32\x05\x00\xa0\x1b\x71\x5a\x4d\xa5\xa3\x50\x0f\x9f\x45\x25\xad\xb1\x0d\xb5\x5f\xa6\x25\x6f\x0e\x0b\x53\x89\x47\x7d\x1d\x41\x76\xc4\x78\x12\xfa\x00\x7d\x3c\x42\xb1\xde\xbb\x37\xdb\x22\x8c\x63\xa4\x2a\xe3\x65\x08\xd8\xeb\xbf\x11\x73\xb8\xff\x17\xb5\xd0\x2a\x57\xca\x18\x27\xa5\x43\x46\x6f\x03\x82\x13\xf0\x03\xa7\xa4\x85\x13\xb5\x1b\xb8\x4a\x4d\x96\xc3\x31\x69\x36\xe2\x8a\xb5\x27\x0e\x0d\x67\x7a\xfe\xad\x92\x2d\x42\x1f\xac\x0f\x3a\x4f\x98\x74\xa1\x87\x72\x09\xb7\x31\x7c\xb1\xea\x02\x09\xf7\x93\x42\x7c\xde\x07\x7e\x95\x2d\x96\xa7\x36\x41\x2f\xbc\x41\x4f\xb6\x89\x83\xbb\x99\x7c\x9e\x2c\xc4\xc7\x08\xe5\x44\xce\xdf\x1e\xab\x5a\x7e\x41\x57\x5d\xe8\xcb\xb3\x28\x85\xd8\x5e\xac\x67\xbf\x55\x17\x36\xc4\xfb\xb5\x0d\x75\x09\xba\x30\x0e\x59\x5f\xc4\xc6\xa9\x1c\xd3\x9b\x76\x80\xde\xc7\x3c\xd3\x45\x9d\x4f\x80\x59\xcc\x99\x3f\xa4\xe9\xcd\x12\x98\x1a\xb8\x38\xc5\x55\x3d\xd9\x60\x9b\x0c\xbd\xcf\x7f\xc8\x5d\xd9\xe1\x8e\x98\xfa\x5a\xe7\x6a\x54\xdf\x01\x00\x00\xff\xff\xa1\xc1\x28\xfb\x76\x02\x00\x00" func echo_mirc_mainTmplBytes() ([]byte, error) { return bindataRead( @@ -288,12 +288,12 @@ func echo_mirc_mainTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "echo_mirc_main.tmpl", size: 813, mode: os.FileMode(0644), modTime: time.Unix(1584606341, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd8, 0x89, 0x29, 0xc4, 0x57, 0xa5, 0xe9, 0xc8, 0x2e, 0x38, 0xf6, 0xb, 0x52, 0x7, 0x96, 0x53, 0xa8, 0xd6, 0x44, 0x4a, 0x14, 0xc2, 0x6f, 0x7c, 0x44, 0x52, 0x44, 0xd4, 0xfb, 0x15, 0xf4, 0xa5}} + info := bindataFileInfo{name: "echo_mirc_main.tmpl", size: 630, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x87, 0xe8, 0x2, 0xcf, 0x57, 0xe7, 0xac, 0xf1, 0xa0, 0x34, 0x81, 0xad, 0x9b, 0xfc, 0xba, 0x31, 0xd7, 0x8d, 0x96, 0x65, 0x58, 0xf0, 0x39, 0x73, 0x24, 0x38, 0x9f, 0xbe, 0xfa, 0x3f, 0xff, 0x51}} return a, nil } -var _echo_mirc_routes_siteTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xcc\xb1\x8e\xc2\x30\x0c\x06\xe0\xdd\x4f\x61\x65\xba\x1b\xae\x96\x6e\xec\x86\x18\x10\x33\x2f\xd0\x10\xdc\xd6\xa2\x69\x2a\xd7\x45\x54\x88\x77\x47\x29\x61\x62\xb1\x6c\xfd\x9f\xff\xc9\x87\xab\xef\x18\x35\x2d\xc6\x33\x80\xc4\x29\xa9\xe1\x0f\x20\x22\x46\x51\x74\x9d\x58\xbf\x9c\xab\x90\x22\xf9\x41\xe2\x4a\x51\x94\x6e\xff\x0e\x7e\x01\x88\xf0\x24\xc6\x38\xe7\x21\xa3\xb1\xb6\x3e\xe4\xad\x4d\x60\xeb\xc4\x25\x35\x5d\x82\xe1\x63\xeb\xdc\xf7\x5e\xc6\x52\x5e\xbd\x8f\x26\x8a\xd6\xee\xcf\x35\x1b\x38\x8e\x17\xbe\x7f\xc0\x81\x0d\xb1\x00\x92\x9c\x50\x61\x3b\x35\x09\x03\xcf\xdf\xcc\x97\x84\xea\xe0\x8d\xbb\xa4\x6b\xfe\x79\xc2\x2b\x00\x00\xff\xff\x6f\x8d\xbd\xe2\xeb\x00\x00\x00" +var _echo_mirc_routes_siteTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x8c\xb1\x6a\xec\x40\x0c\x45\x7b\x7d\x85\x98\xca\x2e\x9e\x05\xaf\xdc\x6e\x09\x21\xa4\xce\x0f\xec\x64\x2c\x7b\x45\x76\x34\x46\x96\x93\x98\xb0\xff\x1e\x66\x77\x52\x05\xd2\x88\x7b\x39\xe7\x6a\x89\xe9\x2d\xce\x8c\x56\x36\xe7\x15\x40\xf2\x52\xcc\xb1\x03\x44\xc4\x30\x8b\x9f\xb7\xd7\x21\x95\x4c\xf1\x22\x79\xa7\x2c\x46\xef\xff\xc3\x9f\x94\x58\x67\x51\x0e\xd0\x03\x4c\x9b\x26\x14\x15\xef\x7a\xfc\xba\xad\xee\x70\x38\x8e\xe3\xa3\xba\xed\x9d\xf2\x47\xf7\x22\xce\x7d\x0f\x57\x00\x22\xac\x05\xd7\x7a\x44\x9d\x6d\x8a\xa9\xa6\xa9\x80\xef\x0b\x37\xea\xb6\x25\x6f\x0f\x1f\xce\x51\xb4\x86\x2c\x36\xdc\xcb\x29\x8b\x1d\xc2\xbf\x70\xba\x09\xcf\x3a\xf2\xe7\x8f\xf0\xc4\x8e\xd8\x04\x92\x4a\xa8\x69\x47\x73\x49\x17\x5e\x7f\x6b\xb1\x11\x3a\xa4\xe8\x3c\x17\xdb\xeb\xe6\x0a\xdf\x01\x00\x00\xff\xff\xcc\x2d\x14\xcc\x3c\x01\x00\x00" func echo_mirc_routes_siteTmplBytes() ([]byte, error) { return bindataRead( @@ -308,12 +308,12 @@ func echo_mirc_routes_siteTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "echo_mirc_routes_site.tmpl", size: 235, mode: os.FileMode(0644), modTime: time.Unix(1584548272, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0x4f, 0xfa, 0x94, 0xfc, 0xde, 0xbd, 0xc4, 0x73, 0x1c, 0x5c, 0x1, 0x6, 0xc0, 0xb1, 0x3, 0xe9, 0x45, 0x4a, 0x88, 0x1b, 0x3e, 0x78, 0x93, 0xcc, 0x91, 0x13, 0xe6, 0x80, 0x49, 0x99, 0x88}} + info := bindataFileInfo{name: "echo_mirc_routes_site.tmpl", size: 316, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb1, 0x29, 0xe4, 0xfc, 0x25, 0x86, 0xb8, 0x52, 0xa3, 0x2d, 0xd1, 0x31, 0x36, 0xc1, 0x7e, 0x59, 0xdf, 0x65, 0x39, 0x63, 0x2, 0x5b, 0xf3, 0x2d, 0x15, 0x8e, 0xd2, 0x28, 0xb0, 0x97, 0x2d, 0x35}} return a, nil } -var _echo_mirc_routes_site_v1Tmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xcc\xbd\x4e\xc5\x30\x0c\x05\xe0\xdd\x4f\x61\x65\x82\x81\x6b\x95\xf1\x6e\x88\x01\x31\xf3\x02\x0d\xc1\x6d\x2d\x9a\x1f\xb9\x6e\x44\x85\x78\x77\xd4\x36\xb0\xdc\xc5\xd2\xd1\xf9\x7c\x8a\x0f\x9f\x7e\x64\xac\x1d\x80\xc4\x92\xd5\xf0\x0e\x10\x11\xa3\x28\xba\x51\x6c\x5a\xdf\x2f\x21\x47\xf2\xb3\xc4\x8d\xa2\x28\xd5\x47\x07\xf7\x00\x44\xf8\x26\xc6\xb8\xec\xa7\x76\x28\xc9\x58\x07\x1f\x18\x25\x0d\x19\x6c\x2b\xdc\x80\xe9\x1a\x0c\xbf\x8f\xd9\xe7\xc9\x4b\x6a\xfb\x97\x33\xf4\x51\xf4\xea\x1e\x5c\x7f\x80\x17\xcd\x6b\xf9\x03\x67\x38\x41\xed\x9a\x78\x4d\x1f\xfc\xf5\x2f\xd8\x10\x9b\x20\xd9\x1b\x6a\xec\x49\x4d\xc2\xcc\xcb\x2d\xf3\xad\xa1\x6b\xf0\xc6\x63\xd6\x6d\xff\xf9\x81\xdf\x00\x00\x00\xff\xff\x6b\x52\x31\x87\x0c\x01\x00\x00" +var _echo_mirc_routes_site_v1Tmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\xcc\x31\x6e\xf3\x30\x0c\x05\xe0\x9d\xa7\x20\x34\xd9\xc3\x6f\xc1\xff\x98\x2d\x28\x8a\xa2\x73\x2f\x10\x55\xa6\x1d\xa2\x11\x65\x30\xb4\x5b\xa3\xc8\xdd\x0b\xc5\x6a\x97\x02\x5d\x04\x3d\xbc\xef\x71\x0e\xf1\x2d\x4c\x84\x6b\x0f\xc0\x69\xce\x6a\xd8\x00\x22\xa2\x9b\xd8\xce\xcb\x6b\x17\x73\xf2\xe1\xc2\x69\xf3\x89\xd5\xaf\xff\xdd\x9f\xad\x27\x99\x58\xc8\x41\x0b\x30\x2e\x12\x91\x85\xad\x69\xf1\xf3\xbe\xda\xcb\xee\x38\x0c\x8f\x62\xba\x35\x42\xef\xcd\x0b\x1b\xb5\x2d\xdc\x00\xbc\xc7\x12\xf0\x5a\x9e\xb5\x47\x16\x23\x1d\x43\x24\x64\x19\x33\xd8\x36\x53\x05\xa6\x4b\xb4\x7a\xf3\xe1\x1c\x58\xca\x27\xb1\x76\x7b\x38\x25\xd6\x83\xfb\xe7\x4e\x77\xf0\xa4\x79\x99\xbf\xc1\x1e\x76\xb0\xf6\x55\x3c\xcb\x40\x1f\x3f\x82\x0c\xb1\x0a\xcf\xa5\xf1\x95\x1d\xd5\x38\x5e\xe8\xfa\x9b\x85\xda\xf8\x43\x0c\x46\x53\xd6\xad\x6c\x6e\xf0\x15\x00\x00\xff\xff\xf3\x95\x67\x4d\x5d\x01\x00\x00" func echo_mirc_routes_site_v1TmplBytes() ([]byte, error) { return bindataRead( @@ -328,12 +328,12 @@ func echo_mirc_routes_site_v1Tmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "echo_mirc_routes_site_v1.tmpl", size: 268, mode: os.FileMode(0644), modTime: time.Unix(1584548272, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2, 0x2c, 0x70, 0x3a, 0xa, 0x23, 0xcb, 0x84, 0xc8, 0xda, 0x13, 0x6b, 0x56, 0xd5, 0xda, 0x60, 0xbe, 0xca, 0x57, 0xf3, 0xe2, 0xec, 0x45, 0x4f, 0x3b, 0x6e, 0xa1, 0x20, 0x63, 0x32, 0x38, 0x74}} + info := bindataFileInfo{name: "echo_mirc_routes_site_v1.tmpl", size: 349, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdb, 0x8d, 0xaf, 0x66, 0x41, 0x48, 0x83, 0xfb, 0xe1, 0x89, 0x44, 0x2a, 0xd2, 0x28, 0xd, 0xc2, 0xe9, 0xa, 0x24, 0xd5, 0xa, 0xe9, 0xed, 0x86, 0xa2, 0xa4, 0xba, 0x75, 0x94, 0xb8, 0xb, 0xb}} return a, nil } -var _echo_mirc_routes_site_v2Tmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xcc\xc1\x4a\xc7\x30\x0c\x06\xf0\x7b\x9e\x22\xf4\xa4\x97\x05\x7a\xdc\x4d\x3c\x88\x67\x5f\x60\xb5\x66\x33\xb8\xae\x25\xcb\x8a\x43\x7c\x77\xd9\xac\xf2\x87\x5d\x02\xe1\xfb\x7d\x5f\x09\xf1\x23\x4c\x8c\xd5\x03\x48\x2a\x59\x0d\xef\x00\x11\x31\x89\xa2\x9b\xc4\xde\xb7\xd7\x2e\xe6\x44\x61\x96\xb4\x53\x12\xa5\xea\x1d\xdc\x03\x10\xe1\x8b\x18\xe3\x7a\x9c\xea\x51\x16\x63\x1d\x43\x64\x94\x65\xcc\x60\x7b\xe1\x06\x4c\xb7\x68\xf8\x75\xce\x3e\x69\xde\x4a\xdb\xef\x7e\x9f\x21\x89\xf6\xae\x7a\x37\x9c\xe2\x79\x79\xe3\xcf\x7f\xc1\x86\xd8\x04\xc9\x91\x50\x63\x0f\x6a\x12\x67\x5e\xaf\x2c\xb4\x84\xfa\x18\x8c\xa7\xac\xfb\x5f\xe7\xb1\xfd\xd7\xce\xad\xfc\x06\xf8\x09\x00\x00\xff\xff\x5b\x10\x23\x12\x16\x01\x00\x00" +var _echo_mirc_routes_site_v2Tmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\xcc\xc1\x6a\xc3\x30\x0c\x06\xe0\xbb\x9e\x42\xf8\x94\x5c\x2a\xc8\xb1\xb7\x32\xc6\xd8\x79\x2f\x50\xcf\x51\x32\xb1\x5a\x0e\xaa\x92\x2d\x8c\xbe\xfb\x48\xeb\x8d\x41\x61\x17\xe3\x9f\xff\xfb\x35\xc5\xf4\x1e\x47\xc6\xa5\x03\x90\x3c\x15\x73\x6c\x00\x11\x31\x8c\xe2\x6f\xf3\xeb\x2e\x95\x4c\xf1\x24\x79\xa5\x2c\x46\x4b\x17\xfe\x6d\x89\x75\x14\xe5\x00\x2d\xc0\x30\x6b\x42\x51\xf1\xa6\xc5\xaf\xeb\xea\x56\xee\x0e\x7d\xff\xa8\x6e\x6b\xa3\xfc\xd1\xbc\x88\x73\xdb\xc2\x05\x80\x08\xb7\x80\xe7\xed\x59\x3a\x14\x75\xb6\x21\x26\x46\xd1\xa1\x80\xaf\x13\x57\xe0\x36\x27\xaf\x37\x9f\xac\xcc\xd3\xf6\xc9\x62\xbb\x5b\x38\x66\xb1\x7d\x58\xba\x70\xbc\x8a\x67\xed\xf9\xf3\x57\xb0\x23\x56\x41\xb2\x35\x54\xd9\xc1\x5c\xd2\x89\xcf\xf7\x2c\xd6\x86\xf6\x29\x3a\x8f\xc5\xd6\x9f\xcd\x43\xcd\xf7\x9b\xbf\xf2\x02\xdf\x01\x00\x00\xff\xff\x2c\x0c\xd5\xb0\x66\x01\x00\x00" func echo_mirc_routes_site_v2TmplBytes() ([]byte, error) { return bindataRead( @@ -348,12 +348,12 @@ func echo_mirc_routes_site_v2Tmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "echo_mirc_routes_site_v2.tmpl", size: 278, mode: os.FileMode(0644), modTime: time.Unix(1584548272, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xce, 0xda, 0xf5, 0x1, 0xac, 0xa9, 0x50, 0x7c, 0x7e, 0x5f, 0xfa, 0x68, 0x71, 0x2, 0x7b, 0x32, 0x2a, 0x8c, 0xf4, 0x6e, 0x60, 0xab, 0x47, 0x25, 0x99, 0xce, 0xf4, 0x8d, 0x70, 0x57, 0xfd, 0x28}} + info := bindataFileInfo{name: "echo_mirc_routes_site_v2.tmpl", size: 358, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe0, 0x2, 0x21, 0xb6, 0xad, 0x80, 0xee, 0xad, 0x51, 0xf0, 0x30, 0xa9, 0x20, 0x4f, 0x8, 0x22, 0x74, 0x6e, 0x5c, 0x2a, 0xbb, 0x9c, 0x26, 0x4, 0x2a, 0xa4, 0xff, 0x41, 0x20, 0xd5, 0x5b, 0x90}} return a, nil } -var _gin_go_modTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xca\x41\x0a\x02\x31\x0c\x05\xd0\x7d\x4e\xf1\x97\xba\x30\x9d\x16\xbc\x86\x78\x85\x71\x0c\x31\x38\x99\x60\xb1\x05\x19\x7a\x77\x71\xeb\xee\x2d\x9e\xc7\xbd\xad\x82\x7d\x07\x5f\x9f\x7a\x99\x5d\x30\x06\x91\x06\x32\xe7\x42\x54\xe5\xd5\xac\x0a\x0e\x04\x00\x6a\xef\x47\xbb\xf1\x12\x9e\xe6\xd5\xfc\x93\xdc\x6a\xea\x05\xbd\x70\xe6\xe9\xbf\xa8\x6d\x27\x8d\xcd\x96\x9f\xd0\x33\x9f\x79\xa2\x23\x7d\x03\x00\x00\xff\xff\x6c\xb6\x79\x39\x73\x00\x00\x00" +var _gin_go_modTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xca\x41\x0a\x02\x31\x0c\x05\xd0\x7d\x4e\xf1\x97\xba\x30\x9d\x16\xbc\x86\x78\x85\x71\x0c\x31\x38\x99\x60\xb1\x05\x19\x7a\x77\x71\xeb\xee\x2d\x9e\xc7\xbd\xad\x82\x7d\x07\x5f\x9f\x7a\x99\x5d\x30\x06\x91\x06\x32\xe7\x42\x54\xe5\xd5\xac\x0a\x0e\x04\x00\x6a\xef\x47\xbb\xf1\x12\x9e\xe6\xd5\xfc\x93\xdc\x6a\xea\x05\xbd\x70\xe1\xe9\xbf\xa8\x6d\x27\x8d\xcd\x96\x9f\xd0\x33\x9f\x79\xa2\x23\x7d\x03\x00\x00\xff\xff\x1f\x3d\x42\x01\x73\x00\x00\x00" func gin_go_modTmplBytes() ([]byte, error) { return bindataRead( @@ -368,8 +368,8 @@ func gin_go_modTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "gin_go_mod.tmpl", size: 115, mode: os.FileMode(0644), modTime: time.Unix(1584685880, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfb, 0x40, 0xf0, 0x7d, 0x6c, 0x31, 0x17, 0x9a, 0xdd, 0x7a, 0xe, 0x39, 0xe0, 0xc2, 0x2, 0x37, 0x63, 0x1a, 0xf2, 0x2a, 0x28, 0x2, 0xa, 0xf0, 0xe1, 0x1b, 0xb3, 0x30, 0x81, 0x9, 0x79, 0xd7}} + info := bindataFileInfo{name: "gin_go_mod.tmpl", size: 115, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd7, 0x45, 0x76, 0xcd, 0x76, 0xb, 0x75, 0x58, 0xc6, 0xdf, 0xd, 0x55, 0x3b, 0xff, 0xc8, 0x31, 0x7e, 0x45, 0xac, 0xed, 0xdb, 0xd4, 0x1b, 0x1a, 0x9, 0x64, 0x1e, 0xa3, 0x7e, 0x9d, 0x6f, 0x82}} return a, nil } @@ -393,7 +393,7 @@ func gin_mainTmpl() (*asset, error) { return a, nil } -var _gin_mirc_mainTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x41\x8b\xdb\x30\x10\x85\xef\xfa\x15\x53\x1d\x8a\x0d\xc1\x22\x39\xba\xec\xb1\x5d\x7a\x68\x13\x9a\x63\xe9\x41\xf5\x4e\x94\x21\xf6\xc8\x8c\xc7\x29\x25\xf8\xbf\x2f\x96\xbc\x49\x16\x96\xf8\x60\x34\x7a\x9f\xdf\x68\x9e\xdc\xfb\xe6\xe4\x03\x42\xe7\x89\x8d\xa1\xae\x8f\xa2\x50\x18\x00\x00\xdb\xc6\x60\x4d\x5e\x06\xd2\xe3\xf8\xb7\x6a\x62\xe7\x7c\x4b\xdd\x7f\xd7\x91\xb8\xf3\xc6\x35\x51\xd0\x3e\x46\x90\x03\x31\x2e\x46\x12\x47\xc5\x01\xec\xe5\x02\xd5\xee\x14\x7e\xfa\x0e\x61\x9a\x66\xb4\x71\x59\xcb\x6e\xe7\xf5\x23\xc6\x9d\xd7\x0b\xb6\x79\x8c\x6d\xac\x29\x8d\x71\x2e\xc4\x3a\x20\xa3\x78\x45\x08\x11\x64\xe4\x34\x70\x15\xa2\x39\x8c\xdc\xa4\xa2\x28\xe1\x92\x4c\xdb\x18\xaa\x9d\x10\x6b\xcb\x85\xbd\x7e\xd6\xc4\x17\x84\x41\xbd\xa8\x2d\x13\x86\xac\x42\x38\x40\xfd\x04\x1d\xc9\xd7\x5c\x15\x59\x8b\xbd\x26\xe1\xf3\x9c\x4f\xb5\xed\x95\x22\x0f\xd9\x7d\x7e\x7e\x8d\xfc\x23\xbe\x60\xbd\x94\x09\xfa\xce\x7b\x14\xf2\xed\x2c\xac\xae\xe4\x73\x6e\x1f\x65\x1e\xaf\xce\xe4\x75\xef\x99\xf8\x03\x72\xdb\xeb\x50\xbf\x79\x92\xce\xe5\xad\xf3\xb5\xdd\xb6\xd7\x3d\xf1\x69\xe7\xf5\x58\x83\xad\x5c\x40\xb6\x37\xb3\x29\x2f\xa7\xf4\xa6\x03\xa0\xc8\x3c\x4e\xbe\xca\xb7\x03\x60\xb1\x44\xb0\x4a\xf3\x96\x5f\x12\xf6\xe9\x09\x98\x5a\xb8\xb5\x9c\xe3\xfc\xe6\xd5\xb7\x05\x8a\x94\x77\xbe\x0f\x72\x3e\x10\xd3\x70\xb4\xa5\x99\xcc\x72\x41\x77\x09\xc3\xef\x3f\xc4\x8a\x72\xf0\x0d\x5e\xa6\xa5\x93\xa0\x8e\xc2\xef\xa5\xdb\x19\x18\xff\x15\xf9\x9f\xa8\xf6\xa4\x58\xae\xde\x29\xe7\xf5\x87\xbb\x9b\xfb\xdd\xc9\x4c\xe6\x35\x00\x00\xff\xff\x03\x3a\xe9\x70\x2c\x03\x00\x00" +var _gin_mirc_mainTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xc1\x6e\xa3\x40\x0c\x86\xef\xf3\x14\xde\x39\xac\x40\x5a\x31\xda\x1c\xa9\x72\x6d\xd4\x43\x9b\xa8\x79\x80\x6a\x4a\x9c\x89\x15\xf0\x20\x63\x22\x55\x11\xef\x5e\x0d\x24\xa4\x87\x2a\x2d\x07\x64\xe3\x8f\xff\x9f\xdf\xd3\xfa\xea\xe8\x03\x42\xe3\x89\x8d\xa1\xa6\x8d\xa2\x90\x19\x00\x00\x5b\xc7\x60\xcd\x54\x06\xd2\x43\xff\x5e\x54\xb1\x71\xbe\xa6\xe6\xc3\x35\x24\xee\xb4\x70\x55\x14\xb4\xf7\x11\xe4\x40\x8c\x17\xa1\x37\xb0\xe7\x33\x14\x9b\x63\x78\xf1\x0d\xc2\x30\x24\xaa\x72\x12\x7b\xc5\xce\xfe\x8c\xb8\xd3\xff\x5f\x51\x0b\x6b\x72\x63\x9c\x0b\xb1\x0c\xc8\x28\x5e\x11\x42\x04\xe9\x79\x4c\x5a\x84\x68\xf6\x3d\x57\x63\x93\xe5\x70\x1e\x35\xeb\x18\x8a\x8d\x10\x6b\xcd\x99\x9d\x7f\xab\xe2\x0e\xa1\x53\x2f\x6a\xf3\x11\x8b\xad\x76\x50\x2e\xe1\x6f\x0a\x5f\xac\x5b\xa5\xc8\xdd\xa4\x90\x9e\xd7\x9e\x9f\xe3\x0e\xcb\x4b\x3b\x42\x4f\xbc\x45\x21\x5f\xa7\xc1\xbf\x99\x5c\x4d\x16\x51\x52\x84\x72\x22\xe7\x6f\x2b\xe2\x6f\xc8\x75\xab\x5d\x79\xd5\x24\x4d\xed\xcd\x79\xb6\x5b\xb7\xba\x25\x3e\x6e\xbc\x1e\x4a\xb0\x85\x0b\xc8\xf6\x26\x36\x4c\xe5\x30\xbe\x69\x0f\x28\x92\xe2\x4c\xf7\x74\x3d\x00\x66\x29\x66\xfe\x30\x4e\xff\x2c\x81\xa9\x86\x9b\x53\xda\xd4\xa3\x57\x5f\x67\x28\x92\x7f\x91\xbb\xb3\xc2\x3d\x31\x75\x07\x9b\x9b\xc1\x7c\x06\x00\x00\xff\xff\x9a\x0b\x6a\xa5\x75\x02\x00\x00" func gin_mirc_mainTmplBytes() ([]byte, error) { return bindataRead( @@ -408,12 +408,12 @@ func gin_mirc_mainTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "gin_mirc_main.tmpl", size: 812, mode: os.FileMode(0644), modTime: time.Unix(1584606341, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x25, 0xb3, 0x1d, 0x61, 0xa6, 0xa2, 0x89, 0xb4, 0x69, 0xa, 0xb2, 0x6f, 0x99, 0xa2, 0x5c, 0x31, 0x1f, 0x3c, 0x5c, 0x4b, 0x4a, 0x7c, 0xa8, 0x6a, 0x3d, 0xb2, 0xb, 0x27, 0xf, 0x1b, 0x36, 0x20}} + info := bindataFileInfo{name: "gin_mirc_main.tmpl", size: 629, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x38, 0x29, 0xa9, 0xff, 0x8d, 0x2b, 0x40, 0xbf, 0x57, 0x19, 0x50, 0x4e, 0xe2, 0x71, 0xb5, 0xe6, 0xa2, 0x95, 0xb, 0xe5, 0xa2, 0x73, 0x4c, 0x3d, 0x1c, 0x22, 0x4d, 0xc0, 0x98, 0x89, 0xda, 0xf4}} return a, nil } -var _gin_mirc_routes_siteTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xcc\xb1\x8e\xc2\x30\x0c\x06\xe0\xdd\x4f\x61\x65\xba\x1b\xae\x96\x6e\xec\x86\x18\x10\x33\x2f\xd0\x10\xdc\xd6\xa2\x69\x2a\xd7\x45\x54\x88\x77\x47\x29\x61\x62\xb1\x6c\xfd\x9f\xff\xc9\x87\xab\xef\x18\x35\x2d\xc6\x33\x80\xc4\x29\xa9\xe1\x0f\x20\x22\x46\x51\x74\x9d\x58\xbf\x9c\xab\x90\x22\xf9\x41\xe2\x4a\x51\x94\x6e\xff\x0e\x7e\x01\x88\xf0\x24\xc6\x38\xe7\x21\xa3\xb1\xb6\x3e\xe4\xad\x4d\x60\xeb\xc4\x25\x35\x5d\x82\xe1\x63\xeb\xdc\xf7\x5e\xc6\x52\x5e\xbd\x8f\x26\x8a\xd6\xee\xcf\x35\x1b\x38\x8e\x17\xbe\x7f\xc0\x81\x0d\xb1\x00\x92\x9c\x50\x61\x3b\x35\x09\x03\xcf\xdf\xcc\x97\x84\xea\xe0\x8d\xbb\xa4\x6b\xfe\x79\xc2\x2b\x00\x00\xff\xff\x6f\x8d\xbd\xe2\xeb\x00\x00\x00" +var _gin_mirc_routes_siteTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x8c\xb1\x6a\xec\x40\x0c\x45\x7b\x7d\x85\x98\xca\x2e\x9e\x05\xaf\xdc\x6e\x09\x21\xa4\xce\x0f\xec\x64\x2c\x7b\x45\x76\x34\x46\x96\x93\x98\xb0\xff\x1e\x66\x77\x52\x05\xd2\x88\x7b\x39\xe7\x6a\x89\xe9\x2d\xce\x8c\x56\x36\xe7\x15\x40\xf2\x52\xcc\xb1\x03\x44\xc4\x30\x8b\x9f\xb7\xd7\x21\x95\x4c\xf1\x22\x79\xa7\x2c\x46\xef\xff\xc3\x9f\x94\x58\x67\x51\x0e\xd0\x03\x4c\x9b\x26\x14\x15\xef\x7a\xfc\xba\xad\xee\x70\x38\x8e\xe3\xa3\xba\xed\x9d\xf2\x47\xf7\x22\xce\x7d\x0f\x57\x00\x22\xac\x05\xd7\x7a\x44\x9d\x6d\x8a\xa9\xa6\xa9\x80\xef\x0b\x37\xea\xb6\x25\x6f\x0f\x1f\xce\x51\xb4\x86\x2c\x36\xdc\xcb\x29\x8b\x1d\xc2\xbf\x70\xba\x09\xcf\x3a\xf2\xe7\x8f\xf0\xc4\x8e\xd8\x04\x92\x4a\xa8\x69\x47\x73\x49\x17\x5e\x7f\x6b\xb1\x11\x3a\xa4\xe8\x3c\x17\xdb\xeb\xe6\x0a\xdf\x01\x00\x00\xff\xff\xcc\x2d\x14\xcc\x3c\x01\x00\x00" func gin_mirc_routes_siteTmplBytes() ([]byte, error) { return bindataRead( @@ -428,12 +428,12 @@ func gin_mirc_routes_siteTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "gin_mirc_routes_site.tmpl", size: 235, mode: os.FileMode(0644), modTime: time.Unix(1583565237, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0x4f, 0xfa, 0x94, 0xfc, 0xde, 0xbd, 0xc4, 0x73, 0x1c, 0x5c, 0x1, 0x6, 0xc0, 0xb1, 0x3, 0xe9, 0x45, 0x4a, 0x88, 0x1b, 0x3e, 0x78, 0x93, 0xcc, 0x91, 0x13, 0xe6, 0x80, 0x49, 0x99, 0x88}} + info := bindataFileInfo{name: "gin_mirc_routes_site.tmpl", size: 316, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb1, 0x29, 0xe4, 0xfc, 0x25, 0x86, 0xb8, 0x52, 0xa3, 0x2d, 0xd1, 0x31, 0x36, 0xc1, 0x7e, 0x59, 0xdf, 0x65, 0x39, 0x63, 0x2, 0x5b, 0xf3, 0x2d, 0x15, 0x8e, 0xd2, 0x28, 0xb0, 0x97, 0x2d, 0x35}} return a, nil } -var _gin_mirc_routes_site_v1Tmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xcc\xbd\x4e\xc5\x30\x0c\x05\xe0\xdd\x4f\x61\x65\x82\x81\x6b\x95\xf1\x6e\x88\x01\x31\xf3\x02\x0d\xc1\x6d\x2d\x9a\x1f\xb9\x6e\x44\x85\x78\x77\xd4\x36\xb0\xdc\xc5\xd2\xd1\xf9\x7c\x8a\x0f\x9f\x7e\x64\xac\x1d\x80\xc4\x92\xd5\xf0\x0e\x10\x11\xa3\x28\xba\x51\x6c\x5a\xdf\x2f\x21\x47\xf2\xb3\xc4\x8d\xa2\x28\xd5\x47\x07\xf7\x00\x44\xf8\x26\xc6\xb8\xec\xa7\x76\x28\xc9\x58\x07\x1f\x18\x25\x0d\x19\x6c\x2b\xdc\x80\xe9\x1a\x0c\xbf\x8f\xd9\xe7\xc9\x4b\x6a\xfb\x97\x33\xf4\x51\xf4\xea\x1e\x5c\x7f\x80\x17\xcd\x6b\xf9\x03\x67\x38\x41\xed\x9a\x78\x4d\x1f\xfc\xf5\x2f\xd8\x10\x9b\x20\xd9\x1b\x6a\xec\x49\x4d\xc2\xcc\xcb\x2d\xf3\xad\xa1\x6b\xf0\xc6\x63\xd6\x6d\xff\xf9\x81\xdf\x00\x00\x00\xff\xff\x6b\x52\x31\x87\x0c\x01\x00\x00" +var _gin_mirc_routes_site_v1Tmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\xcc\x31\x6e\xf3\x30\x0c\x05\xe0\x9d\xa7\x20\x34\xd9\xc3\x6f\xc1\xff\x98\x2d\x28\x8a\xa2\x73\x2f\x10\x55\xa6\x1d\xa2\x11\x65\x30\xb4\x5b\xa3\xc8\xdd\x0b\xc5\x6a\x97\x02\x5d\x04\x3d\xbc\xef\x71\x0e\xf1\x2d\x4c\x84\x6b\x0f\xc0\x69\xce\x6a\xd8\x00\x22\xa2\x9b\xd8\xce\xcb\x6b\x17\x73\xf2\xe1\xc2\x69\xf3\x89\xd5\xaf\xff\xdd\x9f\xad\x27\x99\x58\xc8\x41\x0b\x30\x2e\x12\x91\x85\xad\x69\xf1\xf3\xbe\xda\xcb\xee\x38\x0c\x8f\x62\xba\x35\x42\xef\xcd\x0b\x1b\xb5\x2d\xdc\x00\xbc\xc7\x12\xf0\x5a\x9e\xb5\x47\x16\x23\x1d\x43\x24\x64\x19\x33\xd8\x36\x53\x05\xa6\x4b\xb4\x7a\xf3\xe1\x1c\x58\xca\x27\xb1\x76\x7b\x38\x25\xd6\x83\xfb\xe7\x4e\x77\xf0\xa4\x79\x99\xbf\xc1\x1e\x76\xb0\xf6\x55\x3c\xcb\x40\x1f\x3f\x82\x0c\xb1\x0a\xcf\xa5\xf1\x95\x1d\xd5\x38\x5e\xe8\xfa\x9b\x85\xda\xf8\x43\x0c\x46\x53\xd6\xad\x6c\x6e\xf0\x15\x00\x00\xff\xff\xf3\x95\x67\x4d\x5d\x01\x00\x00" func gin_mirc_routes_site_v1TmplBytes() ([]byte, error) { return bindataRead( @@ -448,12 +448,12 @@ func gin_mirc_routes_site_v1Tmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "gin_mirc_routes_site_v1.tmpl", size: 268, mode: os.FileMode(0644), modTime: time.Unix(1583565237, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2, 0x2c, 0x70, 0x3a, 0xa, 0x23, 0xcb, 0x84, 0xc8, 0xda, 0x13, 0x6b, 0x56, 0xd5, 0xda, 0x60, 0xbe, 0xca, 0x57, 0xf3, 0xe2, 0xec, 0x45, 0x4f, 0x3b, 0x6e, 0xa1, 0x20, 0x63, 0x32, 0x38, 0x74}} + info := bindataFileInfo{name: "gin_mirc_routes_site_v1.tmpl", size: 349, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdb, 0x8d, 0xaf, 0x66, 0x41, 0x48, 0x83, 0xfb, 0xe1, 0x89, 0x44, 0x2a, 0xd2, 0x28, 0xd, 0xc2, 0xe9, 0xa, 0x24, 0xd5, 0xa, 0xe9, 0xed, 0x86, 0xa2, 0xa4, 0xba, 0x75, 0x94, 0xb8, 0xb, 0xb}} return a, nil } -var _gin_mirc_routes_site_v2Tmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xcc\xc1\x4a\xc7\x30\x0c\x06\xf0\x7b\x9e\x22\xf4\xa4\x97\x05\x7a\xdc\x4d\x3c\x88\x67\x5f\x60\xb5\x66\x33\xb8\xae\x25\xcb\x8a\x43\x7c\x77\xd9\xac\xf2\x87\x5d\x02\xe1\xfb\x7d\x5f\x09\xf1\x23\x4c\x8c\xd5\x03\x48\x2a\x59\x0d\xef\x00\x11\x31\x89\xa2\x9b\xc4\xde\xb7\xd7\x2e\xe6\x44\x61\x96\xb4\x53\x12\xa5\xea\x1d\xdc\x03\x10\xe1\x8b\x18\xe3\x7a\x9c\xea\x51\x16\x63\x1d\x43\x64\x94\x65\xcc\x60\x7b\xe1\x06\x4c\xb7\x68\xf8\x75\xce\x3e\x69\xde\x4a\xdb\xef\x7e\x9f\x21\x89\xf6\xae\x7a\x37\x9c\xe2\x79\x79\xe3\xcf\x7f\xc1\x86\xd8\x04\xc9\x91\x50\x63\x0f\x6a\x12\x67\x5e\xaf\x2c\xb4\x84\xfa\x18\x8c\xa7\xac\xfb\x5f\xe7\xb1\xfd\xd7\xce\xad\xfc\x06\xf8\x09\x00\x00\xff\xff\x5b\x10\x23\x12\x16\x01\x00\x00" +var _gin_mirc_routes_site_v2Tmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\xcc\xc1\x6a\xc3\x30\x0c\x06\xe0\xbb\x9e\x42\xf8\x94\x5c\x2a\xc8\xb1\xb7\x32\xc6\xd8\x79\x2f\x50\xcf\x51\x32\xb1\x5a\x0e\xaa\x92\x2d\x8c\xbe\xfb\x48\xeb\x8d\x41\x61\x17\xe3\x9f\xff\xfb\x35\xc5\xf4\x1e\x47\xc6\xa5\x03\x90\x3c\x15\x73\x6c\x00\x11\x31\x8c\xe2\x6f\xf3\xeb\x2e\x95\x4c\xf1\x24\x79\xa5\x2c\x46\x4b\x17\xfe\x6d\x89\x75\x14\xe5\x00\x2d\xc0\x30\x6b\x42\x51\xf1\xa6\xc5\xaf\xeb\xea\x56\xee\x0e\x7d\xff\xa8\x6e\x6b\xa3\xfc\xd1\xbc\x88\x73\xdb\xc2\x05\x80\x08\xb7\x80\xe7\xed\x59\x3a\x14\x75\xb6\x21\x26\x46\xd1\xa1\x80\xaf\x13\x57\xe0\x36\x27\xaf\x37\x9f\xac\xcc\xd3\xf6\xc9\x62\xbb\x5b\x38\x66\xb1\x7d\x58\xba\x70\xbc\x8a\x67\xed\xf9\xf3\x57\xb0\x23\x56\x41\xb2\x35\x54\xd9\xc1\x5c\xd2\x89\xcf\xf7\x2c\xd6\x86\xf6\x29\x3a\x8f\xc5\xd6\x9f\xcd\x43\xcd\xf7\x9b\xbf\xf2\x02\xf0\x1d\x00\x00\xff\xff\x7c\xbf\xbf\x00\x67\x01\x00\x00" func gin_mirc_routes_site_v2TmplBytes() ([]byte, error) { return bindataRead( @@ -468,12 +468,12 @@ func gin_mirc_routes_site_v2Tmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "gin_mirc_routes_site_v2.tmpl", size: 278, mode: os.FileMode(0644), modTime: time.Unix(1583565237, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xce, 0xda, 0xf5, 0x1, 0xac, 0xa9, 0x50, 0x7c, 0x7e, 0x5f, 0xfa, 0x68, 0x71, 0x2, 0x7b, 0x32, 0x2a, 0x8c, 0xf4, 0x6e, 0x60, 0xab, 0x47, 0x25, 0x99, 0xce, 0xf4, 0x8d, 0x70, 0x57, 0xfd, 0x28}} + info := bindataFileInfo{name: "gin_mirc_routes_site_v2.tmpl", size: 359, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbd, 0xdc, 0x9e, 0xca, 0xb4, 0xbc, 0x8b, 0x68, 0xe8, 0xb9, 0xd4, 0xb6, 0x3d, 0x61, 0x53, 0xec, 0x86, 0x66, 0xb7, 0xc4, 0xb4, 0x41, 0xb5, 0x92, 0x87, 0xce, 0x6b, 0x2e, 0x19, 0x97, 0xc8, 0x23}} return a, nil } -var _httprouter_go_modTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xca\x41\x0e\xc2\x20\x10\x05\xd0\xfd\x9c\xe2\x2f\x75\x33\x14\xbc\x87\xf1\x0a\xb5\x9d\xc0\x28\x23\x8a\x40\x62\x9a\xde\xdd\x7d\xf7\xcf\xca\xda\xb3\x60\xdb\xc0\xb7\x67\xbc\xce\x26\xd8\x77\xa2\x58\xe0\xd9\x07\xa2\x2a\x9f\xae\x55\x70\x22\x00\x88\xda\x52\xbf\xf3\x52\xcc\xcd\x59\xed\xe7\x4c\xab\x1b\x01\x23\xb0\xe7\xe9\x48\x1e\x3d\xab\xbc\xbe\x4b\x32\x5d\x9b\x4b\xad\xbd\x6b\xe9\x4d\x2a\x86\xe7\x0b\x4f\x74\xa6\x7f\x00\x00\x00\xff\xff\x91\x92\xb0\xec\x7e\x00\x00\x00" +var _httprouter_go_modTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xca\x41\x0e\xc2\x20\x10\x05\xd0\xfd\x9c\xe2\x2f\x75\x33\x14\xbc\x87\xf1\x0a\xb5\x9d\xc0\x28\x23\x8a\x40\x62\x9a\xde\xdd\x7d\xf7\xcf\xca\xda\xb3\x60\xdb\xc0\xb7\x67\xbc\xce\x26\xd8\x77\xa2\x58\xe0\xd9\x07\xa2\x2a\x9f\xae\x55\x70\x22\x00\x88\xda\x52\xbf\xf3\x52\xcc\xcd\x59\xed\xe7\x4c\xab\x1b\x01\x23\x70\xe0\xe9\x48\x1e\x3d\xab\xbc\xbe\x4b\x32\x5d\x9b\x4b\xad\xbd\x6b\xe9\x4d\x2a\x86\xe7\x0b\x4f\x74\xa6\x7f\x00\x00\x00\xff\xff\x52\x42\xd9\x6f\x7e\x00\x00\x00" func httprouter_go_modTmplBytes() ([]byte, error) { return bindataRead( @@ -488,8 +488,8 @@ func httprouter_go_modTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "httprouter_go_mod.tmpl", size: 126, mode: os.FileMode(0644), modTime: time.Unix(1584548470, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x25, 0xea, 0xd4, 0x91, 0x4b, 0x9b, 0xd, 0xb4, 0x24, 0xa4, 0x6f, 0xbd, 0x24, 0x6e, 0x42, 0x5, 0xa1, 0xf, 0x41, 0x1, 0xf6, 0x2b, 0x34, 0xf0, 0x9c, 0x6, 0x90, 0xf9, 0x63, 0x71, 0xf2, 0x8}} + info := bindataFileInfo{name: "httprouter_go_mod.tmpl", size: 126, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd3, 0xdd, 0x7f, 0x8e, 0x83, 0xb7, 0xa2, 0x87, 0x73, 0xb1, 0x99, 0xfe, 0x25, 0xd6, 0xdf, 0xcb, 0x29, 0x53, 0xc9, 0x9, 0x8d, 0x81, 0x85, 0x18, 0xf8, 0x5f, 0x86, 0x2d, 0xf5, 0x6, 0xd8, 0x14}} return a, nil } @@ -513,7 +513,7 @@ func httprouter_mainTmpl() (*asset, error) { return a, nil } -var _httprouter_mirc_mainTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x4d\x8b\xdb\x30\x10\x86\xef\xfa\x15\x53\x1d\x8a\x0d\xc1\x26\x39\xba\xec\xb1\x5f\x87\x36\x61\x73\x2c\x3d\xa8\xde\x89\x32\xc4\x1e\x99\xf1\x38\xa5\x04\xff\xf7\x22\xc9\x9b\x64\x61\x49\x0e\x41\x33\xef\xa3\x77\x3e\xe4\xc1\xb5\x27\xe7\x11\x7a\x47\x6c\x0c\xf5\x43\x10\x85\xc2\x00\x00\xd8\x2e\x78\x6b\xf2\xd1\x93\x1e\xa7\x3f\x55\x1b\xfa\xda\x75\xd4\xff\xab\x7b\x92\xfa\xbc\xa9\xdb\x20\x68\x1f\x23\xc8\x9e\x18\x17\x23\x09\x93\xe2\x08\xf6\x72\x81\x6a\x77\xf2\x3f\x5d\x8f\x30\xcf\x11\x6d\xeb\xac\x65\xb7\xf3\xfa\x11\x53\x9f\xd7\x0b\xb6\x79\x8c\x6d\xac\x29\x8d\xa9\x6b\x1f\x1a\x8f\x8c\xe2\x14\xc1\x07\x90\x89\xd3\xc0\x95\x0f\xe6\x30\x71\x9b\x82\xa2\x84\x4b\x32\xed\x82\xaf\x76\x42\xac\x1d\x17\xf6\x7a\xad\x0d\x2f\x08\xa3\x3a\x51\x5b\x26\x0c\x59\x85\x70\x84\xe6\x09\x7a\x92\xcf\x39\x2a\xb2\x16\x06\x4d\xc2\xc7\xb8\x9f\x6a\x3b\x28\x05\x1e\xb3\x7b\xfc\x3d\x4f\xfc\x23\xbc\x60\xb3\x84\x09\xfa\xce\x7b\x14\x72\x5d\x14\x56\x57\xf2\x6b\x2e\x1f\x24\x8e\xd7\x64\xf2\x9a\xfb\xa6\x3a\x3c\xc7\x49\xe5\x9d\x0b\xdb\x41\xc7\xe6\xd5\x9a\x34\x86\xb7\x06\xae\x55\xb7\x83\xee\x89\x4f\x3b\xa7\xc7\x06\x6c\x55\x7b\x64\x7b\x33\x9b\xf3\x71\x4e\xff\x74\x00\x14\x89\x53\xe5\x17\x7d\xed\x03\x8b\x65\x13\xab\x34\x76\xf9\x29\x61\x1f\x9e\x80\xa9\x83\x5b\xc9\xb8\xd5\x2f\x4e\x5d\x57\xa0\x48\x79\xe7\xfb\x60\xdd\x07\x62\x1a\x8f\xb6\x34\xb3\x59\xde\xe9\x6e\xd1\xf0\xeb\x37\xb1\xa2\x1c\x5c\x8b\x97\x79\xa9\x24\xa8\x93\xf0\x5b\xe9\xd6\x03\xe3\xdf\x22\x7f\x1a\xd5\x9e\x14\xcb\xd5\x1b\xe5\xbc\x7e\x37\xbb\xb9\xcf\xce\x66\x36\xff\x03\x00\x00\xff\xff\xc7\x80\x8b\x7e\x33\x03\x00\x00" +var _httprouter_mirc_mainTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xc1\x6e\xa3\x40\x0c\x86\xef\xf3\x14\xde\x39\xac\x40\x5a\x31\xda\x1c\x59\xe5\xba\x6d\x0f\x6d\xa2\xe4\x01\xaa\x29\x71\x26\x56\xc0\x83\x8c\x89\x54\x45\xbc\x7b\x35\x90\x90\x1e\xaa\xb4\x1c\x90\x8d\x3f\xff\xf6\x6f\x5a\x5f\x1d\x7d\x40\x68\x3c\xb1\x31\xd4\xb4\x51\x14\x32\x03\x00\x60\xeb\x18\xac\x99\xc2\x40\x7a\xe8\xdf\x8a\x2a\x36\xce\xd7\xd4\xbc\xbb\x86\xc4\x9d\x16\xae\x8a\x82\xf6\x3e\x82\x1c\x88\xf1\x22\xf4\x0a\xf6\x7c\x86\x62\x7d\x0c\x2f\xbe\x41\x18\x86\x44\x55\x4e\x62\xaf\xd8\xd9\xef\x11\x77\xfa\xfb\x23\x6a\x61\x4d\x6e\x8c\x73\x21\x96\x01\x19\xc5\x2b\x42\x88\x20\x3d\x8f\x4e\x8b\x10\xcd\xbe\xe7\x6a\x4c\xb2\x1c\xce\xa3\x66\x1d\x43\xb1\x16\x62\xad\x39\xb3\x73\x5b\x15\x77\x08\x9d\x7a\x51\x9b\x8f\x58\x6c\xb5\x83\x72\x09\xbf\x93\xf9\x62\xd5\x2a\x45\xee\x26\x85\xf4\x6c\x7a\x7e\x8e\x3b\x2c\x2f\xe9\x08\x3d\xf1\x16\x85\x7c\x9d\x0a\x7f\x66\xf2\x61\x1a\x11\x25\x59\x28\x27\x72\xfe\xf6\xa8\xda\x6e\x92\x1b\xf9\xa2\x61\xd5\x6a\x57\x5e\xa5\x49\x53\x7a\x5b\x60\x9e\xba\x6a\x75\x4b\x7c\x5c\x7b\x3d\x94\x60\x0b\x17\x90\xed\x4d\x6c\x98\xc2\x61\x7c\xd3\x1e\x50\x24\xb9\x9a\x7e\xd7\x75\x0f\xcc\x92\xdb\xfc\xdf\x58\xfd\xb5\x04\xa6\x1a\x6e\x93\xd2\xc1\xfe\x7b\xf5\x75\x86\x22\xf9\x27\xb9\x3b\x97\xdc\x13\x53\x77\xb0\xb9\x19\xcc\x47\x00\x00\x00\xff\xff\x65\x8e\x19\xdf\x7c\x02\x00\x00" func httprouter_mirc_mainTmplBytes() ([]byte, error) { return bindataRead( @@ -528,12 +528,12 @@ func httprouter_mirc_mainTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "httprouter_mirc_main.tmpl", size: 819, mode: os.FileMode(0644), modTime: time.Unix(1584606341, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaf, 0xbb, 0xc4, 0x7e, 0xcb, 0xdf, 0x3c, 0x3c, 0x56, 0xc4, 0xa0, 0xba, 0x64, 0xb4, 0x5e, 0x9f, 0xb0, 0x49, 0xc4, 0x22, 0x3, 0xc3, 0x7a, 0x87, 0x38, 0xa9, 0xae, 0x93, 0x58, 0xa6, 0xd3, 0xdb}} + info := bindataFileInfo{name: "httprouter_mirc_main.tmpl", size: 636, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3b, 0x53, 0xdf, 0xb3, 0x4a, 0x61, 0xb, 0xea, 0x57, 0x49, 0x3e, 0x41, 0x59, 0xab, 0x39, 0x2f, 0x8e, 0x6b, 0x52, 0xa6, 0xd4, 0xbc, 0xc6, 0x5e, 0xed, 0xbd, 0xf6, 0x6d, 0x97, 0x71, 0xc4, 0x3d}} return a, nil } -var _httprouter_mirc_routes_siteTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xcc\xb1\x8e\xc2\x30\x0c\x06\xe0\xdd\x4f\x61\x65\xba\x1b\xae\x96\x6e\xec\x86\x18\x10\x33\x2f\xd0\x10\xdc\xd6\xa2\x69\x2a\xd7\x45\x54\x88\x77\x47\x29\x61\x62\xb1\x6c\xfd\x9f\xff\xc9\x87\xab\xef\x18\x35\x2d\xc6\x33\x80\xc4\x29\xa9\xe1\x0f\x20\x22\x46\x51\x74\x9d\x58\xbf\x9c\xab\x90\x22\xf9\x41\xe2\x4a\x51\x94\x6e\xff\x0e\x7e\x01\x88\xf0\x24\xc6\x38\xe7\x21\xa3\xb1\xb6\x3e\xe4\xad\x4d\x60\xeb\xc4\x25\x35\x5d\x82\xe1\x63\xeb\xdc\xf7\x5e\xc6\x52\x5e\xbd\x8f\x26\x8a\xd6\xee\xcf\x35\x1b\x38\x8e\x17\xbe\x7f\xc0\x81\x0d\xb1\x00\x92\x9c\x50\x61\x3b\x35\x09\x03\xcf\xdf\xcc\x97\x84\xea\xe0\x8d\xbb\xa4\x6b\xfe\x79\xc2\x2b\x00\x00\xff\xff\x6f\x8d\xbd\xe2\xeb\x00\x00\x00" +var _httprouter_mirc_routes_siteTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x8c\xb1\x6a\xec\x40\x0c\x45\x7b\x7d\x85\x98\xca\x2e\x9e\x05\xaf\xdc\x6e\x09\x21\xa4\xce\x0f\xec\x64\x2c\x7b\x45\x76\x34\x46\x96\x93\x98\xb0\xff\x1e\x66\x77\x52\x05\xd2\x88\x7b\x39\xe7\x6a\x89\xe9\x2d\xce\x8c\x56\x36\xe7\x15\x40\xf2\x52\xcc\xb1\x03\x44\xc4\x30\x8b\x9f\xb7\xd7\x21\x95\x4c\xf1\x22\x79\xa7\x2c\x46\xef\xff\xc3\x9f\x94\x58\x67\x51\x0e\xd0\x03\x4c\x9b\x26\x14\x15\xef\x7a\xfc\xba\xad\xee\x70\x38\x8e\xe3\xa3\xba\xed\x9d\xf2\x47\xf7\x22\xce\x7d\x0f\x57\x00\x22\xac\x05\xd7\x7a\x44\x9d\x6d\x8a\xa9\xa6\xa9\x80\xef\x0b\x37\xea\xb6\x25\x6f\x0f\x1f\xce\x51\xb4\x86\x2c\x36\xdc\xcb\x29\x8b\x1d\xc2\xbf\x70\xba\x09\xcf\x3a\xf2\xe7\x8f\xf0\xc4\x8e\xd8\x04\x92\x4a\xa8\x69\x47\x73\x49\x17\x5e\x7f\x6b\xb1\x11\x3a\xa4\xe8\x3c\x17\xdb\xeb\xe6\x0a\xdf\x01\x00\x00\xff\xff\xcc\x2d\x14\xcc\x3c\x01\x00\x00" func httprouter_mirc_routes_siteTmplBytes() ([]byte, error) { return bindataRead( @@ -548,12 +548,12 @@ func httprouter_mirc_routes_siteTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "httprouter_mirc_routes_site.tmpl", size: 235, mode: os.FileMode(0644), modTime: time.Unix(1583565237, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0x4f, 0xfa, 0x94, 0xfc, 0xde, 0xbd, 0xc4, 0x73, 0x1c, 0x5c, 0x1, 0x6, 0xc0, 0xb1, 0x3, 0xe9, 0x45, 0x4a, 0x88, 0x1b, 0x3e, 0x78, 0x93, 0xcc, 0x91, 0x13, 0xe6, 0x80, 0x49, 0x99, 0x88}} + info := bindataFileInfo{name: "httprouter_mirc_routes_site.tmpl", size: 316, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb1, 0x29, 0xe4, 0xfc, 0x25, 0x86, 0xb8, 0x52, 0xa3, 0x2d, 0xd1, 0x31, 0x36, 0xc1, 0x7e, 0x59, 0xdf, 0x65, 0x39, 0x63, 0x2, 0x5b, 0xf3, 0x2d, 0x15, 0x8e, 0xd2, 0x28, 0xb0, 0x97, 0x2d, 0x35}} return a, nil } -var _httprouter_mirc_routes_site_v1Tmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xcc\xbd\x4e\xc5\x30\x0c\x05\xe0\xdd\x4f\x61\x65\x82\x81\x6b\x95\xf1\x6e\x88\x01\x31\xf3\x02\x0d\xc1\x6d\x2d\x9a\x1f\xb9\x6e\x44\x85\x78\x77\xd4\x36\xb0\xdc\xc5\xd2\xd1\xf9\x7c\x8a\x0f\x9f\x7e\x64\xac\x1d\x80\xc4\x92\xd5\xf0\x0e\x10\x11\xa3\x28\xba\x51\x6c\x5a\xdf\x2f\x21\x47\xf2\xb3\xc4\x8d\xa2\x28\xd5\x47\x07\xf7\x00\x44\xf8\x26\xc6\xb8\xec\xa7\x76\x28\xc9\x58\x07\x1f\x18\x25\x0d\x19\x6c\x2b\xdc\x80\xe9\x1a\x0c\xbf\x8f\xd9\xe7\xc9\x4b\x6a\xfb\x97\x33\xf4\x51\xf4\xea\x1e\x5c\x7f\x80\x17\xcd\x6b\xf9\x03\x67\x38\x41\xed\x9a\x78\x4d\x1f\xfc\xf5\x2f\xd8\x10\x9b\x20\xd9\x1b\x6a\xec\x49\x4d\xc2\xcc\xcb\x2d\xf3\xad\xa1\x6b\xf0\xc6\x63\xd6\x6d\xff\xf9\x81\xdf\x00\x00\x00\xff\xff\x6b\x52\x31\x87\x0c\x01\x00\x00" +var _httprouter_mirc_routes_site_v1Tmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\xcc\x31\x6e\xf3\x30\x0c\x05\xe0\x9d\xa7\x20\x34\xd9\xc3\x6f\xc1\xff\x98\x2d\x28\x8a\xa2\x73\x2f\x10\x55\xa6\x1d\xa2\x11\x65\x30\xb4\x5b\xa3\xc8\xdd\x0b\xc5\x6a\x97\x02\x5d\x04\x3d\xbc\xef\x71\x0e\xf1\x2d\x4c\x84\x6b\x0f\xc0\x69\xce\x6a\xd8\x00\x22\xa2\x9b\xd8\xce\xcb\x6b\x17\x73\xf2\xe1\xc2\x69\xf3\x89\xd5\xaf\xff\xdd\x9f\xad\x27\x99\x58\xc8\x41\x0b\x30\x2e\x12\x91\x85\xad\x69\xf1\xf3\xbe\xda\xcb\xee\x38\x0c\x8f\x62\xba\x35\x42\xef\xcd\x0b\x1b\xb5\x2d\xdc\x00\xbc\xc7\x12\xf0\x5a\x9e\xb5\x47\x16\x23\x1d\x43\x24\x64\x19\x33\xd8\x36\x53\x05\xa6\x4b\xb4\x7a\xf3\xe1\x1c\x58\xca\x27\xb1\x76\x7b\x38\x25\xd6\x83\xfb\xe7\x4e\x77\xf0\xa4\x79\x99\xbf\xc1\x1e\x76\xb0\xf6\x55\x3c\xcb\x40\x1f\x3f\x82\x0c\xb1\x0a\xcf\xa5\xf1\x95\x1d\xd5\x38\x5e\xe8\xfa\x9b\x85\xda\xf8\x43\x0c\x46\x53\xd6\xad\x6c\x6e\xf0\x15\x00\x00\xff\xff\xf3\x95\x67\x4d\x5d\x01\x00\x00" func httprouter_mirc_routes_site_v1TmplBytes() ([]byte, error) { return bindataRead( @@ -568,12 +568,12 @@ func httprouter_mirc_routes_site_v1Tmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "httprouter_mirc_routes_site_v1.tmpl", size: 268, mode: os.FileMode(0644), modTime: time.Unix(1583565237, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2, 0x2c, 0x70, 0x3a, 0xa, 0x23, 0xcb, 0x84, 0xc8, 0xda, 0x13, 0x6b, 0x56, 0xd5, 0xda, 0x60, 0xbe, 0xca, 0x57, 0xf3, 0xe2, 0xec, 0x45, 0x4f, 0x3b, 0x6e, 0xa1, 0x20, 0x63, 0x32, 0x38, 0x74}} + info := bindataFileInfo{name: "httprouter_mirc_routes_site_v1.tmpl", size: 349, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdb, 0x8d, 0xaf, 0x66, 0x41, 0x48, 0x83, 0xfb, 0xe1, 0x89, 0x44, 0x2a, 0xd2, 0x28, 0xd, 0xc2, 0xe9, 0xa, 0x24, 0xd5, 0xa, 0xe9, 0xed, 0x86, 0xa2, 0xa4, 0xba, 0x75, 0x94, 0xb8, 0xb, 0xb}} return a, nil } -var _httprouter_mirc_routes_site_v2Tmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xcc\xc1\x4a\xc7\x30\x0c\x06\xf0\x7b\x9e\x22\xf4\xa4\x97\x05\x7a\xdc\x4d\x3c\x88\x67\x5f\x60\xb5\x66\x33\xb8\xae\x25\xcb\x8a\x43\x7c\x77\xd9\xac\xf2\x87\x5d\x02\xe1\xfb\x7d\x5f\x09\xf1\x23\x4c\x8c\xd5\x03\x48\x2a\x59\x0d\xef\x00\x11\x31\x89\xa2\x9b\xc4\xde\xb7\xd7\x2e\xe6\x44\x61\x96\xb4\x53\x12\xa5\xea\x1d\xdc\x03\x10\xe1\x8b\x18\xe3\x7a\x9c\xea\x51\x16\x63\x1d\x43\x64\x94\x65\xcc\x60\x7b\xe1\x06\x4c\xb7\x68\xf8\x75\xce\x3e\x69\xde\x4a\xdb\xef\x7e\x9f\x21\x89\xf6\xae\x7a\x37\x9c\xe2\x79\x79\xe3\xcf\x7f\xc1\x86\xd8\x04\xc9\x91\x50\x63\x0f\x6a\x12\x67\x5e\xaf\x2c\xb4\x84\xfa\x18\x8c\xa7\xac\xfb\x5f\xe7\xb1\xfd\xd7\xce\xad\xfc\x06\xf8\x09\x00\x00\xff\xff\x5b\x10\x23\x12\x16\x01\x00\x00" +var _httprouter_mirc_routes_site_v2Tmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\xcc\xc1\x6a\xc3\x30\x0c\x06\xe0\xbb\x9e\x42\xf8\x94\x5c\x2a\xc8\xb1\xb7\x32\xc6\xd8\x79\x2f\x50\xcf\x51\x32\xb1\x5a\x0e\xaa\x92\x2d\x8c\xbe\xfb\x48\xeb\x8d\x41\x61\x17\xe3\x9f\xff\xfb\x35\xc5\xf4\x1e\x47\xc6\xa5\x03\x90\x3c\x15\x73\x6c\x00\x11\x31\x8c\xe2\x6f\xf3\xeb\x2e\x95\x4c\xf1\x24\x79\xa5\x2c\x46\x4b\x17\xfe\x6d\x89\x75\x14\xe5\x00\x2d\xc0\x30\x6b\x42\x51\xf1\xa6\xc5\xaf\xeb\xea\x56\xee\x0e\x7d\xff\xa8\x6e\x6b\xa3\xfc\xd1\xbc\x88\x73\xdb\xc2\x05\x80\x08\xb7\x80\xe7\xed\x59\x3a\x14\x75\xb6\x21\x26\x46\xd1\xa1\x80\xaf\x13\x57\xe0\x36\x27\xaf\x37\x9f\xac\xcc\xd3\xf6\xc9\x62\xbb\x5b\x38\x66\xb1\x7d\x58\xba\x70\xbc\x8a\x67\xed\xf9\xf3\x57\xb0\x23\x56\x41\xb2\x35\x54\xd9\xc1\x5c\xd2\x89\xcf\xf7\x2c\xd6\x86\xf6\x29\x3a\x8f\xc5\xd6\x9f\xcd\x43\xcd\xf7\x9b\xbf\xf2\x02\xdf\x01\x00\x00\xff\xff\x2c\x0c\xd5\xb0\x66\x01\x00\x00" func httprouter_mirc_routes_site_v2TmplBytes() ([]byte, error) { return bindataRead( @@ -588,12 +588,12 @@ func httprouter_mirc_routes_site_v2Tmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "httprouter_mirc_routes_site_v2.tmpl", size: 278, mode: os.FileMode(0644), modTime: time.Unix(1583565237, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xce, 0xda, 0xf5, 0x1, 0xac, 0xa9, 0x50, 0x7c, 0x7e, 0x5f, 0xfa, 0x68, 0x71, 0x2, 0x7b, 0x32, 0x2a, 0x8c, 0xf4, 0x6e, 0x60, 0xab, 0x47, 0x25, 0x99, 0xce, 0xf4, 0x8d, 0x70, 0x57, 0xfd, 0x28}} + info := bindataFileInfo{name: "httprouter_mirc_routes_site_v2.tmpl", size: 358, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe0, 0x2, 0x21, 0xb6, 0xad, 0x80, 0xee, 0xad, 0x51, 0xf0, 0x30, 0xa9, 0x20, 0x4f, 0x8, 0x22, 0x74, 0x6e, 0x5c, 0x2a, 0xbb, 0x9c, 0x26, 0x4, 0x2a, 0xa4, 0xff, 0x41, 0x20, 0xd5, 0x5b, 0x90}} return a, nil } -var _iris_go_modTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xca\x31\x0e\xc2\x30\x0c\x05\xd0\xdd\xa7\xf8\x23\x2c\x31\xce\xc4\x29\x10\x57\x30\x10\x05\xab\xb5\x22\xdc\x26\x12\xaa\x7a\x77\xc4\xda\xfd\x79\x7b\xf5\xb9\x60\xdb\x90\xee\x53\xbd\xa9\x17\xec\x3b\x51\x6d\x90\x24\x99\x28\xca\xa7\x5b\x14\x9c\x08\x00\xaa\xad\xef\xfe\x48\xcf\xe6\xac\xb3\xf9\x97\xdd\x82\x47\xc6\xc8\x49\xd2\xe5\x48\x26\x5d\x35\x74\x61\x0b\x5b\x78\x48\xc6\x90\xbf\xbb\xd2\x99\x7e\x01\x00\x00\xff\xff\x30\xde\x5a\x84\x77\x00\x00\x00" +var _iris_go_modTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xca\x31\x0e\xc2\x30\x0c\x05\xd0\xdd\xa7\xf8\x23\x2c\x0e\xf6\xc4\x29\x10\x57\x30\x10\x15\xab\xb5\x22\xdc\x26\x12\xaa\x7a\x77\x76\xf6\x17\xed\xd5\x97\x8a\x7d\x07\xdf\xe7\xe9\x66\x51\x71\x1c\x44\x53\x83\xb0\x28\x51\xd6\x4f\xf7\xac\x38\x11\x00\x4c\xbe\xbd\xfb\x83\x9f\x2d\x8a\x2d\x1e\xdf\x12\x9e\x65\x28\x86\xb2\xf2\xe5\x9f\xcc\xb6\x59\xda\x5a\x3c\x7d\x2d\x43\x14\x43\x94\x85\xaf\x74\xa6\x5f\x00\x00\x00\xff\xff\x85\x72\x00\x04\x77\x00\x00\x00" func iris_go_modTmplBytes() ([]byte, error) { return bindataRead( @@ -608,8 +608,8 @@ func iris_go_modTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "iris_go_mod.tmpl", size: 119, mode: os.FileMode(0644), modTime: time.Unix(1584548272, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf3, 0xb9, 0xef, 0x81, 0xe, 0x7d, 0x2b, 0xc6, 0xb4, 0x80, 0x53, 0xc, 0xd5, 0x59, 0x2a, 0x1c, 0xa9, 0x88, 0xc9, 0x7, 0x95, 0xae, 0x5b, 0x30, 0x3, 0x46, 0x5d, 0xcc, 0xee, 0x14, 0xda, 0xa6}} + info := bindataFileInfo{name: "iris_go_mod.tmpl", size: 119, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x13, 0xd2, 0x22, 0xd7, 0xa2, 0xb3, 0x40, 0x58, 0xf9, 0x23, 0x49, 0x37, 0x26, 0x16, 0xb9, 0xb1, 0xce, 0xba, 0x94, 0xca, 0xc3, 0xeb, 0x2f, 0x63, 0xeb, 0x9, 0x3, 0x3e, 0x41, 0x16, 0x49, 0x9e}} return a, nil } @@ -633,7 +633,7 @@ func iris_mainTmpl() (*asset, error) { return a, nil } -var _iris_mirc_mainTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x41\x8b\xdb\x30\x10\x85\xef\xfa\x15\x53\x1d\x8a\x0d\xc1\x22\x39\xba\xec\xb1\x2d\x7b\x68\x13\x9a\x63\xe9\x41\xf5\x4e\x94\x21\xf6\xc8\x8c\xc7\x29\x25\xf8\xbf\x2f\x96\xbc\x49\x16\x96\xf8\x60\x34\x7a\x9f\xdf\x68\x9e\xdc\xfb\xe6\xe4\x03\x42\xe7\x89\x8d\xa1\xae\x8f\xa2\x50\x18\x00\x00\xdb\xc6\x60\x4d\x5e\x06\xd2\xe3\xf8\xb7\x6a\x62\xe7\x7c\x4b\xdd\x7f\xd7\x91\xb8\xf3\xc6\x35\x51\xd0\x3e\x46\x90\x03\x31\x2e\x46\x12\x47\xc5\x01\xec\xe5\x02\xd5\xee\x14\x7e\xfa\x0e\x61\x9a\x66\xb4\x71\x59\xcb\x6e\xe7\xf5\x23\xc6\x9d\xd7\x0b\xb6\x79\x8c\x6d\xac\x29\x8d\x71\x2e\xc4\x3a\x20\xa3\x78\x45\x08\x11\x64\xe4\x34\x70\x15\xa2\x39\x8c\xdc\xa4\xa2\x28\xe1\x92\x4c\xdb\x18\xaa\x9d\x10\x6b\xcb\x85\xbd\x7e\xd6\xc4\x17\x84\x41\xbd\xa8\x2d\x13\x86\xac\x42\x38\x40\xfd\x04\x1d\xc9\xd7\x5c\x15\x59\x8b\xbd\x26\xe1\xf3\x9c\x4f\xb5\xed\x95\x22\x0f\xd9\x7d\x7e\x7e\x8d\xfc\x23\xbe\x60\xbd\x94\x09\x7a\xe6\x3d\x0a\xf9\x76\x16\x56\x57\xf2\x7b\x6e\x1f\x65\x1e\xaf\xce\xe4\x75\xef\x59\x68\xf8\x00\xdd\xf6\x3a\xd4\x6f\xa6\xa4\x73\x79\x6b\x7d\xed\xb7\xed\x75\x4f\x7c\xda\x79\x3d\xd6\x60\x2b\x17\x90\xed\xcd\x6c\xca\xcb\x29\xbd\xe9\x00\x28\x32\xcf\x93\xef\xf2\xed\x04\x58\x2c\x19\xac\xd2\xc0\xe5\x97\x84\x7d\x7a\x02\xa6\x16\x6e\x2d\xe7\x3c\xbf\x79\xf5\x6d\x81\x22\xe5\x9d\xef\x83\xa0\x0f\xc4\x34\x1c\x6d\x69\x26\xb3\xdc\xd0\x5d\xc4\xf0\xfb\x0f\xb1\xa2\x1c\x7c\x83\x97\x69\xe9\x24\xa8\xa3\xf0\x7b\xe9\x76\x06\xc6\x7f\x45\xfe\x29\xaa\x3d\x29\x96\xab\x77\xca\x79\xfd\xe1\xee\xe6\x7e\x77\x32\x93\x79\x0d\x00\x00\xff\xff\xa5\x96\x7d\x33\x2d\x03\x00\x00" +var _iris_mirc_mainTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xc1\x6e\xa3\x40\x0c\x86\xef\xf3\x14\xde\x39\xac\x40\x5a\x31\xda\x1c\xa9\x72\x6d\x95\x43\x9b\xa8\x79\x80\x6a\x4a\x9c\x89\x15\xf0\x20\x63\x22\x55\x11\xef\x5e\x0d\x24\xa4\x87\x2a\x2d\x07\x64\xe3\x8f\xff\x9f\xdf\xd3\xfa\xea\xe8\x03\x42\xe3\x89\x8d\xa1\xa6\x8d\xa2\x90\x19\x00\x00\x5b\xc7\x60\xcd\x54\x06\xd2\x43\xff\x5e\x54\xb1\x71\xbe\xa6\xe6\xc3\x35\x24\xee\xb4\x70\x55\x14\xb4\xf7\x11\xe4\x40\x8c\x17\xa1\x37\xb0\xe7\x33\x14\x9b\x63\x78\xf1\x0d\xc2\x30\x24\xaa\x72\x12\x7b\xc5\xce\xfe\x8c\xb8\xd3\xff\x5f\x51\x0b\x6b\x72\x63\x9c\x0b\xb1\x0c\xc8\x28\x5e\x11\x42\x04\xe9\x79\x4c\x5a\x84\x68\xf6\x3d\x57\x63\x93\xe5\x70\x1e\x35\xeb\x18\x8a\x8d\x10\x6b\xcd\x99\x9d\x7f\xab\xe2\x0e\xa1\x53\x2f\x6a\xf3\x11\x8b\xad\x76\x50\x2e\xe1\x6f\x0a\x5f\xac\x5b\xa5\xc8\xdd\xa4\x90\x9e\xd7\x9e\x9f\xe3\x0e\xcb\x4b\x3b\x42\x2b\xde\xa2\x90\xaf\xd3\xe0\xdf\x4c\x3e\x4d\x16\x51\x52\x84\x72\x22\xe7\x6f\x2b\xa1\xee\x1b\x74\xdd\x6a\x57\x5e\x45\x49\x53\x7b\xb3\x9e\xfd\xd6\xad\x6e\x89\x8f\x1b\xaf\x87\x12\x6c\xe1\x02\xb2\xbd\x89\x0d\x53\x39\x8c\x6f\xda\x03\x8a\xa4\x3c\xd3\x45\x5d\x4f\x80\x59\xca\x99\x3f\x8c\xd3\x3f\x4b\x60\xaa\xe1\xe6\x94\x56\xf5\xe8\xd5\xd7\x19\x8a\xe4\x5f\xe4\xee\xec\x70\x4f\x4c\xdd\xc1\xe6\x66\x30\x9f\x01\x00\x00\xff\xff\x2d\xe8\xeb\x96\x76\x02\x00\x00" func iris_mirc_mainTmplBytes() ([]byte, error) { return bindataRead( @@ -648,12 +648,12 @@ func iris_mirc_mainTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "iris_mirc_main.tmpl", size: 813, mode: os.FileMode(0644), modTime: time.Unix(1584606341, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0x1, 0x72, 0x5b, 0x79, 0x1c, 0x67, 0x4b, 0xf9, 0x2b, 0x33, 0x2d, 0x5, 0xab, 0x26, 0xf7, 0xa7, 0xec, 0x87, 0x63, 0x92, 0x62, 0xc2, 0x4, 0xf5, 0x5b, 0xed, 0x9b, 0x4, 0xee, 0xfb, 0x56}} + info := bindataFileInfo{name: "iris_mirc_main.tmpl", size: 630, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdf, 0x45, 0x7b, 0x7b, 0x13, 0x55, 0x82, 0x1d, 0x4d, 0x99, 0x25, 0x7e, 0x1d, 0x8b, 0xaa, 0x89, 0xc4, 0xe6, 0xbc, 0xa7, 0xea, 0x45, 0x84, 0x96, 0x38, 0xe5, 0xd4, 0x51, 0xd0, 0xea, 0x5a, 0x2c}} return a, nil } -var _iris_mirc_routes_siteTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xcc\x31\x4e\xc5\x30\x0c\xc6\xf1\xdd\xa7\xb0\x32\xc1\x40\x2d\x31\x76\x43\x0c\x88\x99\x0b\x34\x04\x37\xb5\x68\x92\xca\x71\x11\x55\xd5\xbb\xa3\x96\xbc\xe9\x2d\x51\xac\xff\x4f\xdf\xe2\xc3\xb7\x8f\x8c\x5a\x56\xe3\x0a\x20\x69\x29\x6a\xf8\x00\x88\x88\x49\x14\x5d\x14\x9b\xd6\xcf\x2e\x94\x44\x7e\x96\xb4\x51\x12\xa5\x9f\x67\x07\x8f\x00\x44\xf8\x21\xc6\x58\xcf\x47\xb2\xb1\x8e\x3e\x9c\xbf\xb1\x80\x6d\x0b\xb7\x6a\xba\x06\xc3\xfd\xda\x7c\x9d\xbc\xe4\x36\xde\xfd\x1f\x43\x12\xed\xdd\x93\x1b\x2e\xf0\x9e\xbf\xf8\xf7\x06\xde\xd8\x10\x1b\x20\x39\x0b\x35\xf6\xa2\x26\x61\xe6\x7a\xcf\x7c\x2b\xb4\x07\x6f\x1c\x8b\x6e\x7d\x35\x95\x1c\x0f\x37\xc0\x01\x7f\x01\x00\x00\xff\xff\xb6\xa6\x68\x55\xf2\x00\x00\x00" +var _iris_mirc_routes_siteTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x8c\xb1\x4e\xc4\x30\x0c\x86\x77\x3f\x85\x95\xa9\x1d\xb8\x48\x8c\xb7\x9d\x10\x42\xcc\xbc\x40\x43\xea\xe6\x2c\x2e\x4e\xe5\xba\x40\x75\xea\xbb\xa3\xdc\x85\x09\x89\xc5\xfa\x7f\x7d\x9f\xff\x39\xc4\x8f\x90\x08\xb5\xac\x46\x0b\x00\xe7\xb9\xa8\x61\x07\x88\x88\x2e\xb1\x9d\xd7\xf7\x43\x2c\xd9\x87\x0b\xe7\xcd\x67\x56\xff\xf9\xe8\xfe\xa5\x9e\x24\xb1\x90\x83\x1e\x60\x5a\x25\x22\x0b\x5b\xd7\xe3\xf5\xf6\x75\x87\x87\xd3\x38\x3e\x8b\xe9\xd6\x09\x7d\x75\x6f\x6c\xd4\xf7\xb0\x03\x78\x8f\xb5\xe0\x52\x0f\x8b\x91\x4e\x21\xd6\x34\x15\xb0\x6d\xa6\x46\x4d\xd7\x68\x6d\xf0\xe9\x1c\x58\x6a\xc8\xac\x87\x7b\x19\x32\xeb\xd1\x3d\xb8\xe1\x26\xbc\xca\x48\xdf\xbf\xc2\x0b\x19\x62\x13\x3c\x57\xe2\x9b\x76\x52\xe3\x78\xa1\xe5\xaf\x16\x1a\xf1\xd7\x18\x8c\x52\xd1\xed\xb8\x98\xb2\xa4\xdd\x0d\xb0\xc3\x4f\x00\x00\x00\xff\xff\x41\x5b\xed\x07\x43\x01\x00\x00" func iris_mirc_routes_siteTmplBytes() ([]byte, error) { return bindataRead( @@ -668,12 +668,12 @@ func iris_mirc_routes_siteTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "iris_mirc_routes_site.tmpl", size: 242, mode: os.FileMode(0644), modTime: time.Unix(1584548272, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdb, 0xe9, 0xb6, 0xa8, 0x13, 0x1e, 0xf5, 0x33, 0xea, 0xd5, 0xf4, 0x5e, 0xe1, 0x2e, 0x19, 0x75, 0x59, 0x47, 0xac, 0xaa, 0x85, 0xb4, 0x84, 0xdf, 0x62, 0x11, 0xfa, 0x5, 0xd7, 0xac, 0x34, 0x25}} + info := bindataFileInfo{name: "iris_mirc_routes_site.tmpl", size: 323, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x77, 0xba, 0x90, 0x24, 0x1c, 0xcb, 0xeb, 0xf8, 0x88, 0x88, 0xbd, 0xa0, 0x2a, 0x5b, 0x98, 0x1d, 0x9b, 0x15, 0x40, 0x5, 0xa4, 0xa0, 0xd0, 0x16, 0x7d, 0xae, 0x23, 0xd0, 0xe1, 0x48, 0x92, 0xde}} return a, nil } -var _iris_mirc_routes_site_v1Tmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xcc\xbd\x4e\xc3\x40\x10\x04\xe0\x7e\x9f\x62\x75\x15\x14\x64\x65\xca\x74\x88\x02\x51\xf3\x02\x3e\x8e\xcd\x65\x45\xee\x47\xeb\xf5\x09\x2b\xca\xbb\x23\xdb\x07\x4d\x9a\x91\x46\xf3\x69\xaa\x0f\xdf\x3e\x32\xb6\x01\x40\x52\x2d\x6a\xf8\x00\x88\x88\x49\x14\x5d\x14\x3b\xcf\x9f\x87\x50\x12\xf9\x8b\xa4\x85\x92\x28\xb5\x67\x07\x8f\x00\x44\xf8\x21\xc6\x38\xad\xd1\x06\x94\x6c\xac\x27\x1f\x18\x25\x9f\x0a\xd8\x52\xb9\x03\xd3\x39\x18\x5e\xb7\xdb\xd7\xb3\x97\xdc\xff\x0f\x7b\x19\x93\xe8\xd1\x3d\xb9\x71\x03\x6f\x5a\xe6\xfa\x07\xf6\xb2\x83\x36\x74\xf1\x9e\xbf\xf8\xe7\x5f\xb0\x21\x76\x41\xb2\x2e\xd4\xd9\x8b\x9a\x84\x0b\x4f\xf7\xcc\xf7\x85\xae\xc1\x1b\xc7\xa2\xcb\x71\x32\x95\x1c\x6f\x6e\x84\x1b\xfc\x06\x00\x00\xff\xff\xfd\x76\xa1\x3a\x13\x01\x00\x00" +var _iris_mirc_routes_site_v1Tmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\xcc\xc1\x4e\x84\x30\x10\xc6\xf1\xfb\x3c\xc5\xa4\x27\x38\x48\x83\xc7\xbd\x6d\x8c\x31\x9e\x7d\x01\x6a\x19\xd8\x89\xdb\x81\x0c\x03\x4a\x36\xbc\xbb\x61\xa9\x5e\x4c\xbc\x34\xfd\xf2\xff\xb5\x63\x88\x1f\xa1\x27\x5c\x6a\x00\x4e\xe3\xa0\x86\x05\x20\x22\xba\x9e\xed\x32\xbf\x57\x71\x48\x3e\x5c\x39\xad\x3e\xb1\xfa\xe5\xd1\xfd\x5b\x3d\x49\xcf\x42\x0e\x4a\x80\x6e\x96\x88\x2c\x6c\x45\x89\xb7\xfb\xab\x23\x56\xe7\xb6\x7d\x16\xd3\xb5\x10\xfa\x2c\xde\xd8\xa8\x2c\x61\x03\xf0\x1e\xf7\x81\xd3\x7e\x2c\x35\xb2\x18\x69\x17\x22\x21\x4b\x37\x80\xad\x23\x65\x60\x3a\x47\xcb\x7f\x3e\x5d\x02\xcb\x7e\x49\xac\xd5\x31\x9a\xc4\x7a\x72\x0f\xae\xb9\x83\x17\x1d\xe6\xf1\x07\x1c\xe3\x00\x4b\x9d\xc5\xab\xb4\xf4\xf5\x2b\xc8\x10\xb3\xf0\xbc\x17\x9f\xd9\x59\x8d\xe3\x95\xa6\xbf\x2c\xe4\xe2\x6f\x31\x18\xf5\x83\xae\xa7\xc9\x94\xa5\xdf\x5c\x03\x1b\x7c\x07\x00\x00\xff\xff\xa3\x54\xc8\x44\x64\x01\x00\x00" func iris_mirc_routes_site_v1TmplBytes() ([]byte, error) { return bindataRead( @@ -688,12 +688,12 @@ func iris_mirc_routes_site_v1Tmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "iris_mirc_routes_site_v1.tmpl", size: 275, mode: os.FileMode(0644), modTime: time.Unix(1584548272, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6b, 0x9f, 0x3d, 0x40, 0xe2, 0xcc, 0xce, 0x89, 0xfc, 0x94, 0x96, 0xb7, 0xb7, 0x67, 0x2, 0x60, 0x31, 0x34, 0x6a, 0x1e, 0x48, 0x8f, 0x9c, 0xee, 0xf7, 0xdd, 0xad, 0x54, 0x11, 0xe8, 0xfc, 0x55}} + info := bindataFileInfo{name: "iris_mirc_routes_site_v1.tmpl", size: 356, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1f, 0x3f, 0x3c, 0x46, 0x6, 0xae, 0x80, 0xe2, 0xf0, 0x4a, 0x96, 0x75, 0x34, 0x2e, 0x9, 0x63, 0x15, 0xc7, 0x37, 0x81, 0x76, 0x70, 0x34, 0x63, 0x80, 0x3f, 0x9e, 0x2b, 0xf, 0xa4, 0x59, 0x9b}} return a, nil } -var _iris_mirc_routes_site_v2Tmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8d\x3d\x4e\x04\x31\x0c\x85\x7b\x9f\xc2\x4a\x05\xcd\x5a\x4a\xb9\x1d\xa2\x40\xd4\x5c\x60\x43\xf0\x06\x8b\xcd\x8f\x3c\x9e\x88\xd1\x6a\xee\x8e\x66\x08\x34\xd3\x58\xb2\xdf\xf7\x3d\xb7\x10\xbf\x42\x62\xec\x1e\x40\x72\xab\x6a\xf8\x00\x88\x88\x59\x14\x5d\x12\xfb\x9c\xdf\x4f\xb1\x66\x0a\x37\xc9\x0b\x65\x51\xea\xde\xc1\x23\x00\x11\xbe\x89\x31\x4e\xdb\xe8\x1e\xa5\x18\xeb\x35\x44\x46\x29\xd7\x0a\xb6\x34\x1e\x80\xe9\x1c\x0d\xef\x7b\xed\x8b\xd6\xb9\x8d\xfe\xd3\xef\x72\xc9\xa2\x67\xd7\xbd\xbb\xec\xc4\x6b\xf9\xe0\xef\x7f\x82\x0d\x71\x10\x24\x5b\x42\x03\x7b\x52\x93\x78\xe3\xe9\x88\x85\x91\xd0\x3d\x06\xe3\x54\x75\x39\x4f\xa6\x52\xd2\x3a\xd4\xe7\x71\x3e\xaa\x7f\xc2\xf6\x64\x05\xf8\x09\x00\x00\xff\xff\xaf\xca\x8b\x3e\x1d\x01\x00\x00" +var _iris_mirc_routes_site_v2Tmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x8d\xc1\x6a\xc3\x30\x0c\x40\xef\xfa\x0a\x91\x53\x72\xa9\x21\xc7\xde\xca\x18\x63\xe7\xfd\x40\x3d\x47\xf1\xc4\x6a\x39\x28\x4a\xb6\x50\xf2\xef\xc3\xad\xb7\x4b\x61\x17\x63\xf9\xbd\x67\x4d\x3e\x7c\xfa\x48\xb8\xf6\x00\x9c\xa6\xac\x86\x2d\x20\x22\x36\x91\xed\x63\x79\x3f\x84\x9c\x9c\xbf\x70\xda\x5c\x62\x75\x6b\xdf\xfc\x4b\x1d\x49\x64\xa1\x06\x3a\x80\x71\x91\x80\x2c\x6c\x6d\x87\xd7\x5b\x75\x87\x87\xd3\x30\x3c\x8b\xe9\xd6\x0a\x7d\xb5\x6f\x6c\xd4\x75\xb0\x03\x38\x87\x65\xc0\xb9\x1c\x6b\x8f\x2c\x46\x3a\xfa\x40\xc8\x32\x66\xb0\x6d\xa2\x2a\x98\x2e\xc1\xea\x9f\x2f\x9a\x97\xa9\x5c\x12\xeb\xe1\x3e\x9c\x13\xeb\xb1\x59\xfb\xe6\x7c\x33\x5e\x65\xa0\xef\x3f\x83\x0c\xb1\x1a\x8e\x0b\x71\x55\x3b\xa9\x71\xb8\xd0\xfc\xa8\xf9\x4a\xdc\x35\x78\xa3\x98\x75\x3b\xce\xa6\x2c\x71\xaf\xe9\x53\x7d\x7e\x4c\x7f\x83\xb2\x64\x87\x9f\x00\x00\x00\xff\xff\x00\x10\x3d\xea\x6d\x01\x00\x00" func iris_mirc_routes_site_v2TmplBytes() ([]byte, error) { return bindataRead( @@ -708,12 +708,12 @@ func iris_mirc_routes_site_v2Tmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "iris_mirc_routes_site_v2.tmpl", size: 285, mode: os.FileMode(0644), modTime: time.Unix(1584548272, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc8, 0xdb, 0x80, 0x15, 0xc7, 0xea, 0xe9, 0x7, 0xed, 0xe4, 0xc7, 0x77, 0xa6, 0x61, 0xbc, 0x80, 0x98, 0x61, 0x40, 0xa4, 0xc8, 0x2e, 0x77, 0xa5, 0x62, 0x0, 0xc3, 0x74, 0x8, 0xb0, 0x8e, 0x7a}} + info := bindataFileInfo{name: "iris_mirc_routes_site_v2.tmpl", size: 365, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa5, 0x71, 0xb3, 0xe5, 0x55, 0xcd, 0x22, 0xc3, 0xc3, 0x8, 0x9a, 0x79, 0x2b, 0xea, 0x2, 0xc2, 0x35, 0x7f, 0xbd, 0x8e, 0x58, 0xc1, 0xe4, 0x19, 0x86, 0x8f, 0xd0, 0x9c, 0x76, 0x33, 0x41, 0xbd}} return a, nil } -var _macaron_go_modTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x24\xca\x41\x0e\xc2\x20\x10\x05\xd0\xfd\x9c\xe2\x2f\x75\xf3\x11\x8c\xd7\x30\x5e\x01\x2b\xc1\x49\x3b\x1d\x25\x42\x62\x9a\xde\xdd\x85\xfb\x67\xfe\xe8\x4b\xc1\xb6\x81\xb7\xb9\x5e\xb3\x15\xec\xbb\x48\x75\x44\xc6\x24\xd2\xca\xbb\x6b\x2b\x38\x08\x00\x54\xfd\x3c\xfb\x9d\x93\x5b\xc8\x8b\xda\x37\x98\xb6\x30\x12\x46\x62\xe4\xe9\x4f\xfc\x35\x57\xea\x1a\x2c\x4f\xb9\xf9\xca\x11\x31\x22\xcf\xbc\xc8\x51\x7e\x01\x00\x00\xff\xff\xb3\x39\x83\xf4\x6e\x00\x00\x00" +var _macaron_go_modTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x24\xca\x41\x0e\xc2\x20\x10\x05\xd0\xfd\x9c\xe2\x2f\x75\xf3\x11\x8c\xd7\x30\x5e\x01\x2b\xc1\x49\x3b\x1d\x25\x42\x62\x9a\xde\xdd\x85\xfb\x67\xfe\xe8\x4b\xc1\xb6\x81\xb7\xb9\x5e\xb3\x15\xec\xbb\x48\x75\x44\xc6\x24\xd2\xca\xbb\x6b\x2b\x38\x08\x00\x54\xfd\x3c\xfb\x9d\x93\x5b\xc8\x8b\xda\x37\x98\xb6\x30\x12\x46\x62\xe2\xe9\x4f\xfc\x35\x57\xea\x1a\x2c\x4f\xb9\xf9\xca\x11\x31\x22\xcf\xbc\xc8\x51\x7e\x01\x00\x00\xff\xff\xd3\x06\xe2\xae\x6e\x00\x00\x00" func macaron_go_modTmplBytes() ([]byte, error) { return bindataRead( @@ -728,8 +728,8 @@ func macaron_go_modTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "macaron_go_mod.tmpl", size: 110, mode: os.FileMode(0644), modTime: time.Unix(1584548272, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x74, 0x8f, 0xe6, 0x10, 0x63, 0x99, 0xaf, 0x80, 0xfd, 0x24, 0x5c, 0xe2, 0x94, 0x9a, 0x52, 0xca, 0x4d, 0x36, 0xcb, 0x69, 0xff, 0x83, 0x39, 0x69, 0xaf, 0x63, 0xea, 0x57, 0xe2, 0x8c, 0x32, 0xfa}} + info := bindataFileInfo{name: "macaron_go_mod.tmpl", size: 110, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe7, 0x28, 0x9f, 0xca, 0x84, 0x4d, 0x89, 0x12, 0xcd, 0x3d, 0x3f, 0x5f, 0x64, 0xea, 0xb, 0xcc, 0xa3, 0x51, 0x10, 0x13, 0x26, 0x3e, 0x14, 0xd3, 0xe8, 0x67, 0xb, 0xaf, 0xf9, 0xea, 0x8c, 0x86}} return a, nil } @@ -753,7 +753,7 @@ func macaron_mainTmpl() (*asset, error) { return a, nil } -var _macaron_mirc_mainTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x41\x8b\xdb\x30\x10\x85\xef\xfa\x15\x53\x1d\x8a\x0d\xc1\x22\x39\xba\xec\xb1\x2d\x3d\x6c\x13\x9a\x63\xe9\x41\xf5\x4e\x94\x21\xf6\xc8\x8c\xc7\x29\x25\xf8\xbf\x2f\x96\xbc\x49\x16\x96\xf8\x60\x34\x7a\x9f\xdf\x68\x9e\xdc\xfb\xe6\xe4\x03\x42\xe7\x89\x8d\xa1\xae\x8f\xa2\x50\x18\x00\x00\xdb\xc6\x60\x4d\x5e\x06\xd2\xe3\xf8\xb7\x6a\x62\xe7\x7c\x4b\xdd\x7f\xd7\x91\xb8\xf3\xc6\x35\x51\xd0\x3e\x46\x90\x03\x31\x2e\x46\x12\x47\xc5\x01\xec\xe5\x02\xd5\xee\x14\x7e\xfa\x0e\x61\x9a\x66\xb4\x71\x59\xcb\x6e\xe7\xf5\x23\xc6\x9d\xd7\x0b\xb6\x79\x8c\x6d\xac\x29\x8d\x71\x2e\xc4\x3a\x20\xa3\x78\x45\x08\x11\x64\xe4\x34\x70\x15\xa2\x39\x8c\xdc\xa4\xa2\x28\xe1\x92\x4c\xdb\x18\xaa\x9d\x10\x6b\xcb\x85\xbd\x7e\xd6\xc4\x17\x84\x41\xbd\xa8\x2d\x13\x86\xac\x42\x38\x40\xfd\x04\x1d\xc9\xd7\x5c\x15\x59\x8b\xbd\x26\xe1\xf3\x9c\x4f\xb5\xed\x95\x22\x0f\xd9\x7d\x7e\x7e\x8d\xfc\x1c\x5f\xb0\x5e\xca\x04\xfd\xe0\x3d\x0a\xf9\x76\x16\x56\x57\xf2\x7b\x6e\x1f\x65\x1e\xaf\xce\xe4\x75\xef\xd9\x37\x5e\x22\x7f\x40\x6f\x7b\x1d\xea\x37\x5f\xd2\xb9\xbc\x75\xbf\xb6\xdc\xf6\xba\x27\x3e\xed\xbc\x1e\x6b\xb0\x95\x0b\xc8\xf6\x66\x36\xe5\xe5\x94\xde\x74\x00\x14\x99\x47\xca\xd7\xf9\x76\x08\x2c\x96\x18\x56\x69\xe6\xf2\x4b\xc2\x3e\x3d\x01\x53\x0b\xb7\x96\x73\xa4\xdf\xbc\xfa\xb6\x40\x91\xf2\xce\xf7\x41\xd6\x07\x62\x1a\x8e\xb6\x34\x93\x59\x2e\xe9\x2e\x65\xf8\xfd\x87\x58\x51\x0e\xbe\xc1\xcb\xb4\x74\x12\xd4\x51\xf8\xbd\x74\x3b\x03\xe3\xbf\x22\xff\x17\xd5\x9e\x14\xcb\xd5\x3b\xe5\xbc\xfe\x70\x77\x73\xbf\x3b\x99\xc9\xbc\x06\x00\x00\xff\xff\xab\x55\x99\xa7\x30\x03\x00\x00" +var _macaron_mirc_mainTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xc1\x6e\xa3\x40\x0c\x86\xef\xf3\x14\xde\x39\xac\x40\x5a\x31\xda\x1c\xa9\x72\x6d\xd5\x43\x9a\xa8\x79\x80\x6a\x4a\x9c\x89\x15\xb0\x91\x19\x22\x55\x11\xef\x5e\x0d\x24\xa4\x87\x2a\x2d\x07\x64\xe3\x8f\xff\x9f\xdf\xd3\xfa\xea\xe8\x03\x42\xe3\x89\x8d\xa1\xa6\x15\x8d\x90\x19\x00\x00\x5b\x4b\xb0\x66\x2a\x03\xc5\x43\xff\x5e\x54\xd2\x38\x5f\x53\xf3\xe1\x1a\x52\x77\x5a\xb8\x4a\x14\xed\x7d\x04\x39\x10\xe3\x45\xe8\x0d\xec\xf9\x0c\xc5\xe6\x18\x5e\x7c\x83\x30\x0c\x89\xaa\x9c\x4a\x1f\xb1\xb3\x3f\x23\xee\xf4\xff\x57\xd4\xc2\x9a\xdc\x18\xe7\x82\x94\x01\x19\xd5\x47\x84\x20\xa0\x3d\x8f\x49\x8b\x20\x66\xdf\x73\x35\x36\x59\x0e\xe7\x51\xb3\x96\x50\x6c\x94\x38\xd6\x9c\xd9\xf9\xb7\x4a\x76\x08\x5d\xf4\x1a\x6d\x3e\x62\xd2\xc6\x0e\xca\x25\xfc\x4d\xe1\x8b\x75\x1b\x49\xb8\x9b\x14\xd2\xf3\xda\xf3\x4a\x76\x58\x5e\xda\x11\x7a\xe6\x2d\x2a\xf9\x3a\x0d\xfe\xcd\xe4\xd3\x64\x21\x9a\x22\x94\x13\x39\x7f\x5b\xf9\xca\xab\xf0\x37\xf4\xba\x8d\x5d\x79\xd5\xa5\x98\xda\x9b\xfb\x6c\xb9\x6e\xe3\x96\xf8\xb8\xf1\xf1\x50\x82\x2d\x5c\x40\xb6\x37\xb1\x61\x2a\x87\xf1\x4d\x7b\x40\xd5\x14\x69\xba\xab\xeb\x21\x30\x4b\x51\xf3\x87\x71\xfa\x67\x09\x4c\x35\xdc\x9c\xd2\xb6\x1e\x7d\xf4\x75\x86\xaa\xf9\x17\xb9\x3b\x6b\xdc\x13\x53\x77\xb0\xb9\x19\xcc\x67\x00\x00\x00\xff\xff\x25\x66\x4b\x77\x79\x02\x00\x00" func macaron_mirc_mainTmplBytes() ([]byte, error) { return bindataRead( @@ -768,12 +768,12 @@ func macaron_mirc_mainTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "macaron_mirc_main.tmpl", size: 816, mode: os.FileMode(0644), modTime: time.Unix(1584606341, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdd, 0x43, 0xca, 0xa2, 0x59, 0x29, 0x42, 0x20, 0xd2, 0x99, 0xc3, 0xa6, 0x75, 0x21, 0xf, 0x1, 0x76, 0x7d, 0xe, 0x17, 0x84, 0x8a, 0x3d, 0xe, 0x5e, 0x7b, 0x41, 0x3a, 0xa1, 0xc5, 0x8f, 0x94}} + info := bindataFileInfo{name: "macaron_mirc_main.tmpl", size: 633, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x86, 0xf6, 0xc7, 0xcd, 0x3d, 0xf6, 0x5e, 0x9e, 0x7e, 0x75, 0x91, 0xa0, 0x84, 0x68, 0xb0, 0x10, 0x3, 0xa, 0xac, 0xcb, 0x11, 0x53, 0x97, 0x76, 0x66, 0xa7, 0xc7, 0x89, 0x5e, 0xe4, 0x8e, 0xd2}} return a, nil } -var _macaron_mirc_routes_siteTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xcc\xb1\x8e\xc2\x30\x0c\x06\xe0\xdd\x4f\x61\x65\xba\x1b\xae\x96\x6e\xec\x86\x18\x10\x33\x2f\xd0\x10\xdc\xd6\xa2\x69\x2a\xd7\x45\x54\x88\x77\x47\x29\x61\x62\xb1\x6c\xfd\x9f\xff\xc9\x87\xab\xef\x18\x35\x2d\xc6\x33\x80\xc4\x29\xa9\xe1\x0f\x20\x22\x46\x51\x74\x9d\x58\xbf\x9c\xab\x90\x22\xf9\x41\xe2\x4a\x51\x94\x6e\xff\x0e\x7e\x01\x88\xf0\x24\xc6\x38\xe7\x21\xa3\xb1\xb6\x3e\xe4\xad\x4d\x60\xeb\xc4\x25\x35\x5d\x82\xe1\x63\xeb\xdc\xf7\x5e\xc6\x52\x5e\xbd\x8f\x26\x8a\xd6\xee\xcf\x35\x1b\x38\x8e\x17\xbe\x7f\xc0\x81\x0d\xb1\x00\x92\x9c\x50\x61\x3b\x35\x09\x03\xcf\xdf\xcc\x97\x84\xea\xe0\x8d\xbb\xa4\x6b\xfe\x79\xc2\x2b\x00\x00\xff\xff\x6f\x8d\xbd\xe2\xeb\x00\x00\x00" +var _macaron_mirc_routes_siteTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x8c\xb1\x6a\xec\x40\x0c\x45\x7b\x7d\x85\x98\xca\x2e\x9e\x05\xaf\xdc\x6e\x09\x21\xa4\xce\x0f\xec\x64\x2c\x7b\x45\x76\x34\x46\x96\x93\x98\xb0\xff\x1e\x66\x77\x52\x05\xd2\x88\x7b\x39\xe7\x6a\x89\xe9\x2d\xce\x8c\x56\x36\xe7\x15\x40\xf2\x52\xcc\xb1\x03\x44\xc4\x30\x8b\x9f\xb7\xd7\x21\x95\x4c\xf1\x22\x79\xa7\x2c\x46\xef\xff\xc3\x9f\x94\x58\x67\x51\x0e\xd0\x03\x4c\x9b\x26\x14\x15\xef\x7a\xfc\xba\xad\xee\x70\x38\x8e\xe3\xa3\xba\xed\x9d\xf2\x47\xf7\x22\xce\x7d\x0f\x57\x00\x22\xac\x05\xd7\x7a\x44\x9d\x6d\x8a\xa9\xa6\xa9\x80\xef\x0b\x37\xea\xb6\x25\x6f\x0f\x1f\xce\x51\xb4\x86\x2c\x36\xdc\xcb\x29\x8b\x1d\xc2\xbf\x70\xba\x09\xcf\x3a\xf2\xe7\x8f\xf0\xc4\x8e\xd8\x04\x92\x4a\xa8\x69\x47\x73\x49\x17\x5e\x7f\x6b\xb1\x11\x3a\xa4\xe8\x3c\x17\xdb\xeb\xe6\x0a\xdf\x01\x00\x00\xff\xff\xcc\x2d\x14\xcc\x3c\x01\x00\x00" func macaron_mirc_routes_siteTmplBytes() ([]byte, error) { return bindataRead( @@ -788,12 +788,12 @@ func macaron_mirc_routes_siteTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "macaron_mirc_routes_site.tmpl", size: 235, mode: os.FileMode(0644), modTime: time.Unix(1584548272, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0x4f, 0xfa, 0x94, 0xfc, 0xde, 0xbd, 0xc4, 0x73, 0x1c, 0x5c, 0x1, 0x6, 0xc0, 0xb1, 0x3, 0xe9, 0x45, 0x4a, 0x88, 0x1b, 0x3e, 0x78, 0x93, 0xcc, 0x91, 0x13, 0xe6, 0x80, 0x49, 0x99, 0x88}} + info := bindataFileInfo{name: "macaron_mirc_routes_site.tmpl", size: 316, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb1, 0x29, 0xe4, 0xfc, 0x25, 0x86, 0xb8, 0x52, 0xa3, 0x2d, 0xd1, 0x31, 0x36, 0xc1, 0x7e, 0x59, 0xdf, 0x65, 0x39, 0x63, 0x2, 0x5b, 0xf3, 0x2d, 0x15, 0x8e, 0xd2, 0x28, 0xb0, 0x97, 0x2d, 0x35}} return a, nil } -var _macaron_mirc_routes_site_v1Tmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xcc\xbd\x4e\xc5\x30\x0c\x05\xe0\xdd\x4f\x61\x65\x82\x81\x6b\x95\xf1\x6e\x88\x01\x31\xf3\x02\x0d\xc1\x6d\x2d\x9a\x1f\xb9\x6e\x44\x85\x78\x77\xd4\x36\xb0\xdc\xc5\xd2\xd1\xf9\x7c\x8a\x0f\x9f\x7e\x64\xac\x1d\x80\xc4\x92\xd5\xf0\x0e\x10\x11\xa3\x28\xba\x51\x6c\x5a\xdf\x2f\x21\x47\xf2\xb3\xc4\x8d\xa2\x28\xd5\x47\x07\xf7\x00\x44\xf8\x26\xc6\xb8\xec\xa7\x76\x28\xc9\x58\x07\x1f\x18\x25\x0d\x19\x6c\x2b\xdc\x80\xe9\x1a\x0c\xbf\x8f\xd9\xe7\xc9\x4b\x6a\xfb\x97\x33\xf4\x51\xf4\xea\x1e\x5c\x7f\x80\x17\xcd\x6b\xf9\x03\x67\x38\x41\xed\x9a\x78\x4d\x1f\xfc\xf5\x2f\xd8\x10\x9b\x20\xd9\x1b\x6a\xec\x49\x4d\xc2\xcc\xcb\x2d\xf3\xad\xa1\x6b\xf0\xc6\x63\xd6\x6d\xff\xf9\x81\xdf\x00\x00\x00\xff\xff\x6b\x52\x31\x87\x0c\x01\x00\x00" +var _macaron_mirc_routes_site_v1Tmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\xcc\x31\x6e\xf3\x30\x0c\x05\xe0\x9d\xa7\x20\x34\xd9\xc3\x6f\xc1\xff\x98\x2d\x28\x8a\xa2\x73\x2f\x10\x55\xa6\x1d\xa2\x11\x65\x30\xb4\x5b\xa3\xc8\xdd\x0b\xc5\x6a\x97\x02\x5d\x04\x3d\xbc\xef\x71\x0e\xf1\x2d\x4c\x84\x6b\x0f\xc0\x69\xce\x6a\xd8\x00\x22\xa2\x9b\xd8\xce\xcb\x6b\x17\x73\xf2\xe1\xc2\x69\xf3\x89\xd5\xaf\xff\xdd\x9f\xad\x27\x99\x58\xc8\x41\x0b\x30\x2e\x12\x91\x85\xad\x69\xf1\xf3\xbe\xda\xcb\xee\x38\x0c\x8f\x62\xba\x35\x42\xef\xcd\x0b\x1b\xb5\x2d\xdc\x00\xbc\xc7\x12\xf0\x5a\x9e\xb5\x47\x16\x23\x1d\x43\x24\x64\x19\x33\xd8\x36\x53\x05\xa6\x4b\xb4\x7a\xf3\xe1\x1c\x58\xca\x27\xb1\x76\x7b\x38\x25\xd6\x83\xfb\xe7\x4e\x77\xf0\xa4\x79\x99\xbf\xc1\x1e\x76\xb0\xf6\x55\x3c\xcb\x40\x1f\x3f\x82\x0c\xb1\x0a\xcf\xa5\xf1\x95\x1d\xd5\x38\x5e\xe8\xfa\x9b\x85\xda\xf8\x43\x0c\x46\x53\xd6\xad\x6c\x6e\xf0\x15\x00\x00\xff\xff\xf3\x95\x67\x4d\x5d\x01\x00\x00" func macaron_mirc_routes_site_v1TmplBytes() ([]byte, error) { return bindataRead( @@ -808,12 +808,12 @@ func macaron_mirc_routes_site_v1Tmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "macaron_mirc_routes_site_v1.tmpl", size: 268, mode: os.FileMode(0644), modTime: time.Unix(1584548272, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2, 0x2c, 0x70, 0x3a, 0xa, 0x23, 0xcb, 0x84, 0xc8, 0xda, 0x13, 0x6b, 0x56, 0xd5, 0xda, 0x60, 0xbe, 0xca, 0x57, 0xf3, 0xe2, 0xec, 0x45, 0x4f, 0x3b, 0x6e, 0xa1, 0x20, 0x63, 0x32, 0x38, 0x74}} + info := bindataFileInfo{name: "macaron_mirc_routes_site_v1.tmpl", size: 349, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdb, 0x8d, 0xaf, 0x66, 0x41, 0x48, 0x83, 0xfb, 0xe1, 0x89, 0x44, 0x2a, 0xd2, 0x28, 0xd, 0xc2, 0xe9, 0xa, 0x24, 0xd5, 0xa, 0xe9, 0xed, 0x86, 0xa2, 0xa4, 0xba, 0x75, 0x94, 0xb8, 0xb, 0xb}} return a, nil } -var _macaron_mirc_routes_site_v2Tmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xcc\xc1\x4a\xc7\x30\x0c\x06\xf0\x7b\x9e\x22\xf4\xa4\x97\x05\x7a\xdc\x4d\x3c\x88\x67\x5f\x60\xb5\x66\x33\xb8\xae\x25\xcb\x8a\x43\x7c\x77\xd9\xac\xf2\x87\x5d\x02\xe1\xfb\x7d\x5f\x09\xf1\x23\x4c\x8c\xd5\x03\x48\x2a\x59\x0d\xef\x00\x11\x31\x89\xa2\x9b\xc4\xde\xb7\xd7\x2e\xe6\x44\x61\x96\xb4\x53\x12\xa5\xea\x1d\xdc\x03\x10\xe1\x8b\x18\xe3\x7a\x9c\xea\x51\x16\x63\x1d\x43\x64\x94\x65\xcc\x60\x7b\xe1\x06\x4c\xb7\x68\xf8\x75\xce\x3e\x69\xde\x4a\xdb\xef\x7e\x9f\x21\x89\xf6\xae\x7a\x37\x9c\xe2\x79\x79\xe3\xcf\x7f\xc1\x86\xd8\x04\xc9\x91\x50\x63\x0f\x6a\x12\x67\x5e\xaf\x2c\xb4\x84\xfa\x18\x8c\xa7\xac\xfb\x5f\xe7\xb1\xfd\xd7\xce\xad\xfc\x06\xf8\x09\x00\x00\xff\xff\x5b\x10\x23\x12\x16\x01\x00\x00" +var _macaron_mirc_routes_site_v2Tmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\xcc\xc1\x6a\xc3\x30\x0c\x06\xe0\xbb\x9e\x42\xf8\x94\x5c\x2a\xc8\xb1\xb7\x32\xc6\xd8\x79\x2f\x50\xcf\x51\x32\xb1\x5a\x0e\xaa\x92\x2d\x8c\xbe\xfb\x48\xeb\x8d\x41\x61\x17\xe3\x9f\xff\xfb\x35\xc5\xf4\x1e\x47\xc6\xa5\x03\x90\x3c\x15\x73\x6c\x00\x11\x31\x8c\xe2\x6f\xf3\xeb\x2e\x95\x4c\xf1\x24\x79\xa5\x2c\x46\x4b\x17\xfe\x6d\x89\x75\x14\xe5\x00\x2d\xc0\x30\x6b\x42\x51\xf1\xa6\xc5\xaf\xeb\xea\x56\xee\x0e\x7d\xff\xa8\x6e\x6b\xa3\xfc\xd1\xbc\x88\x73\xdb\xc2\x05\x80\x08\xb7\x80\xe7\xed\x59\x3a\x14\x75\xb6\x21\x26\x46\xd1\xa1\x80\xaf\x13\x57\xe0\x36\x27\xaf\x37\x9f\xac\xcc\xd3\xf6\xc9\x62\xbb\x5b\x38\x66\xb1\x7d\x58\xba\x70\xbc\x8a\x67\xed\xf9\xf3\x57\xb0\x23\x56\x41\xb2\x35\x54\xd9\xc1\x5c\xd2\x89\xcf\xf7\x2c\xd6\x86\xf6\x29\x3a\x8f\xc5\xd6\x9f\xcd\x43\xcd\xf7\x9b\xbf\xf2\x02\xdf\x01\x00\x00\xff\xff\x2c\x0c\xd5\xb0\x66\x01\x00\x00" func macaron_mirc_routes_site_v2TmplBytes() ([]byte, error) { return bindataRead( @@ -828,8 +828,8 @@ func macaron_mirc_routes_site_v2Tmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "macaron_mirc_routes_site_v2.tmpl", size: 278, mode: os.FileMode(0644), modTime: time.Unix(1584548272, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xce, 0xda, 0xf5, 0x1, 0xac, 0xa9, 0x50, 0x7c, 0x7e, 0x5f, 0xfa, 0x68, 0x71, 0x2, 0x7b, 0x32, 0x2a, 0x8c, 0xf4, 0x6e, 0x60, 0xab, 0x47, 0x25, 0x99, 0xce, 0xf4, 0x8d, 0x70, 0x57, 0xfd, 0x28}} + info := bindataFileInfo{name: "macaron_mirc_routes_site_v2.tmpl", size: 358, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe0, 0x2, 0x21, 0xb6, 0xad, 0x80, 0xee, 0xad, 0x51, 0xf0, 0x30, 0xa9, 0x20, 0x4f, 0x8, 0x22, 0x74, 0x6e, 0x5c, 0x2a, 0xbb, 0x9c, 0x26, 0x4, 0x2a, 0xa4, 0xff, 0x41, 0x20, 0xd5, 0x5b, 0x90}} return a, nil } @@ -853,7 +853,7 @@ func makefileTmpl() (*asset, error) { return a, nil } -var _mux_go_modTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xca\x31\x0a\x42\x31\x0c\x06\xe0\x3d\xa7\xf8\x47\x5d\x52\x5b\x04\x6f\x21\x5e\xa1\x6a\xa9\xc1\x86\x60\x30\x45\x79\xf4\xee\xee\xee\x9f\xda\x3d\x46\xc3\xb6\x81\x2f\xcf\x7e\xae\xda\xb0\x16\x51\x37\x64\xce\x85\xc8\xdb\x2b\xc4\x1b\x76\x04\x00\x5d\xde\x8f\xb8\xf2\xcd\x34\xd5\x21\xfa\x4d\x2a\x9e\x66\xc1\x2c\x9c\xf9\xf0\x4f\xba\xb9\x8c\x51\x93\xc6\x07\x33\xf3\x89\x8f\xb4\xa7\x5f\x00\x00\x00\xff\xff\xcb\xfa\xb2\xb3\x71\x00\x00\x00" +var _mux_go_modTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xca\x31\x0a\x42\x31\x0c\x06\xe0\x3d\xa7\xf8\x47\x5d\x52\x5b\x04\x6f\x21\x5e\xa1\x6a\xa9\xc1\x86\x60\x30\x45\x79\xf4\xee\xee\xee\x9f\xda\x3d\x46\xc3\xb6\x81\x2f\xcf\x7e\xae\xda\xb0\x16\x51\x37\x64\xce\x85\xc8\xdb\x2b\xc4\x1b\x76\x04\x00\x5d\xde\x8f\xb8\xf2\xcd\x34\xd5\x21\xfa\x4d\x2a\x9e\x66\xc1\x2c\x5c\xf8\xf0\x4f\xba\xb9\x8c\x51\x93\xc6\x07\x33\xf3\x89\x8f\xb4\xa7\x5f\x00\x00\x00\xff\xff\x43\x4a\x0e\x99\x71\x00\x00\x00" func mux_go_modTmplBytes() ([]byte, error) { return bindataRead( @@ -868,8 +868,8 @@ func mux_go_modTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "mux_go_mod.tmpl", size: 113, mode: os.FileMode(0644), modTime: time.Unix(1584548470, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6e, 0xb8, 0xf4, 0x9d, 0xed, 0xb5, 0x34, 0xcd, 0x99, 0x59, 0xea, 0x9b, 0x7f, 0xb7, 0x6a, 0x5d, 0x91, 0xbb, 0x3d, 0x55, 0x2c, 0x49, 0xd0, 0x7, 0xc4, 0xd5, 0xa0, 0x18, 0x74, 0x20, 0xab, 0xf3}} + info := bindataFileInfo{name: "mux_go_mod.tmpl", size: 113, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6e, 0xd6, 0x9b, 0x99, 0xf4, 0x6a, 0xee, 0x6d, 0xdb, 0x12, 0xb7, 0x62, 0x69, 0xf8, 0xfc, 0xa4, 0xfc, 0x7c, 0x9, 0x3e, 0x63, 0x48, 0xe6, 0x65, 0x4b, 0xf5, 0x5, 0x2c, 0xa6, 0xea, 0x9e, 0xc8}} return a, nil } @@ -893,7 +893,7 @@ func mux_mainTmpl() (*asset, error) { return a, nil } -var _mux_mirc_mainTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x41\x8b\xdb\x30\x10\x85\xef\xfa\x15\x53\x1d\x8a\x0d\xc1\x22\x39\xba\xec\xb1\x2d\x3d\x6c\x13\x9a\x63\xe9\x41\xf5\x4e\x94\x21\xf6\xc8\x8c\xc7\x69\x4b\xf0\x7f\x2f\x96\xbc\x49\x16\x96\xf8\x60\x34\x7a\x9f\xdf\x68\x9e\xdc\xfb\xe6\xe4\x03\x42\xe7\x89\x8d\xa1\xae\x8f\xa2\x50\x18\x00\x00\xdb\xc6\x60\x4d\x5e\x06\xd2\xe3\xf8\xbb\x6a\x62\xe7\x7c\x4b\xdd\x3f\xd7\x91\xb8\xf3\xc6\x35\x51\xd0\x3e\x46\x90\x03\x31\x2e\x46\x12\x47\xc5\x01\xec\xe5\x02\xd5\xee\x14\xbe\xfb\x0e\x61\x9a\x66\xb4\x71\x59\xcb\x6e\xe7\xf5\x23\xc6\x9d\xd7\x0b\xb6\x79\x8c\x6d\xac\x29\x8d\x71\x2e\xc4\x3a\x20\xa3\x78\x45\x08\x11\x64\xe4\x34\x70\x15\xa2\x39\x8c\xdc\xa4\xa2\x28\xe1\x92\x4c\xdb\x18\xaa\x9d\x10\x6b\xcb\x85\xbd\x7e\xd6\xc4\x17\x84\x41\xbd\xa8\x2d\x13\x86\xac\x42\x38\x40\xfd\x04\x1d\xc9\xe7\x5c\x15\x59\x8b\xbd\x26\xe1\xe3\x9c\x4f\xb5\xed\x95\x22\x0f\xd9\x7d\x7e\x7e\x8c\xfc\x1c\x5f\xb0\x5e\xca\x04\x7d\xe3\x3d\x0a\xf9\x76\x16\x56\x57\xf2\x6b\x6e\x1f\x65\x1e\xaf\xce\xe4\x75\xef\x79\xfc\xfb\x0e\xb9\xed\x75\xa8\x5f\x3d\x49\xe7\xf2\xd6\xf9\xda\x6e\xdb\xeb\x9e\xf8\xb4\xf3\x7a\xac\xc1\x56\x2e\x20\xdb\x9b\xd9\x94\x97\x53\x7a\xd3\x01\x50\x64\x1e\x27\x5f\xe5\xeb\x01\xb0\x58\x22\x58\xa5\x79\xcb\x4f\x09\xfb\xf0\x04\x4c\x2d\xdc\x5a\xce\x71\x7e\xf1\xea\xdb\x02\x45\xca\x3b\xdf\x07\x39\x1f\x88\x69\x38\xda\xd2\x4c\x66\xb9\xa0\xbb\x84\xe1\xe7\x2f\x62\x45\x39\xf8\x06\x2f\xd3\xd2\x49\x50\x47\xe1\xb7\xd2\xed\x0c\x8c\x7f\x8a\xfc\x4f\x54\x7b\x52\x2c\x57\x6f\x94\xf3\xfa\xdd\xdd\xcd\xfd\xee\x64\x26\xf3\x3f\x00\x00\xff\xff\x87\x05\x68\x99\x2c\x03\x00\x00" +var _mux_mirc_mainTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xc1\x6e\xa3\x40\x0c\x86\xef\xf3\x14\xde\x39\xac\x40\x5a\x31\xda\x1c\x59\xe5\xba\x55\x0f\x69\xa2\xe6\x01\xaa\x29\x71\x26\x56\xc0\x83\x8c\x89\x5a\x45\xbc\x7b\x35\x90\x90\x1e\xaa\xb4\x1c\x90\x8d\x3f\xfe\x7f\x7e\x4f\xeb\xab\xa3\x0f\x08\x8d\x27\x36\x86\x9a\x36\x8a\x42\x66\x00\x00\x6c\x1d\x83\x35\x53\x19\x48\x0f\xfd\x6b\x51\xc5\xc6\xf9\x9a\x9a\x77\xd7\x90\xb8\xd3\xc2\x55\x51\xd0\xde\x47\x90\x03\x31\x5e\x84\x5e\xc0\x9e\xcf\x50\x6c\x8e\xe1\xc9\x37\x08\xc3\x90\xa8\xca\x49\xec\x15\x3b\xfb\x3d\xe2\x4e\x7f\x7f\x44\x2d\xac\xc9\x8d\x71\x2e\xc4\x32\x20\xa3\x78\x45\x08\x11\xa4\xe7\x31\x69\x11\xa2\xd9\xf7\x5c\x8d\x4d\x96\xc3\x79\xd4\xac\x63\x28\x36\x42\xac\x35\x67\x76\xfe\xad\x8a\x3b\x84\x4e\xbd\xa8\xcd\x47\x2c\xb6\xda\x41\xb9\x84\xdf\x29\x7c\xb1\x6e\x95\x22\x77\x93\x42\x7a\x9e\x7b\x5e\xc5\x1d\x96\x97\x76\x84\x1e\x79\x8b\x42\xbe\x4e\x83\x3f\x33\xf9\x30\x59\x44\x49\x11\xca\x89\x9c\xbf\xad\xfa\xb7\x2f\xc8\x75\xab\x5d\x79\xd5\x24\x4d\xed\xcd\x79\xb6\x5b\xb7\xba\x25\x3e\x6e\xbc\x1e\x4a\xb0\x85\x0b\xc8\xf6\x26\x36\x4c\xe5\x30\xbe\x69\x0f\x28\x92\xe2\x4c\xf7\x74\x3d\x00\x66\x29\x66\xfe\x6f\x9c\xfe\x5a\x02\x53\x0d\x37\xa7\xb4\xa9\xff\x5e\x7d\x9d\xa1\x48\xfe\x49\xee\xce\x0a\xf7\xc4\xd4\x1d\x6c\x6e\x06\xf3\x11\x00\x00\xff\xff\xf4\xd5\x60\xd2\x75\x02\x00\x00" func mux_mirc_mainTmplBytes() ([]byte, error) { return bindataRead( @@ -908,12 +908,12 @@ func mux_mirc_mainTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "mux_mirc_main.tmpl", size: 812, mode: os.FileMode(0644), modTime: time.Unix(1584606341, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x82, 0xf3, 0x96, 0x4c, 0xe6, 0x20, 0xb4, 0x43, 0x55, 0xad, 0x46, 0x29, 0x59, 0xfd, 0x4d, 0xca, 0xbc, 0xa6, 0xa4, 0x27, 0xce, 0x77, 0xf0, 0xb0, 0x5d, 0xba, 0x22, 0xe9, 0xea, 0xaf, 0x13, 0x5e}} + info := bindataFileInfo{name: "mux_mirc_main.tmpl", size: 629, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x67, 0xa1, 0xca, 0x85, 0xb6, 0xde, 0xc0, 0xcb, 0xd6, 0x89, 0x6d, 0x3b, 0xb7, 0xd2, 0x6b, 0x98, 0xa5, 0xc5, 0x3, 0x37, 0xeb, 0xe5, 0xb6, 0xd0, 0x60, 0xa8, 0x69, 0xc5, 0xd8, 0xb7, 0x8f, 0x46}} return a, nil } -var _mux_mirc_routes_siteTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xce\xcf\x4a\xc4\x30\x10\x06\xf0\x7b\x9e\x62\xe8\x61\x51\x64\x3b\xe2\xcd\x85\x22\xe2\x41\x3c\x7b\x14\xa1\x69\x3a\xed\x0e\x36\x4d\x99\x4e\x65\x4b\xc8\xbb\x4b\xb7\x11\x04\x2f\xf9\xc3\xf7\x9b\x8f\x99\xac\xfb\xb2\x3d\x81\x84\x45\x69\x36\x86\xfd\x14\x44\xe1\xc6\x00\x00\x78\x16\x28\x7a\xd6\xf3\xd2\x94\x2e\x78\xb4\x03\xfb\x15\x3d\x0b\x7e\x3f\x14\xe6\xd6\x18\x44\x78\x67\x25\x98\xb7\x83\x47\x25\xe9\xac\xdb\x5e\x5d\x30\xba\x4e\x94\x53\x95\xc5\x29\xc4\x6b\xe7\xcb\xd9\xf2\x98\xcb\xcb\xfd\x53\x7b\x96\x53\x71\x2c\xea\x2b\x78\x1b\x5b\xba\xfc\x82\x57\x52\x80\x0c\x90\xb7\x04\x33\x7b\x16\x65\x37\xd0\xfc\x9f\x61\x9c\x97\xa6\x0d\xde\xf2\x98\x4a\xba\x58\x3f\x0d\xb4\xaf\x9f\x47\x30\x3a\xab\xd4\x07\x59\x13\x46\x6e\x4f\x1f\xf7\xc7\xc7\xcf\xbb\xf4\xd4\xf1\xa0\x24\x55\xdc\xef\x74\xe8\x42\xa8\x1a\x2b\x07\x6e\xab\x3f\xac\xa8\x4d\x32\x3f\x01\x00\x00\xff\xff\x5f\xfc\xc1\x15\x37\x01\x00\x00" +var _mux_mirc_routes_siteTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x8f\x41\x4b\xc4\x30\x10\x85\xef\xf3\x2b\x86\x1e\x96\x16\xd9\x46\xbc\xb9\xb0\xc8\x22\x22\x9e\x3d\x8a\xb0\xd9\x74\xda\x1d\x6c\x92\x32\x9d\xea\x96\x92\xff\x2e\xdd\x56\x10\x04\x2f\xc9\x7b\x7c\xdf\x0b\xa4\xb3\xee\xc3\x36\x84\x12\x07\xa5\x1e\x80\x7d\x17\x45\x31\x07\x44\xc4\xac\x61\x3d\x0f\xa7\xd2\x45\x6f\x6c\xcb\x7e\x34\x9e\xc5\x7c\xde\x65\xff\x52\x43\xa1\xe1\x40\x19\x14\x00\xf5\x10\x1c\x72\x60\xcd\x0b\x9c\xae\xab\x05\x96\x87\xaa\x7a\x0a\x2a\x63\x1e\xe8\x2b\x7f\x65\xa5\xa2\x80\x04\x60\x0c\xce\x05\xfb\xf9\xe0\xa0\x24\xb5\x75\x73\xaa\x23\xe8\xd8\xd1\x4a\x55\x06\xa7\xeb\x83\x8f\x67\xcb\x61\x0e\x9e\xa5\x5c\xca\xd1\xb3\xec\xb2\x6d\x76\xbc\x0a\x2f\xa1\xa2\xcb\x8f\xf0\x4c\x8a\xb8\x0a\x86\x67\x62\x56\xed\x20\xca\xae\xa5\xfe\xaf\x66\xa6\x7e\x38\x55\xd1\x5b\x0e\xa9\xa4\x8b\xf5\x5d\x4b\xcb\xaf\xd7\x89\x99\x9c\x55\x6a\xa2\x8c\xc9\x4c\x5c\xed\xde\x6e\xb7\xf7\xef\x37\xe9\xa1\xe6\x56\x49\xf6\xd3\x72\xa7\x4d\x1d\xe3\xfe\x64\x65\xc3\xd5\xfe\x97\x96\x1d\x21\xc1\x77\x00\x00\x00\xff\xff\x27\x1b\x93\xf1\x88\x01\x00\x00" func mux_mirc_routes_siteTmplBytes() ([]byte, error) { return bindataRead( @@ -928,12 +928,12 @@ func mux_mirc_routes_siteTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "mux_mirc_routes_site.tmpl", size: 311, mode: os.FileMode(0644), modTime: time.Unix(1583565237, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x72, 0xec, 0x60, 0x67, 0x48, 0xcd, 0xbe, 0xa1, 0x74, 0xf8, 0x5f, 0x84, 0x72, 0xb3, 0x1d, 0x5b, 0xe3, 0x7a, 0xba, 0xaa, 0xb0, 0x48, 0xbc, 0xfe, 0x32, 0xe2, 0xc1, 0x2f, 0x19, 0x44, 0x28, 0xf7}} + info := bindataFileInfo{name: "mux_mirc_routes_site.tmpl", size: 392, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xec, 0x33, 0xa2, 0xdf, 0x97, 0x49, 0xf1, 0x0, 0x56, 0x5f, 0x3d, 0x69, 0x98, 0xc, 0x4a, 0x41, 0x2e, 0x89, 0xbb, 0x49, 0x25, 0x5d, 0x1, 0xa0, 0x5d, 0xca, 0xe5, 0x3e, 0xd1, 0x99, 0x16, 0xdb}} return a, nil } -var _mux_mirc_routes_site_v1Tmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xcf\xc1\x4a\xc4\x30\x10\x06\xe0\x7b\x9e\x62\xe8\x61\x51\x64\x77\xac\x37\x17\x8a\x88\x07\xf1\xec\x51\x84\xa6\xe9\xb4\x3b\xd8\x34\x65\x3a\x2d\x5b\x4a\xdf\x5d\x76\x13\x45\xf0\x92\xf0\x33\xdf\xfc\x30\x83\x75\x5f\xb6\x25\x98\x73\x63\xd8\x0f\x41\x14\x6e\x0c\x00\x80\x67\x81\xac\x65\x3d\x4d\xd5\xc1\x05\x8f\xb6\x63\xbf\xa0\x67\xc1\xf9\x21\x33\xb7\xc6\x20\xc2\x3b\x2b\xc1\x78\x79\xe6\x1c\xb8\x57\x92\xc6\x3a\x02\xee\x9b\x60\x74\x19\x28\x01\x95\xc9\x29\xac\xd7\xda\x97\x93\xe5\x3e\xf5\x1f\x62\x28\x3d\xcb\x31\xdb\x67\xe5\x15\xbc\x4a\x98\x86\x1f\x10\x43\x04\x73\x9e\xc4\x5b\x5f\xd3\xf9\x57\x90\x02\x24\x81\x7c\x99\x60\x62\xcf\xa2\xec\x3a\x1a\xff\x33\x5c\xc7\xa9\xaa\x83\xb7\xdc\x6f\x07\x3a\x5b\x3f\x74\x14\x6f\x4c\x2b\xb8\x3a\xab\xd4\x06\x59\x36\x5c\xb9\x3e\x7e\xdc\xef\x1f\x3f\xef\xb6\xa7\x86\x3b\x25\x29\xd6\xf8\x6f\xbb\x26\x84\xa2\xb2\xb2\xe3\xba\xf8\xc3\xb2\xd2\x6c\xe6\x3b\x00\x00\xff\xff\x5c\xe6\xb8\xe5\x58\x01\x00\x00" +var _mux_mirc_routes_site_v1Tmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\xd0\xc1\x4a\xc3\x40\x10\x06\xe0\xfb\x3c\xc5\x90\x43\x49\x90\x66\xad\x37\x0b\x45\x8a\x88\x78\xf6\x28\x42\xb7\x9b\x49\x3a\x98\xdd\x0d\xd3\x49\x6c\x08\x79\x77\x49\x13\x45\x10\xbc\xec\xee\xcf\xff\xcd\x1e\xa6\xb1\xee\xc3\x56\x84\xdd\x06\x80\x7d\x13\x45\x31\x05\x44\xc4\xa4\x62\x3d\xb5\xc7\xdc\x45\x6f\x6c\xcd\xbe\x37\x9e\xc5\x74\x77\xc9\xbf\xad\xa1\x50\x71\xa0\x04\x32\x80\xb2\x0d\x0e\x39\xb0\xa6\x19\x0e\xd7\xa9\xb9\xcc\xf7\x45\xf1\x14\x54\xfa\x34\xd0\x67\xfa\xca\x4a\x59\x06\x23\x80\x31\x38\x05\x3c\x4f\x47\xb7\x41\x0e\x4a\x52\x5a\x47\xc8\xa1\x8c\xa0\x7d\x43\x0b\x50\x69\x9d\x2e\x7f\x3e\x9e\x2c\x87\xe9\xe1\x59\xf2\x39\x1c\x3c\xcb\x36\x59\x27\x87\x2b\x78\x96\xd8\x36\xdf\x60\x0e\x33\xe8\x36\x8b\x78\x09\x05\x5d\x7e\x04\x29\xe2\x22\x0c\x4f\x8d\x59\xd8\x5e\x94\x5d\x4d\xe7\xbf\xcc\x0c\xe7\xf6\x58\x44\x6f\x39\x8c\x39\x5d\xac\x6f\x6a\x9a\x57\xb3\x8c\x98\xc1\x59\xa5\x2a\x4a\x3f\x9a\x81\x8b\xed\xdb\xed\xfa\xfe\xfd\x66\x7c\x28\xb9\x56\x92\xdd\x30\xdf\xe3\xaa\x8c\x71\x77\xb4\xb2\xe2\x62\xf7\x8b\x25\x07\x18\xe1\x2b\x00\x00\xff\xff\x96\x75\x6f\x28\xa9\x01\x00\x00" func mux_mirc_routes_site_v1TmplBytes() ([]byte, error) { return bindataRead( @@ -948,12 +948,12 @@ func mux_mirc_routes_site_v1Tmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "mux_mirc_routes_site_v1.tmpl", size: 344, mode: os.FileMode(0644), modTime: time.Unix(1583565237, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x17, 0xc6, 0xb9, 0x30, 0xa1, 0x9c, 0x1e, 0x88, 0xaa, 0xfa, 0xd, 0xab, 0x52, 0xd, 0x89, 0xfa, 0x44, 0xcb, 0x14, 0x36, 0x1a, 0xaa, 0x6c, 0xb4, 0x3f, 0x70, 0xf1, 0xb9, 0x2b, 0x14, 0x43, 0xf6}} + info := bindataFileInfo{name: "mux_mirc_routes_site_v1.tmpl", size: 425, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd8, 0x99, 0x54, 0x22, 0xf5, 0x82, 0xdf, 0x79, 0x41, 0xee, 0x18, 0x93, 0x57, 0x4b, 0x12, 0xa7, 0xe, 0xc4, 0xdd, 0x88, 0x19, 0xa4, 0x41, 0x22, 0xe3, 0x9f, 0x75, 0x5f, 0xf9, 0x39, 0xf6, 0x93}} return a, nil } -var _mux_mirc_routes_site_v2Tmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\xc1\x4a\xc4\x40\x0c\x86\xef\xf3\x14\xa1\x87\x45\x11\x1b\xe9\xcd\x85\x22\xe2\x41\x3c\x7b\x14\x61\xa7\xd3\xb4\x06\x3b\x9d\x92\xa6\x65\x4b\x99\x77\x97\x6e\x47\x11\xf6\x32\x43\xc8\x97\xef\x4f\x06\xeb\xbe\x6d\x4b\x30\x17\xc6\xb0\x1f\x82\x28\xdc\x18\x00\x00\xcf\x02\x59\xcb\xfa\x35\x55\xb9\x0b\x1e\x6d\xc7\x7e\x41\xcf\x82\x73\x91\x99\x5b\x63\x10\xe1\x9d\x95\x60\xdc\x9e\xb9\x00\xee\x95\xa4\xb1\x8e\x80\xfb\x26\x18\x5d\x06\x4a\x80\xca\xe4\x14\xd6\x8b\xf6\x55\xc2\x34\x24\x7f\xbe\x17\x27\xcf\x72\xcc\xe6\x22\x3b\x5d\x88\xb7\xbe\xa6\xf3\x1f\x41\x0a\x90\x08\xe4\xad\x83\x09\x7b\x16\x65\xd7\xd1\x78\x8d\xe1\x3a\x4e\x55\x1d\xbc\xe5\x3e\xe6\x74\xb6\x7e\xe8\x68\x3f\x21\x8d\xe0\xea\xac\x52\x1b\x64\x89\xb8\x72\x7d\xfc\x78\xb8\x7f\xfc\xbc\x8b\x4f\x0d\x77\x4a\x52\xae\xfb\x1f\x0f\x4d\x08\x65\x65\xe5\xc0\x75\xf9\x0f\x4b\xf9\x2f\x49\x71\x9d\xff\x2b\xdf\x36\x8d\xc6\xfc\x04\x00\x00\xff\xff\x5e\x32\x7c\x4c\x62\x01\x00\x00" +var _mux_mirc_routes_site_v2Tmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x8f\x41\x4b\xc4\x30\x10\x85\xef\xf9\x15\x43\x0f\x4b\x8b\xd8\x48\x6f\x2e\x2c\xb2\x88\x88\x67\x8f\x22\x6c\x36\x9d\xd6\xc1\x26\x29\xb3\xd3\xba\xa5\xe4\xbf\x4b\xb7\x51\x84\x05\x2f\x49\x86\xf7\xbd\xf7\x32\xbd\xb1\x9f\xa6\x45\x18\x2b\xa5\xc8\xf5\x81\x05\x72\x05\x00\x90\xb5\x24\x1f\xc3\xb1\xb4\xc1\x69\xd3\x91\x9b\xb4\x23\xd6\x63\x95\xfd\xab\x6a\xf4\x2d\x79\xcc\x54\xa1\x54\x33\x78\x0b\xe4\x49\xf2\x02\xe6\x8b\x6b\x15\xcb\x7d\x5d\x3f\x79\xe1\x29\xf7\xf8\x95\xbf\x92\x60\x51\xa8\xa8\x94\xd6\xb0\x0c\x70\x5a\x8e\xb1\x02\xf2\x82\xdc\x18\x8b\x40\xbe\x09\x4a\xa6\x1e\x13\x20\x3c\x58\x49\x99\xcf\x1c\x86\x7e\x79\x38\xe2\x72\x1d\x0e\x8e\x78\x9b\x8d\x55\x76\xb8\x10\x2f\xbe\xc6\xf3\x2f\x81\x02\x90\x08\x4d\x8b\xa2\x13\xb6\x67\x21\xdb\xe1\xe9\x1a\xd3\xf3\x69\x38\xd6\xc1\x19\xf2\xb1\xc4\xb3\x71\x7d\x87\xeb\xe6\xc9\xa2\x67\x6b\x04\xdb\xc0\x53\xd4\x33\xd5\xdb\xb7\xbb\xdb\xfb\xf7\x9b\xf8\xd0\x50\x27\xc8\xbb\x79\xbd\xe3\xa6\x09\x61\x77\x34\xbc\xa1\x7a\xf7\x07\x4b\xfd\x8f\x29\xe2\xba\xff\x27\x7c\xf9\x69\x54\xdf\x01\x00\x00\xff\xff\xcc\x0e\x94\x55\xb2\x01\x00\x00" func mux_mirc_routes_site_v2TmplBytes() ([]byte, error) { return bindataRead( @@ -968,8 +968,8 @@ func mux_mirc_routes_site_v2Tmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "mux_mirc_routes_site_v2.tmpl", size: 354, mode: os.FileMode(0644), modTime: time.Unix(1583565237, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3a, 0xb4, 0xc1, 0xc1, 0xf3, 0x2a, 0xa1, 0xe3, 0xb3, 0x2f, 0xcc, 0x2, 0xb1, 0x37, 0x1a, 0x41, 0x81, 0x65, 0xf7, 0x87, 0x9a, 0xe, 0x7c, 0xb, 0xba, 0xd8, 0x16, 0xb3, 0xaa, 0xe2, 0x86, 0xed}} + info := bindataFileInfo{name: "mux_mirc_routes_site_v2.tmpl", size: 434, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa0, 0xf5, 0xf7, 0x85, 0x90, 0x42, 0x45, 0x59, 0xa1, 0x19, 0x85, 0x14, 0x75, 0x13, 0xee, 0x41, 0xb6, 0xee, 0xd, 0xa8, 0x72, 0x43, 0xdf, 0xf3, 0xb0, 0xc3, 0x95, 0x35, 0xd, 0x41, 0xd4, 0x62}} return a, nil } diff --git a/mirc/version/version.go b/mirc/version/version.go index 8d03987..ef692c0 100644 --- a/mirc/version/version.go +++ b/mirc/version/version.go @@ -16,6 +16,6 @@ var ( // AppVer version of Mirc var AppVer = semver.Version{ Major: 2, - Minor: 1, + Minor: 2, Patch: 0, }