From 84e439e7cc84e1045e4b8816d4ec2d5465098c49 Mon Sep 17 00:00:00 2001 From: Craine Runton Date: Tue, 15 Sep 2020 14:52:22 -0500 Subject: [PATCH] Refactor "Standards" to "Frameworks" --- example/templates/index.ace | 10 +- go.sum | 1 + internal/cli/todo.go | 4 +- internal/model/{standard.go => framework.go} | 2 +- internal/model/fs.go | 18 +- internal/model/model.go | 12 +- internal/path/path.go | 6 +- internal/render/controller.go | 14 +- internal/render/document.go | 2 +- internal/theme/themes_bindata.go | 189 ++++++++++++------ themes/comply-blank/frameworks/.gitkeep | 0 themes/comply-blank/templates/index.ace | 10 +- themes/comply-soc2/README.md | 4 +- .../{standards => frameworks}/README.md | 4 +- .../{standards => frameworks}/TSC-2017.yml | 0 themes/comply-soc2/standards/.gitkeep | 0 themes/comply-soc2/templates/index.ace | 10 +- 17 files changed, 180 insertions(+), 106 deletions(-) rename internal/model/{standard.go => framework.go} (98%) create mode 100644 themes/comply-blank/frameworks/.gitkeep rename themes/comply-soc2/{standards => frameworks}/README.md (91%) rename themes/comply-soc2/{standards => frameworks}/TSC-2017.yml (100%) create mode 100644 themes/comply-soc2/standards/.gitkeep diff --git a/example/templates/index.ace b/example/templates/index.ace index 53e2951..a13aace 100644 --- a/example/templates/index.ace +++ b/example/templates/index.ace @@ -66,7 +66,7 @@ html lang=en a onclick="javascript:show('procedures')" Procedures li.top-nav.standards strong - a onclick="javascript:show('standards')" Standards + a onclick="javascript:show('frameworks')" Frameworks / li.top-nav.evidence / a onclick="javascript:show('evidence')" Evidence Vault #overview.section.top-nav.container.content @@ -79,7 +79,7 @@ html lang=en p.subtitle.is-3.has-text-centered Control Tracking .column.has-text-centered div - p.heading Satisfied Controls + p.heading Satisfied Criteria p.title {{.Stats.ControlsSatisfied}} .column.has-text-centered @@ -191,8 +191,8 @@ html lang=en blockquote h3 p - strong Standards - | specify the controls satisfied by the compliance program. + strong Frameworks + | specify the Framework Criteria satisfied by the compliance program. table.table.is-size-4.is-fullwidth thead tr @@ -234,4 +234,4 @@ html lang=en show(destination) } } - } \ No newline at end of file + } diff --git a/go.sum b/go.sum index 053806d..45f8001 100644 --- a/go.sum +++ b/go.sum @@ -430,6 +430,7 @@ github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFR github.com/rogpeppe/go-internal v1.5.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc= github.com/russross/blackfriday v1.5.3-0.20200218234912-41c5fccfd6f6 h1:tlXG832s5pa9x9Gs3Rp2rTvEqjiDEuETUOSfBEiTcns= github.com/russross/blackfriday v1.5.3-0.20200218234912-41c5fccfd6f6/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g= +github.com/russross/blackfriday/v2 v2.0.1 h1:lPqVAte+HuHNfhJ/0LC98ESWRz8afy9tM/0RK8m9o+Q= github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/rwcarlsen/goexif v0.0.0-20190401172101-9e8deecbddbd/go.mod h1:hPqNNc0+uJM6H+SuU8sEs5K5IQeKccPqeSjfgcKGgPk= github.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts= diff --git a/internal/cli/todo.go b/internal/cli/todo.go index 05185f1..97630ca 100644 --- a/internal/cli/todo.go +++ b/internal/cli/todo.go @@ -24,7 +24,7 @@ func todoAction(c *cli.Context) error { } w := tablewriter.NewWriter(os.Stdout) - w.SetHeader([]string{"Standard", "Control", "Satisfied?", "Name"}) + w.SetHeader([]string{"Framework", "Control", "Satisfied?", "Name"}) type row struct { standard string @@ -36,7 +36,7 @@ func todoAction(c *cli.Context) error { satisfied := model.ControlsSatisfied(d) var rows []row - for _, std := range d.Standards { + for _, std := range d.Frameworks { for id, c := range std.Controls { sat := "NO" if _, ok := satisfied[id]; ok { diff --git a/internal/model/standard.go b/internal/model/framework.go similarity index 98% rename from internal/model/standard.go rename to internal/model/framework.go index 3a86a93..8e09210 100644 --- a/internal/model/standard.go +++ b/internal/model/framework.go @@ -6,7 +6,7 @@ type Control struct { Description string `yaml:"description"` } -type Standard struct { +type Framework struct { Name string `yaml:"name"` Controls map[string]Control `yaml:",inline"` } diff --git a/internal/model/fs.go b/internal/model/fs.go index cdf2693..2317ebd 100644 --- a/internal/model/fs.go +++ b/internal/model/fs.go @@ -30,7 +30,7 @@ func ReadData() (*Data, error) { if err != nil { return nil, err } - standards, err := ReadStandards() + frameworks, err := ReadFrameworks() if err != nil { return nil, err } @@ -40,7 +40,7 @@ func ReadData() (*Data, error) { Narratives: narratives, Policies: policies, Procedures: procedures, - Standards: standards, + Frameworks: frameworks, }, nil } @@ -67,27 +67,27 @@ func tickets(rawTickets []string) ([]*Ticket, error) { return tickets, nil } -// ReadStandards loads standard definitions from the filesystem. -func ReadStandards() ([]*Standard, error) { - var standards []*Standard +// ReadFrameworks loads standard definitions from the filesystem. +func ReadFrameworks() ([]*Framework, error) { + var frameworks []*Framework - files, err := path.Standards() + files, err := path.Frameworks() if err != nil { return nil, errors.Wrap(err, "unable to enumerate paths") } for _, f := range files { - s := &Standard{} + s := &Framework{} sBytes, err := ioutil.ReadFile(f.FullPath) if err != nil { return nil, errors.Wrap(err, "unable to read "+f.FullPath) } yaml.Unmarshal(sBytes, &s) - standards = append(standards, s) + frameworks = append(frameworks, s) } - return standards, nil + return frameworks, nil } // ReadNarratives loads narrative descriptions from the filesystem. diff --git a/internal/model/model.go b/internal/model/model.go index 6ed2c35..bfc2ce8 100644 --- a/internal/model/model.go +++ b/internal/model/model.go @@ -1,12 +1,12 @@ package model type Data struct { - Standards []*Standard - Narratives []*Document - Policies []*Document - Procedures []*Procedure - Tickets []*Ticket - Audits []*Audit + Frameworks []*Framework + Narratives []*Document + Policies []*Document + Procedures []*Procedure + Tickets []*Ticket + Audits []*Audit } type Revision struct { diff --git a/internal/path/path.go b/internal/path/path.go index 45bcaf9..3c902d4 100644 --- a/internal/path/path.go +++ b/internal/path/path.go @@ -15,9 +15,9 @@ type File struct { Info os.FileInfo } -// Standards lists all standard files. -func Standards() ([]File, error) { - return filesFor("standards", "yml") +// Frameworks lists all standard files. +func Frameworks() ([]File, error) { + return filesFor("frameworks", "yml") } // Narratives lists all narrative files. diff --git a/internal/render/controller.go b/internal/render/controller.go index 8d7ef62..711a297 100644 --- a/internal/render/controller.go +++ b/internal/render/controller.go @@ -36,14 +36,14 @@ type renderData struct { Narratives []*model.Document Policies []*model.Document Procedures []*model.Procedure - Standards []*model.Standard + Frameworks []*model.Framework Tickets []*model.Ticket Controls []*control Links *model.TicketLinks } type control struct { - Standard string + Framework string ControlKey string Name string Description string @@ -65,12 +65,12 @@ func load() (*model.Data, *renderData, error) { satisfied := model.ControlsSatisfied(modelData) controls := make([]*control, 0) - for _, standard := range modelData.Standards { - for key, c := range standard.Controls { + for _, framework := range modelData.Frameworks { + for key, c := range framework.Controls { satisfactions, ok := satisfied[key] satisfied := ok && len(satisfactions) > 0 controls = append(controls, &control{ - Standard: standard.Name, + Framework: framework.Name, ControlKey: key, Name: c.Name, Description: c.Description, @@ -87,7 +87,7 @@ func load() (*model.Data, *renderData, error) { rd.Narratives = modelData.Narratives rd.Policies = modelData.Policies rd.Procedures = modelData.Procedures - rd.Standards = modelData.Standards + rd.Frameworks = modelData.Frameworks rd.Tickets = modelData.Tickets rd.Links = &model.TicketLinks{} rd.Project = project @@ -123,7 +123,7 @@ func addStats(modelData *model.Data, renderData *renderData) { satisfied := model.ControlsSatisfied(modelData) - for _, std := range renderData.Standards { + for _, std := range renderData.Frameworks { stats.ControlsTotal += len(std.Controls) for controlKey := range std.Controls { if _, ok := satisfied[controlKey]; ok { diff --git a/internal/render/document.go b/internal/render/document.go index c5ab27d..6ac64ff 100644 --- a/internal/render/document.go +++ b/internal/render/document.go @@ -114,7 +114,7 @@ func preprocessDoc(data *renderData, pol *model.Document, fullPath string) error for standard, keys := range pol.Satisfies { rows += fmt.Sprintf("| %s | %s |\n", standard, strings.Join(keys, ", ")) } - satisfiesTable = fmt.Sprintf("|Standard|Controls Satisfied|\n|-------+--------------------------------------------|\n%s\nTable: Control satisfaction\n", rows) + satisfiesTable = fmt.Sprintf("|Framework|Controls Satisfied|\n|-------+--------------------------------------------|\n%s\nTable: Control satisfaction\n", rows) } if len(pol.Revisions) > 0 { diff --git a/internal/theme/themes_bindata.go b/internal/theme/themes_bindata.go index fe8cb8c..2f1b77b 100644 --- a/internal/theme/themes_bindata.go +++ b/internal/theme/themes_bindata.go @@ -2,6 +2,7 @@ // sources: // themes/comply-blank/README.md // themes/comply-blank/TODO.md +// themes/comply-blank/frameworks/.gitkeep // themes/comply-blank/narratives/.gitkeep // themes/comply-blank/policies/.gitkeep // themes/comply-blank/procedures/.gitkeep @@ -11,6 +12,8 @@ // themes/comply-blank/templates/index.ace // themes/comply-soc2/README.md // themes/comply-soc2/TODO.md +// themes/comply-soc2/frameworks/README.md +// themes/comply-soc2/frameworks/TSC-2017.yml // themes/comply-soc2/narratives/README.md // themes/comply-soc2/narratives/control.md // themes/comply-soc2/narratives/organizational.md @@ -137,7 +140,7 @@ func complyBlankReadmeMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-blank/README.md", size: 1965, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-blank/README.md", size: 1965, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -157,7 +160,27 @@ func complyBlankTodoMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-blank/TODO.md", size: 1429, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-blank/TODO.md", size: 1429, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _complyBlankFrameworksGitkeep = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x01\x00\x00\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00") + +func complyBlankFrameworksGitkeepBytes() ([]byte, error) { + return bindataRead( + _complyBlankFrameworksGitkeep, + "comply-blank/frameworks/.gitkeep", + ) +} + +func complyBlankFrameworksGitkeep() (*asset, error) { + bytes, err := complyBlankFrameworksGitkeepBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "comply-blank/frameworks/.gitkeep", size: 0, mode: os.FileMode(420), modTime: time.Unix(1600190439, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -177,7 +200,7 @@ func complyBlankNarrativesGitkeep() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-blank/narratives/.gitkeep", size: 0, mode: os.FileMode(420), modTime: time.Unix(1525909140, 0)} + info := bindataFileInfo{name: "comply-blank/narratives/.gitkeep", size: 0, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -197,7 +220,7 @@ func complyBlankPoliciesGitkeep() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-blank/policies/.gitkeep", size: 0, mode: os.FileMode(420), modTime: time.Unix(1525909140, 0)} + info := bindataFileInfo{name: "comply-blank/policies/.gitkeep", size: 0, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -217,7 +240,7 @@ func complyBlankProceduresGitkeep() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-blank/procedures/.gitkeep", size: 0, mode: os.FileMode(420), modTime: time.Unix(1525909140, 0)} + info := bindataFileInfo{name: "comply-blank/procedures/.gitkeep", size: 0, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -237,7 +260,7 @@ func complyBlankStandardsGitkeep() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-blank/standards/.gitkeep", size: 0, mode: os.FileMode(420), modTime: time.Unix(1525909140, 0)} + info := bindataFileInfo{name: "comply-blank/standards/.gitkeep", size: 0, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -257,7 +280,7 @@ func complyBlankTemplatesGitkeep() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-blank/templates/.gitkeep", size: 0, mode: os.FileMode(420), modTime: time.Unix(1525909140, 0)} + info := bindataFileInfo{name: "comply-blank/templates/.gitkeep", size: 0, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -277,12 +300,12 @@ func complyBlankTemplatesDefaultLatex() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-blank/templates/default.latex", size: 7649, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-blank/templates/default.latex", size: 7649, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _complyBlankTemplatesIndexAce = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x59\x6d\x6f\x1b\xb9\x11\xfe\xee\x5f\x31\xd8\x7c\x90\x8c\x58\x94\x9d\x2b\xae\x87\xbb\xee\x15\x89\x9d\x43\x83\xcb\xc5\x41\x1d\x14\x28\x82\x43\x41\x91\x23\x2d\x6d\x2e\xb9\x21\x67\x65\xeb\x14\xff\xf7\x82\xdc\x17\xad\x56\x2b\xdb\x68\xe4\xa2\xa8\x3f\xc8\x14\x5f\xe6\x99\x19\x3e\x1c\xce\x50\x29\x48\x2b\x68\x55\x20\x64\x94\xeb\xa3\xf0\x01\x9a\x9b\x45\x8a\xe6\x08\x20\x43\x2e\x8f\x00\x00\x72\x24\x0e\x22\xe3\xce\x23\xa5\x25\xcd\x27\x3f\xc4\x6e\x52\xa4\x11\xd6\x6b\xf6\xd1\xd9\x6b\x14\xc4\x3e\xf0\x1c\xef\xef\xe3\x98\x56\xe6\x06\x1c\xea\x34\xf1\xb4\xd2\xe8\x33\x44\x4a\x20\x73\x38\x4f\x93\x8c\xa8\xf0\x3f\x4e\xa7\x42\x9a\x6b\xcf\x84\xb6\xa5\x9c\x6b\xee\x90\x09\x9b\x4f\xf9\x35\xbf\x9b\x6a\x35\xf3\xd3\x59\xa9\x73\x3e\x3d\x65\xdf\xb3\x57\x53\xe1\xeb\xef\x2c\x57\x86\x09\xef\x93\x83\xa2\xf8\x5b\x4e\x22\xab\xb1\x3c\x37\xd2\x93\x35\xd8\x1d\xdb\xc6\xf5\xc2\xa9\x82\x20\x78\x2e\x4d\x08\xef\x68\x7a\xcd\x97\xbc\xea\x4d\xc0\x3b\xf1\x64\xf8\xdc\xe6\x68\x88\x5d\xfb\xe9\x2b\xf6\xea\x15\x3b\x6d\x3a\x02\xdc\xf5\xc1\xd1\x34\x27\x74\xd3\x33\x16\x80\x62\xfb\x99\x70\x0a\x87\x44\x2b\xe1\xac\x99\x9e\xb2\xb3\x33\x76\xda\xe9\xd9\x82\x8c\xcc\x32\x3c\xc7\x34\x59\x2a\xbc\x2d\xac\xa3\x04\x84\x35\x84\x86\xd2\xe4\x56\x49\xca\x52\x89\x4b\x25\x70\x12\xbf\x9c\x80\x32\x8a\x14\xd7\x13\x2f\xb8\xc6\xf4\xac\x12\x93\x82\xf0\xbe\x6e\x6d\x74\x8e\x1d\x10\x28\x5e\x46\x9f\x72\x29\xdf\x2e\xd1\xd0\x7b\xe5\x09\x0d\xba\x71\x72\x71\xf9\xdb\x79\x05\xf6\xde\x72\x89\x32\x39\x81\x79\x69\x04\x29\x6b\xc6\x18\xa6\x1e\xc3\xba\x96\xd2\x91\xf3\xa5\x44\xb7\xba\x42\x8d\x82\xac\x7b\xad\xf5\x78\xc4\x82\x61\xa3\x63\x36\xb7\xee\x2d\x17\xd9\x78\x23\x44\x77\x25\x00\xa0\x66\xca\x18\x74\x7f\xfb\xf4\xdb\x7b\x48\xa1\xf2\xca\x79\xf0\x0a\xd9\x2b\x72\xca\x2c\xc6\xe3\x24\x79\xd9\x9d\x76\xcc\xc8\xa9\x7c\x7c\x7c\x42\xae\xc4\x63\x98\x4e\xe1\xfb\xc9\x5c\xa1\x96\x80\x77\x85\x43\xef\x95\x35\xbe\x85\xb8\x3f\x3e\x6a\x1b\x75\xab\x51\x06\x7c\x66\x6f\xc7\xc1\xd9\x5d\x9d\xd4\x1c\xc6\x99\xf2\x64\xdd\x8a\x39\x2c\x34\x17\x78\x45\x9c\x70\x5b\x6f\x80\xa1\x39\x63\x53\x6a\x7d\x02\xd5\xe7\xe8\xc5\xe8\x65\x14\xbe\xd1\xe5\xa8\x6d\x2e\xb9\x03\x45\x98\x7b\x48\x37\x7e\x5c\x20\xbd\xd5\x18\x9a\xfe\xcd\xea\x5c\x73\xef\x43\x00\x19\x8f\xc8\x16\x13\xc3\x97\xa3\x8d\xa4\xb9\x75\x30\x8e\x32\xd2\xd3\x9f\x40\xfd\x25\x8a\x62\x1a\xcd\x82\xb2\x9f\x40\xbd\x7c\xb9\xad\x6d\x83\x06\x69\x05\xfa\x59\xfd\xde\x19\x0d\x16\x87\x6e\x46\x7c\x11\x00\x21\x4d\x53\x48\xde\xbf\x4b\xfa\x26\x4f\xa7\x60\xf8\x52\x2d\x78\xf4\x1e\xf1\x99\xdf\x1a\x6e\xe5\x88\xa0\x7a\x20\x15\x0b\xcc\xe5\xca\xf8\xca\xcb\x7d\x79\x00\xbd\xe9\x5c\xca\xf1\x48\xf9\x09\x17\xa4\x96\xd8\xb1\x37\x7a\x0f\x50\x7b\x7c\x4c\x84\xc3\xdc\x2e\xf1\x01\x29\x47\x8f\x48\x9c\x4e\xc1\x63\xe4\xc7\x1e\xeb\x94\x8c\x0e\xea\xf3\xe6\x31\x6d\x32\x25\x25\x9a\xff\xc8\xa6\xc6\x2d\xc3\x22\x8e\x86\xda\x4d\x2b\xfc\x9f\x59\xb9\xaa\xe2\x59\x65\x17\xcb\xd0\x59\xa6\xfc\xa4\x70\x2a\xe7\x6e\x15\x9a\x3e\xe7\x5a\xd7\x6b\xe2\xf8\xa4\x5d\x15\xbb\xea\x8d\x44\xd7\x41\xcb\xce\xd8\x43\x37\x5e\xf5\x57\x30\x5f\xce\xaa\x69\x1f\xad\x56\x62\x75\x02\x1f\x9d\x15\x28\x4b\x87\x27\xc0\x8d\x84\xd7\xa5\x54\x04\xe1\xfc\x94\x7e\x4b\x83\xb9\xb5\xd4\x4a\x32\x7c\xc9\x02\xe3\x82\xb2\x33\x7b\x87\x32\x34\xe6\xa5\xd6\x31\x0c\x76\x00\x07\x55\x05\x28\x75\x34\x53\xfd\x81\x93\x3f\xf5\xbc\xad\x15\xab\x4f\x18\xb3\x4b\x74\x21\xee\xf6\x66\x00\x78\x72\xd6\x2c\x76\xba\x01\x38\x58\x23\xb4\x12\x37\x69\xb2\x09\xb4\x3f\xc6\xc8\x32\x6a\xa4\x8d\x8e\x13\xb8\x1c\x96\xdc\xc1\x36\xdc\x39\x1e\x18\xeb\x0f\x83\xbe\x91\x17\xf0\x3f\xec\x93\xde\xd1\xa0\x08\x1b\xa4\x0e\x85\xdf\x48\x0b\xe8\x1f\x87\x25\x77\xb1\x1b\x52\x1c\x0a\xbd\x95\x17\xf1\xf7\x49\xef\x68\xe0\x89\x1b\xc9\x9d\x3c\x90\x02\xad\xb8\x80\x7f\xb5\x47\xf6\xb4\xab\x00\x2e\x95\x44\x23\x70\x67\xce\xc3\x40\xcd\xb2\x80\xf3\xb6\x6e\xc3\x3f\x78\xa9\xab\xc3\xf3\xa2\x61\x21\x6b\x8e\x7f\x83\xd7\x1e\x14\x56\x27\x18\x35\xf0\x4c\x5b\x71\xf3\xa5\xb4\xb4\xd1\x24\xfb\x0e\x3e\x65\xca\x83\x57\x84\x21\x1d\xf1\x56\x2b\xc9\x09\x3d\x70\xad\xdb\x0b\xcc\x87\xd4\x93\x13\x4a\x20\x0b\x94\xed\x0f\x0c\x59\x73\x36\x99\xb0\xba\xcc\x4d\x3c\xd5\x4b\x81\x86\xd0\xa1\xec\x46\x9d\x30\x1a\x06\xad\xc1\x09\x65\xca\xc9\x8e\x73\xa4\x5a\x6e\xb9\x6a\x13\x6a\xc2\x8a\xef\x58\xc6\xfd\x24\x64\x6d\x93\x46\x30\x84\xdc\xc6\x59\x0d\x9f\x1c\x17\x37\xaa\xb3\xa5\x0d\xd2\xce\x92\x07\xe1\x42\x3d\xa0\xcc\x02\xae\x38\x29\x3f\x57\x1b\x00\xdf\x9b\x18\x95\xea\x6d\xeb\x7a\xcd\x42\xcc\xf3\xac\x59\xd3\x4a\xe9\xc4\xcf\x6f\xd3\xeb\x93\x25\xae\xbf\x49\xa7\x28\xa1\xd5\xe7\xbf\xbc\x5b\xed\xa1\x3d\xf4\x7e\xbd\x8e\x89\x01\x7c\x52\xe2\x06\xe9\x29\x7e\xe1\x40\xdc\x2d\x90\xd2\x7f\xcd\x34\x37\x37\x75\x41\xb5\x5e\xb3\xf7\xca\xdc\x78\xd6\x2a\x7a\x59\xa0\xb9\xbf\x4f\x76\x22\x45\xeb\xd7\xde\xcc\x03\xd9\x73\xa9\x25\x7a\xaa\xed\x79\x92\x39\x03\x0a\x45\x19\x17\x7c\xe5\xef\xef\x41\xf2\x95\x3f\xd0\x9e\x3f\x68\xd2\x0e\x0b\xea\x64\xe0\xc0\xfb\x1d\x9c\x0d\x7f\xc7\x2f\x25\xfa\x43\x6c\x77\xd4\xf1\xd1\xad\xee\xcc\x3a\xe8\x71\x3e\xb0\x1d\xaf\xb5\x7e\xdc\x8c\x83\x85\x81\xce\x20\xdd\xda\x6a\xd0\x3f\xe8\x8e\x29\x14\xce\x2e\x42\x59\xc7\xda\xc6\x26\x75\x85\x25\xd7\x25\xa6\xdb\xda\x9e\x6b\xeb\x43\x14\x85\x9c\xdf\xa5\xfb\x0d\x79\xb1\x49\x90\xbe\xed\x6a\xec\x66\xbb\x5b\x8e\xac\xf2\x86\x7d\xa9\xd7\xd7\x60\x59\xb8\xaf\x81\x1b\x68\x2e\x69\xb0\xf3\x78\x73\x5a\xb7\xe0\x46\xfd\x51\x55\x5a\x21\x4b\x0e\x9d\xc2\xe6\x85\x56\x3c\xdc\xef\x68\x96\xca\x59\x13\xcb\xc6\x5a\x2a\xf1\x99\x46\x56\x7d\xee\xa6\xba\xd4\x3e\x5e\xd5\xdf\xb7\xd3\x63\xca\x20\xdc\xd0\xfd\xbe\xd7\xa1\x8e\x5f\xe5\xfd\xee\x8f\x17\xbf\x6c\x04\x6f\x15\x0a\x81\x39\x8e\x9b\x05\x02\xdb\x98\x0d\x5b\x15\x41\x1f\x59\x06\xb2\xed\xd4\x0d\xcd\x40\xad\xc1\xce\xd8\x0e\xd5\x23\xb9\xd7\x6b\x76\x59\x52\x51\xd2\x2f\x4a\xa3\x89\x32\xb7\xcf\xc0\x10\xd1\xfb\x2b\xb6\x8c\x41\xd3\xdc\xc7\x2f\x9a\x84\xf6\x79\xd9\x32\x98\x2a\x7f\x85\x45\x60\x88\x89\x34\x98\x61\xc6\x97\xca\xba\xc0\x95\xd6\x75\x80\x79\xa1\xed\x0a\x43\x4a\x66\x64\x7c\x32\x72\x5c\x90\x75\xfe\x7f\x95\x1f\x8d\xa1\xff\x2f\xec\x68\x4b\x8c\x67\xe6\xc7\x70\x29\x13\xa2\x09\x86\xba\x60\x86\xe0\x0b\x14\x6a\xae\x04\x78\xc2\xc2\x03\x65\x9c\x80\x3b\x04\xe2\x37\x68\x40\x19\x70\xe8\x0b\x6b\x3c\x86\x3c\xfd\x06\x57\x10\x9f\xf6\x9e\x95\x28\xef\x2e\xfa\x3d\x57\x22\x43\x59\x6a\x84\x71\xd8\x43\x98\x5b\x97\x73\x3a\x7e\x02\x6d\x5a\xfb\xbf\x85\x38\xef\x2e\x7a\xdd\xeb\xb5\x9a\x03\x3b\x77\xd6\xec\xcc\x8f\x8f\x99\x61\xd1\xc0\xe8\x7a\x8d\xda\x0f\x40\x5c\x1a\x90\x98\x73\x23\xfb\xb3\x8d\xdc\x4f\xa1\xb6\x64\x7c\x5e\x06\x0d\x17\xa3\x5f\x6b\xda\xac\xea\xab\xa6\x2a\x00\xc0\xb7\xb5\xcd\x6c\xd5\xbf\x84\xe2\x85\xcc\xf3\x07\x79\x33\xfc\x4c\xf3\x38\x89\x9a\x52\xed\x57\x5c\x3d\x85\x5f\x6d\xf1\xf4\xd7\xbd\x23\xf0\x66\xf5\x38\xbb\x9a\xc2\xe7\x09\xdc\xaa\xa7\xfe\x8a\xab\xc7\xc2\x4f\xed\xf7\x61\x3e\x02\x6c\x5e\xc8\xd6\x6b\x76\x81\x55\x71\xaf\x06\xa8\x16\x18\x3a\x54\x25\x56\xa0\xd1\xe7\xa5\x10\xe8\x3d\xfc\xb3\x17\x1d\xf6\xd1\xf4\x83\x7d\x84\x9f\x03\xd6\xb4\xbe\x6a\x55\x79\xd3\xf7\x00\x00\x6f\x19\xf0\xe7\x36\xf6\x3e\x25\xda\xee\x08\xda\x7f\x64\x62\xd7\xdc\x5a\x42\xc7\xaa\x7f\x9b\xfc\xb4\xff\x02\xd8\x1c\x9b\x07\x53\xcd\xa2\xfb\x5e\x71\xd9\x49\xc0\xea\x1b\xf6\xdc\x9a\xb9\x92\x68\x48\x71\x0d\xaf\x4e\xcf\x7e\x38\x1a\xf8\x79\x45\xcd\x61\x7c\xab\x8c\xb4\xb7\x4c\x5b\xc1\xab\xf7\x56\xee\xb3\x34\x4d\x3a\xef\xe9\xfd\xf7\xc1\xd8\xdd\x7b\x0c\x5e\x72\x07\x61\xe5\xb9\xcd\x0b\x6b\xe2\xf3\x4a\x0a\x43\xa2\x99\x2f\xb4\xa2\xf1\xe8\x45\xfb\x32\x1c\x7f\xc3\xd8\x5a\x5a\xff\x36\xf0\xf3\x59\xf7\xc9\x3a\x20\x84\xaa\x4f\x99\x2a\xcf\x4c\x7b\x78\x9f\xcf\x36\x3f\x13\x04\x91\x9f\x93\x46\xe3\xe4\x24\xd9\x64\xcf\xc9\x49\xd2\xa4\x46\xa1\xd9\xc6\xe7\xe4\x24\x69\x23\x5a\xf2\x3b\x53\x46\xe2\xdd\xe5\x7c\xdc\x41\x3c\x86\x9f\x53\x38\xdd\x7e\x45\x8f\xae\xe9\xce\x69\xc7\xba\x6f\xda\x00\xf7\xff\x0e\x00\x00\xff\xff\x7b\xf4\xc8\x89\xac\x1d\x00\x00") +var _complyBlankTemplatesIndexAce = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x59\x6d\x6f\x1b\xb9\x11\xfe\xee\x5f\x31\xd8\x7c\x90\x8c\x58\x94\x9d\x2b\xae\x87\xbb\xee\x15\x39\x3b\x41\x83\xcb\xc5\x41\x13\x14\x28\x82\x43\x41\x91\xb3\x5a\x5a\x5c\x72\x43\xce\xca\xd6\x29\xfe\xef\x05\xb9\x2f\x5a\xad\x24\xdb\x68\x94\xa2\xa8\x3f\xc8\x14\x5f\xe6\x99\x19\x3e\x1c\xce\x50\x29\x48\x2b\x68\x55\x22\xe4\x54\xe8\x93\xf0\x01\x9a\x9b\x79\x8a\xe6\x04\x20\x47\x2e\x4f\x00\x00\x0a\x24\x0e\x22\xe7\xce\x23\xa5\x15\x65\x93\x1f\x62\x37\x29\xd2\x08\xeb\x35\x7b\xef\xec\x0d\x0a\x62\xef\x78\x81\xf7\xf7\x71\x4c\x2b\xb3\x00\x87\x3a\x4d\x3c\xad\x34\xfa\x1c\x91\x12\xc8\x1d\x66\x69\x92\x13\x95\xfe\xc7\xe9\x54\x48\x73\xe3\x99\xd0\xb6\x92\x99\xe6\x0e\x99\xb0\xc5\x94\xdf\xf0\xbb\xa9\x56\x33\x3f\x9d\x55\xba\xe0\xd3\x73\xf6\x3d\x7b\x31\x15\xbe\xf9\xce\x0a\x65\x98\xf0\x3e\x39\x2a\x8a\xbf\xe5\x24\xf2\x06\xcb\x73\x23\x3d\x59\x83\xfd\xb1\x6d\x5c\x2f\x9c\x2a\x09\x82\xe7\xd2\x84\xf0\x8e\xa6\x37\x7c\xc9\xeb\xde\x04\xbc\x13\x4f\x86\x2f\x6c\x81\x86\xd8\x8d\x9f\xbe\x60\x2f\x5e\xb0\xf3\xb6\x23\xc0\xdd\x1c\x1d\x4d\x73\x42\x37\xbd\x60\x01\x28\xb6\xbf\x11\x4e\xe9\x90\x68\x25\x9c\x35\xd3\x73\x76\x71\xc1\xce\x7b\x3d\x5b\x90\x91\x59\x86\x17\x98\x26\x4b\x85\xb7\xa5\x75\x94\x80\xb0\x86\xd0\x50\x9a\xdc\x2a\x49\x79\x2a\x71\xa9\x04\x4e\xe2\x97\x33\x50\x46\x91\xe2\x7a\xe2\x05\xd7\x98\x5e\xd4\x62\x52\x10\xde\x37\xad\x8d\xce\xb1\x03\x02\xc5\xab\xe8\x53\x2e\xe5\xab\x25\x1a\x7a\xab\x3c\xa1\x41\x37\x4e\xae\xae\x7f\xbb\xac\xc1\xde\x5a\x2e\x51\x26\x67\x90\x55\x46\x90\xb2\x66\x8c\x61\xea\x29\xac\x1b\x29\x3d\x39\x9f\x2b\x74\xab\x0f\xa8\x51\x90\x75\x2f\xb5\x1e\x8f\x58\x30\x6c\x74\xca\x32\xeb\x5e\x71\x91\x8f\x37\x42\x74\x5f\x02\x00\x6a\xa6\x8c\x41\xf7\xb7\x8f\xbf\xbd\x85\x14\x6a\xaf\x5c\x06\xaf\x90\xfd\x40\x4e\x99\xf9\x78\x9c\x24\xcf\xfb\xd3\x4e\x19\x39\x55\x8c\x4f\xcf\xc8\x55\x78\x0a\xd3\x29\x7c\x3f\xc9\x14\x6a\x09\x78\x57\x3a\xf4\x5e\x59\xe3\x3b\x88\xfb\xd3\x93\xae\xd1\xb4\x5a\x65\xc0\xe7\xf6\x76\x1c\x9c\xdd\xd7\x49\x65\x30\xce\x95\x27\xeb\x56\xcc\x61\xa9\xb9\xc0\x0f\xc4\x09\xb7\xf5\x06\xd8\x37\x67\x6c\x2a\xad\xcf\xa0\xfe\x1c\x3d\x1b\x3d\x8f\xc2\x37\xba\x9c\x74\xcd\x25\x77\xa0\x08\x0b\x0f\xe9\xc6\x8f\x73\xa4\x57\x1a\x43\xd3\xff\xb2\xba\xd4\xdc\xfb\x10\x40\xc6\x23\xb2\xe5\xc4\xf0\xe5\x68\x23\x29\xb3\x0e\xc6\x51\x46\x7a\xfe\x13\xa8\xbf\x44\x51\x4c\xa3\x99\x53\xfe\x13\xa8\xe7\xcf\xb7\xb5\x6d\xd1\x20\xad\x41\x3f\xa9\xdf\x7b\xa3\xc1\xe2\xd0\xcd\x88\xcf\x03\x20\xa4\x69\x0a\xc9\xdb\x37\xc9\xd0\xe4\xe9\x14\x0c\x5f\xaa\x39\x8f\xde\x23\x3e\xf3\x5b\xc3\x9d\x1c\x11\x54\x0f\xa4\x62\x81\xb9\x5c\x19\x5f\x7b\x79\x28\x0f\x60\x30\x9d\x4b\x39\x1e\x29\x3f\xe1\x82\xd4\x12\x7b\xf6\x46\xef\x01\x6a\x8f\x8f\x89\x70\x58\xd8\x25\x3e\x20\xe5\xe4\x11\x89\xd3\x29\x78\x8c\xfc\x38\x60\x9d\x92\xd1\x41\x43\xde\x3c\xa6\x4d\xae\xa4\x44\xf3\x1f\xd9\xd4\xba\x65\xbf\x88\x93\x7d\xed\xb6\x15\xfe\xcf\xac\x5c\xd5\xf1\xac\xb6\x8b\xe5\xe8\x2c\x53\x7e\x52\x3a\x55\x70\xb7\x0a\x4d\x5f\x70\xad\x9b\x35\x71\x7c\xd2\xad\x8a\x5d\xcd\x46\xa2\xeb\xa1\xe5\x17\xec\xa1\x1b\xaf\xfe\x2b\x99\xaf\x66\xf5\xb4\xf7\x56\x2b\xb1\x3a\x83\xf7\xce\x0a\x94\x95\xc3\x33\xe0\x46\xc2\xcb\x4a\x2a\x82\x70\x7e\x2a\xbf\xa5\x41\x66\x2d\x75\x92\x0c\x5f\xb2\xc0\xb8\xa0\xec\xcc\xde\xa1\x0c\x8d\xac\xd2\x3a\x86\xc1\x1e\xe0\x5e\x55\x01\x2a\x1d\xcd\x54\x7f\xe0\xe4\x4f\x03\x6f\x6b\xc5\x9a\x13\xc6\xec\x12\x5d\x88\xbb\x83\x19\x00\x9e\x9c\x35\xf3\x9d\x6e\x00\x0e\xd6\x08\xad\xc4\x22\x4d\x36\x81\xf6\xc7\x18\x59\x46\xad\xb4\xd1\x69\x02\xd7\xfb\x25\xf7\xb0\x0d\x77\x8e\x07\xc6\xfa\xe3\xa0\x6f\xe4\x05\xfc\x77\x87\xa4\xf7\x34\x28\xc3\x06\xa9\x63\xe1\xb7\xd2\x02\xfa\xfb\xfd\x92\xfb\xd8\x2d\x29\x8e\x85\xde\xc9\x8b\xf8\x87\xa4\xf7\x34\xf0\xc4\x8d\xe4\x4e\x1e\x49\x81\xcc\xf1\x02\x6f\xad\x5b\x44\x05\x5e\x77\xdf\x06\x62\xa6\x7d\x15\x70\xa9\x24\x1a\x81\x3b\x73\x1e\x86\x6a\x97\x05\xa0\x57\x4d\x1b\xfe\xc1\x2b\x5d\x1f\x9f\x67\x2d\x0f\x59\x1b\x00\x5a\xbc\xee\xa8\xb0\x26\xc5\x68\x80\x67\xda\x8a\xc5\xe7\xca\xd2\x46\x93\xfc\x3b\xf8\x98\x2b\x0f\x5e\x11\x86\x84\xc4\x5b\xad\x24\x27\xf4\xc0\xb5\xee\xae\x30\x1f\x92\x4f\x4e\x28\x81\x2c\x50\x7e\x38\x34\xe4\xed\xe9\x64\xc2\xea\xaa\x30\xf1\x5c\x2f\x05\x1a\x42\x87\xb2\x1f\x77\xc2\x68\x18\xb4\x06\x27\x94\x2b\x27\x7b\xce\x91\x6a\xb9\xe5\xaa\x4d\xb0\x09\x2b\xbe\x63\x39\xf7\x93\x90\xb7\x4d\x5a\xc1\x10\xb2\x1b\x67\x35\x7c\x74\x5c\x2c\x54\x6f\x53\x5b\xa4\x9d\x25\x0f\xc2\x85\x8a\x40\x99\x39\x7c\xe0\xa4\x7c\xa6\x36\x00\x7e\x30\x31\x2a\x35\xd8\xd6\xf5\x9a\x85\xa8\xe7\x59\xbb\xa6\x93\xd2\x8b\xa0\x5f\xa7\xd7\x47\x4b\x5c\x7f\x95\x4e\x51\x42\xa7\xcf\x7f\x79\xb7\xba\x63\x7b\xec\xfd\x7a\x19\x53\x03\xf8\xa8\xc4\x02\xe9\x29\x7e\xe1\x40\xdc\xcd\x91\xd2\x7f\xcd\x34\x37\x8b\xa6\xa4\x5a\xaf\xd9\x5b\x65\x16\x9e\x75\x8a\x5e\x97\x68\xee\xef\x93\x9d\x58\xd1\xf9\x75\x30\xf3\x48\xf6\x5c\x6b\x89\x9e\x1a\x7b\x9e\x64\xce\x1e\x85\xa2\x8c\x2b\xbe\xf2\xf7\xf7\x20\xf9\xca\x1f\x69\xcf\x1f\x34\x69\x87\x05\x4d\x3a\x70\xe4\xfd\x0e\xce\x86\xbf\xe3\xe7\x0a\xfd\x31\xb6\x3b\xea\xf8\xe8\x56\xf7\x66\x1d\xf5\x38\x1f\xd9\x8e\x97\x5a\x3f\x6e\xc6\xd1\xc2\x40\x6f\x90\x6e\x6d\x3d\xe8\x1f\x74\xc7\x14\x4a\x67\xe7\xa1\xb0\x63\x5d\x63\x93\xbc\xc2\x92\xeb\x0a\xd3\x6d\x6d\x2f\xb5\xf5\x21\x8a\x42\xc1\xef\xd2\xc3\x86\x3c\xdb\xa4\x48\x5f\x77\x35\xf6\xf3\xdd\x2d\x47\xd6\x99\xc3\xa1\xe4\xeb\x4b\xb0\x2c\xdc\xd7\xc0\x0d\xb4\x97\x34\xd8\x2c\xde\x9c\xd6\xcd\xb9\x51\x7f\xd4\xb5\x56\xc8\x93\x43\xa7\xb0\x45\xa9\x15\x0f\xf7\x3b\x9a\xa5\x72\xd6\xc4\xc2\xb1\x91\x4a\x7c\xa6\x91\xd5\x9f\xbb\xc9\x2e\x75\xcf\x57\xcd\xf7\xed\x04\x99\x72\x08\x37\xf4\xb0\xef\x65\xa8\xe4\x57\xc5\xb0\xfb\xfd\xd5\xeb\x8d\xe0\xad\x52\x21\x30\xc7\x71\x33\x47\x60\x1b\xb3\x61\xab\x26\x18\x22\xcb\x40\xb6\x9d\xca\xa1\x1d\x68\x34\xd8\x19\xdb\xa1\x7a\x24\xf7\x7a\xcd\xae\x2b\x2a\x2b\x7a\xad\x34\x9a\x28\x73\xfb\x0c\xec\x23\xfa\x70\xc5\x96\x31\x68\xda\xfb\xf8\x59\x9b\xd2\x7e\x5b\xb6\xec\x4d\x96\xbf\xc0\x3c\x30\xc4\x44\x1a\xcc\x30\xe7\x4b\x65\x5d\xe0\x4a\xe7\x3a\xc0\xa2\xd4\x76\x85\x21\x25\x33\x32\x3e\x1a\x39\x2e\xc8\x3a\xff\xbf\xca\x8f\xd6\xd0\xff\x17\x76\x74\x45\xc6\x37\xe6\xc7\xfe\x62\x26\x44\x13\x0c\x75\xc1\x0c\xc1\x97\x28\x54\xa6\x04\x78\xc2\xd2\x03\xe5\x9c\x80\x3b\x04\xe2\x0b\x34\xa0\x0c\x38\xf4\xa5\x35\x1e\x43\x9e\xbe\xc0\x15\xc4\xc7\xbd\x6f\x4a\x94\x37\x57\xc3\x9e\x0f\x22\x47\x59\x69\x84\x71\xd8\x43\xc8\xac\x2b\x38\x9d\x3e\x81\x36\x9d\xfd\x5f\x43\x9c\x37\x57\x83\xee\xf5\x5a\x65\xc0\x2e\x9d\x35\x3b\xf3\xe3\x73\x66\x58\xb4\x67\x74\xbd\x46\xed\xf7\x40\x5c\x1b\x90\x58\x70\x23\x87\xb3\x8d\x3c\x4c\xa1\xae\x06\xfd\xb6\x0c\x3a\x50\x8d\x7e\x69\x78\xb3\x8a\x41\xa6\x9b\x04\x97\x4e\x11\x3a\xc5\xc1\x77\x65\xce\x6c\x35\xbc\x8f\xe2\xdd\xcc\x8b\x07\x29\xb4\xff\xcd\xe6\x71\x3e\xb5\x55\xdb\xaf\xb8\x7a\x0a\xd5\xba\x3a\xea\xaf\x07\x47\xe0\x97\xd5\xe3\x44\x6b\x6b\xa0\x27\xd0\xac\x99\xfa\x2b\xae\x1e\x8b\x44\xcd\x16\xec\xa7\x26\xc0\xe6\xb9\x6c\xbd\x66\x57\x58\xd7\xf9\x6a\x0f\xeb\x02\x59\xf7\x15\x8c\x35\x68\xf4\x79\x25\x04\x7a\x0f\xff\x1c\x04\x8a\x43\x8c\x7d\x67\x1f\xa1\xea\x1e\x6b\x3a\x5f\x75\xaa\xfc\x32\xf4\x00\x00\xef\x18\xf0\xe7\x2e\x0c\x3f\x25\xf0\xee\x08\x3a\x7c\x7a\x62\x57\x66\x2d\xa1\x63\xf5\xbf\x4d\xaa\x3a\x7c\x0e\x6c\x4f\xd0\x83\x59\x67\xd9\x7f\xba\xb8\xee\xe5\x62\xcd\x65\x7b\x69\x4d\xa6\x24\x1a\x52\x5c\xc3\x8b\xf3\x8b\x1f\x4e\xf6\xfc\xd6\xa2\x32\x18\xdf\x2a\x23\xed\x2d\xd3\x56\xf0\xfa\xf1\x95\xfb\x3c\x4d\x93\xde\xe3\xfa\xf0\xb1\x30\x76\x0f\x5e\x86\x97\xdc\x41\x58\x79\x69\x8b\xd2\x9a\xf8\xd2\x92\xc2\x3e\xd1\xcc\x97\x5a\xd1\x78\xf4\xac\x7b\x26\x8e\x3f\x68\x6c\x2d\x6d\x7e\x28\xf8\xf9\xa2\xff\x7e\x1d\x10\x42\x01\xa8\x4c\x9d\x72\xa6\x03\xbc\x4f\x17\x9b\xdf\x0c\x82\xc8\x4f\x49\xab\x71\x72\x96\x6c\x12\xe9\xe4\x2c\x69\xb3\xa4\xd0\xec\x42\x75\x72\x96\x74\xc1\x2d\xf9\x9d\x29\x23\xf1\xee\x3a\x1b\xf7\x10\x4f\xe1\xe7\x14\xce\xb7\x9f\xd4\xa3\x6b\xfa\x73\xba\xb1\xfe\x03\x77\xf8\xfc\x77\x00\x00\x00\xff\xff\x12\xf8\xc3\x24\xba\x1d\x00\x00") func complyBlankTemplatesIndexAceBytes() ([]byte, error) { return bindataRead( @@ -297,12 +320,12 @@ func complyBlankTemplatesIndexAce() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-blank/templates/index.ace", size: 7596, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-blank/templates/index.ace", size: 7610, mode: os.FileMode(420), modTime: time.Unix(1600197619, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _complySoc2ReadmeMd = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x54\x41\x8f\xdc\x36\x0f\xbd\xeb\x57\xf0\xc3\x5c\x12\x20\x98\x39\x7c\xb7\xdc\xd2\x2c\x8a\x16\x48\xd3\x45\x67\x6f\x45\x01\xcb\x12\x6d\x13\x23\x4b\x2e\x45\x79\xea\x06\xf9\xef\x05\x65\x7b\xbc\x28\x16\x9d\xd3\xc8\xa2\xc8\xf7\x1e\xf9\x78\x82\x6f\xdf\xce\x5f\xed\x88\xdf\xbf\xc3\xe7\x34\x4e\x81\x6c\x74\x08\xcf\x9c\x7a\xb6\xa3\x31\x2f\x03\x65\x60\x9c\x52\x26\x49\xbc\x80\x4b\x31\xa7\x40\xde\x0a\x66\xb0\x21\x80\x4f\xae\x8c\x18\x45\xa3\x82\x15\xf4\x20\x09\x64\xc0\xff\xcc\x7b\x36\xe6\x04\x57\xe1\xe2\xa4\x30\x1a\xf3\x2a\xe2\xc8\x67\x19\x21\x71\x6f\x23\xfd\x8d\x1e\x6c\x86\x2e\x85\x90\xee\xf9\xa3\x31\x4d\xd3\x98\x68\x99\xad\xd0\x8c\xf9\x02\xfa\xfb\xfa\x38\xc3\xc4\x69\x26\x8f\x60\x23\xa4\x19\x79\x26\xbc\x43\xea\x2a\xaa\x2d\xa1\x15\x4a\x11\x6c\xf4\xf5\xa3\x3b\xca\x63\x9c\x89\x53\x54\x04\x67\x33\xa5\x40\x8e\xf6\x02\x00\xcf\xdb\x19\x7a\x4d\x1b\xeb\xdb\x16\x07\x3b\x53\x62\x2d\x80\xe3\x14\xd2\x82\xaa\x4c\xf4\x2a\x95\xb0\x75\x92\x38\x9f\xcd\xc4\xc9\xa1\x2f\xbc\x27\x7b\x7e\x9c\x61\x62\xcc\x8e\xa9\x45\xc8\x13\x3a\xea\xc8\x41\x16\x9c\x32\xc8\x60\xa5\xaa\x20\xf6\x86\x11\x28\x02\x63\x9e\x52\xcc\xa8\x1a\xdf\x70\x01\x9c\x55\xa9\xb3\xc9\x62\xa3\xb7\xec\x77\xa4\xd7\xfd\xbc\xa5\x5c\x36\x9a\x51\x38\x85\x0c\xd9\x0a\xe5\x8e\xd0\x43\xbb\xfc\x5b\x80\x69\xef\x90\x28\x1b\x6d\xf3\x96\xf3\x65\x3f\xef\x79\x56\x3d\x8b\x4c\x45\xa0\x4b\x3c\x5a\xd9\x45\xfe\xe9\xe5\x97\x2f\xf0\x64\xf3\xd0\x26\xcb\xbe\x8a\xf1\xfc\xf4\x23\xd8\x9c\x51\xd1\x6a\xf7\xcc\x09\x7e\x28\x14\x3c\xc5\xde\x98\x4f\xf5\xa2\x52\x6d\x0b\x05\x81\x92\x29\xf6\xf0\x7b\x53\x71\x2d\xcd\x1f\xef\x06\x91\x29\x7f\xbc\x5c\xd6\x0f\xe7\x2c\x9c\x62\xef\xc7\xb3\x4b\xe3\xfb\x0f\x70\x1f\xc8\x0d\xe0\x6c\x84\x16\x81\x62\x16\x1b\x02\x7a\x98\xc9\x42\xd3\x32\xde\xf7\x6f\xb0\xe5\x83\x77\xa3\x75\xbf\x5e\xdf\x43\x62\x68\xfa\x04\x3d\x0a\xf4\x24\x43\x69\x35\xe1\x65\xcf\xbe\x55\xab\x60\x9f\x4b\x1b\x28\x0f\x15\xee\xcb\x80\xd0\xac\xc4\x2f\x0d\x78\x62\x74\xbb\x37\xc4\x52\x5c\x7d\xd1\x63\x44\xae\x7e\xd8\x68\xc3\x17\x8a\xb7\xac\x5d\x7c\x48\xe4\x0f\x89\x56\xf7\xd0\x8c\x1f\xaa\x5c\xd5\x59\x38\x61\xf4\x18\xeb\xc4\xa9\x36\x14\x5d\x28\x7e\x23\xb6\x96\x85\xcf\x4f\x5f\x81\xb1\x43\xc6\xe8\x30\x9f\x41\xb1\x61\x14\xe2\xb7\x21\xca\x80\x8c\x5d\x62\x84\xd1\x2e\xaa\x56\x99\x42\xb2\x7e\x75\xad\x8d\x70\xfd\x3f\xb4\xc5\xdd\x50\x54\x9a\xa4\xd1\x90\xc5\x0a\xb9\x95\x05\x0c\x29\x0b\xdc\x49\x86\xa4\x4d\x2f\x5c\x23\xc6\xe4\x75\x6a\xab\xa7\xaa\xb3\x8f\xd6\x5f\xc5\x4a\xc9\xc6\x3c\xc6\x1d\xd4\x12\x37\xed\x2e\x65\x28\x93\xaf\x0a\xdd\x07\x8c\x38\x23\xc3\xd6\x70\xc8\x4b\x74\x8d\x46\x50\x9c\xd3\x0d\xfd\x19\x7e\xae\x7f\xc0\xd6\x2b\x98\x58\x1d\x27\xe9\xf1\x40\xc7\xc6\x37\xfa\x65\x13\xa9\x8a\x3c\x2a\x5a\x57\x98\x31\x0a\x08\x55\x5e\xb9\x22\xaa\x30\x0f\x50\x57\x37\xa0\x2f\x01\xd9\x98\x4f\x71\x81\xe6\x95\x5b\x9b\xd5\x86\x7b\x5a\x0b\x8d\xe3\x14\x1b\xc8\xdb\x13\xb8\x53\x08\x60\x8b\xa4\x51\x75\xb2\x21\x2c\xe0\x18\x2b\x2f\x8a\xb0\xa4\xc2\x3a\x18\x1d\xf5\x85\x55\xe6\x8a\x42\xf9\xe7\x25\x0b\x8e\x6f\x70\xdf\xb1\x54\x01\xf0\x2f\x74\x45\x54\x01\xed\xec\xe3\x6e\xad\xda\x5a\x77\xeb\x6a\xf9\xb8\xd4\x4d\xe7\x0b\x6e\x15\x56\x86\x4f\xa8\x0b\x49\x97\x19\xfc\x86\x2e\x8d\x23\x46\x5f\xdb\x64\xcc\x21\xa8\x63\x9a\x04\x32\x8d\x14\x2c\xef\xdb\x7b\xdd\xb5\x8a\xd3\x0a\x04\xb4\x59\x20\xd5\xf5\x80\x0c\xde\x2e\xdb\x0e\x3e\xfd\xef\xd2\x52\xbc\xb4\x36\x0f\xe6\x64\x4e\xba\xca\x18\xff\x2c\x94\x49\x30\x7f\x34\x27\x00\xf5\x15\x58\xe7\x30\xe7\x7a\x3c\xf8\xef\xa2\xac\xab\x98\xe2\x66\xce\xf3\x32\x86\x1a\xb9\x4e\xe6\x39\x0f\x0a\x69\x5a\xed\xb7\x0f\xa3\xe6\x37\x27\x65\xa8\xd6\xad\x5b\x49\x60\xdf\xd6\xd5\x40\x47\x07\x8d\x22\x98\x4a\x08\x1a\xbe\x4e\xdc\xeb\x2e\xac\x03\xfa\x6a\xee\x34\x4c\x98\xfa\x1e\x79\x6d\xa4\xc2\x4b\xdd\x43\xfb\xbd\x87\xc7\xa3\x63\x78\x4e\xeb\x20\x6e\x88\xcc\xeb\xe1\xd4\xcb\x37\x58\x40\xc7\x69\xdc\xb6\xe8\xe5\x30\xaa\x39\xd8\x6f\x77\xaa\xf7\x3f\x01\x00\x00\xff\xff\x61\x8f\x5d\x05\xad\x07\x00\x00") +var _complySoc2ReadmeMd = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x54\xc1\x8e\xdc\x36\x0c\xbd\xeb\x2b\x58\xcc\x25\x01\x82\x99\x43\x6f\xb9\xa5\x59\x04\x2d\x90\x6e\x17\xdd\xbd\x15\x05\x2c\x4b\xb4\x4d\x8c\x2c\xb9\x14\xe5\xa9\x1b\xe4\xdf\x0b\xca\xf6\x78\x51\x2c\x3a\xa7\x91\x45\x91\xef\x3d\xf2\xf1\x04\xdf\xbe\x9d\x1f\xed\x88\xdf\xbf\xc3\xe7\x34\x4e\x81\x6c\x74\x08\x4f\x9c\x7a\xb6\xa3\x31\x2f\x03\x65\x60\x9c\x52\x26\x49\xbc\x80\x4b\x31\xa7\x40\xde\x0a\x66\xb0\x21\x80\x4f\xae\x8c\x18\x45\xa3\x82\x15\xf4\x20\x09\x64\xc0\xff\xcd\x7b\x36\xe6\x04\xcf\xc2\xc5\x49\x61\x34\xe6\x55\xc4\x91\xcf\x32\x42\xe2\xde\x46\xfa\x07\x3d\xd8\x0c\x5d\x0a\x21\xdd\xf2\x47\x63\x9a\xa6\x31\xd1\x32\x5b\xa1\x19\xf3\x05\xf4\xf7\x78\x3f\xc3\xc4\x69\x26\x8f\x60\x23\xa4\x19\x79\x26\xbc\x41\xea\x2a\xaa\x2d\xa1\x15\x4a\x11\x6c\xf4\xf5\xa3\x3b\xca\x63\x9c\x89\x53\x54\x04\x67\x33\xa5\x40\x8e\xf6\x02\x00\x4f\xdb\x19\x7a\x4d\x1b\xeb\xdb\x16\x07\x3b\x53\x62\x2d\x80\xe3\x14\xd2\x82\xaa\x4c\xf4\x2a\x95\xb0\x75\x92\x38\x9f\xcd\xc4\xc9\xa1\x2f\xbc\x27\x7b\xba\x9f\x61\x62\xcc\x8e\xa9\x45\xc8\x13\x3a\xea\xc8\x41\x16\x9c\x32\xc8\x60\xa5\xaa\x20\xf6\x8a\x11\x28\x02\x63\x9e\x52\xcc\xa8\x1a\x5f\x71\x01\x9c\x55\xa9\xb3\xe9\xd8\x8e\x78\x4b\x7c\xdd\xb2\x7f\xb9\x9f\xb7\x9c\xcb\xc6\x33\x0a\xa7\x00\x8e\x49\x90\xc9\x82\x58\xee\x51\x7b\xd6\x2e\xff\x15\x62\xda\x3b\x25\xca\x4a\xdb\xbd\xa9\xf0\xb2\x9f\xef\xe9\xaa\xae\x45\xa6\x22\xd0\x25\x1e\xad\xec\x62\xff\xfc\xf2\xeb\x57\x78\xb0\x79\x68\x93\x65\x5f\x45\x79\x7a\xf8\x02\x36\x67\x54\xd4\xda\x45\x73\x82\x9f\x0a\x05\x4f\xb1\x37\xe6\x53\xbd\xa8\x94\xdb\x42\x41\xa0\x64\x8a\x3d\xfc\xd1\x54\x5c\x4b\xf3\xe7\xbb\x41\x64\xca\x1f\x2f\x97\xf5\xc3\x39\x0b\xa7\xd8\xfb\xf1\xec\xd2\xf8\xfe\x03\xdc\x06\x72\x03\x38\x1b\xa1\x45\xa0\x98\xc5\x86\x80\x1e\x66\xb2\xd0\xb4\x8c\xb7\xfd\x1b\x6c\xf9\xe0\xdd\x68\xdd\x6f\xcf\xef\x21\x31\x34\x7d\x82\x1e\x05\x7a\x92\xa1\xb4\x9a\xf0\xb2\x67\xdf\xaa\x55\xb0\x4f\xa5\x0d\x94\x87\x0a\xf7\x65\x40\x68\x56\xe2\x97\x06\x3c\x31\xba\xdd\x23\x62\x29\xae\xfe\xe8\x31\x22\x57\x5f\x6c\xb4\xe1\x2b\xc5\x6b\xd6\x6e\xde\x25\xf2\x87\x44\xab\x8b\x68\xc6\x0f\x55\xae\xea\x30\x9c\x30\x7a\x8c\x75\xf2\x54\x1b\x8a\x2e\x14\xbf\x11\x5b\xcb\xc2\xe7\x87\x47\x60\xec\x90\x31\x3a\xcc\x67\x50\x6c\x18\x85\xf8\x6d\x88\x32\x20\x63\x97\x18\x61\xb4\x8b\xaa\x55\xa6\x90\xac\x5f\xdd\x6b\x23\x3c\xff\x08\x6d\x71\x57\x14\x95\x26\x69\x34\x64\xb1\x42\x6e\x65\x01\x43\xca\x02\x37\x92\x21\x69\xd3\x0b\xd7\x88\x31\x79\x9d\xde\xea\xad\xea\xf0\xa3\xf5\xcf\x62\xa5\x64\x63\xee\x63\x0f\x6a\x8d\xab\x76\x97\x32\x94\xc9\x57\x85\x6e\x03\x46\x9c\x91\x61\x6b\x38\xe4\x25\xba\x46\x23\x28\xce\xe9\x8a\xfe\x0c\xbf\xd4\x3f\x60\xeb\x15\x4c\xac\xce\x93\x74\x7f\xa0\x63\xe3\x1b\xfd\xb2\x89\x54\x45\x1e\x15\xad\x2b\xcc\x18\x05\x84\x2a\xaf\x5c\x11\x55\x98\x07\xa8\x67\x37\xa0\x2f\x01\xd9\x98\x4f\x71\x81\xe6\x95\x6b\x9b\xd5\x8e\x7b\x5a\x0b\x8d\xe3\x14\x1b\xc8\xdb\x13\xb8\x51\x08\x60\x8b\xa4\x51\x75\xb2\x21\x2c\xe0\x18\x2b\x2f\x8a\xb0\xa4\xc2\x3a\x18\x1d\xf5\x85\x55\xe6\x8a\x42\xf9\xe7\x25\x0b\x8e\x6f\x70\xdf\xb1\x54\x01\xf0\x6f\x74\x45\x54\x01\xed\xec\xfd\x6e\xad\xda\x5a\x77\xed\x6a\xf9\xb8\xd4\x8d\xe7\x0b\x6e\x15\x56\x86\x0f\xa8\x8b\x49\x97\x1a\xfc\x8e\x2e\x8d\x23\x46\x5f\xdb\x64\xcc\x21\xa8\x63\x9a\x04\x32\x8d\x14\x2c\xef\x5b\x7c\xdd\xb9\x8a\xd3\x0a\x04\xb4\x59\x20\xd5\xf5\x80\x0c\xde\x2e\xdb\x2e\x3e\xfd\x70\x69\x29\x5e\x5a\x9b\x07\x73\x32\x27\x5d\x69\x8c\x7f\x15\xca\x24\x98\x3f\x9a\x13\x80\xfa\x0a\xac\x73\x98\x73\x3d\x1e\xfc\x77\x51\xd6\x95\x4c\x71\x33\xe7\x79\x19\x43\x8d\x5c\x27\xf3\x9c\x07\x85\x34\xad\xf6\xdb\x87\x51\xf3\x9b\x93\x32\x54\xeb\xd6\xad\x24\xb0\x6f\xed\x6a\xa0\xa3\x83\x46\x11\x4c\x25\x04\x0d\x5f\x27\xee\x75\x17\xd6\x01\x7d\x35\x77\x1a\x26\x4c\x7d\x8f\xbc\x36\x52\xe1\xa5\xee\xae\xfd\xde\xc3\xe3\xd1\x31\x3c\xa7\x75\x10\x37\x44\xe6\xf5\x70\xea\xe5\x1b\x2c\xa0\xe3\x34\x6e\x5b\xf4\x72\x18\xd5\x1c\xec\xb7\xbb\xaa\xf7\xbf\x01\x00\x00\xff\xff\xad\x07\xf9\x74\xb6\x07\x00\x00") func complySoc2ReadmeMdBytes() ([]byte, error) { return bindataRead( @@ -317,7 +340,7 @@ func complySoc2ReadmeMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/README.md", size: 1965, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/README.md", size: 1974, mode: os.FileMode(420), modTime: time.Unix(1600197662, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -337,7 +360,47 @@ func complySoc2TodoMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/TODO.md", size: 1429, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/TODO.md", size: 1429, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _complySoc2FrameworksReadmeMd = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8f\x41\x6e\xeb\x30\x0c\x44\xf7\x3e\xc5\x00\x7f\xfb\x1b\xed\xbb\xcb\xa6\xe7\x08\x23\xd1\x16\x13\x49\x34\x48\xba\x86\x6f\x5f\xb8\x41\x8b\xee\x1e\xc0\x47\xcc\xcc\x3f\x7c\x18\x75\xde\xd5\x9e\x3e\x4d\xd7\xd6\x70\x3b\xa8\xb7\x1b\x66\x69\xec\x90\x81\xa8\xe2\x28\x62\x9c\x43\xed\x00\x19\x83\xdc\xb7\xce\x05\xa1\xc8\x3a\x66\xb5\x7e\x62\x8d\x58\xfd\x3d\xa5\x45\xa2\x6e\xf7\x4b\xd6\x9e\x74\xe5\x91\x75\x84\x69\x4b\x9e\x2b\x77\xf2\x14\xc6\x9c\x3a\x79\xb0\xa5\xe7\x4e\x4d\xe6\x23\x79\xd0\x28\x64\x65\x9a\xae\xe5\xb1\x79\x20\x2a\x23\xc8\x16\x0e\xfc\xdc\x30\xab\xbd\xca\xac\xa6\x0f\xce\x81\xfb\x01\x2a\x45\xc6\x02\x35\x18\x77\xfd\x3c\xb9\xc9\xe0\x37\x09\xee\x8e\x5d\xa2\xca\x00\x53\xae\xdf\x7b\xfe\x9f\xe2\xeb\x25\xfd\xfa\xf4\x27\x41\x1a\x83\x47\x88\x71\x3b\x2e\xd3\x57\x00\x00\x00\xff\xff\x04\x1d\x23\xdb\x1c\x01\x00\x00") + +func complySoc2FrameworksReadmeMdBytes() ([]byte, error) { + return bindataRead( + _complySoc2FrameworksReadmeMd, + "comply-soc2/frameworks/README.md", + ) +} + +func complySoc2FrameworksReadmeMd() (*asset, error) { + bytes, err := complySoc2FrameworksReadmeMdBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "comply-soc2/frameworks/README.md", size: 284, mode: os.FileMode(420), modTime: time.Unix(1600197628, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _complySoc2FrameworksTsc2017Yml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x5b\xcd\x72\xdc\x38\x92\xbe\xeb\x29\x70\xb4\x23\x68\x6f\xb4\x24\xdb\x3d\xbd\x27\x75\xb5\x3b\x56\x11\xeb\x9d\x0a\x5b\x33\x77\x08\xc8\xaa\xc2\x1a\x04\xd8\xf8\x29\xb9\xe6\x34\xaf\x31\xaf\x37\x4f\x32\x91\x09\x80\x04\x59\x64\xa9\x4a\xf6\xcc\xc9\x92\x4c\x02\x99\x5f\xfe\xff\xd0\xf0\x16\x7e\x61\x0f\x5f\x56\x57\xab\xd5\x4f\x6f\x7f\xfa\xe5\x8a\xb1\x0d\x6f\x95\x3e\xfc\xc2\x56\xab\x9f\xae\x18\x4b\x0f\xdc\x9b\x00\x5b\xa7\xc2\x81\x71\x23\xd9\xc7\xb0\x53\xc2\x5f\x31\x26\xc1\x0b\xa7\xba\xa0\xac\xf9\x85\x3d\xec\x80\x81\x09\xf8\x90\x84\xd6\x1a\x1f\x1c\x0f\xe0\x19\x67\xc2\xb6\xad\x0a\x2d\x98\xc0\x82\x65\x6a\x74\x16\xe0\x59\x5c\xb3\x3d\xd7\x11\x3c\x51\x71\xbd\x44\xc5\xaf\x96\x3b\xc9\xee\x8d\x84\x0e\x8c\x04\x23\x60\x8e\x86\x47\x7a\xca\x6e\x98\x54\x0e\x44\xb0\xce\x8f\xe9\x51\xd5\xfb\x6c\xe3\x6c\xcb\x5a\x6e\xf8\x16\x88\x3e\x22\xe9\x1b\x38\xa1\x3c\x78\x66\xf7\xe0\xbc\xda\xee\x02\x1e\x17\x76\xc0\x24\xec\x41\xdb\xae\x7f\xb4\x03\xb7\xb1\xae\xe5\x78\x94\xdd\x10\x6b\xce\x70\xcd\x84\x35\xc1\x59\x4d\xec\xdc\x2c\xb1\xf3\x67\xb7\xe5\x46\xfd\x8d\x23\xe9\x5c\xb3\x2f\xc1\x45\x11\xa2\x3b\x62\xea\xd3\x40\x1e\xf8\xc0\x1f\xb5\xf2\x3b\xf0\x0d\x7b\x52\x61\x57\xb8\x2d\x84\x36\xcc\x97\x63\x7c\xc3\x1c\x74\xd6\x05\x65\xb6\x4c\x2b\x83\x7f\x40\x9a\x79\xd7\x39\xdb\x39\xc5\x03\x30\x1e\xc3\xce\x3a\x15\x14\xca\xc9\x48\xe6\xc0\x77\xd6\x78\xf5\xa8\x74\xfa\xa3\x32\xc4\x77\x17\x9d\x8f\x8a\x60\xb0\x8f\xff\x0f\x22\xa8\x7d\x16\xd6\xed\x12\x77\xff\xa3\x9c\x32\xdb\x86\x3d\x38\xae\x0c\x92\x80\xe7\x7f\x86\x80\x2a\x62\xcd\x4b\x95\x87\x87\xe0\xb8\x08\x4d\x91\x44\x93\xc9\x0e\x5c\x19\x7c\xb4\xa3\x0b\x50\xc6\x6a\xaf\x64\xe4\x9a\x58\xe0\x5a\x6d\x0d\x1d\x41\x98\x4d\x58\x78\xb7\xac\xf5\xe5\x14\x76\x27\x84\x8d\x26\x70\x02\xe6\x70\x82\xfa\x9d\xd5\xd2\x8f\xee\xe7\xe5\x55\x0d\x6c\x63\x1d\xe2\xa9\xdc\x91\xaa\x5c\x06\xfd\xdb\xab\xd5\xea\x7a\x6a\xae\xd7\x3d\xe1\x7f\xf1\xa4\x8e\xf7\x86\x94\x13\x69\x64\x5f\x0e\x3e\x40\x7b\xca\x68\xed\x23\x82\xe8\x99\x75\x6c\x0b\x06\x32\xfe\x46\xb2\x88\xa6\xe0\x40\xc3\x9e\x9b\xd0\xb0\x3f\x22\x47\x0c\x98\xaa\x4e\x0f\x96\xf9\xd8\xa1\xb2\x11\xcd\x9b\x68\x04\xfe\x1d\xc5\x3e\x6f\x16\xd7\x53\x2b\x3f\x22\x7e\x65\xdb\x36\x1a\x25\x46\xe4\x37\xe4\x89\xf0\xac\x13\x8c\x94\xeb\xf4\x81\x94\x27\x1d\x42\x80\xf6\x04\x37\x4c\x19\xa1\xa3\x24\x02\x7b\x54\xe7\x4d\x00\x65\x36\xe5\xa0\x61\x06\x04\x78\xcf\xdd\xe1\x25\xbc\xdf\xbc\x8c\xf7\x8f\xdf\x9e\xe5\x7d\xc4\x30\x29\x3b\xe4\x97\x58\xc7\x1d\xf1\xe3\x60\xcb\x1d\x71\xde\xf2\x10\xc0\x79\xc6\x37\x1b\x44\xc0\x6c\xcf\x64\xe0\x66\xaa\x79\x37\x83\x4f\x1b\x4c\x6b\x99\x48\xdf\x81\x50\x1b\xa4\xa5\xc2\x9e\x88\xf5\x71\xb3\x51\x42\xa1\xa5\x0a\xcd\x29\x48\x04\xcb\xc0\x90\xf1\x20\x71\x4a\xe2\x19\x9b\x02\x0d\xf9\x33\xef\xc1\x7b\xb2\x6e\xbb\x61\x4e\xf9\xaf\xa4\xad\x3c\x31\x64\xc7\xd6\x7e\x33\xd5\xbb\x81\xf4\xcf\xca\x7f\xc5\xe7\xcf\x62\xa1\xd0\x81\x78\xd2\x8d\xc1\x12\x7d\x5c\xec\x14\xec\xa1\x50\xa3\xc2\x88\x47\x2e\x9c\xf5\x9e\x1e\xcc\xe7\x10\x03\x86\xeb\xc3\xdf\xfa\x93\x38\x7a\xbd\x47\xee\x55\x52\x3d\x09\x01\x5c\x9b\x5c\xe8\xce\x3e\xd1\xcb\xe9\x41\xbf\xb3\x51\x4b\xf6\x08\x39\x80\x49\xe2\xef\x66\x89\xbf\xdf\x1d\x8f\xf2\x32\x2e\x05\x1a\x82\x44\x15\x21\x4f\x64\xc9\x79\x73\x4d\x74\x6d\xe8\x38\x74\xae\x84\x3f\x92\x77\x0a\x89\x89\x14\x6e\x97\xa8\xbc\x6f\x3b\x2e\xe8\x8d\xd5\x8e\x9b\xed\xb9\x42\x18\x14\x01\x3c\x13\xe9\x4d\x16\x76\x3c\x30\x41\x20\x79\xb5\x35\xa4\x36\x26\xe8\x03\x53\xe9\x12\x24\xd3\x93\x71\x2d\x28\xfa\xed\x54\xd1\x6f\x7b\x3a\x3f\x59\xa3\x82\xc5\x10\x77\x4a\xd1\x41\x83\x08\xbe\x8f\x56\x39\x02\xe7\xac\xc1\x33\x6b\xb6\x36\x87\xc6\xff\xb2\x8e\x79\xe8\x38\xba\x5d\x06\x98\x0d\x91\x86\x13\x9c\xdc\x0b\x70\x14\xe1\x9e\x76\x10\x76\x40\x31\x84\xa2\x9d\x35\x60\x50\xc5\x8e\xa9\x67\xdc\x01\xeb\x1c\xf8\x92\xaa\x54\x66\x4d\x9c\x5d\x2f\x71\xf6\x19\x5a\x90\x8a\x3f\x13\xa5\x33\x89\x19\xfa\x89\x9f\x9d\x90\x22\x21\x19\xb5\xc8\x61\x8d\xb3\xa0\x5a\xd0\x07\xd4\x5b\x83\xdc\xa0\xc6\x58\x0f\x95\x8b\xca\x3e\xb8\x84\x4c\xfe\x15\x61\x12\xd6\xb9\xa4\x44\x8c\x8b\xa9\x1b\xf7\x60\x94\x75\xd3\x5c\x2e\xcc\x26\x84\x0d\x19\xd9\x90\x07\x5d\xad\x56\xef\xa6\xa2\x7e\x77\xec\xd3\x92\xf1\x7c\x52\x41\x6d\x9f\x83\x27\x4b\x9e\x68\x28\xc2\x1f\x44\x83\xa7\xa5\xe0\x92\x55\xd4\x04\xa7\x1e\x63\x80\x62\x3c\x6d\x7f\xc7\xe0\xd3\x9e\xb3\x2b\xd2\x14\x21\xa0\x4b\xa9\x86\xc6\x5b\x3d\x71\x76\xbd\xc4\xd9\x03\x88\x9d\xb1\xda\x6e\x0f\x6c\x95\x68\x3b\x65\x6e\x5c\x7b\x3b\xcf\x58\xca\x17\xf4\x1c\x83\x98\x99\xb2\x30\xdc\x33\x89\x96\xa7\xbc\xc4\xbb\xa9\x2f\x1b\x08\xff\xd8\xe7\xc1\x92\xad\xad\x46\xed\x3a\x5d\x8f\x74\xda\x1e\x16\x04\xe0\x6c\xdc\xee\x58\x97\x4f\x49\x12\xe9\xf3\x6c\xf6\x84\xbf\x2a\xcf\xe0\x5b\x07\x22\x80\x24\xc6\x95\x61\x9d\xb3\x02\x24\xa6\xd9\xe9\x8d\x2e\x86\xe1\x0c\x65\x48\x16\xa4\x23\xab\xd5\xfb\xa9\x6a\xbd\xef\xf9\xf8\x5f\xbb\xa5\xea\xe7\x4e\x60\x36\x71\xca\xd5\xb5\x9d\x26\x94\x3c\xd3\xf9\x1d\x4e\xef\x30\x0f\x22\x52\xa0\xf4\x76\x13\x9e\xb8\x03\x34\x8a\x8d\xe3\x7d\x1d\x90\xb3\x7e\x27\x76\x2a\x40\xaa\x0c\x92\x54\x3a\x67\x43\xe2\xa9\x4e\xe5\xd0\x8b\x06\x52\xa6\xfc\xff\x28\xa7\x36\x15\x4a\xfd\x5d\xb0\x27\x52\x82\x65\x2d\x40\xa8\x02\xda\x3f\xff\xfe\x0f\x3f\x96\xe2\xfb\xa9\xfa\xbd\xaf\xb3\x1d\xb7\xc0\xfa\xda\xa1\x31\x63\xb5\xe8\x7d\x24\xf3\x4e\x7e\x5a\x38\x90\x29\x08\x25\x15\xdc\x3a\x6e\x42\xf5\xff\x09\x94\xa6\x0e\xb1\x0e\xb6\xca\xa7\x3c\x07\x71\x48\x15\x0f\x86\x5b\x03\x4f\x83\xaf\x4a\x85\x5f\xfe\x25\x7a\x7c\xfc\x89\x7c\x52\x86\x59\x79\xc6\x25\x86\x61\x3c\x0a\x24\x7b\x3c\x54\x77\xbc\x65\xbf\x53\x62\x8f\xcf\x5f\xfa\x6e\x43\x6f\xcc\xf2\xe7\x80\x39\x68\xed\x1e\x24\x3a\x7e\x93\x1e\x1c\xce\x34\x96\x69\x6b\xb6\xf8\xb7\xc2\x94\x24\xc0\x6f\x96\x00\xff\x6c\x35\xbc\xf9\x95\x7b\x90\xcf\x6b\xdc\x00\x54\xc3\x5a\x2b\x29\xcc\x36\x58\x1c\x24\x92\x7c\x21\x24\x58\x26\x79\xe0\x4d\xa5\x7f\x25\xd4\xe4\x70\x67\x29\x64\x9d\xd4\xb6\x47\xa2\xc9\x1a\xe6\xac\x4e\x85\xeb\x38\x09\xa7\x8b\xab\x70\x2d\x01\x03\x7a\x0a\x3d\x29\xd8\x37\x6c\xab\xf6\x29\x48\xa4\x9c\xa5\x2f\x4c\x52\xac\x34\xe8\x18\x29\x52\x6a\xe0\x3e\xb0\xce\xa9\xbd\xd2\xb0\x05\x3a\xc4\xc3\x16\xd3\xe2\xe2\x70\x65\x4c\x97\x9e\xa7\xdf\xb7\x4b\x70\xaf\x77\x07\x7f\x9e\x79\x3b\xf0\xc1\x29\xf4\xab\x5d\x79\x67\x80\x77\xc3\x45\xa9\x45\x28\x7b\x38\x05\xe4\x2b\x0c\x97\xf0\x8d\xa3\xbb\x68\x48\x30\x4c\x00\xea\x78\x75\x4a\xc3\x1e\xb9\xf8\xfa\x26\x76\x8c\x02\x3d\xf3\xc1\x3a\xbe\x85\x5a\x58\x1e\x8c\x57\x14\xf2\xb4\x4d\xa9\xb6\x7f\x4d\xf1\xa5\x57\x34\x4c\x62\xbc\x35\x06\xf4\x99\x28\xbd\x5b\x42\xe9\x37\x24\xf2\x37\xe5\x3b\xeb\x4f\x96\x36\x52\x79\xf4\xdf\xca\x44\xa8\x9c\x20\x02\x52\x20\xcb\xc8\x50\xda\x94\x3c\x5c\x0f\x66\x42\xc7\x1a\x7d\x60\x7c\x13\x72\x06\x95\xab\x79\x64\xc0\x01\x97\x49\xb9\x05\xbd\x49\xc8\x91\x66\x64\xad\x4e\x0e\x30\x99\x78\x3e\x6d\xc7\x3d\x7b\x04\x30\x4c\x2a\x32\xee\x5d\x89\x0e\xb5\x69\x3a\xf8\x23\x2a\x34\xfa\xf3\x50\x7a\xbf\x84\x52\xa9\xfd\xd8\xc3\xce\x01\x0f\xdf\x19\x2b\x5a\xe0\x3e\xc5\xae\xc1\xcd\xf3\x2d\x96\xff\x48\x20\x5d\x90\x3d\xbe\x8d\x4e\x60\xc0\x88\x01\xad\x8a\x0a\x9a\x6c\x83\x8f\x36\x1a\xc9\x9d\xca\x94\x7f\x38\x29\xdf\x55\xf4\xc1\xca\x54\xef\x3c\x38\x6e\x7c\xab\xbc\x3f\x9d\x42\x0d\x36\x81\x90\x85\xea\x25\x74\x48\x29\x67\x28\xed\x9f\xd6\xee\xb9\x4e\x69\xf0\xa8\x29\x51\xe9\xeb\x29\x4f\x9f\xcd\x4a\x50\xf9\xd0\xd4\x56\xe6\x99\x0a\x4c\x46\x47\xb5\xe4\x02\x09\xc5\x27\xf2\x73\x4d\xe1\xe7\x25\xa8\x3e\x71\x4d\xba\xf6\x1b\x64\x3d\x3e\x4f\xca\x39\xad\xc9\xd2\xa4\xd8\xcc\x72\xe5\x28\x52\x1a\x8c\xd5\x4e\xec\x6c\xea\x28\x29\x7c\x5a\x46\x51\xbc\x5d\x34\x15\x4c\x94\x42\x63\x1a\x63\xa3\x1f\x94\xff\x1c\xbe\x3e\x4c\xd3\x9c\x0f\x3d\x5f\x7f\x8d\x1a\x13\xc4\x6c\x6e\xcb\xdc\xe5\x5b\xc6\x55\xf3\x28\x98\x53\x2f\x4a\x96\x03\x88\xb7\xb6\xaf\xc4\x46\x49\x99\x2d\xe5\xe1\x81\xbd\xfa\xe9\xf5\x50\x13\x5a\x84\x6b\xa3\xb6\xd1\x95\x02\x0b\xd3\x37\x07\x3e\xea\x50\x7a\x6e\x53\x84\x30\x53\xd8\x57\x3c\xa8\xa2\x25\xaf\xae\x5f\x33\x1f\x3d\xc6\x96\xa1\x61\x14\x2c\xbe\xa0\xb3\xc7\xda\x53\xc8\x9f\xbc\x4d\x70\x5d\x2f\xc1\x75\x67\x6c\xcb\xf5\x29\xa0\x06\x40\x32\xf7\xbd\x55\x56\x55\x61\xa9\x7f\x6c\x57\xa2\x21\x75\xb1\xd1\x83\x55\x4f\x61\xc0\xe0\x74\x61\x9f\xfd\xa2\xc4\x95\x91\xd4\x64\xd9\x53\x43\x6a\x50\x09\x4e\xf5\xac\xe1\x21\x62\xc2\x2f\x95\xe7\x94\x5b\x25\x38\xc0\x39\x7b\xd4\x4f\xaa\xf4\xa5\x72\xb8\x33\x82\xfe\xef\x8a\x0e\x24\x21\xf7\x45\xc8\x75\x96\x2e\x08\xd4\x25\x30\xfa\x88\x52\xe2\x4e\x52\x53\x02\xf8\x66\x09\xe0\x2f\xe5\xe1\x7b\x23\x48\x4b\xd8\xc7\xbe\xe2\x3e\xab\xe6\x9d\x49\x84\x17\x28\x4c\xed\x07\xeb\xd8\x8e\xef\x21\xab\x19\xa4\xbe\x09\xdb\x70\xa5\xa3\x83\x32\x5c\xc8\xb7\xcc\x83\xc3\x5e\xf5\x77\xaa\x4c\xb4\x7f\x8d\xa0\x37\x4c\x6d\x98\xb7\x0d\x16\xc9\x94\x95\xf5\x6d\x83\xca\x15\x70\x29\x1d\x05\x80\x28\x76\xe5\xda\x84\xd1\xed\xf9\x18\x7d\x4e\x49\x19\xb0\xb5\xe6\xcf\x38\xee\xce\x1a\x59\xdb\xa0\x02\xc9\x8e\xe9\xc7\x44\x18\xbe\x81\x88\xa4\x2b\x9c\xfa\x04\x86\xc0\xc9\x37\xba\x72\x63\xe7\xec\xd6\xf1\x16\x4f\x8c\x46\x82\xf3\x81\x38\x47\xc7\xc7\x95\xc1\x7c\x31\xf5\x2c\x72\x12\x53\xb5\x23\x66\xae\x9d\xa9\xfe\x3f\x4c\xd3\x93\xb3\x70\xf8\x98\x68\x3f\xed\xa6\xfb\x1e\xd5\xb4\x0b\x54\x39\xf0\xba\x1e\xb5\x7d\x0e\x42\x01\xf8\x24\x80\x57\xab\xd5\xcf\x53\xaf\xfb\x73\x4f\x79\x6a\xa0\x95\xca\xfe\xcc\x54\x3f\x65\xd6\x15\xb1\xa4\x3e\x82\x92\x18\xdf\xf4\xbe\x93\x1e\xb5\x22\xb6\x09\xd0\x00\x9e\x70\x45\x50\xf7\x70\xcc\x60\xe5\x7d\xa7\xc5\xe9\xb4\x78\xe8\x63\x71\xef\xc7\x67\xac\xe1\x6a\xb5\xfa\xd3\x94\xf1\x3f\x0d\x19\x87\xf2\x2e\x12\x9b\x17\x74\x6c\x6a\x41\xf5\x7d\xbb\x51\x97\xc3\xe1\x59\x55\x67\xa6\x92\x1a\x3a\xd1\xdc\xbd\x75\x8a\x7a\xa1\x24\xbc\xa1\x63\xfa\x18\xbd\x32\x68\x81\xb2\xa7\x2d\x31\x71\xbd\xc4\xc4\x5f\xc1\x48\xeb\x32\x03\x7d\x53\xeb\x94\x14\x4b\xfb\x93\x82\x22\xbd\x31\xb4\x94\xbd\x15\xa8\xea\x32\xb5\xd9\xf7\x74\x76\x7a\xb2\xa7\xac\xe3\x2e\x18\x70\xfe\xea\x6e\x32\x08\xbe\x1b\x26\x62\x2b\xde\x71\x81\x97\xa1\x0b\x30\xa7\x9b\x9f\x2d\x57\x64\x9d\x54\x3f\xa6\x20\x95\xa3\x44\xef\x46\x45\x74\x0e\x2d\x2a\xe7\x5e\x54\xbe\x95\x1b\xf2\xe4\x09\x9d\xe3\x71\x68\x7b\x35\xaf\x45\x75\xc2\x4e\xf5\x4a\x82\x61\x38\x54\x42\x9b\x3a\xee\x72\x3a\x57\x28\xba\xda\x07\x4a\x2e\xa5\xca\x93\xd9\xfe\xf5\x60\xd9\x0e\x74\x37\xab\x91\x77\x93\xc1\x75\x85\xda\xaf\x5c\x7c\x8d\x5d\x1e\x80\x92\x6d\x9f\x9a\x20\x5e\x60\x8d\x83\x85\x35\x39\xca\xc3\xc8\x0a\x2b\x11\x54\x99\x92\x67\x60\xf6\xca\x59\x9a\x88\x8e\xcb\xa6\xda\x10\xa9\x04\x2a\x95\xe2\x24\x3b\xce\x2e\xea\x30\xb1\xe6\x25\x6b\xbd\x9b\x4c\xc1\x2b\x6c\x0a\x20\xec\x01\x7c\x38\xad\x50\xe4\x64\x86\xab\x3b\xcd\x47\x6d\xb8\xdc\x56\xac\x9a\x41\xfd\xa3\x4b\x4e\x64\xba\xf1\x50\x29\x3a\xfa\xb9\xdc\x89\x19\xcd\x51\xef\x47\x03\xa8\xf3\x87\x13\xbd\x28\x92\x0b\x2d\x47\x4f\xea\x95\xd3\x49\x76\x1a\x6b\xa5\x84\xa8\x3e\x45\x85\xc3\xd5\xd1\xde\xc4\x19\xbc\x9c\x57\x74\x77\x96\x56\x21\x36\xff\x1e\xc2\xdf\x5e\xad\xef\x27\x62\x58\xdf\x0f\xb4\xaf\x07\xcf\x30\xec\xa0\x9c\x35\x7b\x99\x1b\x67\x53\xaf\xcd\x1f\xe5\x08\xcf\x4d\xb7\x87\x89\x29\xa5\xd3\xb3\x6c\x0d\x2e\xac\x1e\x4a\x48\x60\x46\xe5\x86\xc4\x26\x59\x54\xb1\x24\x59\x22\x1d\xd6\x19\xb9\x09\xe5\xf6\x4a\x40\x1a\x8f\xb2\xdc\x76\x69\xa6\x1d\xf3\xec\x13\xf3\x8b\xbe\x7e\xd3\x13\x96\xd7\x17\x61\x79\x27\x44\x74\x5c\x9c\x72\x48\x55\x1c\xef\x3b\xdc\x93\x28\x4d\xf9\x4a\xb6\x3a\x65\xba\x88\x0e\x69\x40\xa1\xaf\x4f\xe9\x31\x74\xe3\x1a\x02\x50\xd0\x49\xc5\x69\x22\xa1\x49\xc9\x4f\x29\xc4\x0a\x87\x4d\xcf\x5e\xf1\x3d\xc5\xcc\x9f\xaf\x4a\x11\x8f\x9b\x8b\xf0\xf8\x73\x29\x96\xce\xec\xb0\x9c\x83\x48\x15\xde\xfe\x2d\x1c\xde\x5e\xc6\x61\x0c\x28\xa0\xef\x63\x8f\x62\xeb\x57\x60\x7c\xcf\x95\xa6\x28\x4a\x0d\x07\xad\x90\x6d\x4b\x37\xf4\x82\xd6\x87\x26\xcb\x38\xff\x8c\xd1\x37\x0d\x00\xb1\x0c\x12\xc2\x3a\x49\x1b\x54\x69\x05\xa0\xd6\xfe\x33\x01\x78\x77\x11\x00\x29\x1c\x7f\x3f\x00\x3e\x58\x2a\x94\xb3\xba\x07\x68\x7d\x3f\x19\xca\x9e\x80\x3a\xaa\x09\xef\x97\xc2\x91\x54\xe8\x62\x54\xa6\x3e\xb5\xc6\x44\xed\xb9\x38\xb0\xff\xb3\x67\xc5\x31\xcc\x25\x94\x04\xcf\x8c\x0d\xe8\x9d\x72\xbf\x9f\xf9\x48\xb7\x61\x51\x6f\x63\x0a\xad\x5d\x3e\xb9\x73\x98\x1a\x0b\x38\x83\xd0\xb1\x0b\xa5\xd7\xdf\xd2\xed\xf9\x36\xe5\x59\xec\x24\x2f\x83\xb7\xca\x69\xcb\x63\x4a\x66\x46\xcb\x98\x98\x57\xc5\xc7\x84\x8e\x23\x82\x47\x5e\x2b\xbf\x96\x7b\x42\xc5\xef\x52\xdb\x7b\x1c\x00\xcf\x18\x14\xcc\xf0\x79\xb5\x9e\x6c\x70\xad\xaf\x8f\x64\xb4\xc2\x3a\x33\x8f\xb2\x57\x3b\xab\xe6\x37\x1e\xe7\x76\x7f\x04\x3d\xed\x2b\x03\x1d\x47\x31\x61\xb5\x86\x3c\x44\x8f\x1e\xb0\x84\xce\xab\x79\x0d\xf5\xad\xb4\xf5\xfd\xec\x50\xe6\x3c\x61\x89\xff\x82\xec\x44\x2f\x72\xfb\x49\x20\x0f\x7f\x44\x30\x09\xdf\x0d\xe3\xe6\xd0\xe0\x51\xc0\xc5\x2e\xd3\xf9\x96\x7d\xfc\xd6\xa1\xa1\x85\xf4\xb8\x09\x65\x55\xee\xc7\x12\xaa\x7c\xce\x0b\x40\xa6\x0a\x6d\x4c\xb2\x75\x79\xfe\x71\x34\xe7\x48\x94\x97\x66\xfe\x5b\xf6\x25\x22\xed\x99\xd4\xfa\x54\x1a\x31\x14\xda\x95\x09\x60\x24\x1e\x12\x1d\xa6\x51\xa5\xd3\xf3\xe2\xe4\x69\x64\x22\xd5\xd3\xf3\xeb\x42\xe8\xc6\xfe\x23\x98\x96\x4e\x00\xc8\xab\xf5\x64\x39\x6c\x3d\xac\xf6\xac\xcb\xdb\x75\x0e\xba\xea\x49\x39\x1a\x01\x2f\x5c\x96\x89\x07\x99\x46\x7d\x3e\xf4\x7b\x9d\x97\x59\xdf\x64\x15\xac\x22\xb4\xd7\xc5\x6c\x7e\x53\xca\x7e\xa7\x8d\xc0\x3a\x3f\x44\xb5\x40\xc4\x61\xa2\xc5\xa3\xde\xf5\xc8\x3e\xf1\xef\x06\x50\x0d\xad\x4b\x6d\xb9\xfe\x15\xee\xd9\x13\x68\x8d\xff\x4e\xed\x87\x0a\xd3\xbe\x6f\x98\xd2\x4e\xf4\xce\x47\x12\x46\x92\xc0\xa7\xdf\xe7\x5d\x16\x85\xa6\x9c\x23\xf7\xd7\x50\x2d\x9e\x27\xef\x63\x45\xf9\x51\xaa\x7b\xb5\x9e\x2c\x55\xad\x6f\xeb\x68\xdd\x81\x2b\x4b\x90\x73\xea\x72\xc2\xfb\x69\xd5\xaa\x3c\x2b\x3a\xe1\xaa\x0b\x63\xd9\x20\x7d\xdd\x5f\xcb\x8e\xfe\x12\x4e\xae\x97\x38\x99\x53\xf5\x73\x96\x9f\xd3\x26\xb3\x9f\xa7\xfd\xfb\xf4\xfd\x76\x92\x09\x3f\x43\xed\x19\xc5\x21\x35\x24\x41\x8f\xab\xc4\x25\xd4\x5f\xa0\x29\x93\x9d\xac\xf5\xbb\xf1\x4c\xf1\x4b\x72\xdb\xcf\x4f\xd7\x69\x49\x64\x24\xea\xb2\x09\x82\x7f\x48\xc9\xc4\x38\x10\x4c\xa6\xc3\x65\x16\x4f\x9b\xdb\x94\xf6\xc9\x79\x3e\xa9\x0f\x08\x7b\x05\x4f\xa9\x35\x4f\x33\xb7\x6c\x8b\xcd\x90\x4a\xf5\x73\x69\xeb\x18\xb5\x1a\x9d\x35\x4a\x30\x61\x3b\x95\x40\xa4\x31\xcc\x04\xc0\x09\x85\x2f\x0a\x1b\xf7\x9b\x6a\x7f\x44\x82\x51\x20\x9b\x69\xd8\x76\xc5\xc8\x41\x0e\x9f\x3d\x18\x95\x27\xa7\x0e\xb8\xcf\x8c\x92\xd7\x4a\xff\x45\x4e\xab\x44\xc7\x97\xa6\x43\x93\x45\xb5\x45\x71\xb7\x60\xe4\x33\xbd\xd0\xbc\x29\x88\xf5\x14\x3e\x9d\xf6\x47\x78\xd7\xe1\xcf\xf3\x92\xeb\x37\x50\xea\x3f\x66\x81\xd1\xc6\xce\x71\x72\x33\xf2\xe7\x04\xc6\x91\xa3\x51\x4e\x96\xa5\x46\x82\x28\x7d\xcc\x10\x20\xef\x1a\x7c\x0f\x5e\x49\x98\x23\x47\x5f\xf6\x23\x73\x50\xfe\x71\xe2\x7d\xa1\x40\x27\x8b\x6f\xeb\xf7\x75\x4b\xaa\x0f\x57\x0f\x84\xd2\x9a\xbb\x70\x40\xa7\x93\x93\x8f\x67\x16\x41\x34\xb9\x9b\x65\x0f\x5f\x01\x5f\xf9\xca\x69\x8e\x59\x7a\x32\x05\x9d\xdc\x41\x5e\xca\xed\xfa\xd0\x38\xe4\x48\x2f\x46\xe6\x7a\x01\x99\xbb\x21\xf3\x1c\xc0\x38\xb9\xa3\xed\xa0\x5f\xc3\x2d\xd1\x83\xf7\xc5\xe6\x50\x6a\x8e\x0a\x4d\x07\x58\x65\x52\x36\x31\xdc\x37\x70\xf5\xa3\x1d\xf9\x64\x25\xad\x62\xf7\x2f\xf5\xee\xc1\x7f\x84\xe1\xb4\x3c\x50\x2c\xb0\xb3\x0e\x7f\x1e\xad\x40\xd4\x38\xbc\x1a\xea\xc1\x47\x87\x05\x0b\xf8\xd7\x3f\x1c\x9c\xdb\x25\x5d\xa8\xbe\xd4\xba\xd8\x4a\x4a\x6e\x57\x6a\xdc\xe1\x3b\xaa\xbc\xda\x53\x0f\x81\x6c\x1e\x58\x8f\xcc\x66\x67\xd3\xd0\x7a\xd8\x44\xfb\x61\x5c\xbf\x9d\x1d\x5c\x8d\x96\xc0\xff\xf9\xf7\x7f\x24\xa1\xaa\xf4\x75\x1d\xd6\xf6\x1d\x38\x65\xa5\x12\x79\xdd\xff\x0d\x26\xd0\xe8\x9d\xa9\xfa\x21\x69\xd3\x0c\x7c\x6e\x4f\x7c\x33\x7c\xb1\x83\x90\xbf\x3b\x47\x1f\x5f\x8c\xf9\xe5\x58\xa3\x8b\x7a\x1e\x67\x63\x69\x9f\x25\xd4\xdf\x3a\xa5\xdf\xf6\xd9\x9d\x71\x11\x62\xca\x2b\x7c\xf4\x79\x63\x79\x51\xb9\x17\xf4\x38\x57\xb7\xa6\xea\x0f\x95\x65\xd4\x6c\x2e\x98\x12\x55\xba\x39\xac\x02\xe6\x5d\xa3\x12\x49\x8f\xba\x59\x50\xed\x6d\xcf\x4e\xf9\xa7\x63\xdf\x4b\x4d\xe9\xfd\x82\x5c\xeb\x66\x17\xf2\xfd\x7d\x72\x1e\xf5\xc4\xea\x63\x8b\x8f\xc8\x5b\xe2\x65\xcf\x01\xf1\xa2\x9d\x98\x69\xa2\x89\x95\xf7\x36\x6a\x3e\x0c\x47\x49\x3b\x5e\xce\xff\x87\x25\x57\x92\x3e\x42\xcc\xdf\x74\x5d\x58\x5a\xf5\xec\x8e\x53\x89\xa4\xb4\xa6\x7c\xe0\x98\xcf\xa6\xea\x6a\x4e\x7f\x77\xa0\x65\xe9\x28\x94\xe8\x59\x12\x90\xfa\x5c\x34\xfc\xf9\x92\xb5\xdf\x60\x3b\x7a\xbe\x4f\xb1\x5f\x86\xdb\x64\x75\x6d\xfd\xa1\xc6\x8d\x66\x13\x2f\x40\x2d\xd7\xce\xd3\xf1\xdf\x10\x9e\x62\xf7\x26\xd8\x37\x92\x7e\xae\xc2\x17\x85\xb5\x34\x8e\xfa\x91\x61\x66\xb2\x28\xb2\xfe\xf9\xf9\xf2\x2f\x06\x60\x9f\xc1\x5b\xfd\xec\x92\x4b\xb5\xca\x52\xfa\xdf\xb9\x16\x12\x40\x6b\xd9\x4d\x59\x41\xa2\x9f\x1d\x1e\xba\xef\x3b\xe4\x43\x22\x5d\xba\x93\xae\xbf\x35\x2d\x75\x52\x7f\x25\xed\x9f\xb4\x9d\x46\x2c\xfd\xd0\x9d\x8a\x98\x0d\xcc\x74\xf3\x2a\x73\xca\x5f\x5d\x51\xf0\xa0\x0f\x43\xfb\x51\x78\x15\x62\x5e\x16\xc8\x56\x7d\xd2\x5d\xbb\xf7\xe1\xf3\xd0\xb2\x90\x55\xbd\x5b\x15\xa2\xa3\x4f\xa3\xd0\xc7\xb6\x5c\xd2\x2c\x05\x23\x99\x99\xe9\x68\xff\x2b\x00\x00\xff\xff\x3d\xcd\xda\x58\xb1\x3f\x00\x00") + +func complySoc2FrameworksTsc2017YmlBytes() ([]byte, error) { + return bindataRead( + _complySoc2FrameworksTsc2017Yml, + "comply-soc2/frameworks/TSC-2017.yml", + ) +} + +func complySoc2FrameworksTsc2017Yml() (*asset, error) { + bytes, err := complySoc2FrameworksTsc2017YmlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "comply-soc2/frameworks/TSC-2017.yml", size: 16305, mode: os.FileMode(420), modTime: time.Unix(1600190455, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -357,7 +420,7 @@ func complySoc2NarrativesReadmeMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/narratives/README.md", size: 96, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/narratives/README.md", size: 96, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -377,7 +440,7 @@ func complySoc2NarrativesControlMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/narratives/control.md", size: 3325, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/narratives/control.md", size: 3325, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -397,7 +460,7 @@ func complySoc2NarrativesOrganizationalMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/narratives/organizational.md", size: 2378, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/narratives/organizational.md", size: 2378, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -417,7 +480,7 @@ func complySoc2NarrativesProductsMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/narratives/products.md", size: 895, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/narratives/products.md", size: 895, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -437,7 +500,7 @@ func complySoc2NarrativesSecurityMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/narratives/security.md", size: 4047, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/narratives/security.md", size: 4047, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -457,7 +520,7 @@ func complySoc2NarrativesSystemMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/narratives/system.md", size: 257, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/narratives/system.md", size: 257, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -477,7 +540,7 @@ func complySoc2PoliciesReadmeMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/policies/README.md", size: 71, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/policies/README.md", size: 71, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -497,7 +560,7 @@ func complySoc2PoliciesAccessMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/policies/access.md", size: 2178, mode: os.FileMode(420), modTime: time.Unix(1545087106, 0)} + info := bindataFileInfo{name: "comply-soc2/policies/access.md", size: 2178, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -517,7 +580,7 @@ func complySoc2PoliciesApplicationMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/policies/application.md", size: 8377, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/policies/application.md", size: 8377, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -537,7 +600,7 @@ func complySoc2PoliciesAvailabilityMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/policies/availability.md", size: 7019, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/policies/availability.md", size: 7019, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -557,7 +620,7 @@ func complySoc2PoliciesChangeMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/policies/change.md", size: 2793, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/policies/change.md", size: 2793, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -577,7 +640,7 @@ func complySoc2PoliciesClassificationMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/policies/classification.md", size: 14376, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/policies/classification.md", size: 14376, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -597,7 +660,7 @@ func complySoc2PoliciesConductMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/policies/conduct.md", size: 4492, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/policies/conduct.md", size: 4492, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -617,7 +680,7 @@ func complySoc2PoliciesConfidentialityMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/policies/confidentiality.md", size: 3653, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/policies/confidentiality.md", size: 3653, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -637,7 +700,7 @@ func complySoc2PoliciesContinuityMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/policies/continuity.md", size: 5043, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/policies/continuity.md", size: 5043, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -657,7 +720,7 @@ func complySoc2PoliciesCyberMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/policies/cyber.md", size: 4805, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/policies/cyber.md", size: 4805, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -677,7 +740,7 @@ func complySoc2PoliciesDatacenterMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/policies/datacenter.md", size: 3014, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/policies/datacenter.md", size: 3014, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -697,7 +760,7 @@ func complySoc2PoliciesDevelopmentMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/policies/development.md", size: 8933, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/policies/development.md", size: 8933, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -717,7 +780,7 @@ func complySoc2PoliciesDisasterMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/policies/disaster.md", size: 10315, mode: os.FileMode(420), modTime: time.Unix(1545087106, 0)} + info := bindataFileInfo{name: "comply-soc2/policies/disaster.md", size: 10315, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -737,7 +800,7 @@ func complySoc2PoliciesEncryptionMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/policies/encryption.md", size: 5381, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/policies/encryption.md", size: 5381, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -757,7 +820,7 @@ func complySoc2PoliciesIncidentMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/policies/incident.md", size: 8552, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/policies/incident.md", size: 8552, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -777,7 +840,7 @@ func complySoc2PoliciesInformationMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/policies/information.md", size: 5359, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/policies/information.md", size: 5359, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -797,7 +860,7 @@ func complySoc2PoliciesLogMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/policies/log.md", size: 4307, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/policies/log.md", size: 4307, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -817,7 +880,7 @@ func complySoc2PoliciesMediaMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/policies/media.md", size: 8819, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/policies/media.md", size: 8819, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -837,7 +900,7 @@ func complySoc2PoliciesOfficeMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/policies/office.md", size: 3927, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/policies/office.md", size: 3927, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -857,7 +920,7 @@ func complySoc2PoliciesPasswordMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/policies/password.md", size: 1796, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/policies/password.md", size: 1796, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -877,7 +940,7 @@ func complySoc2PoliciesPolicyMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/policies/policy.md", size: 892, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/policies/policy.md", size: 892, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -897,7 +960,7 @@ func complySoc2PoliciesPrivacyMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/policies/privacy.md", size: 346, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/policies/privacy.md", size: 346, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -917,7 +980,7 @@ func complySoc2PoliciesProcessingMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/policies/processing.md", size: 210, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/policies/processing.md", size: 210, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -937,7 +1000,7 @@ func complySoc2PoliciesRemoteMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/policies/remote.md", size: 4119, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/policies/remote.md", size: 4119, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -957,7 +1020,7 @@ func complySoc2PoliciesRetentionMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/policies/retention.md", size: 6811, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/policies/retention.md", size: 6811, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -977,7 +1040,7 @@ func complySoc2PoliciesRiskMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/policies/risk.md", size: 10486, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/policies/risk.md", size: 10486, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -997,7 +1060,7 @@ func complySoc2PoliciesVendorMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/policies/vendor.md", size: 3139, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/policies/vendor.md", size: 3139, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1017,7 +1080,7 @@ func complySoc2PoliciesWorkstationMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/policies/workstation.md", size: 1791, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/policies/workstation.md", size: 1791, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1037,7 +1100,7 @@ func complySoc2ProceduresReadmeMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/procedures/README.md", size: 92, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/procedures/README.md", size: 92, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1057,7 +1120,7 @@ func complySoc2ProceduresOffboardingMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/procedures/offboarding.md", size: 358, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/procedures/offboarding.md", size: 358, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1077,7 +1140,7 @@ func complySoc2ProceduresOnboardingMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/procedures/onboarding.md", size: 495, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/procedures/onboarding.md", size: 495, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1097,7 +1160,7 @@ func complySoc2ProceduresPatchMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/procedures/patch.md", size: 380, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/procedures/patch.md", size: 380, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1117,12 +1180,12 @@ func complySoc2ProceduresWorkstationMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/procedures/workstation.md", size: 1081, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/procedures/workstation.md", size: 1081, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _complySoc2StandardsReadmeMd = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8f\x41\x4e\xc3\x40\x0c\x45\xf7\x39\xc5\x97\xd8\x42\x67\xcf\xae\x67\xe0\x02\x75\x67\x9c\x8c\xcb\xcc\x38\xb2\x1d\xaa\xdc\x1e\x85\x02\xea\xee\x49\x7e\x96\x9f\x5f\xf0\x11\x34\x0a\x59\xf1\x69\x3a\xb7\x86\xcb\x4e\xbd\x5d\x30\x4b\x63\x87\x0c\x44\x15\x47\x11\xe3\x1c\x6a\x3b\xc8\x18\xe4\xbe\x75\x2e\x08\x45\xd6\x31\xab\xf5\x03\x6b\xc4\xea\xef\x29\x2d\x12\x75\xbb\x9e\xb2\xf6\xa4\x2b\x8f\xac\x23\x4c\x5b\xf2\x5c\xb9\x93\xa7\x30\xe6\xd4\xc9\x83\x2d\x7d\xde\xa9\xc9\xbc\x27\xff\x4d\x98\xa6\x73\xb9\x6d\x1e\x88\xca\x08\xb2\x85\x03\x7f\x33\xcc\x6a\x8f\x98\xd5\xf4\xc6\x39\x70\xdd\x41\xa5\xc8\x58\xa0\x06\xe3\xae\x5f\x07\x37\x19\xfc\x26\xc1\xdd\x71\x97\xa8\x32\xc0\x94\xeb\xcf\x3f\xaf\x87\xf8\x58\x49\xff\x3e\x3d\x5d\x90\xc6\xe0\x11\x62\xdc\xf6\xd3\x77\x00\x00\x00\xff\xff\x10\x04\x60\x45\x1a\x01\x00\x00") +var _complySoc2StandardsReadmeMd = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8f\x41\x6e\xeb\x30\x0c\x44\xf7\x3e\xc5\x00\x7f\xfb\x1b\xed\xbb\xcb\xa6\xe7\x08\x23\xd1\x16\x13\x49\x34\x48\xba\x86\x6f\x5f\xb8\x41\x8b\xee\x1e\xc0\x47\xcc\xcc\x3f\x7c\x18\x75\xde\xd5\x9e\x3e\x4d\xd7\xd6\x70\x3b\xa8\xb7\x1b\x66\x69\xec\x90\x81\xa8\xe2\x28\x62\x9c\x43\xed\x00\x19\x83\xdc\xb7\xce\x05\xa1\xc8\x3a\x66\xb5\x7e\x62\x8d\x58\xfd\x3d\xa5\x45\xa2\x6e\xf7\x4b\xd6\x9e\x74\xe5\x91\x75\x84\x69\x4b\x9e\x2b\x77\xf2\x14\xc6\x9c\x3a\x79\xb0\xa5\xe7\x4e\x4d\xe6\x23\x79\xd0\x28\x64\x65\x9a\xae\xe5\xb1\x79\x20\x2a\x23\xc8\x16\x0e\xfc\xdc\x30\xab\xbd\xca\xac\xa6\x0f\xce\x81\xfb\x01\x2a\x45\xc6\x02\x35\x18\x77\xfd\x3c\xb9\xc9\xe0\x37\x09\xee\x8e\x5d\xa2\xca\x00\x53\xae\xdf\x7b\xfe\x9f\xe2\xeb\x25\xfd\xfa\xf4\x27\x41\x1a\x83\x47\x88\x71\x3b\x2e\xd3\x57\x00\x00\x00\xff\xff\x04\x1d\x23\xdb\x1c\x01\x00\x00") func complySoc2StandardsReadmeMdBytes() ([]byte, error) { return bindataRead( @@ -1137,7 +1200,7 @@ func complySoc2StandardsReadmeMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/standards/README.md", size: 282, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/standards/README.md", size: 284, mode: os.FileMode(420), modTime: time.Unix(1600197675, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1157,7 +1220,7 @@ func complySoc2StandardsTsc2017Yml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/standards/TSC-2017.yml", size: 16305, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/standards/TSC-2017.yml", size: 16305, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1177,12 +1240,12 @@ func complySoc2TemplatesDefaultLatex() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/templates/default.latex", size: 7649, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/templates/default.latex", size: 7649, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _complySoc2TemplatesIndexAce = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x59\x6d\x6f\x1b\xb9\x11\xfe\xee\x5f\x31\xd8\x7c\x90\x8c\x58\x94\x9d\x2b\xae\x87\xbb\xee\x15\x89\x9d\x43\x83\xcb\xc5\x41\x1d\x14\x28\x82\x43\x41\x91\x23\x2d\x6d\x2e\xb9\x21\x67\x65\xeb\x14\xff\xf7\x82\xdc\x17\xad\x56\x2b\xdb\x68\xe4\xa2\xa8\x3f\xc8\x14\x5f\xe6\x99\x19\x3e\x1c\xce\x50\x29\x48\x2b\x68\x55\x20\x64\x94\xeb\xa3\xf0\x01\x9a\x9b\x45\x8a\xe6\x08\x20\x43\x2e\x8f\x00\x00\x72\x24\x0e\x22\xe3\xce\x23\xa5\x25\xcd\x27\x3f\xc4\x6e\x52\xa4\x11\xd6\x6b\xf6\xd1\xd9\x6b\x14\xc4\x3e\xf0\x1c\xef\xef\xe3\x98\x56\xe6\x06\x1c\xea\x34\xf1\xb4\xd2\xe8\x33\x44\x4a\x20\x73\x38\x4f\x93\x8c\xa8\xf0\x3f\x4e\xa7\x42\x9a\x6b\xcf\x84\xb6\xa5\x9c\x6b\xee\x90\x09\x9b\x4f\xf9\x35\xbf\x9b\x6a\x35\xf3\xd3\x59\xa9\x73\x3e\x3d\x65\xdf\xb3\x57\x53\xe1\xeb\xef\x2c\x57\x86\x09\xef\x93\x83\xa2\xf8\x5b\x4e\x22\xab\xb1\x3c\x37\xd2\x93\x35\xd8\x1d\xdb\xc6\xf5\xc2\xa9\x82\x20\x78\x2e\x4d\x08\xef\x68\x7a\xcd\x97\xbc\xea\x4d\xc0\x3b\xf1\x64\xf8\xdc\xe6\x68\x88\x5d\xfb\xe9\x2b\xf6\xea\x15\x3b\x6d\x3a\x02\xdc\xf5\xc1\xd1\x34\x27\x74\xd3\x33\x16\x80\x62\xfb\x99\x70\x0a\x87\x44\x2b\xe1\xac\x99\x9e\xb2\xb3\x33\x76\xda\xe9\xd9\x82\x8c\xcc\x32\x3c\xc7\x34\x59\x2a\xbc\x2d\xac\xa3\x04\x84\x35\x84\x86\xd2\xe4\x56\x49\xca\x52\x89\x4b\x25\x70\x12\xbf\x9c\x80\x32\x8a\x14\xd7\x13\x2f\xb8\xc6\xf4\xac\x12\x93\x82\xf0\xbe\x6e\x6d\x74\x8e\x1d\x10\x28\x5e\x46\x9f\x72\x29\xdf\x2e\xd1\xd0\x7b\xe5\x09\x0d\xba\x71\x72\x71\xf9\xdb\x79\x05\xf6\xde\x72\x89\x32\x39\x81\x79\x69\x04\x29\x6b\xc6\x18\xa6\x1e\xc3\xba\x96\xd2\x91\xf3\xa5\x44\xb7\xba\x42\x8d\x82\xac\x7b\xad\xf5\x78\xc4\x82\x61\xa3\x63\x36\xb7\xee\x2d\x17\xd9\x78\x23\x44\x77\x25\x00\xa0\x66\xca\x18\x74\x7f\xfb\xf4\xdb\x7b\x48\xa1\xf2\xca\x79\xf0\x0a\xd9\x2b\x72\xca\x2c\xc6\xe3\x24\x79\xd9\x9d\x76\xcc\xc8\xa9\x7c\x7c\x7c\x42\xae\xc4\x63\x98\x4e\xe1\xfb\xc9\x5c\xa1\x96\x80\x77\x85\x43\xef\x95\x35\xbe\x85\xb8\x3f\x3e\x6a\x1b\x75\xab\x51\x06\x7c\x66\x6f\xc7\xc1\xd9\x5d\x9d\xd4\x1c\xc6\x99\xf2\x64\xdd\x8a\x39\x2c\x34\x17\x78\x45\x9c\x70\x5b\x6f\x80\xa1\x39\x63\x53\x6a\x7d\x02\xd5\xe7\xe8\xc5\xe8\x65\x14\xbe\xd1\xe5\xa8\x6d\x2e\xb9\x03\x45\x98\x7b\x48\x37\x7e\x5c\x20\xbd\xd5\x18\x9a\xfe\xcd\xea\x5c\x73\xef\x43\x00\x19\x8f\xc8\x16\x13\xc3\x97\xa3\x8d\xa4\xb9\x75\x30\x8e\x32\xd2\xd3\x9f\x40\xfd\x25\x8a\x62\x1a\xcd\x82\xb2\x9f\x40\xbd\x7c\xb9\xad\x6d\x83\x06\x69\x05\xfa\x59\xfd\xde\x19\x0d\x16\x87\x6e\x46\x7c\x11\x00\x21\x4d\x53\x48\xde\xbf\x4b\xfa\x26\x4f\xa7\x60\xf8\x52\x2d\x78\xf4\x1e\xf1\x99\xdf\x1a\x6e\xe5\x88\xa0\x7a\x20\x15\x0b\xcc\xe5\xca\xf8\xca\xcb\x7d\x79\x00\xbd\xe9\x5c\xca\xf1\x48\xf9\x09\x17\xa4\x96\xd8\xb1\x37\x7a\x0f\x50\x7b\x7c\x4c\x84\xc3\xdc\x2e\xf1\x01\x29\x47\x8f\x48\x9c\x4e\xc1\x63\xe4\xc7\x1e\xeb\x94\x8c\x0e\xea\xf3\xe6\x31\x6d\x32\x25\x25\x9a\xff\xc8\xa6\xc6\x2d\xc3\x22\x8e\x86\xda\x4d\x2b\xfc\x9f\x59\xb9\xaa\xe2\x59\x65\x17\xcb\xd0\x59\xa6\xfc\xa4\x70\x2a\xe7\x6e\x15\x9a\x3e\xe7\x5a\xd7\x6b\xe2\xf8\xa4\x5d\x15\xbb\xea\x8d\x44\xd7\x41\xcb\xce\xd8\x43\x37\x5e\xf5\x57\x30\x5f\xce\xaa\x69\x1f\xad\x56\x62\x75\x02\x1f\x9d\x15\x28\x4b\x87\x27\xc0\x8d\x84\xd7\xa5\x54\x04\xe1\xfc\x94\x7e\x4b\x83\xb9\xb5\xd4\x4a\x32\x7c\xc9\x02\xe3\x82\xb2\x33\x7b\x87\x32\x34\xe6\xa5\xd6\x31\x0c\x76\x00\x07\x55\x05\x28\x75\x34\x53\xfd\x81\x93\x3f\xf5\xbc\xad\x15\xab\x4f\x18\xb3\x4b\x74\x21\xee\xf6\x66\x00\x78\x72\xd6\x2c\x76\xba\x01\x38\x58\x23\xb4\x12\x37\x69\xb2\x09\xb4\x3f\xc6\xc8\x32\x6a\xa4\x8d\x8e\x13\xb8\x1c\x96\xdc\xc1\x36\xdc\x39\x1e\x18\xeb\x0f\x83\xbe\x91\x17\xf0\x3f\xec\x93\xde\xd1\xa0\x08\x1b\xa4\x0e\x85\xdf\x48\x0b\xe8\x1f\x87\x25\x77\xb1\x1b\x52\x1c\x0a\xbd\x95\x17\xf1\xf7\x49\xef\x68\xe0\x89\x1b\xc9\x9d\x3c\x90\x02\xad\xb8\x80\x7f\xb5\x47\xf6\xb4\xab\x00\x2e\x95\x44\x23\x70\x67\xce\xc3\x40\xcd\xb2\x80\xf3\xb6\x6e\xc3\x3f\x78\xa9\xab\xc3\xf3\xa2\x61\x21\x6b\x8e\x7f\x83\xd7\x1e\x14\x56\x27\x18\x35\xf0\x4c\x5b\x71\xf3\xa5\xb4\xb4\xd1\x24\xfb\x0e\x3e\x65\xca\x83\x57\x84\x21\x1d\xf1\x56\x2b\xc9\x09\x3d\x70\xad\xdb\x0b\xcc\x87\xd4\x93\x13\x4a\x20\x0b\x94\xed\x0f\x0c\x59\x73\x36\x99\xb0\xba\xcc\x4d\x3c\xd5\x4b\x81\x86\xd0\xa1\xec\x46\x9d\x30\x1a\x06\xad\xc1\x09\x65\xca\xc9\x8e\x73\xa4\x5a\x6e\xb9\x6a\x13\x6a\xc2\x8a\xef\x58\xc6\xfd\x24\x64\x6d\x93\x46\x30\x84\xdc\xc6\x59\x0d\x9f\x1c\x17\x37\xaa\xb3\xa5\x0d\xd2\xce\x92\x07\xe1\x42\x3d\xa0\xcc\x02\xae\x38\x29\x3f\x57\x1b\x00\xdf\x9b\x18\x95\xea\x6d\xeb\x7a\xcd\x42\xcc\xf3\xac\x59\xd3\x4a\xe9\xc4\xcf\x6f\xd3\xeb\x93\x25\xae\xbf\x49\xa7\x28\xa1\xd5\xe7\xbf\xbc\x5b\xed\xa1\x3d\xf4\x7e\xbd\x8e\x89\x01\x7c\x52\xe2\x06\xe9\x29\x7e\xe1\x40\xdc\x2d\x90\xd2\x7f\xcd\x34\x37\x37\x75\x41\xb5\x5e\xb3\xf7\xca\xdc\x78\xd6\x2a\x7a\x59\xa0\xb9\xbf\x4f\x76\x22\x45\xeb\xd7\xde\xcc\x03\xd9\x73\xa9\x25\x7a\xaa\xed\x79\x92\x39\x03\x0a\x45\x19\x17\x7c\xe5\xef\xef\x41\xf2\x95\x3f\xd0\x9e\x3f\x68\xd2\x0e\x0b\xea\x64\xe0\xc0\xfb\x1d\x9c\x0d\x7f\xc7\x2f\x25\xfa\x43\x6c\x77\xd4\xf1\xd1\xad\xee\xcc\x3a\xe8\x71\x3e\xb0\x1d\xaf\xb5\x7e\xdc\x8c\x83\x85\x81\xce\x20\xdd\xda\x6a\xd0\x3f\xe8\x8e\x29\x14\xce\x2e\x42\x59\xc7\xda\xc6\x26\x75\x85\x25\xd7\x25\xa6\xdb\xda\x9e\x6b\xeb\x43\x14\x85\x9c\xdf\xa5\xfb\x0d\x79\xb1\x49\x90\xbe\xed\x6a\xec\x66\xbb\x5b\x8e\xac\xf2\x86\x7d\xa9\xd7\xd7\x60\x59\xb8\xaf\x81\x1b\x68\x2e\x69\xb0\xf3\x78\x73\x5a\xb7\xe0\x46\xfd\x51\x55\x5a\x21\x4b\x0e\x9d\xc2\xe6\x85\x56\x3c\xdc\xef\x68\x96\xca\x59\x13\xcb\xc6\x5a\x2a\xf1\x99\x46\x56\x7d\xee\xa6\xba\xd4\x3e\x5e\xd5\xdf\xb7\xd3\x63\xca\x20\xdc\xd0\xfd\xbe\xd7\xa1\x8e\x5f\xe5\xfd\xee\x8f\x17\xbf\x6c\x04\x6f\x15\x0a\x81\x39\x8e\x9b\x05\x02\xdb\x98\x0d\x5b\x15\x41\x1f\x59\x06\xb2\xed\xd4\x0d\xcd\x40\xad\xc1\xce\xd8\x0e\xd5\x23\xb9\xd7\x6b\x76\x59\x52\x51\xd2\x2f\x4a\xa3\x89\x32\xb7\xcf\xc0\x10\xd1\xfb\x2b\xb6\x8c\x41\xd3\xdc\xc7\x2f\x9a\x84\xf6\x79\xd9\x32\x98\x2a\x7f\x85\x45\x60\x88\x89\x34\x98\x61\xc6\x97\xca\xba\xc0\x95\xd6\x75\x80\x79\xa1\xed\x0a\x43\x4a\x66\x64\x7c\x32\x72\x5c\x90\x75\xfe\x7f\x95\x1f\x8d\xa1\xff\x2f\xec\x68\x4b\x8c\x67\xe6\xc7\x70\x29\x13\xa2\x09\x86\xba\x60\x86\xe0\x0b\x14\x6a\xae\x04\x78\xc2\xc2\x03\x65\x9c\x80\x3b\x04\xe2\x37\x68\x40\x19\x70\xe8\x0b\x6b\x3c\x86\x3c\xfd\x06\x57\x10\x9f\xf6\x9e\x95\x28\xef\x2e\xfa\x3d\x57\x22\x43\x59\x6a\x84\x71\xd8\x43\x98\x5b\x97\x73\x3a\x7e\x02\x6d\x5a\xfb\xbf\x85\x38\xef\x2e\x7a\xdd\xeb\xb5\x9a\x03\x3b\x77\xd6\xec\xcc\x8f\x8f\x99\x61\xd1\xc0\xe8\x7a\x8d\xda\x0f\x40\x5c\x1a\x90\x98\x73\x23\xfb\xb3\x8d\xdc\x4f\xa1\xb6\x64\x7c\x5e\x06\x0d\x17\xa3\x5f\x6b\xda\xac\xea\xab\xa6\x2a\x00\xc0\xb7\xb5\xcd\x6c\xd5\xbf\x84\xe2\x85\xcc\xf3\x07\x79\x33\xfc\x4c\xf3\x38\x89\x9a\x52\xed\x57\x5c\x3d\x85\x5f\x6d\xf1\xf4\xd7\xbd\x23\xf0\x66\xf5\x38\xbb\x9a\xc2\xe7\x09\xdc\xaa\xa7\xfe\x8a\xab\xc7\xc2\x4f\xed\xf7\x61\x3e\x02\x6c\x5e\xc8\xd6\x6b\x76\x81\x55\x71\xaf\x06\xa8\x16\x18\x3a\x54\x25\x56\xa0\xd1\xe7\xa5\x10\xe8\x3d\xfc\xb3\x17\x1d\xf6\xd1\xf4\x83\x7d\x84\x9f\x03\xd6\xb4\xbe\x6a\x55\x79\xd3\xf7\x00\x00\x6f\x19\xf0\xe7\x36\xf6\x3e\x25\xda\xee\x08\xda\x7f\x64\x62\xd7\xdc\x5a\x42\xc7\xaa\x7f\x9b\xfc\xb4\xff\x02\xd8\x1c\x9b\x07\x53\xcd\xa2\xfb\x5e\x71\xd9\x49\xc0\xea\x1b\xf6\xdc\x9a\xb9\x92\x68\x48\x71\x0d\xaf\x4e\xcf\x7e\x38\x1a\xf8\x79\x45\xcd\x61\x7c\xab\x8c\xb4\xb7\x4c\x5b\xc1\xab\xf7\x56\xee\xb3\x34\x4d\x3a\xef\xe9\xfd\xf7\xc1\xd8\xdd\x7b\x0c\x5e\x72\x07\x61\xe5\xb9\xcd\x0b\x6b\xe2\xf3\x4a\x0a\x43\xa2\x99\x2f\xb4\xa2\xf1\xe8\x45\xfb\x32\x1c\x7f\xc3\xd8\x5a\x5a\xff\x36\xf0\xf3\x59\xf7\xc9\x3a\x20\x84\xaa\x4f\x99\x2a\xcf\x4c\x7b\x78\x9f\xcf\x36\x3f\x13\x04\x91\x9f\x93\x46\xe3\xe4\x24\xd9\x64\xcf\xc9\x49\xd2\xa4\x46\xa1\xd9\xc6\xe7\xe4\x24\x69\x23\x5a\xf2\x3b\x53\x46\xe2\xdd\xe5\x7c\xdc\x41\x3c\x86\x9f\x53\x38\xdd\x7e\x45\x8f\xae\xe9\xce\x69\xc7\xba\x6f\xda\x00\xf7\xff\x0e\x00\x00\xff\xff\x7b\xf4\xc8\x89\xac\x1d\x00\x00") +var _complySoc2TemplatesIndexAce = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x59\x6d\x6f\xe3\xb8\x11\xfe\x9e\x5f\x31\x50\x3e\xd8\xc1\xc6\x74\x92\x2b\xae\x87\xbb\xea\x8a\x5c\xb2\x8b\x2e\x2e\xb7\x09\x9a\xa0\x40\xb1\x38\x14\x34\x39\xb2\x18\x53\xa4\x96\xa4\x9c\xe8\xbc\xf9\xef\x05\xa9\x17\xcb\xb2\x9c\x04\x5d\xa7\x28\x9a\x0f\x0e\xcd\x97\x79\x66\x86\x0f\x87\x33\x74\x0c\x5c\x33\x57\xe6\x08\xa9\xcb\xe4\x81\xff\x00\x49\xd5\x3c\x46\x75\x00\x90\x22\xe5\x07\x00\x00\x19\x3a\x0a\x2c\xa5\xc6\xa2\x8b\x0b\x97\x4c\x7e\x08\xdd\x4e\x38\x89\xb0\x5a\x91\x1b\xa3\xef\x91\x39\xf2\x89\x66\xf8\xf4\x14\xc6\xa4\x50\x0b\x30\x28\xe3\xc8\xba\x52\xa2\x4d\x11\x5d\x04\xa9\xc1\x24\x8e\x52\xe7\x72\xfb\xe3\x74\xca\xb8\xba\xb7\x84\x49\x5d\xf0\x44\x52\x83\x84\xe9\x6c\x4a\xef\xe9\xe3\x54\x8a\x99\x9d\xce\x0a\x99\xd1\xe9\x09\xf9\x9e\x9c\x4d\x99\xad\xbf\x93\x4c\x28\xc2\xac\x8d\xf6\x8a\x62\x1f\xa8\x63\x69\x8d\x65\xa9\xe2\xd6\x69\x85\xdd\xb1\x4d\x5c\xcb\x8c\xc8\x1d\x78\xcf\xc5\x91\xc3\x47\x37\xbd\xa7\x4b\x5a\xf5\x46\x60\x0d\x7b\x35\x7c\xa6\x33\x54\x8e\xdc\xdb\xe9\x19\x39\x3b\x23\x27\x4d\x87\x87\xbb\xdf\x3b\x9a\xa4\x0e\xcd\xf4\x94\x78\xa0\xd0\x7e\x23\x9c\xdc\xa0\x73\x25\x33\x5a\x4d\x4f\xc8\xe9\x29\x39\xe9\xf4\x6c\x40\x06\x66\x29\x9a\x61\x1c\x2d\x05\x3e\xe4\xda\xb8\x08\x98\x56\x0e\x95\x8b\xa3\x07\xc1\x5d\x1a\x73\x5c\x0a\x86\x93\xf0\xe5\x18\x84\x12\x4e\x50\x39\xb1\x8c\x4a\x8c\x4f\x2b\x31\x31\x30\x6b\xeb\xd6\x5a\xe7\xd0\x01\x9e\xe2\x45\xf0\x29\xe5\xfc\xfd\x12\x95\xbb\x12\xd6\xa1\x42\x33\x8e\x2e\xaf\x7f\xbb\xa8\xc0\xae\x34\xe5\xc8\xa3\x63\x48\x0a\xc5\x9c\xd0\x6a\x8c\x7e\xea\x11\xac\x6a\x29\x1d\x39\x5f\x0a\x34\xe5\x2d\x4a\x64\x4e\x9b\x73\x29\xc7\x23\xe2\x0d\x1b\x1d\x91\x44\x9b\xf7\x94\xa5\xe3\xb5\x10\xd9\x95\x00\x80\x92\x08\xa5\xd0\xfc\xed\xee\xb7\x2b\x88\xa1\xf2\xca\x85\xf7\x8a\xd3\xb7\xce\x08\x35\x1f\x8f\xa3\xe8\x5d\x77\xda\x11\x71\x46\x64\xe3\xa3\x63\x67\x0a\x3c\x82\xe9\x14\xbe\x9f\x24\x02\x25\x07\x7c\xcc\x0d\x5a\x2b\xb4\xb2\x2d\xc4\xd3\xd1\x41\xdb\xa8\x5b\x8d\x32\x60\x53\xfd\x30\xf6\xce\xee\xea\x24\x12\x18\xa7\xc2\x3a\x6d\x4a\x62\x30\x97\x94\xe1\xad\xa3\x0e\x37\xf5\x06\x18\x9a\x33\x56\x85\x94\xc7\x50\x7d\x8e\x0e\x47\xef\x82\xf0\xb5\x2e\x07\x6d\x73\x49\x0d\x08\x87\x99\x85\x78\xed\xc7\x39\xba\xf7\x12\x7d\xd3\xfe\x52\x5e\x48\x6a\xad\x0f\x20\xe3\x91\xd3\xf9\x44\xd1\xe5\x68\x2d\x29\xd1\x06\xc6\x41\x46\x7c\xf2\x13\x88\xbf\x04\x51\x44\xa2\x9a\xbb\xf4\x27\x10\xef\xde\x6d\x6a\xdb\xa0\x41\x5c\x81\x7e\x16\xbf\x77\x46\xbd\xc5\xbe\x9b\x38\x3a\xf7\x80\x10\xc7\x31\x44\x57\x1f\xa3\xbe\xc9\xd3\x29\x28\xba\x14\x73\x1a\xbc\xe7\xe8\xcc\x6e\x0c\xb7\x72\x98\x57\xdd\x93\x8a\x78\xe6\x52\xa1\x6c\xe5\xe5\xbe\x3c\x80\xde\x74\xca\xf9\x78\x24\xec\x84\x32\x27\x96\xd8\xb1\x37\x78\x0f\x50\x5a\x7c\x49\x84\xc1\x4c\x2f\xf1\x19\x29\x07\x2f\x48\x9c\x4e\xc1\x62\xe0\xc7\x0e\xeb\x04\x0f\x0e\xea\xf3\xe6\x25\x6d\x52\xc1\x39\xaa\xff\xc8\xa6\xc6\x2d\xc3\x22\x0e\x86\xda\x4d\xcb\xff\x9f\x69\x5e\x56\xf1\xac\xb2\x8b\xa4\x68\x34\x11\x76\x92\x1b\x91\x51\x53\xfa\xa6\xcd\xa8\x94\xf5\x9a\x30\x3e\x69\x57\x85\xae\x7a\x23\xd1\x74\xd0\xd2\x53\xf2\xdc\x8d\x57\xfd\xe5\xc4\x16\xb3\x6a\xda\x8d\x96\x82\x95\xc7\x70\x63\x34\x43\x5e\x18\x3c\x06\xaa\x38\x9c\x17\x5c\x38\xf0\xe7\xa7\xb0\x1b\x1a\x24\x5a\xbb\x56\x92\xa2\x4b\xe2\x19\xe7\x95\x9d\xe9\x47\xe4\xbe\x91\x14\x52\x86\x30\xd8\x01\x1c\x54\x15\xa0\x90\xc1\x4c\xf1\x07\x4e\xfe\xd4\xf3\xb6\x14\xa4\x3e\x61\x44\x2f\xd1\xf8\xb8\xdb\x9b\x01\x60\x9d\xd1\x6a\xbe\xd5\x0d\x40\x41\x2b\x26\x05\x5b\xc4\xd1\x3a\xd0\xfe\x18\x22\xcb\xa8\x91\x36\x3a\x8a\xe0\x7a\x58\x72\x07\x5b\x51\x63\xa8\x67\xac\xdd\x0f\xfa\x5a\x9e\xc7\xff\xb4\x4b\x7a\x47\x83\xdc\x6f\x90\xd8\x17\x7e\x23\xcd\xa3\xdf\x0c\x4b\xee\x62\x37\xa4\xd8\x17\x7a\x2b\x2f\xe0\xef\x92\xde\xd1\xc0\x3a\xaa\x38\x35\x7c\x4f\x0a\x24\x86\x66\xf8\xa0\xcd\x22\x28\xf0\xa1\xfd\xd6\x13\x33\xed\xaa\x80\x4b\xc1\x51\x31\xdc\x9a\xf3\x3c\x54\xb3\xcc\x03\xbd\xaf\xdb\xf0\x0f\x5a\xc8\xea\xf8\x1c\x36\x3c\x24\x4d\x00\x68\xf0\xda\xa3\x42\xea\x14\xa3\x06\x9e\x49\xcd\x16\x5f\x0a\xed\xd6\x9a\xa4\xdf\xc1\x5d\x2a\x2c\x58\xe1\xd0\x27\x24\x56\x4b\xc1\xa9\x43\x0b\x54\xca\xf6\x0a\xb3\x3e\xf9\xa4\x0e\x39\x38\x0d\x2e\xdd\x1d\x1a\xd2\xe6\x74\x12\xa6\x65\x91\xa9\x70\xae\x97\x0c\x95\x43\x83\xbc\x1b\x77\xfc\xa8\x1f\xd4\x0a\x27\x2e\x15\x86\x77\x9c\xc3\xc5\x72\xc3\x55\xeb\x60\xe3\x57\x7c\x47\x52\x6a\x27\x3e\x6f\x9b\x34\x82\xc1\x67\x37\x46\x4b\xb8\x33\x94\x2d\x44\x67\x53\x1b\xa4\xad\x25\xcf\xc2\xf9\x8a\x40\xa8\x39\xdc\x52\x27\x6c\x22\xd6\x00\xb6\x37\x31\x28\xd5\xdb\xd6\xd5\x8a\xf8\xa8\x67\x49\xb3\xa6\x95\xd2\x89\xa0\xdf\xa6\xd7\x9d\x76\x54\x7e\x93\x4e\x41\x42\xab\xcf\x7f\x79\xb7\xda\x63\xbb\xef\xfd\x3a\x0f\xa9\x01\xdc\x09\xb6\x40\xf7\x1a\xbf\x50\x70\xd4\xcc\xd1\xc5\xff\x9a\x49\xaa\x16\x75\x49\xb5\x5a\x91\x2b\xa1\x16\x96\xb4\x8a\x5e\xe7\xa8\x9e\x9e\xa2\xad\x58\xd1\xfa\xb5\x37\x73\x4f\xf6\x5c\x4b\x8e\xd6\xd5\xf6\xbc\xca\x9c\x01\x85\x82\x8c\x4b\x5a\xda\xa7\x27\xe0\xb4\xb4\x7b\xda\xf3\x67\x4d\xda\x62\x41\x9d\x0e\xec\x79\xbf\xbd\xb3\xe1\xef\xf8\xa5\x40\xbb\x8f\xed\x0e\x3a\xbe\xb8\xd5\x9d\x59\x7b\x3d\xce\x7b\xb6\xe3\x5c\xca\x97\xcd\xd8\x5b\x18\xe8\x0c\xba\x07\x5d\x0d\xda\x67\xdd\x31\x85\xdc\xe8\xb9\x2f\xec\x48\xdb\x58\x27\xaf\xb0\xa4\xb2\xc0\x78\x53\xdb\x0b\xa9\xad\x8f\xa2\x90\xd1\xc7\x78\xb7\x21\x87\xeb\x14\xe9\xdb\xae\xc6\x6e\xbe\xbb\xe1\xc8\x2a\x73\xd8\x95\x7c\x7d\xf5\x96\xf9\xfb\x1a\xa8\x82\xe6\x92\x06\x9d\x84\x9b\x53\x9b\x39\x55\xe2\x8f\xaa\xd6\xf2\x79\xb2\xef\x64\x3a\xcb\xa5\xa0\xfe\x7e\x47\xb5\x14\x46\xab\x50\x38\xd6\x52\x1d\x9d\x49\x24\xd5\xe7\x76\xb2\xeb\xda\xe7\xab\xfa\xfb\x66\x82\xec\x52\xf0\x37\x74\xbf\xef\xdc\x57\xf2\x65\xd6\xef\xbe\xb9\xfc\xb0\x16\xbc\x51\x2a\x78\xe6\x18\xaa\xe6\x08\x64\x6d\x36\x6c\xd4\x04\x7d\x64\xee\xc9\xb6\x55\x39\x34\x03\xb5\x06\x5b\x63\x5b\x54\x0f\xe4\x5e\xad\xc8\x75\xe1\xf2\xc2\x7d\x10\x12\x55\x90\xb9\x79\x06\x86\x88\xde\x5f\xb1\x61\x0c\xaa\xe6\x3e\x3e\x6c\x52\xda\xb7\x65\xcb\x60\xb2\xfc\x15\xe6\x9e\x21\x2a\xd0\x60\x86\x29\x5d\x0a\x6d\x3c\x57\x5a\xd7\x01\x66\xb9\xd4\x25\xfa\x94\x4c\xf1\xf0\x68\x64\x28\x73\xda\xd8\xff\x55\x7e\x34\x86\xfe\xbf\xb0\xa3\x2d\x32\xde\x98\x1f\xc3\xc5\x8c\x8f\x26\xe8\xeb\x82\x19\x82\xcd\x91\x89\x44\x30\xb0\x0e\x73\x0b\x2e\xa5\x0e\xa8\x41\x70\x74\x81\x0a\x84\x02\x83\x36\xd7\xca\xa2\xcf\xd3\x17\x58\x42\x78\xdc\x7b\x53\xa2\x7c\xbc\xec\xf7\xdc\xb2\x14\x79\x21\x11\xc6\x7e\x0f\x21\xd1\x26\xa3\xee\xe8\x15\xb4\x69\xed\xff\x16\xe2\x7c\xbc\xec\x75\xaf\x56\x22\x01\x72\x61\xb4\xda\x9a\x1f\x9e\x33\xfd\xa2\x81\xd1\xd5\x0a\xa5\x1d\x80\xb8\x56\xc0\x31\xa3\x8a\xf7\x67\x2b\xbe\x9b\x42\x6d\x0d\xfa\xb6\x0c\xba\x1d\x2c\x75\xbf\xd6\xb4\x29\xeb\xab\xa6\x2a\x00\xc0\xb6\xb5\xcd\xac\xec\x5f\x42\xe1\x42\xa6\xd9\xb3\xbc\x19\x7e\xa8\x79\x99\x44\x4d\xa9\xf6\x2b\x96\xaf\xe1\x57\x5b\x3c\xfd\x75\xe7\x08\xfc\x52\xbe\xcc\xae\xa6\xf0\x79\x05\xb7\xea\xa9\xbf\x62\xf9\x52\xf8\xa9\xfd\x3e\xcc\x47\x80\xf5\x1b\xd9\x6a\x45\x2e\xb1\x2a\xee\xc5\x00\xd5\x3c\x43\x87\xaa\xc4\x0a\x34\xf8\xbc\x60\x0c\xad\x85\x7f\xf6\xa2\xc3\x2e\x9a\x7e\xd2\x2f\xf0\x73\xc0\x9a\xd6\x57\xad\x2a\xbf\xf4\x3d\x00\x40\x5b\x06\xfc\xb9\x8d\xbd\xaf\x89\xb6\x5b\x82\x76\x1f\x99\xd0\x95\x68\xed\xd0\x90\xea\xdf\x3a\x3f\xed\xbf\x01\x36\xc7\xe6\xd9\x54\x33\xef\xbe\x57\x5c\x77\x12\xb0\xfa\x86\xbd\xd0\x2a\x11\x1c\x95\x13\x54\xc2\xd9\xc9\xe9\x0f\x07\x03\x3f\xb0\x88\x04\xc6\x0f\x42\x71\xfd\x40\xa4\x66\xb4\x7a\x71\xa5\x36\x8d\xe3\xa8\xf3\xa2\xde\x7f\x21\x0c\xdd\xbd\xe7\xe0\x25\x35\xe0\x57\x5e\xe8\x2c\xd7\x2a\x3c\xaf\xc4\x30\x24\x9a\xd8\x5c\x0a\x37\x1e\x1d\xb6\x6f\xc3\xe1\x57\x8c\x8d\xa5\xf5\xaf\x03\x3f\x9f\x76\x1f\xad\x3d\x82\xaf\xfa\x84\xaa\xf2\xcc\xb8\x87\xf7\xf9\x74\xfd\x43\x81\x17\xf9\x39\x6a\x34\x8e\x8e\xa3\x75\xf6\x1c\x1d\x47\x4d\x6a\xe4\x9b\x6d\x7c\x8e\x8e\xa3\x36\xa2\x45\xbf\x13\xa1\x38\x3e\x5e\x27\xe3\x0e\xe2\x11\xfc\x1c\xc3\xc9\xe6\x3b\x7a\x70\x4d\x77\x4e\x3b\xd6\x7d\xd5\xf6\x9f\xff\x0e\x00\x00\xff\xff\x33\xd4\x85\xf9\xaf\x1d\x00\x00") func complySoc2TemplatesIndexAceBytes() ([]byte, error) { return bindataRead( @@ -1197,7 +1260,7 @@ func complySoc2TemplatesIndexAce() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "comply-soc2/templates/index.ace", size: 7596, mode: os.FileMode(420), modTime: time.Unix(1545086630, 0)} + info := bindataFileInfo{name: "comply-soc2/templates/index.ace", size: 7599, mode: os.FileMode(420), modTime: time.Unix(1600197688, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1256,6 +1319,7 @@ func AssetNames() []string { var _bindata = map[string]func() (*asset, error){ "comply-blank/README.md": complyBlankReadmeMd, "comply-blank/TODO.md": complyBlankTodoMd, + "comply-blank/frameworks/.gitkeep": complyBlankFrameworksGitkeep, "comply-blank/narratives/.gitkeep": complyBlankNarrativesGitkeep, "comply-blank/policies/.gitkeep": complyBlankPoliciesGitkeep, "comply-blank/procedures/.gitkeep": complyBlankProceduresGitkeep, @@ -1265,6 +1329,8 @@ var _bindata = map[string]func() (*asset, error){ "comply-blank/templates/index.ace": complyBlankTemplatesIndexAce, "comply-soc2/README.md": complySoc2ReadmeMd, "comply-soc2/TODO.md": complySoc2TodoMd, + "comply-soc2/frameworks/README.md": complySoc2FrameworksReadmeMd, + "comply-soc2/frameworks/TSC-2017.yml": complySoc2FrameworksTsc2017Yml, "comply-soc2/narratives/README.md": complySoc2NarrativesReadmeMd, "comply-soc2/narratives/control.md": complySoc2NarrativesControlMd, "comply-soc2/narratives/organizational.md": complySoc2NarrativesOrganizationalMd, @@ -1353,6 +1419,9 @@ var _bintree = &bintree{nil, map[string]*bintree{ "comply-blank": &bintree{nil, map[string]*bintree{ "README.md": &bintree{complyBlankReadmeMd, map[string]*bintree{}}, "TODO.md": &bintree{complyBlankTodoMd, map[string]*bintree{}}, + "frameworks": &bintree{nil, map[string]*bintree{ + ".gitkeep": &bintree{complyBlankFrameworksGitkeep, map[string]*bintree{}}, + }}, "narratives": &bintree{nil, map[string]*bintree{ ".gitkeep": &bintree{complyBlankNarrativesGitkeep, map[string]*bintree{}}, }}, @@ -1374,6 +1443,10 @@ var _bintree = &bintree{nil, map[string]*bintree{ "comply-soc2": &bintree{nil, map[string]*bintree{ "README.md": &bintree{complySoc2ReadmeMd, map[string]*bintree{}}, "TODO.md": &bintree{complySoc2TodoMd, map[string]*bintree{}}, + "frameworks": &bintree{nil, map[string]*bintree{ + "README.md": &bintree{complySoc2FrameworksReadmeMd, map[string]*bintree{}}, + "TSC-2017.yml": &bintree{complySoc2FrameworksTsc2017Yml, map[string]*bintree{}}, + }}, "narratives": &bintree{nil, map[string]*bintree{ "README.md": &bintree{complySoc2NarrativesReadmeMd, map[string]*bintree{}}, "control.md": &bintree{complySoc2NarrativesControlMd, map[string]*bintree{}}, diff --git a/themes/comply-blank/frameworks/.gitkeep b/themes/comply-blank/frameworks/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/themes/comply-blank/templates/index.ace b/themes/comply-blank/templates/index.ace index 53e2951..435adfb 100644 --- a/themes/comply-blank/templates/index.ace +++ b/themes/comply-blank/templates/index.ace @@ -66,7 +66,7 @@ html lang=en a onclick="javascript:show('procedures')" Procedures li.top-nav.standards strong - a onclick="javascript:show('standards')" Standards + a onclick="javascript:show('frameworks')" Frameworks / li.top-nav.evidence / a onclick="javascript:show('evidence')" Evidence Vault #overview.section.top-nav.container.content @@ -187,12 +187,12 @@ html lang=en td On demand {{end}} {{end}} - #standards.section.top-nav.container.content + #frameworks.section.top-nav.container.content blockquote h3 p - strong Standards - | specify the controls satisfied by the compliance program. + strong Framework Targets + | specify the Frameworks and Framework Criteria targeted by the compliance program. table.table.is-size-4.is-fullwidth thead tr @@ -234,4 +234,4 @@ html lang=en show(destination) } } - } \ No newline at end of file + } diff --git a/themes/comply-soc2/README.md b/themes/comply-soc2/README.md index 4bcb01f..f9bbb57 100644 --- a/themes/comply-soc2/README.md +++ b/themes/comply-soc2/README.md @@ -10,7 +10,7 @@ Compliance documents are organized as follows: narratives/ Narratives provide an overview of the organization and the compliance environment. policies/ Policies govern the behavior of employees and contractors. procedures/ Procedures prescribe specific steps that are taken in response to key events. -standards/ Standards specify the controls satisfied by the compliance program. +frameworks/ Frameworks specify the control criteria targeted by the compliance program. templates/ Templates control the output format of the HTML Dashboard and PDF assets. ``` @@ -57,4 +57,4 @@ comply build # publish static site from output/ directory upload.sh output/ -``` \ No newline at end of file +``` diff --git a/themes/comply-soc2/standards/README.md b/themes/comply-soc2/frameworks/README.md similarity index 91% rename from themes/comply-soc2/standards/README.md rename to themes/comply-soc2/frameworks/README.md index 1675335..e631af1 100644 --- a/themes/comply-soc2/standards/README.md +++ b/themes/comply-soc2/frameworks/README.md @@ -1,5 +1,5 @@ -# Standards +# Frameworks All `yaml` files in this directory are assumed to conform to https://github.com/opencontrol/schemas/tree/master/kwalify/standard -Adjust the target standard for this project by adding or removing line-items within each file, or adding/removing a standard file entirely. \ No newline at end of file +Adjust the target standard for this project by adding or removing line-items within each file, or adding/removing a standard file entirely. diff --git a/themes/comply-soc2/standards/TSC-2017.yml b/themes/comply-soc2/frameworks/TSC-2017.yml similarity index 100% rename from themes/comply-soc2/standards/TSC-2017.yml rename to themes/comply-soc2/frameworks/TSC-2017.yml diff --git a/themes/comply-soc2/standards/.gitkeep b/themes/comply-soc2/standards/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/themes/comply-soc2/templates/index.ace b/themes/comply-soc2/templates/index.ace index 53e2951..435adfb 100644 --- a/themes/comply-soc2/templates/index.ace +++ b/themes/comply-soc2/templates/index.ace @@ -66,7 +66,7 @@ html lang=en a onclick="javascript:show('procedures')" Procedures li.top-nav.standards strong - a onclick="javascript:show('standards')" Standards + a onclick="javascript:show('frameworks')" Frameworks / li.top-nav.evidence / a onclick="javascript:show('evidence')" Evidence Vault #overview.section.top-nav.container.content @@ -187,12 +187,12 @@ html lang=en td On demand {{end}} {{end}} - #standards.section.top-nav.container.content + #frameworks.section.top-nav.container.content blockquote h3 p - strong Standards - | specify the controls satisfied by the compliance program. + strong Framework Targets + | specify the Frameworks and Framework Criteria targeted by the compliance program. table.table.is-size-4.is-fullwidth thead tr @@ -234,4 +234,4 @@ html lang=en show(destination) } } - } \ No newline at end of file + }